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 - 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 36required: 37 - compatible 38 - reg 39 - vdd-supply 40 - vccio-supply 41 - reset-gpios 42 43additionalProperties: false 44 45examples: 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... 71