0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/sony,acx565akm.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Sony ACX565AKM SDI Panel
0008
0009 maintainers:
0010 - Tomi Valkeinen <tomi.valkeinen@ti.com>
0011
0012 allOf:
0013 - $ref: panel-common.yaml#
0014 - $ref: /schemas/spi/spi-peripheral-props.yaml#
0015
0016 properties:
0017 compatible:
0018 const: sony,acx565akm
0019
0020 label: true
0021 reset-gpios: true
0022 port: true
0023
0024 required:
0025 - compatible
0026 - port
0027
0028 unevaluatedProperties: false
0029
0030 examples:
0031 - |
0032 #include <dt-bindings/gpio/gpio.h>
0033
0034 spi {
0035 #address-cells = <1>;
0036 #size-cells = <0>;
0037
0038 panel@2 {
0039 compatible = "sony,acx565akm";
0040 spi-max-frequency = <6000000>;
0041 reg = <2>;
0042
0043 label = "lcd";
0044 reset-gpios = <&gpio3 26 GPIO_ACTIVE_HIGH>; /* 90 */
0045
0046 port {
0047 lcd_in: endpoint {
0048 remote-endpoint = <&sdi_out>;
0049 };
0050 };
0051 };
0052 };
0053
0054 ...