summaryrefslogtreecommitdiff
path: root/src/dev/x86/intdev.cc
diff options
context:
space:
mode:
authorBrad Beckmann <Brad.Beckmann@amd.com>2011-02-06 22:14:18 -0800
committerBrad Beckmann <Brad.Beckmann@amd.com>2011-02-06 22:14:18 -0800
commitc41fc138e78420c72d8dada805a16c96f74f631b (patch)
treed66a767288ca51f19f143c891ce2b722101bca40 /src/dev/x86/intdev.cc
parent3a2d2223e1debf932a0cec3244e4ce63e5d748af (diff)
downloadgem5-c41fc138e78420c72d8dada805a16c96f74f631b.tar.xz
dev: fixed bugs to extend interrupt capability beyond 15 cores
Diffstat (limited to 'src/dev/x86/intdev.cc')
-rw-r--r--src/dev/x86/intdev.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/dev/x86/intdev.cc b/src/dev/x86/intdev.cc
index 0d392d5ee..0c0fa73cf 100644
--- a/src/dev/x86/intdev.cc
+++ b/src/dev/x86/intdev.cc
@@ -48,6 +48,15 @@ X86ISA::IntDev::IntPort::sendMessage(ApicList apics,
}
}
+void
+X86ISA::IntDev::init()
+{
+ if (!intPort) {
+ panic("Int port not connected to anything!");
+ }
+ intPort->sendStatusChange(Port::RangeChange);
+}
+
X86ISA::IntSourcePin *
X86IntSourcePinParams::create()
{