-
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.
yaml --- r: 328623 b: refs/heads/master c: 4ad1e5b h: refs/heads/master i: 328621: 6bd49cd 328619: 5ad8910 328615: 39ca2a4 328607: df58c5f v: v3
- Loading branch information
Marek Vasut
authored and
Mark Brown
committed
Aug 17, 2012
1 parent
9388e99
commit c934285
Showing
2 changed files
with
19 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 474afc042fb9db8f88b68243f78a38cb764692fc | ||
refs/heads/master: 4ad1e5b5d1dde19f09e728ba8b5164968f9dabeb |
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,18 @@ | ||
* Freescale MX233/MX28 SSP/SPI | ||
|
||
Required properties: | ||
- compatible: Should be "fsl,<soc>-spi", where soc is "imx23" or "imx28" | ||
- reg: Offset and length of the register set for the device | ||
- interrupts: Should contain SSP interrupts (error irq first, dma irq second) | ||
- fsl,ssp-dma-channel: APBX DMA channel for the SSP | ||
|
||
Example: | ||
|
||
ssp0: ssp@80010000 { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
compatible = "fsl,imx28-spi"; | ||
reg = <0x80010000 0x2000>; | ||
interrupts = <96 82>; | ||
fsl,ssp-dma-channel = <0>; | ||
}; |