summaryrefslogtreecommitdiff
path: root/src/dev/x86
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-12 23:27:08 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-12 23:27:08 -0700
commitbe6055e0f2fc55de9c4fd08815cdb50e3c4af78d (patch)
treee53df60d7f7fd8712d1c089f39513dba37925b90 /src/dev/x86
parentfb5bb434a9e8471e2d9e7b2a9fa7f61a2a10b6b2 (diff)
downloadgem5-be6055e0f2fc55de9c4fd08815cdb50e3c4af78d.tar.xz
X86: Make auto eoi mode work in the I8259 PIC.
Diffstat (limited to 'src/dev/x86')
-rw-r--r--src/dev/x86/i8259.cc15
-rw-r--r--src/dev/x86/i8259.hh3
2 files changed, 15 insertions, 3 deletions
diff --git a/src/dev/x86/i8259.cc b/src/dev/x86/i8259.cc
index dfaea571b..2d460b96d 100644
--- a/src/dev/x86/i8259.cc
+++ b/src/dev/x86/i8259.cc
@@ -36,7 +36,7 @@ X86ISA::I8259::I8259(Params * p) : BasicPioDevice(p), IntDev(this),
latency(p->pio_latency), output(p->output),
mode(p->mode), slave(NULL),
IRR(0), ISR(0), IMR(0),
- readIRR(true), initControlWord(0)
+ readIRR(true), initControlWord(0), autoEOI(false)
{
if (output) {
I8259 * master;
@@ -91,6 +91,9 @@ X86ISA::I8259::write(PacketPtr pkt)
DPRINTF(I8259, "%s mode.\n",
cascadeMode ? "Cascade" : "Single");
expectICW4 = bits(val, 0);
+ if (!expectICW4) {
+ autoEOI = false;
+ }
initControlWord = 1;
DPRINTF(I8259, "Expecting %d more bytes.\n", expectICW4 ? 3 : 2);
} else if (bits(val, 4, 3) == 0) {
@@ -203,8 +206,10 @@ X86ISA::I8259::write(PacketPtr pkt)
} else {
DPRINTF(I8259, "Unrecognized buffer mode.\n");
}
+ autoEOI = bits(val, 1);
DPRINTF(I8259, "%s End Of Interrupt.\n",
- bits(val, 1) ? "Automatic" : "Normal");
+ autoEOI ? "Automatic" : "Normal");
+
DPRINTF(I8259, "%s mode.\n", bits(val, 0) ? "80x86" : "MCX-80/85");
initControlWord = 0;
break;
@@ -265,7 +270,11 @@ X86ISA::I8259::getVector()
int line = findMsbSet(IRR);
IRR &= ~(1 << line);
DPRINTF(I8259, "Interrupt %d was accepted.\n", line);
- ISR |= 1 << line;
+ if (autoEOI) {
+ handleEOI(line);
+ } else {
+ ISR |= 1 << line;
+ }
if (slave && bits(cascadeBits, line)) {
DPRINTF(I8259, "Interrupt was from slave who will "
"provide the vector.\n");
diff --git a/src/dev/x86/i8259.hh b/src/dev/x86/i8259.hh
index 6f6d3f038..5a2cf72e8 100644
--- a/src/dev/x86/i8259.hh
+++ b/src/dev/x86/i8259.hh
@@ -73,6 +73,9 @@ class I8259 : public BasicPioDevice, public IntDev
bool expectICW4;
int initControlWord;
+ // Whether or not the PIC is in auto EOI mode.
+ bool autoEOI;
+
void requestInterrupt(int line);
void handleEOI(int line);