xref: /linux/Documentation/devicetree/bindings/display/panel/ilitek,ili9881c.yaml (revision 6f17ab9a63e670bd62a287f95e3982f99eafd77e)
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
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
16  compatible:
17    items:
18      - enum:
19          - ampire,am8001280g
20          - bananapi,lhr050h41
21          - bestar,bsd1218-a101kl68
22          - feixin,k101-im2byl02
23          - raspberrypi,dsi-7inch
24          - startek,kd050hdfia020
25          - tdo,tl050hdv35
26          - wanchanglong,w552946aba
27      - const: ilitek,ili9881c
28
29  reg:
30    maxItems: 1
31
32  backlight: true
33  power-supply: true
34  reset-gpios: true
35  rotation: true
36
37required:
38  - compatible
39  - power-supply
40  - reg
41
42additionalProperties: false
43
44examples:
45  - |
46    #include <dt-bindings/gpio/gpio.h>
47
48    dsi {
49        #address-cells = <1>;
50        #size-cells = <0>;
51
52        panel@0 {
53            compatible = "bananapi,lhr050h41", "ilitek,ili9881c";
54            reg = <0>;
55            power-supply = <&reg_display>;
56            reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */
57            backlight = <&pwm_bl>;
58        };
59    };
60
61...
62