Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tmp] MSHR: for 1 client, we just let probeack_last be sink_c_resp_valid #138

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/scala/huancun/noninclusive/MSHR.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1295,7 +1295,7 @@ class MSHR()(implicit p: Parameters) extends BaseMSHR[DirResult, SelfDirWrite, S
val sink_c_resp_valid = io.resps.sink_c.valid && !w_probeacklast
val probeack_bit = getClientBitOH(io.resps.sink_c.bits.source)
// ! This is the last client sending probeack
val probeack_last = (probes_done | probeack_bit) === probe_clients
val probeack_last = if(clientBits == 1) sink_c_resp_valid else (probes_done | probeack_bit) === probe_clients

// Update client_probeack_param_vec according to the param of ProbeAck
client_probeack_param_vec := client_probeack_param_vec_reg
Expand Down
Loading