2 * QEMU 8259 interrupt controller emulation
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28 #include "qemu-timer.h"
33 //#define DEBUG_IRQ_LATENCY
34 //#define DEBUG_IRQ_COUNT
36 typedef struct PicState
{
37 uint8_t last_irr
; /* edge detection */
38 uint8_t irr
; /* interrupt request register */
39 uint8_t imr
; /* interrupt mask register */
40 uint8_t isr
; /* interrupt service register */
41 uint8_t priority_add
; /* highest irq priority */
43 uint8_t read_reg_select
;
48 uint8_t rotate_on_auto_eoi
;
49 uint8_t special_fully_nested_mode
;
50 uint8_t init4
; /* true if 4 byte init */
51 uint8_t single_mode
; /* true if slave pic is not initialized */
52 uint8_t elcr
; /* PIIX edge/trigger selection*/
54 PicState2
*pics_state
;
58 /* 0 is master pic, 1 is slave pic */
59 /* XXX: better separation between the two pics */
62 void *irq_request_opaque
;
65 #if defined(DEBUG_PIC) || defined (DEBUG_IRQ_COUNT)
66 static int irq_level
[16];
68 #ifdef DEBUG_IRQ_COUNT
69 static uint64_t irq_count
[16];
73 /* set irq level. If an edge is detected, then the IRR is set to 1 */
74 static inline void pic_set_irq1(PicState
*s
, int irq
, int level
)
90 if ((s
->last_irr
& mask
) == 0)
99 /* return the highest priority found in mask (highest = smallest
100 number). Return 8 if no irq */
101 static inline int get_priority(PicState
*s
, int mask
)
107 while ((mask
& (1 << ((priority
+ s
->priority_add
) & 7))) == 0)
112 /* return the pic wanted interrupt. return -1 if none */
113 static int pic_get_irq(PicState
*s
)
115 int mask
, cur_priority
, priority
;
117 mask
= s
->irr
& ~s
->imr
;
118 priority
= get_priority(s
, mask
);
121 /* compute current priority. If special fully nested mode on the
122 master, the IRQ coming from the slave is not taken into account
123 for the priority computation. */
127 if (s
->special_fully_nested_mode
&& s
== &s
->pics_state
->pics
[0])
129 cur_priority
= get_priority(s
, mask
);
130 if (priority
< cur_priority
) {
131 /* higher priority found: an irq should be generated */
132 return (priority
+ s
->priority_add
) & 7;
138 /* raise irq to CPU if necessary. must be called every time the active
140 /* XXX: should not export it, but it is needed for an APIC kludge */
141 void pic_update_irq(PicState2
*s
)
145 /* first look at slave pic */
146 irq2
= pic_get_irq(&s
->pics
[1]);
148 /* if irq request by slave pic, signal master PIC */
149 pic_set_irq1(&s
->pics
[0], 2, 1);
150 pic_set_irq1(&s
->pics
[0], 2, 0);
152 /* look at requested irq */
153 irq
= pic_get_irq(&s
->pics
[0]);
155 #if defined(DEBUG_PIC)
158 for(i
= 0; i
< 2; i
++) {
159 printf("pic%d: imr=%x irr=%x padd=%d\n",
160 i
, s
->pics
[i
].imr
, s
->pics
[i
].irr
,
161 s
->pics
[i
].priority_add
);
165 printf("pic: cpu_interrupt\n");
167 qemu_irq_raise(s
->parent_irq
);
170 /* all targets should do this rather than acking the IRQ in the cpu */
171 #if defined(TARGET_MIPS) || defined(TARGET_PPC) || defined(TARGET_ALPHA)
173 qemu_irq_lower(s
->parent_irq
);
178 #ifdef DEBUG_IRQ_LATENCY
179 int64_t irq_time
[16];
182 static void i8259_set_irq(void *opaque
, int irq
, int level
)
184 PicState2
*s
= opaque
;
186 #if defined(DEBUG_PIC) || defined(DEBUG_IRQ_COUNT)
187 if (level
!= irq_level
[irq
]) {
188 #if defined(DEBUG_PIC)
189 printf("i8259_set_irq: irq=%d level=%d\n", irq
, level
);
191 irq_level
[irq
] = level
;
192 #ifdef DEBUG_IRQ_COUNT
198 #ifdef DEBUG_IRQ_LATENCY
200 irq_time
[irq
] = qemu_get_clock(vm_clock
);
203 pic_set_irq1(&s
->pics
[irq
>> 3], irq
& 7, level
);
207 /* acknowledge interrupt 'irq' */
208 static inline void pic_intack(PicState
*s
, int irq
)
211 if (s
->rotate_on_auto_eoi
)
212 s
->priority_add
= (irq
+ 1) & 7;
214 s
->isr
|= (1 << irq
);
216 /* We don't clear a level sensitive interrupt here */
217 if (!(s
->elcr
& (1 << irq
)))
218 s
->irr
&= ~(1 << irq
);
221 int pic_read_irq(PicState2
*s
)
223 int irq
, irq2
, intno
;
225 irq
= pic_get_irq(&s
->pics
[0]);
227 pic_intack(&s
->pics
[0], irq
);
229 irq2
= pic_get_irq(&s
->pics
[1]);
231 pic_intack(&s
->pics
[1], irq2
);
233 /* spurious IRQ on slave controller */
236 intno
= s
->pics
[1].irq_base
+ irq2
;
237 #if defined(DEBUG_PIC) || defined(DEBUG_IRQ_LATENCY)
241 intno
= s
->pics
[0].irq_base
+ irq
;
244 /* spurious IRQ on host controller */
246 intno
= s
->pics
[0].irq_base
+ irq
;
250 #ifdef DEBUG_IRQ_LATENCY
251 printf("IRQ%d latency=%0.3fus\n",
253 (double)(qemu_get_clock(vm_clock
) -
254 irq_time
[irq
]) * 1000000.0 / get_ticks_per_sec());
256 #if defined(DEBUG_PIC)
257 printf("pic_interrupt: irq=%d\n", irq
);
262 static void pic_reset(void *opaque
)
264 PicState
*s
= opaque
;
272 s
->read_reg_select
= 0;
277 s
->rotate_on_auto_eoi
= 0;
278 s
->special_fully_nested_mode
= 0;
281 /* Note: ELCR is not reset */
284 static void pic_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
286 PicState
*s
= opaque
;
287 int priority
, cmd
, irq
;
290 printf("pic_write: addr=0x%02x val=0x%02x\n", addr
, val
);
297 /* deassert a pending interrupt */
298 qemu_irq_lower(s
->pics_state
->parent_irq
);
301 s
->single_mode
= val
& 2;
303 hw_error("level sensitive irq not supported");
304 } else if (val
& 0x08) {
308 s
->read_reg_select
= val
& 1;
310 s
->special_mask
= (val
>> 5) & 1;
316 s
->rotate_on_auto_eoi
= cmd
>> 2;
318 case 1: /* end of interrupt */
320 priority
= get_priority(s
, s
->isr
);
322 irq
= (priority
+ s
->priority_add
) & 7;
323 s
->isr
&= ~(1 << irq
);
325 s
->priority_add
= (irq
+ 1) & 7;
326 pic_update_irq(s
->pics_state
);
331 s
->isr
&= ~(1 << irq
);
332 pic_update_irq(s
->pics_state
);
335 s
->priority_add
= (val
+ 1) & 7;
336 pic_update_irq(s
->pics_state
);
340 s
->isr
&= ~(1 << irq
);
341 s
->priority_add
= (irq
+ 1) & 7;
342 pic_update_irq(s
->pics_state
);
350 switch(s
->init_state
) {
354 pic_update_irq(s
->pics_state
);
357 s
->irq_base
= val
& 0xf8;
358 s
->init_state
= s
->single_mode
? (s
->init4
? 3 : 0) : 2;
368 s
->special_fully_nested_mode
= (val
>> 4) & 1;
369 s
->auto_eoi
= (val
>> 1) & 1;
376 static uint32_t pic_poll_read (PicState
*s
, uint32_t addr1
)
380 ret
= pic_get_irq(s
);
383 s
->pics_state
->pics
[0].isr
&= ~(1 << 2);
384 s
->pics_state
->pics
[0].irr
&= ~(1 << 2);
386 s
->irr
&= ~(1 << ret
);
387 s
->isr
&= ~(1 << ret
);
388 if (addr1
>> 7 || ret
!= 2)
389 pic_update_irq(s
->pics_state
);
392 pic_update_irq(s
->pics_state
);
398 static uint32_t pic_ioport_read(void *opaque
, uint32_t addr1
)
400 PicState
*s
= opaque
;
407 ret
= pic_poll_read(s
, addr1
);
411 if (s
->read_reg_select
)
420 printf("pic_read: addr=0x%02x val=0x%02x\n", addr1
, ret
);
425 /* memory mapped interrupt status */
426 /* XXX: may be the same than pic_read_irq() */
427 uint32_t pic_intack_read(PicState2
*s
)
431 ret
= pic_poll_read(&s
->pics
[0], 0x00);
433 ret
= pic_poll_read(&s
->pics
[1], 0x80) + 8;
434 /* Prepare for ISR read */
435 s
->pics
[0].read_reg_select
= 1;
440 static void elcr_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
442 PicState
*s
= opaque
;
443 s
->elcr
= val
& s
->elcr_mask
;
446 static uint32_t elcr_ioport_read(void *opaque
, uint32_t addr1
)
448 PicState
*s
= opaque
;
452 static const VMStateDescription vmstate_pic
= {
455 .minimum_version_id
= 1,
456 .minimum_version_id_old
= 1,
457 .fields
= (VMStateField
[]) {
458 VMSTATE_UINT8(last_irr
, PicState
),
459 VMSTATE_UINT8(irr
, PicState
),
460 VMSTATE_UINT8(imr
, PicState
),
461 VMSTATE_UINT8(isr
, PicState
),
462 VMSTATE_UINT8(priority_add
, PicState
),
463 VMSTATE_UINT8(irq_base
, PicState
),
464 VMSTATE_UINT8(read_reg_select
, PicState
),
465 VMSTATE_UINT8(poll
, PicState
),
466 VMSTATE_UINT8(special_mask
, PicState
),
467 VMSTATE_UINT8(init_state
, PicState
),
468 VMSTATE_UINT8(auto_eoi
, PicState
),
469 VMSTATE_UINT8(rotate_on_auto_eoi
, PicState
),
470 VMSTATE_UINT8(special_fully_nested_mode
, PicState
),
471 VMSTATE_UINT8(init4
, PicState
),
472 VMSTATE_UINT8(single_mode
, PicState
),
473 VMSTATE_UINT8(elcr
, PicState
),
474 VMSTATE_END_OF_LIST()
478 /* XXX: add generic master/slave system */
479 static void pic_init1(int io_addr
, int elcr_addr
, PicState
*s
)
481 register_ioport_write(io_addr
, 2, 1, pic_ioport_write
, s
);
482 register_ioport_read(io_addr
, 2, 1, pic_ioport_read
, s
);
483 if (elcr_addr
>= 0) {
484 register_ioport_write(elcr_addr
, 1, 1, elcr_ioport_write
, s
);
485 register_ioport_read(elcr_addr
, 1, 1, elcr_ioport_read
, s
);
487 vmstate_register(io_addr
, &vmstate_pic
, s
);
488 qemu_register_reset(pic_reset
, s
);
491 void pic_info(Monitor
*mon
)
500 s
= &isa_pic
->pics
[i
];
501 monitor_printf(mon
, "pic%d: irr=%02x imr=%02x isr=%02x hprio=%d "
502 "irq_base=%02x rr_sel=%d elcr=%02x fnm=%d\n",
503 i
, s
->irr
, s
->imr
, s
->isr
, s
->priority_add
,
504 s
->irq_base
, s
->read_reg_select
, s
->elcr
,
505 s
->special_fully_nested_mode
);
509 void irq_info(Monitor
*mon
)
511 #ifndef DEBUG_IRQ_COUNT
512 monitor_printf(mon
, "irq statistic code not compiled.\n");
517 monitor_printf(mon
, "IRQ statistics:\n");
518 for (i
= 0; i
< 16; i
++) {
519 count
= irq_count
[i
];
521 monitor_printf(mon
, "%2d: %" PRId64
"\n", i
, count
);
526 qemu_irq
*i8259_init(qemu_irq parent_irq
)
530 s
= qemu_mallocz(sizeof(PicState2
));
531 pic_init1(0x20, 0x4d0, &s
->pics
[0]);
532 pic_init1(0xa0, 0x4d1, &s
->pics
[1]);
533 s
->pics
[0].elcr_mask
= 0xf8;
534 s
->pics
[1].elcr_mask
= 0xde;
535 s
->parent_irq
= parent_irq
;
536 s
->pics
[0].pics_state
= s
;
537 s
->pics
[1].pics_state
= s
;
539 return qemu_allocate_irqs(i8259_set_irq
, s
, 16);