1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/panel/seiko,43wvf1g.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Seiko Instruments Inc. 4.3" WVGA (800 x RGB x 480) TFT with Touch-Panel 8 9maintainers: 10 - Fabio Estevam <festevam@gmail.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 const: sii,43wvf1g 18 19 backlight: true 20 port: true 21 22 dvdd-supply: 23 description: 3v3 digital regulator 24 25 avdd-supply: 26 description: 5v analog regulator 27 28 enable-gpios: true 29 30required: 31 - compatible 32 - dvdd-supply 33 - avdd-supply 34 35additionalProperties: false 36 37examples: 38 - | 39 panel { 40 compatible = "sii,43wvf1g"; 41 42 backlight = <&backlight_display>; 43 dvdd-supply = <®_lcd_3v3>; 44 avdd-supply = <®_lcd_5v>; 45 port { 46 panel_in: endpoint { 47 remote-endpoint = <&display_out>; 48 }; 49 }; 50 }; 51 52... 53