-
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.
Merge remote-tracking branches 'spi/topic/adi', 'spi/topic/atmel' and…
… 'spi/topic/cadence' into spi-next
- Loading branch information
Showing
9 changed files
with
974 additions
and
235 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,31 @@ | ||
Cadence SPI controller Device Tree Bindings | ||
------------------------------------------- | ||
|
||
Required properties: | ||
- compatible : Should be "cdns,spi-r1p6" or "xlnx,zynq-spi-r1p6". | ||
- reg : Physical base address and size of SPI registers map. | ||
- interrupts : Property with a value describing the interrupt | ||
number. | ||
- interrupt-parent : Must be core interrupt controller | ||
- clock-names : List of input clock names - "ref_clk", "pclk" | ||
(See clock bindings for details). | ||
- clocks : Clock phandles (see clock bindings for details). | ||
|
||
Optional properties: | ||
- num-cs : Number of chip selects used. | ||
If a decoder is used, this will be the number of | ||
chip selects after the decoder. | ||
- is-decoded-cs : Flag to indicate whether decoder is used or not. | ||
|
||
Example: | ||
|
||
spi@e0007000 { | ||
compatible = "xlnx,zynq-spi-r1p6"; | ||
clock-names = "ref_clk", "pclk"; | ||
clocks = <&clkc 26>, <&clkc 35>; | ||
interrupt-parent = <&intc>; | ||
interrupts = <0 49 4>; | ||
num-cs = <4>; | ||
is-decoded-cs = <0>; | ||
reg = <0xe0007000 0x1000>; | ||
} ; |
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
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
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
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
Oops, something went wrong.