cvw/pipelined/src/wally/wallypipelinedsoc.sv

97 lines
3.5 KiB
Systemverilog
Raw Normal View History

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
//
2023-01-11 22:03:44 +00:00
// A component of the CORE-V Wally configurable RISC-V project.
2021-01-15 04:37:51 +00:00
//
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
//
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
//
// Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
// except in compliance with the License, or, at your option, the Apache License version 2.0. You
// may obtain a copy of the License at
//
// https://solderpad.org/licenses/SHL-2.1/
//
// Unless required by applicable law or agreed to in writing, any work 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.
////////////////////////////////////////////////////////////////////////////////////////////////
2021-01-15 04:37:51 +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-12-08 20:33:53 +00:00
input logic clk, reset_ext,
output logic reset,
2021-01-29 06:07:17 +00:00
// AHB Lite Interface
2021-01-30 04:43:48 +00:00
// inputs from external memory
2021-12-08 20:33:53 +00:00
input logic [`AHBW-1:0] HRDATAEXT,
input logic HREADYEXT, HRESPEXT,
output logic HSELEXT,
2021-01-30 04:43:48 +00:00
// outputs to external memory, shared with uncore memory
output logic HCLK, HRESETn,
2022-08-25 20:11:36 +00:00
output logic [`PA_BITS-1:0] HADDR,
2021-01-29 06:07:17 +00:00
output logic [`AHBW-1:0] HWDATA,
2022-07-05 15:51:35 +00:00
output logic [`XLEN/8-1:0] HWSTRB,
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,
output logic HREADY,
2021-01-29 06:07:17 +00:00
// I/O Interface
input logic TIMECLK,
2021-09-30 16:23:09 +00:00
input logic [31:0] GPIOPinsIn,
output logic [31:0] GPIOPinsOut, GPIOPinsEn,
input logic UARTSin,
output logic UARTSout,
input logic SDCCmdIn,
output logic SDCCmdOut,
output logic SDCCmdOE,
input logic [3:0] SDCDatIn,
output logic SDCCLK
2021-01-15 05:25:56 +00:00
);
2021-01-15 04:37:51 +00:00
2021-01-30 04:43:48 +00:00
// Uncore signals
2021-12-08 20:33:53 +00:00
// logic reset;
2021-01-30 04:43:48 +00:00
logic [`AHBW-1:0] HRDATA; // from AHB mux in uncore
2021-11-29 16:06:53 +00:00
logic HRESP;
logic MTimerInt, MSwInt; // from CLINT
2021-12-31 06:40:21 +00:00
logic [63:0] MTIME_CLINT; // from CLINT to CSRs
logic MExtInt,SExtInt; // from PLIC
2022-07-05 15:51:35 +00:00
2021-10-25 17:05:41 +00:00
// synchronize reset to SOC clock domain
synchronizer resetsync(.clk, .d(reset_ext), .q(reset));
2021-01-15 04:37:51 +00:00
// instantiate processor and memories
wallypipelinedcore core(.clk, .reset,
.MTimerInt, .MExtInt, .SExtInt, .MSwInt,
2021-12-31 06:40:21 +00:00
.MTIME_CLINT,
2022-07-05 15:51:35 +00:00
.HRDATA, .HREADY, .HRESP, .HCLK, .HRESETn, .HADDR, .HWDATA, .HWSTRB,
.HWRITE, .HSIZE, .HBURST, .HPROT, .HTRANS, .HMASTLOCK
2021-10-20 20:49:18 +00:00
);
2021-01-15 04:37:51 +00:00
if (`BUS) begin : uncore
2022-08-25 15:35:24 +00:00
uncore uncore(.HCLK, .HRESETn, .TIMECLK,
.HADDR, .HWDATA, .HWSTRB, .HWRITE, .HSIZE, .HBURST, .HPROT, .HTRANS, .HMASTLOCK, .HRDATAEXT,
2022-08-25 22:36:47 +00:00
.HREADYEXT, .HRESPEXT, .HRDATA, .HREADY, .HRESP, .HSELEXT,
2022-08-25 15:35:24 +00:00
.MTimerInt, .MSwInt, .MExtInt, .SExtInt, .GPIOPinsIn, .GPIOPinsOut, .GPIOPinsEn, .UARTSin,
2022-08-25 22:36:47 +00:00
.UARTSout, .MTIME_CLINT,
.SDCCmdOut, .SDCCmdOE, .SDCCmdIn, .SDCDatIn, .SDCCLK);
2022-08-25 15:35:24 +00:00
end
endmodule