1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 %YAML 1.2 2 %YAML 1.2 3 --- 3 --- 4 $id: http://devicetree.org/schemas/display/pan 4 $id: http://devicetree.org/schemas/display/panel/ilitek,ili9881c.yaml# 5 $schema: http://devicetree.org/meta-schemas/co 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 6 6 7 title: Ilitek ILI9881c based MIPI-DSI panels 7 title: Ilitek ILI9881c based MIPI-DSI panels 8 8 9 maintainers: 9 maintainers: 10 - Maxime Ripard <mripard@kernel.org> 10 - Maxime Ripard <mripard@kernel.org> 11 11 12 allOf: 12 allOf: 13 - $ref: panel-common.yaml# 13 - $ref: panel-common.yaml# 14 14 15 properties: 15 properties: 16 compatible: 16 compatible: 17 items: 17 items: 18 - enum: 18 - enum: 19 - ampire,am8001280g 19 - ampire,am8001280g 20 - bananapi,lhr050h41 20 - bananapi,lhr050h41 21 - feixin,k101-im2byl02 21 - feixin,k101-im2byl02 22 - startek,kd050hdfia020 22 - startek,kd050hdfia020 23 - tdo,tl050hdv35 23 - tdo,tl050hdv35 24 - wanchanglong,w552946aba 24 - wanchanglong,w552946aba 25 - const: ilitek,ili9881c 25 - const: ilitek,ili9881c 26 26 27 reg: 27 reg: 28 maxItems: 1 28 maxItems: 1 29 29 30 backlight: true 30 backlight: true 31 power-supply: true 31 power-supply: true 32 reset-gpios: true 32 reset-gpios: true 33 rotation: true 33 rotation: true 34 34 35 required: 35 required: 36 - compatible 36 - compatible 37 - power-supply 37 - power-supply 38 - reg 38 - reg 39 39 40 additionalProperties: false 40 additionalProperties: false 41 41 42 examples: 42 examples: 43 - | 43 - | 44 #include <dt-bindings/gpio/gpio.h> 44 #include <dt-bindings/gpio/gpio.h> 45 45 46 dsi { 46 dsi { 47 #address-cells = <1>; 47 #address-cells = <1>; 48 #size-cells = <0>; 48 #size-cells = <0>; 49 49 50 panel@0 { 50 panel@0 { 51 compatible = "bananapi,lhr050h41", 51 compatible = "bananapi,lhr050h41", "ilitek,ili9881c"; 52 reg = <0>; 52 reg = <0>; 53 power-supply = <®_display>; 53 power-supply = <®_display>; 54 reset-gpios = <&r_pio 0 5 GPIO_ACT 54 reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */ 55 backlight = <&pwm_bl>; 55 backlight = <&pwm_bl>; 56 }; 56 }; 57 }; 57 }; 58 58 59 ... 59 ...
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.