+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes
65 lines
1.6 KiB
Systemverilog
65 lines
1.6 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"
|
|
|
|
interface VX_mem_bus_if #(
|
|
parameter DATA_SIZE = 1,
|
|
parameter TAG_WIDTH = 1,
|
|
parameter MEM_ADDR_WIDTH = `MEM_ADDR_WIDTH,
|
|
parameter ADDR_WIDTH = MEM_ADDR_WIDTH - `CLOG2(DATA_SIZE)
|
|
) ();
|
|
|
|
typedef struct packed {
|
|
logic rw;
|
|
logic [DATA_SIZE-1:0] byteen;
|
|
logic [ADDR_WIDTH-1:0] addr;
|
|
logic [DATA_SIZE*8-1:0] data;
|
|
logic [TAG_WIDTH-1:0] tag;
|
|
} req_data_t;
|
|
|
|
typedef struct packed {
|
|
logic [DATA_SIZE*8-1:0] data;
|
|
logic [TAG_WIDTH-1:0] tag;
|
|
} rsp_data_t;
|
|
|
|
logic req_valid;
|
|
req_data_t req_data;
|
|
logic req_ready;
|
|
|
|
logic rsp_valid;
|
|
rsp_data_t rsp_data;
|
|
logic rsp_ready;
|
|
|
|
modport master (
|
|
output req_valid,
|
|
output req_data,
|
|
input req_ready,
|
|
|
|
input rsp_valid,
|
|
input rsp_data,
|
|
output rsp_ready
|
|
);
|
|
|
|
modport slave (
|
|
input req_valid,
|
|
input req_data,
|
|
output req_ready,
|
|
|
|
output rsp_valid,
|
|
output rsp_data,
|
|
input rsp_ready
|
|
);
|
|
|
|
endinterface
|