68 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/tpo,td.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Toppoly TD Panels8 9maintainers:10 - Marek Belisko <marek@goldelico.com>11 - H. Nikolaus Schaller <hns@goldelico.com>12 13allOf:14 - $ref: panel-common.yaml#15 - $ref: /schemas/spi/spi-peripheral-props.yaml#16 17properties:18 compatible:19 enum:20 # Toppoly TD028TTEC1 Panel21 - tpo,td028ttec122 # Toppoly TD043MTEA1 Panel23 - tpo,td043mtea124 25 reg:26 maxItems: 127 28 label: true29 reset-gpios: true30 backlight: true31 port: true32 33 spi-cpha: true34 spi-cpol: true35 36required:37 - compatible38 - port39 40unevaluatedProperties: false41 42examples:43 - |44 spi {45 #address-cells = <1>;46 #size-cells = <0>;47 48 panel: panel@0 {49 compatible = "tpo,td043mtea1";50 reg = <0>;51 spi-max-frequency = <100000>;52 spi-cpol;53 spi-cpha;54 55 label = "lcd";56 57 reset-gpios = <&gpio7 7 0>;58 59 port {60 lcd_in: endpoint {61 remote-endpoint = <&dpi_out>;62 };63 };64 };65 };66 67...68