2021-01-15 04:37:51 +00:00
|
|
|
///////////////////////////////////////////
|
2021-02-15 15:10:50 +00:00
|
|
|
// privileged.sv
|
2021-01-15 04:37:51 +00:00
|
|
|
//
|
|
|
|
// Written: David_Harris@hmc.edu 5 January 2021
|
|
|
|
// Modified:
|
|
|
|
//
|
|
|
|
// Purpose: Implements the CSRs, Exceptions, and Privileged operations
|
|
|
|
// See RISC-V Privileged Mode Specification 20190608
|
|
|
|
//
|
2023-01-14 03:44:38 +00:00
|
|
|
// Documentation: RISC-V System on Chip Design Chapter 5 (Figure 5.8)
|
|
|
|
//
|
2023-01-11 23:15:08 +00:00
|
|
|
// A component of the CORE-V-WALLY configurable RISC-V project.
|
2021-01-15 04:37:51 +00:00
|
|
|
//
|
|
|
|
// 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
|
2021-12-13 08:34:43 +00:00
|
|
|
// OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
2021-01-15 04:37:51 +00:00
|
|
|
///////////////////////////////////////////
|
|
|
|
|
2021-01-23 15:48:12 +00:00
|
|
|
`include "wally-config.vh"
|
2021-01-15 04:37:51 +00:00
|
|
|
|
2021-01-23 15:48:12 +00:00
|
|
|
module privileged (
|
2021-02-02 04:44:41 +00:00
|
|
|
input logic clk, reset,
|
2023-01-12 15:41:30 +00:00
|
|
|
input logic StallD, StallE, StallM, StallW,
|
|
|
|
input logic FlushD, FlushE, FlushM, FlushW,
|
2023-01-14 01:57:38 +00:00
|
|
|
// CSR Reads and Writes, and values needed for traps
|
2023-01-21 00:47:36 +00:00
|
|
|
input logic CSRReadM, CSRWriteM, // Read or write CSRs
|
2023-01-14 01:57:38 +00:00
|
|
|
input logic [`XLEN-1:0] SrcAM, // GPR register to write
|
|
|
|
input logic [31:0] InstrM, // Instruction
|
2023-03-22 13:29:30 +00:00
|
|
|
input logic [31:0] InstrOrigM, // Original compressed or uncompressed instruction in Memory stage for Illegal Instruction MTVAL
|
2023-01-14 01:57:38 +00:00
|
|
|
input logic [`XLEN-1:0] IEUAdrM, // address from IEU
|
2023-02-28 21:37:25 +00:00
|
|
|
input logic [`XLEN-1:0] PCM, PC2NextF, // program counter, next PC going to trap/return PC logic
|
2023-01-14 01:57:38 +00:00
|
|
|
// control signals
|
|
|
|
input logic InstrValidM, // Current instruction is valid (not flushed)
|
|
|
|
input logic CommittedM, CommittedF, // current instruction is using bus; don't interrupt
|
|
|
|
input logic PrivilegedM, // privileged instruction
|
|
|
|
// processor events for performance counter logging
|
|
|
|
input logic FRegWriteM, // instruction will write floating-point registers
|
|
|
|
input logic LoadStallD, // load instruction is stalling
|
2023-03-03 05:54:56 +00:00
|
|
|
input logic StoreStallD, // store instruction is stalling
|
|
|
|
input logic ICacheStallF, // I cache stalled
|
|
|
|
input logic DCacheStallM, // D cache stalled
|
2023-03-03 05:10:54 +00:00
|
|
|
input logic BPDirPredWrongM, // branch predictor guessed wrong direction
|
2023-03-03 06:18:34 +00:00
|
|
|
input logic BTAWrongM, // branch predictor guessed wrong target
|
2023-03-03 05:10:54 +00:00
|
|
|
input logic RASPredPCWrongM, // return adddress stack guessed wrong target
|
|
|
|
input logic IClassWrongM, // branch predictor guessed wrong instruction class
|
|
|
|
input logic BPWrongM, // branch predictor is wrong
|
2023-01-14 04:55:21 +00:00
|
|
|
input logic [3:0] InstrClassM, // actual instruction class
|
2023-01-14 01:57:38 +00:00
|
|
|
input logic DCacheMiss, // data cache miss
|
|
|
|
input logic DCacheAccess, // data cache accessed (hit or miss)
|
|
|
|
input logic ICacheMiss, // instruction cache miss
|
|
|
|
input logic ICacheAccess, // instruction cache access
|
2023-03-03 05:59:52 +00:00
|
|
|
input logic DivBusyE, // integer divide busy
|
|
|
|
input logic FDivBusyE, // floating point divide busy
|
2023-01-14 01:57:38 +00:00
|
|
|
// fault sources
|
|
|
|
input logic InstrAccessFaultF, // instruction access fault
|
|
|
|
input logic LoadAccessFaultM, StoreAmoAccessFaultM, // load or store access fault
|
|
|
|
input logic HPTWInstrAccessFaultM, // hardware page table access fault while fetching instruction PTE
|
|
|
|
input logic InstrPageFaultF, // page faults
|
|
|
|
input logic LoadPageFaultM, StoreAmoPageFaultM, // page faults
|
|
|
|
input logic InstrMisalignedFaultM, // misaligned instruction fault
|
|
|
|
input logic LoadMisalignedFaultM, StoreAmoMisalignedFaultM, // misaligned data fault
|
2023-02-21 17:32:17 +00:00
|
|
|
input logic IllegalIEUFPUInstrD, // illegal instruction from IEU or FPU
|
2023-01-14 01:57:38 +00:00
|
|
|
input logic MTimerInt, MExtInt, SExtInt, MSwInt, // interrupt sources
|
|
|
|
input logic [63:0] MTIME_CLINT, // timer value from CLINT
|
|
|
|
input logic [4:0] SetFflagsM, // set FCSR flags from FPU
|
|
|
|
input logic SelHPTW, // HPTW in use. Causes system to use S-mode endianness for accesses
|
|
|
|
// CSR outputs
|
|
|
|
output logic [`XLEN-1:0] CSRReadValW, // Value read from CSR
|
|
|
|
output logic [1:0] PrivilegeModeW, // current privilege mode
|
|
|
|
output logic [`XLEN-1:0] SATP_REGW, // supervisor address translation register
|
|
|
|
output logic STATUS_MXR, STATUS_SUM, STATUS_MPRV, // status register bits
|
|
|
|
output logic [1:0] STATUS_MPP, STATUS_FS, // status register bits
|
|
|
|
output var logic [7:0] PMPCFG_ARRAY_REGW[`PMP_ENTRIES-1:0], // PMP configuration entries to MMU
|
2023-03-22 11:33:14 +00:00
|
|
|
output var logic [`PA_BITS-3:0] PMPADDR_ARRAY_REGW [`PMP_ENTRIES-1:0], // PMP address entries to MMU
|
2023-01-14 01:57:38 +00:00
|
|
|
output logic [2:0] FRM_REGW, // FPU rounding mode
|
|
|
|
// PC logic output in privileged unit
|
|
|
|
output logic [`XLEN-1:0] UnalignedPCNextF, // Next PC from trap/return PC logic
|
|
|
|
// control outputs
|
|
|
|
output logic RetM, TrapM, // return instruction, or trap
|
|
|
|
output logic sfencevmaM, // sfence.vma instruction
|
2023-03-18 16:24:31 +00:00
|
|
|
input logic InvalidateICacheM, // fence instruction
|
2023-01-14 01:57:38 +00:00
|
|
|
output logic BigEndianM, // Use big endian in current privilege mode
|
|
|
|
// Fault outputs
|
|
|
|
output logic BreakpointFaultM, EcallFaultM, // breakpoint and Ecall traps should retire
|
|
|
|
output logic WFIStallM // Stall in Memory stage for WFI until interrupt or timeout
|
2021-01-15 04:37:51 +00:00
|
|
|
);
|
|
|
|
|
2023-01-14 03:44:38 +00:00
|
|
|
logic [`LOG_XLEN-1:0] CauseM; // trap cause
|
|
|
|
logic [`XLEN-1:0] MEDELEG_REGW; // exception delegation CSR
|
|
|
|
logic [11:0] MIDELEG_REGW; // interrupt delegation CSR
|
|
|
|
logic sretM, mretM; // supervisor / machine return instruction
|
|
|
|
logic IllegalCSRAccessM; // Illegal access to CSR
|
2023-02-21 17:32:17 +00:00
|
|
|
logic IllegalIEUFPUInstrM; // Illegal IEU or FPU instruction, delayed to Mem stage
|
2023-01-14 03:44:38 +00:00
|
|
|
logic InstrPageFaultM; // Instruction page fault, delayed to Mem stage
|
|
|
|
logic InstrAccessFaultM; // Instruction access fault, delayed to Mem stages
|
|
|
|
logic IllegalInstrFaultM; // Illegal instruction fault
|
|
|
|
logic STATUS_SPP, STATUS_TSR, STATUS_TW, STATUS_TVM; // Status bits needed within privileged unit
|
|
|
|
logic STATUS_MIE, STATUS_SIE; // status bits: interrupt enables
|
|
|
|
logic [11:0] MIP_REGW, MIE_REGW; // interrupt pending and enable bits
|
|
|
|
logic [1:0] NextPrivilegeModeM; // next privilege mode based on trap or return
|
|
|
|
logic DelegateM; // trap should be delegated
|
|
|
|
logic wfiM; // wait for interrupt instruction
|
|
|
|
logic IntPendingM; // interrupt is pending, even if not enabled. ends wfi
|
2023-03-03 05:21:29 +00:00
|
|
|
logic InterruptM; // interrupt occuring
|
|
|
|
logic ExceptionM; // Memory stage instruction caused a fault
|
|
|
|
|
2021-01-15 04:37:51 +00:00
|
|
|
// track the current privilege level
|
2022-05-31 14:58:11 +00:00
|
|
|
privmode privmode(.clk, .reset, .StallW, .TrapM, .mretM, .sretM, .DelegateM,
|
2023-01-12 15:41:30 +00:00
|
|
|
.STATUS_MPP, .STATUS_SPP, .NextPrivilegeModeM, .PrivilegeModeW);
|
2022-05-08 06:46:35 +00:00
|
|
|
|
2021-01-29 04:21:12 +00:00
|
|
|
// decode privileged instructions
|
2023-01-12 15:41:30 +00:00
|
|
|
privdec pmd(.clk, .reset, .StallM, .InstrM(InstrM[31:20]),
|
2023-02-21 17:32:17 +00:00
|
|
|
.PrivilegedM, .IllegalIEUFPUInstrM, .IllegalCSRAccessM,
|
2023-01-12 15:41:30 +00:00
|
|
|
.PrivilegeModeW, .STATUS_TSR, .STATUS_TVM, .STATUS_TW, .IllegalInstrFaultM,
|
|
|
|
.EcallFaultM, .BreakpointFaultM, .sretM, .mretM, .wfiM, .sfencevmaM);
|
2021-01-29 04:21:12 +00:00
|
|
|
|
|
|
|
// Control and Status Registers
|
2023-01-12 15:41:30 +00:00
|
|
|
csr csr(.clk, .reset, .FlushM, .FlushW, .StallE, .StallM, .StallW,
|
2023-03-22 13:29:30 +00:00
|
|
|
.InstrM, .InstrOrigM, .PCM, .SrcAM, .IEUAdrM, .PC2NextF,
|
2023-01-12 15:41:30 +00:00
|
|
|
.CSRReadM, .CSRWriteM, .TrapM, .mretM, .sretM, .wfiM, .IntPendingM, .InterruptM,
|
|
|
|
.MTimerInt, .MExtInt, .SExtInt, .MSwInt,
|
2023-03-03 05:10:54 +00:00
|
|
|
.MTIME_CLINT, .InstrValidM, .FRegWriteM, .LoadStallD, .StoreStallD,
|
2023-03-03 06:18:34 +00:00
|
|
|
.BPDirPredWrongM, .BTAWrongM, .RASPredPCWrongM, .BPWrongM,
|
2023-03-18 16:24:31 +00:00
|
|
|
.sfencevmaM, .ExceptionM, .InvalidateICacheM, .ICacheStallF, .DCacheStallM, .DivBusyE, .FDivBusyE,
|
2023-03-01 22:40:42 +00:00
|
|
|
.IClassWrongM, .InstrClassM, .DCacheMiss, .DCacheAccess, .ICacheMiss, .ICacheAccess,
|
2023-01-12 15:41:30 +00:00
|
|
|
.NextPrivilegeModeM, .PrivilegeModeW, .CauseM, .SelHPTW,
|
|
|
|
.STATUS_MPP, .STATUS_SPP, .STATUS_TSR, .STATUS_TVM,
|
|
|
|
.STATUS_MIE, .STATUS_SIE, .STATUS_MXR, .STATUS_SUM, .STATUS_MPRV, .STATUS_TW, .STATUS_FS,
|
|
|
|
.MEDELEG_REGW, .MIP_REGW, .MIE_REGW, .MIDELEG_REGW,
|
|
|
|
.SATP_REGW, .PMPCFG_ARRAY_REGW, .PMPADDR_ARRAY_REGW,
|
|
|
|
.SetFflagsM, .FRM_REGW,
|
|
|
|
.CSRReadValW,.UnalignedPCNextF, .IllegalCSRAccessM, .BigEndianM);
|
|
|
|
|
|
|
|
// pipeline early-arriving trap sources
|
2022-05-12 20:45:45 +00:00
|
|
|
privpiperegs ppr(.clk, .reset, .StallD, .StallE, .StallM, .FlushD, .FlushE, .FlushM,
|
2023-02-21 17:32:17 +00:00
|
|
|
.InstrPageFaultF, .InstrAccessFaultF, .IllegalIEUFPUInstrD,
|
|
|
|
.InstrPageFaultM, .InstrAccessFaultM, .IllegalIEUFPUInstrM);
|
2022-05-12 20:45:45 +00:00
|
|
|
|
2023-01-12 15:41:30 +00:00
|
|
|
// trap logic
|
2022-05-12 15:15:30 +00:00
|
|
|
trap trap(.reset,
|
2023-01-12 15:41:30 +00:00
|
|
|
.InstrMisalignedFaultM, .InstrAccessFaultM, .HPTWInstrAccessFaultM, .IllegalInstrFaultM,
|
|
|
|
.BreakpointFaultM, .LoadMisalignedFaultM, .StoreAmoMisalignedFaultM,
|
|
|
|
.LoadAccessFaultM, .StoreAmoAccessFaultM, .EcallFaultM, .InstrPageFaultM,
|
|
|
|
.LoadPageFaultM, .StoreAmoPageFaultM,
|
|
|
|
.mretM, .sretM, .PrivilegeModeW,
|
|
|
|
.MIP_REGW, .MIE_REGW, .MIDELEG_REGW, .MEDELEG_REGW, .STATUS_MIE, .STATUS_SIE,
|
|
|
|
.InstrValidM, .CommittedM, .CommittedF,
|
2023-03-03 05:21:29 +00:00
|
|
|
.TrapM, .RetM, .wfiM, .InterruptM, .ExceptionM, .IntPendingM, .DelegateM, .WFIStallM, .CauseM);
|
2021-01-15 04:37:51 +00:00
|
|
|
endmodule
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-12-13 08:31:51 +00:00
|
|
|
|