2007-03-03 17:01:48 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 The Hewlett-Packard Development Company
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use of this software in source and binary forms,
|
|
|
|
* with or without modification, are permitted provided that the
|
|
|
|
* following conditions are met:
|
|
|
|
*
|
|
|
|
* The software must be used only for Non-Commercial Use which means any
|
|
|
|
* use which is NOT directed to receiving any direct monetary
|
|
|
|
* compensation for, or commercial advantage from such use. Illustrative
|
|
|
|
* examples of non-commercial use are academic research, personal study,
|
|
|
|
* teaching, education and corporate research & development.
|
|
|
|
* Illustrative examples of commercial use are distributing products for
|
|
|
|
* commercial advantage and providing services using the software for
|
|
|
|
* commercial advantage.
|
|
|
|
*
|
|
|
|
* If you wish to use this software or functionality therein that may be
|
|
|
|
* covered by patents for commercial use, please contact:
|
|
|
|
* Director of Intellectual Property Licensing
|
|
|
|
* Office of Strategy and Technology
|
|
|
|
* Hewlett-Packard Company
|
|
|
|
* 1501 Page Mill Road
|
|
|
|
* Palo Alto, California 94304
|
|
|
|
*
|
|
|
|
* 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 HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission. No right of
|
|
|
|
* sublicense is granted herewith. Derivatives of the software and
|
|
|
|
* output created using the software may be prepared, but only for
|
|
|
|
* Non-Commercial Uses. Derivatives of the software may be shared with
|
|
|
|
* others provided: (i) the others agree to abide by the list of
|
|
|
|
* conditions herein which includes the Non-Commercial Use restrictions;
|
|
|
|
* and (ii) such Derivatives of the software include the above copyright
|
|
|
|
* notice to acknowledge the contribution from this software where
|
|
|
|
* applicable, this list of conditions and the disclaimer below.
|
|
|
|
*
|
|
|
|
* 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: Gabe Black
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_X86_INTERRUPTS_HH__
|
|
|
|
#define __ARCH_X86_INTERRUPTS_HH__
|
|
|
|
|
2008-10-12 18:09:56 +02:00
|
|
|
#include "arch/x86/apicregs.hh"
|
2007-09-25 02:39:56 +02:00
|
|
|
#include "arch/x86/faults.hh"
|
2008-10-12 22:45:21 +02:00
|
|
|
#include "arch/x86/intmessage.hh"
|
2008-10-12 22:44:24 +02:00
|
|
|
#include "base/bitfield.hh"
|
2007-09-25 02:39:56 +02:00
|
|
|
#include "cpu/thread_context.hh"
|
2008-10-12 20:08:00 +02:00
|
|
|
#include "dev/io_device.hh"
|
2008-10-12 22:28:54 +02:00
|
|
|
#include "dev/x86/intdev.hh"
|
2008-10-12 18:09:56 +02:00
|
|
|
#include "params/X86LocalApic.hh"
|
|
|
|
#include "sim/eventq.hh"
|
|
|
|
|
|
|
|
class ThreadContext;
|
2007-03-03 17:01:48 +01:00
|
|
|
|
|
|
|
namespace X86ISA
|
|
|
|
{
|
2007-09-25 02:39:56 +02:00
|
|
|
|
2008-10-12 22:28:54 +02:00
|
|
|
class Interrupts : public BasicPioDevice, IntDev
|
2007-09-25 02:39:56 +02:00
|
|
|
{
|
2008-10-12 18:09:56 +02:00
|
|
|
protected:
|
2008-10-12 22:44:24 +02:00
|
|
|
// Storage for the APIC registers
|
2008-10-12 18:09:56 +02:00
|
|
|
uint32_t regs[NUM_APIC_REGS];
|
2008-10-12 22:44:24 +02:00
|
|
|
|
2008-10-13 08:28:49 +02:00
|
|
|
BitUnion32(LVTEntry)
|
|
|
|
Bitfield<7, 0> vector;
|
|
|
|
Bitfield<10, 8> deliveryMode;
|
|
|
|
Bitfield<12> status;
|
|
|
|
Bitfield<13> polarity;
|
|
|
|
Bitfield<14> remoteIRR;
|
|
|
|
Bitfield<15> trigger;
|
|
|
|
Bitfield<16> masked;
|
|
|
|
Bitfield<17> periodic;
|
|
|
|
EndBitUnion(LVTEntry)
|
|
|
|
|
2008-10-12 22:44:24 +02:00
|
|
|
/*
|
|
|
|
* Timing related stuff.
|
|
|
|
*/
|
2008-10-12 20:08:00 +02:00
|
|
|
Tick latency;
|
|
|
|
Tick clock;
|
2008-10-12 18:09:56 +02:00
|
|
|
|
|
|
|
class ApicTimerEvent : public Event
|
|
|
|
{
|
2008-10-13 08:28:49 +02:00
|
|
|
private:
|
|
|
|
Interrupts *localApic;
|
2008-10-12 18:09:56 +02:00
|
|
|
public:
|
2008-10-13 08:28:49 +02:00
|
|
|
ApicTimerEvent(Interrupts *_localApic) :
|
|
|
|
Event(), localApic(_localApic)
|
2008-10-12 18:09:56 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
void process()
|
|
|
|
{
|
2008-10-13 08:28:49 +02:00
|
|
|
assert(localApic);
|
|
|
|
if (localApic->triggerTimerInterrupt()) {
|
|
|
|
localApic->setReg(APIC_INITIAL_COUNT,
|
|
|
|
localApic->readReg(APIC_INITIAL_COUNT));
|
|
|
|
}
|
2008-10-12 18:09:56 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ApicTimerEvent apicTimerEvent;
|
|
|
|
|
2008-10-12 22:45:21 +02:00
|
|
|
/*
|
|
|
|
* A set of variables to keep track of interrupts that don't go through
|
|
|
|
* the IRR.
|
|
|
|
*/
|
|
|
|
bool pendingSmi;
|
2008-10-13 08:28:49 +02:00
|
|
|
uint8_t smiVector;
|
2008-10-12 22:45:21 +02:00
|
|
|
bool pendingNmi;
|
2008-10-13 08:28:49 +02:00
|
|
|
uint8_t nmiVector;
|
2008-10-12 22:45:21 +02:00
|
|
|
bool pendingExtInt;
|
2008-10-13 08:28:49 +02:00
|
|
|
uint8_t extIntVector;
|
2008-10-12 22:45:21 +02:00
|
|
|
bool pendingInit;
|
2008-10-13 08:28:49 +02:00
|
|
|
uint8_t initVector;
|
2008-10-12 22:45:21 +02:00
|
|
|
|
|
|
|
// This is a quick check whether any of the above (except ExtInt) are set.
|
|
|
|
bool pendingUnmaskableInt;
|
|
|
|
|
2008-10-12 22:44:24 +02:00
|
|
|
/*
|
|
|
|
* IRR and ISR maintenance.
|
|
|
|
*/
|
|
|
|
uint8_t IRRV;
|
|
|
|
uint8_t ISRV;
|
|
|
|
|
|
|
|
int
|
|
|
|
findRegArrayMSB(ApicRegIndex base)
|
|
|
|
{
|
|
|
|
int offset = 7;
|
|
|
|
do {
|
|
|
|
if (regs[base + offset] != 0) {
|
|
|
|
return offset * 32 + findMsbSet(regs[base + offset]);
|
|
|
|
}
|
|
|
|
} while (offset--);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
updateIRRV()
|
|
|
|
{
|
|
|
|
IRRV = findRegArrayMSB(APIC_INTERRUPT_REQUEST_BASE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
updateISRV()
|
|
|
|
{
|
|
|
|
ISRV = findRegArrayMSB(APIC_IN_SERVICE_BASE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
setRegArrayBit(ApicRegIndex base, uint8_t vector)
|
|
|
|
{
|
|
|
|
regs[base + (vector % 32)] |= (1 << (vector >> 5));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
clearRegArrayBit(ApicRegIndex base, uint8_t vector)
|
|
|
|
{
|
|
|
|
regs[base + (vector % 32)] &= ~(1 << (vector >> 5));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
getRegArrayBit(ApicRegIndex base, uint8_t vector)
|
|
|
|
{
|
|
|
|
return bits(regs[base + (vector % 32)], vector >> 5);
|
|
|
|
}
|
|
|
|
|
2008-10-13 08:28:49 +02:00
|
|
|
void requestInterrupt(uint8_t vector, uint8_t deliveryMode, bool level);
|
|
|
|
|
2007-09-25 02:39:56 +02:00
|
|
|
public:
|
2008-10-12 22:44:24 +02:00
|
|
|
/*
|
|
|
|
* Params stuff.
|
|
|
|
*/
|
2008-10-12 18:09:56 +02:00
|
|
|
typedef X86LocalApicParams Params;
|
|
|
|
|
2008-10-12 20:08:00 +02:00
|
|
|
void setClock(Tick newClock)
|
|
|
|
{
|
|
|
|
clock = newClock;
|
|
|
|
}
|
|
|
|
|
2008-10-12 18:09:56 +02:00
|
|
|
const Params *
|
|
|
|
params() const
|
|
|
|
{
|
|
|
|
return dynamic_cast<const Params *>(_params);
|
|
|
|
}
|
|
|
|
|
2008-10-12 22:44:24 +02:00
|
|
|
/*
|
|
|
|
* Functions to interact with the interrupt port from IntDev.
|
|
|
|
*/
|
2008-10-12 20:08:00 +02:00
|
|
|
Tick read(PacketPtr pkt);
|
|
|
|
Tick write(PacketPtr pkt);
|
2008-10-12 22:28:54 +02:00
|
|
|
Tick recvMessage(PacketPtr pkt);
|
2008-10-12 20:08:00 +02:00
|
|
|
|
2008-10-13 08:28:49 +02:00
|
|
|
bool
|
|
|
|
triggerTimerInterrupt()
|
|
|
|
{
|
|
|
|
LVTEntry entry = regs[APIC_LVT_TIMER];
|
|
|
|
if (!entry.masked)
|
|
|
|
requestInterrupt(entry.vector, entry.deliveryMode, entry.trigger);
|
|
|
|
return entry.periodic;
|
|
|
|
}
|
|
|
|
|
2008-10-12 20:08:00 +02:00
|
|
|
void addressRanges(AddrRangeList &range_list)
|
|
|
|
{
|
|
|
|
range_list.clear();
|
|
|
|
range_list.push_back(RangeEx(x86LocalAPICAddress(0, 0),
|
|
|
|
x86LocalAPICAddress(0, 0) + PageBytes));
|
|
|
|
}
|
2008-10-12 18:09:56 +02:00
|
|
|
|
2008-10-12 22:28:54 +02:00
|
|
|
void getIntAddrRange(AddrRangeList &range_list)
|
|
|
|
{
|
|
|
|
range_list.clear();
|
|
|
|
range_list.push_back(RangeEx(x86InterruptAddress(0, 0),
|
|
|
|
x86InterruptAddress(0, 0) + PhysAddrAPICRangeSize));
|
|
|
|
}
|
|
|
|
|
2008-10-12 22:44:24 +02:00
|
|
|
Port *getPort(const std::string &if_name, int idx = -1)
|
|
|
|
{
|
|
|
|
if (if_name == "int_port")
|
|
|
|
return intPort;
|
|
|
|
return BasicPioDevice::getPort(if_name, idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions to access and manipulate the APIC's registers.
|
|
|
|
*/
|
|
|
|
|
2008-10-12 20:08:00 +02:00
|
|
|
uint32_t readReg(ApicRegIndex miscReg);
|
|
|
|
void setReg(ApicRegIndex reg, uint32_t val);
|
|
|
|
void setRegNoEffect(ApicRegIndex reg, uint32_t val)
|
|
|
|
{
|
|
|
|
regs[reg] = val;
|
|
|
|
}
|
2008-10-12 18:09:56 +02:00
|
|
|
|
2008-10-12 22:44:24 +02:00
|
|
|
/*
|
|
|
|
* Constructor.
|
|
|
|
*/
|
|
|
|
|
2008-10-12 22:28:54 +02:00
|
|
|
Interrupts(Params * p) : BasicPioDevice(p), IntDev(this),
|
2008-10-12 22:45:21 +02:00
|
|
|
latency(p->pio_latency), clock(0),
|
2008-10-13 08:28:49 +02:00
|
|
|
apicTimerEvent(this),
|
|
|
|
pendingSmi(false), smiVector(0),
|
|
|
|
pendingNmi(false), nmiVector(0),
|
|
|
|
pendingExtInt(false), extIntVector(0),
|
|
|
|
pendingInit(false), initVector(0),
|
2008-10-12 22:45:21 +02:00
|
|
|
pendingUnmaskableInt(false)
|
2007-09-25 02:39:56 +02:00
|
|
|
{
|
2008-10-12 20:08:00 +02:00
|
|
|
pioSize = PageBytes;
|
2008-10-12 22:44:24 +02:00
|
|
|
memset(regs, 0, sizeof(regs));
|
2008-10-12 18:09:56 +02:00
|
|
|
//Set the local apic DFR to the flat model.
|
|
|
|
regs[APIC_DESTINATION_FORMAT] = (uint32_t)(-1);
|
2008-10-12 22:44:24 +02:00
|
|
|
ISRV = 0;
|
|
|
|
IRRV = 0;
|
2007-09-25 02:39:56 +02:00
|
|
|
}
|
|
|
|
|
2008-10-12 22:44:24 +02:00
|
|
|
/*
|
|
|
|
* Functions for retrieving interrupts for the CPU to handle.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool check_interrupts(ThreadContext * tc) const;
|
|
|
|
Fault getInterrupt(ThreadContext * tc);
|
|
|
|
void updateIntrInfo(ThreadContext * tc);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Serialization.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void serialize(std::ostream & os)
|
2008-10-12 22:28:54 +02:00
|
|
|
{
|
2008-10-12 22:44:24 +02:00
|
|
|
panic("Interrupts::serialize unimplemented!\n");
|
2008-10-12 22:28:54 +02:00
|
|
|
}
|
|
|
|
|
2008-10-12 22:44:24 +02:00
|
|
|
void unserialize(Checkpoint * cp, const std::string & section)
|
2007-09-25 02:39:56 +02:00
|
|
|
{
|
2008-10-12 22:44:24 +02:00
|
|
|
panic("Interrupts::unserialize unimplemented!\n");
|
2007-09-25 02:39:56 +02:00
|
|
|
}
|
|
|
|
|
2008-10-12 22:44:24 +02:00
|
|
|
/*
|
|
|
|
* Old functions needed for compatability but which will be phased out
|
|
|
|
* eventually.
|
|
|
|
*/
|
2007-09-25 02:39:56 +02:00
|
|
|
void post(int int_num, int index)
|
|
|
|
{
|
2007-10-08 02:52:36 +02:00
|
|
|
panic("Interrupts::post unimplemented!\n");
|
2007-09-25 02:39:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void clear(int int_num, int index)
|
|
|
|
{
|
2008-10-12 22:44:24 +02:00
|
|
|
panic("Interrupts::clear unimplemented!\n");
|
2007-09-25 02:39:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void clear_all()
|
|
|
|
{
|
2008-10-12 22:44:24 +02:00
|
|
|
panic("Interrupts::clear_all unimplemented!\n");
|
2007-09-25 02:39:56 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-03-03 17:01:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __ARCH_X86_INTERRUPTS_HH__
|