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/display/connector/hdmi-connector.yaml

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 # SPDX-License-Identifier: GPL-2.0-only
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/display/connector/hdmi-connector.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: HDMI Connector
    8 
    9 maintainers:
   10   - Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
   11 
   12 properties:
   13   compatible:
   14     const: hdmi-connector
   15 
   16   type:
   17     description: The HDMI connector type
   18     enum:
   19       - a   # Standard full size
   20       - b   # Never deployed?
   21       - c   # Mini
   22       - d   # Micro
   23       - e   # automotive
   24 
   25   label: true
   26 
   27   hpd-gpios:
   28     description: A GPIO line connected to HPD
   29     maxItems: 1
   30 
   31   ddc-i2c-bus:
   32     description: phandle link to the I2C controller used for DDC EDID probing
   33     $ref: /schemas/types.yaml#/definitions/phandle
   34 
   35   ddc-en-gpios:
   36     description: GPIO signal to enable DDC bus
   37     maxItems: 1
   38 
   39   port:
   40     $ref: /schemas/graph.yaml#/properties/port
   41     description: Connection to controller providing HDMI signals
   42 
   43 required:
   44   - compatible
   45   - port
   46   - type
   47 
   48 additionalProperties: false
   49 
   50 examples:
   51   - |
   52     connector {
   53         compatible = "hdmi-connector";
   54         label = "hdmi";
   55 
   56         type = "a";
   57 
   58         port {
   59             hdmi_connector_in: endpoint {
   60                 remote-endpoint = <&tpd12s015_out>;
   61             };
   62         };
   63     };
   64 
   65 ...

Cache object: e1cf312441eeaee371d1881949005755


[ 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.