Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: dri-devel@lists.freedesktop.org
Signed-off-by: Jagan Teki <jagan@edgeble.ai>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20221108173120.618312-3-jagan@edgeble.ai

authored by

Jagan Teki and committed by
Linus Walleij
bb3098ee 0b894c46

+75
+70
Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
··· 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 <jagan@edgeble.ai> 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 + ...
+5
MAINTAINERS
··· 6503 6503 F: drivers/gpu/drm/i810/ 6504 6504 F: include/uapi/drm/i810_drm.h 6505 6505 6506 + DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS 6507 + M: Jagan Teki <jagan@edgeble.ai> 6508 + S: Maintained 6509 + F: Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml 6510 + 6506 6511 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER 6507 6512 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com> 6508 6513 S: Supported