2006-11-03 08:25:39 +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.
|
|
|
|
*
|
|
|
|
* Authors: Steve Reinhardt
|
|
|
|
* Kevin Lim
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_ALPHA_INTERRUPT_HH__
|
|
|
|
#define __ARCH_ALPHA_INTERRUPT_HH__
|
|
|
|
|
|
|
|
#include "arch/alpha/faults.hh"
|
|
|
|
#include "arch/alpha/isa_traits.hh"
|
2007-03-03 23:22:47 +01:00
|
|
|
#include "base/compiler.hh"
|
2006-11-03 08:25:39 +01:00
|
|
|
#include "cpu/thread_context.hh"
|
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
namespace AlphaISA {
|
|
|
|
|
|
|
|
class Interrupts
|
2006-11-03 08:25:39 +01:00
|
|
|
{
|
2008-09-27 16:25:04 +02:00
|
|
|
private:
|
|
|
|
bool newInfoSet;
|
|
|
|
int newIpl;
|
|
|
|
int newSummary;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
uint64_t interrupts[NumInterruptLevels];
|
|
|
|
uint64_t intstatus;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Interrupts()
|
2006-11-03 08:25:39 +01:00
|
|
|
{
|
2008-09-27 16:25:04 +02:00
|
|
|
memset(interrupts, 0, sizeof(interrupts));
|
|
|
|
intstatus = 0;
|
|
|
|
newInfoSet = false;
|
|
|
|
}
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
void
|
|
|
|
post(int int_num, int index)
|
|
|
|
{
|
|
|
|
DPRINTF(Interrupt, "Interrupt %d:%d posted\n", int_num, index);
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
if (int_num < 0 || int_num >= NumInterruptLevels)
|
|
|
|
panic("int_num out of bounds\n");
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
if (index < 0 || index >= (int)sizeof(uint64_t) * 8)
|
|
|
|
panic("int_num out of bounds\n");
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
interrupts[int_num] |= 1 << index;
|
|
|
|
intstatus |= (ULL(1) << int_num);
|
|
|
|
}
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
void
|
|
|
|
clear(int int_num, int index)
|
|
|
|
{
|
|
|
|
DPRINTF(Interrupt, "Interrupt %d:%d cleared\n", int_num, index);
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
if (int_num < 0 || int_num >= TheISA::NumInterruptLevels)
|
|
|
|
panic("int_num out of bounds\n");
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
if (index < 0 || index >= (int)sizeof(uint64_t) * 8)
|
|
|
|
panic("int_num out of bounds\n");
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
interrupts[int_num] &= ~(1 << index);
|
|
|
|
if (interrupts[int_num] == 0)
|
|
|
|
intstatus &= ~(ULL(1) << int_num);
|
|
|
|
}
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
void
|
|
|
|
clear_all()
|
|
|
|
{
|
|
|
|
DPRINTF(Interrupt, "Interrupts all cleared\n");
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
memset(interrupts, 0, sizeof(interrupts));
|
|
|
|
intstatus = 0;
|
|
|
|
}
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
void
|
|
|
|
serialize(std::ostream &os)
|
|
|
|
{
|
|
|
|
SERIALIZE_ARRAY(interrupts, NumInterruptLevels);
|
|
|
|
SERIALIZE_SCALAR(intstatus);
|
|
|
|
}
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
void
|
|
|
|
unserialize(Checkpoint *cp, const std::string §ion)
|
|
|
|
{
|
|
|
|
UNSERIALIZE_ARRAY(interrupts, NumInterruptLevels);
|
|
|
|
UNSERIALIZE_SCALAR(intstatus);
|
|
|
|
}
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
bool
|
|
|
|
check_interrupts(ThreadContext *tc) const
|
|
|
|
{
|
|
|
|
return (intstatus != 0) && !(tc->readPC() & 0x3);
|
|
|
|
}
|
2006-11-03 10:25:33 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
Fault
|
|
|
|
getInterrupt(ThreadContext *tc)
|
|
|
|
{
|
|
|
|
int ipl = 0;
|
|
|
|
int summary = 0;
|
|
|
|
|
|
|
|
if (tc->readMiscRegNoEffect(IPR_ASTRR))
|
|
|
|
panic("asynchronous traps not implemented\n");
|
|
|
|
|
|
|
|
if (tc->readMiscRegNoEffect(IPR_SIRR)) {
|
|
|
|
for (int i = INTLEVEL_SOFTWARE_MIN;
|
|
|
|
i < INTLEVEL_SOFTWARE_MAX; i++) {
|
|
|
|
if (tc->readMiscRegNoEffect(IPR_SIRR) & (ULL(1) << i)) {
|
|
|
|
// See table 4-19 of 21164 hardware reference
|
|
|
|
ipl = (i - INTLEVEL_SOFTWARE_MIN) + 1;
|
|
|
|
summary |= (ULL(1) << i);
|
2006-11-03 08:25:39 +01:00
|
|
|
}
|
|
|
|
}
|
2008-09-27 16:25:04 +02:00
|
|
|
}
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
uint64_t interrupts = intstatus;
|
|
|
|
if (interrupts) {
|
|
|
|
for (int i = INTLEVEL_EXTERNAL_MIN;
|
|
|
|
i < INTLEVEL_EXTERNAL_MAX; i++) {
|
|
|
|
if (interrupts & (ULL(1) << i)) {
|
|
|
|
// See table 4-19 of 21164 hardware reference
|
|
|
|
ipl = i;
|
|
|
|
summary |= (ULL(1) << i);
|
2006-11-03 08:25:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
if (ipl && ipl > tc->readMiscRegNoEffect(IPR_IPLR)) {
|
|
|
|
newIpl = ipl;
|
|
|
|
newSummary = summary;
|
|
|
|
newInfoSet = true;
|
|
|
|
DPRINTF(Flow, "Interrupt! IPLR=%d ipl=%d summary=%x\n",
|
|
|
|
tc->readMiscRegNoEffect(IPR_IPLR), ipl, summary);
|
2006-11-13 02:15:30 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
return new InterruptFault;
|
|
|
|
} else {
|
|
|
|
return NoFault;
|
2007-03-03 23:22:47 +01:00
|
|
|
}
|
2008-09-27 16:25:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
updateIntrInfo(ThreadContext *tc)
|
|
|
|
{
|
|
|
|
assert(newInfoSet);
|
|
|
|
tc->setMiscRegNoEffect(IPR_ISR, newSummary);
|
|
|
|
tc->setMiscRegNoEffect(IPR_INTID, newIpl);
|
|
|
|
newInfoSet = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
get_vec(int int_num)
|
|
|
|
{
|
|
|
|
panic("Shouldn't be called for Alpha\n");
|
|
|
|
M5_DUMMY_RETURN;
|
|
|
|
}
|
|
|
|
};
|
2007-03-03 23:22:47 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
} // namespace AlphaISA
|
2006-11-03 08:25:39 +01:00
|
|
|
|
2008-09-27 16:25:04 +02:00
|
|
|
#endif // __ARCH_ALPHA_INTERRUPT_HH__
|
2006-11-03 08:25:39 +01:00
|
|
|
|