Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: dd775ae2549217d3ae09363e3edb305d0fa19928 authored by Linus Torvalds on 31 March 2012, 23:24:09 UTC
Linux 3.4-rc1
Tip revision: dd775ae
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