ti-edma.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. TI EDMA
  2. Required properties:
  3. - compatible : "ti,edma3"
  4. - #dma-cells: Should be set to <1>
  5. Clients should use a single channel number per DMA request.
  6. - reg: Memory map for accessing module
  7. - interrupt-parent: Interrupt controller the interrupt is routed through
  8. - interrupts: Exactly 3 interrupts need to be specified in the order:
  9. 1. Transfer completion interrupt.
  10. 2. Memory protection interrupt.
  11. 3. Error interrupt.
  12. Optional properties:
  13. - ti,hwmods: Name of the hwmods associated to the EDMA
  14. - ti,edma-xbar-event-map: Crossbar event to channel map
  15. Deprecated properties:
  16. Listed here in case one wants to boot an old kernel with new DTB. These
  17. properties might need to be added to the new DTS files.
  18. - ti,edma-regions: Number of regions
  19. - ti,edma-slots: Number of slots
  20. - dma-channels: Specify total DMA channels per CC
  21. Example:
  22. edma: edma@49000000 {
  23. reg = <0x49000000 0x10000>;
  24. interrupt-parent = <&intc>;
  25. interrupts = <12 13 14>;
  26. compatible = "ti,edma3";
  27. ti,hwmods = "tpcc", "tptc0", "tptc1", "tptc2";
  28. #dma-cells = <1>;
  29. ti,edma-xbar-event-map = /bits/ 16 <1 12
  30. 2 13>;
  31. };