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/mantix,mlaf057we51-x.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Mantix MLAF057WE51-X 5.7" 720x1440 TFT LCD panel
0008
0009 maintainers:
0010 - Guido Günther <agx@sigxcpu.org>
0011
0012 description:
0013 Mantix MLAF057WE51 X is a 720x1440 TFT LCD panel connected using
0014 a MIPI-DSI video interface.
0015
0016 allOf:
0017 - $ref: panel-common.yaml#
0018
0019 properties:
0020 compatible:
0021 enum:
0022 - mantix,mlaf057we51-x
0023 - ys,ys57pss36bh5gq
0024
0025 port: true
0026 reg:
0027 maxItems: 1
0028 description: DSI virtual channel
0029
0030 avdd-supply:
0031 description: Positive analog power supply
0032
0033 avee-supply:
0034 description: Negative analog power supply
0035
0036 vddi-supply:
0037 description: 1.8V I/O voltage supply
0038
0039 reset-gpios: true
0040
0041 mantix,tp-rstn-gpios:
0042 maxItems: 1
0043 description: second reset line that triggers DSI config load
0044
0045 backlight: true
0046
0047 required:
0048 - compatible
0049 - reg
0050 - avdd-supply
0051 - avee-supply
0052 - vddi-supply
0053 - reset-gpios
0054
0055 additionalProperties: false
0056
0057 examples:
0058 - |
0059 #include <dt-bindings/gpio/gpio.h>
0060
0061 dsi {
0062 #address-cells = <1>;
0063 #size-cells = <0>;
0064 panel@0 {
0065 compatible = "mantix,mlaf057we51-x";
0066 reg = <0>;
0067 avdd-supply = <®_avdd>;
0068 avee-supply = <®_avee>;
0069 vddi-supply = <®_1v8_p>;
0070 reset-gpios = <&gpio1 29 GPIO_ACTIVE_LOW>;
0071 mantix,tp-rstn-gpios = <&gpio1 24 GPIO_ACTIVE_LOW>;
0072 backlight = <&backlight>;
0073 };
0074 };
0075
0076 ...