1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/panel/lg,ld070wx3-sl01.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: LG Corporation 7" WXGA TFT LCD panel 8 9maintainers: 10 - Svyatoslav Ryhel <clamor95@gmail.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 items: 18 - const: lg,ld070wx3-sl01 19 20 reg: 21 maxItems: 1 22 23 vdd-supply: true 24 vcc-supply: true 25 26 backlight: true 27 port: true 28 29required: 30 - compatible 31 - vdd-supply 32 - vcc-supply 33 34additionalProperties: false 35 36examples: 37 - | 38 #include <dt-bindings/gpio/gpio.h> 39 40 dsi { 41 #address-cells = <1>; 42 #size-cells = <0>; 43 44 panel@0 { 45 compatible = "lg,ld070wx3-sl01"; 46 reg = <0>; 47 48 vdd-supply = <&vdd_3v3_lcd>; 49 vcc-supply = <&vcc_1v8_lcd>; 50 51 backlight = <&backlight>; 52 53 port { 54 endpoint { 55 remote-endpoint = <&dsi0_out>; 56 }; 57 }; 58 }; 59 }; 60... 61