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 - feixin,k101-im2byl02 22 - startek,kd050hdfia020 23 - tdo,tl050hdv35 24 - wanchanglong,w552946aba 25 - const: ilitek,ili9881c 26 27 backlight: true 28 power-supply: true 29 reg: true 30 reset-gpios: true 31 rotation: true 32 33required: 34 - compatible 35 - power-supply 36 - reg 37 38additionalProperties: false 39 40examples: 41 - | 42 #include <dt-bindings/gpio/gpio.h> 43 44 dsi { 45 #address-cells = <1>; 46 #size-cells = <0>; 47 48 panel@0 { 49 compatible = "bananapi,lhr050h41", "ilitek,ili9881c"; 50 reg = <0>; 51 power-supply = <®_display>; 52 reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */ 53 backlight = <&pwm_bl>; 54 }; 55 }; 56 57... 58