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 "qapi/error.h"
25 #include "monitor/monitor.h"
27 #include "hw/i386/pc.h"
28 #include "hw/i386/apic.h"
29 #include "hw/i386/ioapic.h"
30 #include "hw/i386/ioapic_internal.h"
31 #include "hw/pci/msi.h"
32 #include "sysemu/kvm.h"
33 #include "hw/i386/apic-msidef.h"
34 #include "hw/i386/x86-iommu.h"
37 #define APIC_DELIVERY_MODE_SHIFT 8
38 #define APIC_POLARITY_SHIFT 14
39 #define APIC_TRIG_MODE_SHIFT 15
41 static IOAPICCommonState
*ioapics
[MAX_IOAPICS
];
43 /* global variable from ioapic_common.c */
46 struct ioapic_entry_info
{
47 /* fields parsed from IOAPIC entries */
52 uint8_t delivery_mode
;
55 /* MSI message generated from above parsed fields */
60 static void ioapic_entry_parse(uint64_t entry
, struct ioapic_entry_info
*info
)
62 memset(info
, 0, sizeof(*info
));
63 info
->masked
= (entry
>> IOAPIC_LVT_MASKED_SHIFT
) & 1;
64 info
->trig_mode
= (entry
>> IOAPIC_LVT_TRIGGER_MODE_SHIFT
) & 1;
66 * By default, this would be dest_id[8] + reserved[8]. When IR
67 * is enabled, this would be interrupt_index[15] +
68 * interrupt_format[1]. This field never means anything, but
69 * only used to generate corresponding MSI.
71 info
->dest_idx
= (entry
>> IOAPIC_LVT_DEST_IDX_SHIFT
) & 0xffff;
72 info
->dest_mode
= (entry
>> IOAPIC_LVT_DEST_MODE_SHIFT
) & 1;
73 info
->delivery_mode
= (entry
>> IOAPIC_LVT_DELIV_MODE_SHIFT
) \
75 if (info
->delivery_mode
== IOAPIC_DM_EXTINT
) {
76 info
->vector
= pic_read_irq(isa_pic
);
78 info
->vector
= entry
& IOAPIC_VECTOR_MASK
;
81 info
->addr
= APIC_DEFAULT_ADDRESS
| \
82 (info
->dest_idx
<< MSI_ADDR_DEST_IDX_SHIFT
) | \
83 (info
->dest_mode
<< MSI_ADDR_DEST_MODE_SHIFT
);
84 info
->data
= (info
->vector
<< MSI_DATA_VECTOR_SHIFT
) | \
85 (info
->trig_mode
<< MSI_DATA_TRIGGER_SHIFT
) | \
86 (info
->delivery_mode
<< MSI_DATA_DELIVERY_MODE_SHIFT
);
89 static void ioapic_service(IOAPICCommonState
*s
)
91 AddressSpace
*ioapic_as
= PC_MACHINE(qdev_get_machine())->ioapic_as
;
92 struct ioapic_entry_info info
;
97 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
102 entry
= s
->ioredtbl
[i
];
103 ioapic_entry_parse(entry
, &info
);
105 if (info
.trig_mode
== IOAPIC_TRIGGER_EDGE
) {
108 coalesce
= s
->ioredtbl
[i
] & IOAPIC_LVT_REMOTE_IRR
;
109 trace_ioapic_set_remote_irr(i
);
110 s
->ioredtbl
[i
] |= IOAPIC_LVT_REMOTE_IRR
;
114 /* We are level triggered interrupts, and the
115 * guest should be still working on previous one,
121 if (kvm_irqchip_is_split()) {
122 if (info
.trig_mode
== IOAPIC_TRIGGER_EDGE
) {
123 kvm_set_irq(kvm_state
, i
, 1);
124 kvm_set_irq(kvm_state
, i
, 0);
126 kvm_set_irq(kvm_state
, i
, 1);
132 /* No matter whether IR is enabled, we translate
133 * the IOAPIC message into a MSI one, and its
134 * address space will decide whether we need a
136 stl_le_phys(ioapic_as
, info
.addr
, info
.data
);
142 static void ioapic_set_irq(void *opaque
, int vector
, int level
)
144 IOAPICCommonState
*s
= opaque
;
146 /* ISA IRQs map to GSI 1-1 except for IRQ0 which maps
147 * to GSI 2. GSI maps to ioapic 1-1. This is not
148 * the cleanest way of doing it but it should work. */
150 trace_ioapic_set_irq(vector
, level
);
151 ioapic_stat_update_irq(s
, vector
, level
);
155 if (vector
< IOAPIC_NUM_PINS
) {
156 uint32_t mask
= 1 << vector
;
157 uint64_t entry
= s
->ioredtbl
[vector
];
159 if (((entry
>> IOAPIC_LVT_TRIGGER_MODE_SHIFT
) & 1) ==
160 IOAPIC_TRIGGER_LEVEL
) {
161 /* level triggered */
164 if (!(entry
& IOAPIC_LVT_REMOTE_IRR
)) {
171 /* According to the 82093AA manual, we must ignore edge requests
172 * if the input pin is masked. */
173 if (level
&& !(entry
& IOAPIC_LVT_MASKED
)) {
181 static void ioapic_update_kvm_routes(IOAPICCommonState
*s
)
186 if (kvm_irqchip_is_split()) {
187 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
189 struct ioapic_entry_info info
;
190 ioapic_entry_parse(s
->ioredtbl
[i
], &info
);
191 msg
.address
= info
.addr
;
192 msg
.data
= info
.data
;
193 kvm_irqchip_update_msi_route(kvm_state
, i
, msg
, NULL
);
195 kvm_irqchip_commit_routes(kvm_state
);
201 static void ioapic_iec_notifier(void *private, bool global
,
202 uint32_t index
, uint32_t mask
)
204 IOAPICCommonState
*s
= (IOAPICCommonState
*)private;
205 /* For simplicity, we just update all the routes */
206 ioapic_update_kvm_routes(s
);
210 void ioapic_eoi_broadcast(int vector
)
212 IOAPICCommonState
*s
;
216 trace_ioapic_eoi_broadcast(vector
);
218 for (i
= 0; i
< MAX_IOAPICS
; i
++) {
223 for (n
= 0; n
< IOAPIC_NUM_PINS
; n
++) {
224 entry
= s
->ioredtbl
[n
];
225 if ((entry
& IOAPIC_LVT_REMOTE_IRR
)
226 && (entry
& IOAPIC_VECTOR_MASK
) == vector
) {
227 trace_ioapic_clear_remote_irr(n
, vector
);
228 s
->ioredtbl
[n
] = entry
& ~IOAPIC_LVT_REMOTE_IRR
;
229 if (!(entry
& IOAPIC_LVT_MASKED
) && (s
->irr
& (1 << n
))) {
238 ioapic_mem_read(void *opaque
, hwaddr addr
, unsigned int size
)
240 IOAPICCommonState
*s
= opaque
;
247 case IOAPIC_IOREGSEL
:
254 switch (s
->ioregsel
) {
257 val
= s
->id
<< IOAPIC_ID_SHIFT
;
261 ((IOAPIC_NUM_PINS
- 1) << IOAPIC_VER_ENTRIES_SHIFT
);
264 index
= (s
->ioregsel
- IOAPIC_REG_REDTBL_BASE
) >> 1;
265 if (index
>= 0 && index
< IOAPIC_NUM_PINS
) {
266 if (s
->ioregsel
& 1) {
267 val
= s
->ioredtbl
[index
] >> 32;
269 val
= s
->ioredtbl
[index
] & 0xffffffff;
276 trace_ioapic_mem_read(addr
, s
->ioregsel
, size
, val
);
282 * This is to satisfy the hack in Linux kernel. One hack of it is to
283 * simulate clearing the Remote IRR bit of IOAPIC entry using the
286 * "For IO-APIC's with EOI register, we use that to do an explicit EOI.
287 * Otherwise, we simulate the EOI message manually by changing the trigger
288 * mode to edge and then back to level, with RTE being masked during
291 * (See linux kernel __eoi_ioapic_pin() comment in commit c0205701)
293 * This is based on the assumption that, Remote IRR bit will be
294 * cleared by IOAPIC hardware when configured as edge-triggered
297 * Without this, level-triggered interrupts in IR mode might fail to
301 ioapic_fix_edge_remote_irr(uint64_t *entry
)
303 if (!(*entry
& IOAPIC_LVT_TRIGGER_MODE
)) {
304 /* Edge-triggered interrupts, make sure remote IRR is zero */
305 *entry
&= ~((uint64_t)IOAPIC_LVT_REMOTE_IRR
);
310 ioapic_mem_write(void *opaque
, hwaddr addr
, uint64_t val
,
313 IOAPICCommonState
*s
= opaque
;
317 trace_ioapic_mem_write(addr
, s
->ioregsel
, size
, val
);
320 case IOAPIC_IOREGSEL
:
327 switch (s
->ioregsel
) {
329 s
->id
= (val
>> IOAPIC_ID_SHIFT
) & IOAPIC_ID_MASK
;
335 index
= (s
->ioregsel
- IOAPIC_REG_REDTBL_BASE
) >> 1;
336 if (index
>= 0 && index
< IOAPIC_NUM_PINS
) {
337 uint64_t ro_bits
= s
->ioredtbl
[index
] & IOAPIC_RO_BITS
;
338 if (s
->ioregsel
& 1) {
339 s
->ioredtbl
[index
] &= 0xffffffff;
340 s
->ioredtbl
[index
] |= (uint64_t)val
<< 32;
342 s
->ioredtbl
[index
] &= ~0xffffffffULL
;
343 s
->ioredtbl
[index
] |= val
;
345 /* restore RO bits */
346 s
->ioredtbl
[index
] &= IOAPIC_RW_BITS
;
347 s
->ioredtbl
[index
] |= ro_bits
;
348 ioapic_fix_edge_remote_irr(&s
->ioredtbl
[index
]);
354 /* Explicit EOI is only supported for IOAPIC version 0x20 */
355 if (size
!= 4 || s
->version
!= 0x20) {
358 ioapic_eoi_broadcast(val
);
362 ioapic_update_kvm_routes(s
);
365 static const MemoryRegionOps ioapic_io_ops
= {
366 .read
= ioapic_mem_read
,
367 .write
= ioapic_mem_write
,
368 .endianness
= DEVICE_NATIVE_ENDIAN
,
371 static void ioapic_machine_done_notify(Notifier
*notifier
, void *data
)
374 IOAPICCommonState
*s
= container_of(notifier
, IOAPICCommonState
,
377 if (kvm_irqchip_is_split()) {
378 X86IOMMUState
*iommu
= x86_iommu_get_default();
380 /* Register this IOAPIC with IOMMU IEC notifier, so that
381 * when there are IR invalidates, we can be notified to
382 * update kernel IR cache. */
383 x86_iommu_iec_register_notifier(iommu
, ioapic_iec_notifier
, s
);
389 #define IOAPIC_VER_DEF 0x20
391 static void ioapic_realize(DeviceState
*dev
, Error
**errp
)
393 IOAPICCommonState
*s
= IOAPIC_COMMON(dev
);
395 if (s
->version
!= 0x11 && s
->version
!= 0x20) {
396 error_setg(errp
, "IOAPIC only supports version 0x11 or 0x20 "
397 "(default: 0x%x).", IOAPIC_VER_DEF
);
401 memory_region_init_io(&s
->io_memory
, OBJECT(s
), &ioapic_io_ops
, s
,
404 qdev_init_gpio_in(dev
, ioapic_set_irq
, IOAPIC_NUM_PINS
);
406 ioapics
[ioapic_no
] = s
;
407 s
->machine_done
.notify
= ioapic_machine_done_notify
;
408 qemu_add_machine_init_done_notifier(&s
->machine_done
);
411 static Property ioapic_properties
[] = {
412 DEFINE_PROP_UINT8("version", IOAPICCommonState
, version
, IOAPIC_VER_DEF
),
413 DEFINE_PROP_END_OF_LIST(),
416 static void ioapic_class_init(ObjectClass
*klass
, void *data
)
418 IOAPICCommonClass
*k
= IOAPIC_COMMON_CLASS(klass
);
419 DeviceClass
*dc
= DEVICE_CLASS(klass
);
421 k
->realize
= ioapic_realize
;
423 * If APIC is in kernel, we need to update the kernel cache after
424 * migration, otherwise first 24 gsi routes will be invalid.
426 k
->post_load
= ioapic_update_kvm_routes
;
427 dc
->reset
= ioapic_reset_common
;
428 dc
->props
= ioapic_properties
;
431 static const TypeInfo ioapic_info
= {
433 .parent
= TYPE_IOAPIC_COMMON
,
434 .instance_size
= sizeof(IOAPICCommonState
),
435 .class_init
= ioapic_class_init
,
438 static void ioapic_register_types(void)
440 type_register_static(&ioapic_info
);
443 type_init(ioapic_register_types
)