Skip to content

Commit

Permalink
apply dcache stat mem arbitration fix to icache
Browse files Browse the repository at this point in the history
  • Loading branch information
muwyse committed Jan 15, 2020
1 parent eaf8df2 commit c1f06dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bp_fe/src/v/bp_fe_icache.v
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,10 @@ module bp_fe_icache

// stat mem
assign stat_mem_v_li = (v_tv_r & ~uncached_tv_r) | stat_mem_pkt_yumi_li;
assign stat_mem_w_li = v_tv_r
assign stat_mem_w_li = (v_tv_r & ~uncached_tv_r)
? ~miss_tv
: stat_mem_pkt_yumi_li & (stat_mem_pkt.opcode != e_stat_mem_read);
assign stat_mem_addr_li = v_tv_r
assign stat_mem_addr_li = (v_tv_r & ~uncached_tv_r)
? addr_index_tv
: stat_mem_pkt.index;

Expand Down

0 comments on commit c1f06dd

Please sign in to comment.