-
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.
dmaengine: imx-sdma: add device tree probe support
It adds device tree probe support for imx-sdma driver. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Vinod Koul <vinod.koul@intel.com> Cc: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Vinod Koul <vinod.koul@intel.com>
- Loading branch information
Shawn Guo
committed
Jul 27, 2011
1 parent
40ad5b3
commit 580975d
Showing
2 changed files
with
56 additions
and
3 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,17 @@ | ||
* Freescale Smart Direct Memory Access (SDMA) Controller for i.MX | ||
|
||
Required properties: | ||
- compatible : Should be "fsl,<chip>-sdma" | ||
- reg : Should contain SDMA registers location and length | ||
- interrupts : Should contain SDMA interrupt | ||
- fsl,sdma-ram-script-name : Should contain the full path of SDMA RAM | ||
scripts firmware | ||
|
||
Examples: | ||
|
||
sdma@83fb0000 { | ||
compatible = "fsl,imx51-sdma", "fsl,imx35-sdma"; | ||
reg = <0x83fb0000 0x4000>; | ||
interrupts = <6>; | ||
fsl,sdma-ram-script-name = "sdma-imx51.bin"; | ||
}; |
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