xref: /linux/Documentation/devicetree/bindings/display/panel/sony,acx565akm.yaml (revision 06f054b1fee83415fe35204845708988fc16ef22)
1# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/panel/sony,acx565akm.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Sony ACX565AKM SDI Panel
8
9maintainers:
10  - Tomi Valkeinen <tomi.valkeinen@ti.com>
11
12allOf:
13  - $ref: panel-common.yaml#
14  - $ref: /schemas/spi/spi-peripheral-props.yaml#
15
16properties:
17  compatible:
18    const: sony,acx565akm
19
20  reg:
21    maxItems: 1
22
23  label: true
24  reset-gpios: true
25  port: true
26
27required:
28  - compatible
29  - port
30
31unevaluatedProperties: false
32
33examples:
34  - |
35    #include <dt-bindings/gpio/gpio.h>
36
37    spi {
38        #address-cells = <1>;
39        #size-cells = <0>;
40
41        panel@2 {
42            compatible = "sony,acx565akm";
43            spi-max-frequency = <6000000>;
44            reg = <2>;
45
46            label = "lcd";
47            reset-gpios = <&gpio3 26 GPIO_ACTIVE_HIGH>; /* 90 */
48
49            port {
50                lcd_in: endpoint {
51                    remote-endpoint = <&sdi_out>;
52                };
53            };
54        };
55    };
56
57...
58