I am trying to enable all 4 DMA's in my software.
What Peripheral IDs are associated with the 4 DMAs. These need to be pass to the function adi_spu_EnableMasterSecure?
The DMA code examples use the following:
#define MDMA0_SRC_DMA8_SPU_PID (110u)
#define MDMA0_DST_DMA9_SPU_PID (111u)
I was able to enable the second DMA using:
#define MDMA0_SRC_DMA8_SPU_PID (110u)
#define MDMA1_SRC_DMA8_SPU_PID (112u)
/* SPU PID for MDMA1 Destination */
#define MDMA0_DST_DMA9_SPU_PID (111u)
#define MDMA1_DST_DMA9_SPU_PID (113u)
Where can I find out the definition of these magic numbers?
-Steve