1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/panel/xinpeng,xpp055c272.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Xinpeng XPP055C272 5.5in 720x1280 DSI panel
8
9maintainers:
10  - Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
11
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
16  compatible:
17    const: xinpeng,xpp055c272
18  reg: true
19  backlight: true
20  port: true
21  reset-gpios: true
22  iovcc-supply:
23    description: regulator that supplies the iovcc voltage
24  vci-supply:
25    description: regulator that supplies the vci voltage
26
27required:
28  - compatible
29  - reg
30  - backlight
31  - port
32  - iovcc-supply
33  - vci-supply
34
35additionalProperties: false
36
37examples:
38  - |
39    dsi {
40        #address-cells = <1>;
41        #size-cells = <0>;
42
43        panel@0 {
44            compatible = "xinpeng,xpp055c272";
45            reg = <0>;
46            backlight = <&backlight>;
47            iovcc-supply = <&vcc_1v8>;
48            vci-supply = <&vcc3v3_lcd>;
49
50            port {
51                mipi_in_panel: endpoint {
52                    remote-endpoint = <&mipi_out_panel>;
53                };
54            };
55        };
56    };
57
58...
59