i8259.cc (5687:cec3cfa0b6b5) i8259.cc (5688:e18928b6b108)
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 */
30
31#include "base/bitfield.hh"
32#include "dev/x86/i82094aa.hh"
33#include "dev/x86/i8259.hh"
34
35X86ISA::I8259::I8259(Params * p) : BasicPioDevice(p), IntDev(this),
36 latency(p->pio_latency), output(p->output),
37 mode(p->mode), slave(NULL),
38 IRR(0), ISR(0), IMR(0),
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 */
30
31#include "base/bitfield.hh"
32#include "dev/x86/i82094aa.hh"
33#include "dev/x86/i8259.hh"
34
35X86ISA::I8259::I8259(Params * p) : BasicPioDevice(p), IntDev(this),
36 latency(p->pio_latency), output(p->output),
37 mode(p->mode), slave(NULL),
38 IRR(0), ISR(0), IMR(0),
39 readIRR(true), initControlWord(0)
39 readIRR(true), initControlWord(0), autoEOI(false)
40{
41 if (output) {
42 I8259 * master;
43 master = dynamic_cast<I8259 *>(output->getDevice());
44 if (master)
45 master->setSlave(this);
46 I82094AA * ioApic;
47 ioApic = dynamic_cast<I82094AA *>(output->getDevice());
48 if (ioApic)
49 ioApic->setExtIntPic(this);
50 }
51 pioSize = 2;
52}
53
54Tick
55X86ISA::I8259::read(PacketPtr pkt)
56{
57 assert(pkt->getSize() == 1);
58 switch(pkt->getAddr() - pioAddr)
59 {
60 case 0x0:
61 if (readIRR) {
62 DPRINTF(I8259, "Reading IRR as %#x.\n", IRR);
63 pkt->set(IRR);
64 } else {
65 DPRINTF(I8259, "Reading ISR as %#x.\n", ISR);
66 pkt->set(ISR);
67 }
68 break;
69 case 0x1:
70 DPRINTF(I8259, "Reading IMR as %#x.\n", IMR);
71 pkt->set(IMR);
72 break;
73 }
74 return latency;
75}
76
77Tick
78X86ISA::I8259::write(PacketPtr pkt)
79{
80 assert(pkt->getSize() == 1);
81 uint8_t val = pkt->get<uint8_t>();
82 switch (pkt->getAddr() - pioAddr) {
83 case 0x0:
84 if (bits(val, 4)) {
85 DPRINTF(I8259, "Received initialization command word 1.\n");
86 IMR = 0;
87 edgeTriggered = bits(val, 3);
88 DPRINTF(I8259, "%s triggered mode.\n",
89 edgeTriggered ? "Edge" : "Level");
90 cascadeMode = !bits(val, 1);
91 DPRINTF(I8259, "%s mode.\n",
92 cascadeMode ? "Cascade" : "Single");
93 expectICW4 = bits(val, 0);
40{
41 if (output) {
42 I8259 * master;
43 master = dynamic_cast<I8259 *>(output->getDevice());
44 if (master)
45 master->setSlave(this);
46 I82094AA * ioApic;
47 ioApic = dynamic_cast<I82094AA *>(output->getDevice());
48 if (ioApic)
49 ioApic->setExtIntPic(this);
50 }
51 pioSize = 2;
52}
53
54Tick
55X86ISA::I8259::read(PacketPtr pkt)
56{
57 assert(pkt->getSize() == 1);
58 switch(pkt->getAddr() - pioAddr)
59 {
60 case 0x0:
61 if (readIRR) {
62 DPRINTF(I8259, "Reading IRR as %#x.\n", IRR);
63 pkt->set(IRR);
64 } else {
65 DPRINTF(I8259, "Reading ISR as %#x.\n", ISR);
66 pkt->set(ISR);
67 }
68 break;
69 case 0x1:
70 DPRINTF(I8259, "Reading IMR as %#x.\n", IMR);
71 pkt->set(IMR);
72 break;
73 }
74 return latency;
75}
76
77Tick
78X86ISA::I8259::write(PacketPtr pkt)
79{
80 assert(pkt->getSize() == 1);
81 uint8_t val = pkt->get<uint8_t>();
82 switch (pkt->getAddr() - pioAddr) {
83 case 0x0:
84 if (bits(val, 4)) {
85 DPRINTF(I8259, "Received initialization command word 1.\n");
86 IMR = 0;
87 edgeTriggered = bits(val, 3);
88 DPRINTF(I8259, "%s triggered mode.\n",
89 edgeTriggered ? "Edge" : "Level");
90 cascadeMode = !bits(val, 1);
91 DPRINTF(I8259, "%s mode.\n",
92 cascadeMode ? "Cascade" : "Single");
93 expectICW4 = bits(val, 0);
94 if (!expectICW4) {
95 autoEOI = false;
96 }
94 initControlWord = 1;
95 DPRINTF(I8259, "Expecting %d more bytes.\n", expectICW4 ? 3 : 2);
96 } else if (bits(val, 4, 3) == 0) {
97 DPRINTF(I8259, "Received operation command word 2.\n");
98 switch (bits(val, 7, 5)) {
99 case 0x0:
100 DPRINTF(I8259,
101 "Subcommand: Rotate in auto-EOI mode (clear).\n");
102 break;
103 case 0x1:
104 {
105 int line = findMsbSet(ISR);
106 DPRINTF(I8259, "Subcommand: Nonspecific EOI on line %d.\n",
107 line);
108 handleEOI(line);
109 }
110 break;
111 case 0x2:
112 DPRINTF(I8259, "Subcommand: No operation.\n");
113 break;
114 case 0x3:
115 {
116 int line = bits(val, 2, 0);
117 DPRINTF(I8259, "Subcommand: Specific EIO on line %d.\n",
118 line);
119 handleEOI(line);
120 }
121 break;
122 case 0x4:
123 DPRINTF(I8259, "Subcommand: Rotate in auto-EOI mode (set).\n");
124 break;
125 case 0x5:
126 DPRINTF(I8259, "Subcommand: Rotate on nonspecific EOI.\n");
127 break;
128 case 0x6:
129 DPRINTF(I8259, "Subcommand: Set priority command.\n");
130 DPRINTF(I8259, "Lowest: IRQ%d Highest IRQ%d.\n",
131 bits(val, 2, 0), (bits(val, 2, 0) + 1) % 8);
132 break;
133 case 0x7:
134 DPRINTF(I8259, "Subcommand: Rotate on specific EOI.\n");
135 DPRINTF(I8259, "Lowest: IRQ%d Highest IRQ%d.\n",
136 bits(val, 2, 0), (bits(val, 2, 0) + 1) % 8);
137 break;
138 }
139 } else if (bits(val, 4, 3) == 1) {
140 DPRINTF(I8259, "Received operation command word 3.\n");
141 if (bits(val, 7)) {
142 DPRINTF(I8259, "%s special mask mode.\n",
143 bits(val, 6) ? "Set" : "Clear");
144 }
145 if (bits(val, 1)) {
146 readIRR = bits(val, 0);
147 DPRINTF(I8259, "Read %s.\n", readIRR ? "IRR" : "ISR");
148 }
149 }
150 break;
151 case 0x1:
152 switch (initControlWord) {
153 case 0x0:
154 DPRINTF(I8259, "Received operation command word 1.\n");
155 DPRINTF(I8259, "Wrote IMR value %#x.\n", val);
156 IMR = val;
157 break;
158 case 0x1:
159 DPRINTF(I8259, "Received initialization command word 2.\n");
160 vectorOffset = val & ~mask(3);
161 DPRINTF(I8259, "Responsible for vectors %#x-%#x.\n",
162 vectorOffset, vectorOffset | mask(3));
163 if (cascadeMode) {
164 initControlWord++;
165 } else {
166 cascadeBits = 0;
167 initControlWord = 0;
168 }
169 break;
170 case 0x2:
171 DPRINTF(I8259, "Received initialization command word 3.\n");
172 if (mode == Enums::I8259Master) {
173 DPRINTF(I8259, "Slaves attached to IRQs:%s%s%s%s%s%s%s%s\n",
174 bits(val, 0) ? " 0" : "",
175 bits(val, 1) ? " 1" : "",
176 bits(val, 2) ? " 2" : "",
177 bits(val, 3) ? " 3" : "",
178 bits(val, 4) ? " 4" : "",
179 bits(val, 5) ? " 5" : "",
180 bits(val, 6) ? " 6" : "",
181 bits(val, 7) ? " 7" : "");
182 cascadeBits = val;
183 } else {
184 DPRINTF(I8259, "Slave ID is %d.\n", val & mask(3));
185 cascadeBits = val & mask(3);
186 }
187 if (expectICW4)
188 initControlWord++;
189 else
190 initControlWord = 0;
191 break;
192 case 0x3:
193 DPRINTF(I8259, "Received initialization command word 4.\n");
194 if (bits(val, 4)) {
195 DPRINTF(I8259, "Special fully nested mode.\n");
196 } else {
197 DPRINTF(I8259, "Not special fully nested mode.\n");
198 }
199 if (bits(val, 3) == 0) {
200 DPRINTF(I8259, "Nonbuffered.\n");
201 } else if (bits(val, 2) == 0) {
202 DPRINTF(I8259, "Buffered.\n");
203 } else {
204 DPRINTF(I8259, "Unrecognized buffer mode.\n");
205 }
97 initControlWord = 1;
98 DPRINTF(I8259, "Expecting %d more bytes.\n", expectICW4 ? 3 : 2);
99 } else if (bits(val, 4, 3) == 0) {
100 DPRINTF(I8259, "Received operation command word 2.\n");
101 switch (bits(val, 7, 5)) {
102 case 0x0:
103 DPRINTF(I8259,
104 "Subcommand: Rotate in auto-EOI mode (clear).\n");
105 break;
106 case 0x1:
107 {
108 int line = findMsbSet(ISR);
109 DPRINTF(I8259, "Subcommand: Nonspecific EOI on line %d.\n",
110 line);
111 handleEOI(line);
112 }
113 break;
114 case 0x2:
115 DPRINTF(I8259, "Subcommand: No operation.\n");
116 break;
117 case 0x3:
118 {
119 int line = bits(val, 2, 0);
120 DPRINTF(I8259, "Subcommand: Specific EIO on line %d.\n",
121 line);
122 handleEOI(line);
123 }
124 break;
125 case 0x4:
126 DPRINTF(I8259, "Subcommand: Rotate in auto-EOI mode (set).\n");
127 break;
128 case 0x5:
129 DPRINTF(I8259, "Subcommand: Rotate on nonspecific EOI.\n");
130 break;
131 case 0x6:
132 DPRINTF(I8259, "Subcommand: Set priority command.\n");
133 DPRINTF(I8259, "Lowest: IRQ%d Highest IRQ%d.\n",
134 bits(val, 2, 0), (bits(val, 2, 0) + 1) % 8);
135 break;
136 case 0x7:
137 DPRINTF(I8259, "Subcommand: Rotate on specific EOI.\n");
138 DPRINTF(I8259, "Lowest: IRQ%d Highest IRQ%d.\n",
139 bits(val, 2, 0), (bits(val, 2, 0) + 1) % 8);
140 break;
141 }
142 } else if (bits(val, 4, 3) == 1) {
143 DPRINTF(I8259, "Received operation command word 3.\n");
144 if (bits(val, 7)) {
145 DPRINTF(I8259, "%s special mask mode.\n",
146 bits(val, 6) ? "Set" : "Clear");
147 }
148 if (bits(val, 1)) {
149 readIRR = bits(val, 0);
150 DPRINTF(I8259, "Read %s.\n", readIRR ? "IRR" : "ISR");
151 }
152 }
153 break;
154 case 0x1:
155 switch (initControlWord) {
156 case 0x0:
157 DPRINTF(I8259, "Received operation command word 1.\n");
158 DPRINTF(I8259, "Wrote IMR value %#x.\n", val);
159 IMR = val;
160 break;
161 case 0x1:
162 DPRINTF(I8259, "Received initialization command word 2.\n");
163 vectorOffset = val & ~mask(3);
164 DPRINTF(I8259, "Responsible for vectors %#x-%#x.\n",
165 vectorOffset, vectorOffset | mask(3));
166 if (cascadeMode) {
167 initControlWord++;
168 } else {
169 cascadeBits = 0;
170 initControlWord = 0;
171 }
172 break;
173 case 0x2:
174 DPRINTF(I8259, "Received initialization command word 3.\n");
175 if (mode == Enums::I8259Master) {
176 DPRINTF(I8259, "Slaves attached to IRQs:%s%s%s%s%s%s%s%s\n",
177 bits(val, 0) ? " 0" : "",
178 bits(val, 1) ? " 1" : "",
179 bits(val, 2) ? " 2" : "",
180 bits(val, 3) ? " 3" : "",
181 bits(val, 4) ? " 4" : "",
182 bits(val, 5) ? " 5" : "",
183 bits(val, 6) ? " 6" : "",
184 bits(val, 7) ? " 7" : "");
185 cascadeBits = val;
186 } else {
187 DPRINTF(I8259, "Slave ID is %d.\n", val & mask(3));
188 cascadeBits = val & mask(3);
189 }
190 if (expectICW4)
191 initControlWord++;
192 else
193 initControlWord = 0;
194 break;
195 case 0x3:
196 DPRINTF(I8259, "Received initialization command word 4.\n");
197 if (bits(val, 4)) {
198 DPRINTF(I8259, "Special fully nested mode.\n");
199 } else {
200 DPRINTF(I8259, "Not special fully nested mode.\n");
201 }
202 if (bits(val, 3) == 0) {
203 DPRINTF(I8259, "Nonbuffered.\n");
204 } else if (bits(val, 2) == 0) {
205 DPRINTF(I8259, "Buffered.\n");
206 } else {
207 DPRINTF(I8259, "Unrecognized buffer mode.\n");
208 }
209 autoEOI = bits(val, 1);
206 DPRINTF(I8259, "%s End Of Interrupt.\n",
210 DPRINTF(I8259, "%s End Of Interrupt.\n",
207 bits(val, 1) ? "Automatic" : "Normal");
211 autoEOI ? "Automatic" : "Normal");
212
208 DPRINTF(I8259, "%s mode.\n", bits(val, 0) ? "80x86" : "MCX-80/85");
209 initControlWord = 0;
210 break;
211 }
212 break;
213 }
214 return latency;
215}
216
217void
218X86ISA::I8259::handleEOI(int line)
219{
220 ISR &= ~(1 << line);
221 // There may be an interrupt that was waiting which can
222 // now be sent.
223 if (IRR)
224 requestInterrupt(findMsbSet(IRR));
225}
226
227void
228X86ISA::I8259::requestInterrupt(int line)
229{
230 if (bits(ISR, 7, line) == 0) {
231 if (output) {
232 DPRINTF(I8259, "Propogating interrupt.\n");
233 output->signalInterrupt();
234 } else {
235 warn("Received interrupt but didn't have "
236 "anyone to tell about it.\n");
237 }
238 }
239}
240
241void
242X86ISA::I8259::signalInterrupt(int line)
243{
244 DPRINTF(I8259, "Interrupt raised on line %d.\n", line);
245 if (line >= NumLines)
246 fatal("Line number %d doesn't exist. The max is %d.\n",
247 line, NumLines - 1);
248 if (bits(IMR, line)) {
249 DPRINTF(I8259, "Interrupt %d was masked.\n", line);
250 } else {
251 IRR |= 1 << line;
252 requestInterrupt(line);
253 }
254}
255
256int
257X86ISA::I8259::getVector()
258{
259 /*
260 * This code only handles one slave. Since that's how the PC platform
261 * always uses the 8259 PIC, there shouldn't be any need for more. If
262 * there -is- a need for more for some reason, "slave" can become a
263 * vector of slaves.
264 */
265 int line = findMsbSet(IRR);
266 IRR &= ~(1 << line);
267 DPRINTF(I8259, "Interrupt %d was accepted.\n", line);
213 DPRINTF(I8259, "%s mode.\n", bits(val, 0) ? "80x86" : "MCX-80/85");
214 initControlWord = 0;
215 break;
216 }
217 break;
218 }
219 return latency;
220}
221
222void
223X86ISA::I8259::handleEOI(int line)
224{
225 ISR &= ~(1 << line);
226 // There may be an interrupt that was waiting which can
227 // now be sent.
228 if (IRR)
229 requestInterrupt(findMsbSet(IRR));
230}
231
232void
233X86ISA::I8259::requestInterrupt(int line)
234{
235 if (bits(ISR, 7, line) == 0) {
236 if (output) {
237 DPRINTF(I8259, "Propogating interrupt.\n");
238 output->signalInterrupt();
239 } else {
240 warn("Received interrupt but didn't have "
241 "anyone to tell about it.\n");
242 }
243 }
244}
245
246void
247X86ISA::I8259::signalInterrupt(int line)
248{
249 DPRINTF(I8259, "Interrupt raised on line %d.\n", line);
250 if (line >= NumLines)
251 fatal("Line number %d doesn't exist. The max is %d.\n",
252 line, NumLines - 1);
253 if (bits(IMR, line)) {
254 DPRINTF(I8259, "Interrupt %d was masked.\n", line);
255 } else {
256 IRR |= 1 << line;
257 requestInterrupt(line);
258 }
259}
260
261int
262X86ISA::I8259::getVector()
263{
264 /*
265 * This code only handles one slave. Since that's how the PC platform
266 * always uses the 8259 PIC, there shouldn't be any need for more. If
267 * there -is- a need for more for some reason, "slave" can become a
268 * vector of slaves.
269 */
270 int line = findMsbSet(IRR);
271 IRR &= ~(1 << line);
272 DPRINTF(I8259, "Interrupt %d was accepted.\n", line);
268 ISR |= 1 << line;
273 if (autoEOI) {
274 handleEOI(line);
275 } else {
276 ISR |= 1 << line;
277 }
269 if (slave && bits(cascadeBits, line)) {
270 DPRINTF(I8259, "Interrupt was from slave who will "
271 "provide the vector.\n");
272 return slave->getVector();
273 }
274 return line | vectorOffset;
275}
276
277X86ISA::I8259 *
278I8259Params::create()
279{
280 return new X86ISA::I8259(this);
281}
278 if (slave && bits(cascadeBits, line)) {
279 DPRINTF(I8259, "Interrupt was from slave who will "
280 "provide the vector.\n");
281 return slave->getVector();
282 }
283 return line | vectorOffset;
284}
285
286X86ISA::I8259 *
287I8259Params::create()
288{
289 return new X86ISA::I8259(this);
290}