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/jadard,jd9365da-h3.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Jadard JD9365DA-HE WXGA DSI panel
8
9maintainers:
10  - Jagan Teki <jagan@edgeble.ai>
11
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
16  compatible:
17    items:
18      - enum:
19          - chongzhou,cz101b4001
20          - radxa,display-10hd-ad001
21      - const: jadard,jd9365da-h3
22
23  reg: true
24
25  vdd-supply:
26    description: supply regulator for VDD, usually 3.3V
27
28  vccio-supply:
29    description: supply regulator for VCCIO, usually 1.8V
30
31  reset-gpios: true
32
33  backlight: true
34
35  port: true
36
37required:
38  - compatible
39  - reg
40  - vdd-supply
41  - vccio-supply
42  - reset-gpios
43
44additionalProperties: false
45
46examples:
47  - |
48    #include <dt-bindings/gpio/gpio.h>
49    #include <dt-bindings/pinctrl/rockchip.h>
50
51    dsi {
52        #address-cells = <1>;
53        #size-cells = <0>;
54
55        panel@0 {
56            compatible = "chongzhou,cz101b4001", "jadard,jd9365da-h3";
57            reg = <0>;
58            vdd-supply = <&lcd_3v3>;
59            vccio-supply = <&vcca_1v8>;
60            reset-gpios = <&gpio1 RK_PC2 GPIO_ACTIVE_HIGH>;
61            backlight = <&backlight>;
62
63            port {
64                mipi_in_panel: endpoint {
65                    remote-endpoint = <&mipi_out_panel>;
66                };
67            };
68        };
69    };
70
71...
72