Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/arm,versatile-tft-panel.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: ARM Versatile TFT Panels
0008 
0009 maintainers:
0010   - Linus Walleij <linus.walleij@linaro.org>
0011 
0012 description: |
0013   These panels are connected to the daughterboards found on the
0014   ARM Versatile reference designs.
0015 
0016   This device node must appear as a child to a "syscon"-compatible
0017   node.
0018 
0019 allOf:
0020   - $ref: panel-common.yaml#
0021 
0022 properties:
0023   compatible:
0024     const: arm,versatile-tft-panel
0025 
0026   port: true
0027 
0028 required:
0029   - compatible
0030   - port
0031 
0032 additionalProperties: false
0033 
0034 examples:
0035   - |
0036     sysreg@0 {
0037         compatible = "arm,versatile-sysreg", "syscon", "simple-mfd";
0038         reg = <0x00000 0x1000>;
0039 
0040         #address-cells = <1>;
0041         #size-cells = <0>;
0042 
0043         panel {
0044             compatible = "arm,versatile-tft-panel";
0045 
0046             port {
0047                 panel_in: endpoint {
0048                     remote-endpoint = <&foo>;
0049                 };
0050             };
0051         };
0052     };
0053 
0054 ...