litedram: L2 use latched refill_index

Not a huge difference since wb_req is itself a latch but
may as well

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
pull/198/head
Benjamin Herrenschmidt 4 years ago
parent 05bbbf0772
commit 15467fe536

@ -962,9 +962,9 @@ begin
-- Store new tag in selected way -- Store new tag in selected way
for i in 0 to NUM_WAYS-1 loop for i in 0 to NUM_WAYS-1 loop
if i = refill_way then if i = refill_way then
tagset := cache_tags(req_index); tagset := cache_tags(refill_index);
write_tag(i, tagset, req_tag); write_tag(i, tagset, req_tag);
cache_tags(req_index) <= tagset; cache_tags(refill_index) <= tagset;
end if; end if;
end loop; end loop;
state <= REFILL_WAIT_ACK; state <= REFILL_WAIT_ACK;

Loading…
Cancel
Save