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/ilitek,ili9806e.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Ilitek ILI9806E based MIPI-DSI panels 8 9maintainers: 10 - Michael Walle <mwalle@kernel.org> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 items: 18 - enum: 19 - densitron,dmt028vghmcmi-1d 20 - ortustech,com35h3p70ulc 21 - const: ilitek,ili9806e 22 23 reg: 24 maxItems: 1 25 26 vdd-supply: true 27 vccio-supply: true 28 29required: 30 - compatible 31 - reg 32 - vdd-supply 33 - vccio-supply 34 - reset-gpios 35 - backlight 36 - port 37 38unevaluatedProperties: false 39 40examples: 41 - | 42 #include <dt-bindings/gpio/gpio.h> 43 44 dsi { 45 #address-cells = <1>; 46 #size-cells = <0>; 47 48 panel@0 { 49 compatible = "ortustech,com35h3p70ulc", "ilitek,ili9806e"; 50 reg = <0>; 51 vdd-supply = <®_vdd_panel>; 52 vccio-supply = <®_vccio_panel>; 53 reset-gpios = <&gpio3 6 GPIO_ACTIVE_LOW>; 54 backlight = <&backlight>; 55 56 port { 57 panel_in: endpoint { 58 remote-endpoint = <&dsi_out>; 59 }; 60 }; 61 }; 62 }; 63 64... 65