1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/panel/lgphilips,lb035q02.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: LG.Philips LB035Q02 Panel 8 9maintainers: 10 - Tomi Valkeinen <tomi.valkeinen@ti.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 - $ref: /schemas/spi/spi-peripheral-props.yaml# 15 16properties: 17 compatible: 18 const: lgphilips,lb035q02 19 20 label: true 21 enable-gpios: true 22 port: true 23 24required: 25 - compatible 26 - enable-gpios 27 - port 28 29unevaluatedProperties: false 30 31examples: 32 - | 33 spi { 34 #address-cells = <1>; 35 #size-cells = <0>; 36 37 panel: panel@0 { 38 compatible = "lgphilips,lb035q02"; 39 reg = <0>; 40 spi-max-frequency = <100000>; 41 spi-cpol; 42 spi-cpha; 43 44 label = "lcd"; 45 46 enable-gpios = <&gpio7 7 0>; 47 48 port { 49 lcd_in: endpoint { 50 remote-endpoint = <&dpi_out>; 51 }; 52 }; 53 }; 54 }; 55 56... 57