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<SystemCallFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "Syscall", 0x180, ExcCodeSys };
|
2007-06-23 01:03:42 +02:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ReservedInstructionFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "Reserved Instruction Fault", 0x180, ExcCodeRI };
|
2007-06-23 01:03:42 +02:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<ThreadFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "Thread Fault", 0x180, ExcCodeDummy };
|
2007-06-23 01:03:42 +02:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<IntegerOverflowFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "Integer Overflow Exception", 0x180, ExcCodeOv };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<TrapFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "Trap", 0x180, ExcCodeTr };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:19 +02:00
|
|
|
template <> FaultVals MipsFault<BreakpointFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "Breakpoint", 0x180, ExcCodeBp };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<DspStateDisabledFault>::vals =
|
|
|
|
{ "DSP Disabled Fault", 0x180, ExcCodeDummy };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<MachineCheckFault>::vals =
|
|
|
|
{ "Machine Check", 0x180, ExcCodeMCheck };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<ResetFault>::vals =
|
|
|
|
{ "Reset Fault", 0x000, ExcCodeDummy };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<SoftResetFault>::vals =
|
|
|
|
{ "Soft Reset Fault", 0x000, ExcCodeDummy };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<NonMaskableInterrupt>::vals =
|
|
|
|
{ "Non Maskable Interrupt", 0x000, ExcCodeDummy };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<CoprocessorUnusableFault>::vals =
|
|
|
|
{ "Coprocessor Unusable Fault", 0x180, ExcCodeCpU };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<InterruptFault>::vals =
|
|
|
|
{ "Interrupt", 0x000, ExcCodeInt };
|
|
|
|
|
|
|
|
template <> FaultVals MipsFault<AddressErrorFault>::vals =
|
|
|
|
{ "Address Error", 0x180, ExcCodeDummy };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:20 +02:00
|
|
|
template <> FaultVals MipsFault<TlbInvalidFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "Invalid TLB Entry Exception", 0x180, ExcCodeDummy };
|
2007-11-13 22:58:16 +01:00
|
|
|
|
2011-09-19 15:17:20 +02:00
|
|
|
template <> FaultVals MipsFault<TlbRefillFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "TLB Refill Exception", 0x180, ExcCodeDummy };
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2011-09-19 15:17:21 +02:00
|
|
|
template <> FaultVals MipsFault<TlbModifiedFault>::vals =
|
2011-09-19 15:17:21 +02:00
|
|
|
{ "TLB Modified Exception", 0x180, ExcCodeMod };
|
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
|
2011-09-19 15:17:21 +02:00
|
|
|
PCState pc = tc->pcState();
|
|
|
|
DPRINTF(MipsPRA, "PC: %s\n", pc);
|
|
|
|
bool delay_slot = pc.pc() + sizeof(MachInst) != pc.npc();
|
|
|
|
tc->setMiscRegNoEffect(MISCREG_EPC,
|
|
|
|
pc.pc() - delay_slot ? sizeof(MachInst) : 0);
|
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;
|
2011-09-19 15:17:21 +02:00
|
|
|
cause.bd = delay_slot ? 1 : 0;
|
2009-07-21 10:09:05 +02:00
|
|
|
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
|
2011-09-19 15:17:21 +02:00
|
|
|
MipsFaultBase::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2011-09-19 15:17:21 +02:00
|
|
|
if (FULL_SYSTEM) {
|
|
|
|
DPRINTF(MipsPRA, "Fault %s encountered.\n", name());
|
|
|
|
setExceptionState(tc, code());
|
|
|
|
tc->pcState(vect(tc));
|
2009-07-21 10:08:53 +02:00
|
|
|
} else {
|
2011-09-19 15:17:21 +02:00
|
|
|
panic("Fault %s encountered.\n", name());
|
2009-07-21 10:08:53 +02:00
|
|
|
}
|
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
|
|
|
ResetFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-11-13 22:58:16 +01:00
|
|
|
{
|
2011-09-19 15:17:21 +02:00
|
|
|
if (FULL_SYSTEM) {
|
|
|
|
DPRINTF(MipsPRA, "%s encountered.\n", name());
|
|
|
|
/* All reset activity must be invoked from here */
|
|
|
|
Addr handler = vect(tc);
|
|
|
|
tc->pcState(handler);
|
|
|
|
DPRINTF(MipsPRA, "ResetFault::invoke : PC set to %x", handler);
|
|
|
|
}
|
2007-11-14 12:24:47 +01:00
|
|
|
|
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
|
2011-09-19 15:17:21 +02:00
|
|
|
SoftResetFault::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-06-23 01:03:42 +02:00
|
|
|
{
|
2011-09-19 15:17:21 +02:00
|
|
|
panic("Soft reset not implemented.\n");
|
2007-06-23 01:03:42 +02:00
|
|
|
}
|
|
|
|
|
2009-07-21 10:08:53 +02:00
|
|
|
void
|
2011-09-19 15:17:21 +02:00
|
|
|
NonMaskableInterrupt::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-06-23 01:03:42 +02:00
|
|
|
{
|
2011-09-19 15:17:21 +02:00
|
|
|
panic("Non maskable interrupt not implemented.\n");
|
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
|
|
|
|