diff --git a/Documentation/devicetree/bindings/spi/spi-aurix-tegra.yaml b/Documentation/devicetree/bindings/spi/spi-aurix-tegra.yaml new file mode 100644 index 00000000..4a595a6b --- /dev/null +++ b/Documentation/devicetree/bindings/spi/spi-aurix-tegra.yaml @@ -0,0 +1,44 @@ +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/spi/spi-aurix-tegra.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: DT binding for Tegra SPI Aurix communication protocol driver + +maintainers: + - Lars-Peter Clausen + - Jonathan Cameron + +description: | + This driver communicates to AUrix over SPI channel with agreed + protocols. + +properties: + compatible: + enum: + - aurix-tegra-spi + + reg: + maxItems: 1 + + spi-max-frequency: true + +additionalProperties: false + +required: + - compatible + - reg + +examples: + - | + spi { + #address-cells = <1>; + #size-cells = <0>; + spi@0 { + reg = <0>; + compatible = "aurix-tegra-spi"; + spi-max-frequency = <10000000>; + }; + }; +...