blob: f4cb825d1e9660ed1e89a563b79503d8333b5ecf [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/panel/elida,kd35t133.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Elida KD35T133 3.5in 320x480 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: elida,kd35t133
Tom Rini762f85b2024-07-20 11:15:10 -060018
19 reg:
20 maxItems: 1
21
Tom Rini53633a82024-02-29 12:33:36 -050022 backlight: true
23 port: true
24 reset-gpios: true
25 rotation: true
26 iovcc-supply:
27 description: regulator that supplies the iovcc voltage
28 vdd-supply:
29 description: regulator that supplies the vdd voltage
30
31required:
32 - compatible
33 - reg
34 - backlight
35 - port
36 - iovcc-supply
37 - vdd-supply
38
39additionalProperties: false
40
41examples:
42 - |
43 dsi {
44 #address-cells = <1>;
45 #size-cells = <0>;
46 panel@0 {
47 compatible = "elida,kd35t133";
48 reg = <0>;
49 backlight = <&backlight>;
50 iovcc-supply = <&vcc_1v8>;
51 vdd-supply = <&vcc3v3_lcd>;
52
53 port {
54 mipi_in_panel: endpoint {
55 remote-endpoint = <&mipi_out_panel>;
56 };
57 };
58 };
59 };
60
61...