mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
vexii/naxii fix floating axi wires
This commit is contained in:
parent
21e0ec7f98
commit
06bbbe78e4
1 changed files with 10 additions and 0 deletions
|
@ -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).
|
||||
# --------------------
|
||||
|
|
Loading…
Reference in a new issue