Commit d016edf6 authored by Florent Kermarrec's avatar Florent Kermarrec

frontend/dma: Drive aw/ar.size when using AXI port.

parent 424b5f95
......@@ -9,6 +9,8 @@
"""Direct Memory Access (DMA) reader and writer modules."""
from math import log2
from migen import *
from litex.soc.interconnect.csr import *
......@@ -73,6 +75,8 @@ class LiteDRAMDMAReader(Module, AutoCSR):
if is_native:
self.comb += cmd.we.eq(0)
if is_axi:
self.comb += cmd.size.eq(int(log2(port.data_width//8)))
self.comb += [
cmd.addr.eq(sink.address),
cmd.valid.eq(sink.valid & request_enable),
......@@ -191,6 +195,8 @@ class LiteDRAMDMAWriter(Module, AutoCSR):
if is_native:
self.comb += cmd.we.eq(1)
if is_axi:
self.comb += cmd.size.eq(int(log2(port.data_width//8)))
self.comb += [
cmd.addr.eq(sink.address),
cmd.valid.eq(fifo.sink.ready & sink.valid),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment