2 * ioapic.c IOAPIC emulation logic
4 * Copyright (c) 2004-2005 Fabrice Bellard
6 * Split the ioapic logic from apic.c
7 * Xiantao Zhang <xiantao.zhang@intel.com>
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 #include "qemu/osdep.h"
24 #include "monitor/monitor.h"
26 #include "hw/i386/pc.h"
27 #include "hw/i386/apic.h"
28 #include "hw/i386/ioapic.h"
29 #include "hw/i386/ioapic_internal.h"
30 #include "include/hw/pci/msi.h"
31 #include "sysemu/kvm.h"
33 //#define DEBUG_IOAPIC
36 #define DPRINTF(fmt, ...) \
37 do { printf("ioapic: " fmt , ## __VA_ARGS__); } while (0)
39 #define DPRINTF(fmt, ...)
42 #define APIC_DELIVERY_MODE_SHIFT 8
43 #define APIC_POLARITY_SHIFT 14
44 #define APIC_TRIG_MODE_SHIFT 15
46 static IOAPICCommonState
*ioapics
[MAX_IOAPICS
];
48 /* global variable from ioapic_common.c */
51 static void ioapic_service(IOAPICCommonState
*s
)
56 uint8_t delivery_mode
;
62 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
67 entry
= s
->ioredtbl
[i
];
68 if (!(entry
& IOAPIC_LVT_MASKED
)) {
69 trig_mode
= ((entry
>> IOAPIC_LVT_TRIGGER_MODE_SHIFT
) & 1);
70 dest
= entry
>> IOAPIC_LVT_DEST_SHIFT
;
71 dest_mode
= (entry
>> IOAPIC_LVT_DEST_MODE_SHIFT
) & 1;
73 (entry
>> IOAPIC_LVT_DELIV_MODE_SHIFT
) & IOAPIC_DM_MASK
;
74 if (trig_mode
== IOAPIC_TRIGGER_EDGE
) {
77 coalesce
= s
->ioredtbl
[i
] & IOAPIC_LVT_REMOTE_IRR
;
78 s
->ioredtbl
[i
] |= IOAPIC_LVT_REMOTE_IRR
;
80 if (delivery_mode
== IOAPIC_DM_EXTINT
) {
81 vector
= pic_read_irq(isa_pic
);
83 vector
= entry
& IOAPIC_VECTOR_MASK
;
86 if (kvm_irqchip_is_split()) {
87 if (trig_mode
== IOAPIC_TRIGGER_EDGE
) {
88 kvm_set_irq(kvm_state
, i
, 1);
89 kvm_set_irq(kvm_state
, i
, 0);
92 kvm_set_irq(kvm_state
, i
, 1);
100 apic_deliver_irq(dest
, dest_mode
, delivery_mode
, vector
,
107 static void ioapic_set_irq(void *opaque
, int vector
, int level
)
109 IOAPICCommonState
*s
= opaque
;
111 /* ISA IRQs map to GSI 1-1 except for IRQ0 which maps
112 * to GSI 2. GSI maps to ioapic 1-1. This is not
113 * the cleanest way of doing it but it should work. */
115 DPRINTF("%s: %s vec %x\n", __func__
, level
? "raise" : "lower", vector
);
119 if (vector
>= 0 && vector
< IOAPIC_NUM_PINS
) {
120 uint32_t mask
= 1 << vector
;
121 uint64_t entry
= s
->ioredtbl
[vector
];
123 if (((entry
>> IOAPIC_LVT_TRIGGER_MODE_SHIFT
) & 1) ==
124 IOAPIC_TRIGGER_LEVEL
) {
125 /* level triggered */
128 if (!(entry
& IOAPIC_LVT_REMOTE_IRR
)) {
135 /* According to the 82093AA manual, we must ignore edge requests
136 * if the input pin is masked. */
137 if (level
&& !(entry
& IOAPIC_LVT_MASKED
)) {
145 static void ioapic_update_kvm_routes(IOAPICCommonState
*s
)
150 if (kvm_irqchip_is_split()) {
151 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
152 uint64_t entry
= s
->ioredtbl
[i
];
154 uint8_t delivery_mode
;
157 uint64_t pin_polarity
;
160 trig_mode
= ((entry
>> IOAPIC_LVT_TRIGGER_MODE_SHIFT
) & 1);
161 dest
= entry
>> IOAPIC_LVT_DEST_SHIFT
;
162 dest_mode
= (entry
>> IOAPIC_LVT_DEST_MODE_SHIFT
) & 1;
163 pin_polarity
= (entry
>> IOAPIC_LVT_TRIGGER_MODE_SHIFT
) & 1;
165 (entry
>> IOAPIC_LVT_DELIV_MODE_SHIFT
) & IOAPIC_DM_MASK
;
167 msg
.address
= APIC_DEFAULT_ADDRESS
;
168 msg
.address
|= dest_mode
<< 2;
169 msg
.address
|= dest
<< 12;
171 msg
.data
= entry
& IOAPIC_VECTOR_MASK
;
172 msg
.data
|= delivery_mode
<< APIC_DELIVERY_MODE_SHIFT
;
173 msg
.data
|= pin_polarity
<< APIC_POLARITY_SHIFT
;
174 msg
.data
|= trig_mode
<< APIC_TRIG_MODE_SHIFT
;
176 kvm_irqchip_update_msi_route(kvm_state
, i
, msg
, NULL
);
178 kvm_irqchip_commit_routes(kvm_state
);
183 void ioapic_eoi_broadcast(int vector
)
185 IOAPICCommonState
*s
;
189 for (i
= 0; i
< MAX_IOAPICS
; i
++) {
194 for (n
= 0; n
< IOAPIC_NUM_PINS
; n
++) {
195 entry
= s
->ioredtbl
[n
];
196 if ((entry
& IOAPIC_LVT_REMOTE_IRR
)
197 && (entry
& IOAPIC_VECTOR_MASK
) == vector
) {
198 s
->ioredtbl
[n
] = entry
& ~IOAPIC_LVT_REMOTE_IRR
;
199 if (!(entry
& IOAPIC_LVT_MASKED
) && (s
->irr
& (1 << n
))) {
207 void ioapic_dump_state(Monitor
*mon
, const QDict
*qdict
)
211 for (i
= 0; i
< MAX_IOAPICS
; i
++) {
212 if (ioapics
[i
] != 0) {
213 ioapic_print_redtbl(mon
, ioapics
[i
]);
219 ioapic_mem_read(void *opaque
, hwaddr addr
, unsigned int size
)
221 IOAPICCommonState
*s
= opaque
;
225 switch (addr
& 0xff) {
226 case IOAPIC_IOREGSEL
:
233 switch (s
->ioregsel
) {
236 val
= s
->id
<< IOAPIC_ID_SHIFT
;
239 val
= IOAPIC_VERSION
|
240 ((IOAPIC_NUM_PINS
- 1) << IOAPIC_VER_ENTRIES_SHIFT
);
243 index
= (s
->ioregsel
- IOAPIC_REG_REDTBL_BASE
) >> 1;
244 if (index
>= 0 && index
< IOAPIC_NUM_PINS
) {
245 if (s
->ioregsel
& 1) {
246 val
= s
->ioredtbl
[index
] >> 32;
248 val
= s
->ioredtbl
[index
] & 0xffffffff;
252 DPRINTF("read: %08x = %08x\n", s
->ioregsel
, val
);
259 * This is to satisfy the hack in Linux kernel. One hack of it is to
260 * simulate clearing the Remote IRR bit of IOAPIC entry using the
263 * "For IO-APIC's with EOI register, we use that to do an explicit EOI.
264 * Otherwise, we simulate the EOI message manually by changing the trigger
265 * mode to edge and then back to level, with RTE being masked during
268 * (See linux kernel __eoi_ioapic_pin() comment in commit c0205701)
270 * This is based on the assumption that, Remote IRR bit will be
271 * cleared by IOAPIC hardware when configured as edge-triggered
274 * Without this, level-triggered interrupts in IR mode might fail to
278 ioapic_fix_edge_remote_irr(uint64_t *entry
)
280 if (!(*entry
& IOAPIC_LVT_TRIGGER_MODE
)) {
281 /* Edge-triggered interrupts, make sure remote IRR is zero */
282 *entry
&= ~((uint64_t)IOAPIC_LVT_REMOTE_IRR
);
287 ioapic_mem_write(void *opaque
, hwaddr addr
, uint64_t val
,
290 IOAPICCommonState
*s
= opaque
;
293 switch (addr
& 0xff) {
294 case IOAPIC_IOREGSEL
:
301 DPRINTF("write: %08x = %08" PRIx64
"\n", s
->ioregsel
, val
);
302 switch (s
->ioregsel
) {
304 s
->id
= (val
>> IOAPIC_ID_SHIFT
) & IOAPIC_ID_MASK
;
310 index
= (s
->ioregsel
- IOAPIC_REG_REDTBL_BASE
) >> 1;
311 if (index
>= 0 && index
< IOAPIC_NUM_PINS
) {
312 uint64_t ro_bits
= s
->ioredtbl
[index
] & IOAPIC_RO_BITS
;
313 if (s
->ioregsel
& 1) {
314 s
->ioredtbl
[index
] &= 0xffffffff;
315 s
->ioredtbl
[index
] |= (uint64_t)val
<< 32;
317 s
->ioredtbl
[index
] &= ~0xffffffffULL
;
318 s
->ioredtbl
[index
] |= val
;
320 /* restore RO bits */
321 s
->ioredtbl
[index
] &= IOAPIC_RW_BITS
;
322 s
->ioredtbl
[index
] |= ro_bits
;
323 ioapic_fix_edge_remote_irr(&s
->ioredtbl
[index
]);
330 ioapic_update_kvm_routes(s
);
333 static const MemoryRegionOps ioapic_io_ops
= {
334 .read
= ioapic_mem_read
,
335 .write
= ioapic_mem_write
,
336 .endianness
= DEVICE_NATIVE_ENDIAN
,
339 static void ioapic_realize(DeviceState
*dev
, Error
**errp
)
341 IOAPICCommonState
*s
= IOAPIC_COMMON(dev
);
343 memory_region_init_io(&s
->io_memory
, OBJECT(s
), &ioapic_io_ops
, s
,
346 qdev_init_gpio_in(dev
, ioapic_set_irq
, IOAPIC_NUM_PINS
);
348 ioapics
[ioapic_no
] = s
;
351 static void ioapic_class_init(ObjectClass
*klass
, void *data
)
353 IOAPICCommonClass
*k
= IOAPIC_COMMON_CLASS(klass
);
354 DeviceClass
*dc
= DEVICE_CLASS(klass
);
356 k
->realize
= ioapic_realize
;
357 dc
->reset
= ioapic_reset_common
;
360 static const TypeInfo ioapic_info
= {
362 .parent
= TYPE_IOAPIC_COMMON
,
363 .instance_size
= sizeof(IOAPICCommonState
),
364 .class_init
= ioapic_class_init
,
367 static void ioapic_register_types(void)
369 type_register_static(&ioapic_info
);
372 type_init(ioapic_register_types
)