0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/spi/mikrotik,rb4xx-spi.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: MikroTik RB4xx series SPI master
0008
0009 maintainers:
0010 - Gabor Juhos <juhosg@openwrt.org>
0011 - Bert Vermeulen <bert@biot.com>
0012
0013 allOf:
0014 - $ref: "spi-controller.yaml#"
0015
0016 properties:
0017 compatible:
0018 const: mikrotik,rb4xx-spi
0019
0020 reg:
0021 maxItems: 1
0022
0023 required:
0024 - compatible
0025 - reg
0026
0027 unevaluatedProperties: false
0028
0029 examples:
0030 - |
0031 spi: spi@1f000000 {
0032 #address-cells = <1>;
0033 #size-cells = <0>;
0034 compatible = "mikrotik,rb4xx-spi";
0035 reg = <0x1f000000 0x10>;
0036 };
0037
0038 ...