Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / panel / xinpeng,xpp055c272.yaml
blob9c9743a23500df3619d9bdec93e5a23c6efdeb64
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#
7 title: Xinpeng XPP055C272 5.5in 720x1280 DSI panel
9 maintainers:
10   - Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
12 allOf:
13   - $ref: panel-common.yaml#
15 properties:
16   compatible:
17     const: xinpeng,xpp055c272
19   reg:
20     maxItems: 1
22   backlight: true
23   port: true
24   reset-gpios: true
25   iovcc-supply:
26     description: regulator that supplies the iovcc voltage
27   vci-supply:
28     description: regulator that supplies the vci voltage
30 required:
31   - compatible
32   - reg
33   - backlight
34   - port
35   - iovcc-supply
36   - vci-supply
38 additionalProperties: false
40 examples:
41   - |
42     dsi {
43         #address-cells = <1>;
44         #size-cells = <0>;
46         panel@0 {
47             compatible = "xinpeng,xpp055c272";
48             reg = <0>;
49             backlight = <&backlight>;
50             iovcc-supply = <&vcc_1v8>;
51             vci-supply = <&vcc3v3_lcd>;
53             port {
54                 mipi_in_panel: endpoint {
55                     remote-endpoint = <&mipi_out_panel>;
56                 };
57             };
58         };
59     };
61 ...