Drive invalidate_lr signal
The DCache input for invalidating LR reservations was dangling. Now we wire it to false.
This commit is contained in:
parent
05c0808ff2
commit
213bb26367
@ -144,6 +144,9 @@ class GroundTestTile(id: Int, resetSignal: Bool)
|
|||||||
dcache.io.cpu <> dcacheIF.io.cache
|
dcache.io.cpu <> dcacheIF.io.cache
|
||||||
io.cached.head <> dcache.io.mem
|
io.cached.head <> dcache.io.mem
|
||||||
|
|
||||||
|
// SimpleHellaCacheIF leaves invalidate_lr dangling, so we wire it to false
|
||||||
|
dcache.io.cpu.invalidate_lr := Bool(false)
|
||||||
|
|
||||||
val ptw = Module(new DummyPTW(2))
|
val ptw = Module(new DummyPTW(2))
|
||||||
ptw.io.requestors(0) <> test.io.ptw
|
ptw.io.requestors(0) <> test.io.ptw
|
||||||
ptw.io.requestors(1) <> dcache.io.ptw
|
ptw.io.requestors(1) <> dcache.io.ptw
|
||||||
|
Loading…
Reference in New Issue
Block a user