xref: /linux/Documentation/devicetree/bindings/display/panel/ilitek,ili9488.yaml (revision b2128290c29902315e632ea59e0504d6bc9e9b42)
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,ili9488.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Ilitek ILI9488 based MIPI-DSI panels
8
9maintainers:
10  - Igor Reznichenko <igor@reznichenko.net>
11
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
16  compatible:
17    items:
18      - enum:
19          - focuslcds,e35gh-i-mw800cb
20      - const: ilitek,ili9488
21
22  reg:
23    maxItems: 1
24
25  vci-supply: true
26  iovcc-supply: true
27
28required:
29  - compatible
30  - reg
31  - vci-supply
32  - iovcc-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 = "focuslcds,e35gh-i-mw800cb", "ilitek,ili9488";
49            reg = <0>;
50            vci-supply = <&reg_vci_panel>;
51            iovcc-supply = <&reg_iovcc_panel>;
52            reset-gpios = <&gpio3 6 GPIO_ACTIVE_LOW>;
53            backlight = <&pwm_bl>;
54
55            port {
56                panel_in: endpoint {
57                    remote-endpoint = <&dsi_out>;
58                };
59            };
60        };
61    };
62
63...
64