faults.cc revision 7652
16019Shines@cs.fsu.edu/*
27093Sgblack@eecs.umich.edu * Copyright (c) 2010 ARM Limited
37093Sgblack@eecs.umich.edu * All rights reserved
47093Sgblack@eecs.umich.edu *
57093Sgblack@eecs.umich.edu * The license below extends only to copyright in the software and shall
67093Sgblack@eecs.umich.edu * not be construed as granting a license to any other intellectual
77093Sgblack@eecs.umich.edu * property including but not limited to intellectual property relating
87093Sgblack@eecs.umich.edu * to a hardware implementation of the functionality of the software
97093Sgblack@eecs.umich.edu * licensed hereunder.  You may use the software subject to the license
107093Sgblack@eecs.umich.edu * terms below provided that you ensure that this notice is replicated
117093Sgblack@eecs.umich.edu * unmodified and in its entirety in all distributions of the software,
127093Sgblack@eecs.umich.edu * modified or unmodified, in source code or in binary form.
137093Sgblack@eecs.umich.edu *
146019Shines@cs.fsu.edu * Copyright (c) 2003-2005 The Regents of The University of Michigan
156019Shines@cs.fsu.edu * Copyright (c) 2007-2008 The Florida State University
166019Shines@cs.fsu.edu * All rights reserved.
176019Shines@cs.fsu.edu *
186019Shines@cs.fsu.edu * Redistribution and use in source and binary forms, with or without
196019Shines@cs.fsu.edu * modification, are permitted provided that the following conditions are
206019Shines@cs.fsu.edu * met: redistributions of source code must retain the above copyright
216019Shines@cs.fsu.edu * notice, this list of conditions and the following disclaimer;
226019Shines@cs.fsu.edu * redistributions in binary form must reproduce the above copyright
236019Shines@cs.fsu.edu * notice, this list of conditions and the following disclaimer in the
246019Shines@cs.fsu.edu * documentation and/or other materials provided with the distribution;
256019Shines@cs.fsu.edu * neither the name of the copyright holders nor the names of its
266019Shines@cs.fsu.edu * contributors may be used to endorse or promote products derived from
276019Shines@cs.fsu.edu * this software without specific prior written permission.
286019Shines@cs.fsu.edu *
296019Shines@cs.fsu.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
306019Shines@cs.fsu.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
316019Shines@cs.fsu.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
326019Shines@cs.fsu.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
336019Shines@cs.fsu.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
346019Shines@cs.fsu.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
356019Shines@cs.fsu.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
366019Shines@cs.fsu.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
376019Shines@cs.fsu.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
386019Shines@cs.fsu.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
396019Shines@cs.fsu.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
406019Shines@cs.fsu.edu *
416735Sgblack@eecs.umich.edu * Authors: Ali Saidi
426735Sgblack@eecs.umich.edu *          Gabe Black
436019Shines@cs.fsu.edu */
446019Shines@cs.fsu.edu
456019Shines@cs.fsu.edu#include "arch/arm/faults.hh"
466019Shines@cs.fsu.edu#include "cpu/thread_context.hh"
476019Shines@cs.fsu.edu#include "cpu/base.hh"
486019Shines@cs.fsu.edu#include "base/trace.hh"
496019Shines@cs.fsu.edu
506019Shines@cs.fsu.edunamespace ArmISA
516019Shines@cs.fsu.edu{
526019Shines@cs.fsu.edu
537362Sgblack@eecs.umich.edutemplate<> ArmFault::FaultVals ArmFaultVals<Reset>::vals =
546735Sgblack@eecs.umich.edu    {"reset", 0x00, MODE_SVC, 0, 0, true, true};
556019Shines@cs.fsu.edu
567362Sgblack@eecs.umich.edutemplate<> ArmFault::FaultVals ArmFaultVals<UndefinedInstruction>::vals =
576735Sgblack@eecs.umich.edu    {"Undefined Instruction", 0x04, MODE_UNDEFINED, 4 ,2, false, false} ;
586019Shines@cs.fsu.edu
597362Sgblack@eecs.umich.edutemplate<> ArmFault::FaultVals ArmFaultVals<SupervisorCall>::vals =
606735Sgblack@eecs.umich.edu    {"Supervisor Call", 0x08, MODE_SVC, 4, 2, false, false};
616019Shines@cs.fsu.edu
627362Sgblack@eecs.umich.edutemplate<> ArmFault::FaultVals ArmFaultVals<PrefetchAbort>::vals =
636735Sgblack@eecs.umich.edu    {"Prefetch Abort", 0x0C, MODE_ABORT, 4, 4, true, false};
646019Shines@cs.fsu.edu
657362Sgblack@eecs.umich.edutemplate<> ArmFault::FaultVals ArmFaultVals<DataAbort>::vals =
666735Sgblack@eecs.umich.edu    {"Data Abort", 0x10, MODE_ABORT, 8, 8, true, false};
676019Shines@cs.fsu.edu
687362Sgblack@eecs.umich.edutemplate<> ArmFault::FaultVals ArmFaultVals<Interrupt>::vals =
696735Sgblack@eecs.umich.edu    {"IRQ", 0x18, MODE_IRQ, 4, 4, true, false};
706019Shines@cs.fsu.edu
717362Sgblack@eecs.umich.edutemplate<> ArmFault::FaultVals ArmFaultVals<FastInterrupt>::vals =
726735Sgblack@eecs.umich.edu    {"FIQ", 0x1C, MODE_FIQ, 4, 4, true, true};
736019Shines@cs.fsu.edu
747652Sminkyu.jeong@arm.comtemplate<> ArmFault::FaultVals ArmFaultVals<FlushPipe>::vals =
757652Sminkyu.jeong@arm.com    {"Pipe Flush", 0x00, MODE_SVC, 0, 0, true, true}; // some dummy values
767652Sminkyu.jeong@arm.com
776735Sgblack@eecs.umich.eduAddr
787362Sgblack@eecs.umich.eduArmFault::getVector(ThreadContext *tc)
796735Sgblack@eecs.umich.edu{
806735Sgblack@eecs.umich.edu    // ARM ARM B1-3
816019Shines@cs.fsu.edu
826735Sgblack@eecs.umich.edu    SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
837400SAli.Saidi@ARM.com
846735Sgblack@eecs.umich.edu    // panic if SCTLR.VE because I have no idea what to do with vectored
856735Sgblack@eecs.umich.edu    // interrupts
866735Sgblack@eecs.umich.edu    assert(!sctlr.ve);
877400SAli.Saidi@ARM.com
886735Sgblack@eecs.umich.edu    if (!sctlr.v)
896735Sgblack@eecs.umich.edu        return offset();
906735Sgblack@eecs.umich.edu    return offset() + HighVecs;
916019Shines@cs.fsu.edu
926019Shines@cs.fsu.edu}
936019Shines@cs.fsu.edu
946735Sgblack@eecs.umich.edu#if FULL_SYSTEM
956735Sgblack@eecs.umich.edu
966735Sgblack@eecs.umich.eduvoid
977362Sgblack@eecs.umich.eduArmFault::invoke(ThreadContext *tc)
986019Shines@cs.fsu.edu{
996735Sgblack@eecs.umich.edu    // ARM ARM B1.6.3
1006735Sgblack@eecs.umich.edu    FaultBase::invoke(tc);
1016735Sgblack@eecs.umich.edu    countStat()++;
1026019Shines@cs.fsu.edu
1036735Sgblack@eecs.umich.edu    SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
1046735Sgblack@eecs.umich.edu    CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
1056735Sgblack@eecs.umich.edu    CPSR saved_cpsr = tc->readMiscReg(MISCREG_CPSR) |
1066735Sgblack@eecs.umich.edu                      tc->readIntReg(INTREG_CONDCODES);
1076735Sgblack@eecs.umich.edu
1086735Sgblack@eecs.umich.edu
1096735Sgblack@eecs.umich.edu    cpsr.mode = nextMode();
1106735Sgblack@eecs.umich.edu    cpsr.it1 = cpsr.it2 = 0;
1116735Sgblack@eecs.umich.edu    cpsr.j = 0;
1126735Sgblack@eecs.umich.edu
1137093Sgblack@eecs.umich.edu    cpsr.t = sctlr.te;
1146735Sgblack@eecs.umich.edu    cpsr.a = cpsr.a | abortDisable();
1156735Sgblack@eecs.umich.edu    cpsr.f = cpsr.f | fiqDisable();
1166735Sgblack@eecs.umich.edu    cpsr.i = 1;
1177302Sgblack@eecs.umich.edu    cpsr.e = sctlr.ee;
1186735Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CPSR, cpsr);
1196735Sgblack@eecs.umich.edu    tc->setIntReg(INTREG_LR, tc->readPC() +
1206735Sgblack@eecs.umich.edu            (saved_cpsr.t ? thumbPcOffset() : armPcOffset()));
1216735Sgblack@eecs.umich.edu
1226735Sgblack@eecs.umich.edu    switch (nextMode()) {
1236735Sgblack@eecs.umich.edu      case MODE_FIQ:
1246735Sgblack@eecs.umich.edu        tc->setMiscReg(MISCREG_SPSR_FIQ, saved_cpsr);
1256735Sgblack@eecs.umich.edu        break;
1266735Sgblack@eecs.umich.edu      case MODE_IRQ:
1276735Sgblack@eecs.umich.edu        tc->setMiscReg(MISCREG_SPSR_IRQ, saved_cpsr);
1286735Sgblack@eecs.umich.edu        break;
1296735Sgblack@eecs.umich.edu      case MODE_SVC:
1306735Sgblack@eecs.umich.edu        tc->setMiscReg(MISCREG_SPSR_SVC, saved_cpsr);
1316735Sgblack@eecs.umich.edu        break;
1326735Sgblack@eecs.umich.edu      case MODE_UNDEFINED:
1336735Sgblack@eecs.umich.edu        tc->setMiscReg(MISCREG_SPSR_UND, saved_cpsr);
1346735Sgblack@eecs.umich.edu        break;
1356735Sgblack@eecs.umich.edu      case MODE_ABORT:
1366735Sgblack@eecs.umich.edu        tc->setMiscReg(MISCREG_SPSR_ABT, saved_cpsr);
1376735Sgblack@eecs.umich.edu        break;
1386735Sgblack@eecs.umich.edu      default:
1396735Sgblack@eecs.umich.edu        panic("unknown Mode\n");
1407093Sgblack@eecs.umich.edu    }
1417093Sgblack@eecs.umich.edu
1427585SAli.Saidi@arm.com    Addr pc M5_VAR_USED = tc->readPC();
1437093Sgblack@eecs.umich.edu    Addr newPc = getVector(tc) | (sctlr.te ? (ULL(1) << PcTBitShift) : 0);
1447585SAli.Saidi@arm.com    DPRINTF(Faults, "Invoking Fault:%s cpsr:%#x PC:%#x lr:%#x newVec: %#x\n",
1457400SAli.Saidi@ARM.com            name(), cpsr, pc, tc->readIntReg(INTREG_LR), newPc);
1467093Sgblack@eecs.umich.edu    tc->setPC(newPc);
1477093Sgblack@eecs.umich.edu    tc->setNextPC(newPc + cpsr.t ? 2 : 4 );
1487295Sgblack@eecs.umich.edu    tc->setMicroPC(0);
1497412Sgblack@eecs.umich.edu    tc->setNextMicroPC(1);
1506019Shines@cs.fsu.edu}
1517189Sgblack@eecs.umich.edu
1527400SAli.Saidi@ARM.comvoid
1537400SAli.Saidi@ARM.comReset::invoke(ThreadContext *tc)
1547400SAli.Saidi@ARM.com{
1557400SAli.Saidi@ARM.com    tc->getCpuPtr()->clearInterrupts();
1567400SAli.Saidi@ARM.com    tc->clearArchRegs();
1577400SAli.Saidi@ARM.com    ArmFault::invoke(tc);
1587400SAli.Saidi@ARM.com}
1597400SAli.Saidi@ARM.com
1607189Sgblack@eecs.umich.edu#else
1617189Sgblack@eecs.umich.edu
1627189Sgblack@eecs.umich.eduvoid
1637189Sgblack@eecs.umich.eduUndefinedInstruction::invoke(ThreadContext *tc)
1647189Sgblack@eecs.umich.edu{
1657640Sgblack@eecs.umich.edu    // If the mnemonic isn't defined this has to be an unknown instruction.
1667189Sgblack@eecs.umich.edu    assert(unknown || mnemonic != NULL);
1677640Sgblack@eecs.umich.edu    if (disabled) {
1687640Sgblack@eecs.umich.edu        panic("Attempted to execute disabled instruction "
1697640Sgblack@eecs.umich.edu                "'%s' (inst 0x%08x)", mnemonic, machInst);
1707640Sgblack@eecs.umich.edu    } else if (unknown) {
1717426Sgblack@eecs.umich.edu        panic("Attempted to execute unknown instruction (inst 0x%08x)",
1727426Sgblack@eecs.umich.edu              machInst);
1737189Sgblack@eecs.umich.edu    } else {
1747426Sgblack@eecs.umich.edu        panic("Attempted to execute unimplemented instruction "
1757426Sgblack@eecs.umich.edu                "'%s' (inst 0x%08x)", mnemonic, machInst);
1767189Sgblack@eecs.umich.edu    }
1777189Sgblack@eecs.umich.edu}
1787189Sgblack@eecs.umich.edu
1797197Sgblack@eecs.umich.eduvoid
1807197Sgblack@eecs.umich.eduSupervisorCall::invoke(ThreadContext *tc)
1817197Sgblack@eecs.umich.edu{
1827197Sgblack@eecs.umich.edu    // As of now, there isn't a 32 bit thumb version of this instruction.
1837197Sgblack@eecs.umich.edu    assert(!machInst.bigThumb);
1847197Sgblack@eecs.umich.edu    uint32_t callNum;
1857197Sgblack@eecs.umich.edu    if (machInst.thumb) {
1867197Sgblack@eecs.umich.edu        callNum = bits(machInst, 7, 0);
1877197Sgblack@eecs.umich.edu    } else {
1887197Sgblack@eecs.umich.edu        callNum = bits(machInst, 23, 0);
1897197Sgblack@eecs.umich.edu    }
1907197Sgblack@eecs.umich.edu    if (callNum == 0) {
1917197Sgblack@eecs.umich.edu        callNum = tc->readIntReg(INTREG_R7);
1927197Sgblack@eecs.umich.edu    }
1937197Sgblack@eecs.umich.edu    tc->syscall(callNum);
1947197Sgblack@eecs.umich.edu
1957197Sgblack@eecs.umich.edu    // Advance the PC since that won't happen automatically.
1967197Sgblack@eecs.umich.edu    tc->setPC(tc->readNextPC());
1977197Sgblack@eecs.umich.edu    tc->setNextPC(tc->readNextNPC());
1987412Sgblack@eecs.umich.edu    tc->setMicroPC(0);
1997412Sgblack@eecs.umich.edu    tc->setNextMicroPC(1);
2007197Sgblack@eecs.umich.edu}
2017197Sgblack@eecs.umich.edu
2026019Shines@cs.fsu.edu#endif // FULL_SYSTEM
2036019Shines@cs.fsu.edu
2047362Sgblack@eecs.umich.edutemplate<class T>
2057362Sgblack@eecs.umich.eduvoid
2067362Sgblack@eecs.umich.eduAbortFault<T>::invoke(ThreadContext *tc)
2077362Sgblack@eecs.umich.edu{
2087362Sgblack@eecs.umich.edu    ArmFaultVals<T>::invoke(tc);
2097362Sgblack@eecs.umich.edu    FSR fsr = 0;
2107362Sgblack@eecs.umich.edu    fsr.fsLow = bits(status, 3, 0);
2117362Sgblack@eecs.umich.edu    fsr.fsHigh = bits(status, 4);
2127362Sgblack@eecs.umich.edu    fsr.domain = domain;
2137362Sgblack@eecs.umich.edu    fsr.wnr = (write ? 1 : 0);
2147362Sgblack@eecs.umich.edu    fsr.ext = 0;
2157362Sgblack@eecs.umich.edu    tc->setMiscReg(T::FsrIndex, fsr);
2167362Sgblack@eecs.umich.edu    tc->setMiscReg(T::FarIndex, faultAddr);
2177362Sgblack@eecs.umich.edu}
2187362Sgblack@eecs.umich.edu
2197652Sminkyu.jeong@arm.comvoid
2207652Sminkyu.jeong@arm.comFlushPipe::invoke(ThreadContext *tc) {
2217652Sminkyu.jeong@arm.com    DPRINTF(Faults, "Invoking FlushPipe Fault\n");
2227652Sminkyu.jeong@arm.com
2237652Sminkyu.jeong@arm.com    // Set the PC to the next instruction of the faulting instruction.
2247652Sminkyu.jeong@arm.com    // Net effect is simply squashing all instructions behind and
2257652Sminkyu.jeong@arm.com    // start refetching from the next instruction.
2267652Sminkyu.jeong@arm.com    tc->setPC(tc->readNextPC());
2277652Sminkyu.jeong@arm.com    tc->setNextPC(tc->readNextNPC());
2287652Sminkyu.jeong@arm.com    tc->setMicroPC(0);
2297652Sminkyu.jeong@arm.com    tc->setNextMicroPC(1);
2307652Sminkyu.jeong@arm.com}
2317652Sminkyu.jeong@arm.com
2327362Sgblack@eecs.umich.edutemplate void AbortFault<PrefetchAbort>::invoke(ThreadContext *tc);
2337362Sgblack@eecs.umich.edutemplate void AbortFault<DataAbort>::invoke(ThreadContext *tc);
2347362Sgblack@eecs.umich.edu
2356735Sgblack@eecs.umich.edu// return via SUBS pc, lr, xxx; rfe, movs, ldm
2366019Shines@cs.fsu.edu
2376019Shines@cs.fsu.edu} // namespace ArmISA
238