17317f457SOndrej Jirman# 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>
117317f457SOndrej Jirman
127317f457SOndrej Jirmandescription: |
137317f457SOndrej Jirman             Rocktech JH057N00900 is a 720x1440 TFT LCD panel
147317f457SOndrej Jirman             connected using a MIPI-DSI video interface.
157317f457SOndrej Jirman
167317f457SOndrej JirmanallOf:
177317f457SOndrej Jirman  - $ref: panel-common.yaml#
187317f457SOndrej Jirman
197317f457SOndrej Jirmanproperties:
207317f457SOndrej Jirman  compatible:
217317f457SOndrej Jirman    const: rocktech,jh057n00900
227317f457SOndrej Jirman
237317f457SOndrej Jirman  reg:
247317f457SOndrej Jirman    maxItems: 1
257317f457SOndrej Jirman    description: DSI virtual channel
267317f457SOndrej Jirman
277317f457SOndrej Jirman  vcc-supply:
287317f457SOndrej Jirman    description: Panel power supply
297317f457SOndrej Jirman
307317f457SOndrej Jirman  iovcc-supply:
317317f457SOndrej Jirman    description: I/O voltage supply
327317f457SOndrej Jirman
337317f457SOndrej Jirman  reset-gpios:
347317f457SOndrej Jirman    description: GPIO used for the reset pin
357317f457SOndrej Jirman    maxItems: 1
367317f457SOndrej Jirman
377317f457SOndrej Jirman  backlight:
387317f457SOndrej Jirman    description: Backlight used by the panel
397317f457SOndrej Jirman    $ref: "/schemas/types.yaml#/definitions/phandle"
407317f457SOndrej Jirman
417317f457SOndrej Jirmanrequired:
427317f457SOndrej Jirman  - compatible
437317f457SOndrej Jirman  - reg
447317f457SOndrej Jirman  - vcc-supply
457317f457SOndrej Jirman  - iovcc-supply
467317f457SOndrej Jirman  - reset-gpios
477317f457SOndrej Jirman
487317f457SOndrej JirmanadditionalProperties: false
497317f457SOndrej Jirman
507317f457SOndrej Jirmanexamples:
517317f457SOndrej Jirman  - |
527317f457SOndrej Jirman    #include <dt-bindings/gpio/gpio.h>
537317f457SOndrej Jirman
547317f457SOndrej Jirman    dsi {
557317f457SOndrej Jirman      #address-cells = <1>;
567317f457SOndrej Jirman      #size-cells = <0>;
577317f457SOndrej Jirman      panel@0 {
587317f457SOndrej Jirman        compatible = "rocktech,jh057n00900";
597317f457SOndrej Jirman        reg = <0>;
607317f457SOndrej Jirman        vcc-supply = <&reg_2v8_p>;
617317f457SOndrej Jirman        iovcc-supply = <&reg_1v8_p>;
627317f457SOndrej Jirman        reset-gpios = <&gpio3 13 GPIO_ACTIVE_LOW>;
637317f457SOndrej Jirman        backlight = <&backlight>;
647317f457SOndrej Jirman      };
657317f457SOndrej Jirman    };
667317f457SOndrej Jirman...
67