From 06bbbe78e499ca6af489765d9f5729a94aab9627 Mon Sep 17 00:00:00 2001 From: Dolu1990 Date: Mon, 20 May 2024 08:56:38 +0200 Subject: [PATCH] vexii/naxii fix floating axi wires --- litex/soc/cores/cpu/naxriscv/core.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/litex/soc/cores/cpu/naxriscv/core.py b/litex/soc/cores/cpu/naxriscv/core.py index b5dac4658..090ffceca 100755 --- a/litex/soc/cores/cpu/naxriscv/core.py +++ b/litex/soc/cores/cpu/naxriscv/core.py @@ -476,6 +476,16 @@ class NaxRiscv(CPU): ) self.memory_buses.append(mbus) + self.comb += mbus.aw.cache.eq(0xF) + self.comb += mbus.aw.lock.eq(0) + self.comb += mbus.aw.prot.eq(1) + self.comb += mbus.aw.qos.eq(0) + + self.comb += mbus.ar.cache.eq(0xF) + self.comb += mbus.ar.lock.eq(0) + self.comb += mbus.ar.prot.eq(1) + self.comb += mbus.ar.qos.eq(0) + self.cpu_params.update( # Memory Bus (Master). # --------------------