53 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---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-Panel8 9maintainers:10 - Fabio Estevam <festevam@gmail.com>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 const: sii,43wvf1g18 19 backlight: true20 port: true21 22 dvdd-supply:23 description: 3v3 digital regulator24 25 avdd-supply:26 description: 5v analog regulator27 28 enable-gpios: true29 30required:31 - compatible32 - dvdd-supply33 - avdd-supply34 35additionalProperties: false36 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