Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / panel / leadtek,ltk035c5444t.yaml
blobb5dc02b27200290952af15a033e5ca588bacec70
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/leadtek,ltk035c5444t.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Leadtek ltk035c5444t 3.5" (640x480 pixels) 24-bit IPS LCD panel
9 maintainers:
10   - Paul Cercueil <paul@crapouillou.net>
11   - Christophe Branchereau <cbranchereau@gmail.com>
13 allOf:
14   - $ref: panel-common.yaml#
15   - $ref: /schemas/spi/spi-peripheral-props.yaml#
17 properties:
18   compatible:
19     const: leadtek,ltk035c5444t
21   reg:
22     maxItems: 1
24   spi-3wire: true
26 required:
27   - compatible
28   - reg
29   - port
30   - power-supply
31   - reset-gpios
33 unevaluatedProperties: false
35 examples:
36   - |
37     #include <dt-bindings/gpio/gpio.h>
39     spi {
40         #address-cells = <1>;
41         #size-cells = <0>;
42         panel@0 {
43             compatible = "leadtek,ltk035c5444t";
44             reg = <0>;
46             spi-3wire;
47             spi-max-frequency = <3125000>;
49             reset-gpios = <&gpe 2 GPIO_ACTIVE_LOW>;
51             backlight = <&backlight>;
52             power-supply = <&vcc>;
54             port {
55                 panel_input: endpoint {
56                     remote-endpoint = <&panel_output>;
57                 };
58             };
59         };
60     };