xref: /linux/Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml (revision 06ed6aa56ffac9241e03a24649e8d048f8f1b10c)
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
7title: Sony ACX424AKP 4" 480x864 AMOLED panel
8
9maintainers:
10  - Linus Walleij <linus.walleij@linaro.org>
11
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
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
24required:
25  - compatible
26  - reg
27  - reset-gpios
28
29additionalProperties: false
30
31examples:
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...
50