blob: baf5dfe5f5ebdd92f460a78d0e56e1b45e7dd323 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# 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:
Tom Rini93743d22024-04-01 09:08:13 -040019 - ampire,am8001280g
Tom Rini53633a82024-02-29 12:33:36 -050020 - bananapi,lhr050h41
21 - feixin,k101-im2byl02
Tom Rini762f85b2024-07-20 11:15:10 -060022 - startek,kd050hdfia020
Tom Rini53633a82024-02-29 12:33:36 -050023 - tdo,tl050hdv35
24 - wanchanglong,w552946aba
25 - const: ilitek,ili9881c
26
Tom Rini762f85b2024-07-20 11:15:10 -060027 reg:
28 maxItems: 1
29
Tom Rini53633a82024-02-29 12:33:36 -050030 backlight: true
31 power-supply: true
Tom Rini53633a82024-02-29 12:33:36 -050032 reset-gpios: true
33 rotation: true
34
35required:
36 - compatible
37 - power-supply
38 - reg
39
40additionalProperties: false
41
42examples:
43 - |
44 #include <dt-bindings/gpio/gpio.h>
45
46 dsi {
47 #address-cells = <1>;
48 #size-cells = <0>;
49
50 panel@0 {
51 compatible = "bananapi,lhr050h41", "ilitek,ili9881c";
52 reg = <0>;
53 power-supply = <&reg_display>;
54 reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */
55 backlight = <&pwm_bl>;
56 };
57 };
58
59...