RTL code refactoring
This commit is contained in:
@@ -64,8 +64,7 @@ module VX_cache #(
|
||||
input wire [4:0] core_req_rd,
|
||||
input wire [NUM_REQUESTS-1:0][1:0] core_req_wb,
|
||||
input wire [`NW_BITS-1:0] core_req_warp_num,
|
||||
input wire [31:0] core_req_pc,
|
||||
|
||||
input wire [31:0] core_req_pc,
|
||||
|
||||
// Core response
|
||||
output wire [NUM_REQUESTS-1:0] core_rsp_valid,
|
||||
@@ -104,15 +103,16 @@ module VX_cache #(
|
||||
);
|
||||
|
||||
wire [NUM_BANKS-1:0][NUM_REQUESTS-1:0] per_bank_valids;
|
||||
wire [NUM_BANKS-1:0] per_bank_wb_pop;
|
||||
wire [NUM_BANKS-1:0] per_bank_wb_valid;
|
||||
wire [NUM_BANKS-1:0][`LOG2UP(NUM_REQUESTS)-1:0] per_bank_wb_tid;
|
||||
wire [NUM_BANKS-1:0][4:0] per_bank_wb_rd;
|
||||
wire [NUM_BANKS-1:0][1:0] per_bank_wb_wb;
|
||||
wire [NUM_BANKS-1:0][`NW_BITS-1:0] per_bank_wb_warp_num;
|
||||
wire [NUM_BANKS-1:0][`WORD_SIZE_RNG] per_bank_wb_data;
|
||||
wire [NUM_BANKS-1:0][31:0] per_bank_wb_pc;
|
||||
wire [NUM_BANKS-1:0][31:0] per_bank_wb_address;
|
||||
|
||||
wire [NUM_BANKS-1:0] per_bank_core_rsp_pop;
|
||||
wire [NUM_BANKS-1:0] per_bank_core_rsp_valid;
|
||||
wire [NUM_BANKS-1:0][`LOG2UP(NUM_REQUESTS)-1:0] per_bank_core_rsp_tid;
|
||||
wire [NUM_BANKS-1:0][4:0] per_bank_core_rsp_rd;
|
||||
wire [NUM_BANKS-1:0][1:0] per_bank_core_rsp_wb;
|
||||
wire [NUM_BANKS-1:0][`NW_BITS-1:0] per_bank_core_rsp_warp_num;
|
||||
wire [NUM_BANKS-1:0][`WORD_SIZE_RNG] per_bank_core_rsp_data;
|
||||
wire [NUM_BANKS-1:0][31:0] per_bank_core_rsp_pc;
|
||||
wire [NUM_BANKS-1:0][31:0] per_bank_core_rsp_addr;
|
||||
|
||||
wire dfqq_full;
|
||||
wire [NUM_BANKS-1:0] per_bank_dram_fill_req_valid;
|
||||
@@ -120,7 +120,7 @@ module VX_cache #(
|
||||
`DEBUG_BEGIN
|
||||
wire [NUM_BANKS-1:0] per_bank_dram_fill_req_is_snp;
|
||||
`DEBUG_END
|
||||
wire [NUM_BANKS-1:0] per_bank_dram_rsp_ready;
|
||||
wire [NUM_BANKS-1:0] per_bank_dram_fill_rsp_ready;
|
||||
|
||||
wire [NUM_BANKS-1:0] per_bank_dram_wb_queue_pop;
|
||||
wire [NUM_BANKS-1:0] per_bank_dram_wb_req_valid;
|
||||
@@ -137,8 +137,8 @@ module VX_cache #(
|
||||
assign core_req_ready = ~(|per_bank_reqq_full);
|
||||
assign snp_req_full = (|per_bank_snrq_full);
|
||||
|
||||
// assign dram_rsp_ready = (NUM_BANKS == 1) ? per_bank_dram_rsp_ready[0] : per_bank_dram_rsp_ready[dram_rsp_addr[`BANK_SELECT_ADDR_RNG]];
|
||||
assign dram_rsp_ready = (|per_bank_dram_rsp_ready);
|
||||
// assign dram_rsp_ready = (NUM_BANKS == 1) ? per_bank_dram_fill_rsp_ready[0] : per_bank_dram_fill_rsp_ready[dram_rsp_addr[`BANK_SELECT_ADDR_RNG]];
|
||||
assign dram_rsp_ready = (|per_bank_dram_fill_rsp_ready);
|
||||
|
||||
VX_cache_dram_req_arb #(
|
||||
.CACHE_SIZE_BYTES (CACHE_SIZE_BYTES),
|
||||
@@ -160,20 +160,20 @@ module VX_cache #(
|
||||
.PRFQ_STRIDE (PRFQ_STRIDE),
|
||||
.SIMULATED_DRAM_LATENCY_CYCLES (SIMULATED_DRAM_LATENCY_CYCLES)
|
||||
) cache_dram_req_arb (
|
||||
.clk (clk),
|
||||
.reset (reset),
|
||||
.dfqq_full (dfqq_full),
|
||||
.per_bank_dram_fill_req_valid(per_bank_dram_fill_req_valid),
|
||||
.per_bank_dram_fill_req_addr (per_bank_dram_fill_req_addr),
|
||||
.per_bank_dram_wb_queue_pop (per_bank_dram_wb_queue_pop),
|
||||
.per_bank_dram_wb_req_valid (per_bank_dram_wb_req_valid),
|
||||
.per_bank_dram_wb_req_addr (per_bank_dram_wb_req_addr),
|
||||
.per_bank_dram_wb_req_data (per_bank_dram_wb_req_data),
|
||||
.dram_req_read (dram_req_read),
|
||||
.dram_req_write (dram_req_write),
|
||||
.dram_req_addr (dram_req_addr),
|
||||
.dram_req_data (dram_req_data),
|
||||
.dram_req_ready (dram_req_ready)
|
||||
.clk (clk),
|
||||
.reset (reset),
|
||||
.dfqq_full (dfqq_full),
|
||||
.per_bank_dram_fill_req_valid (per_bank_dram_fill_req_valid),
|
||||
.per_bank_dram_fill_req_addr (per_bank_dram_fill_req_addr),
|
||||
.per_bank_dram_wb_queue_pop (per_bank_dram_wb_queue_pop),
|
||||
.per_bank_dram_wb_req_valid (per_bank_dram_wb_req_valid),
|
||||
.per_bank_dram_wb_req_addr (per_bank_dram_wb_req_addr),
|
||||
.per_bank_dram_wb_req_data (per_bank_dram_wb_req_data),
|
||||
.dram_req_read (dram_req_read),
|
||||
.dram_req_write (dram_req_write),
|
||||
.dram_req_addr (dram_req_addr),
|
||||
.dram_req_data (dram_req_data),
|
||||
.dram_req_ready (dram_req_ready)
|
||||
);
|
||||
|
||||
VX_cache_core_req_bank_sel #(
|
||||
@@ -218,15 +218,15 @@ module VX_cache #(
|
||||
.FILL_INVALIDAOR_SIZE (FILL_INVALIDAOR_SIZE),
|
||||
.SIMULATED_DRAM_LATENCY_CYCLES(SIMULATED_DRAM_LATENCY_CYCLES)
|
||||
) cache_core_rsp_sel_merge (
|
||||
.per_bank_wb_valid (per_bank_wb_valid),
|
||||
.per_bank_wb_tid (per_bank_wb_tid),
|
||||
.per_bank_wb_rd (per_bank_wb_rd),
|
||||
.per_bank_wb_pc (per_bank_wb_pc),
|
||||
.per_bank_wb_wb (per_bank_wb_wb),
|
||||
.per_bank_wb_warp_num(per_bank_wb_warp_num),
|
||||
.per_bank_wb_data (per_bank_wb_data),
|
||||
.per_bank_wb_pop (per_bank_wb_pop),
|
||||
.per_bank_wb_address (per_bank_wb_address),
|
||||
.per_bank_wb_valid (per_bank_core_rsp_valid),
|
||||
.per_bank_wb_tid (per_bank_core_rsp_tid),
|
||||
.per_bank_wb_rd (per_bank_core_rsp_rd),
|
||||
.per_bank_wb_pc (per_bank_core_rsp_pc),
|
||||
.per_bank_wb_wb (per_bank_core_rsp_wb),
|
||||
.per_bank_wb_warp_num(per_bank_core_rsp_warp_num),
|
||||
.per_bank_wb_data (per_bank_core_rsp_data),
|
||||
.per_bank_wb_pop (per_bank_core_rsp_pop),
|
||||
.per_bank_wb_addr (per_bank_core_rsp_addr),
|
||||
|
||||
.core_rsp_ready (core_rsp_ready),
|
||||
.core_rsp_valid (core_rsp_valid),
|
||||
@@ -255,37 +255,37 @@ module VX_cache #(
|
||||
genvar curr_bank;
|
||||
generate
|
||||
for (curr_bank = 0; curr_bank < NUM_BANKS; curr_bank=curr_bank+1) begin
|
||||
wire [NUM_REQUESTS-1:0] curr_bank_valids;
|
||||
wire [NUM_REQUESTS-1:0][31:0] curr_bank_addr;
|
||||
wire [NUM_REQUESTS-1:0][`WORD_SIZE_RNG] curr_bank_writedata;
|
||||
wire [4:0] curr_bank_rd;
|
||||
wire [NUM_REQUESTS-1:0][1:0] curr_bank_wb;
|
||||
wire [`NW_BITS-1:0] curr_bank_warp_num;
|
||||
wire [NUM_REQUESTS-1:0][2:0] curr_bank_mem_read;
|
||||
wire [NUM_REQUESTS-1:0][2:0] curr_bank_mem_write;
|
||||
wire [31:0] curr_bank_pc;
|
||||
wire [NUM_REQUESTS-1:0] curr_bank_core_req_valids;
|
||||
wire [NUM_REQUESTS-1:0][31:0] curr_bank_core_req_addr;
|
||||
wire [NUM_REQUESTS-1:0][`WORD_SIZE_RNG] curr_bank_core_req_data;
|
||||
wire [4:0] curr_bank_core_req_rd;
|
||||
wire [NUM_REQUESTS-1:0][1:0] curr_bank_core_req_wb;
|
||||
wire [`NW_BITS-1:0] curr_bank_core_warp_num;
|
||||
wire [NUM_REQUESTS-1:0][2:0] curr_bank_core_req_read;
|
||||
wire [NUM_REQUESTS-1:0][2:0] curr_bank_core_req_write;
|
||||
wire [31:0] curr_bank_core_req_pc;
|
||||
|
||||
wire curr_bank_wb_pop;
|
||||
wire curr_bank_wb_valid;
|
||||
wire [`LOG2UP(NUM_REQUESTS)-1:0] curr_bank_wb_tid;
|
||||
wire [31:0] curr_bank_wb_pc;
|
||||
wire [4:0] curr_bank_wb_rd;
|
||||
wire [1:0] curr_bank_wb_wb;
|
||||
wire [`NW_BITS-1:0] curr_bank_wb_warp_num;
|
||||
wire [`WORD_SIZE_RNG] curr_bank_wb_data;
|
||||
wire [31:0] curr_bank_wb_address;
|
||||
wire curr_bank_core_rsp_pop;
|
||||
wire curr_bank_core_rsp_valid;
|
||||
wire [`LOG2UP(NUM_REQUESTS)-1:0] curr_bank_core_rsp_tid;
|
||||
wire [31:0] curr_bank_core_rsp_pc;
|
||||
wire [4:0] curr_bank_core_rsp_rd;
|
||||
wire [1:0] curr_bank_core_rsp_wb;
|
||||
wire [`NW_BITS-1:0] curr_bank_core_rsp_warp_num;
|
||||
wire [`WORD_SIZE_RNG] curr_bank_core_rsp_data;
|
||||
wire [31:0] curr_bank_core_rsp_addr;
|
||||
|
||||
wire curr_bank_dram_rsp_valid;
|
||||
wire [31:0] curr_bank_dram_rsp_addr;
|
||||
wire [`BANK_LINE_WORDS-1:0][`WORD_SIZE-1:0] curr_bank_dram_rsp_data;
|
||||
wire curr_bank_dram_rsp_ready;
|
||||
wire curr_bank_dram_fill_rsp_valid;
|
||||
wire [31:0] curr_bank_dram_fill_rsp_addr;
|
||||
wire [`BANK_LINE_WORDS-1:0][`WORD_SIZE-1:0] curr_bank_dram_fill_rsp_data;
|
||||
wire curr_bank_dram_fill_rsp_ready;
|
||||
|
||||
wire curr_bank_dfqq_full;
|
||||
wire curr_bank_dram_fill_req_full;
|
||||
wire curr_bank_dram_fill_req_valid;
|
||||
wire curr_bank_dram_fill_req_is_snp;
|
||||
wire[31:0] curr_bank_dram_fill_req_addr;
|
||||
|
||||
wire curr_bank_dram_wb_queue_pop;
|
||||
wire curr_bank_dram_wb_req_pop;
|
||||
wire curr_bank_dram_wb_req_valid;
|
||||
wire[31:0] curr_bank_dram_wb_req_addr;
|
||||
wire[`BANK_LINE_WORDS-1:0][`WORD_SIZE-1:0] curr_bank_dram_wb_req_data;
|
||||
@@ -301,42 +301,42 @@ module VX_cache #(
|
||||
wire curr_bank_snp_req_full;
|
||||
|
||||
// Core Req
|
||||
assign curr_bank_valids = per_bank_valids[curr_bank];
|
||||
assign curr_bank_addr = core_req_addr;
|
||||
assign curr_bank_writedata = core_req_data;
|
||||
assign curr_bank_rd = core_req_rd;
|
||||
assign curr_bank_wb = core_req_wb;
|
||||
assign curr_bank_pc = core_req_pc;
|
||||
assign curr_bank_warp_num = core_req_warp_num;
|
||||
assign curr_bank_mem_read = core_req_read;
|
||||
assign curr_bank_mem_write = core_req_write;
|
||||
assign curr_bank_core_req_valids = per_bank_valids[curr_bank];
|
||||
assign curr_bank_core_req_addr = core_req_addr;
|
||||
assign curr_bank_core_req_data = core_req_data;
|
||||
assign curr_bank_core_req_rd = core_req_rd;
|
||||
assign curr_bank_core_req_wb = core_req_wb;
|
||||
assign curr_bank_core_req_pc = core_req_pc;
|
||||
assign curr_bank_core_warp_num = core_req_warp_num;
|
||||
assign curr_bank_core_req_read = core_req_read;
|
||||
assign curr_bank_core_req_write = core_req_write;
|
||||
assign per_bank_reqq_full[curr_bank] = curr_bank_reqq_full;
|
||||
|
||||
// Core WB
|
||||
assign curr_bank_wb_pop = per_bank_wb_pop[curr_bank];
|
||||
assign per_bank_wb_valid [curr_bank] = curr_bank_wb_valid;
|
||||
assign per_bank_wb_tid [curr_bank] = curr_bank_wb_tid;
|
||||
assign per_bank_wb_rd [curr_bank] = curr_bank_wb_rd;
|
||||
assign per_bank_wb_wb [curr_bank] = curr_bank_wb_wb;
|
||||
assign per_bank_wb_warp_num[curr_bank] = curr_bank_wb_warp_num;
|
||||
assign per_bank_wb_data [curr_bank] = curr_bank_wb_data;
|
||||
assign per_bank_wb_pc [curr_bank] = curr_bank_wb_pc;
|
||||
assign per_bank_wb_address [curr_bank] = curr_bank_wb_address;
|
||||
assign curr_bank_core_rsp_pop = per_bank_core_rsp_pop[curr_bank];
|
||||
assign per_bank_core_rsp_valid [curr_bank] = curr_bank_core_rsp_valid;
|
||||
assign per_bank_core_rsp_tid [curr_bank] = curr_bank_core_rsp_tid;
|
||||
assign per_bank_core_rsp_rd [curr_bank] = curr_bank_core_rsp_rd;
|
||||
assign per_bank_core_rsp_wb [curr_bank] = curr_bank_core_rsp_wb;
|
||||
assign per_bank_core_rsp_warp_num[curr_bank] = curr_bank_core_rsp_warp_num;
|
||||
assign per_bank_core_rsp_data [curr_bank] = curr_bank_core_rsp_data;
|
||||
assign per_bank_core_rsp_pc [curr_bank] = curr_bank_core_rsp_pc;
|
||||
assign per_bank_core_rsp_addr [curr_bank] = curr_bank_core_rsp_addr;
|
||||
|
||||
// Dram fill request
|
||||
assign curr_bank_dfqq_full = dfqq_full;
|
||||
assign curr_bank_dram_fill_req_full = dfqq_full;
|
||||
assign per_bank_dram_fill_req_valid[curr_bank] = curr_bank_dram_fill_req_valid;
|
||||
assign per_bank_dram_fill_req_addr[curr_bank] = curr_bank_dram_fill_req_addr;
|
||||
assign per_bank_dram_fill_req_is_snp[curr_bank] = curr_bank_dram_fill_req_is_snp;
|
||||
|
||||
// Dram fill response
|
||||
assign curr_bank_dram_rsp_valid = (NUM_BANKS == 1) || (dram_rsp_valid && (curr_bank_dram_rsp_addr[`BANK_SELECT_ADDR_RNG] == curr_bank));
|
||||
assign curr_bank_dram_rsp_addr = dram_rsp_addr;
|
||||
assign curr_bank_dram_rsp_data = dram_rsp_data;
|
||||
assign per_bank_dram_rsp_ready[curr_bank] = curr_bank_dram_rsp_ready;
|
||||
assign curr_bank_dram_fill_rsp_valid = (NUM_BANKS == 1) || (dram_rsp_valid && (curr_bank_dram_fill_rsp_addr[`BANK_SELECT_ADDR_RNG] == curr_bank));
|
||||
assign curr_bank_dram_fill_rsp_addr = dram_rsp_addr;
|
||||
assign curr_bank_dram_fill_rsp_data = dram_rsp_data;
|
||||
assign per_bank_dram_fill_rsp_ready[curr_bank] = curr_bank_dram_fill_rsp_ready;
|
||||
|
||||
// Dram writeback request
|
||||
assign curr_bank_dram_wb_queue_pop = per_bank_dram_wb_queue_pop[curr_bank];
|
||||
assign curr_bank_dram_wb_req_pop = per_bank_dram_wb_queue_pop[curr_bank];
|
||||
assign per_bank_dram_wb_req_valid[curr_bank] = curr_bank_dram_wb_req_valid;
|
||||
assign per_bank_dram_wb_req_addr[curr_bank] = curr_bank_dram_wb_req_addr;
|
||||
assign per_bank_dram_wb_req_data[curr_bank] = curr_bank_dram_wb_req_data;
|
||||
@@ -372,55 +372,55 @@ module VX_cache #(
|
||||
.SIMULATED_DRAM_LATENCY_CYCLES(SIMULATED_DRAM_LATENCY_CYCLES)
|
||||
) bank (
|
||||
.clk (clk),
|
||||
.reset (reset),
|
||||
// Core req
|
||||
.req_ready (core_req_ready),
|
||||
.bank_valids (curr_bank_valids),
|
||||
.bank_addr (curr_bank_addr),
|
||||
.bank_writedata (curr_bank_writedata),
|
||||
.bank_rd (curr_bank_rd),
|
||||
.bank_wb (curr_bank_wb),
|
||||
.bank_pc (curr_bank_pc),
|
||||
.bank_warp_num (curr_bank_warp_num),
|
||||
.bank_mem_read (curr_bank_mem_read),
|
||||
.bank_mem_write (curr_bank_mem_write),
|
||||
.reqq_full (curr_bank_reqq_full),
|
||||
.reset (reset),
|
||||
// Core request
|
||||
.core_req_valids (curr_bank_core_req_valids),
|
||||
.core_req_read (curr_bank_core_req_read),
|
||||
.core_req_write (curr_bank_core_req_write),
|
||||
.core_req_addr (curr_bank_core_req_addr),
|
||||
.core_req_data (curr_bank_core_req_data),
|
||||
.core_req_rd (curr_bank_core_req_rd),
|
||||
.core_req_wb (curr_bank_core_req_wb),
|
||||
.core_req_pc (curr_bank_core_req_pc),
|
||||
.core_req_warp_num (curr_bank_core_warp_num),
|
||||
.core_req_full (curr_bank_reqq_full),
|
||||
.core_req_ready (core_req_ready),
|
||||
|
||||
// Output core wb
|
||||
.bank_wb_pop (curr_bank_wb_pop),
|
||||
.bank_wb_valid (curr_bank_wb_valid),
|
||||
.bank_wb_tid (curr_bank_wb_tid),
|
||||
.bank_wb_rd (curr_bank_wb_rd),
|
||||
.bank_wb_wb (curr_bank_wb_wb),
|
||||
.bank_wb_warp_num (curr_bank_wb_warp_num),
|
||||
.bank_wb_data (curr_bank_wb_data),
|
||||
.bank_wb_pc (curr_bank_wb_pc),
|
||||
.bank_wb_address (curr_bank_wb_address),
|
||||
// Core response
|
||||
.core_rsp_valid (curr_bank_core_rsp_valid),
|
||||
.core_rsp_tid (curr_bank_core_rsp_tid),
|
||||
.core_rsp_rd (curr_bank_core_rsp_rd),
|
||||
.core_rsp_wb (curr_bank_core_rsp_wb),
|
||||
.core_rsp_warp_num (curr_bank_core_rsp_warp_num),
|
||||
.core_rsp_data (curr_bank_core_rsp_data),
|
||||
.core_rsp_pc (curr_bank_core_rsp_pc),
|
||||
.core_rsp_addr (curr_bank_core_rsp_addr),
|
||||
.core_rsp_pop (curr_bank_core_rsp_pop),
|
||||
|
||||
// Dram fill req
|
||||
// Dram fill request
|
||||
.dram_fill_req_valid (curr_bank_dram_fill_req_valid),
|
||||
.dram_fill_req_addr (curr_bank_dram_fill_req_addr),
|
||||
.dram_fill_req_is_snp (curr_bank_dram_fill_req_is_snp),
|
||||
.dram_fill_req_queue_full(curr_bank_dfqq_full),
|
||||
.dram_fill_req_full (curr_bank_dram_fill_req_full),
|
||||
|
||||
// Dram fill rsp
|
||||
.dram_rsp_valid (curr_bank_dram_rsp_valid),
|
||||
.dram_rsp_addr (curr_bank_dram_rsp_addr),
|
||||
.dram_rsp_data (curr_bank_dram_rsp_data),
|
||||
.dram_rsp_ready (curr_bank_dram_rsp_ready),
|
||||
// Dram fill response
|
||||
.dram_fill_rsp_valid (curr_bank_dram_fill_rsp_valid),
|
||||
.dram_fill_rsp_addr (curr_bank_dram_fill_rsp_addr),
|
||||
.dram_fill_rsp_data (curr_bank_dram_fill_rsp_data),
|
||||
.dram_fill_rsp_ready (curr_bank_dram_fill_rsp_ready),
|
||||
|
||||
// Dram writeback
|
||||
.dram_wb_queue_pop (curr_bank_dram_wb_queue_pop),
|
||||
// Dram writeback request
|
||||
.dram_wb_req_valid (curr_bank_dram_wb_req_valid),
|
||||
.dram_wb_req_addr (curr_bank_dram_wb_req_addr),
|
||||
.dram_wb_req_data (curr_bank_dram_wb_req_data),
|
||||
.dram_wb_req_pop (curr_bank_dram_wb_req_pop),
|
||||
|
||||
// Snoop Request
|
||||
// Snoop request
|
||||
.snp_req_valid (curr_bank_snp_req),
|
||||
.snp_req_addr (curr_bank_snp_req_addr),
|
||||
.snp_req_full (curr_bank_snp_req_full),
|
||||
|
||||
// Snoop Fwd
|
||||
// Snoop forwarding
|
||||
.snp_fwd_valid (curr_bank_snp_fwd),
|
||||
.snp_fwd_addr (curr_bank_snp_fwd_addr),
|
||||
.snp_fwd_pop (curr_bank_snp_fwd_pop)
|
||||
|
||||
Reference in New Issue
Block a user