1 # SPDX-License-Identifier: GPL-2.0-only
4 $id: http://devicetree.org/schemas/connector/usb-connector.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Rob Herring <robh@kernel.org>
13 A USB connector node represents a physical USB connector. It should be a child
14 of a USB interface controller or a separate node when it is attached to both
15 MUX and USB interface controller.
26 - const: gpio-usb-b-connector
27 - const: usb-b-connector
30 - const: samsung,usb-connector-11pin
31 - const: usb-b-connector
34 description: Symbolic name for the connector.
37 description: Size of the connector, should be specified in case of
38 non-fullsize 'usb-a-connector' or 'usb-b-connector' compatible
40 $ref: /schemas/types.yaml#definitions/string
47 description: Set this property if the USB device has its own power source.
50 # The following are optional properties for "usb-b-connector".
52 description: An input gpio for USB ID pin.
56 description: An input gpio for USB VBus pin, used to detect presence of
61 description: A phandle to the regulator for USB VBUS if needed when host
62 mode or dual role mode is supported.
63 Particularly, if use an output GPIO to control a VBUS regulator, should
64 model it as a regulator. See bindings/regulator/fixed-regulator.yaml
66 # The following are optional properties for "usb-c-connector".
68 description: Determines the power role that the Type C connector will
69 support. "dual" refers to Dual Role Port (DRP).
70 $ref: /schemas/types.yaml#definitions/string
78 description: Preferred power role.
79 $ref: /schemas/types.yaml#definitions/string
87 description: Data role if Type C connector supports USB data. "dual" refers
88 Dual Role Device (DRD).
89 $ref: /schemas/types.yaml#definitions/string
96 # The following are optional properties for "usb-c-connector" with power
99 description: An array of u32 with each entry providing supported power
100 source data object(PDO), the detailed bit definitions of PDO can be found
101 in "Universal Serial Bus Power Delivery Specification" chapter 6.4.1.2
102 Source_Capabilities Message, the order of each entry(PDO) should follow
103 the PD spec chapter 6.4.1. Required for power source and power dual role.
104 User can specify the source PDO array via PDO_FIXED/BATT/VAR/PPS_APDO()
105 defined in dt-bindings/usb/pd.h.
108 $ref: /schemas/types.yaml#/definitions/uint32-array
111 description: An array of u32 with each entry providing supported power sink
112 data object(PDO), the detailed bit definitions of PDO can be found in
113 "Universal Serial Bus Power Delivery Specification" chapter 6.4.1.3
114 Sink Capabilities Message, the order of each entry(PDO) should follow the
115 PD spec chapter 6.4.1. Required for power sink and power dual role. User
116 can specify the sink PDO array via PDO_FIXED/BATT/VAR/PPS_APDO() defined
117 in dt-bindings/usb/pd.h.
120 $ref: /schemas/types.yaml#/definitions/uint32-array
123 description: Sink required operating power in microwatt, if source can't
124 offer the power, Capability Mismatch is set. Required for power sink and
128 description: OF graph bindings (specified in bindings/graph.txt) that model
129 any data bus to the connector unless the bus is between parent node and
130 the connector. Since a single connector can have multiple data buses every
131 bus has an assigned OF graph port number as described below.
136 description: High Speed (HS), present in all connectors.
140 description: Super Speed (SS), present in SS capable connectors.
144 description: Sideband Use (SBU), present in USB-C. This describes the
145 alternate mode connection of which SBU is a part.
158 const: gpio-usb-b-connector
170 const: samsung,usb-connector-11pin
176 additionalProperties: true
179 # Micro-USB connector with HS lines routed via controller (MUIC).
182 usb_con1: connector {
183 compatible = "usb-b-connector";
189 # USB-C connector attached to CC controller (s2mm005), HS lines routed
190 # to companion PMIC (max77865), SS lines to USB3 PHY and SBU to DisplayPort.
191 # DisplayPort video lines are routed to the connector via SS mux in USB3 PHY.
194 usb_con2: connector {
195 compatible = "usb-c-connector";
199 #address-cells = <1>;
204 usb_con_hs: endpoint {
205 remote-endpoint = <&max77865_usbc_hs>;
210 usb_con_ss: endpoint {
211 remote-endpoint = <&usbdrd_phy_ss>;
216 usb_con_sbu: endpoint {
217 remote-endpoint = <&dp_aux>;
224 # USB-C connector attached to a typec port controller(ptn5110), which has
225 # power delivery support and enables drp.
227 #include <dt-bindings/usb/pd.h>
229 usb_con3: connector {
230 compatible = "usb-c-connector";
233 try-power-role = "sink";
234 source-pdos = <PDO_FIXED(5000, 2000, PDO_FIXED_USB_COMM)>;
235 sink-pdos = <PDO_FIXED(5000, 2000, PDO_FIXED_USB_COMM)
236 PDO_VAR(5000, 12000, 2000)>;
237 op-sink-microwatt = <10000000>;
241 # USB-C connector attached to SoC and USB3 typec port controller(hd3ss3220)
242 # with SS 2:1 MUX. HS lines routed to SoC, SS lines routed to the MUX and
243 # the output of MUX is connected to the SoC.
246 compatible = "usb-c-connector";
251 #address-cells = <1>;
256 remote-endpoint = <&usb3_hs_ep>;
262 remote-endpoint = <&hd3ss3220_in_ep>;
268 # USB connector with GPIO control lines
270 #include <dt-bindings/gpio/gpio.h>
274 compatible = "gpio-usb-b-connector", "usb-b-connector";
276 id-gpios = <&pio 12 GPIO_ACTIVE_HIGH>;
277 vbus-supply = <&usb_p0_vbus>;
281 # Micro-USB connector with HS lines routed via controller (MUIC) and MHL
282 # lines connected to HDMI-MHL bridge (sii8620) on Samsung Exynos5433-based
286 usb_con4: connector {
287 compatible = "samsung,usb-connector-11pin", "usb-b-connector";
292 #address-cells = <1>;
297 muic_to_usb: endpoint {
298 remote-endpoint = <&usb_to_muic>;
303 usb_con_mhl: endpoint {
304 remote-endpoint = <&sii8620_mhl>;