1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/panel/ampire,am-480272h3tmqw-t01h.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Ampire AM-480272H3TMQW-T01H 4.3" WQVGA TFT LCD panel 8 9maintainers: 10 - Yannick Fertre <yannick.fertre@st.com> 11 - Thierry Reding <treding@nvidia.com> 12 13allOf: 14 - $ref: panel-common.yaml# 15 16properties: 17 compatible: 18 const: ampire,am-480272h3tmqw-t01h 19 20 power-supply: true 21 enable-gpios: true 22 backlight: true 23 port: true 24 25required: 26 - compatible 27 28additionalProperties: false 29 30examples: 31 - | 32 panel_rgb: panel { 33 compatible = "ampire,am-480272h3tmqw-t01h"; 34 enable-gpios = <&gpioa 8 1>; 35 port { 36 panel_in_rgb: endpoint { 37 remote-endpoint = <&controller_out_rgb>; 38 }; 39 }; 40 }; 41 42... 43