65 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---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 panels8 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-1d20 - ortustech,com35h3p70ulc21 - const: ilitek,ili9806e22 23 reg:24 maxItems: 125 26 vdd-supply: true27 vccio-supply: true28 29required:30 - compatible31 - reg32 - vdd-supply33 - vccio-supply34 - reset-gpios35 - backlight36 - port37 38unevaluatedProperties: false39 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