From f668340f2cda609d263d47b8a00c5b138e8c499f Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 19 Apr 2009 02:16:49 -0700 Subject: X86: Set the local APIC ID to something meaningful. --- src/arch/x86/interrupts.hh | 38 ++++---------------------------------- 1 file changed, 4 insertions(+), 34 deletions(-) (limited to 'src/arch/x86/interrupts.hh') diff --git a/src/arch/x86/interrupts.hh b/src/arch/x86/interrupts.hh index c5e3bde0d..34ea992d1 100644 --- a/src/arch/x86/interrupts.hh +++ b/src/arch/x86/interrupts.hh @@ -191,11 +191,7 @@ class Interrupts : public BasicPioDevice, IntDev */ typedef X86LocalApicParams Params; - void - setCPU(BaseCPU * newCPU) - { - cpu = newCPU; - } + void setCPU(BaseCPU * newCPU); void setClock(Tick newClock) @@ -225,19 +221,8 @@ class Interrupts : public BasicPioDevice, IntDev return entry.periodic; } - void addressRanges(AddrRangeList &range_list) - { - range_list.clear(); - range_list.push_back(RangeEx(x86LocalAPICAddress(0, 0), - x86LocalAPICAddress(0, 0) + PageBytes)); - } - - void getIntAddrRange(AddrRangeList &range_list) - { - range_list.clear(); - range_list.push_back(RangeEx(x86InterruptAddress(0, 0), - x86InterruptAddress(0, 0) + PhysAddrAPICRangeSize)); - } + void addressRanges(AddrRangeList &range_list); + void getIntAddrRange(AddrRangeList &range_list); Port *getPort(const std::string &if_name, int idx = -1) { @@ -262,22 +247,7 @@ class Interrupts : public BasicPioDevice, IntDev * Constructor. */ - Interrupts(Params * p) - : BasicPioDevice(p), IntDev(this), latency(p->pio_latency), clock(0), - apicTimerEvent(this), - pendingSmi(false), smiVector(0), - pendingNmi(false), nmiVector(0), - pendingExtInt(false), extIntVector(0), - pendingInit(false), initVector(0), - pendingUnmaskableInt(false) - { - pioSize = PageBytes; - memset(regs, 0, sizeof(regs)); - //Set the local apic DFR to the flat model. - regs[APIC_DESTINATION_FORMAT] = (uint32_t)(-1); - ISRV = 0; - IRRV = 0; - } + Interrupts(Params * p); /* * Functions for retrieving interrupts for the CPU to handle. -- cgit v1.2.3