brintos

brintos / linux-shallow public Read only

0
0
Text · 1.2 KiB · b5dc02b Raw
61 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/leadtek,ltk035c5444t.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Leadtek ltk035c5444t 3.5" (640x480 pixels) 24-bit IPS LCD panel8 9maintainers:10  - Paul Cercueil <paul@crapouillou.net>11  - Christophe Branchereau <cbranchereau@gmail.com>12 13allOf:14  - $ref: panel-common.yaml#15  - $ref: /schemas/spi/spi-peripheral-props.yaml#16 17properties:18  compatible:19    const: leadtek,ltk035c5444t20 21  reg:22    maxItems: 123 24  spi-3wire: true25 26required:27  - compatible28  - reg29  - port30  - power-supply31  - reset-gpios32 33unevaluatedProperties: false34 35examples:36  - |37    #include <dt-bindings/gpio/gpio.h>38 39    spi {40        #address-cells = <1>;41        #size-cells = <0>;42        panel@0 {43            compatible = "leadtek,ltk035c5444t";44            reg = <0>;45 46            spi-3wire;47            spi-max-frequency = <3125000>;48 49            reset-gpios = <&gpe 2 GPIO_ACTIVE_LOW>;50 51            backlight = <&backlight>;52            power-supply = <&vcc>;53 54            port {55                panel_input: endpoint {56                    remote-endpoint = <&panel_output>;57                };58            };59        };60    };61