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
25 #include "qemu/osdep.h"
26 #include "hw/intc/i8259.h"
28 #include "hw/isa/isa.h"
29 #include "qemu/timer.h"
31 #include "hw/isa/i8259_internal.h"
37 //#define DEBUG_IRQ_LATENCY
39 #define TYPE_I8259 "isa-i8259"
40 #define PIC_CLASS(class) OBJECT_CLASS_CHECK(PICClass, (class), TYPE_I8259)
41 #define PIC_GET_CLASS(obj) OBJECT_GET_CLASS(PICClass, (obj), TYPE_I8259)
45 * @parent_realize: The parent's realizefn.
47 typedef struct PICClass
{
48 PICCommonClass parent_class
;
50 DeviceRealize parent_realize
;
53 #ifdef DEBUG_IRQ_LATENCY
54 static int64_t irq_time
[16];
57 static PICCommonState
*slave_pic
;
59 /* return the highest priority found in mask (highest = smallest
60 number). Return 8 if no irq */
61 static int get_priority(PICCommonState
*s
, int mask
)
69 while ((mask
& (1 << ((priority
+ s
->priority_add
) & 7))) == 0) {
75 /* return the pic wanted interrupt. return -1 if none */
76 static int pic_get_irq(PICCommonState
*s
)
78 int mask
, cur_priority
, priority
;
80 mask
= s
->irr
& ~s
->imr
;
81 priority
= get_priority(s
, mask
);
85 /* compute current priority. If special fully nested mode on the
86 master, the IRQ coming from the slave is not taken into account
87 for the priority computation. */
89 if (s
->special_mask
) {
92 if (s
->special_fully_nested_mode
&& s
->master
) {
95 cur_priority
= get_priority(s
, mask
);
96 if (priority
< cur_priority
) {
97 /* higher priority found: an irq should be generated */
98 return (priority
+ s
->priority_add
) & 7;
104 /* Update INT output. Must be called every time the output may have changed. */
105 static void pic_update_irq(PICCommonState
*s
)
109 irq
= pic_get_irq(s
);
111 trace_pic_update_irq(s
->master
, s
->imr
, s
->irr
, s
->priority_add
);
112 qemu_irq_raise(s
->int_out
[0]);
114 qemu_irq_lower(s
->int_out
[0]);
118 /* set irq level. If an edge is detected, then the IRR is set to 1 */
119 static void pic_set_irq(void *opaque
, int irq
, int level
)
121 PICCommonState
*s
= opaque
;
123 int irq_index
= s
->master
? irq
: irq
+ 8;
125 trace_pic_set_irq(s
->master
, irq
, level
);
126 pic_stat_update_irq(irq_index
, level
);
128 #ifdef DEBUG_IRQ_LATENCY
130 irq_time
[irq_index
] = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
134 if (s
->elcr
& mask
) {
135 /* level triggered */
141 s
->last_irr
&= ~mask
;
146 if ((s
->last_irr
& mask
) == 0) {
151 s
->last_irr
&= ~mask
;
157 /* acknowledge interrupt 'irq' */
158 static void pic_intack(PICCommonState
*s
, int irq
)
161 if (s
->rotate_on_auto_eoi
) {
162 s
->priority_add
= (irq
+ 1) & 7;
165 s
->isr
|= (1 << irq
);
167 /* We don't clear a level sensitive interrupt here */
168 if (!(s
->elcr
& (1 << irq
))) {
169 s
->irr
&= ~(1 << irq
);
174 int pic_read_irq(DeviceState
*d
)
176 PICCommonState
*s
= PIC_COMMON(d
);
177 int irq
, irq2
, intno
;
179 irq
= pic_get_irq(s
);
182 irq2
= pic_get_irq(slave_pic
);
184 pic_intack(slave_pic
, irq2
);
186 /* spurious IRQ on slave controller */
189 intno
= slave_pic
->irq_base
+ irq2
;
191 intno
= s
->irq_base
+ irq
;
195 /* spurious IRQ on host controller */
197 intno
= s
->irq_base
+ irq
;
204 #ifdef DEBUG_IRQ_LATENCY
205 printf("IRQ%d latency=%0.3fus\n",
207 (double)(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) -
208 irq_time
[irq
]) * 1000000.0 / NANOSECONDS_PER_SECOND
);
211 trace_pic_interrupt(irq
, intno
);
215 static void pic_init_reset(PICCommonState
*s
)
221 static void pic_reset(DeviceState
*dev
)
223 PICCommonState
*s
= PIC_COMMON(dev
);
229 static void pic_ioport_write(void *opaque
, hwaddr addr64
,
230 uint64_t val64
, unsigned size
)
232 PICCommonState
*s
= opaque
;
233 uint32_t addr
= addr64
;
234 uint32_t val
= val64
;
235 int priority
, cmd
, irq
;
237 trace_pic_ioport_write(s
->master
, addr
, val
);
244 s
->single_mode
= val
& 2;
246 qemu_log_mask(LOG_UNIMP
,
247 "i8259: level sensitive irq not supported\n");
249 } else if (val
& 0x08) {
254 s
->read_reg_select
= val
& 1;
257 s
->special_mask
= (val
>> 5) & 1;
264 s
->rotate_on_auto_eoi
= cmd
>> 2;
266 case 1: /* end of interrupt */
268 priority
= get_priority(s
, s
->isr
);
270 irq
= (priority
+ s
->priority_add
) & 7;
271 s
->isr
&= ~(1 << irq
);
273 s
->priority_add
= (irq
+ 1) & 7;
280 s
->isr
&= ~(1 << irq
);
284 s
->priority_add
= (val
+ 1) & 7;
289 s
->isr
&= ~(1 << irq
);
290 s
->priority_add
= (irq
+ 1) & 7;
299 switch (s
->init_state
) {
306 s
->irq_base
= val
& 0xf8;
307 s
->init_state
= s
->single_mode
? (s
->init4
? 3 : 0) : 2;
317 s
->special_fully_nested_mode
= (val
>> 4) & 1;
318 s
->auto_eoi
= (val
>> 1) & 1;
325 static uint64_t pic_ioport_read(void *opaque
, hwaddr addr
,
328 PICCommonState
*s
= opaque
;
332 ret
= pic_get_irq(s
);
342 if (s
->read_reg_select
) {
351 trace_pic_ioport_read(s
->master
, addr
, ret
);
355 int pic_get_output(DeviceState
*d
)
357 PICCommonState
*s
= PIC_COMMON(d
);
359 return (pic_get_irq(s
) >= 0);
362 static void elcr_ioport_write(void *opaque
, hwaddr addr
,
363 uint64_t val
, unsigned size
)
365 PICCommonState
*s
= opaque
;
366 s
->elcr
= val
& s
->elcr_mask
;
369 static uint64_t elcr_ioport_read(void *opaque
, hwaddr addr
,
372 PICCommonState
*s
= opaque
;
376 static const MemoryRegionOps pic_base_ioport_ops
= {
377 .read
= pic_ioport_read
,
378 .write
= pic_ioport_write
,
380 .min_access_size
= 1,
381 .max_access_size
= 1,
385 static const MemoryRegionOps pic_elcr_ioport_ops
= {
386 .read
= elcr_ioport_read
,
387 .write
= elcr_ioport_write
,
389 .min_access_size
= 1,
390 .max_access_size
= 1,
394 static void pic_realize(DeviceState
*dev
, Error
**errp
)
396 PICCommonState
*s
= PIC_COMMON(dev
);
397 PICClass
*pc
= PIC_GET_CLASS(dev
);
399 memory_region_init_io(&s
->base_io
, OBJECT(s
), &pic_base_ioport_ops
, s
,
401 memory_region_init_io(&s
->elcr_io
, OBJECT(s
), &pic_elcr_ioport_ops
, s
,
404 qdev_init_gpio_out(dev
, s
->int_out
, ARRAY_SIZE(s
->int_out
));
405 qdev_init_gpio_in(dev
, pic_set_irq
, 8);
407 pc
->parent_realize(dev
, errp
);
410 qemu_irq
*i8259_init(ISABus
*bus
, qemu_irq parent_irq
)
417 irq_set
= g_new0(qemu_irq
, ISA_NUM_IRQS
);
419 isadev
= i8259_init_chip(TYPE_I8259
, bus
, true);
420 dev
= DEVICE(isadev
);
422 qdev_connect_gpio_out(dev
, 0, parent_irq
);
423 for (i
= 0 ; i
< 8; i
++) {
424 irq_set
[i
] = qdev_get_gpio_in(dev
, i
);
429 isadev
= i8259_init_chip(TYPE_I8259
, bus
, false);
430 dev
= DEVICE(isadev
);
432 qdev_connect_gpio_out(dev
, 0, irq_set
[2]);
433 for (i
= 0 ; i
< 8; i
++) {
434 irq_set
[i
+ 8] = qdev_get_gpio_in(dev
, i
);
437 slave_pic
= PIC_COMMON(dev
);
442 static void i8259_class_init(ObjectClass
*klass
, void *data
)
444 PICClass
*k
= PIC_CLASS(klass
);
445 DeviceClass
*dc
= DEVICE_CLASS(klass
);
447 device_class_set_parent_realize(dc
, pic_realize
, &k
->parent_realize
);
448 dc
->reset
= pic_reset
;
451 static const TypeInfo i8259_info
= {
453 .instance_size
= sizeof(PICCommonState
),
454 .parent
= TYPE_PIC_COMMON
,
455 .class_init
= i8259_class_init
,
456 .class_size
= sizeof(PICClass
),
459 static void pic_register_types(void)
461 type_register_static(&i8259_info
);
464 type_init(pic_register_types
)