atmel-dma.txt 326 B

123456789101112131415
  1. * Atmel Direct Memory Access Controller (DMA)
  2. Required properties:
  3. - compatible: Should be "atmel,<chip>-dma"
  4. - reg: Should contain DMA registers location and length
  5. - interrupts: Should contain DMA interrupt
  6. Examples:
  7. dma@ffffec00 {
  8. compatible = "atmel,at91sam9g45-dma";
  9. reg = <0xffffec00 0x200>;
  10. interrupts = <21>;
  11. };