mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Partial cleanup of memories.
This commit is contained in:
parent
1993069986
commit
370a075fa1
71
pipelined/src/generic/flop/bram1p1rw.sv
Normal file
71
pipelined/src/generic/flop/bram1p1rw.sv
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
///////////////////////////////////////////
|
||||||
|
// block ram model should be equivalent to srsam.
|
||||||
|
//
|
||||||
|
// Written: Ross Thompson
|
||||||
|
// March 29, 2022
|
||||||
|
// Modified: Based on UG901 vivado documentation.
|
||||||
|
//
|
||||||
|
// Purpose: On-chip SIMPLERAM, external to core
|
||||||
|
//
|
||||||
|
// A component of the Wally configurable RISC-V project.
|
||||||
|
//
|
||||||
|
// Copyright (C) 2021 Harvey Mudd College & Oklahoma State University
|
||||||
|
//
|
||||||
|
// MIT LICENSE
|
||||||
|
// 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.
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This model actually works correctly with vivado.
|
||||||
|
|
||||||
|
`include "wally-config.vh"
|
||||||
|
|
||||||
|
module bram1p1rw
|
||||||
|
#(
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
parameter NUM_COL = 8,
|
||||||
|
parameter COL_WIDTH = 8,
|
||||||
|
parameter ADDR_WIDTH = 10,
|
||||||
|
// Addr Width in bits : 2 *ADDR_WIDTH = RAM Depth
|
||||||
|
parameter DATA_WIDTH = NUM_COL*COL_WIDTH // Data Width in bits
|
||||||
|
//----------------------------------------------------------------------
|
||||||
|
) (
|
||||||
|
input logic clk,
|
||||||
|
input logic ena,
|
||||||
|
input logic [NUM_COL-1:0] we,
|
||||||
|
input logic [ADDR_WIDTH-1:0] addr,
|
||||||
|
output logic [DATA_WIDTH-1:0] dout,
|
||||||
|
input logic [DATA_WIDTH-1:0] din
|
||||||
|
);
|
||||||
|
// Core Memory
|
||||||
|
logic [DATA_WIDTH-1:0] RAM [(2**ADDR_WIDTH)-1:0];
|
||||||
|
integer i;
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
$readmemh("big64.txt", RAM);
|
||||||
|
end
|
||||||
|
|
||||||
|
always @ (posedge clk) begin
|
||||||
|
dout <= RAM[addr];
|
||||||
|
if(ena) begin
|
||||||
|
for(i=0;i<NUM_COL;i=i+1) begin
|
||||||
|
if(we[i]) begin
|
||||||
|
RAM[addr][i*COL_WIDTH +: COL_WIDTH] <= din[i*COL_WIDTH +:COL_WIDTH];
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
endmodule // bytewrite_tdp_ram_rf
|
82
pipelined/src/generic/flop/bram2p1r1w.sv
Normal file
82
pipelined/src/generic/flop/bram2p1r1w.sv
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
///////////////////////////////////////////
|
||||||
|
// block ram model should be equivalent to srsam.
|
||||||
|
//
|
||||||
|
// Written: Ross Thompson
|
||||||
|
// March 29, 2022
|
||||||
|
// Modified: Based on UG901 vivado documentation.
|
||||||
|
//
|
||||||
|
// Purpose: On-chip SIMPLERAM, external to core
|
||||||
|
//
|
||||||
|
// A component of the Wally configurable RISC-V project.
|
||||||
|
//
|
||||||
|
// Copyright (C) 2021 Harvey Mudd College & Oklahoma State University
|
||||||
|
//
|
||||||
|
// MIT LICENSE
|
||||||
|
// 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.
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// This model actually works correctly with vivado.
|
||||||
|
|
||||||
|
`include "wally-config.vh"
|
||||||
|
|
||||||
|
module bram2p1r1w
|
||||||
|
#(
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
parameter NUM_COL = 8,
|
||||||
|
parameter COL_WIDTH = 8,
|
||||||
|
parameter ADDR_WIDTH = 10,
|
||||||
|
parameter PRELOAD_ENABLED = 0,
|
||||||
|
parameter PRELOAD_FILE = "bootrom.txt",
|
||||||
|
// Addr Width in bits : 2 *ADDR_WIDTH = RAM Depth
|
||||||
|
parameter DATA_WIDTH = NUM_COL*COL_WIDTH // Data Width in bits
|
||||||
|
//----------------------------------------------------------------------
|
||||||
|
) (
|
||||||
|
input logic clk,
|
||||||
|
input logic enaA,
|
||||||
|
input logic [ADDR_WIDTH-1:0] addrA,
|
||||||
|
output logic [DATA_WIDTH-1:0] doutA,
|
||||||
|
input logic enaB,
|
||||||
|
input logic [NUM_COL-1:0] weB,
|
||||||
|
input logic [ADDR_WIDTH-1:0] addrB,
|
||||||
|
input logic [DATA_WIDTH-1:0] dinB
|
||||||
|
);
|
||||||
|
// Core Memory
|
||||||
|
logic [DATA_WIDTH-1:0] RAM [(2**ADDR_WIDTH)-1:0];
|
||||||
|
integer i;
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
if(PRELOAD_ENABLED)
|
||||||
|
$readmemh(PRELOAD_FILE, RAM);
|
||||||
|
end
|
||||||
|
|
||||||
|
// Port-A Operation
|
||||||
|
always @ (posedge clk) begin
|
||||||
|
if(enaA) begin
|
||||||
|
doutA <= RAM[addrA];
|
||||||
|
end
|
||||||
|
end
|
||||||
|
// Port-B Operation:
|
||||||
|
always @ (posedge clk) begin
|
||||||
|
if(enaB) begin
|
||||||
|
for(i=0;i<NUM_COL;i=i+1) begin
|
||||||
|
if(weB[i]) begin
|
||||||
|
RAM[addrB][i*COL_WIDTH +: COL_WIDTH] <= dinB[i*COL_WIDTH +:COL_WIDTH];
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
endmodule // bytewrite_tdp_ram_rf
|
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
`include "wally-config.vh"
|
`include "wally-config.vh"
|
||||||
|
|
||||||
module ramOld #(parameter BASE=0, RANGE = 65535) (
|
module ram #(parameter BASE=0, RANGE = 65535) (
|
||||||
input logic HCLK, HRESETn,
|
input logic HCLK, HRESETn,
|
||||||
input logic HSELRam,
|
input logic HSELRam,
|
||||||
input logic [31:0] HADDR,
|
input logic [31:0] HADDR,
|
||||||
@ -43,78 +43,22 @@ module ramOld #(parameter BASE=0, RANGE = 65535) (
|
|||||||
output logic HRESPRam, HREADYRam
|
output logic HRESPRam, HREADYRam
|
||||||
);
|
);
|
||||||
|
|
||||||
localparam MemStartAddr = BASE>>(1+`XLEN/32);
|
logic [`XLEN/8-1:0] ByteMaskM;
|
||||||
localparam MemEndAddr = (RANGE+BASE)>>1+(`XLEN/32);
|
logic [31:0] HWADDR, A;
|
||||||
|
logic prevHREADYRam, risingHREADYRam;
|
||||||
|
logic initTrans;
|
||||||
|
logic memwrite;
|
||||||
|
logic [3:0] busycount;
|
||||||
|
|
||||||
logic [`XLEN-1:0] RAM[BASE>>(1+`XLEN/32):(RANGE+BASE)>>1+(`XLEN/32)];
|
swbytemask swbytemask(.HSIZED, .HADDRD(HWADDR[2:0]), .ByteMask(ByteMaskM));
|
||||||
logic [31:0] HWADDR, A;
|
|
||||||
|
|
||||||
logic prevHREADYRam, risingHREADYRam;
|
|
||||||
logic initTrans;
|
|
||||||
logic memwrite;
|
|
||||||
logic [3:0] busycount;
|
|
||||||
logic [`XLEN/8-1:0] ByteMaskM;
|
|
||||||
|
|
||||||
if(`FPGA) begin:ram
|
|
||||||
initial begin
|
|
||||||
// *** need to address this preload for fpga. It should work as a preload file
|
|
||||||
// but for some reason vivado is not synthesizing the preload.
|
|
||||||
//$readmemh(PRELOAD, RAM);
|
|
||||||
RAM[0] = 64'h94e1819300002197;
|
|
||||||
RAM[1] = 64'h4281420141014081;
|
|
||||||
RAM[2] = 64'h4481440143814301;
|
|
||||||
RAM[3] = 64'h4681460145814501;
|
|
||||||
RAM[4] = 64'h4881480147814701;
|
|
||||||
RAM[5] = 64'h4a814a0149814901;
|
|
||||||
RAM[6] = 64'h4c814c014b814b01;
|
|
||||||
RAM[7] = 64'h4e814e014d814d01;
|
|
||||||
RAM[8] = 64'h0110011b4f814f01;
|
|
||||||
RAM[9] = 64'h059b45011161016e;
|
|
||||||
RAM[10] = 64'h0004063705fe0010;
|
|
||||||
RAM[11] = 64'h05a000ef8006061b;
|
|
||||||
RAM[12] = 64'h0ff003930000100f;
|
|
||||||
RAM[13] = 64'h4e952e3110060e37;
|
|
||||||
RAM[14] = 64'hc602829b0053f2b7;
|
|
||||||
RAM[15] = 64'h2023fe02dfe312fd;
|
|
||||||
RAM[16] = 64'h829b0053f2b7007e;
|
|
||||||
RAM[17] = 64'hfe02dfe312fdc602;
|
|
||||||
RAM[18] = 64'h4de31efd000e2023;
|
|
||||||
RAM[19] = 64'h059bf1402573fdd0;
|
|
||||||
RAM[20] = 64'h0000061705e20870;
|
|
||||||
RAM[21] = 64'h0010029b01260613;
|
|
||||||
RAM[22] = 64'h11010002806702fe;
|
|
||||||
RAM[23] = 64'h84b2842ae426e822;
|
|
||||||
RAM[24] = 64'h892ee04aec064505;
|
|
||||||
RAM[25] = 64'h06e000ef07e000ef;
|
|
||||||
RAM[26] = 64'h979334fd02905563;
|
|
||||||
RAM[27] = 64'h07930177d4930204;
|
|
||||||
RAM[28] = 64'h4089093394be2004;
|
|
||||||
RAM[29] = 64'h04138522008905b3;
|
|
||||||
RAM[30] = 64'h19e3014000ef2004;
|
|
||||||
RAM[31] = 64'h64a2644260e2fe94;
|
|
||||||
RAM[32] = 64'h6749808261056902;
|
|
||||||
RAM[33] = 64'hdfed8b8510472783;
|
|
||||||
RAM[34] = 64'h2423479110a73823;
|
|
||||||
RAM[35] = 64'h10472783674910f7;
|
|
||||||
RAM[36] = 64'h20058693ffed8b89;
|
|
||||||
RAM[37] = 64'h05a1118737836749;
|
|
||||||
RAM[38] = 64'hfed59be3fef5bc23;
|
|
||||||
RAM[39] = 64'h1047278367498082;
|
|
||||||
RAM[40] = 64'h67c98082dfed8b85;
|
|
||||||
RAM[41] = 64'h0000808210a7a023;
|
|
||||||
end // initial begin
|
|
||||||
end // if (FPGA)
|
|
||||||
|
|
||||||
swbytemask swbytemask(.HSIZED, .HADDRD(A[2:0]), .ByteMask(ByteMaskM));
|
|
||||||
|
|
||||||
assign initTrans = HREADY & HSELRam & (HTRANS != 2'b00);
|
assign initTrans = HREADY & HSELRam & (HTRANS != 2'b00);
|
||||||
|
|
||||||
// *** this seems like a weird way to use reset
|
// *** this seems like a weird way to use reset
|
||||||
flopenr #(1) memwritereg(HCLK, 1'b0, initTrans | ~HRESETn, HSELRam & HWRITE, memwrite);
|
flopenr #(1) memwritereg(HCLK, 1'b0, initTrans | ~HRESETn, HSELRam & HWRITE, memwrite);
|
||||||
flopenr #(32) haddrreg(HCLK, 1'b0, initTrans | ~HRESETn, HADDR, A);
|
flopenr #(32) haddrreg(HCLK, 1'b0, initTrans | ~HRESETn, HADDR, A);
|
||||||
|
|
||||||
// busy FSM to extend READY signal
|
// busy FSM to extend READY signal
|
||||||
always_ff @(posedge HCLK, negedge HRESETn)
|
always @(posedge HCLK, negedge HRESETn)
|
||||||
if (~HRESETn) begin
|
if (~HRESETn) begin
|
||||||
busycount <= 0;
|
busycount <= 0;
|
||||||
HREADYRam <= #1 0;
|
HREADYRam <= #1 0;
|
||||||
@ -132,46 +76,25 @@ module ramOld #(parameter BASE=0, RANGE = 65535) (
|
|||||||
end
|
end
|
||||||
assign HRESPRam = 0; // OK
|
assign HRESPRam = 0; // OK
|
||||||
|
|
||||||
|
localparam ADDR_WDITH = $clog2(RANGE/8);
|
||||||
|
localparam OFFSET = $clog2(`XLEN/8);
|
||||||
|
|
||||||
// Rising HREADY edge detector
|
// Rising HREADY edge detector
|
||||||
// Indicates when ram is finishing up
|
// Indicates when ram is finishing up
|
||||||
// Needed because HREADY may go high for other reasons,
|
// Needed because HREADY may go high for other reasons,
|
||||||
// and we only want to write data when finishing up.
|
// and we only want to write data when finishing up.
|
||||||
flopr #(1) prevhreadyRamreg(HCLK,~HRESETn,HREADYRam,prevHREADYRam);
|
flopenr #(1) prevhreadyRamreg(HCLK,~HRESETn, 1'b1, HREADYRam,prevHREADYRam);
|
||||||
assign risingHREADYRam = HREADYRam & ~prevHREADYRam;
|
assign risingHREADYRam = HREADYRam & ~prevHREADYRam;
|
||||||
|
|
||||||
// Model memory read and write
|
always @(posedge HCLK)
|
||||||
/* -----\/----- EXCLUDED -----\/-----
|
|
||||||
integer index;
|
|
||||||
|
|
||||||
initial begin
|
|
||||||
for(index = MemStartAddr; index < MemEndAddr; index = index + 1) begin
|
|
||||||
RAM[index] <= {`XLEN{1'b0}};
|
|
||||||
end
|
|
||||||
end
|
|
||||||
-----/\----- EXCLUDED -----/\----- */
|
|
||||||
|
|
||||||
/* verilator lint_off WIDTH */
|
|
||||||
genvar index;
|
|
||||||
always_ff @(posedge HCLK)
|
|
||||||
HWADDR <= #1 A;
|
HWADDR <= #1 A;
|
||||||
if (`XLEN == 64) begin:ramrw
|
|
||||||
always_ff @(posedge HCLK)
|
bram2p1r1w #(`XLEN/8, 8, ADDR_WDITH, `FPGA)
|
||||||
HREADRam <= #1 RAM[A[31:3]];
|
memory(.clk(HCLK), .enaA(1'b1),
|
||||||
for(index = 0; index < `XLEN/8; index++) begin
|
.addrA(A[ADDR_WDITH+OFFSET-1:OFFSET]), .doutA(HREADRam),
|
||||||
always_ff @(posedge HCLK) begin
|
.enaB(memwrite & risingHREADYRam), .weB(ByteMaskM),
|
||||||
if (memwrite & risingHREADYRam & ByteMaskM[index]) RAM[HWADDR[31:3]][8*(index+1)-1:8*index] <= #1 HWDATA[8*(index+1)-1:8*index];
|
.addrB(HWADDR[ADDR_WDITH+OFFSET-1:OFFSET]), .dinB(HWDATA));
|
||||||
end
|
|
||||||
end
|
|
||||||
end else begin
|
|
||||||
always_ff @(posedge HCLK)
|
|
||||||
HREADRam <= #1 RAM[A[31:2]];
|
|
||||||
for(index = 0; index < `XLEN/8; index++) begin
|
|
||||||
always_ff @(posedge HCLK) begin:ramrw
|
|
||||||
if (memwrite & risingHREADYRam & ByteMaskM[index]) RAM[HWADDR[31:2]][8*(index+1)-1:8*index] <= #1 HWDATA[8*(index+1)-1:8*index];
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
/* verilator lint_on WIDTH */
|
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
@ -1,106 +0,0 @@
|
|||||||
///////////////////////////////////////////
|
|
||||||
// ram.sv
|
|
||||||
//
|
|
||||||
// Written: David_Harris@hmc.edu 9 January 2021
|
|
||||||
// Modified:
|
|
||||||
//
|
|
||||||
// Purpose: On-chip RAM, external to core
|
|
||||||
//
|
|
||||||
// A component of the Wally configurable RISC-V project.
|
|
||||||
//
|
|
||||||
// Copyright (C) 2021 Harvey Mudd College & Oklahoma State University
|
|
||||||
//
|
|
||||||
// MIT LICENSE
|
|
||||||
// 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.
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
// True-Dual-Port BRAM with Byte-wide Write Enable
|
|
||||||
// Read-First mode
|
|
||||||
// bytewrite_tdp_ram_rf.v
|
|
||||||
//
|
|
||||||
|
|
||||||
`include "wally-config.vh"
|
|
||||||
|
|
||||||
|
|
||||||
module ram #(parameter BASE=0, RANGE = 65535) (
|
|
||||||
input logic HCLK, HRESETn,
|
|
||||||
input logic HSELRam,
|
|
||||||
input logic [31:0] HADDR,
|
|
||||||
input logic HWRITE,
|
|
||||||
input logic HREADY,
|
|
||||||
input logic [1:0] HTRANS,
|
|
||||||
input logic [`XLEN-1:0] HWDATA,
|
|
||||||
input logic [3:0] HSIZED,
|
|
||||||
output logic [`XLEN-1:0] HREADRam,
|
|
||||||
output logic HRESPRam, HREADYRam
|
|
||||||
);
|
|
||||||
|
|
||||||
logic [`XLEN/8-1:0] ByteMaskM;
|
|
||||||
logic [31:0] HWADDR, A;
|
|
||||||
logic prevHREADYRam, risingHREADYRam;
|
|
||||||
logic initTrans;
|
|
||||||
logic memwrite;
|
|
||||||
logic [3:0] busycount;
|
|
||||||
|
|
||||||
swbytemask swbytemask(.HSIZED, .HADDRD(HWADDR[2:0]), .ByteMask(ByteMaskM));
|
|
||||||
|
|
||||||
assign initTrans = HREADY & HSELRam & (HTRANS != 2'b00);
|
|
||||||
|
|
||||||
// *** this seems like a weird way to use reset
|
|
||||||
flopenr #(1) memwritereg(HCLK, 1'b0, initTrans | ~HRESETn, HSELRam & HWRITE, memwrite);
|
|
||||||
flopenr #(32) haddrreg(HCLK, 1'b0, initTrans | ~HRESETn, HADDR, A);
|
|
||||||
// busy FSM to extend READY signal
|
|
||||||
always @(posedge HCLK, negedge HRESETn)
|
|
||||||
if (~HRESETn) begin
|
|
||||||
busycount <= 0;
|
|
||||||
HREADYRam <= #1 0;
|
|
||||||
end else begin
|
|
||||||
if (initTrans) begin
|
|
||||||
busycount <= 0;
|
|
||||||
HREADYRam <= #1 0;
|
|
||||||
end else if (~HREADYRam) begin
|
|
||||||
if (busycount == 0) begin // Ram latency, for testing purposes. *** test with different values such as 2
|
|
||||||
HREADYRam <= #1 1;
|
|
||||||
end else begin
|
|
||||||
busycount <= busycount + 1;
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
assign HRESPRam = 0; // OK
|
|
||||||
|
|
||||||
localparam ADDR_WDITH = $clog2(RANGE/8);
|
|
||||||
localparam OFFSET = $clog2(`XLEN/8);
|
|
||||||
|
|
||||||
// Rising HREADY edge detector
|
|
||||||
// Indicates when ram is finishing up
|
|
||||||
// Needed because HREADY may go high for other reasons,
|
|
||||||
// and we only want to write data when finishing up.
|
|
||||||
flopenr #(1) prevhreadyRamreg(HCLK,~HRESETn, 1'b1, HREADYRam,prevHREADYRam);
|
|
||||||
assign risingHREADYRam = HREADYRam & ~prevHREADYRam;
|
|
||||||
|
|
||||||
always @(posedge HCLK)
|
|
||||||
HWADDR <= #1 A;
|
|
||||||
|
|
||||||
bram2p1r1w #(`XLEN/8, 8, ADDR_WDITH)
|
|
||||||
memory(.clk(HCLK), .enaA(1'b1),
|
|
||||||
.addrA(A[ADDR_WDITH+OFFSET-1:OFFSET]), .doutA(HREADRam),
|
|
||||||
.enaB(memwrite & risingHREADYRam), .weB(ByteMaskM),
|
|
||||||
.addrB(HWADDR[ADDR_WDITH+OFFSET-1:OFFSET]), .dinB(HWDATA));
|
|
||||||
|
|
||||||
|
|
||||||
endmodule
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user