mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
580975d7f4
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>
17 lines
497 B
Text
17 lines
497 B
Text
* 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";
|
|
};
|