forked from Github_Repos/cvw
61 lines
2.5 KiB
Systemverilog
61 lines
2.5 KiB
Systemverilog
|
///////////////////////////////////////////
|
||
|
// dmem.sv
|
||
|
//
|
||
|
// Written: David_Harris@hmc.edu 9 January 2021
|
||
|
// Modified:
|
||
|
//
|
||
|
// Purpose: Data memory
|
||
|
//
|
||
|
// A component of the Wally configurable RISC-V project.
|
||
|
//
|
||
|
// Copyright (C) 2021 Harvey Mudd College & Oklahoma State University
|
||
|
//
|
||
|
// 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.
|
||
|
///////////////////////////////////////////
|
||
|
|
||
|
`include "wally-macros.sv"
|
||
|
|
||
|
// *** need idiom to map onto cache RAM with byte writes
|
||
|
// *** and use memread signal to reduce power when reads aren't needed
|
||
|
module dmem #(parameter XLEN=32) (
|
||
|
input logic clk, reset,
|
||
|
input logic [1:0] MemRWM,
|
||
|
input logic [7:0] ByteMaskM,
|
||
|
input logic [XLEN-1:0] AdrM, WdM,
|
||
|
output logic [XLEN-1:0] RdM,
|
||
|
output logic AccessFaultM,
|
||
|
output logic TimerIntM, SwIntM);
|
||
|
|
||
|
logic [XLEN-1:0] RdTimM, RdClintM;
|
||
|
logic TimEnM, ClintEnM;
|
||
|
|
||
|
// Address decoding
|
||
|
assign TimEnM = AdrM[31] & ~(|AdrM[30:19]); // 0x80000000 - 0x8007FFFF *** check top bits too
|
||
|
assign ClintEnM = ~(|AdrM[XLEN-1:26]) & AdrM[25] & ~(|AdrM[24:16]); // 0x02000000-0x0200FFFF
|
||
|
|
||
|
// tightly integrated memory
|
||
|
dtim #(XLEN) dtim(clk, MemRWM & {2{TimEnM}}, ByteMaskM, AdrM[18:0], WdM, RdTimM);
|
||
|
|
||
|
// memory-mapped I/O peripherals
|
||
|
clint #(XLEN) clint(clk, reset, MemRWM & {2{ClintEnM}}, ByteMaskM, AdrM[15:0], WdM, RdClintM,
|
||
|
TimerIntM, SwIntM);
|
||
|
|
||
|
// *** add cache and interface to external memory & other peripherals
|
||
|
|
||
|
// merge reads
|
||
|
assign RdM = RdTimM | RdClintM;
|
||
|
assign AccessFaultM = ~(|TimEnM | ClintEnM);
|
||
|
|
||
|
endmodule
|
||
|
|