40 #include <linux/kvm.h> 42 #include "debug/KvmContext.hh" 43 #include "params/ArmV8KvmCPU.hh" 48 static_assert(
NUM_XREGS == 31,
"Unexpected number of aarch64 int. regs.");
53 static_assert(
NUM_QREGS == 32,
"Unexpected number of aarch64 vector regs.");
55 #define EXTRACT_FIELD(v, name) \ 56 (((v) & name ## _MASK) >> name ## _SHIFT) 58 #define CORE_REG(name, size) \ 59 (KVM_REG_ARM64 | KVM_REG_ARM_CORE | \ 60 KVM_REG_SIZE_ ## size | \ 61 KVM_REG_ARM_CORE_REG(name)) 63 #define INT_REG(name) CORE_REG(name, U64) 64 #define SIMD_REG(name) CORE_REG(name, U128) 66 #define SYS_MPIDR_EL1 ARM64_SYS_REG(0b11, 0b000, 0b0000, 0b0000, 0b101) 96 #define FP_REGS_PER_VFP_REG 4 141 DPRINTF(KvmContext,
" %s := 0x%x\n", ri.name, value);
149 inform(
"Integer registers:\n");
169 const uint64_t arch(
reg & KVM_REG_ARCH_MASK);
170 if (arch != KVM_REG_ARM64) {
175 const uint64_t
type(
reg & KVM_REG_ARM_COPROC_MASK);
177 case KVM_REG_ARM_CORE:
181 case KVM_REG_ARM64_SYSREG: {
190 inform(
" %s (op0: %i, op1: %i, crn: %i, crm: %i, op2: %i): %s",
195 case KVM_REG_ARM_DEMUX: {
198 if (
id == KVM_REG_ARM_DEMUX_ID_CCSIDR) {
199 inform(
" CSSIDR[%i]: %s\n", val,
202 inform(
" UNKNOWN[%i:%i]: %s\n",
id, val,
216 DPRINTF(KvmContext,
"In updateKvmState():\n");
228 DPRINTF(KvmContext,
" %s := 0x%x\n",
"PSTATE", cpsr);
233 DPRINTF(KvmContext,
" %s := 0x%x\n", ri.name, value);
239 DPRINTF(KvmContext,
" X%i := 0x%x\n",
i, value);
245 DPRINTF(KvmContext,
" %s := 0x%x\n", ri.name, value);
271 DPRINTF(KvmContext,
" %s := 0x%x\n", ri.name, value);
282 DPRINTF(KvmContext,
"In updateThreadContext():\n");
286 DPRINTF(KvmContext,
" %s := 0x%x\n",
"PSTATE", cpsr);
299 DPRINTF(KvmContext,
" %s := 0x%x\n", ri.name, value);
305 DPRINTF(KvmContext,
" X%i := 0x%x\n",
i, value);
317 DPRINTF(KvmContext,
" %s := 0x%x\n", ri.name, value);
332 DPRINTF(KvmContext,
" %s := 0x%x\n", ri.name, value);
350 pc.nextThumb(cpsr.t);
351 DPRINTF(KvmContext,
" PC := 0x%x (t: %i, a64: %i)\n",
352 pc.instAddr(), pc.thumb(), pc.aarch64());
364 const uint64_t arch(
reg & KVM_REG_ARCH_MASK);
365 if (arch != KVM_REG_ARM64)
368 const uint64_t
type(
reg & KVM_REG_ARM_COPROC_MASK);
369 if (type != KVM_REG_ARM64_SYSREG)
379 const bool writeable(
384 const bool implemented(
389 if (implemented && writeable)
398 ArmV8KvmCPUParams::create()
static constexpr unsigned NUM_XREGS
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
EventQueue * deviceEventQueue()
Get a pointer to the event queue owning devices.
bitset< NUM_MISCREG_INFOS > miscRegInfo[NUM_MISCREGS]
virtual TheISA::PCState pcState() const =0
virtual RegVal readIntReg(RegIndex reg_idx) const =0
const IntRegMap IntReg64Map
virtual void setMiscRegNoEffect(RegIndex misc_reg, RegVal val)=0
ThreadContext * tc
ThreadContext object, provides an interface for external objects to modify this thread's state...
const char *const miscRegName[]
virtual RegVal readCCReg(RegIndex reg_idx) const =0
void updateKvmState() override
Update the KVM state from the current thread context.
void updateThreadContext() override
Update the current thread context with the KVM state.
void startup() override
startup() is the final initialization call before simulation.
virtual const VecRegContainer & readVecReg(const RegId ®) const =0
This is an implementation of a KVM-based ARMv8-compatible CPU.
const std::vector< ArmV8KvmCPU::MiscRegInfo > & getSysRegMap() const
Get a map between system registers in kvm and gem5 registers.
constexpr uint64_t kvmXReg(const int num)
static const std::vector< ArmV8KvmCPU::MiscRegInfo > miscRegIdMap
Mapping between gem5 ID misc registers and registers in kvm.
Temporarily migrate execution to a different event queue.
const RegIndexVector & getRegList() const
Get a list of registers supported by getOneReg() and setOneReg().
MiscRegIndex decodeAArch64SysReg(unsigned op0, unsigned op1, unsigned crn, unsigned crm, unsigned op2)
#define FP_REGS_PER_VFP_REG
void setOneReg(uint64_t id, const void *addr)
Get/Set single register using the KVM_(SET|GET)_ONE_REG API.
void startup() override
startup() is the final initialization call before simulation.
std::string getAndFormatOneReg(uint64_t id) const
Get and format one register for printout.
const int NumVecV8ArchRegs
static const std::set< MiscRegIndex > deviceRegSet
Device registers (needing "effectful" MiscReg writes)
static constexpr unsigned NUM_QREGS
virtual Addr instAddr() const =0
virtual void setCCReg(RegIndex reg_idx, RegVal val)=0
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
VecRegT< VecElem, NumElems, true > as() const
View interposers.
ArmV8KvmCPU(ArmV8KvmCPUParams *params)
virtual VecRegContainer & getWritableVecReg(const RegId ®)=0
std::vector< ArmV8KvmCPU::MiscRegInfo > sysRegMap
Cached mapping between system registers in kvm and misc regs in gem5.
void dump() const override
Dump the internal state to the terminal.
void getOneReg(uint64_t id, void *addr) const
constexpr uint64_t kvmFPReg(const int num)
Register ID: describe an architectural register with its class and index.
#define EXTRACT_FIELD(v, name)
static const std::vector< ArmV8KvmCPU::IntRegInfo > intRegMap
Mapping between gem5 integer registers and integer registers in kvm.
bool inAArch64(ThreadContext *tc)
static const std::vector< ArmV8KvmCPU::MiscRegInfo > miscRegMap
Mapping between gem5 misc registers and registers in kvm.
virtual void setIntRegFlat(RegIndex idx, RegVal val)=0
GenericISA::DelaySlotPCState< MachInst > PCState
virtual RegVal readMiscReg(RegIndex misc_reg)=0
#define CORE_REG(name, size)
uint64_t getOneRegU64(uint64_t id) const
HsailDataType< SRegOperandType, uint32_t, Enums::M_U32, VT_32 > U32