Merge tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64...
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / display / panel / sony,acx424akp.yaml
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/display/panel/sony,acx424akp.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Sony ACX424AKP 4" 480x864 AMOLED panel
8
9 maintainers:
10   - Linus Walleij <linus.walleij@linaro.org>
11
12 allOf:
13   - $ref: panel-common.yaml#
14
15 properties:
16   compatible:
17     const: sony,acx424akp
18   reg: true
19   reset-gpios: true
20   vddi-supply:
21     description: regulator that supplies the vddi voltage
22   enforce-video-mode: true
23
24 required:
25   - compatible
26   - reg
27   - reset-gpios
28
29 additionalProperties: false
30
31 examples:
32   - |
33     #include <dt-bindings/gpio/gpio.h>
34
35     dsi-controller@a0351000 {
36         compatible = "ste,mcde-dsi";
37         reg = <0xa0351000 0x1000>;
38         #address-cells = <1>;
39         #size-cells = <0>;
40
41         panel@0 {
42             compatible = "sony,acx424akp";
43             reg = <0>;
44             vddi-supply = <&foo>;
45             reset-gpios = <&foo_gpio 0 GPIO_ACTIVE_LOW>;
46         };
47     };
48
49 ...