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