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/xinpeng,xpp055c272.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Xinpeng XPP055C272 5.5in 720x1280 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: xinpeng,xpp055c272
0018   reg: true
0019   backlight: true
0020   reset-gpios: true
0021   iovcc-supply:
0022     description: regulator that supplies the iovcc voltage
0023   vci-supply:
0024     description: regulator that supplies the vci voltage
0025 
0026 required:
0027   - compatible
0028   - reg
0029   - backlight
0030   - iovcc-supply
0031   - vci-supply
0032 
0033 additionalProperties: false
0034 
0035 examples:
0036   - |
0037     dsi {
0038         #address-cells = <1>;
0039         #size-cells = <0>;
0040 
0041         panel@0 {
0042             compatible = "xinpeng,xpp055c272";
0043             reg = <0>;
0044             backlight = <&backlight>;
0045             iovcc-supply = <&vcc_1v8>;
0046             vci-supply = <&vcc3v3_lcd>;
0047         };
0048     };
0049 
0050 ...