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
|
|
|
|
{
|
|
|
|
|
2006-03-17 00:39:54 +01:00
|
|
|
FaultName MachineCheckFault::_name = "Machine Check";
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultVect MachineCheckFault::_vect = 0x0401;
|
|
|
|
FaultStat MachineCheckFault::_count;
|
|
|
|
|
2006-03-17 00:39:54 +01:00
|
|
|
FaultName AlignmentFault::_name = "Alignment";
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultVect AlignmentFault::_vect = 0x0301;
|
|
|
|
FaultStat AlignmentFault::_count;
|
|
|
|
|
2007-11-14 12:24:47 +01:00
|
|
|
FaultName ResetFault::_name = "Reset Fault";
|
2007-11-13 22:58:16 +01:00
|
|
|
#if FULL_SYSTEM
|
|
|
|
FaultVect ResetFault::_vect = 0xBFC00000;
|
|
|
|
#else
|
|
|
|
FaultVect ResetFault::_vect = 0x001;
|
|
|
|
#endif
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultStat ResetFault::_count;
|
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName AddressErrorFault::_name = "Address Error";
|
|
|
|
FaultVect AddressErrorFault::_vect = 0x0180;
|
|
|
|
FaultStat AddressErrorFault::_count;
|
|
|
|
|
|
|
|
FaultName StoreAddressErrorFault::_name = "Store Address Error";
|
|
|
|
FaultVect StoreAddressErrorFault::_vect = 0x0180;
|
|
|
|
FaultStat StoreAddressErrorFault::_count;
|
|
|
|
|
|
|
|
|
|
|
|
FaultName SystemCallFault::_name = "Syscall";
|
|
|
|
FaultVect SystemCallFault::_vect = 0x0180;
|
|
|
|
FaultStat SystemCallFault::_count;
|
|
|
|
|
2007-11-14 12:24:47 +01:00
|
|
|
FaultName CoprocessorUnusableFault::_name = "Coprocessor Unusable Fault";
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultVect CoprocessorUnusableFault::_vect = 0x180;
|
2007-06-23 01:03:42 +02:00
|
|
|
FaultStat CoprocessorUnusableFault::_count;
|
|
|
|
|
2007-11-14 12:24:47 +01:00
|
|
|
FaultName ReservedInstructionFault::_name = "Reserved Instruction Fault";
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultVect ReservedInstructionFault::_vect = 0x0180;
|
2007-06-23 01:03:42 +02:00
|
|
|
FaultStat ReservedInstructionFault::_count;
|
|
|
|
|
2007-11-14 12:24:47 +01:00
|
|
|
FaultName ThreadFault::_name = "Thread Fault";
|
2007-06-23 01:03:42 +02:00
|
|
|
FaultVect ThreadFault::_vect = 0x00F1;
|
|
|
|
FaultStat ThreadFault::_count;
|
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName ArithmeticFault::_name = "Arithmetic Overflow Exception";
|
|
|
|
FaultVect ArithmeticFault::_vect = 0x180;
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultStat ArithmeticFault::_count;
|
|
|
|
|
2007-06-23 01:03:42 +02:00
|
|
|
FaultName UnimplementedOpcodeFault::_name = "opdec";
|
|
|
|
FaultVect UnimplementedOpcodeFault::_vect = 0x0481;
|
|
|
|
FaultStat UnimplementedOpcodeFault::_count;
|
|
|
|
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultName InterruptFault::_name = "interrupt";
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultVect InterruptFault::_vect = 0x0180;
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultStat InterruptFault::_count;
|
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName TrapFault::_name = "Trap";
|
|
|
|
FaultVect TrapFault::_vect = 0x0180;
|
|
|
|
FaultStat TrapFault::_count;
|
|
|
|
|
|
|
|
FaultName BreakpointFault::_name = "Breakpoint";
|
|
|
|
FaultVect BreakpointFault::_vect = 0x0180;
|
|
|
|
FaultStat BreakpointFault::_count;
|
|
|
|
|
|
|
|
FaultName ItbInvalidFault::_name = "Invalid TLB Entry Exception (I-Fetch/LW)";
|
|
|
|
FaultVect ItbInvalidFault::_vect = 0x0180;
|
|
|
|
FaultStat ItbInvalidFault::_count;
|
|
|
|
|
|
|
|
FaultName ItbPageFault::_name = "itbmiss";
|
|
|
|
FaultVect ItbPageFault::_vect = 0x0181;
|
|
|
|
FaultStat ItbPageFault::_count;
|
|
|
|
|
|
|
|
FaultName ItbMissFault::_name = "itbmiss";
|
|
|
|
FaultVect ItbMissFault::_vect = 0x0181;
|
|
|
|
FaultStat ItbMissFault::_count;
|
|
|
|
|
|
|
|
FaultName ItbAcvFault::_name = "iaccvio";
|
|
|
|
FaultVect ItbAcvFault::_vect = 0x0081;
|
|
|
|
FaultStat ItbAcvFault::_count;
|
|
|
|
|
|
|
|
FaultName ItbRefillFault::_name = "TLB Refill Exception (I-Fetch/LW)";
|
|
|
|
FaultVect ItbRefillFault::_vect = 0x0180;
|
|
|
|
FaultStat ItbRefillFault::_count;
|
|
|
|
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultName NDtbMissFault::_name = "dtb_miss_single";
|
|
|
|
FaultVect NDtbMissFault::_vect = 0x0201;
|
|
|
|
FaultStat NDtbMissFault::_count;
|
|
|
|
|
|
|
|
FaultName PDtbMissFault::_name = "dtb_miss_double";
|
|
|
|
FaultVect PDtbMissFault::_vect = 0x0281;
|
|
|
|
FaultStat PDtbMissFault::_count;
|
|
|
|
|
|
|
|
FaultName DtbPageFault::_name = "dfault";
|
|
|
|
FaultVect DtbPageFault::_vect = 0x0381;
|
|
|
|
FaultStat DtbPageFault::_count;
|
|
|
|
|
|
|
|
FaultName DtbAcvFault::_name = "dfault";
|
|
|
|
FaultVect DtbAcvFault::_vect = 0x0381;
|
|
|
|
FaultStat DtbAcvFault::_count;
|
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName DtbInvalidFault::_name = "Invalid TLB Entry Exception (Store)";
|
|
|
|
FaultVect DtbInvalidFault::_vect = 0x0180;
|
|
|
|
FaultStat DtbInvalidFault::_count;
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName DtbRefillFault::_name = "TLB Refill Exception (Store)";
|
|
|
|
FaultVect DtbRefillFault::_vect = 0x0180;
|
|
|
|
FaultStat DtbRefillFault::_count;
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName TLBModifiedFault::_name = "TLB Modified Exception";
|
|
|
|
FaultVect TLBModifiedFault::_vect = 0x0180;
|
|
|
|
FaultStat TLBModifiedFault::_count;
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName FloatEnableFault::_name = "float_enable_fault";
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultVect FloatEnableFault::_vect = 0x0581;
|
|
|
|
FaultStat FloatEnableFault::_count;
|
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName IntegerOverflowFault::_name = "Integer Overflow Fault";
|
2006-03-12 11:57:34 +01:00
|
|
|
FaultVect IntegerOverflowFault::_vect = 0x0501;
|
|
|
|
FaultStat IntegerOverflowFault::_count;
|
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
FaultName DspStateDisabledFault::_name = "DSP Disabled Fault";
|
2007-06-23 01:03:42 +02:00
|
|
|
FaultVect DspStateDisabledFault::_vect = 0x001a;
|
|
|
|
FaultStat DspStateDisabledFault::_count;
|
|
|
|
|
2007-11-13 22:58:16 +01:00
|
|
|
#if FULL_SYSTEM
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
|
|
|
MipsFault::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
|
2009-07-21 10:09:05 +02:00
|
|
|
MipsFault::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
|
|
|
|