Skip to content
Snippets Groups Projects
Commit 035a1441 authored by dwf1m12's avatar dwf1m12
Browse files

change default DMA block transfer size to 16 to improve bandwidth

parent 32f4e250
No related branches found
No related tags found
No related merge requests found
......@@ -296,7 +296,8 @@ void dma_memory_copy (unsigned int src, unsigned int dest, unsigned int size, un
(size << 24) | /* src_size */
(size << 21) | /* dst_prot_ctrl - HPROT[3:1] */
(size << 18) | /* src_prot_ctrl - HPROT[3:1] */
(0 << 14) | /* R_power */
// (0 << 14) | /* R_power */
(4 << 14) | /* R_power for 16-word block transfer*/
((num-1)<< 4) | /* n_minus_1 */
(0 << 3) | /* next_useburst */
(2 << 0) ; /* cycle_ctrl - auto */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment