1*440b075bSKrzysztof Kozlowski# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
27317f457SOndrej Jirman%YAML 1.2
37317f457SOndrej Jirman---
47317f457SOndrej Jirman$id: http://devicetree.org/schemas/display/panel/rocktech,jh057n00900.yaml#
57317f457SOndrej Jirman$schema: http://devicetree.org/meta-schemas/core.yaml#
67317f457SOndrej Jirman
77317f457SOndrej Jirmantitle: Rocktech JH057N00900 5.5" 720x1440 TFT LCD panel
87317f457SOndrej Jirman
97317f457SOndrej Jirmanmaintainers:
107317f457SOndrej Jirman  - Ondrej Jirman <megi@xff.cz>
115f374e63SGuido Günther  - Guido Gŭnther <agx@sigxcpu.org>
127317f457SOndrej Jirman
13087e3d47SGuido Güntherdescription:
147317f457SOndrej Jirman  Rocktech JH057N00900 is a 720x1440 TFT LCD panel
157317f457SOndrej Jirman  connected using a MIPI-DSI video interface.
167317f457SOndrej Jirman
177317f457SOndrej JirmanallOf:
187317f457SOndrej Jirman  - $ref: panel-common.yaml#
197317f457SOndrej Jirman
207317f457SOndrej Jirmanproperties:
217317f457SOndrej Jirman  compatible:
223955c0c4SOndrej Jirman    enum:
23e41fef1eSChris Morgan      # Anberic RG353V-V2 5.0" 640x480 TFT LCD panel
24e41fef1eSChris Morgan      - anbernic,rg353v-panel-v2
253955c0c4SOndrej Jirman      # Rocktech JH057N00900 5.5" 720x1440 TFT LCD panel
263955c0c4SOndrej Jirman      - rocktech,jh057n00900
273955c0c4SOndrej Jirman      # Xingbangda XBD599 5.99" 720x1440 TFT LCD panel
283955c0c4SOndrej Jirman      - xingbangda,xbd599
297317f457SOndrej Jirman
30acc0c39aSOndrej Jirman  port: true
317317f457SOndrej Jirman  reg:
327317f457SOndrej Jirman    maxItems: 1
337317f457SOndrej Jirman    description: DSI virtual channel
347317f457SOndrej Jirman
357317f457SOndrej Jirman  vcc-supply:
367317f457SOndrej Jirman    description: Panel power supply
377317f457SOndrej Jirman
387317f457SOndrej Jirman  iovcc-supply:
397317f457SOndrej Jirman    description: I/O voltage supply
407317f457SOndrej Jirman
41087e3d47SGuido Günther  reset-gpios: true
427317f457SOndrej Jirman
43087e3d47SGuido Günther  backlight: true
447317f457SOndrej Jirman
457317f457SOndrej Jirmanrequired:
467317f457SOndrej Jirman  - compatible
477317f457SOndrej Jirman  - reg
487317f457SOndrej Jirman  - vcc-supply
497317f457SOndrej Jirman  - iovcc-supply
507317f457SOndrej Jirman  - reset-gpios
517317f457SOndrej Jirman
527317f457SOndrej JirmanadditionalProperties: false
537317f457SOndrej Jirman
547317f457SOndrej Jirmanexamples:
557317f457SOndrej Jirman  - |
567317f457SOndrej Jirman    #include <dt-bindings/gpio/gpio.h>
577317f457SOndrej Jirman
587317f457SOndrej Jirman    dsi {
597317f457SOndrej Jirman        #address-cells = <1>;
607317f457SOndrej Jirman        #size-cells = <0>;
617317f457SOndrej Jirman        panel@0 {
627317f457SOndrej Jirman            compatible = "rocktech,jh057n00900";
637317f457SOndrej Jirman            reg = <0>;
647317f457SOndrej Jirman            vcc-supply = <&reg_2v8_p>;
657317f457SOndrej Jirman            iovcc-supply = <&reg_1v8_p>;
667317f457SOndrej Jirman            reset-gpios = <&gpio3 13 GPIO_ACTIVE_LOW>;
677317f457SOndrej Jirman            backlight = <&backlight>;
687317f457SOndrej Jirman        };
697317f457SOndrej Jirman    };
70087e3d47SGuido Günther
717317f457SOndrej Jirman...
72