1*daa83f74SChristophe Branchereau# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*daa83f74SChristophe Branchereau%YAML 1.2 3*daa83f74SChristophe Branchereau--- 4*daa83f74SChristophe Branchereau$id: http://devicetree.org/schemas/display/panel/leadtek,ltk035c5444t.yaml# 5*daa83f74SChristophe Branchereau$schema: http://devicetree.org/meta-schemas/core.yaml# 6*daa83f74SChristophe Branchereau 7*daa83f74SChristophe Branchereautitle: Leadtek ltk035c5444t 3.5" (640x480 pixels) 24-bit IPS LCD panel 8*daa83f74SChristophe Branchereau 9*daa83f74SChristophe Branchereaumaintainers: 10*daa83f74SChristophe Branchereau - Paul Cercueil <paul@crapouillou.net> 11*daa83f74SChristophe Branchereau - Christophe Branchereau <cbranchereau@gmail.com> 12*daa83f74SChristophe Branchereau 13*daa83f74SChristophe BranchereauallOf: 14*daa83f74SChristophe Branchereau - $ref: panel-common.yaml# 15*daa83f74SChristophe Branchereau - $ref: /schemas/spi/spi-peripheral-props.yaml# 16*daa83f74SChristophe Branchereau 17*daa83f74SChristophe Branchereauproperties: 18*daa83f74SChristophe Branchereau compatible: 19*daa83f74SChristophe Branchereau const: leadtek,ltk035c5444t 20*daa83f74SChristophe Branchereau 21*daa83f74SChristophe Branchereau backlight: true 22*daa83f74SChristophe Branchereau port: true 23*daa83f74SChristophe Branchereau power-supply: true 24*daa83f74SChristophe Branchereau reg: true 25*daa83f74SChristophe Branchereau reset-gpios: true 26*daa83f74SChristophe Branchereau 27*daa83f74SChristophe Branchereaurequired: 28*daa83f74SChristophe Branchereau - compatible 29*daa83f74SChristophe Branchereau - power-supply 30*daa83f74SChristophe Branchereau - reset-gpios 31*daa83f74SChristophe Branchereau 32*daa83f74SChristophe BranchereauunevaluatedProperties: false 33*daa83f74SChristophe Branchereau 34*daa83f74SChristophe Branchereauexamples: 35*daa83f74SChristophe Branchereau - | 36*daa83f74SChristophe Branchereau #include <dt-bindings/gpio/gpio.h> 37*daa83f74SChristophe Branchereau 38*daa83f74SChristophe Branchereau spi { 39*daa83f74SChristophe Branchereau #address-cells = <1>; 40*daa83f74SChristophe Branchereau #size-cells = <0>; 41*daa83f74SChristophe Branchereau panel@0 { 42*daa83f74SChristophe Branchereau compatible = "leadtek,ltk035c5444t"; 43*daa83f74SChristophe Branchereau reg = <0>; 44*daa83f74SChristophe Branchereau 45*daa83f74SChristophe Branchereau spi-3wire; 46*daa83f74SChristophe Branchereau spi-max-frequency = <3125000>; 47*daa83f74SChristophe Branchereau 48*daa83f74SChristophe Branchereau reset-gpios = <&gpe 2 GPIO_ACTIVE_LOW>; 49*daa83f74SChristophe Branchereau 50*daa83f74SChristophe Branchereau backlight = <&backlight>; 51*daa83f74SChristophe Branchereau power-supply = <&vcc>; 52*daa83f74SChristophe Branchereau 53*daa83f74SChristophe Branchereau port { 54*daa83f74SChristophe Branchereau panel_input: endpoint { 55*daa83f74SChristophe Branchereau remote-endpoint = <&panel_output>; 56*daa83f74SChristophe Branchereau }; 57*daa83f74SChristophe Branchereau }; 58*daa83f74SChristophe Branchereau }; 59*daa83f74SChristophe Branchereau }; 60