Skip to content

Commit

Permalink
chore(MSHR): raise timeout assertion threshold (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
linjuanZ authored Sep 18, 2024
1 parent 4ded089 commit 2b6afb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/coupledL2/tl2chi/MSHR.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ class MSHR(implicit p: Parameters) extends TL2CHIL2Module with HasCHIOpcodes {
}

val mshrAddr = Cat(req.tag, req.set, 0.U(6.W)) // TODO: consider multibank
val VALID_CNT_MAX = 200000.U
val VALID_CNT_MAX = 400000.U
assert(validCnt <= VALID_CNT_MAX, "validCnt full!, maybe there is a deadlock! addr => 0x%x req_opcode => %d channel => 0b%b", mshrAddr, req.opcode, req.channel)

val evictFire = io.tasks.txreq.fire && io.tasks.txreq.bits.opcode === Evict ||
Expand Down

0 comments on commit 2b6afb5

Please sign in to comment.