From af5167c7f0cbe5e308eba4c1a284b2d84e50b97b Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 5 Nov 2021 18:38:22 +0100 Subject: [PATCH] soc/interconnect/axi: Fix beat_offset dimension (was limiting bursts to 2KB instead of 4KB). --- litex/soc/interconnect/axi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/interconnect/axi.py b/litex/soc/interconnect/axi.py index b40532f0d..9347989e3 100644 --- a/litex/soc/interconnect/axi.py +++ b/litex/soc/interconnect/axi.py @@ -317,7 +317,7 @@ class AXIBurst2Beat(Module): beat_count = Signal(8) beat_size = Signal(8 + 4) - beat_offset = Signal((8 + 4, True)) + beat_offset = Signal((8 + 4 + 1, True)) beat_wrap = Signal(8 + 4) # Compute parameters