Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/seiko,43wvf1g.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Seiko Instruments Inc. 4.3" WVGA (800 x RGB x 480) TFT with Touch-Panel
0008 
0009 maintainers:
0010   - Marco Franchi <marco.franchi@nxp.com>
0011 
0012 allOf:
0013   - $ref: panel-common.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: sii,43wvf1g
0018 
0019   backlight: true
0020   port: true
0021 
0022   dvdd-supply:
0023     description: 3v3 digital regulator
0024 
0025   avdd-supply:
0026     description: 5v analog regulator
0027 
0028 required:
0029   - compatible
0030   - dvdd-supply
0031   - avdd-supply
0032 
0033 additionalProperties: false
0034 
0035 examples:
0036   - |
0037     panel {
0038         compatible = "sii,43wvf1g";
0039 
0040         backlight = <&backlight_display>;
0041         dvdd-supply = <&reg_lcd_3v3>;
0042         avdd-supply = <&reg_lcd_5v>;
0043         port {
0044             panel_in: endpoint {
0045                 remote-endpoint = <&display_out>;
0046             };
0047         };
0048     };
0049 
0050 ...