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/sgd,gktw70sdae4se.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Solomon Goldentek Display GKTW70SDAE4SE 7" WVGA LVDS Display Panel
0008 
0009 maintainers:
0010   - Neil Armstrong <neil.armstrong@linaro.org>
0011   - Thierry Reding <thierry.reding@gmail.com>
0012 
0013 allOf:
0014   - $ref: panel-common.yaml#
0015   - $ref: /schemas/display/lvds.yaml/#
0016 
0017 select:
0018   properties:
0019     compatible:
0020       contains:
0021         const: sgd,gktw70sdae4se
0022 
0023   required:
0024     - compatible
0025 
0026 properties:
0027   compatible:
0028     items:
0029       - const: sgd,gktw70sdae4se
0030       - const: panel-lvds
0031 
0032   data-mapping:
0033     const: jeida-18
0034 
0035   width-mm:
0036     const: 153
0037 
0038   height-mm:
0039     const: 86
0040 
0041   panel-timing: true
0042   port: true
0043 
0044 additionalProperties: false
0045 
0046 required:
0047   - compatible
0048   - port
0049   - data-mapping
0050   - width-mm
0051   - height-mm
0052   - panel-timing
0053 
0054 examples:
0055   - |+
0056     panel {
0057       compatible = "sgd,gktw70sdae4se", "panel-lvds";
0058 
0059       width-mm = <153>;
0060       height-mm = <86>;
0061 
0062       data-mapping = "jeida-18";
0063 
0064       panel-timing {
0065         clock-frequency = <32000000>;
0066         hactive = <800>;
0067         vactive = <480>;
0068         hback-porch = <39>;
0069         hfront-porch = <39>;
0070         vback-porch = <29>;
0071         vfront-porch = <13>;
0072         hsync-len = <47>;
0073         vsync-len = <2>;
0074       };
0075 
0076       port {
0077         panel_in: endpoint {
0078           remote-endpoint = <&lvds_encoder>;
0079         };
0080       };
0081     };
0082 
0083 ...