1# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/panel/ilitek,ili9881c.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Ilitek ILI9881c based MIPI-DSI panels
8
9maintainers:
10  - Maxime Ripard <mripard@kernel.org>
11
12properties:
13  compatible:
14    items:
15      - enum:
16          - bananapi,lhr050h41
17          - feixin,k101-im2byl02
18          - wanchanglong,w552946aba
19      - const: ilitek,ili9881c
20
21  backlight: true
22  power-supply: true
23  reg: true
24  reset-gpios: true
25
26required:
27  - compatible
28  - power-supply
29  - reg
30  - reset-gpios
31
32additionalProperties: false
33
34examples:
35  - |
36    #include <dt-bindings/gpio/gpio.h>
37
38    dsi {
39        #address-cells = <1>;
40        #size-cells = <0>;
41
42        panel@0 {
43            compatible = "bananapi,lhr050h41", "ilitek,ili9881c";
44            reg = <0>;
45            power-supply = <&reg_display>;
46            reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */
47            backlight = <&pwm_bl>;
48        };
49    };
50
51...
52