111 lines
2.9 KiB
Systemverilog
111 lines
2.9 KiB
Systemverilog
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright 2019 Western Digital Corporation or its affiliates.
|
|
//
|
|
// 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.
|
|
//
|
|
|
|
module axi_slv #(
|
|
TAGW = 1
|
|
) (
|
|
input aclk,
|
|
input rst_l,
|
|
input arvalid,
|
|
output reg arready,
|
|
input [ 31:0] araddr,
|
|
input [TAGW-1:0] arid,
|
|
input [ 7:0] arlen,
|
|
input [ 1:0] arburst,
|
|
input [ 2:0] arsize,
|
|
|
|
output reg rvalid,
|
|
input rready,
|
|
output reg [ 63:0] rdata,
|
|
output reg [ 1:0] rresp,
|
|
output reg [TAGW-1:0] rid,
|
|
output rlast,
|
|
|
|
input awvalid,
|
|
output awready,
|
|
input [ 31:0] awaddr,
|
|
input [TAGW-1:0] awid,
|
|
input [ 7:0] awlen,
|
|
input [ 1:0] awburst,
|
|
input [ 2:0] awsize,
|
|
|
|
input [63:0] wdata,
|
|
input [ 7:0] wstrb,
|
|
input wvalid,
|
|
output wready,
|
|
|
|
output reg bvalid,
|
|
input bready,
|
|
output reg [ 1:0] bresp,
|
|
output reg [TAGW-1:0] bid
|
|
);
|
|
|
|
parameter MEM_DEPTH = 17; // memory size = 0x8000 = 32k
|
|
|
|
bit [7:0] mem[(1<<MEM_DEPTH)-1:0];
|
|
|
|
bit [63:0] memdata;
|
|
|
|
wire [MEM_DEPTH-1:0] saraddr = araddr[MEM_DEPTH-1:0];
|
|
wire [MEM_DEPTH-1:0] sawaddr = awaddr[MEM_DEPTH-1:0];
|
|
|
|
always @(posedge aclk or negedge rst_l) begin
|
|
if (!rst_l) begin
|
|
rvalid <= 0;
|
|
bvalid <= 0;
|
|
end else begin
|
|
bid <= awid;
|
|
rid <= arid;
|
|
rvalid <= arvalid;
|
|
bvalid <= awvalid;
|
|
rdata <= memdata;
|
|
end
|
|
end
|
|
|
|
always @(negedge aclk) begin
|
|
if (arvalid)
|
|
memdata <= {
|
|
mem[saraddr+7],
|
|
mem[saraddr+6],
|
|
mem[saraddr+5],
|
|
mem[saraddr+4],
|
|
mem[saraddr+3],
|
|
mem[saraddr+2],
|
|
mem[saraddr+1],
|
|
mem[saraddr]
|
|
};
|
|
if (awvalid) begin
|
|
if (wstrb[7]) mem[sawaddr+7] = wdata[63:56];
|
|
if (wstrb[6]) mem[sawaddr+6] = wdata[55:48];
|
|
if (wstrb[5]) mem[sawaddr+5] = wdata[47:40];
|
|
if (wstrb[4]) mem[sawaddr+4] = wdata[39:32];
|
|
if (wstrb[3]) mem[sawaddr+3] = wdata[31:24];
|
|
if (wstrb[2]) mem[sawaddr+2] = wdata[23:16];
|
|
if (wstrb[1]) mem[sawaddr+1] = wdata[15:08];
|
|
if (wstrb[0]) mem[sawaddr+0] = wdata[07:00];
|
|
end
|
|
end
|
|
|
|
|
|
assign arready = 1'b1;
|
|
assign awready = 1'b1;
|
|
assign wready = 1'b1;
|
|
assign rresp = 2'b0;
|
|
assign bresp = 2'b0;
|
|
assign rlast = 1'b1;
|
|
|
|
endmodule
|