58 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---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 Panel8 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,acx565akm19 20 reg:21 maxItems: 122 23 label: true24 reset-gpios: true25 port: true26 27required:28 - compatible29 - port30 31unevaluatedProperties: false32 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