46 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/display/solomon,ssd133x.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Solomon SSD133x OLED Display Controllers8 9maintainers:10 - Javier Martinez Canillas <javierm@redhat.com>11 12allOf:13 - $ref: solomon,ssd-common.yaml#14 15properties:16 compatible:17 enum:18 - solomon,ssd133119 20 solomon,width:21 default: 9622 23 solomon,height:24 default: 6425 26required:27 - compatible28 - reg29 30unevaluatedProperties: false31 32examples:33 - |34 spi {35 #address-cells = <1>;36 #size-cells = <0>;37 38 oled@0 {39 compatible = "solomon,ssd1331";40 reg = <0x0>;41 reset-gpios = <&gpio2 7>;42 dc-gpios = <&gpio2 8>;43 spi-max-frequency = <10000000>;44 };45 };46