1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/panel/logicpd,type28.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Logic PD Type 28 4.3" WQVGA TFT LCD panel 8 9maintainers: 10 - Adam Ford <aford173@gmail.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 const: logicpd,type28 18 19 power-supply: true 20 enable-gpios: true 21 backlight: true 22 port: true 23 24required: 25 - compatible 26 27additionalProperties: false 28 29examples: 30 - | 31 lcd0: display { 32 compatible = "logicpd,type28"; 33 enable-gpios = <&gpio5 27 0>; 34 backlight = <&backlight>; 35 port { 36 lcd_in: endpoint { 37 remote-endpoint = <&dpi_out>; 38 }; 39 }; 40 }; 41 42... 43