arm-pl330.txt 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. * ARM PrimeCell PL330 DMA Controller
  2. The ARM PrimeCell PL330 DMA controller can move blocks of memory contents
  3. between memory and peripherals or memory to memory.
  4. Required properties:
  5. - compatible: should include both "arm,pl330" and "arm,primecell".
  6. - reg: physical base address of the controller and length of memory mapped
  7. region.
  8. - interrupts: interrupt number to the cpu.
  9. Optional properties:
  10. - dma-coherent : Present if dma operations are coherent
  11. Example:
  12. pdma0: pdma@12680000 {
  13. compatible = "arm,pl330", "arm,primecell";
  14. reg = <0x12680000 0x1000>;
  15. interrupts = <99>;
  16. };
  17. Client drivers (device nodes requiring dma transfers from dev-to-mem or
  18. mem-to-dev) should specify the DMA channel numbers using a two-value pair
  19. as shown below.
  20. [property name] = <[phandle of the dma controller] [dma request id]>;
  21. where 'dma request id' is the dma request number which is connected
  22. to the client controller. The 'property name' is recommended to be
  23. of the form <name>-dma-channel.
  24. Example: tx-dma-channel = <&pdma0 12>;