18bab661aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 28bab661aSEmmanuel Vadot%YAML 1.2 38bab661aSEmmanuel Vadot--- 48bab661aSEmmanuel Vadot$id: http://devicetree.org/schemas/display/panel/jadard,jd9365da-h3.yaml# 58bab661aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 68bab661aSEmmanuel Vadot 78bab661aSEmmanuel Vadottitle: Jadard JD9365DA-HE WXGA DSI panel 88bab661aSEmmanuel Vadot 98bab661aSEmmanuel Vadotmaintainers: 108bab661aSEmmanuel Vadot - Jagan Teki <jagan@edgeble.ai> 118bab661aSEmmanuel Vadot 128bab661aSEmmanuel VadotallOf: 138bab661aSEmmanuel Vadot - $ref: panel-common.yaml# 148bab661aSEmmanuel Vadot 158bab661aSEmmanuel Vadotproperties: 168bab661aSEmmanuel Vadot compatible: 178bab661aSEmmanuel Vadot items: 188bab661aSEmmanuel Vadot - enum: 198bab661aSEmmanuel Vadot - chongzhou,cz101b4001 200e8011faSEmmanuel Vadot - kingdisplay,kd101ne3-40ti 21*b2d2a78aSEmmanuel Vadot - melfas,lmfbx101117480 22fac71e4eSEmmanuel Vadot - radxa,display-10hd-ad001 23fac71e4eSEmmanuel Vadot - radxa,display-8hd-ad002 248bab661aSEmmanuel Vadot - const: jadard,jd9365da-h3 258bab661aSEmmanuel Vadot 267d0873ebSEmmanuel Vadot reg: 277d0873ebSEmmanuel Vadot maxItems: 1 288bab661aSEmmanuel Vadot 298bab661aSEmmanuel Vadot vdd-supply: 308bab661aSEmmanuel Vadot description: supply regulator for VDD, usually 3.3V 318bab661aSEmmanuel Vadot 328bab661aSEmmanuel Vadot vccio-supply: 338bab661aSEmmanuel Vadot description: supply regulator for VCCIO, usually 1.8V 348bab661aSEmmanuel Vadot 358bab661aSEmmanuel Vadot reset-gpios: true 368bab661aSEmmanuel Vadot 378bab661aSEmmanuel Vadot backlight: true 388bab661aSEmmanuel Vadot 398bab661aSEmmanuel Vadot port: true 408bab661aSEmmanuel Vadot 418bab661aSEmmanuel Vadotrequired: 428bab661aSEmmanuel Vadot - compatible 438bab661aSEmmanuel Vadot - reg 448bab661aSEmmanuel Vadot - vdd-supply 458bab661aSEmmanuel Vadot - vccio-supply 468bab661aSEmmanuel Vadot - reset-gpios 478bab661aSEmmanuel Vadot 488bab661aSEmmanuel VadotadditionalProperties: false 498bab661aSEmmanuel Vadot 508bab661aSEmmanuel Vadotexamples: 518bab661aSEmmanuel Vadot - | 528bab661aSEmmanuel Vadot #include <dt-bindings/gpio/gpio.h> 538bab661aSEmmanuel Vadot #include <dt-bindings/pinctrl/rockchip.h> 548bab661aSEmmanuel Vadot 558bab661aSEmmanuel Vadot dsi { 568bab661aSEmmanuel Vadot #address-cells = <1>; 578bab661aSEmmanuel Vadot #size-cells = <0>; 588bab661aSEmmanuel Vadot 598bab661aSEmmanuel Vadot panel@0 { 608bab661aSEmmanuel Vadot compatible = "chongzhou,cz101b4001", "jadard,jd9365da-h3"; 618bab661aSEmmanuel Vadot reg = <0>; 628bab661aSEmmanuel Vadot vdd-supply = <&lcd_3v3>; 638bab661aSEmmanuel Vadot vccio-supply = <&vcca_1v8>; 648bab661aSEmmanuel Vadot reset-gpios = <&gpio1 RK_PC2 GPIO_ACTIVE_HIGH>; 658bab661aSEmmanuel Vadot backlight = <&backlight>; 668bab661aSEmmanuel Vadot 678bab661aSEmmanuel Vadot port { 688bab661aSEmmanuel Vadot mipi_in_panel: endpoint { 698bab661aSEmmanuel Vadot remote-endpoint = <&mipi_out_panel>; 708bab661aSEmmanuel Vadot }; 718bab661aSEmmanuel Vadot }; 728bab661aSEmmanuel Vadot }; 738bab661aSEmmanuel Vadot }; 748bab661aSEmmanuel Vadot 758bab661aSEmmanuel Vadot... 76