Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/samsung,s6e88a0-ams452ef01.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Samsung AMS452EF01 AMOLED panel with S6E88A0 video mode DSI controller
0008 
0009 maintainers:
0010   - Michael Srba <Michael.Srba@seznam.cz>
0011 
0012 allOf:
0013   - $ref: panel-common.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: samsung,s6e88a0-ams452ef01
0018   reg: true
0019   reset-gpios: true
0020   vdd3-supply:
0021     description: core voltage supply
0022   vci-supply:
0023     description: voltage supply for analog circuits
0024 
0025 required:
0026   - compatible
0027   - reg
0028   - vdd3-supply
0029   - vci-supply
0030   - reset-gpios
0031 
0032 additionalProperties: false
0033 
0034 examples:
0035   - |
0036     #include <dt-bindings/gpio/gpio.h>
0037 
0038     dsi {
0039             #address-cells = <1>;
0040             #size-cells = <0>;
0041             panel@0 {
0042                     reg = <0>;
0043 
0044                     compatible = "samsung,s6e88a0-ams452ef01";
0045 
0046                     vdd3-supply = <&pm8916_l17>;
0047                     vci-supply = <&reg_vlcd_vci>;
0048                     reset-gpios = <&msmgpio 25 GPIO_ACTIVE_HIGH>;
0049             };
0050     };