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/mantix,mlaf057we51-x.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Mantix MLAF057WE51-X 5.7" 720x1440 TFT LCD panel 8 9maintainers: 10 - Guido Günther <agx@sigxcpu.org> 11 12description: 13 Mantix MLAF057WE51 X is a 720x1440 TFT LCD panel connected using 14 a MIPI-DSI video interface. 15 16allOf: 17 - $ref: panel-common.yaml# 18 19properties: 20 compatible: 21 enum: 22 - mantix,mlaf057we51-x 23 24 port: true 25 reg: 26 maxItems: 1 27 description: DSI virtual channel 28 29 avdd-supply: 30 description: Positive analog power supply 31 32 avee-supply: 33 description: Negative analog power supply 34 35 vddi-supply: 36 description: 1.8V I/O voltage supply 37 38 reset-gpios: true 39 40 backlight: true 41 42required: 43 - compatible 44 - reg 45 - avdd-supply 46 - avee-supply 47 - vddi-supply 48 - reset-gpios 49 50additionalProperties: false 51 52examples: 53 - | 54 #include <dt-bindings/gpio/gpio.h> 55 56 dsi { 57 #address-cells = <1>; 58 #size-cells = <0>; 59 panel@0 { 60 compatible = "mantix,mlaf057we51-x"; 61 reg = <0>; 62 avdd-supply = <®_avdd>; 63 avee-supply = <®_avee>; 64 vddi-supply = <®_1v8_p>; 65 reset-gpios = <&gpio1 29 GPIO_ACTIVE_LOW>; 66 backlight = <&backlight>; 67 }; 68 }; 69 70... 71