xref: /freebsd/sys/contrib/device-tree/Bindings/display/panel/asus,z00t-tm5p5-nt35596.yaml (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1c66ec88fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2c66ec88fSEmmanuel Vadot%YAML 1.2
3c66ec88fSEmmanuel Vadot---
4c66ec88fSEmmanuel Vadot$id: http://devicetree.org/schemas/display/panel/asus,z00t-tm5p5-nt35596.yaml#
5c66ec88fSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6c66ec88fSEmmanuel Vadot
7c66ec88fSEmmanuel Vadottitle: ASUS Z00T TM5P5 NT35596 5.5" 1080×1920 LCD Panel
8c66ec88fSEmmanuel Vadot
9c66ec88fSEmmanuel Vadotmaintainers:
10*0e8011faSEmmanuel Vadot  - Konrad Dybcio <konradybcio@kernel.org>
11c66ec88fSEmmanuel Vadot
12c66ec88fSEmmanuel Vadotdescription: |+
13c66ec88fSEmmanuel Vadot  This panel seems to only be found in the Asus Z00T
14c66ec88fSEmmanuel Vadot  smartphone and we have no straightforward way of
15c66ec88fSEmmanuel Vadot  actually getting the correct model number,
16c66ec88fSEmmanuel Vadot  as no schematics are released publicly.
17c66ec88fSEmmanuel Vadot
18c66ec88fSEmmanuel VadotallOf:
19c66ec88fSEmmanuel Vadot  - $ref: panel-common.yaml#
20c66ec88fSEmmanuel Vadot
21c66ec88fSEmmanuel Vadotproperties:
22c66ec88fSEmmanuel Vadot  compatible:
23c66ec88fSEmmanuel Vadot    const: asus,z00t-tm5p5-n35596
247d0873ebSEmmanuel Vadot
257d0873ebSEmmanuel Vadot  reg:
267d0873ebSEmmanuel Vadot    maxItems: 1
277d0873ebSEmmanuel Vadot
28c66ec88fSEmmanuel Vadot  reset-gpios: true
29c66ec88fSEmmanuel Vadot  vdd-supply:
30c66ec88fSEmmanuel Vadot    description: core voltage supply
31c66ec88fSEmmanuel Vadot  vddio-supply:
32c66ec88fSEmmanuel Vadot    description: vddio supply
33c66ec88fSEmmanuel Vadot
34c66ec88fSEmmanuel Vadotrequired:
35c66ec88fSEmmanuel Vadot  - compatible
36c66ec88fSEmmanuel Vadot  - reg
37c66ec88fSEmmanuel Vadot  - vdd-supply
38c66ec88fSEmmanuel Vadot  - vddio-supply
39c66ec88fSEmmanuel Vadot  - reset-gpios
40c66ec88fSEmmanuel Vadot
41c66ec88fSEmmanuel VadotadditionalProperties: false
42c66ec88fSEmmanuel Vadot
43c66ec88fSEmmanuel Vadotexamples:
44c66ec88fSEmmanuel Vadot  - |
45c66ec88fSEmmanuel Vadot    #include <dt-bindings/gpio/gpio.h>
46c66ec88fSEmmanuel Vadot
47c66ec88fSEmmanuel Vadot    dsi {
48c66ec88fSEmmanuel Vadot            #address-cells = <1>;
49c66ec88fSEmmanuel Vadot            #size-cells = <0>;
50c66ec88fSEmmanuel Vadot            panel@0 {
51c66ec88fSEmmanuel Vadot                    reg = <0>;
52c66ec88fSEmmanuel Vadot
53c66ec88fSEmmanuel Vadot                    compatible = "asus,z00t-tm5p5-n35596";
54c66ec88fSEmmanuel Vadot
55c66ec88fSEmmanuel Vadot                    vdd-supply = <&pm8916_l8>;
56c66ec88fSEmmanuel Vadot                    vddio-supply = <&pm8916_l6>;
57c66ec88fSEmmanuel Vadot                    reset-gpios = <&msmgpio 25 GPIO_ACTIVE_HIGH>;
58c66ec88fSEmmanuel Vadot            };
59c66ec88fSEmmanuel Vadot    };
60