+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes minor update minor update minor update minor update minor update minor update cleanup cleanup cache bindings and memory perf refactory minor update minor update hw unit tests fixes minor update minor update minor update minor update minor update minor udpate minor update minor update minor update minor update minor update minor update minor update minor updates minor updates minor update minor update minor update minor update minor update minor update minor updates minor updates minor updates minor updates minor update minor update
125 lines
4.5 KiB
Systemverilog
125 lines
4.5 KiB
Systemverilog
// Copyright © 2019-2023
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
`include "VX_define.vh"
|
|
|
|
module VX_smem_unit import VX_gpu_pkg::*; #(
|
|
parameter CORE_ID = 0
|
|
) (
|
|
input wire clk,
|
|
input wire reset,
|
|
|
|
`ifdef PERF_ENABLE
|
|
output cache_perf_t cache_perf,
|
|
`endif
|
|
|
|
VX_mem_bus_if.slave dcache_bus_in_if [DCACHE_NUM_REQS],
|
|
VX_mem_bus_if.master dcache_bus_out_if [DCACHE_NUM_REQS]
|
|
);
|
|
`UNUSED_PARAM (CORE_ID)
|
|
|
|
localparam SMEM_ADDR_WIDTH = `SMEM_LOG_SIZE - `CLOG2(DCACHE_WORD_SIZE);
|
|
|
|
wire [DCACHE_NUM_REQS-1:0] smem_req_valid;
|
|
wire [DCACHE_NUM_REQS-1:0] smem_req_rw;
|
|
wire [DCACHE_NUM_REQS-1:0][SMEM_ADDR_WIDTH-1:0] smem_req_addr;
|
|
wire [DCACHE_NUM_REQS-1:0][DCACHE_WORD_SIZE-1:0] smem_req_byteen;
|
|
wire [DCACHE_NUM_REQS-1:0][DCACHE_WORD_SIZE*8-1:0] smem_req_data;
|
|
wire [DCACHE_NUM_REQS-1:0][DCACHE_NOSM_TAG_WIDTH-1:0] smem_req_tag;
|
|
wire [DCACHE_NUM_REQS-1:0] smem_req_ready;
|
|
wire [DCACHE_NUM_REQS-1:0] smem_rsp_valid;
|
|
wire [DCACHE_NUM_REQS-1:0][DCACHE_WORD_SIZE*8-1:0] smem_rsp_data;
|
|
wire [DCACHE_NUM_REQS-1:0][DCACHE_NOSM_TAG_WIDTH-1:0] smem_rsp_tag;
|
|
wire [DCACHE_NUM_REQS-1:0] smem_rsp_ready;
|
|
|
|
`RESET_RELAY (smem_reset, reset);
|
|
|
|
VX_shared_mem #(
|
|
.INSTANCE_ID($sformatf("core%0d-smem", CORE_ID)),
|
|
.SIZE (1 << `SMEM_LOG_SIZE),
|
|
.NUM_REQS (DCACHE_NUM_REQS),
|
|
.NUM_BANKS (`SMEM_NUM_BANKS),
|
|
.WORD_SIZE (DCACHE_WORD_SIZE),
|
|
.ADDR_WIDTH (SMEM_ADDR_WIDTH),
|
|
.UUID_WIDTH (`UUID_WIDTH),
|
|
.TAG_WIDTH (DCACHE_NOSM_TAG_WIDTH)
|
|
) shared_mem (
|
|
.clk (clk),
|
|
.reset (smem_reset),
|
|
|
|
`ifdef PERF_ENABLE
|
|
.cache_perf (cache_perf),
|
|
`endif
|
|
|
|
// Core request
|
|
.req_valid (smem_req_valid),
|
|
.req_rw (smem_req_rw),
|
|
.req_byteen (smem_req_byteen),
|
|
.req_addr (smem_req_addr),
|
|
.req_data (smem_req_data),
|
|
.req_tag (smem_req_tag),
|
|
.req_ready (smem_req_ready),
|
|
|
|
// Core response
|
|
.rsp_valid (smem_rsp_valid),
|
|
.rsp_data (smem_rsp_data),
|
|
.rsp_tag (smem_rsp_tag),
|
|
.rsp_ready (smem_rsp_ready)
|
|
);
|
|
|
|
VX_mem_bus_if #(
|
|
.DATA_SIZE (DCACHE_WORD_SIZE),
|
|
.TAG_WIDTH (DCACHE_NOSM_TAG_WIDTH)
|
|
) switch_out_bus_if[2 * DCACHE_NUM_REQS]();
|
|
|
|
`RESET_RELAY (switch_reset, reset);
|
|
|
|
for (genvar i = 0; i < DCACHE_NUM_REQS; ++i) begin
|
|
|
|
assign smem_req_valid[i] = switch_out_bus_if[i * 2 + 1].req_valid;
|
|
assign smem_req_rw[i] = switch_out_bus_if[i * 2 + 1].req_data.rw;
|
|
assign smem_req_byteen[i] = switch_out_bus_if[i * 2 + 1].req_data.byteen;
|
|
assign smem_req_data[i] = switch_out_bus_if[i * 2 + 1].req_data.data;
|
|
assign smem_req_tag[i] = switch_out_bus_if[i * 2 + 1].req_data.tag;
|
|
assign switch_out_bus_if[i * 2 + 1].req_ready = smem_req_ready[i];
|
|
|
|
assign switch_out_bus_if[i * 2 + 1].rsp_valid = smem_rsp_valid[i];
|
|
assign switch_out_bus_if[i * 2 + 1].rsp_data.data = smem_rsp_data[i];
|
|
assign switch_out_bus_if[i * 2 + 1].rsp_data.tag = smem_rsp_tag[i];
|
|
assign smem_rsp_ready[i] = switch_out_bus_if[i * 2 + 1].rsp_ready;
|
|
|
|
assign smem_req_addr[i] = switch_out_bus_if[i * 2 + 1].req_data.addr[SMEM_ADDR_WIDTH-1:0];
|
|
|
|
VX_smem_switch #(
|
|
.NUM_REQS (2),
|
|
.DATA_SIZE (DCACHE_WORD_SIZE),
|
|
.TAG_WIDTH (DCACHE_TAG_WIDTH),
|
|
.TAG_SEL_IDX (0),
|
|
.ARBITER ("P"),
|
|
.OUT_REG_REQ (2),
|
|
.OUT_REG_RSP (2)
|
|
) smem_switch (
|
|
.clk (clk),
|
|
.reset (switch_reset),
|
|
.bus_in_if (dcache_bus_in_if[i]),
|
|
.bus_out_if (switch_out_bus_if[i * 2 +: 2])
|
|
);
|
|
end
|
|
|
|
// this bus goes to the dcache
|
|
for (genvar i = 0; i < DCACHE_NUM_REQS; ++i) begin
|
|
`ASSIGN_VX_MEM_BUS_IF (dcache_bus_out_if[i], switch_out_bus_if[i * 2]);
|
|
end
|
|
|
|
endmodule
|