The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/connector/samsung,usb-connector-11pin.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Samsung micro-USB 11-pin connector
    2 ==================================
    3 
    4 Samsung micro-USB 11-pin connector is an extension of micro-USB connector.
    5 It is present in multiple Samsung mobile devices.
    6 It has additional pins to route MHL traffic simultanously with USB.
    7 
    8 The bindings are superset of usb-connector bindings for micro-USB connector[1].
    9 
   10 Required properties:
   11 - compatible: must be: "samsung,usb-connector-11pin", "usb-b-connector",
   12 - type: must be "micro".
   13 
   14 Required nodes:
   15 - any data bus to the connector should be modeled using the OF graph bindings
   16   specified in bindings/graph.txt, unless the bus is between parent node and
   17   the connector. Since single connector can have multpile data buses every bus
   18   has assigned OF graph port number as follows:
   19     0: High Speed (HS),
   20     3: Mobile High-Definition Link (MHL), specific to 11-pin Samsung micro-USB.
   21 
   22 [1]: bindings/connector/usb-connector.yaml
   23 
   24 Example
   25 -------
   26 
   27 Micro-USB connector with HS lines routed via controller (MUIC) and MHL lines
   28 connected to HDMI-MHL bridge (sii8620):
   29 
   30 muic-max77843@66 {
   31         ...
   32         usb_con: connector {
   33                 compatible = "samsung,usb-connector-11pin", "usb-b-connector";
   34                 label = "micro-USB";
   35                 type = "micro";
   36 
   37                 ports {
   38                         #address-cells = <1>;
   39                         #size-cells = <0>;
   40 
   41                         port@3 {
   42                                 reg = <3>;
   43                                 usb_con_mhl: endpoint {
   44                                         remote-endpoint = <&sii8620_mhl>;
   45                                 };
   46                         };
   47                 };
   48         };
   49 };

Cache object: 201ac4ff1fc6f9d149f96d710503a014


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.