xref: /linux/Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml (revision 8195136669661fdfe54e9a8923c33b31c92fc1da)
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          - kingdisplay,kd101ne3-40ti
21          - radxa,display-10hd-ad001
22          - radxa,display-8hd-ad002
23      - const: jadard,jd9365da-h3
24
25  reg:
26    maxItems: 1
27
28  vdd-supply:
29    description: supply regulator for VDD, usually 3.3V
30
31  vccio-supply:
32    description: supply regulator for VCCIO, usually 1.8V
33
34  reset-gpios: true
35
36  backlight: true
37
38  port: true
39
40required:
41  - compatible
42  - reg
43  - vdd-supply
44  - vccio-supply
45  - reset-gpios
46
47additionalProperties: false
48
49examples:
50  - |
51    #include <dt-bindings/gpio/gpio.h>
52    #include <dt-bindings/pinctrl/rockchip.h>
53
54    dsi {
55        #address-cells = <1>;
56        #size-cells = <0>;
57
58        panel@0 {
59            compatible = "chongzhou,cz101b4001", "jadard,jd9365da-h3";
60            reg = <0>;
61            vdd-supply = <&lcd_3v3>;
62            vccio-supply = <&vcca_1v8>;
63            reset-gpios = <&gpio1 RK_PC2 GPIO_ACTIVE_HIGH>;
64            backlight = <&backlight>;
65
66            port {
67                mipi_in_panel: endpoint {
68                    remote-endpoint = <&mipi_out_panel>;
69                };
70            };
71        };
72    };
73
74...
75