Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/connector/vga-connector.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: VGA Connector
0008 
0009 maintainers:
0010   - Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
0011 
0012 properties:
0013   compatible:
0014     const: vga-connector
0015 
0016   label: true
0017 
0018   ddc-i2c-bus:
0019     description: phandle link to the I2C controller used for DDC EDID probing
0020     $ref: /schemas/types.yaml#/definitions/phandle
0021 
0022   port:
0023     $ref: /schemas/graph.yaml#/properties/port
0024     description: Connection to controller providing VGA signals
0025 
0026 required:
0027   - compatible
0028   - port
0029 
0030 additionalProperties: false
0031 
0032 examples:
0033   - |
0034     connector {
0035         compatible = "vga-connector";
0036         label = "vga";
0037 
0038         ddc-i2c-bus = <&i2c3>;
0039 
0040         port {
0041             vga_connector_in: endpoint {
0042                 remote-endpoint = <&adv7123_out>;
0043             };
0044         };
0045     };
0046 
0047 ...