forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ib-extcon-drm-dt-v4.17' into extcon-next
- Loading branch information
Showing
5 changed files
with
258 additions
and
13 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
Documentation/devicetree/bindings/connector/samsung,usb-connector-11pin.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
Samsung micro-USB 11-pin connector | ||
================================== | ||
|
||
Samsung micro-USB 11-pin connector is an extension of micro-USB connector. | ||
It is present in multiple Samsung mobile devices. | ||
It has additional pins to route MHL traffic simultanously with USB. | ||
|
||
The bindings are superset of usb-connector bindings for micro-USB connector[1]. | ||
|
||
Required properties: | ||
- compatible: must be: "samsung,usb-connector-11pin", "usb-b-connector", | ||
- type: must be "micro". | ||
|
||
Required nodes: | ||
- any data bus to the connector should be modeled using the OF graph bindings | ||
specified in bindings/graph.txt, unless the bus is between parent node and | ||
the connector. Since single connector can have multpile data buses every bus | ||
has assigned OF graph port number as follows: | ||
0: High Speed (HS), | ||
3: Mobile High-Definition Link (MHL), specific to 11-pin Samsung micro-USB. | ||
|
||
[1]: bindings/connector/usb-connector.txt | ||
|
||
Example | ||
------- | ||
|
||
Micro-USB connector with HS lines routed via controller (MUIC) and MHL lines | ||
connected to HDMI-MHL bridge (sii8620): | ||
|
||
muic-max77843@66 { | ||
... | ||
usb_con: connector { | ||
compatible = "samsung,usb-connector-11pin", "usb-b-connector"; | ||
label = "micro-USB"; | ||
type = "micro"; | ||
|
||
ports { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
port@3 { | ||
reg = <3>; | ||
usb_con_mhl: endpoint { | ||
remote-endpoint = <&sii8620_mhl>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; |
75 changes: 75 additions & 0 deletions
75
Documentation/devicetree/bindings/connector/usb-connector.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
USB Connector | ||
============= | ||
|
||
USB connector node represents physical USB connector. It should be | ||
a child of USB interface controller. | ||
|
||
Required properties: | ||
- compatible: describes type of the connector, must be one of: | ||
"usb-a-connector", | ||
"usb-b-connector", | ||
"usb-c-connector". | ||
|
||
Optional properties: | ||
- label: symbolic name for the connector, | ||
- type: size of the connector, should be specified in case of USB-A, USB-B | ||
non-fullsize connectors: "mini", "micro". | ||
|
||
Required nodes: | ||
- any data bus to the connector should be modeled using the OF graph bindings | ||
specified in bindings/graph.txt, unless the bus is between parent node and | ||
the connector. Since single connector can have multpile data buses every bus | ||
has assigned OF graph port number as follows: | ||
0: High Speed (HS), present in all connectors, | ||
1: Super Speed (SS), present in SS capable connectors, | ||
2: Sideband use (SBU), present in USB-C. | ||
|
||
Examples | ||
-------- | ||
|
||
1. Micro-USB connector with HS lines routed via controller (MUIC): | ||
|
||
muic-max77843@66 { | ||
... | ||
usb_con: connector { | ||
compatible = "usb-b-connector"; | ||
label = "micro-USB"; | ||
type = "micro"; | ||
}; | ||
}; | ||
|
||
2. USB-C connector attached to CC controller (s2mm005), HS lines routed | ||
to companion PMIC (max77865), SS lines to USB3 PHY and SBU to DisplayPort. | ||
DisplayPort video lines are routed to the connector via SS mux in USB3 PHY. | ||
|
||
ccic: s2mm005@33 { | ||
... | ||
usb_con: connector { | ||
compatible = "usb-c-connector"; | ||
label = "USB-C"; | ||
|
||
ports { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
port@0 { | ||
reg = <0>; | ||
usb_con_hs: endpoint { | ||
remote-endpoint = <&max77865_usbc_hs>; | ||
}; | ||
}; | ||
port@1 { | ||
reg = <1>; | ||
usb_con_ss: endpoint { | ||
remote-endpoint = <&usbdrd_phy_ss>; | ||
}; | ||
}; | ||
port@2 { | ||
reg = <2>; | ||
usb_con_sbu: endpoint { | ||
remote-endpoint = <&dp_aux>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters