Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / panel / seiko,43wvf1g.yaml
blob1df3cbb51ff93adfa60ab9992063b807a56418d3
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#
7 title: Seiko Instruments Inc. 4.3" WVGA (800 x RGB x 480) TFT with Touch-Panel
9 maintainers:
10   - Fabio Estevam <festevam@gmail.com>
12 allOf:
13   - $ref: panel-common.yaml#
15 properties:
16   compatible:
17     const: sii,43wvf1g
19   backlight: true
20   port: true
22   dvdd-supply:
23     description: 3v3 digital regulator
25   avdd-supply:
26     description: 5v analog regulator
28   enable-gpios: true
30 required:
31   - compatible
32   - dvdd-supply
33   - avdd-supply
35 additionalProperties: false
37 examples:
38   - |
39     panel {
40         compatible = "sii,43wvf1g";
42         backlight = <&backlight_display>;
43         dvdd-supply = <&reg_lcd_3v3>;
44         avdd-supply = <&reg_lcd_5v>;
45         port {
46             panel_in: endpoint {
47                 remote-endpoint = <&display_out>;
48             };
49         };
50     };
52 ...