Skip to content

Commit f371eb7

Browse files
authored
feat: not ignore AddrTransStage (#290)
1 parent 979c0d8 commit f371eb7

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/src/pipeline/memory/AddrTransStage.scala

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,7 @@ class AddrTransStage
4545
) {
4646
val selectedIn = io.in.bits
4747
val peer = io.peer.get
48-
val out = if (isNoPrivilege) io.out.bits else resultOutReg.bits
49-
if (isNoPrivilege) {
50-
io.in.ready := io.out.ready
51-
io.out.valid := io.in.valid
52-
}
48+
val out = resultOutReg.bits
5349

5450
val tlbBlockingReg = RegInit(false.B)
5551
tlbBlockingReg := tlbBlockingReg
@@ -193,7 +189,7 @@ class AddrTransStage
193189
}
194190

195191
if (isNoPrivilege) {
196-
tlbBlockingReg := true.B
192+
tlbBlockingReg := false.B
197193
}
198194

199195
// Submit result

0 commit comments

Comments
 (0)