Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: d48b97b403d23f6df0b990cee652bdf9a52337a3 authored by Linus Torvalds on 06 May 2012, 22:07:32 UTC
Linux 3.4-rc6
Tip revision: d48b97b
atmel-dma.txt
* Atmel Direct Memory Access Controller (DMA)

Required properties:
- compatible: Should be "atmel,<chip>-dma"
- reg: Should contain DMA registers location and length
- interrupts: Should contain DMA interrupt

Examples:

dma@ffffec00 {
	compatible = "atmel,at91sam9g45-dma";
	reg = <0xffffec00 0x200>;
	interrupts = <21>;
};
back to top