236 lines
6.2 KiB
C
236 lines
6.2 KiB
C
|
/*******************************************************************************
|
||
|
* Copyright (C) 2017, 2018, 2021 MINRES Technologies GmbH
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* Redistribution and use in source and binary forms, with or without
|
||
|
* modification, are permitted provided that the following conditions are met:
|
||
|
*
|
||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||
|
* this list of conditions and the following disclaimer.
|
||
|
*
|
||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||
|
* this list of conditions and the following disclaimer in the documentation
|
||
|
* and/or other materials provided with the distribution.
|
||
|
*
|
||
|
* 3. Neither the name of the copyright holder nor the names of its contributors
|
||
|
* may be used to endorse or promote products derived from this software
|
||
|
* without specific prior written permission.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||
|
*
|
||
|
* Contributors:
|
||
|
* eyck@minres.com - initial implementation
|
||
|
******************************************************************************/
|
||
|
|
||
|
#ifndef _RISCV_HART_COMMON
|
||
|
#define _RISCV_HART_COMMON
|
||
|
|
||
|
#include "iss/arch_if.h"
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace iss {
|
||
|
namespace arch {
|
||
|
|
||
|
enum { tohost_dflt = 0xF0001000, fromhost_dflt = 0xF0001040 };
|
||
|
|
||
|
enum riscv_csr {
|
||
|
/* user-level CSR */
|
||
|
// User Trap Setup
|
||
|
ustatus = 0x000,
|
||
|
uie = 0x004,
|
||
|
utvec = 0x005,
|
||
|
// User Trap Handling
|
||
|
uscratch = 0x040,
|
||
|
uepc = 0x041,
|
||
|
ucause = 0x042,
|
||
|
utval = 0x043,
|
||
|
uip = 0x044,
|
||
|
// User Floating-Point CSRs
|
||
|
fflags = 0x001,
|
||
|
frm = 0x002,
|
||
|
fcsr = 0x003,
|
||
|
// User Counter/Timers
|
||
|
cycle = 0xC00,
|
||
|
time = 0xC01,
|
||
|
instret = 0xC02,
|
||
|
hpmcounter3 = 0xC03,
|
||
|
hpmcounter4 = 0xC04,
|
||
|
/*...*/
|
||
|
hpmcounter31 = 0xC1F,
|
||
|
cycleh = 0xC80,
|
||
|
timeh = 0xC81,
|
||
|
instreth = 0xC82,
|
||
|
hpmcounter3h = 0xC83,
|
||
|
hpmcounter4h = 0xC84,
|
||
|
/*...*/
|
||
|
hpmcounter31h = 0xC9F,
|
||
|
/* supervisor-level CSR */
|
||
|
// Supervisor Trap Setup
|
||
|
sstatus = 0x100,
|
||
|
sedeleg = 0x102,
|
||
|
sideleg = 0x103,
|
||
|
sie = 0x104,
|
||
|
stvec = 0x105,
|
||
|
scounteren = 0x106,
|
||
|
// Supervisor Trap Handling
|
||
|
sscratch = 0x140,
|
||
|
sepc = 0x141,
|
||
|
scause = 0x142,
|
||
|
stval = 0x143,
|
||
|
sip = 0x144,
|
||
|
// Supervisor Protection and Translation
|
||
|
satp = 0x180,
|
||
|
/* machine-level CSR */
|
||
|
// Machine Information Registers
|
||
|
mvendorid = 0xF11,
|
||
|
marchid = 0xF12,
|
||
|
mimpid = 0xF13,
|
||
|
mhartid = 0xF14,
|
||
|
// Machine Trap Setup
|
||
|
mstatus = 0x300,
|
||
|
misa = 0x301,
|
||
|
medeleg = 0x302,
|
||
|
mideleg = 0x303,
|
||
|
mie = 0x304,
|
||
|
mtvec = 0x305,
|
||
|
mcounteren = 0x306,
|
||
|
// Machine Trap Handling
|
||
|
mscratch = 0x340,
|
||
|
mepc = 0x341,
|
||
|
mcause = 0x342,
|
||
|
mtval = 0x343,
|
||
|
mip = 0x344,
|
||
|
// Physical Memory Protection
|
||
|
pmpcfg0 = 0x3A0,
|
||
|
pmpcfg1 = 0x3A1,
|
||
|
pmpcfg2 = 0x3A2,
|
||
|
pmpcfg3 = 0x3A3,
|
||
|
pmpaddr0 = 0x3B0,
|
||
|
pmpaddr1 = 0x3B1,
|
||
|
pmpaddr2 = 0x3B2,
|
||
|
pmpaddr3 = 0x3B3,
|
||
|
pmpaddr4 = 0x3B4,
|
||
|
pmpaddr5 = 0x3B5,
|
||
|
pmpaddr6 = 0x3B6,
|
||
|
pmpaddr7 = 0x3B7,
|
||
|
pmpaddr8 = 0x3B8,
|
||
|
pmpaddr9 = 0x3B9,
|
||
|
pmpaddr10 = 0x3BA,
|
||
|
pmpaddr11 = 0x3BB,
|
||
|
pmpaddr12 = 0x3BC,
|
||
|
pmpaddr13 = 0x3BD,
|
||
|
pmpaddr14 = 0x3BE,
|
||
|
pmpaddr15 = 0x3BF,
|
||
|
// Machine Counter/Timers
|
||
|
mcycle = 0xB00,
|
||
|
minstret = 0xB02,
|
||
|
mhpmcounter3 = 0xB03,
|
||
|
mhpmcounter4 = 0xB04,
|
||
|
/*...*/
|
||
|
mhpmcounter31 = 0xB1F,
|
||
|
mcycleh = 0xB80,
|
||
|
minstreth = 0xB82,
|
||
|
mhpmcounter3h = 0xB83,
|
||
|
mhpmcounter4h = 0xB84,
|
||
|
/*...*/
|
||
|
mhpmcounter31h = 0xB9F,
|
||
|
// Machine Counter Setup
|
||
|
mhpmevent3 = 0x323,
|
||
|
mhpmevent4 = 0x324,
|
||
|
/*...*/
|
||
|
mhpmevent31 = 0x33F,
|
||
|
// Debug/Trace Registers (shared with Debug Mode)
|
||
|
tselect = 0x7A0,
|
||
|
tdata1 = 0x7A1,
|
||
|
tdata2 = 0x7A2,
|
||
|
tdata3 = 0x7A3,
|
||
|
// Debug Mode Registers
|
||
|
dcsr = 0x7B0,
|
||
|
dpc = 0x7B1,
|
||
|
dscratch = 0x7B2
|
||
|
};
|
||
|
|
||
|
|
||
|
enum {
|
||
|
PGSHIFT = 12,
|
||
|
PTE_PPN_SHIFT = 10,
|
||
|
// page table entry (PTE) fields
|
||
|
PTE_V = 0x001, // Valid
|
||
|
PTE_R = 0x002, // Read
|
||
|
PTE_W = 0x004, // Write
|
||
|
PTE_X = 0x008, // Execute
|
||
|
PTE_U = 0x010, // User
|
||
|
PTE_G = 0x020, // Global
|
||
|
PTE_A = 0x040, // Accessed
|
||
|
PTE_D = 0x080, // Dirty
|
||
|
PTE_SOFT = 0x300 // Reserved for Software
|
||
|
};
|
||
|
|
||
|
template <typename T> inline bool PTE_TABLE(T PTE) { return (((PTE) & (PTE_V | PTE_R | PTE_W | PTE_X)) == PTE_V); }
|
||
|
|
||
|
enum { PRIV_U = 0, PRIV_S = 1, PRIV_M = 3 };
|
||
|
|
||
|
enum {
|
||
|
ISA_A = 1,
|
||
|
ISA_B = 1 << 1,
|
||
|
ISA_C = 1 << 2,
|
||
|
ISA_D = 1 << 3,
|
||
|
ISA_E = 1 << 4,
|
||
|
ISA_F = 1 << 5,
|
||
|
ISA_G = 1 << 6,
|
||
|
ISA_I = 1 << 8,
|
||
|
ISA_M = 1 << 12,
|
||
|
ISA_N = 1 << 13,
|
||
|
ISA_Q = 1 << 16,
|
||
|
ISA_S = 1 << 18,
|
||
|
ISA_U = 1 << 20
|
||
|
};
|
||
|
|
||
|
struct vm_info {
|
||
|
int levels;
|
||
|
int idxbits;
|
||
|
int ptesize;
|
||
|
uint64_t ptbase;
|
||
|
bool is_active() { return levels; }
|
||
|
};
|
||
|
|
||
|
class trap_load_access_fault : public trap_access {
|
||
|
public:
|
||
|
trap_load_access_fault(uint64_t badaddr)
|
||
|
: trap_access(5 << 16, badaddr) {}
|
||
|
};
|
||
|
class illegal_instruction_fault : public trap_access {
|
||
|
public:
|
||
|
illegal_instruction_fault(uint64_t badaddr)
|
||
|
: trap_access(2 << 16, badaddr) {}
|
||
|
};
|
||
|
class trap_instruction_page_fault : public trap_access {
|
||
|
public:
|
||
|
trap_instruction_page_fault(uint64_t badaddr)
|
||
|
: trap_access(12 << 16, badaddr) {}
|
||
|
};
|
||
|
class trap_load_page_fault : public trap_access {
|
||
|
public:
|
||
|
trap_load_page_fault(uint64_t badaddr)
|
||
|
: trap_access(13 << 16, badaddr) {}
|
||
|
};
|
||
|
class trap_store_page_fault : public trap_access {
|
||
|
public:
|
||
|
trap_store_page_fault(uint64_t badaddr)
|
||
|
: trap_access(15 << 16, badaddr) {}
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|