mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
39690c8d1f
This patch adds the correcsponding MikroTik vendor and device tree documentation Signed-off-by: Christopher Hill <ch6574@gmail.com> Link: https://lore.kernel.org/r/20200521183631.37806-3-ch6574@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
36 lines
659 B
YAML
36 lines
659 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/spi/mikrotik,rb4xx-spi.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: MikroTik RB4xx series SPI master
|
|
|
|
maintainers:
|
|
- Gabor Juhos <juhosg@openwrt.org>
|
|
- Bert Vermeulen <bert@biot.com>
|
|
|
|
allOf:
|
|
- $ref: "spi-controller.yaml#"
|
|
|
|
properties:
|
|
compatible:
|
|
const: mikrotik,rb4xx-spi
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
examples:
|
|
- |
|
|
spi: spi@1f000000 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
compatible = "mikrotik,rb4xx-spi";
|
|
reg = <0x1f000000 0x10>;
|
|
};
|
|
|
|
... |