Skip to content

Commit

Permalink
Merge pull request #440 from riscv-boom/hella_asser
Browse files Browse the repository at this point in the history
[lsu] Strengthen hellacache interface assert
  • Loading branch information
jerryz123 committed Mar 5, 2020
2 parents f12688f + c56ef3d commit a16e74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/lsu/lsu.scala
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ class LSU(implicit p: Parameters, edge: TLEdgeOut) extends BoomModule()(p)
//--------------------------------------------
// TLB Access

assert(hella_req.cmd =/= rocket.M_SFENCE,
assert(!(hella_state =/= h_ready && hella_req.cmd === rocket.M_SFENCE),
"SFENCE through hella interface not supported")

val exe_tlb_uop = widthMap(w =>
Expand Down

0 comments on commit a16e74a

Please sign in to comment.