Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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
23required:
24 - compatible
25 - port
26
27unevaluatedProperties: false
28
29examples:
30 - |
31 #include <dt-bindings/gpio/gpio.h>
32
33 spi {
34 #address-cells = <1>;
35 #size-cells = <0>;
36
37 panel@2 {
38 compatible = "sony,acx565akm";
39 spi-max-frequency = <6000000>;
40 reg = <2>;
41
42 label = "lcd";
43 reset-gpios = <&gpio3 26 GPIO_ACTIVE_HIGH>; /* 90 */
44
45 port {
46 lcd_in: endpoint {
47 remote-endpoint = <&sdi_out>;
48 };
49 };
50 };
51 };
52
53...