Skip to content

Commit

Permalink
[rtl] disable memory interleaving.
Browse files Browse the repository at this point in the history
  • Loading branch information
qinjun-li committed Nov 20, 2024
1 parent 966738e commit 0cd18e4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions t1/src/lsu/LSU.scala
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,7 @@ class LSU(param: LSUParameter) extends Module {
val useStoreUnit: Bool = alwaysMerge && request.bits.instructionInformation.isStore
val useOtherUnit: Bool = !alwaysMerge
val addressCheck: Bool = otherUnit.status.idle && (!useOtherUnit || (loadUnit.status.idle && storeUnit.status.idle))
val unitReady: Bool =
(useLoadUnit && loadUnit.status.idle) || (useStoreUnit && storeUnit.status.idle) || (useOtherUnit && otherUnit.status.idle)
val unitReady: Bool = loadUnit.status.idle && storeUnit.status.idle && otherUnit.status.idle
request.ready := unitReady && addressCheck
val requestFire = request.fire
val reqEnq: Vec[Bool] = VecInit(
Expand Down

0 comments on commit 0cd18e4

Please sign in to comment.