Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/orisetech,otm8009a.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Orise Tech OTM8009A 3.97" 480x800 TFT LCD panel (MIPI-DSI video mode)
0008 
0009 maintainers:
0010   - Philippe CORNU <philippe.cornu@foss.st.com>
0011 
0012 description: |
0013              The Orise Tech OTM8009A is a 3.97" 480x800 TFT LCD panel connected using
0014              a MIPI-DSI video interface. Its backlight is managed through the DSI link.
0015 allOf:
0016   - $ref: panel-common.yaml#
0017 
0018 properties:
0019 
0020   compatible:
0021     const: orisetech,otm8009a
0022 
0023   reg:
0024     maxItems: 1
0025     description: DSI virtual channel
0026 
0027   enable-gpios: true
0028   port: true
0029   power-supply: true
0030 
0031   reset-gpios:
0032     maxItems: 1
0033 
0034 additionalProperties: false
0035 
0036 required:
0037   - compatible
0038   - reg
0039 
0040 examples:
0041   - |
0042     dsi {
0043       #address-cells = <1>;
0044       #size-cells = <0>;
0045       panel@0 {
0046         compatible = "orisetech,otm8009a";
0047         reg = <0>;
0048         reset-gpios = <&gpiof 15 0>;
0049         power-supply = <&v1v8>;
0050       };
0051     };
0052 ...