Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: fea7a08acb13524b47711625eebea40a0ede69a0 authored by Linus Torvalds on 22 August 2012, 20:29:06 UTC
Linux 3.6-rc3
Tip revision: fea7a08
fsl-mxs-dma.txt
* Freescale MXS DMA

Required properties:
- compatible : Should be "fsl,<chip>-dma-apbh" or "fsl,<chip>-dma-apbx"
- reg : Should contain registers location and length

Supported chips:
imx23, imx28.

Examples:
dma-apbh@80004000 {
	compatible = "fsl,imx28-dma-apbh";
	reg = <0x80004000 2000>;
};

dma-apbx@80024000 {
	compatible = "fsl,imx28-dma-apbx";
	reg = <0x80024000 2000>;
};
back to top