-
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/imx', 'spi/topic/lantiq-ssc…
…', 'spi/topic/mpc52xx', 'spi/topic/ppc4xx' and 'spi/topic/pxa2xx' into spi-next
- Loading branch information
Showing
11 changed files
with
1,097 additions
and
40 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,29 @@ | ||
Lantiq Synchronous Serial Controller (SSC) SPI master driver | ||
|
||
Required properties: | ||
- compatible: "lantiq,ase-spi", "lantiq,falcon-spi", "lantiq,xrx100-spi" | ||
- #address-cells: see spi-bus.txt | ||
- #size-cells: see spi-bus.txt | ||
- reg: address and length of the spi master registers | ||
- interrupts: should contain the "spi_rx", "spi_tx" and "spi_err" interrupt. | ||
|
||
|
||
Optional properties: | ||
- clocks: spi clock phandle | ||
- num-cs: see spi-bus.txt, set to 8 if unset | ||
- base-cs: the number of the first chip select, set to 1 if unset. | ||
|
||
Example: | ||
|
||
|
||
spi: spi@E100800 { | ||
compatible = "lantiq,xrx200-spi", "lantiq,xrx100-spi"; | ||
reg = <0xE100800 0x100>; | ||
interrupt-parent = <&icu0>; | ||
interrupts = <22 23 24>; | ||
interrupt-names = "spi_rx", "spi_tx", "spi_err"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
num-cs = <6>; | ||
base-cs = <1>; | ||
}; |
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.