faults.cc revision 12455
12221SN/A/*
22221SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan
32221SN/A * All rights reserved.
42221SN/A *
52221SN/A * Redistribution and use in source and binary forms, with or without
62221SN/A * modification, are permitted provided that the following conditions are
72221SN/A * met: redistributions of source code must retain the above copyright
82221SN/A * notice, this list of conditions and the following disclaimer;
92221SN/A * redistributions in binary form must reproduce the above copyright
102221SN/A * notice, this list of conditions and the following disclaimer in the
112221SN/A * documentation and/or other materials provided with the distribution;
122221SN/A * neither the name of the copyright holders nor the names of its
132221SN/A * contributors may be used to endorse or promote products derived from
142221SN/A * this software without specific prior written permission.
152221SN/A *
162221SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172221SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182221SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192221SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202221SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212221SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222221SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232221SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242221SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252221SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262221SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Gabe Black
292665Ssaidi@eecs.umich.edu *          Kevin Lim
302221SN/A */
312221SN/A
3211793Sbrandon.potter@amd.com#include "arch/sparc/faults.hh"
3311793Sbrandon.potter@amd.com
343415Sgblack@eecs.umich.edu#include <algorithm>
353415Sgblack@eecs.umich.edu
363415Sgblack@eecs.umich.edu#include "arch/sparc/isa_traits.hh"
378778Sgblack@eecs.umich.edu#include "arch/sparc/process.hh"
383578Sgblack@eecs.umich.edu#include "arch/sparc/types.hh"
393415Sgblack@eecs.umich.edu#include "base/bitfield.hh"
403415Sgblack@eecs.umich.edu#include "base/trace.hh"
413415Sgblack@eecs.umich.edu#include "cpu/base.hh"
422680Sktlim@umich.edu#include "cpu/thread_context.hh"
433415Sgblack@eecs.umich.edu#include "mem/page_table.hh"
4411793Sbrandon.potter@amd.com#include "sim/full_system.hh"
452800Ssaidi@eecs.umich.edu#include "sim/process.hh"
462221SN/A
473415Sgblack@eecs.umich.eduusing namespace std;
483415Sgblack@eecs.umich.edu
492223SN/Anamespace SparcISA
502221SN/A{
512221SN/A
523573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
533576Sgblack@eecs.umich.edu    SparcFault<PowerOnReset>::vals =
549551Sandreas.hansson@arm.com{"power_on_reset", 0x001, 0, {H, H, H}, FaultStat()};
552221SN/A
563573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
573576Sgblack@eecs.umich.edu    SparcFault<WatchDogReset>::vals =
589551Sandreas.hansson@arm.com{"watch_dog_reset", 0x002, 120, {H, H, H}, FaultStat()};
592221SN/A
603573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
613576Sgblack@eecs.umich.edu    SparcFault<ExternallyInitiatedReset>::vals =
629551Sandreas.hansson@arm.com{"externally_initiated_reset", 0x003, 110, {H, H, H}, FaultStat()};
632221SN/A
643573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
653576Sgblack@eecs.umich.edu    SparcFault<SoftwareInitiatedReset>::vals =
669551Sandreas.hansson@arm.com{"software_initiated_reset", 0x004, 130, {SH, SH, H}, FaultStat()};
672221SN/A
683573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
693576Sgblack@eecs.umich.edu    SparcFault<REDStateException>::vals =
709551Sandreas.hansson@arm.com{"RED_state_exception", 0x005, 1, {H, H, H}, FaultStat()};
712221SN/A
723573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
733576Sgblack@eecs.umich.edu    SparcFault<StoreError>::vals =
749551Sandreas.hansson@arm.com{"store_error", 0x007, 201, {H, H, H}, FaultStat()};
752221SN/A
763573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
773576Sgblack@eecs.umich.edu    SparcFault<InstructionAccessException>::vals =
789551Sandreas.hansson@arm.com{"instruction_access_exception", 0x008, 300, {H, H, H}, FaultStat()};
793576Sgblack@eecs.umich.edu
803576Sgblack@eecs.umich.edu//XXX This trap is apparently dropped from ua2005
813576Sgblack@eecs.umich.edu/*template<> SparcFaultBase::FaultVals
823576Sgblack@eecs.umich.edu    SparcFault<InstructionAccessMMUMiss>::vals =
833576Sgblack@eecs.umich.edu    {"inst_mmu", 0x009, 2, {H, H, H}};*/
842221SN/A
853573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
863576Sgblack@eecs.umich.edu    SparcFault<InstructionAccessError>::vals =
879551Sandreas.hansson@arm.com{"instruction_access_error", 0x00A, 400, {H, H, H}, FaultStat()};
882221SN/A
893573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
903576Sgblack@eecs.umich.edu    SparcFault<IllegalInstruction>::vals =
919551Sandreas.hansson@arm.com{"illegal_instruction", 0x010, 620, {H, H, H}, FaultStat()};
922221SN/A
933573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
943576Sgblack@eecs.umich.edu    SparcFault<PrivilegedOpcode>::vals =
959551Sandreas.hansson@arm.com{"privileged_opcode", 0x011, 700, {P, SH, SH}, FaultStat()};
963576Sgblack@eecs.umich.edu
973576Sgblack@eecs.umich.edu//XXX This trap is apparently dropped from ua2005
983576Sgblack@eecs.umich.edu/*template<> SparcFaultBase::FaultVals
993576Sgblack@eecs.umich.edu    SparcFault<UnimplementedLDD>::vals =
1003576Sgblack@eecs.umich.edu    {"unimp_ldd", 0x012, 6, {H, H, H}};*/
1013576Sgblack@eecs.umich.edu
1023576Sgblack@eecs.umich.edu//XXX This trap is apparently dropped from ua2005
1033576Sgblack@eecs.umich.edu/*template<> SparcFaultBase::FaultVals
1043576Sgblack@eecs.umich.edu    SparcFault<UnimplementedSTD>::vals =
1053576Sgblack@eecs.umich.edu    {"unimp_std", 0x013, 6, {H, H, H}};*/
1062221SN/A
1073573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1083576Sgblack@eecs.umich.edu    SparcFault<FpDisabled>::vals =
1099551Sandreas.hansson@arm.com{"fp_disabled", 0x020, 800, {P, P, H}, FaultStat()};
1102221SN/A
11112110SRekai.GonzalezAlberquilla@arm.com/* SPARCv8 and SPARCv9 define just fp_disabled trap. SIMD is not contemplated
11212110SRekai.GonzalezAlberquilla@arm.com * as a separate part. Therefore, we use the same code and TT */
11312110SRekai.GonzalezAlberquilla@arm.comtemplate<> SparcFaultBase::FaultVals
11412110SRekai.GonzalezAlberquilla@arm.com    SparcFault<VecDisabled>::vals =
11512110SRekai.GonzalezAlberquilla@arm.com{"fp_disabled", 0x020, 800, {P, P, H}, FaultStat()};
11612110SRekai.GonzalezAlberquilla@arm.com
1173573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1183576Sgblack@eecs.umich.edu    SparcFault<FpExceptionIEEE754>::vals =
1199551Sandreas.hansson@arm.com{"fp_exception_ieee_754", 0x021, 1110, {P, P, H}, FaultStat()};
1202221SN/A
1213573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1223576Sgblack@eecs.umich.edu    SparcFault<FpExceptionOther>::vals =
1239551Sandreas.hansson@arm.com{"fp_exception_other", 0x022, 1110, {P, P, H}, FaultStat()};
1242221SN/A
1253573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1263576Sgblack@eecs.umich.edu    SparcFault<TagOverflow>::vals =
1279551Sandreas.hansson@arm.com{"tag_overflow", 0x023, 1400, {P, P, H}, FaultStat()};
1282221SN/A
1293573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1303576Sgblack@eecs.umich.edu    SparcFault<CleanWindow>::vals =
1319551Sandreas.hansson@arm.com{"clean_window", 0x024, 1010, {P, P, H}, FaultStat()};
1322221SN/A
1333573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1343576Sgblack@eecs.umich.edu    SparcFault<DivisionByZero>::vals =
1359551Sandreas.hansson@arm.com{"division_by_zero", 0x028, 1500, {P, P, H}, FaultStat()};
1362223SN/A
1373573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1383576Sgblack@eecs.umich.edu    SparcFault<InternalProcessorError>::vals =
1399551Sandreas.hansson@arm.com{"internal_processor_error", 0x029, 4, {H, H, H}, FaultStat()};
1402223SN/A
1413573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1423576Sgblack@eecs.umich.edu    SparcFault<InstructionInvalidTSBEntry>::vals =
1439551Sandreas.hansson@arm.com{"instruction_invalid_tsb_entry", 0x02A, 210, {H, H, SH}, FaultStat()};
1442223SN/A
1453573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1463576Sgblack@eecs.umich.edu    SparcFault<DataInvalidTSBEntry>::vals =
1479551Sandreas.hansson@arm.com{"data_invalid_tsb_entry", 0x02B, 1203, {H, H, H}, FaultStat()};
1482223SN/A
1493573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1503576Sgblack@eecs.umich.edu    SparcFault<DataAccessException>::vals =
1519551Sandreas.hansson@arm.com{"data_access_exception", 0x030, 1201, {H, H, H}, FaultStat()};
1523576Sgblack@eecs.umich.edu
1533576Sgblack@eecs.umich.edu//XXX This trap is apparently dropped from ua2005
1543576Sgblack@eecs.umich.edu/*template<> SparcFaultBase::FaultVals
1553576Sgblack@eecs.umich.edu    SparcFault<DataAccessMMUMiss>::vals =
1563576Sgblack@eecs.umich.edu    {"data_mmu", 0x031, 12, {H, H, H}};*/
1572223SN/A
1583573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1593576Sgblack@eecs.umich.edu    SparcFault<DataAccessError>::vals =
1609551Sandreas.hansson@arm.com{"data_access_error", 0x032, 1210, {H, H, H}, FaultStat()};
1612223SN/A
1623573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1633576Sgblack@eecs.umich.edu    SparcFault<DataAccessProtection>::vals =
1649551Sandreas.hansson@arm.com{"data_access_protection", 0x033, 1207, {H, H, H}, FaultStat()};
1652223SN/A
1663573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1673576Sgblack@eecs.umich.edu    SparcFault<MemAddressNotAligned>::vals =
1689551Sandreas.hansson@arm.com{"mem_address_not_aligned", 0x034, 1020, {H, H, H}, FaultStat()};
1692223SN/A
1703573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1713576Sgblack@eecs.umich.edu    SparcFault<LDDFMemAddressNotAligned>::vals =
1729551Sandreas.hansson@arm.com{"LDDF_mem_address_not_aligned", 0x035, 1010, {H, H, H}, FaultStat()};
1732223SN/A
1743573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1753576Sgblack@eecs.umich.edu    SparcFault<STDFMemAddressNotAligned>::vals =
1769551Sandreas.hansson@arm.com{"STDF_mem_address_not_aligned", 0x036, 1010, {H, H, H}, FaultStat()};
1772223SN/A
1783573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1793576Sgblack@eecs.umich.edu    SparcFault<PrivilegedAction>::vals =
1809551Sandreas.hansson@arm.com{"privileged_action", 0x037, 1110, {H, H, SH}, FaultStat()};
1812223SN/A
1823573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1833576Sgblack@eecs.umich.edu    SparcFault<LDQFMemAddressNotAligned>::vals =
1849551Sandreas.hansson@arm.com{"LDQF_mem_address_not_aligned", 0x038, 1010, {H, H, H}, FaultStat()};
1852223SN/A
1863573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1873576Sgblack@eecs.umich.edu    SparcFault<STQFMemAddressNotAligned>::vals =
1889551Sandreas.hansson@arm.com{"STQF_mem_address_not_aligned", 0x039, 1010, {H, H, H}, FaultStat()};
1892223SN/A
1903573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1913576Sgblack@eecs.umich.edu    SparcFault<InstructionRealTranslationMiss>::vals =
1929551Sandreas.hansson@arm.com{"instruction_real_translation_miss", 0x03E, 208, {H, H, SH}, FaultStat()};
1932223SN/A
1943573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
1953576Sgblack@eecs.umich.edu    SparcFault<DataRealTranslationMiss>::vals =
1969551Sandreas.hansson@arm.com{"data_real_translation_miss", 0x03F, 1203, {H, H, H}, FaultStat()};
1972223SN/A
1983576Sgblack@eecs.umich.edu//XXX This trap is apparently dropped from ua2005
1993576Sgblack@eecs.umich.edu/*template<> SparcFaultBase::FaultVals
2003576Sgblack@eecs.umich.edu    SparcFault<AsyncDataError>::vals =
2013576Sgblack@eecs.umich.edu    {"async_data", 0x040, 2, {H, H, H}};*/
2022527SN/A
2033573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2043576Sgblack@eecs.umich.edu    SparcFault<InterruptLevelN>::vals =
2059551Sandreas.hansson@arm.com{"interrupt_level_n", 0x040, 0, {P, P, SH}, FaultStat()};
2062223SN/A
2073573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2083576Sgblack@eecs.umich.edu    SparcFault<HstickMatch>::vals =
2099551Sandreas.hansson@arm.com{"hstick_match", 0x05E, 1601, {H, H, H}, FaultStat()};
2102223SN/A
2113573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2123576Sgblack@eecs.umich.edu    SparcFault<TrapLevelZero>::vals =
2139551Sandreas.hansson@arm.com{"trap_level_zero", 0x05F, 202, {H, H, SH}, FaultStat()};
2142223SN/A
2153573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2164103Ssaidi@eecs.umich.edu    SparcFault<InterruptVector>::vals =
2179551Sandreas.hansson@arm.com{"interrupt_vector", 0x060, 2630, {H, H, H}, FaultStat()};
2184103Ssaidi@eecs.umich.edu
2194103Ssaidi@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2203576Sgblack@eecs.umich.edu    SparcFault<PAWatchpoint>::vals =
2219551Sandreas.hansson@arm.com{"PA_watchpoint", 0x061, 1209, {H, H, H}, FaultStat()};
2222223SN/A
2233573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2243576Sgblack@eecs.umich.edu    SparcFault<VAWatchpoint>::vals =
2259551Sandreas.hansson@arm.com{"VA_watchpoint", 0x062, 1120, {P, P, SH}, FaultStat()};
2262223SN/A
2273573Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2283576Sgblack@eecs.umich.edu    SparcFault<FastInstructionAccessMMUMiss>::vals =
2299551Sandreas.hansson@arm.com{"fast_instruction_access_MMU_miss", 0x064, 208, {H, H, SH}, FaultStat()};
2303576Sgblack@eecs.umich.edu
2313576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2323576Sgblack@eecs.umich.edu    SparcFault<FastDataAccessMMUMiss>::vals =
2339551Sandreas.hansson@arm.com{"fast_data_access_MMU_miss", 0x068, 1203, {H, H, H}, FaultStat()};
2343576Sgblack@eecs.umich.edu
2353576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2363576Sgblack@eecs.umich.edu    SparcFault<FastDataAccessProtection>::vals =
2379551Sandreas.hansson@arm.com{"fast_data_access_protection", 0x06C, 1207, {H, H, H}, FaultStat()};
2383576Sgblack@eecs.umich.edu
2393576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2403576Sgblack@eecs.umich.edu    SparcFault<InstructionBreakpoint>::vals =
2419551Sandreas.hansson@arm.com{"instruction_break", 0x076, 610, {H, H, H}, FaultStat()};
2423576Sgblack@eecs.umich.edu
2433576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2443576Sgblack@eecs.umich.edu    SparcFault<CpuMondo>::vals =
2459551Sandreas.hansson@arm.com{"cpu_mondo", 0x07C, 1608, {P, P, SH}, FaultStat()};
2463576Sgblack@eecs.umich.edu
2473576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2483576Sgblack@eecs.umich.edu    SparcFault<DevMondo>::vals =
2499551Sandreas.hansson@arm.com{"dev_mondo", 0x07D, 1611, {P, P, SH}, FaultStat()};
2503576Sgblack@eecs.umich.edu
2513576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2523893Shsul@eecs.umich.edu    SparcFault<ResumableError>::vals =
2539551Sandreas.hansson@arm.com{"resume_error", 0x07E, 3330, {P, P, SH}, FaultStat()};
2543576Sgblack@eecs.umich.edu
2553576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2563576Sgblack@eecs.umich.edu    SparcFault<SpillNNormal>::vals =
2579551Sandreas.hansson@arm.com{"spill_n_normal", 0x080, 900, {P, P, H}, FaultStat()};
2583576Sgblack@eecs.umich.edu
2593576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2603576Sgblack@eecs.umich.edu    SparcFault<SpillNOther>::vals =
2619551Sandreas.hansson@arm.com{"spill_n_other", 0x0A0, 900, {P, P, H}, FaultStat()};
2623576Sgblack@eecs.umich.edu
2633576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2643576Sgblack@eecs.umich.edu    SparcFault<FillNNormal>::vals =
2659551Sandreas.hansson@arm.com{"fill_n_normal", 0x0C0, 900, {P, P, H}, FaultStat()};
2663576Sgblack@eecs.umich.edu
2673576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2683576Sgblack@eecs.umich.edu    SparcFault<FillNOther>::vals =
2699551Sandreas.hansson@arm.com{"fill_n_other", 0x0E0, 900, {P, P, H}, FaultStat()};
2703576Sgblack@eecs.umich.edu
2713576Sgblack@eecs.umich.edutemplate<> SparcFaultBase::FaultVals
2723576Sgblack@eecs.umich.edu    SparcFault<TrapInstruction>::vals =
2739551Sandreas.hansson@arm.com{"trap_instruction", 0x100, 1602, {P, P, H}, FaultStat()};
2742223SN/A
2753415Sgblack@eecs.umich.edu/**
2763578Sgblack@eecs.umich.edu * This causes the thread context to enter RED state. This causes the side
2773578Sgblack@eecs.umich.edu * effects which go with entering RED state because of a trap.
2783415Sgblack@eecs.umich.edu */
2793415Sgblack@eecs.umich.edu
2807741Sgblack@eecs.umich.eduvoid
2817741Sgblack@eecs.umich.eduenterREDState(ThreadContext *tc)
2823415Sgblack@eecs.umich.edu{
2833578Sgblack@eecs.umich.edu    //@todo Disable the mmu?
2843578Sgblack@eecs.umich.edu    //@todo Disable watchpoints?
2858829Sgblack@eecs.umich.edu    HPSTATE hpstate= tc->readMiscRegNoEffect(MISCREG_HPSTATE);
2868829Sgblack@eecs.umich.edu    hpstate.red = 1;
2878829Sgblack@eecs.umich.edu    hpstate.hpriv = 1;
2888829Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_HPSTATE, hpstate);
2897741Sgblack@eecs.umich.edu    // PSTATE.priv is set to 1 here. The manual says it should be 0, but
2907741Sgblack@eecs.umich.edu    // Legion sets it to 1.
2918829Sgblack@eecs.umich.edu    PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
2928829Sgblack@eecs.umich.edu    pstate.priv = 1;
2938829Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_PSTATE, pstate);
2943578Sgblack@eecs.umich.edu}
2953578Sgblack@eecs.umich.edu
2963578Sgblack@eecs.umich.edu/**
2973578Sgblack@eecs.umich.edu * This sets everything up for a RED state trap except for actually jumping to
2983578Sgblack@eecs.umich.edu * the handler.
2993578Sgblack@eecs.umich.edu */
3003578Sgblack@eecs.umich.edu
3017741Sgblack@eecs.umich.eduvoid
3027741Sgblack@eecs.umich.edudoREDFault(ThreadContext *tc, TrapType tt)
3033578Sgblack@eecs.umich.edu{
3044172Ssaidi@eecs.umich.edu    MiscReg TL = tc->readMiscRegNoEffect(MISCREG_TL);
3054172Ssaidi@eecs.umich.edu    MiscReg TSTATE = tc->readMiscRegNoEffect(MISCREG_TSTATE);
3068829Sgblack@eecs.umich.edu    PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
3078829Sgblack@eecs.umich.edu    HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
3083761Sgblack@eecs.umich.edu    MiscReg CCR = tc->readIntReg(NumIntArchRegs + 2);
3094172Ssaidi@eecs.umich.edu    MiscReg ASI = tc->readMiscRegNoEffect(MISCREG_ASI);
3104172Ssaidi@eecs.umich.edu    MiscReg CWP = tc->readMiscRegNoEffect(MISCREG_CWP);
3114172Ssaidi@eecs.umich.edu    MiscReg CANSAVE = tc->readMiscRegNoEffect(NumIntArchRegs + 3);
3124172Ssaidi@eecs.umich.edu    MiscReg GL = tc->readMiscRegNoEffect(MISCREG_GL);
3137720Sgblack@eecs.umich.edu    PCState pc = tc->pcState();
3143578Sgblack@eecs.umich.edu
3153578Sgblack@eecs.umich.edu    TL++;
3163578Sgblack@eecs.umich.edu
3178829Sgblack@eecs.umich.edu    Addr pcMask = pstate.am ? mask(32) : mask(64);
3183928Ssaidi@eecs.umich.edu
3197741Sgblack@eecs.umich.edu    // set TSTATE.gl to gl
3203578Sgblack@eecs.umich.edu    replaceBits(TSTATE, 42, 40, GL);
3217741Sgblack@eecs.umich.edu    // set TSTATE.ccr to ccr
3223578Sgblack@eecs.umich.edu    replaceBits(TSTATE, 39, 32, CCR);
3237741Sgblack@eecs.umich.edu    // set TSTATE.asi to asi
3243578Sgblack@eecs.umich.edu    replaceBits(TSTATE, 31, 24, ASI);
3257741Sgblack@eecs.umich.edu    // set TSTATE.pstate to pstate
3268829Sgblack@eecs.umich.edu    replaceBits(TSTATE, 20, 8, pstate);
3277741Sgblack@eecs.umich.edu    // set TSTATE.cwp to cwp
3283578Sgblack@eecs.umich.edu    replaceBits(TSTATE, 4, 0, CWP);
3293578Sgblack@eecs.umich.edu
3307741Sgblack@eecs.umich.edu    // Write back TSTATE
3314172Ssaidi@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TSTATE, TSTATE);
3323578Sgblack@eecs.umich.edu
3337741Sgblack@eecs.umich.edu    // set TPC to PC
3347720Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TPC, pc.pc() & pcMask);
3357741Sgblack@eecs.umich.edu    // set TNPC to NPC
3367720Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TNPC, pc.npc() & pcMask);
3373578Sgblack@eecs.umich.edu
3387741Sgblack@eecs.umich.edu    // set HTSTATE.hpstate to hpstate
3398829Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_HTSTATE, hpstate);
3403578Sgblack@eecs.umich.edu
3417741Sgblack@eecs.umich.edu    // TT = trap type;
3424172Ssaidi@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TT, tt);
3433578Sgblack@eecs.umich.edu
3447741Sgblack@eecs.umich.edu    // Update GL
3454172Ssaidi@eecs.umich.edu    tc->setMiscReg(MISCREG_GL, min<int>(GL+1, MaxGL));
3463578Sgblack@eecs.umich.edu
3478829Sgblack@eecs.umich.edu    bool priv = pstate.priv; // just save the priv bit
3488829Sgblack@eecs.umich.edu    pstate = 0;
3498829Sgblack@eecs.umich.edu    pstate.priv = priv;
3508829Sgblack@eecs.umich.edu    pstate.pef = 1;
3518829Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_PSTATE, pstate);
3523578Sgblack@eecs.umich.edu
3538829Sgblack@eecs.umich.edu    hpstate.red = 1;
3548829Sgblack@eecs.umich.edu    hpstate.hpriv = 1;
3558829Sgblack@eecs.umich.edu    hpstate.ibe = 0;
3568829Sgblack@eecs.umich.edu    hpstate.tlz = 0;
3578829Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_HPSTATE, hpstate);
3583578Sgblack@eecs.umich.edu
3593578Sgblack@eecs.umich.edu    bool changedCWP = true;
3603893Shsul@eecs.umich.edu    if (tt == 0x24)
3613415Sgblack@eecs.umich.edu        CWP++;
3623893Shsul@eecs.umich.edu    else if (0x80 <= tt && tt <= 0xbf)
3633415Sgblack@eecs.umich.edu        CWP += (CANSAVE + 2);
3643893Shsul@eecs.umich.edu    else if (0xc0 <= tt && tt <= 0xff)
3653415Sgblack@eecs.umich.edu        CWP--;
3663415Sgblack@eecs.umich.edu    else
3673415Sgblack@eecs.umich.edu        changedCWP = false;
3683420Sgblack@eecs.umich.edu
3697741Sgblack@eecs.umich.edu    if (changedCWP) {
3703415Sgblack@eecs.umich.edu        CWP = (CWP + NWindows) % NWindows;
3714172Ssaidi@eecs.umich.edu        tc->setMiscReg(MISCREG_CWP, CWP);
3723415Sgblack@eecs.umich.edu    }
3733415Sgblack@eecs.umich.edu}
3743415Sgblack@eecs.umich.edu
3757741Sgblack@eecs.umich.edu/**
3767741Sgblack@eecs.umich.edu * This sets everything up for a normal trap except for actually jumping to
3777741Sgblack@eecs.umich.edu * the handler.
3787741Sgblack@eecs.umich.edu */
3797741Sgblack@eecs.umich.edu
3807741Sgblack@eecs.umich.eduvoid
3817741Sgblack@eecs.umich.edudoNormalFault(ThreadContext *tc, TrapType tt, bool gotoHpriv)
3827741Sgblack@eecs.umich.edu{
3837741Sgblack@eecs.umich.edu    MiscReg TL = tc->readMiscRegNoEffect(MISCREG_TL);
3847741Sgblack@eecs.umich.edu    MiscReg TSTATE = tc->readMiscRegNoEffect(MISCREG_TSTATE);
3858829Sgblack@eecs.umich.edu    PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
3868829Sgblack@eecs.umich.edu    HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
3877741Sgblack@eecs.umich.edu    MiscReg CCR = tc->readIntReg(NumIntArchRegs + 2);
3887741Sgblack@eecs.umich.edu    MiscReg ASI = tc->readMiscRegNoEffect(MISCREG_ASI);
3897741Sgblack@eecs.umich.edu    MiscReg CWP = tc->readMiscRegNoEffect(MISCREG_CWP);
3907741Sgblack@eecs.umich.edu    MiscReg CANSAVE = tc->readIntReg(NumIntArchRegs + 3);
3917741Sgblack@eecs.umich.edu    MiscReg GL = tc->readMiscRegNoEffect(MISCREG_GL);
3927741Sgblack@eecs.umich.edu    PCState pc = tc->pcState();
3937741Sgblack@eecs.umich.edu
3947741Sgblack@eecs.umich.edu    // Increment the trap level
3957741Sgblack@eecs.umich.edu    TL++;
3967741Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TL, TL);
3977741Sgblack@eecs.umich.edu
3988829Sgblack@eecs.umich.edu    Addr pcMask = pstate.am ? mask(32) : mask(64);
3997741Sgblack@eecs.umich.edu
4007741Sgblack@eecs.umich.edu    // Save off state
4017741Sgblack@eecs.umich.edu
4027741Sgblack@eecs.umich.edu    // set TSTATE.gl to gl
4037741Sgblack@eecs.umich.edu    replaceBits(TSTATE, 42, 40, GL);
4047741Sgblack@eecs.umich.edu    // set TSTATE.ccr to ccr
4057741Sgblack@eecs.umich.edu    replaceBits(TSTATE, 39, 32, CCR);
4067741Sgblack@eecs.umich.edu    // set TSTATE.asi to asi
4077741Sgblack@eecs.umich.edu    replaceBits(TSTATE, 31, 24, ASI);
4087741Sgblack@eecs.umich.edu    // set TSTATE.pstate to pstate
4098829Sgblack@eecs.umich.edu    replaceBits(TSTATE, 20, 8, pstate);
4107741Sgblack@eecs.umich.edu    // set TSTATE.cwp to cwp
4117741Sgblack@eecs.umich.edu    replaceBits(TSTATE, 4, 0, CWP);
4127741Sgblack@eecs.umich.edu
4137741Sgblack@eecs.umich.edu    // Write back TSTATE
4147741Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TSTATE, TSTATE);
4157741Sgblack@eecs.umich.edu
4167741Sgblack@eecs.umich.edu    // set TPC to PC
4177741Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TPC, pc.pc() & pcMask);
4187741Sgblack@eecs.umich.edu    // set TNPC to NPC
4197741Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TNPC, pc.npc() & pcMask);
4207741Sgblack@eecs.umich.edu
4217741Sgblack@eecs.umich.edu    // set HTSTATE.hpstate to hpstate
4228829Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_HTSTATE, hpstate);
4237741Sgblack@eecs.umich.edu
4247741Sgblack@eecs.umich.edu    // TT = trap type;
4257741Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TT, tt);
4267741Sgblack@eecs.umich.edu
4277741Sgblack@eecs.umich.edu    // Update the global register level
4287741Sgblack@eecs.umich.edu    if (!gotoHpriv)
4297741Sgblack@eecs.umich.edu        tc->setMiscReg(MISCREG_GL, min<int>(GL + 1, MaxPGL));
4307741Sgblack@eecs.umich.edu    else
4317741Sgblack@eecs.umich.edu        tc->setMiscReg(MISCREG_GL, min<int>(GL + 1, MaxGL));
4327741Sgblack@eecs.umich.edu
4338829Sgblack@eecs.umich.edu    // pstate.mm is unchanged
4348829Sgblack@eecs.umich.edu    pstate.pef = 1; // PSTATE.pef = whether or not an fpu is present
4358829Sgblack@eecs.umich.edu    pstate.am = 0;
4368829Sgblack@eecs.umich.edu    pstate.ie = 0;
4378829Sgblack@eecs.umich.edu    // pstate.tle is unchanged
4388829Sgblack@eecs.umich.edu    // pstate.tct = 0
4397741Sgblack@eecs.umich.edu
4407741Sgblack@eecs.umich.edu    if (gotoHpriv) {
4418829Sgblack@eecs.umich.edu        pstate.cle = 0;
4427741Sgblack@eecs.umich.edu        // The manual says PSTATE.priv should be 0, but Legion leaves it alone
4438829Sgblack@eecs.umich.edu        hpstate.red = 0;
4448829Sgblack@eecs.umich.edu        hpstate.hpriv = 1;
4458829Sgblack@eecs.umich.edu        hpstate.ibe = 0;
4468829Sgblack@eecs.umich.edu        // hpstate.tlz is unchanged
4478829Sgblack@eecs.umich.edu        tc->setMiscRegNoEffect(MISCREG_HPSTATE, hpstate);
4487741Sgblack@eecs.umich.edu    } else { // we are going to priv
4498829Sgblack@eecs.umich.edu        pstate.priv = 1;
4508829Sgblack@eecs.umich.edu        pstate.cle = pstate.tle;
4517741Sgblack@eecs.umich.edu    }
4528829Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_PSTATE, pstate);
4537741Sgblack@eecs.umich.edu
4547741Sgblack@eecs.umich.edu
4557741Sgblack@eecs.umich.edu    bool changedCWP = true;
4567741Sgblack@eecs.umich.edu    if (tt == 0x24)
4577741Sgblack@eecs.umich.edu        CWP++;
4587741Sgblack@eecs.umich.edu    else if (0x80 <= tt && tt <= 0xbf)
4597741Sgblack@eecs.umich.edu        CWP += (CANSAVE + 2);
4607741Sgblack@eecs.umich.edu    else if (0xc0 <= tt && tt <= 0xff)
4617741Sgblack@eecs.umich.edu        CWP--;
4627741Sgblack@eecs.umich.edu    else
4637741Sgblack@eecs.umich.edu        changedCWP = false;
4647741Sgblack@eecs.umich.edu
4657741Sgblack@eecs.umich.edu    if (changedCWP) {
4667741Sgblack@eecs.umich.edu        CWP = (CWP + NWindows) % NWindows;
4677741Sgblack@eecs.umich.edu        tc->setMiscReg(MISCREG_CWP, CWP);
4687741Sgblack@eecs.umich.edu    }
4697741Sgblack@eecs.umich.edu}
4707741Sgblack@eecs.umich.edu
4717741Sgblack@eecs.umich.eduvoid
4727741Sgblack@eecs.umich.edugetREDVector(MiscReg TT, Addr &PC, Addr &NPC)
4733578Sgblack@eecs.umich.edu{
4743585Sgblack@eecs.umich.edu    //XXX The following constant might belong in a header file.
4753603Ssaidi@eecs.umich.edu    const Addr RSTVAddr = 0xFFF0000000ULL;
4763595Sgblack@eecs.umich.edu    PC = RSTVAddr | ((TT << 5) & 0xFF);
4773578Sgblack@eecs.umich.edu    NPC = PC + sizeof(MachInst);
4783578Sgblack@eecs.umich.edu}
4793578Sgblack@eecs.umich.edu
4807741Sgblack@eecs.umich.eduvoid
4817741Sgblack@eecs.umich.edugetHyperVector(ThreadContext * tc, Addr &PC, Addr &NPC, MiscReg TT)
4823578Sgblack@eecs.umich.edu{
4834172Ssaidi@eecs.umich.edu    Addr HTBA = tc->readMiscRegNoEffect(MISCREG_HTBA);
4843578Sgblack@eecs.umich.edu    PC = (HTBA & ~mask(14)) | ((TT << 5) & mask(14));
4853578Sgblack@eecs.umich.edu    NPC = PC + sizeof(MachInst);
4863578Sgblack@eecs.umich.edu}
4873578Sgblack@eecs.umich.edu
4887741Sgblack@eecs.umich.eduvoid
4897741Sgblack@eecs.umich.edugetPrivVector(ThreadContext *tc, Addr &PC, Addr &NPC, MiscReg TT, MiscReg TL)
4903578Sgblack@eecs.umich.edu{
4914172Ssaidi@eecs.umich.edu    Addr TBA = tc->readMiscRegNoEffect(MISCREG_TBA);
4923578Sgblack@eecs.umich.edu    PC = (TBA & ~mask(15)) |
4933578Sgblack@eecs.umich.edu        (TL > 1 ? (1 << 14) : 0) |
4943578Sgblack@eecs.umich.edu        ((TT << 5) & mask(14));
4953578Sgblack@eecs.umich.edu    NPC = PC + sizeof(MachInst);
4963578Sgblack@eecs.umich.edu}
4973578Sgblack@eecs.umich.edu
4987741Sgblack@eecs.umich.eduvoid
49910417Sandreas.hansson@arm.comSparcFaultBase::invoke(ThreadContext * tc, const StaticInstPtr &inst)
5002221SN/A{
5012680Sktlim@umich.edu    FaultBase::invoke(tc);
5028750Sgblack@eecs.umich.edu    if (!FullSystem)
5038750Sgblack@eecs.umich.edu        return;
5048750Sgblack@eecs.umich.edu
5052223SN/A    countStat()++;
5062221SN/A
5077741Sgblack@eecs.umich.edu    // We can refer to this to see what the trap level -was-, but something
5087741Sgblack@eecs.umich.edu    // in the middle could change it in the regfile out from under us.
5094172Ssaidi@eecs.umich.edu    MiscReg tl = tc->readMiscRegNoEffect(MISCREG_TL);
5104172Ssaidi@eecs.umich.edu    MiscReg tt = tc->readMiscRegNoEffect(MISCREG_TT);
5118829Sgblack@eecs.umich.edu    PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
5128829Sgblack@eecs.umich.edu    HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
5133578Sgblack@eecs.umich.edu
5143578Sgblack@eecs.umich.edu    Addr PC, NPC;
5153578Sgblack@eecs.umich.edu
5163578Sgblack@eecs.umich.edu    PrivilegeLevel current;
5178829Sgblack@eecs.umich.edu    if (hpstate.hpriv)
5183746Sgblack@eecs.umich.edu        current = Hyperprivileged;
5198829Sgblack@eecs.umich.edu    else if (pstate.priv)
5203578Sgblack@eecs.umich.edu        current = Privileged;
5213578Sgblack@eecs.umich.edu    else
5223746Sgblack@eecs.umich.edu        current = User;
5233578Sgblack@eecs.umich.edu
5243578Sgblack@eecs.umich.edu    PrivilegeLevel level = getNextLevel(current);
5253578Sgblack@eecs.umich.edu
5268829Sgblack@eecs.umich.edu    if (hpstate.red || (tl == MaxTL - 1)) {
5273595Sgblack@eecs.umich.edu        getREDVector(5, PC, NPC);
5283893Shsul@eecs.umich.edu        doREDFault(tc, tt);
5297741Sgblack@eecs.umich.edu        // This changes the hpstate and pstate, so we need to make sure we
5307741Sgblack@eecs.umich.edu        // save the old version on the trap stack in doREDFault.
5313578Sgblack@eecs.umich.edu        enterREDState(tc);
5323893Shsul@eecs.umich.edu    } else if (tl == MaxTL) {
5333825Ssaidi@eecs.umich.edu        panic("Should go to error state here.. crap\n");
5347741Sgblack@eecs.umich.edu        // Do error_state somehow?
5357741Sgblack@eecs.umich.edu        // Probably inject a WDR fault using the interrupt mechanism.
5367741Sgblack@eecs.umich.edu        // What should the PC and NPC be set to?
5373893Shsul@eecs.umich.edu    } else if (tl > MaxPTL && level == Privileged) {
5387741Sgblack@eecs.umich.edu        // guest_watchdog fault
5393578Sgblack@eecs.umich.edu        doNormalFault(tc, trapType(), true);
5403585Sgblack@eecs.umich.edu        getHyperVector(tc, PC, NPC, 2);
5413893Shsul@eecs.umich.edu    } else if (level == Hyperprivileged ||
5425570Snate@binkert.org               (level == Privileged && trapType() >= 384)) {
5433578Sgblack@eecs.umich.edu        doNormalFault(tc, trapType(), true);
5443585Sgblack@eecs.umich.edu        getHyperVector(tc, PC, NPC, trapType());
5453826Ssaidi@eecs.umich.edu    } else {
5463578Sgblack@eecs.umich.edu        doNormalFault(tc, trapType(), false);
5477741Sgblack@eecs.umich.edu        getPrivVector(tc, PC, NPC, trapType(), tl + 1);
5483578Sgblack@eecs.umich.edu    }
5493578Sgblack@eecs.umich.edu
5507720Sgblack@eecs.umich.edu    PCState pc;
5517720Sgblack@eecs.umich.edu    pc.pc(PC);
5527720Sgblack@eecs.umich.edu    pc.npc(NPC);
5537720Sgblack@eecs.umich.edu    pc.nnpc(NPC + sizeof(MachInst));
5547720Sgblack@eecs.umich.edu    pc.upc(0);
5557720Sgblack@eecs.umich.edu    pc.nupc(1);
5567720Sgblack@eecs.umich.edu    tc->pcState(pc);
5573420Sgblack@eecs.umich.edu}
5582221SN/A
5597741Sgblack@eecs.umich.eduvoid
56010417Sandreas.hansson@arm.comPowerOnReset::invoke(ThreadContext *tc, const StaticInstPtr &inst)
5613523Sgblack@eecs.umich.edu{
5627741Sgblack@eecs.umich.edu    // For SPARC, when a system is first started, there is a power
5637741Sgblack@eecs.umich.edu    // on reset Trap which sets the processor into the following state.
5647741Sgblack@eecs.umich.edu    // Bits that aren't set aren't defined on startup.
5653595Sgblack@eecs.umich.edu
5664172Ssaidi@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TL, MaxTL);
5674172Ssaidi@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TT, trapType());
5684172Ssaidi@eecs.umich.edu    tc->setMiscReg(MISCREG_GL, MaxGL);
5693595Sgblack@eecs.umich.edu
5708829Sgblack@eecs.umich.edu    PSTATE pstate = 0;
5718829Sgblack@eecs.umich.edu    pstate.pef = 1;
5728829Sgblack@eecs.umich.edu    pstate.priv = 1;
5738829Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_PSTATE, pstate);
5743595Sgblack@eecs.umich.edu
5757741Sgblack@eecs.umich.edu    // Turn on red and hpriv, set everything else to 0
5768829Sgblack@eecs.umich.edu    HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
5778829Sgblack@eecs.umich.edu    hpstate.red = 1;
5788829Sgblack@eecs.umich.edu    hpstate.hpriv = 1;
5798829Sgblack@eecs.umich.edu    hpstate.ibe = 0;
5808829Sgblack@eecs.umich.edu    hpstate.tlz = 0;
5818829Sgblack@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_HPSTATE, hpstate);
5823595Sgblack@eecs.umich.edu
5837741Sgblack@eecs.umich.edu    // The tick register is unreadable by nonprivileged software
5844172Ssaidi@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_TICK, 1ULL << 63);
5853595Sgblack@eecs.umich.edu
5867741Sgblack@eecs.umich.edu    // Enter RED state. We do this last so that the actual state preserved in
5877741Sgblack@eecs.umich.edu    // the trap stack is the state from before this fault.
5883746Sgblack@eecs.umich.edu    enterREDState(tc);
5893746Sgblack@eecs.umich.edu
5903595Sgblack@eecs.umich.edu    Addr PC, NPC;
5913595Sgblack@eecs.umich.edu    getREDVector(trapType(), PC, NPC);
5927720Sgblack@eecs.umich.edu
5937720Sgblack@eecs.umich.edu    PCState pc;
5947720Sgblack@eecs.umich.edu    pc.pc(PC);
5957720Sgblack@eecs.umich.edu    pc.npc(NPC);
5967720Sgblack@eecs.umich.edu    pc.nnpc(NPC + sizeof(MachInst));
5977720Sgblack@eecs.umich.edu    pc.upc(0);
5987720Sgblack@eecs.umich.edu    pc.nupc(1);
5997720Sgblack@eecs.umich.edu    tc->pcState(pc);
6003595Sgblack@eecs.umich.edu
6017741Sgblack@eecs.umich.edu    // These registers are specified as "undefined" after a POR, and they
6027741Sgblack@eecs.umich.edu    // should have reasonable values after the miscregfile is reset
6033523Sgblack@eecs.umich.edu    /*
6043595Sgblack@eecs.umich.edu    // Clear all the soft interrupt bits
6053595Sgblack@eecs.umich.edu    softint = 0;
6063595Sgblack@eecs.umich.edu    // disable timer compare interrupts, reset tick_cmpr
6074172Ssaidi@eecs.umich.edu    tc->setMiscRegNoEffect(MISCREG_
6083595Sgblack@eecs.umich.edu    tick_cmprFields.int_dis = 1;
6093523Sgblack@eecs.umich.edu    tick_cmprFields.tick_cmpr = 0; // Reset to 0 for pretty printing
6107741Sgblack@eecs.umich.edu    stickFields.npt = 1; // The TICK register is unreadable by by !priv
6113523Sgblack@eecs.umich.edu    stick_cmprFields.int_dis = 1; // disable timer compare interrupts
6123523Sgblack@eecs.umich.edu    stick_cmprFields.tick_cmpr = 0; // Reset to 0 for pretty printing
6133523Sgblack@eecs.umich.edu
6143523Sgblack@eecs.umich.edu    tt[tl] = _trapType;
6153523Sgblack@eecs.umich.edu
6163523Sgblack@eecs.umich.edu    hintp = 0; // no interrupts pending
6173523Sgblack@eecs.umich.edu    hstick_cmprFields.int_dis = 1; // disable timer compare interrupts
6183523Sgblack@eecs.umich.edu    hstick_cmprFields.tick_cmpr = 0; // Reset to 0 for pretty printing
6193523Sgblack@eecs.umich.edu    */
6202221SN/A}
6212221SN/A
6227741Sgblack@eecs.umich.eduvoid
62310417Sandreas.hansson@arm.comFastInstructionAccessMMUMiss::invoke(ThreadContext *tc,
62410417Sandreas.hansson@arm.com                                     const StaticInstPtr &inst)
6254997Sgblack@eecs.umich.edu{
6268767Sgblack@eecs.umich.edu    if (FullSystem) {
6278767Sgblack@eecs.umich.edu        SparcFaultBase::invoke(tc, inst);
6288806Sgblack@eecs.umich.edu        return;
6298806Sgblack@eecs.umich.edu    }
6308806Sgblack@eecs.umich.edu
6318806Sgblack@eecs.umich.edu    Process *p = tc->getProcessPtr();
63212455Sgabeblack@google.com    TlbEntry *entry = p->pTable->lookup(vaddr);
63312455Sgabeblack@google.com    panic_if(!entry, "Tried to execute unmapped address %#x.\n", vaddr);
63411850Sbrandon.potter@amd.com
63512455Sgabeblack@google.com    Addr alignedvaddr = p->pTable->pageAlign(vaddr);
63611850Sbrandon.potter@amd.com
63712455Sgabeblack@google.com    // Grab fields used during instruction translation to figure out
63812455Sgabeblack@google.com    // which context to use.
63912455Sgabeblack@google.com    uint64_t tlbdata = tc->readMiscRegNoEffect(MISCREG_TLB_DATA);
64011850Sbrandon.potter@amd.com
64112455Sgabeblack@google.com    // Inside a VM, a real address is the address that guest OS would
64212455Sgabeblack@google.com    // interpret to be a physical address. To map to the physical address,
64312455Sgabeblack@google.com    // it still needs to undergo a translation. The instruction
64412455Sgabeblack@google.com    // translation code in the SPARC ITLB code assumes that the context is
64512455Sgabeblack@google.com    // zero (kernel-level) if real addressing is being used.
64612455Sgabeblack@google.com    bool is_real_address = !bits(tlbdata, 4);
64711850Sbrandon.potter@amd.com
64812455Sgabeblack@google.com    // The SPARC ITLB code assumes that traps are executed in context
64912455Sgabeblack@google.com    // zero so we carry that assumption through here.
65012455Sgabeblack@google.com    bool trapped = bits(tlbdata, 18, 16) > 0;
65111850Sbrandon.potter@amd.com
65212455Sgabeblack@google.com    // The primary context acts as a PASID. It allows the MMU to
65312455Sgabeblack@google.com    // distinguish between virtual addresses that would alias to the
65412455Sgabeblack@google.com    // same physical address (if two or more processes shared the same
65512455Sgabeblack@google.com    // virtual address mapping).
65612455Sgabeblack@google.com    int primary_context = bits(tlbdata, 47, 32);
65711850Sbrandon.potter@amd.com
65812455Sgabeblack@google.com    // The partition id distinguishes between virtualized environments.
65912455Sgabeblack@google.com    int const partition_id = 0;
66011850Sbrandon.potter@amd.com
66112455Sgabeblack@google.com    // Given the assumptions in the translateInst code in the SPARC ITLB,
66212455Sgabeblack@google.com    // the logic works out to the following for the context.
66312455Sgabeblack@google.com    int context_id = (is_real_address || trapped) ? 0 : primary_context;
66412455Sgabeblack@google.com
66512455Sgabeblack@google.com    // Insert the TLB entry.
66612455Sgabeblack@google.com    // The entry specifying whether the address is "real" is set to
66712455Sgabeblack@google.com    // false for syscall emulation mode regardless of whether the
66812455Sgabeblack@google.com    // address is real in preceding code. Not sure sure that this is
66912455Sgabeblack@google.com    // correct, but also not sure if it matters at all.
67012455Sgabeblack@google.com    dynamic_cast<TLB *>(tc->getITBPtr())->
67112455Sgabeblack@google.com        insert(alignedvaddr, partition_id, context_id, false, entry->pte);
6724997Sgblack@eecs.umich.edu}
6734997Sgblack@eecs.umich.edu
6747741Sgblack@eecs.umich.eduvoid
67510417Sandreas.hansson@arm.comFastDataAccessMMUMiss::invoke(ThreadContext *tc, const StaticInstPtr &inst)
6764997Sgblack@eecs.umich.edu{
6778767Sgblack@eecs.umich.edu    if (FullSystem) {
6788767Sgblack@eecs.umich.edu        SparcFaultBase::invoke(tc, inst);
6798806Sgblack@eecs.umich.edu        return;
6808806Sgblack@eecs.umich.edu    }
6818806Sgblack@eecs.umich.edu
6828806Sgblack@eecs.umich.edu    Process *p = tc->getProcessPtr();
68312455Sgabeblack@google.com    TlbEntry *entry = p->pTable->lookup(vaddr);
68412455Sgabeblack@google.com    if (!entry && p->fixupStackFault(vaddr))
68512455Sgabeblack@google.com        entry = p->pTable->lookup(vaddr);
68612455Sgabeblack@google.com    panic_if(!entry, "Tried to access unmapped address %#x.\n", vaddr);
68711850Sbrandon.potter@amd.com
68812455Sgabeblack@google.com    Addr alignedvaddr = p->pTable->pageAlign(vaddr);
68911850Sbrandon.potter@amd.com
69012455Sgabeblack@google.com    // Grab fields used during data translation to figure out
69112455Sgabeblack@google.com    // which context to use.
69212455Sgabeblack@google.com    uint64_t tlbdata = tc->readMiscRegNoEffect(MISCREG_TLB_DATA);
69311850Sbrandon.potter@amd.com
69412455Sgabeblack@google.com    // The primary context acts as a PASID. It allows the MMU to
69512455Sgabeblack@google.com    // distinguish between virtual addresses that would alias to the
69612455Sgabeblack@google.com    // same physical address (if two or more processes shared the same
69712455Sgabeblack@google.com    // virtual address mapping). There's a secondary context used in the
69812455Sgabeblack@google.com    // DTLB translation code, but it should __probably__ be zero for
69912455Sgabeblack@google.com    // syscall emulation code. (The secondary context is used by Solaris
70012455Sgabeblack@google.com    // to allow kernel privilege code to access user space code:
70112455Sgabeblack@google.com    // [ISBN 0-13-022496-0]:PG199.)
70212455Sgabeblack@google.com    int primary_context = bits(tlbdata, 47, 32);
70311850Sbrandon.potter@amd.com
70412455Sgabeblack@google.com    // "Hyper-Privileged Mode" is in use. There are three main modes of
70512455Sgabeblack@google.com    // operation for Sparc: Hyper-Privileged Mode, Privileged Mode, and
70612455Sgabeblack@google.com    // User Mode.
70712455Sgabeblack@google.com    int hpriv = bits(tlbdata, 0);
70811850Sbrandon.potter@amd.com
70912455Sgabeblack@google.com    // Reset, Error and Debug state is in use. Something horrible has
71012455Sgabeblack@google.com    // happened or the system is operating in Reset Mode.
71112455Sgabeblack@google.com    int red = bits(tlbdata, 1);
71211850Sbrandon.potter@amd.com
71312455Sgabeblack@google.com    // Inside a VM, a real address is the address that guest OS would
71412455Sgabeblack@google.com    // interpret to be a physical address. To map to the physical address,
71512455Sgabeblack@google.com    // it still needs to undergo a translation. The instruction
71612455Sgabeblack@google.com    // translation code in the SPARC ITLB code assumes that the context is
71712455Sgabeblack@google.com    // zero (kernel-level) if real addressing is being used.
71812455Sgabeblack@google.com    int is_real_address = !bits(tlbdata, 5);
71911850Sbrandon.potter@amd.com
72012455Sgabeblack@google.com    // Grab the address space identifier register from the thread context.
72112455Sgabeblack@google.com    // XXX: Inspecting how setMiscReg and setMiscRegNoEffect behave for
72212455Sgabeblack@google.com    // MISCREG_ASI causes me to think that the ASI register implementation
72312455Sgabeblack@google.com    // might be bugged. The NoEffect variant changes the ASI register
72412455Sgabeblack@google.com    // value in the architectural state while the normal variant changes
72512455Sgabeblack@google.com    // the context field in the thread context's currently decoded request
72612455Sgabeblack@google.com    // but does not directly affect the ASI register value in the
72712455Sgabeblack@google.com    // architectural state. The ASI values and the context field in the
72812455Sgabeblack@google.com    // request packet seem to have completely different uses.
72912455Sgabeblack@google.com    MiscReg reg_asi = tc->readMiscRegNoEffect(MISCREG_ASI);
73012455Sgabeblack@google.com    ASI asi = static_cast<ASI>(reg_asi);
73111850Sbrandon.potter@amd.com
73212455Sgabeblack@google.com    // The SPARC DTLB code assumes that traps are executed in context
73312455Sgabeblack@google.com    // zero if the asi value is ASI_IMPLICIT (which is 0x0). There's also
73412455Sgabeblack@google.com    // an assumption that the nucleus address space is being used, but
73512455Sgabeblack@google.com    // the context is the relevant issue since we need to pass it to TLB.
73612455Sgabeblack@google.com    bool trapped = bits(tlbdata, 18, 16) > 0;
73711850Sbrandon.potter@amd.com
73812455Sgabeblack@google.com    // Given the assumptions in the translateData code in the SPARC DTLB,
73912455Sgabeblack@google.com    // the logic works out to the following for the context.
74012455Sgabeblack@google.com    int context_id = ((!hpriv && !red && is_real_address) ||
74112455Sgabeblack@google.com                      asiIsReal(asi) ||
74212455Sgabeblack@google.com                      (trapped && asi == ASI_IMPLICIT))
74312455Sgabeblack@google.com                     ? 0 : primary_context;
74411850Sbrandon.potter@amd.com
74512455Sgabeblack@google.com    // The partition id distinguishes between virtualized environments.
74612455Sgabeblack@google.com    int const partition_id = 0;
74712455Sgabeblack@google.com
74812455Sgabeblack@google.com    // Insert the TLB entry.
74912455Sgabeblack@google.com    // The entry specifying whether the address is "real" is set to
75012455Sgabeblack@google.com    // false for syscall emulation mode regardless of whether the
75112455Sgabeblack@google.com    // address is real in preceding code. Not sure sure that this is
75212455Sgabeblack@google.com    // correct, but also not sure if it matters at all.
75312455Sgabeblack@google.com    dynamic_cast<TLB *>(tc->getDTBPtr())->
75412455Sgabeblack@google.com        insert(alignedvaddr, partition_id, context_id, false, entry->pte);
7554997Sgblack@eecs.umich.edu}
7564997Sgblack@eecs.umich.edu
7577741Sgblack@eecs.umich.eduvoid
75810417Sandreas.hansson@arm.comSpillNNormal::invoke(ThreadContext *tc, const StaticInstPtr &inst)
7593415Sgblack@eecs.umich.edu{
7608778Sgblack@eecs.umich.edu    if (FullSystem) {
7618778Sgblack@eecs.umich.edu        SparcFaultBase::invoke(tc, inst);
7628806Sgblack@eecs.umich.edu        return;
7638806Sgblack@eecs.umich.edu    }
7643415Sgblack@eecs.umich.edu
7658806Sgblack@eecs.umich.edu    doNormalFault(tc, trapType(), false);
7663415Sgblack@eecs.umich.edu
7678806Sgblack@eecs.umich.edu    Process *p = tc->getProcessPtr();
7683415Sgblack@eecs.umich.edu
76911851Sbrandon.potter@amd.com    SparcProcess *sp = dynamic_cast<SparcProcess *>(p);
77011851Sbrandon.potter@amd.com    assert(sp);
7718806Sgblack@eecs.umich.edu
7728806Sgblack@eecs.umich.edu    // Then adjust the PC and NPC
77311851Sbrandon.potter@amd.com    tc->pcState(sp->readSpillStart());
7743415Sgblack@eecs.umich.edu}
7753415Sgblack@eecs.umich.edu
7767741Sgblack@eecs.umich.eduvoid
77710417Sandreas.hansson@arm.comFillNNormal::invoke(ThreadContext *tc, const StaticInstPtr &inst)
7783415Sgblack@eecs.umich.edu{
7798778Sgblack@eecs.umich.edu    if (FullSystem) {
7808778Sgblack@eecs.umich.edu        SparcFaultBase::invoke(tc, inst);
7818806Sgblack@eecs.umich.edu        return;
7828806Sgblack@eecs.umich.edu    }
7833415Sgblack@eecs.umich.edu
7848806Sgblack@eecs.umich.edu    doNormalFault(tc, trapType(), false);
7853415Sgblack@eecs.umich.edu
7868806Sgblack@eecs.umich.edu    Process *p = tc->getProcessPtr();
7873415Sgblack@eecs.umich.edu
78811851Sbrandon.potter@amd.com    SparcProcess *sp = dynamic_cast<SparcProcess *>(p);
78911851Sbrandon.potter@amd.com    assert(sp);
7908806Sgblack@eecs.umich.edu
7918806Sgblack@eecs.umich.edu    // Then adjust the PC and NPC
79211851Sbrandon.potter@amd.com    tc->pcState(sp->readFillStart());
7933415Sgblack@eecs.umich.edu}
7943415Sgblack@eecs.umich.edu
7957741Sgblack@eecs.umich.eduvoid
79610417Sandreas.hansson@arm.comTrapInstruction::invoke(ThreadContext *tc, const StaticInstPtr &inst)
7974111Sgblack@eecs.umich.edu{
7988778Sgblack@eecs.umich.edu    if (FullSystem) {
7998778Sgblack@eecs.umich.edu        SparcFaultBase::invoke(tc, inst);
8008806Sgblack@eecs.umich.edu        return;
8018806Sgblack@eecs.umich.edu    }
8024111Sgblack@eecs.umich.edu
8038806Sgblack@eecs.umich.edu    // In SE, this mechanism is how the process requests a service from
8048806Sgblack@eecs.umich.edu    // the operating system. We'll get the process object from the thread
8058806Sgblack@eecs.umich.edu    // context and let it service the request.
8064111Sgblack@eecs.umich.edu
8078806Sgblack@eecs.umich.edu    Process *p = tc->getProcessPtr();
8084111Sgblack@eecs.umich.edu
80911851Sbrandon.potter@amd.com    SparcProcess *sp = dynamic_cast<SparcProcess *>(p);
81011851Sbrandon.potter@amd.com    assert(sp);
8114111Sgblack@eecs.umich.edu
81211877Sbrandon.potter@amd.com    Fault fault;
81311877Sbrandon.potter@amd.com    sp->handleTrap(_n, tc, &fault);
8148806Sgblack@eecs.umich.edu
8158806Sgblack@eecs.umich.edu    // We need to explicitly advance the pc, since that's not done for us
8168806Sgblack@eecs.umich.edu    // on a faulting instruction
8178806Sgblack@eecs.umich.edu    PCState pc = tc->pcState();
8188806Sgblack@eecs.umich.edu    pc.advance();
8198806Sgblack@eecs.umich.edu    tc->pcState(pc);
8204111Sgblack@eecs.umich.edu}
8214111Sgblack@eecs.umich.edu
8222223SN/A} // namespace SparcISA
8232221SN/A
824