2021-01-15 04:37:51 +00:00
|
|
|
///////////////////////////////////////////
|
2021-01-29 06:07:17 +00:00
|
|
|
// wally-pipelinedsoc.sv
|
2021-01-15 04:37:51 +00:00
|
|
|
//
|
|
|
|
// Written: David_Harris@hmc.edu 6 November 2020
|
|
|
|
// Modified:
|
|
|
|
//
|
2021-01-29 06:07:17 +00:00
|
|
|
// Purpose: System on chip including pipelined processor and memories
|
2021-01-15 04:37:51 +00:00
|
|
|
// Full RV32/64IC instruction set
|
|
|
|
//
|
|
|
|
// Note: the CSRs do not support the following features
|
|
|
|
//- Disabling portions of the instruction set with bits of the MISA register
|
|
|
|
//- Changing from RV64 to RV32 by writing the SXL/UXL bits of the STATUS register
|
|
|
|
// As of January 2020, virtual memory is not yet supported
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
///////////////////////////////////////////
|
|
|
|
|
2021-01-23 15:48:12 +00:00
|
|
|
`include "wally-config.vh"
|
2021-01-15 04:37:51 +00:00
|
|
|
|
2021-01-29 06:07:17 +00:00
|
|
|
module wallypipelinedsoc (
|
2021-01-15 04:37:51 +00:00
|
|
|
input logic clk, reset,
|
2021-01-29 06:07:17 +00:00
|
|
|
// AHB Lite Interface
|
|
|
|
input logic [`AHBW-1:0] HRDATA,
|
|
|
|
input logic HREADY, HRESP,
|
|
|
|
output logic [31:0] HADDR,
|
|
|
|
output logic [`AHBW-1:0] HWDATA,
|
|
|
|
output logic HWRITE,
|
|
|
|
output logic [2:0] HSIZE,
|
|
|
|
output logic [2:0] HBURST,
|
|
|
|
output logic [3:0] HPROT,
|
|
|
|
output logic [1:0] HTRANS,
|
|
|
|
output logic HMASTLOCK,
|
|
|
|
// I/O Interface
|
|
|
|
input logic [31:0] GPIOPinsIn,
|
|
|
|
output logic [31:0] GPIOPinsOut, GPIOPinsEn,
|
|
|
|
input logic UARTSin,
|
|
|
|
output logic UARTSout
|
2021-01-15 05:25:56 +00:00
|
|
|
);
|
2021-01-15 04:37:51 +00:00
|
|
|
|
2021-01-29 06:07:17 +00:00
|
|
|
logic [1:0] MemRWM;
|
|
|
|
logic [`XLEN-1:0] DataAdrM, WriteDataM;
|
2021-01-23 15:48:12 +00:00
|
|
|
logic [`XLEN-1:0] PCF, ReadDataM;
|
2021-01-15 04:37:51 +00:00
|
|
|
logic [31:0] InstrF;
|
2021-01-29 20:37:51 +00:00
|
|
|
logic [2:0] Funct3M;
|
|
|
|
logic [1:0] MemRWdcuoutM;
|
2021-01-15 04:37:51 +00:00
|
|
|
logic InstrAccessFaultF, DataAccessFaultM;
|
|
|
|
logic TimerIntM, SwIntM; // from CLINT
|
|
|
|
logic ExtIntM = 0; // not yet connected
|
|
|
|
|
|
|
|
// instantiate processor and memories
|
2021-01-28 06:03:12 +00:00
|
|
|
wallypipelinedhart hart(.*);
|
2021-01-15 04:37:51 +00:00
|
|
|
|
2021-01-27 11:40:26 +00:00
|
|
|
imem imem(.AdrF(PCF[`XLEN-1:1]), .*);
|
2021-01-29 20:37:51 +00:00
|
|
|
uncore uncore(.AdrM(DataAdrM), .MemRWM(MemRWdcuoutM), .*);
|
2021-01-15 04:37:51 +00:00
|
|
|
endmodule
|