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

fix(LoadPipe): enable s1 permission check at s1 in LoadPipe for prefetch_w #4056

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class LoadPipe(id: Int)(implicit p: Parameters) extends DCacheModule with HasPer
// get s1_will_send_miss_req in lpad_s1
val s1_has_permission = s1_hit_coh.onAccess(s1_req.cmd)._1
val s1_new_hit_coh = s1_hit_coh.onAccess(s1_req.cmd)._3
val s1_hit = s1_tag_match_dup_dc // && s1_has_permission && s1_hit_coh === s1_new_hit_coh
val s1_hit = s1_tag_match_dup_dc && s1_has_permission && s1_hit_coh === s1_new_hit_coh
val s1_will_send_miss_req = s1_valid && !s1_nack && !s1_hit

// data read
Expand Down
Loading