Path: blob/main/sys/contrib/device-tree/Bindings/connector/samsung,usb-connector-11pin.txt
48377 views
Samsung micro-USB 11-pin connector1==================================23Samsung micro-USB 11-pin connector is an extension of micro-USB connector.4It is present in multiple Samsung mobile devices.5It has additional pins to route MHL traffic simultanously with USB.67The bindings are superset of usb-connector bindings for micro-USB connector[1].89Required properties:10- compatible: must be: "samsung,usb-connector-11pin", "usb-b-connector",11- type: must be "micro".1213Required nodes:14- any data bus to the connector should be modeled using the OF graph bindings15specified in bindings/graph.txt, unless the bus is between parent node and16the connector. Since single connector can have multpile data buses every bus17has assigned OF graph port number as follows:180: High Speed (HS),193: Mobile High-Definition Link (MHL), specific to 11-pin Samsung micro-USB.2021[1]: bindings/connector/usb-connector.yaml2223Example24-------2526Micro-USB connector with HS lines routed via controller (MUIC) and MHL lines27connected to HDMI-MHL bridge (sii8620):2829muic-max77843@66 {30...31usb_con: connector {32compatible = "samsung,usb-connector-11pin", "usb-b-connector";33label = "micro-USB";34type = "micro";3536ports {37#address-cells = <1>;38#size-cells = <0>;3940port@3 {41reg = <3>;42usb_con_mhl: endpoint {43remote-endpoint = <&sii8620_mhl>;44};45};46};47};48};495051