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/elida,kd35t133.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Elida KD35T133 3.5in 320x480 DSI panel
0008 
0009 maintainers:
0010   - Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
0011 
0012 allOf:
0013   - $ref: panel-common.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: elida,kd35t133
0018   reg: true
0019   backlight: true
0020   reset-gpios: true
0021   iovcc-supply:
0022     description: regulator that supplies the iovcc voltage
0023   vdd-supply:
0024     description: regulator that supplies the vdd voltage
0025 
0026 required:
0027   - compatible
0028   - reg
0029   - backlight
0030   - iovcc-supply
0031   - vdd-supply
0032 
0033 additionalProperties: false
0034 
0035 examples:
0036   - |
0037     dsi {
0038         #address-cells = <1>;
0039         #size-cells = <0>;
0040         panel@0 {
0041             compatible = "elida,kd35t133";
0042             reg = <0>;
0043             backlight = <&backlight>;
0044             iovcc-supply = <&vcc_1v8>;
0045             vdd-supply = <&vcc3v3_lcd>;
0046         };
0047     };
0048 
0049 ...