Skip to content

Commit

Permalink
vexrisc_smp: fix DMA bus address_width calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Dennison authored and josuah committed Sep 3, 2023
1 parent abcaba3 commit 36a0db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/soc/cores/cpu/vexriscv_smp/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def __init__(self, platform, variant):

# DMA.
if VexRiscvSMP.coherent_dma:
self.dma_bus = dma_bus = wishbone.Interface(data_width=VexRiscvSMP.dcache_width)
self.dma_bus = dma_bus = wishbone.Interface(data_width=VexRiscvSMP.dcache_width, address_width=32)
dma_bus_stall = Signal()
dma_bus_inhibit = Signal()
self.cpu_params.update(
Expand Down

0 comments on commit 36a0db0

Please sign in to comment.