2006-02-22 04:02:05 +01:00
|
|
|
/*
|
2007-11-17 03:32:22 +01:00
|
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
2007-11-15 20:21:01 +01:00
|
|
|
* Copyright (c) 2007 MIPS Technologies, Inc.
|
|
|
|
* All rights reserved.
|
2006-02-22 04:02:05 +01:00
|
|
|
*
|
2007-11-15 20:21:01 +01:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* 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;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
2006-02-22 04:02:05 +01:00
|
|
|
*
|
2007-11-15 20:21:01 +01:00
|
|
|
* 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
|
|
|
|
* OWNER 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.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
2007-11-15 20:21:01 +01:00
|
|
|
* Authors: Gabe Black
|
|
|
|
* Korey Sewell
|
2007-11-13 22:58:16 +01:00
|
|
|
* Jaidev Patwardhan
|
2006-02-22 04:02:05 +01:00
|
|
|
*/
|
|
|
|
|
2006-03-08 08:05:38 +01:00
|
|
|
#include "arch/mips/faults.hh"
|
2007-11-13 22:58:16 +01:00
|
|
|
#include "arch/mips/pra_constants.hh"
|
2010-09-10 23:58:04 +02:00
|
|
|
#include "base/trace.hh"
|
|
|
|
#include "cpu/base.hh"
|
|
|
|
#include "cpu/thread_context.hh"
|
2011-04-15 19:44:32 +02:00
|
|
|
#include "debug/MipsPRA.hh"
|
2010-09-10 23:58:04 +02:00
|
|
|
|
2006-06-26 22:49:05 +02:00
|
|
|
#if !FULL_SYSTEM
|
|
|
|
#include "mem/page_table.hh"
|
2010-09-10 23:58:04 +02:00
|
|
|
#include "sim/process.hh"
|
2006-06-26 22:49:05 +02:00
|
|
|
#endif
|
2006-03-12 11:57:34 +01:00
|
|
|
|
|
|
|
namespace MipsISA
|
|
|
|
{
|
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
typedef MipsFaultBase::FaultVals FaultVals;
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<MachineCheckFault>::vals =
|
|
|
|
{ "Machine Check", 0x0401 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<AlignmentFault>::vals =
|
|
|
|
{ "Alignment", 0x0301 };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<ResetFault>::vals =
|
2007-11-13 22:58:16 +01:00
|
|
|
#if FULL_SYSTEM
|
2011-09-19 15:17:19 +02:00
|
|
|
{ "Reset Fault", 0xBFC00000};
|
2007-11-13 22:58:16 +01:00
|
|
|
#else
|
2011-09-19 15:17:19 +02:00
|
|
|
{ "Reset Fault", 0x001};
|
2007-11-13 22:58:16 +01:00
|
|
|
#endif
|
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<AddressErrorFault>::vals =
|
|
|
|
{ "Address Error", 0x0180 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<StoreAddressErrorFault>::vals =
|
|
|
|
{ "Store Address Error", 0x0180 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<SystemCallFault>::vals =
|
|
|
|
{ "Syscall", 0x0180 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<CoprocessorUnusableFault>::vals =
|
|
|
|
{ "Coprocessor Unusable Fault", 0x180 };
|
2007-06-23 01:03:42 +02:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ReservedInstructionFault>::vals =
|
|
|
|
{ "Reserved Instruction Fault", 0x0180 };
|
2007-06-23 01:03:42 +02:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ThreadFault>::vals =
|
|
|
|
{ "Thread Fault", 0x00F1 };
|
2007-06-23 01:03:42 +02:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ArithmeticFault>::vals =
|
|
|
|
{ "Arithmetic Overflow Exception", 0x180 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<UnimplementedOpcodeFault>::vals =
|
|
|
|
{ "opdec", 0x0481 };
|
2007-06-23 01:03:42 +02:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<InterruptFault>::vals =
|
|
|
|
{ "interrupt", 0x0180 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<TrapFault>::vals =
|
|
|
|
{ "Trap", 0x0180 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<BreakpointFault>::vals =
|
|
|
|
{ "Breakpoint", 0x0180 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ItbInvalidFault>::vals =
|
|
|
|
{ "Invalid TLB Entry Exception (I-Fetch/LW)", 0x0180 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ItbPageFault>::vals =
|
|
|
|
{ "itbmiss", 0x0181 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ItbMissFault>::vals =
|
|
|
|
{ "itbmiss", 0x0181 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ItbAcvFault>::vals =
|
|
|
|
{ "iaccvio", 0x0081 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ItbRefillFault>::vals =
|
|
|
|
{ "TLB Refill Exception (I-Fetch/LW)", 0x0180 };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<NDtbMissFault>::vals =
|
|
|
|
{ "dtb_miss_single", 0x0201 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<PDtbMissFault>::vals =
|
|
|
|
{ "dtb_miss_double", 0x0281 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<DtbPageFault>::vals =
|
|
|
|
{ "dfault", 0x0381 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<DtbAcvFault>::vals =
|
|
|
|
{ "dfault", 0x0381 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<DtbInvalidFault>::vals =
|
|
|
|
{ "Invalid TLB Entry Exception (Store)", 0x0180 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<DtbRefillFault>::vals =
|
|
|
|
{ "TLB Refill Exception (Store)", 0x0180 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<TLBModifiedFault>::vals =
|
|
|
|
{ "TLB Modified Exception", 0x0180 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<FloatEnableFault>::vals =
|
|
|
|
{ "float_enable_fault", 0x0581 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<IntegerOverflowFault>::vals =
|
|
|
|
{ "Integer Overflow Fault", 0x0501 };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<DspStateDisabledFault>::vals =
|
|
|
|
{ "DSP Disabled Fault", 0x001a };
|
2007-06-23 01:03:42 +02:00
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
#if FULL_SYSTEM
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2011-09-19 15:17:19 +02:00
|
|
|
MipsFaultBase::setHandlerPC(Addr HandlerBase, ThreadContext *tc)
|
2007-06-23 01:03:42 +02:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
tc->setPC(HandlerBase);
|
|
|
|
tc->setNextPC(HandlerBase + sizeof(MachInst));
|
|
|
|
tc->setNextNPC(HandlerBase + 2 * sizeof(MachInst));
|
2007-06-23 01:03:42 +02:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2011-09-19 15:17:19 +02:00
|
|
|
MipsFaultBase::setExceptionState(ThreadContext *tc, uint8_t excCode)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
// modify SRS Ctl - Save CSS, put ESS into CSS
|
2009-07-22 08:38:26 +02:00
|
|
|
StatusReg status = tc->readMiscReg(MISCREG_STATUS);
|
2009-07-21 10:09:05 +02:00
|
|
|
if (status.exl != 1 && status.bev != 1) {
|
2009-07-21 10:08:53 +02:00
|
|
|
// SRS Ctl is modified only if Status_EXL and Status_BEV are not set
|
2009-07-22 08:38:26 +02:00
|
|
|
SRSCtlReg srsCtl = tc->readMiscReg(MISCREG_SRSCTL);
|
2009-07-21 10:09:05 +02:00
|
|
|
srsCtl.pss = srsCtl.css;
|
|
|
|
srsCtl.css = srsCtl.ess;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_SRSCTL, srsCtl);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
// set EXL bit (don't care if it is already set!)
|
2009-07-21 10:09:05 +02:00
|
|
|
status.exl = 1;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_STATUS, status);
|
2009-07-21 10:08:53 +02:00
|
|
|
|
|
|
|
// write EPC
|
|
|
|
// CHECK ME or FIXME or FIX ME or POSSIBLE HACK
|
|
|
|
// Check to see if the exception occurred in the branch delay slot
|
|
|
|
DPRINTF(MipsPRA, "PC: %x, NextPC: %x, NNPC: %x\n",
|
|
|
|
tc->readPC(), tc->readNextPC(), tc->readNextNPC());
|
2009-07-21 10:09:05 +02:00
|
|
|
int bd = 0;
|
2009-07-21 10:08:53 +02:00
|
|
|
if (tc->readPC() + sizeof(MachInst) != tc->readNextPC()) {
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_EPC, tc->readPC() - sizeof(MachInst));
|
2009-07-21 10:08:53 +02:00
|
|
|
// In the branch delay slot? set CAUSE_31
|
2009-07-21 10:09:05 +02:00
|
|
|
bd = 1;
|
2009-07-21 10:08:53 +02:00
|
|
|
} else {
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_EPC, tc->readPC());
|
2009-07-21 10:08:53 +02:00
|
|
|
// In the branch delay slot? reset CAUSE_31
|
2009-07-21 10:09:05 +02:00
|
|
|
bd = 0;
|
2009-07-21 10:08:53 +02:00
|
|
|
}
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
// Set Cause_EXCCODE field
|
2009-07-22 08:38:26 +02:00
|
|
|
CauseReg cause = tc->readMiscReg(MISCREG_CAUSE);
|
2009-07-21 10:09:05 +02:00
|
|
|
cause.excCode = excCode;
|
|
|
|
cause.bd = bd;
|
|
|
|
cause.ce = 0;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_CAUSE, cause);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
ArithmeticFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0xC);
|
|
|
|
|
|
|
|
// Set new PC
|
|
|
|
Addr HandlerBase;
|
2009-07-22 08:38:26 +02:00
|
|
|
StatusReg status = tc->readMiscReg(MISCREG_STATUS);
|
2009-07-21 10:08:53 +02:00
|
|
|
// Here, the handler is dependent on BEV, which is not modified by
|
|
|
|
// setExceptionState()
|
2009-07-21 10:09:05 +02:00
|
|
|
if (!status.bev) {
|
2009-07-21 10:08:53 +02:00
|
|
|
// See MIPS ARM Vol 3, Revision 2, Page 38
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
} else {
|
|
|
|
HandlerBase = 0xBFC00200;
|
|
|
|
}
|
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
StoreAddressErrorFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0x5);
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
// Set new PC
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
TrapFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0xD);
|
|
|
|
|
|
|
|
// Set new PC
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
BreakpointFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
setExceptionState(tc, 0x9);
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
// Set new PC
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
DtbInvalidFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-06-23 01:03:42 +02:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
|
|
|
|
EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
|
2009-07-21 10:09:05 +02:00
|
|
|
entryHi.asid = entryHiAsid;
|
|
|
|
entryHi.vpn2 = entryHiVPN2;
|
|
|
|
entryHi.vpn2x = entryHiVPN2X;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
|
2009-07-21 10:09:05 +02:00
|
|
|
|
2009-07-22 08:38:26 +02:00
|
|
|
ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
|
2009-07-21 10:09:05 +02:00
|
|
|
context.badVPN2 = contextBadVPN2;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
|
2009-07-21 10:08:53 +02:00
|
|
|
setExceptionState(tc, 0x3);
|
|
|
|
|
|
|
|
|
|
|
|
// Set new PC
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:09:05 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
AddressErrorFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0x4);
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
|
2009-07-21 10:08:53 +02:00
|
|
|
|
|
|
|
// Set new PC
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
ItbInvalidFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0x2);
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
|
|
|
|
EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
|
2009-07-21 10:09:05 +02:00
|
|
|
entryHi.asid = entryHiAsid;
|
|
|
|
entryHi.vpn2 = entryHiVPN2;
|
|
|
|
entryHi.vpn2x = entryHiVPN2X;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
|
2009-07-21 10:09:05 +02:00
|
|
|
|
2009-07-22 08:38:26 +02:00
|
|
|
ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
|
2009-07-21 10:09:05 +02:00
|
|
|
context.badVPN2 = contextBadVPN2;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
|
2009-07-21 10:08:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Set new PC
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase,tc);
|
2009-07-21 10:09:05 +02:00
|
|
|
DPRINTF(MipsPRA, "Exception Handler At: %x , EPC set to %x\n",
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase, tc->readMiscReg(MISCREG_EPC));
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
ItbRefillFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-22 08:38:26 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered (%x).\n", name(), MISCREG_BADVADDR);
|
2009-07-21 10:08:53 +02:00
|
|
|
Addr HandlerBase;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
|
|
|
|
EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
|
2009-07-21 10:09:05 +02:00
|
|
|
entryHi.asid = entryHiAsid;
|
|
|
|
entryHi.vpn2 = entryHiVPN2;
|
|
|
|
entryHi.vpn2x = entryHiVPN2X;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
|
|
|
|
ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
|
2009-07-21 10:09:05 +02:00
|
|
|
context.badVPN2 = contextBadVPN2;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
|
2009-07-21 10:09:05 +02:00
|
|
|
|
2009-07-22 08:38:26 +02:00
|
|
|
StatusReg status = tc->readMiscReg(MISCREG_STATUS);
|
2009-07-21 10:08:53 +02:00
|
|
|
// Since handler depends on EXL bit, must check EXL bit before setting it!!
|
|
|
|
// See MIPS ARM Vol 3, Revision 2, Page 38
|
2009-07-21 10:09:05 +02:00
|
|
|
if (status.exl == 1) {
|
2009-07-21 10:08:53 +02:00
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
} else {
|
|
|
|
// Offset 0x000
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
setExceptionState(tc, 0x2);
|
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
DtbRefillFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
// Set new PC
|
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
Addr HandlerBase;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
|
|
|
|
EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
|
2009-07-21 10:09:05 +02:00
|
|
|
entryHi.asid = entryHiAsid;
|
|
|
|
entryHi.vpn2 = entryHiVPN2;
|
|
|
|
entryHi.vpn2x = entryHiVPN2X;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
|
2009-07-21 10:09:05 +02:00
|
|
|
|
2009-07-22 08:38:26 +02:00
|
|
|
ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
|
2009-07-21 10:09:05 +02:00
|
|
|
context.badVPN2 = contextBadVPN2;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
|
2009-07-21 10:09:05 +02:00
|
|
|
|
2009-07-22 08:38:26 +02:00
|
|
|
StatusReg status = tc->readMiscReg(MISCREG_STATUS);
|
2009-07-21 10:08:53 +02:00
|
|
|
// Since handler depends on EXL bit, must check EXL bit before setting it!!
|
|
|
|
// See MIPS ARM Vol 3, Revision 2, Page 38
|
2009-07-21 10:09:05 +02:00
|
|
|
if (status.exl) {
|
2009-07-21 10:08:53 +02:00
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
} else {
|
|
|
|
// Offset 0x000
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
setExceptionState(tc, 0x3);
|
|
|
|
|
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
TLBModifiedFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
|
|
|
|
EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
|
2009-07-21 10:09:05 +02:00
|
|
|
entryHi.asid = entryHiAsid;
|
|
|
|
entryHi.vpn2 = entryHiVPN2;
|
|
|
|
entryHi.vpn2x = entryHiVPN2X;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
|
2009-07-21 10:09:05 +02:00
|
|
|
|
2009-07-22 08:38:26 +02:00
|
|
|
ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
|
2009-07-21 10:09:05 +02:00
|
|
|
context.badVPN2 = contextBadVPN2;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
|
2007-11-13 22:58:16 +01:00
|
|
|
|
|
|
|
// Set new PC
|
2009-07-21 10:08:53 +02:00
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setExceptionState(tc, 0x1);
|
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
SystemCallFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0x8);
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
// Set new PC
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
InterruptFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
|
|
|
#if FULL_SYSTEM
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0x0A);
|
|
|
|
Addr HandlerBase;
|
|
|
|
|
2009-07-22 08:38:26 +02:00
|
|
|
CauseReg cause = tc->readMiscRegNoEffect(MISCREG_CAUSE);
|
2009-07-21 10:09:05 +02:00
|
|
|
if (cause.iv) {
|
2009-07-21 10:08:53 +02:00
|
|
|
// Offset 200 for release 2
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = 0x20 + vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
} else {
|
|
|
|
//Ofset at 180 for release 1
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
}
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // FULL_SYSTEM
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
ResetFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2007-11-14 12:24:47 +01:00
|
|
|
#if FULL_SYSTEM
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
/* All reset activity must be invoked from here */
|
|
|
|
tc->setPC(vect());
|
|
|
|
tc->setNextPC(vect() + sizeof(MachInst));
|
|
|
|
tc->setNextNPC(vect() + sizeof(MachInst) + sizeof(MachInst));
|
2009-07-21 10:09:05 +02:00
|
|
|
DPRINTF(MipsPRA, "ResetFault::invoke : PC set to %x", tc->readPC());
|
2007-11-14 12:24:47 +01:00
|
|
|
#endif
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
// Set Coprocessor 1 (Floating Point) To Usable
|
2009-07-22 08:38:26 +02:00
|
|
|
StatusReg status = tc->readMiscRegNoEffect(MISCREG_STATUS);
|
2009-07-21 10:09:05 +02:00
|
|
|
status.cu.cu1 = 1;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscReg(MISCREG_STATUS, status);
|
2007-06-23 01:03:42 +02:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
ReservedInstructionFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-06-23 01:03:42 +02:00
|
|
|
{
|
2007-11-13 22:58:16 +01:00
|
|
|
#if FULL_SYSTEM
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0x0A);
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
2007-11-13 22:58:16 +01:00
|
|
|
#else
|
|
|
|
panic("%s encountered.\n", name());
|
|
|
|
#endif
|
2007-06-23 01:03:42 +02:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
ThreadFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-06-23 01:03:42 +02:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
panic("%s encountered.\n", name());
|
2007-06-23 01:03:42 +02:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
DspStateDisabledFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-06-23 01:03:42 +02:00
|
|
|
{
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
panic("%s encountered.\n", name());
|
2007-11-13 22:58:16 +01:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2010-09-14 04:26:03 +02:00
|
|
|
CoprocessorUnusableFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
|
|
|
#if FULL_SYSTEM
|
2009-07-21 10:08:53 +02:00
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
setExceptionState(tc, 0xb);
|
|
|
|
// The ID of the coprocessor causing the exception is stored in
|
|
|
|
// CoprocessorUnusableFault::coProcID
|
2009-07-22 08:38:26 +02:00
|
|
|
CauseReg cause = tc->readMiscReg(MISCREG_CAUSE);
|
2009-07-21 10:09:05 +02:00
|
|
|
cause.ce = coProcID;
|
2009-07-22 08:38:26 +02:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_CAUSE, cause);
|
2009-07-21 10:08:53 +02:00
|
|
|
|
|
|
|
Addr HandlerBase;
|
|
|
|
// Offset 0x180 - General Exception Vector
|
2009-07-22 08:38:26 +02:00
|
|
|
HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
|
2009-07-21 10:08:53 +02:00
|
|
|
setHandlerPC(HandlerBase, tc);
|
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
#else
|
2007-11-14 12:24:47 +01:00
|
|
|
warn("%s (CP%d) encountered.\n", name(), coProcID);
|
2007-11-13 22:58:16 +01:00
|
|
|
#endif
|
2007-06-23 01:03:42 +02:00
|
|
|
}
|
|
|
|
|
2006-03-12 11:57:34 +01:00
|
|
|
} // namespace MipsISA
|
2006-02-22 04:02:05 +01:00
|
|
|
|