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/asus,z00t-tm5p5-nt35596.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: ASUS Z00T TM5P5 NT35596 5.5" 1080×1920 LCD Panel
0008 
0009 maintainers:
0010   - Konrad Dybcio <konradybcio@gmail.com>
0011 
0012 description: |+
0013   This panel seems to only be found in the Asus Z00T
0014   smartphone and we have no straightforward way of
0015   actually getting the correct model number,
0016   as no schematics are released publicly.
0017 
0018 allOf:
0019   - $ref: panel-common.yaml#
0020 
0021 properties:
0022   compatible:
0023     const: asus,z00t-tm5p5-n35596
0024   reg: true
0025   reset-gpios: true
0026   vdd-supply:
0027     description: core voltage supply
0028   vddio-supply:
0029     description: vddio supply
0030 
0031 required:
0032   - compatible
0033   - reg
0034   - vdd-supply
0035   - vddio-supply
0036   - reset-gpios
0037 
0038 additionalProperties: false
0039 
0040 examples:
0041   - |
0042     #include <dt-bindings/gpio/gpio.h>
0043 
0044     dsi {
0045             #address-cells = <1>;
0046             #size-cells = <0>;
0047             panel@0 {
0048                     reg = <0>;
0049 
0050                     compatible = "asus,z00t-tm5p5-n35596";
0051 
0052                     vdd-supply = <&pm8916_l8>;
0053                     vddio-supply = <&pm8916_l6>;
0054                     reset-gpios = <&msmgpio 25 GPIO_ACTIVE_HIGH>;
0055             };
0056     };