Skip to content

Commit

Permalink
fix(MSHR): CBWrData with UC/SC on WriteEvictOrEvict
Browse files Browse the repository at this point in the history
* Use ```metaChi``` directly for future robustness
  • Loading branch information
Kumonda221-CrO3 committed Feb 13, 2025
1 parent 0922631 commit 5700aa5
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 @@ -586,7 +586,7 @@ class MSHR(implicit p: Parameters) extends TL2CHIL2Module with HasCHIOpcodes {
mp_cbwrdata.homeNID.get := 0.U
mp_cbwrdata.dbID.get := 0.U
mp_cbwrdata.chiOpcode.get := CopyBackWrData
mp_cbwrdata.resp.get := Mux(isValid(meta.state), UD_PD, I)
mp_cbwrdata.resp.get := setPD(metaChi, meta.dirty)
mp_cbwrdata.fwdState.get := 0.U
mp_cbwrdata.pCrdType.get := 0.U // TODO
mp_cbwrdata.retToSrc.get := req.retToSrc.get // DontCare
Expand Down

0 comments on commit 5700aa5

Please sign in to comment.