Skip to content

Commit

Permalink
reduced axi burst in case not channel zero
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjhall committed Oct 20, 2012
1 parent 77f9338 commit 1e6e1fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ inline void CopyLinear(struct DmaControlBlock *pCB,
fprintf(stderr, "\tstraddles %ld pages\n", dest_end - dest_start);
}

pCB->m_transferInfo = (srcInc << 8) | (1 << 4) | (11 << 12) | (1 << 9) | (1 << 5);
pCB->m_transferInfo = (srcInc << 8) | (1 << 4) | (5 << 12) | (1 << 9) | (1 << 5);
pCB->m_pSourceAddr = pSourceAddr;
pCB->m_pDestAddr = pDestAddr;
pCB->m_xferLen = length;
Expand Down

0 comments on commit 1e6e1fb

Please sign in to comment.