xref: /freebsd/sys/contrib/device-tree/Bindings/display/panel/abt,y030xx067a.yaml (revision 7d0873ebb83b19ba1e8a89e679470d885efe12e3)
15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
25def4c47SEmmanuel Vadot%YAML 1.2
35def4c47SEmmanuel Vadot---
45def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/display/panel/abt,y030xx067a.yaml#
55def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
65def4c47SEmmanuel Vadot
75def4c47SEmmanuel Vadottitle: Asia Better Technology 3.0" (320x480 pixels) 24-bit IPS LCD panel
85def4c47SEmmanuel Vadot
95def4c47SEmmanuel Vadotmaintainers:
105def4c47SEmmanuel Vadot  - Paul Cercueil <paul@crapouillou.net>
115def4c47SEmmanuel Vadot
125def4c47SEmmanuel VadotallOf:
135def4c47SEmmanuel Vadot  - $ref: panel-common.yaml#
14e67e8565SEmmanuel Vadot  - $ref: /schemas/spi/spi-peripheral-props.yaml#
155def4c47SEmmanuel Vadot
165def4c47SEmmanuel Vadotproperties:
175def4c47SEmmanuel Vadot  compatible:
185def4c47SEmmanuel Vadot    const: abt,y030xx067a
195def4c47SEmmanuel Vadot
20*7d0873ebSEmmanuel Vadot  reg:
21*7d0873ebSEmmanuel Vadot    maxItems: 1
22*7d0873ebSEmmanuel Vadot
235def4c47SEmmanuel Vadot  backlight: true
245def4c47SEmmanuel Vadot  port: true
255def4c47SEmmanuel Vadot  power-supply: true
265def4c47SEmmanuel Vadot  reset-gpios: true
275def4c47SEmmanuel Vadot
285def4c47SEmmanuel Vadotrequired:
295def4c47SEmmanuel Vadot  - compatible
305def4c47SEmmanuel Vadot  - reg
315def4c47SEmmanuel Vadot  - power-supply
325def4c47SEmmanuel Vadot  - reset-gpios
335def4c47SEmmanuel Vadot
345def4c47SEmmanuel VadotunevaluatedProperties: false
355def4c47SEmmanuel Vadot
365def4c47SEmmanuel Vadotexamples:
375def4c47SEmmanuel Vadot  - |
385def4c47SEmmanuel Vadot    #include <dt-bindings/gpio/gpio.h>
395def4c47SEmmanuel Vadot
405def4c47SEmmanuel Vadot    spi {
415def4c47SEmmanuel Vadot        #address-cells = <1>;
425def4c47SEmmanuel Vadot        #size-cells = <0>;
435def4c47SEmmanuel Vadot
445def4c47SEmmanuel Vadot        panel@0 {
455def4c47SEmmanuel Vadot            compatible = "abt,y030xx067a";
465def4c47SEmmanuel Vadot            reg = <0>;
475def4c47SEmmanuel Vadot
485def4c47SEmmanuel Vadot            spi-max-frequency = <3125000>;
495def4c47SEmmanuel Vadot
505def4c47SEmmanuel Vadot            reset-gpios = <&gpe 2 GPIO_ACTIVE_LOW>;
515def4c47SEmmanuel Vadot
525def4c47SEmmanuel Vadot            backlight = <&backlight>;
535def4c47SEmmanuel Vadot            power-supply = <&vcc>;
545def4c47SEmmanuel Vadot
555def4c47SEmmanuel Vadot            port {
565def4c47SEmmanuel Vadot                panel_input: endpoint {
575def4c47SEmmanuel Vadot                    remote-endpoint = <&panel_output>;
585def4c47SEmmanuel Vadot                };
595def4c47SEmmanuel Vadot            };
605def4c47SEmmanuel Vadot        };
615def4c47SEmmanuel Vadot    };
62