Skip to content

Commit

Permalink
hw: Fix repeated load-stores in FPSS on WAW stall
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsc96 committed Feb 13, 2024
1 parent a8c1a05 commit 198dfb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/snitch_cluster/src/snitch_fp_ss.sv
Original file line number Diff line number Diff line change
Expand Up @@ -2584,7 +2584,7 @@ module snitch_fp_ss import snitch_pkg::*; #(
// ----------------------
// Load/Store Unit
// ----------------------
assign lsu_qvalid = acc_req_valid_q & (&op_ready) & (is_load | is_store);
assign lsu_qvalid = acc_req_valid_q & (&op_ready) & (is_load | is_store) & dst_ready;

// TODO: verify this does not create timing loops!
assign caq_pvalid_o = data_rsp_i.p_valid & data_req_o.p_ready;
Expand Down

0 comments on commit 198dfb5

Please sign in to comment.