2006-11-07 00:30:28 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
2007-03-03 23:22:47 +01:00
|
|
|
*
|
|
|
|
* Authors: Ali Saidi
|
|
|
|
* Lisa Hsu
|
2006-11-07 00:30:28 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_SPARC_INTERRUPT_HH__
|
|
|
|
#define __ARCH_SPARC_INTERRUPT_HH__
|
|
|
|
|
|
|
|
#include "arch/sparc/faults.hh"
|
2007-03-03 23:22:47 +01:00
|
|
|
#include "arch/sparc/isa_traits.hh"
|
2009-07-10 05:28:50 +02:00
|
|
|
#include "arch/sparc/registers.hh"
|
2006-12-08 20:37:31 +01:00
|
|
|
#include "cpu/thread_context.hh"
|
2011-04-15 19:44:32 +02:00
|
|
|
#include "debug/Interrupt.hh"
|
2008-10-12 18:09:56 +02:00
|
|
|
#include "params/SparcInterrupts.hh"
|
|
|
|
#include "sim/sim_object.hh"
|
2006-12-08 20:37:31 +01:00
|
|
|
|
2006-11-07 00:30:28 +01:00
|
|
|
namespace SparcISA
|
|
|
|
{
|
2007-01-09 00:18:28 +01:00
|
|
|
|
2008-10-12 18:09:56 +02:00
|
|
|
class Interrupts : public SimObject
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
|
|
|
private:
|
2009-01-26 05:29:03 +01:00
|
|
|
BaseCPU * cpu;
|
|
|
|
|
2007-03-03 23:22:47 +01:00
|
|
|
uint64_t interrupts[NumInterruptTypes];
|
|
|
|
uint64_t intStatus;
|
2006-11-07 00:30:28 +01:00
|
|
|
|
2007-02-03 00:05:21 +01:00
|
|
|
public:
|
2009-01-26 05:29:03 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
setCPU(BaseCPU * _cpu)
|
|
|
|
{
|
|
|
|
cpu = _cpu;
|
|
|
|
}
|
|
|
|
|
2008-10-12 18:09:56 +02:00
|
|
|
typedef SparcInterruptsParams Params;
|
|
|
|
|
|
|
|
const Params *
|
|
|
|
params() const
|
|
|
|
{
|
|
|
|
return dynamic_cast<const Params *>(_params);
|
|
|
|
}
|
|
|
|
|
2009-01-26 05:29:03 +01:00
|
|
|
Interrupts(Params * p) : SimObject(p), cpu(NULL)
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2008-10-21 16:12:53 +02:00
|
|
|
clearAll();
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2006-12-08 20:37:31 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
int
|
|
|
|
InterruptLevel(uint64_t softint)
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2007-03-03 23:22:47 +01:00
|
|
|
if (softint & 0x10000 || softint & 0x1)
|
|
|
|
return 14;
|
|
|
|
|
|
|
|
int level = 15;
|
|
|
|
while (level > 0 && !(1 << level & softint))
|
|
|
|
level--;
|
|
|
|
if (1 << level & softint)
|
|
|
|
return level;
|
|
|
|
return 0;
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2007-01-09 00:18:28 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
void
|
|
|
|
post(int int_num, int index)
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2007-03-03 23:22:47 +01:00
|
|
|
DPRINTF(Interrupt, "Interrupt %d:%d posted\n", int_num, index);
|
|
|
|
assert(int_num >= 0 && int_num < NumInterruptTypes);
|
|
|
|
assert(index >= 0 && index < 64);
|
2006-11-07 00:30:28 +01:00
|
|
|
|
2007-03-03 23:22:47 +01:00
|
|
|
interrupts[int_num] |= ULL(1) << index;
|
|
|
|
intStatus |= ULL(1) << int_num;
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2006-12-08 20:37:31 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
void
|
|
|
|
clear(int int_num, int index)
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2007-03-03 23:22:47 +01:00
|
|
|
DPRINTF(Interrupt, "Interrupt %d:%d cleared\n", int_num, index);
|
|
|
|
assert(int_num >= 0 && int_num < NumInterruptTypes);
|
|
|
|
assert(index >= 0 && index < 64);
|
2006-11-07 00:30:28 +01:00
|
|
|
|
2007-03-03 23:22:47 +01:00
|
|
|
interrupts[int_num] &= ~(ULL(1) << index);
|
|
|
|
if (!interrupts[int_num])
|
|
|
|
intStatus &= ~(ULL(1) << int_num);
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2006-12-08 20:37:31 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
void
|
|
|
|
clearAll()
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2007-03-03 23:22:47 +01:00
|
|
|
for (int i = 0; i < NumInterruptTypes; ++i) {
|
|
|
|
interrupts[i] = 0;
|
|
|
|
}
|
|
|
|
intStatus = 0;
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2006-11-07 00:30:28 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
bool
|
|
|
|
checkInterrupts(ThreadContext *tc) const
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2016-07-21 18:19:15 +02:00
|
|
|
if (!intStatus)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
|
|
|
|
PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
|
|
|
|
|
|
|
|
// THESE ARE IN ORDER OF PRIORITY
|
|
|
|
// since there are early returns, and the highest
|
|
|
|
// priority interrupts should get serviced,
|
|
|
|
// it is v. important that new interrupts are inserted
|
|
|
|
// in the right order of processing
|
|
|
|
if (hpstate.hpriv) {
|
|
|
|
if (pstate.ie) {
|
|
|
|
if (interrupts[IT_HINTP]) {
|
|
|
|
// This will be cleaned by a HINTP write
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (interrupts[IT_INT_VEC]) {
|
|
|
|
// this will be cleared by an ASI read (or write)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (interrupts[IT_TRAP_LEVEL_ZERO]) {
|
|
|
|
// this is cleared by deasserting HPSTATE::tlz
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// HStick matches always happen in priv mode (ie doesn't matter)
|
|
|
|
if (interrupts[IT_HINTP]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (interrupts[IT_INT_VEC]) {
|
|
|
|
// this will be cleared by an ASI read (or write)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (pstate.ie) {
|
|
|
|
if (interrupts[IT_CPU_MONDO]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (interrupts[IT_DEV_MONDO]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (interrupts[IT_SOFT_INT]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (interrupts[IT_RES_ERROR]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} // !hpriv && pstate.ie
|
|
|
|
} // !hpriv
|
|
|
|
|
|
|
|
return false;
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2007-01-20 03:33:36 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
Fault
|
|
|
|
getInterrupt(ThreadContext *tc)
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2016-07-21 18:19:15 +02:00
|
|
|
assert(checkInterrupts(tc));
|
|
|
|
|
2012-02-11 23:16:38 +01:00
|
|
|
HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
|
|
|
|
PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
|
2007-02-03 00:05:21 +01:00
|
|
|
|
|
|
|
// THESE ARE IN ORDER OF PRIORITY
|
|
|
|
// since there are early returns, and the highest
|
|
|
|
// priority interrupts should get serviced,
|
|
|
|
// it is v. important that new interrupts are inserted
|
|
|
|
// in the right order of processing
|
2012-02-11 23:16:38 +01:00
|
|
|
if (hpstate.hpriv) {
|
|
|
|
if (pstate.ie) {
|
2007-03-03 23:22:47 +01:00
|
|
|
if (interrupts[IT_HINTP]) {
|
|
|
|
// This will be cleaned by a HINTP write
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<HstickMatch>();
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2007-03-03 23:22:47 +01:00
|
|
|
if (interrupts[IT_INT_VEC]) {
|
|
|
|
// this will be cleared by an ASI read (or write)
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<InterruptVector>();
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2007-03-03 23:22:47 +01:00
|
|
|
if (interrupts[IT_TRAP_LEVEL_ZERO]) {
|
|
|
|
// this is cleared by deasserting HPSTATE::tlz
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<TrapLevelZero>();
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2007-03-03 23:22:47 +01:00
|
|
|
// HStick matches always happen in priv mode (ie doesn't matter)
|
|
|
|
if (interrupts[IT_HINTP]) {
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<HstickMatch>();
|
2007-03-03 23:22:47 +01:00
|
|
|
}
|
|
|
|
if (interrupts[IT_INT_VEC]) {
|
|
|
|
// this will be cleared by an ASI read (or write)
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<InterruptVector>();
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2012-02-11 23:16:38 +01:00
|
|
|
if (pstate.ie) {
|
2007-03-03 23:22:47 +01:00
|
|
|
if (interrupts[IT_CPU_MONDO]) {
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<CpuMondo>();
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2007-03-03 23:22:47 +01:00
|
|
|
if (interrupts[IT_DEV_MONDO]) {
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<DevMondo>();
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2007-03-03 23:22:47 +01:00
|
|
|
if (interrupts[IT_SOFT_INT]) {
|
2008-10-21 16:12:53 +02:00
|
|
|
int level = InterruptLevel(interrupts[IT_SOFT_INT]);
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<InterruptLevelN>(level);
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2007-03-03 23:22:47 +01:00
|
|
|
|
|
|
|
if (interrupts[IT_RES_ERROR]) {
|
2014-10-16 11:49:51 +02:00
|
|
|
return std::make_shared<ResumableError>();
|
2007-01-09 00:18:28 +01:00
|
|
|
}
|
2012-02-11 23:16:38 +01:00
|
|
|
} // !hpriv && pstate.ie
|
2007-03-03 23:22:47 +01:00
|
|
|
} // !hpriv
|
2007-02-03 00:05:21 +01:00
|
|
|
return NoFault;
|
|
|
|
}
|
2006-11-07 00:30:28 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
void
|
|
|
|
updateIntrInfo(ThreadContext *tc)
|
2010-11-11 11:03:58 +01:00
|
|
|
{}
|
2006-11-14 18:59:57 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
uint64_t
|
|
|
|
get_vec(int int_num)
|
2007-03-03 23:22:47 +01:00
|
|
|
{
|
|
|
|
assert(int_num >= 0 && int_num < NumInterruptTypes);
|
|
|
|
return interrupts[int_num];
|
|
|
|
}
|
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
void
|
2015-10-12 10:07:59 +02:00
|
|
|
serialize(CheckpointOut &cp) const override
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2007-03-03 23:22:47 +01:00
|
|
|
SERIALIZE_ARRAY(interrupts,NumInterruptTypes);
|
|
|
|
SERIALIZE_SCALAR(intStatus);
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
2006-11-07 00:30:28 +01:00
|
|
|
|
2008-10-21 16:12:53 +02:00
|
|
|
void
|
2015-10-12 10:07:59 +02:00
|
|
|
unserialize(CheckpointIn &cp) override
|
2007-02-03 00:05:21 +01:00
|
|
|
{
|
2007-03-03 23:22:47 +01:00
|
|
|
UNSERIALIZE_ARRAY(interrupts,NumInterruptTypes);
|
|
|
|
UNSERIALIZE_SCALAR(intStatus);
|
2007-02-03 00:05:21 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace SPARC_ISA
|
2006-11-07 00:30:28 +01:00
|
|
|
|
|
|
|
#endif // __ARCH_SPARC_INTERRUPT_HH__
|