-
Notifications
You must be signed in to change notification settings - Fork 448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Q: DMA, desc_len VS tlast in axi_dma_wr #78
Comments
Yes. In the current setup, the data is passed through directly instead of being buffered, so the burst can't be stopped early. So, the "unused" part of the burst is sent with wstrb = 0, so nothing extra is written. At some point, I might consider reworking the DMA engine to add an internal buffer to both break the flow control (streaming data input stall won't stall outgoing write data) as well as ensure that the bursts are actually the correct length so cycles aren't wasted on the AXI side. But, I haven't had the motivation to do this as I don't do much with AXI at the moment. |
Great, thank you! |
Another quick question: @alexforencich If I set the burst size to 10 bytes, if The DMA would send 4 bursts of 10 bytes each and complete the transaction right? |
Seeking further clarification on this behavior
If
len = 50
, and if axis stream packet only has 40 words (tlast raised after sending 40 bytes), does the DMA end the transaction?In other words,
can I tie descripter length to some arbitrarily high constant, and expect the DMA to write the correct number of bytes based on axis stream tlast and keep?
Btw, I'm forever grateful for your open source work!
The text was updated successfully, but these errors were encountered: