2021-07-21 04:17:42 +00:00
|
|
|
///////////////////////////////////////////
|
|
|
|
// dcache (data cache)
|
|
|
|
//
|
|
|
|
// Written: ross1728@gmail.com July 20, 2021
|
|
|
|
// Implements Pseudo LRU
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// A component of the Wally configurable RISC-V project.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2021 Harvey Mudd College & Oklahoma State University
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
|
|
|
|
// files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
|
|
|
|
// modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
|
|
|
|
// is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
|
|
|
|
// OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
///////////////////////////////////////////
|
|
|
|
|
|
|
|
`include "wally-config.vh"
|
|
|
|
|
2021-08-26 03:30:05 +00:00
|
|
|
module cachereplacementpolicy
|
2021-10-18 21:56:08 +00:00
|
|
|
#(parameter NUMWAYS = 4, INDEXLEN = 9, OFFSETLEN = 5, NUMLINES = 128)
|
2021-08-26 02:09:42 +00:00
|
|
|
(input logic clk, reset,
|
2021-08-26 03:30:05 +00:00
|
|
|
input logic [NUMWAYS-1:0] WayHit,
|
2021-08-26 02:09:42 +00:00
|
|
|
output logic [NUMWAYS-1:0] VictimWay,
|
|
|
|
input logic [INDEXLEN+OFFSETLEN-1:OFFSETLEN] MemPAdrM,
|
2021-08-26 03:30:05 +00:00
|
|
|
input logic [INDEXLEN-1:0] RAdr,
|
2021-08-26 02:09:42 +00:00
|
|
|
input logic LRUWriteEn
|
2021-07-21 04:17:42 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// *** Only implements 2, 4, and 8 way
|
|
|
|
// I would like parametersize this in the future.
|
|
|
|
|
2021-08-26 02:09:42 +00:00
|
|
|
logic [NUMWAYS-2:0] LRUEn, LRUMask;
|
|
|
|
logic [$clog2(NUMWAYS)-1:0] EncVicWay;
|
|
|
|
logic [NUMWAYS-2:0] ReplacementBits [NUMLINES-1:0];
|
|
|
|
logic [NUMWAYS-2:0] BlockReplacementBits;
|
|
|
|
logic [NUMWAYS-2:0] NewReplacement;
|
|
|
|
|
|
|
|
always_ff @(posedge clk, posedge reset) begin
|
|
|
|
if (reset) begin
|
|
|
|
for(int index = 0; index < NUMLINES; index++)
|
2021-10-23 15:54:29 +00:00
|
|
|
ReplacementBits[index] = '0;
|
2021-08-26 02:09:42 +00:00
|
|
|
end else begin
|
2021-10-23 15:39:21 +00:00
|
|
|
BlockReplacementBits <= ReplacementBits[RAdr];
|
2021-08-26 02:09:42 +00:00
|
|
|
if (LRUWriteEn) begin
|
2021-10-23 15:39:21 +00:00
|
|
|
ReplacementBits[MemPAdrM[INDEXLEN+OFFSETLEN-1:OFFSETLEN]] <= NewReplacement;
|
2021-08-26 02:09:42 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-07-21 19:01:14 +00:00
|
|
|
genvar index;
|
2021-07-21 04:17:42 +00:00
|
|
|
generate
|
|
|
|
if(NUMWAYS == 2) begin : TwoWay
|
|
|
|
|
2021-07-21 19:01:14 +00:00
|
|
|
assign LRUEn[0] = 1'b0;
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-08-26 03:30:05 +00:00
|
|
|
assign NewReplacement[0] = WayHit[1];
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-08-26 02:09:42 +00:00
|
|
|
assign VictimWay[1] = ~BlockReplacementBits[0];
|
|
|
|
assign VictimWay[0] = BlockReplacementBits[0];
|
2021-07-21 04:17:42 +00:00
|
|
|
|
|
|
|
end else if (NUMWAYS == 4) begin : FourWay
|
|
|
|
|
2021-07-21 19:01:14 +00:00
|
|
|
// selects
|
|
|
|
assign LRUEn[2] = 1'b1;
|
2021-08-26 03:30:05 +00:00
|
|
|
assign LRUEn[1] = WayHit[3];
|
|
|
|
assign LRUEn[0] = WayHit[3] | WayHit[2];
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-07-21 19:01:14 +00:00
|
|
|
// mask
|
2021-08-26 03:30:05 +00:00
|
|
|
assign LRUMask[0] = WayHit[1];
|
|
|
|
assign LRUMask[1] = WayHit[3];
|
|
|
|
assign LRUMask[2] = WayHit[3] | WayHit[2];
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-07-21 19:01:14 +00:00
|
|
|
for(index = 0; index < NUMWAYS-1; index++)
|
2021-08-26 02:09:42 +00:00
|
|
|
assign NewReplacement[index] = LRUEn[index] ? LRUMask[index] : BlockReplacementBits[index];
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-08-26 02:09:42 +00:00
|
|
|
assign EncVicWay[1] = BlockReplacementBits[2];
|
|
|
|
assign EncVicWay[0] = BlockReplacementBits[2] ? BlockReplacementBits[0] : BlockReplacementBits[1];
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-08-25 10:46:41 +00:00
|
|
|
onehotdecoder #(2)
|
|
|
|
waydec(.bin(EncVicWay),
|
2021-08-26 02:09:42 +00:00
|
|
|
.decoded({VictimWay[0], VictimWay[1], VictimWay[2], VictimWay[3]}));
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-07-21 19:01:14 +00:00
|
|
|
end else if (NUMWAYS == 8) begin : EightWay
|
2021-07-21 04:17:42 +00:00
|
|
|
|
2021-07-22 15:38:07 +00:00
|
|
|
// selects
|
|
|
|
assign LRUEn[6] = 1'b1;
|
2021-08-26 03:30:05 +00:00
|
|
|
assign LRUEn[5] = WayHit[7] | WayHit[6] | WayHit[5] | WayHit[4];
|
|
|
|
assign LRUEn[4] = WayHit[7] | WayHit[6];
|
|
|
|
assign LRUEn[3] = WayHit[5] | WayHit[4];
|
|
|
|
assign LRUEn[2] = WayHit[3] | WayHit[2] | WayHit[1] | WayHit[0];
|
|
|
|
assign LRUEn[1] = WayHit[3] | WayHit[2];
|
|
|
|
assign LRUEn[0] = WayHit[1] | WayHit[0];
|
2021-07-22 15:38:07 +00:00
|
|
|
|
|
|
|
// mask
|
2021-08-26 03:30:05 +00:00
|
|
|
assign LRUMask[6] = WayHit[7] | WayHit[6] | WayHit[5] | WayHit[4];
|
|
|
|
assign LRUMask[5] = WayHit[7] | WayHit[6];
|
|
|
|
assign LRUMask[4] = WayHit[7];
|
|
|
|
assign LRUMask[3] = WayHit[5];
|
|
|
|
assign LRUMask[2] = WayHit[3] | WayHit[2];
|
|
|
|
assign LRUMask[1] = WayHit[2];
|
|
|
|
assign LRUMask[0] = WayHit[0];
|
2021-07-22 15:38:07 +00:00
|
|
|
|
|
|
|
for(index = 0; index < NUMWAYS-1; index++)
|
2021-08-26 02:09:42 +00:00
|
|
|
assign NewReplacement[index] = LRUEn[index] ? LRUMask[index] : BlockReplacementBits[index];
|
2021-07-22 15:38:07 +00:00
|
|
|
|
2021-08-26 02:09:42 +00:00
|
|
|
assign EncVicWay[2] = BlockReplacementBits[6];
|
|
|
|
assign EncVicWay[1] = BlockReplacementBits[6] ? BlockReplacementBits[5] : BlockReplacementBits[2];
|
|
|
|
assign EncVicWay[0] = BlockReplacementBits[6] ? BlockReplacementBits[5] ? BlockReplacementBits[4] : BlockReplacementBits[3] :
|
|
|
|
BlockReplacementBits[2] ? BlockReplacementBits[1] : BlockReplacementBits[0];
|
2021-07-22 15:38:07 +00:00
|
|
|
|
|
|
|
|
2021-08-25 10:46:41 +00:00
|
|
|
onehotdecoder #(3)
|
|
|
|
waydec(.bin(EncVicWay),
|
2021-08-26 02:09:42 +00:00
|
|
|
.decoded({VictimWay[0], VictimWay[1], VictimWay[2], VictimWay[3],
|
|
|
|
VictimWay[4], VictimWay[5], VictimWay[6], VictimWay[7]}));
|
2021-07-21 04:17:42 +00:00
|
|
|
end
|
|
|
|
endgenerate
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
2021-08-26 02:09:42 +00:00
|
|
|
|