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/sony,acx424akp.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Sony ACX424AKP/ACX424AKM 4" 480x864/480x854 AMOLED panel
0008
0009 description: The Sony ACX424AKP and ACX424AKM are panels built around
0010 the Novatek NT35560 display controller. The only difference is that
0011 the AKM is configured to use 10 pixels less in the Y axis than the
0012 AKP.
0013
0014 maintainers:
0015 - Linus Walleij <linus.walleij@linaro.org>
0016
0017 allOf:
0018 - $ref: panel-common.yaml#
0019
0020 properties:
0021 compatible:
0022 enum:
0023 - sony,acx424akp
0024 - sony,acx424akm
0025 reg: true
0026 reset-gpios: true
0027 vddi-supply:
0028 description: regulator that supplies the vddi voltage
0029 enforce-video-mode: true
0030
0031 required:
0032 - compatible
0033 - reg
0034 - reset-gpios
0035
0036 additionalProperties: false
0037
0038 examples:
0039 - |
0040 #include <dt-bindings/gpio/gpio.h>
0041
0042 dsi-controller@a0351000 {
0043 compatible = "ste,mcde-dsi";
0044 reg = <0xa0351000 0x1000>;
0045 #address-cells = <1>;
0046 #size-cells = <0>;
0047
0048 panel@0 {
0049 compatible = "sony,acx424akp";
0050 reg = <0>;
0051 vddi-supply = <&foo>;
0052 reset-gpios = <&foo_gpio 0 GPIO_ACTIVE_LOW>;
0053 };
0054 };
0055
0056 ...