From 4f9d3a9497d801a1bb04152e9070bf3dca53bbd7 Mon Sep 17 00:00:00 2001 From: Matteo Perotti Date: Thu, 15 Aug 2024 15:58:15 +0200 Subject: [PATCH] [hardware] :bug: Fix non-idempotent regions bug --- hardware/src/ara_soc.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hardware/src/ara_soc.sv b/hardware/src/ara_soc.sv index a8d8c3e86..ac368c1d2 100644 --- a/hardware/src/ara_soc.sv +++ b/hardware/src/ara_soc.sv @@ -495,8 +495,8 @@ module ara_soc import axi_pkg::*; import ara_pkg::*; #( CLICNumInterruptSrc : 0, // idempotent region NrNonIdempotentRules : 2, - NonIdempotentAddrBase: {64'b0, 64'b0}, - NonIdempotentLength : {64'b0, 64'b0}, + NonIdempotentAddrBase: {UARTBase, CTRLBase}, + NonIdempotentLength : {UARTLength, CTRLLength}, NrExecuteRegionRules : 3, // DRAM, Boot ROM, Debug Module ExecuteRegionAddrBase: {DRAMBase, 64'h1_0000, 64'h0},