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/rocktech,jh057n00900.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Rocktech JH057N00900 5.5" 720x1440 TFT LCD panel 8 9maintainers: 10 - Ondrej Jirman <megi@xff.cz> 11 - Guido Gŭnther <agx@sigxcpu.org> 12 13description: 14 Rocktech JH057N00900 is a 720x1440 TFT LCD panel 15 connected using a MIPI-DSI video interface. 16 17allOf: 18 - $ref: panel-common.yaml# 19 20properties: 21 compatible: 22 enum: 23 # Anberic RG353V-V2 5.0" 640x480 TFT LCD panel 24 - anbernic,rg353v-panel-v2 25 # Powkiddy RGB10MAX3 5.0" 720x1280 TFT LCD panel 26 - powkiddy,rgb10max3-panel 27 # Powkiddy RGB30 3.0" 720x720 TFT LCD panel 28 - powkiddy,rgb30-panel 29 # Rocktech JH057N00900 5.5" 720x1440 TFT LCD panel 30 - rocktech,jh057n00900 31 # Xingbangda XBD599 5.99" 720x1440 TFT LCD panel 32 - xingbangda,xbd599 33 34 port: true 35 reg: 36 maxItems: 1 37 description: DSI virtual channel 38 39 vcc-supply: 40 description: Panel power supply 41 42 iovcc-supply: 43 description: I/O voltage supply 44 45 reset-gpios: true 46 47 backlight: true 48 rotation: true 49 50required: 51 - compatible 52 - reg 53 - vcc-supply 54 - iovcc-supply 55 - reset-gpios 56 57additionalProperties: false 58 59examples: 60 - | 61 #include <dt-bindings/gpio/gpio.h> 62 63 dsi { 64 #address-cells = <1>; 65 #size-cells = <0>; 66 panel@0 { 67 compatible = "rocktech,jh057n00900"; 68 reg = <0>; 69 vcc-supply = <®_2v8_p>; 70 iovcc-supply = <®_1v8_p>; 71 reset-gpios = <&gpio3 13 GPIO_ACTIVE_LOW>; 72 backlight = <&backlight>; 73 }; 74 }; 75 76... 77