xref: /linux/Documentation/devicetree/bindings/display/panel/ilitek,ili9806e.yaml (revision 5f30ee493044e9ea3a46167e5597a96f5c302adb)
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/ilitek,ili9806e.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Ilitek ILI9806E based MIPI-DSI panels
8
9maintainers:
10  - Michael Walle <mwalle@kernel.org>
11
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
16  compatible:
17    items:
18      - enum:
19          - ortustech,com35h3p70ulc
20      - const: ilitek,ili9806e
21
22  reg:
23    maxItems: 1
24
25  vdd-supply: true
26  vccio-supply: true
27
28required:
29  - compatible
30  - reg
31  - vdd-supply
32  - vccio-supply
33  - reset-gpios
34  - backlight
35  - port
36
37unevaluatedProperties: false
38
39examples:
40  - |
41    #include <dt-bindings/gpio/gpio.h>
42
43    dsi {
44        #address-cells = <1>;
45        #size-cells = <0>;
46
47        panel@0 {
48            compatible = "ortustech,com35h3p70ulc", "ilitek,ili9806e";
49            reg = <0>;
50            vdd-supply = <&reg_vdd_panel>;
51            vccio-supply = <&reg_vccio_panel>;
52            reset-gpios = <&gpio3 6 GPIO_ACTIVE_LOW>;
53            backlight = <&backlight>;
54
55            port {
56                panel_in: endpoint {
57                    remote-endpoint = <&dsi_out>;
58                };
59            };
60        };
61    };
62
63...
64