-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: spi: Document Ingenic SPI controller bindings
Add a documentation file to describe the Device Tree bindings for the SPI controller found in Ingenic SoCs. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Artur Rojek <contact@artur-rojek.eu> Reviewed-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20210830230139.21476-2-contact@artur-rojek.eu Signed-off-by: Mark Brown <broonie@kernel.org>
- Loading branch information
Paul Cercueil
authored and
Mark Brown
committed
Sep 13, 2021
1 parent
becbca1
commit ff4daa7
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/spi/ingenic,spi.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Ingenic SoCs SPI controller devicetree bindings | ||
|
||
maintainers: | ||
- Artur Rojek <contact@artur-rojek.eu> | ||
- Paul Cercueil <paul@crapouillou.net> | ||
|
||
allOf: | ||
- $ref: /schemas/spi/spi-controller.yaml# | ||
|
||
properties: | ||
compatible: | ||
oneOf: | ||
- enum: | ||
- ingenic,jz4750-spi | ||
- ingenic,jz4780-spi | ||
- items: | ||
- enum: | ||
- ingenic,jz4760-spi | ||
- ingenic,jz4770-spi | ||
- const: ingenic,jz4750-spi | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
dmas: | ||
maxItems: 2 | ||
minItems: 2 | ||
|
||
dma-names: | ||
items: | ||
- const: rx | ||
- const: tx | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- clocks | ||
- dmas | ||
- dma-names | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/clock/jz4770-cgu.h> | ||
spi@10043000 { | ||
compatible = "ingenic,jz4770-spi", "ingenic,jz4750-spi"; | ||
reg = <0x10043000 0x1c>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
interrupt-parent = <&intc>; | ||
interrupts = <8>; | ||
clocks = <&cgu JZ4770_CLK_SSI0>; | ||
dmas = <&dmac1 23 0xffffffff>, <&dmac1 22 0xffffffff>; | ||
dma-names = "rx", "tx"; | ||
}; |