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,ili7807s.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Ilitek ILI7807S-based DSI panels 8 9maintainers: 10 - Arpit Saini <arpit.saini@oss.qualcomm.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 items: 18 - enum: 19 - dlc,dlc0697 20 - const: ilitek,ili7807s 21 22 reg: 23 maxItems: 1 24 description: DSI virtual channel 25 26 vddi-supply: 27 description: I/O voltage supply (1.8V) 28 29 avdd-supply: 30 description: Positive LCD bias supply (AVDD), typically +5.5V 31 (range 4.5V to 6.3V) 32 33 avee-supply: 34 description: Negative LCD bias supply (AVEE), typically -5.5V 35 (range -6.3V to -4.5V) 36 37required: 38 - compatible 39 - reg 40 - reset-gpios 41 - vddi-supply 42 - avdd-supply 43 - avee-supply 44 - port 45 46unevaluatedProperties: false 47 48examples: 49 - | 50 #include <dt-bindings/gpio/gpio.h> 51 52 dsi { 53 #address-cells = <1>; 54 #size-cells = <0>; 55 56 panel@0 { 57 compatible = "dlc,dlc0697", "ilitek,ili7807s"; 58 reg = <0>; 59 60 reset-gpios = <&tlmm 3 GPIO_ACTIVE_LOW>; 61 vddi-supply = <&pm4125_l15>; 62 avdd-supply = <&avdd>; 63 avee-supply = <&avee>; 64 65 port { 66 panel_in: endpoint { 67 remote-endpoint = <&dsi0_out>; 68 }; 69 }; 70 }; 71 }; 72