From: Phanikiran Harithas Date: Sun, 10 Jun 2018 08:19:58 +0000 (+0530) Subject: power: Added support for CR, XER, FPSR, MSR, PTCR Registers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=88b78aceeb23e4a1494915b2143467eff5017ed8;p=gem5.git power: Added support for CR, XER, FPSR, MSR, PTCR Registers Define Condition Register (CR), XER, FPSR, MSR, PTCR Registers as miscelleneous registers. In particular, annotate the bits of MSR and PTCR for future use. Signed-off-by: Phanikiran Harithas Signed-off-by: Venkatnarayan Kulkarni Change-Id: I6f1490b1490e16f9095075f5cd0056894fbf6608 --- diff --git a/src/arch/power/miscregs.hh b/src/arch/power/miscregs.hh index 444f88e40..201fa2b37 100644 --- a/src/arch/power/miscregs.hh +++ b/src/arch/power/miscregs.hh @@ -37,12 +37,23 @@ namespace PowerISA { enum MiscRegIndex { - NUM_MISCREGS = 0 + MISCREG_CR, + MISCREG_XER, + MISCREG_FPSR, + MISCREG_MSR, + MISCREG_PTCR, + NUM_MISCREGS }; const char * const miscRegName[NUM_MISCREGS] = { }; +static inline bool +isValidMiscReg(int index) +{ + return (index >= MISCREG_CR && index < NUM_MISCREGS); +} + BitUnion32(Cr) SubBitUnion(cr0, 31, 28) Bitfield<31> lt; @@ -97,6 +108,32 @@ BitUnion32(Fpscr) Bitfield<2,1> rn; EndBitUnion(Fpscr) +BitUnion64(Msr) + Bitfield<63> sf; + Bitfield<60> hv; + Bitfield<32> tm; + Bitfield<34,33> ts; + Bitfield<25> vec; + Bitfield<23> vsx; + Bitfield<15> ee; + Bitfield<14> pr; + Bitfield<13> fp; + Bitfield<12> me; + Bitfield<11> fe0; + Bitfield<10,9> te; + Bitfield<8> fe1; + Bitfield<5> ir; + Bitfield<4> dr; + Bitfield<2> pmm; + Bitfield<1> ri; + Bitfield<0> le; +EndBitUnion(Msr) + +BitUnion64(Ptcr) + Bitfield<59,12> patb; + Bitfield<4,0> pats; +EndBitUnion(Ptcr) + } // namespace PowerISA #endif // __ARCH_POWER_MISCREGS_HH__ diff --git a/src/arch/power/system.cc b/src/arch/power/system.cc index 715c3c3e6..c1a3bee3e 100644 --- a/src/arch/power/system.cc +++ b/src/arch/power/system.cc @@ -68,4 +68,8 @@ PowerSystem::initState() System::initState(); ThreadContext *tc = threadContexts[0]; tc->pcState(tc->getSystemPtr()->kernelEntry); + //Sixty Four, little endian,Hypervisor bits are enabled. + // IR and DR bits are disabled. + Msr msr = 0x9000000000000001; + tc->setIntReg(INTREG_MSR , msr); }