Hello TI support team.
I am using the udma_memcpy_interrupt_am64x sample program in CCS.
Regarding udma_memcpy_interrupt.c, the following srcbuf and destbuf are allocated to DDR.
/* Application Buffers */
uint8_t gUdmaTestSrcBuf[UDMA_ALIGN_SIZE(UDMA_TEST_NUM_BYTES)] __attribute__((aligned(UDMA_CACHELINE_ALIGNMENT)));
uint8_t gUdmaTestDestBuf[UDMA_ALIGN_SIZE(UDMA_TEST_NUM_BYTES)] __attribute__((aligned(UDMA_CACHELINE_ALIGNMENT)));
I would like to allocate srcbuf and destbuf to MSRAM, how should I do this?
My purpose is to find out whether there is a difference in DMA transfer speed from DDR to DDR and from MSRAM to MSRAM.
Best reagrds,
Kiyomasa Imaizumi.