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