Skip to content

Commit bb3098e

Browse files
openedevlinusw
authored andcommitted
dt-bindings: display: Document Jadard JD9365DA-H3 DSI panel
Jadard JD9365DA-H3 is WXGA MIPI DSI panel and it support TFT dot matrix LCD with 800RGBx1280 dots at maximum. Document it. Cc: [email protected] Signed-off-by: Jagan Teki <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Signed-off-by: Linus Walleij <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 0b894c4 commit bb3098e

File tree

2 files changed

+75
-0
lines changed

2 files changed

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

MAINTAINERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6503,6 +6503,11 @@ S: Orphan / Obsolete
65036503
F: drivers/gpu/drm/i810/
65046504
F: include/uapi/drm/i810_drm.h
65056505

6506+
DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6507+
M: Jagan Teki <[email protected]>
6508+
S: Maintained
6509+
F: Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6510+
65066511
DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
65076512
M: Paul Kocialkowski <[email protected]>
65086513
S: Supported

0 commit comments

Comments
 (0)