4 * Copyright (c) 2004-2005 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>
19 #include "qemu/thread.h"
20 #include "hw/i386/apic_internal.h"
21 #include "hw/i386/apic.h"
22 #include "hw/i386/ioapic.h"
23 #include "hw/pci/msi.h"
24 #include "qemu/host-utils.h"
26 #include "hw/i386/pc.h"
27 #include "hw/i386/apic-msidef.h"
29 #define MAX_APIC_WORDS 8
31 #define SYNC_FROM_VAPIC 0x1
32 #define SYNC_TO_VAPIC 0x2
33 #define SYNC_ISR_IRR_TO_VAPIC 0x4
35 static APICCommonState
*local_apics
[MAX_APICS
+ 1];
37 static void apic_set_irq(APICCommonState
*s
, int vector_num
, int trigger_mode
);
38 static void apic_update_irq(APICCommonState
*s
);
39 static void apic_get_delivery_bitmask(uint32_t *deliver_bitmask
,
40 uint8_t dest
, uint8_t dest_mode
);
42 /* Find first bit starting from msb */
43 static int apic_fls_bit(uint32_t value
)
45 return 31 - clz32(value
);
48 /* Find first bit starting from lsb */
49 static int apic_ffs_bit(uint32_t value
)
54 static inline void apic_set_bit(uint32_t *tab
, int index
)
58 mask
= 1 << (index
& 0x1f);
62 static inline void apic_reset_bit(uint32_t *tab
, int index
)
66 mask
= 1 << (index
& 0x1f);
70 static inline int apic_get_bit(uint32_t *tab
, int index
)
74 mask
= 1 << (index
& 0x1f);
75 return !!(tab
[i
] & mask
);
78 /* return -1 if no bit is set */
79 static int get_highest_priority_int(uint32_t *tab
)
82 for (i
= 7; i
>= 0; i
--) {
84 return i
* 32 + apic_fls_bit(tab
[i
]);
90 static void apic_sync_vapic(APICCommonState
*s
, int sync_type
)
92 VAPICState vapic_state
;
97 if (!s
->vapic_paddr
) {
100 if (sync_type
& SYNC_FROM_VAPIC
) {
101 cpu_physical_memory_read(s
->vapic_paddr
, &vapic_state
,
102 sizeof(vapic_state
));
103 s
->tpr
= vapic_state
.tpr
;
105 if (sync_type
& (SYNC_TO_VAPIC
| SYNC_ISR_IRR_TO_VAPIC
)) {
106 start
= offsetof(VAPICState
, isr
);
107 length
= offsetof(VAPICState
, enabled
) - offsetof(VAPICState
, isr
);
109 if (sync_type
& SYNC_TO_VAPIC
) {
110 assert(qemu_cpu_is_self(CPU(s
->cpu
)));
112 vapic_state
.tpr
= s
->tpr
;
113 vapic_state
.enabled
= 1;
115 length
= sizeof(VAPICState
);
118 vector
= get_highest_priority_int(s
->isr
);
122 vapic_state
.isr
= vector
& 0xf0;
124 vapic_state
.zero
= 0;
126 vector
= get_highest_priority_int(s
->irr
);
130 vapic_state
.irr
= vector
& 0xff;
132 cpu_physical_memory_write_rom(&address_space_memory
,
133 s
->vapic_paddr
+ start
,
134 ((void *)&vapic_state
) + start
, length
);
138 static void apic_vapic_base_update(APICCommonState
*s
)
140 apic_sync_vapic(s
, SYNC_TO_VAPIC
);
143 static void apic_local_deliver(APICCommonState
*s
, int vector
)
145 uint32_t lvt
= s
->lvt
[vector
];
148 trace_apic_local_deliver(vector
, (lvt
>> 8) & 7);
150 if (lvt
& APIC_LVT_MASKED
)
153 switch ((lvt
>> 8) & 7) {
155 cpu_interrupt(CPU(s
->cpu
), CPU_INTERRUPT_SMI
);
159 cpu_interrupt(CPU(s
->cpu
), CPU_INTERRUPT_NMI
);
163 cpu_interrupt(CPU(s
->cpu
), CPU_INTERRUPT_HARD
);
167 trigger_mode
= APIC_TRIGGER_EDGE
;
168 if ((vector
== APIC_LVT_LINT0
|| vector
== APIC_LVT_LINT1
) &&
169 (lvt
& APIC_LVT_LEVEL_TRIGGER
))
170 trigger_mode
= APIC_TRIGGER_LEVEL
;
171 apic_set_irq(s
, lvt
& 0xff, trigger_mode
);
175 void apic_deliver_pic_intr(DeviceState
*dev
, int level
)
177 APICCommonState
*s
= APIC_COMMON(dev
);
180 apic_local_deliver(s
, APIC_LVT_LINT0
);
182 uint32_t lvt
= s
->lvt
[APIC_LVT_LINT0
];
184 switch ((lvt
>> 8) & 7) {
186 if (!(lvt
& APIC_LVT_LEVEL_TRIGGER
))
188 apic_reset_bit(s
->irr
, lvt
& 0xff);
197 static void apic_external_nmi(APICCommonState
*s
)
199 apic_local_deliver(s
, APIC_LVT_LINT1
);
202 #define foreach_apic(apic, deliver_bitmask, code) \
205 for(__i = 0; __i < MAX_APIC_WORDS; __i++) {\
206 uint32_t __mask = deliver_bitmask[__i];\
208 for(__j = 0; __j < 32; __j++) {\
209 if (__mask & (1U << __j)) {\
210 apic = local_apics[__i * 32 + __j];\
220 static void apic_bus_deliver(const uint32_t *deliver_bitmask
,
221 uint8_t delivery_mode
, uint8_t vector_num
,
222 uint8_t trigger_mode
)
224 APICCommonState
*apic_iter
;
226 switch (delivery_mode
) {
228 /* XXX: search for focus processor, arbitration */
232 for(i
= 0; i
< MAX_APIC_WORDS
; i
++) {
233 if (deliver_bitmask
[i
]) {
234 d
= i
* 32 + apic_ffs_bit(deliver_bitmask
[i
]);
239 apic_iter
= local_apics
[d
];
241 apic_set_irq(apic_iter
, vector_num
, trigger_mode
);
251 foreach_apic(apic_iter
, deliver_bitmask
,
252 cpu_interrupt(CPU(apic_iter
->cpu
), CPU_INTERRUPT_SMI
)
257 foreach_apic(apic_iter
, deliver_bitmask
,
258 cpu_interrupt(CPU(apic_iter
->cpu
), CPU_INTERRUPT_NMI
)
263 /* normal INIT IPI sent to processors */
264 foreach_apic(apic_iter
, deliver_bitmask
,
265 cpu_interrupt(CPU(apic_iter
->cpu
),
271 /* handled in I/O APIC code */
278 foreach_apic(apic_iter
, deliver_bitmask
,
279 apic_set_irq(apic_iter
, vector_num
, trigger_mode
) );
282 void apic_deliver_irq(uint8_t dest
, uint8_t dest_mode
, uint8_t delivery_mode
,
283 uint8_t vector_num
, uint8_t trigger_mode
)
285 uint32_t deliver_bitmask
[MAX_APIC_WORDS
];
287 trace_apic_deliver_irq(dest
, dest_mode
, delivery_mode
, vector_num
,
290 apic_get_delivery_bitmask(deliver_bitmask
, dest
, dest_mode
);
291 apic_bus_deliver(deliver_bitmask
, delivery_mode
, vector_num
, trigger_mode
);
294 static void apic_set_base(APICCommonState
*s
, uint64_t val
)
296 s
->apicbase
= (val
& 0xfffff000) |
297 (s
->apicbase
& (MSR_IA32_APICBASE_BSP
| MSR_IA32_APICBASE_ENABLE
));
298 /* if disabled, cannot be enabled again */
299 if (!(val
& MSR_IA32_APICBASE_ENABLE
)) {
300 s
->apicbase
&= ~MSR_IA32_APICBASE_ENABLE
;
301 cpu_clear_apic_feature(&s
->cpu
->env
);
302 s
->spurious_vec
&= ~APIC_SV_ENABLE
;
306 static void apic_set_tpr(APICCommonState
*s
, uint8_t val
)
308 /* Updates from cr8 are ignored while the VAPIC is active */
309 if (!s
->vapic_paddr
) {
315 static uint8_t apic_get_tpr(APICCommonState
*s
)
317 apic_sync_vapic(s
, SYNC_FROM_VAPIC
);
321 static int apic_get_ppr(APICCommonState
*s
)
326 isrv
= get_highest_priority_int(s
->isr
);
337 static int apic_get_arb_pri(APICCommonState
*s
)
339 /* XXX: arbitration */
345 * <0 - low prio interrupt,
347 * >0 - interrupt number
349 static int apic_irq_pending(APICCommonState
*s
)
353 if (!(s
->spurious_vec
& APIC_SV_ENABLE
)) {
357 irrv
= get_highest_priority_int(s
->irr
);
361 ppr
= apic_get_ppr(s
);
362 if (ppr
&& (irrv
& 0xf0) <= (ppr
& 0xf0)) {
369 /* signal the CPU if an irq is pending */
370 static void apic_update_irq(APICCommonState
*s
)
375 if (!qemu_cpu_is_self(cpu
)) {
376 cpu_interrupt(cpu
, CPU_INTERRUPT_POLL
);
377 } else if (apic_irq_pending(s
) > 0) {
378 cpu_interrupt(cpu
, CPU_INTERRUPT_HARD
);
379 } else if (!apic_accept_pic_intr(&s
->busdev
.qdev
) || !pic_get_output(isa_pic
)) {
380 cpu_reset_interrupt(cpu
, CPU_INTERRUPT_HARD
);
384 void apic_poll_irq(DeviceState
*dev
)
386 APICCommonState
*s
= APIC_COMMON(dev
);
388 apic_sync_vapic(s
, SYNC_FROM_VAPIC
);
392 static void apic_set_irq(APICCommonState
*s
, int vector_num
, int trigger_mode
)
394 apic_report_irq_delivered(!apic_get_bit(s
->irr
, vector_num
));
396 apic_set_bit(s
->irr
, vector_num
);
398 apic_set_bit(s
->tmr
, vector_num
);
400 apic_reset_bit(s
->tmr
, vector_num
);
401 if (s
->vapic_paddr
) {
402 apic_sync_vapic(s
, SYNC_ISR_IRR_TO_VAPIC
);
404 * The vcpu thread needs to see the new IRR before we pull its current
405 * TPR value. That way, if we miss a lowering of the TRP, the guest
406 * has the chance to notice the new IRR and poll for IRQs on its own.
409 apic_sync_vapic(s
, SYNC_FROM_VAPIC
);
414 static void apic_eoi(APICCommonState
*s
)
417 isrv
= get_highest_priority_int(s
->isr
);
420 apic_reset_bit(s
->isr
, isrv
);
421 if (!(s
->spurious_vec
& APIC_SV_DIRECTED_IO
) && apic_get_bit(s
->tmr
, isrv
)) {
422 ioapic_eoi_broadcast(isrv
);
424 apic_sync_vapic(s
, SYNC_FROM_VAPIC
| SYNC_TO_VAPIC
);
428 static int apic_find_dest(uint8_t dest
)
430 APICCommonState
*apic
= local_apics
[dest
];
433 if (apic
&& apic
->id
== dest
)
434 return dest
; /* shortcut in case apic->id == apic->idx */
436 for (i
= 0; i
< MAX_APICS
; i
++) {
437 apic
= local_apics
[i
];
438 if (apic
&& apic
->id
== dest
)
447 static void apic_get_delivery_bitmask(uint32_t *deliver_bitmask
,
448 uint8_t dest
, uint8_t dest_mode
)
450 APICCommonState
*apic_iter
;
453 if (dest_mode
== 0) {
455 memset(deliver_bitmask
, 0xff, MAX_APIC_WORDS
* sizeof(uint32_t));
457 int idx
= apic_find_dest(dest
);
458 memset(deliver_bitmask
, 0x00, MAX_APIC_WORDS
* sizeof(uint32_t));
460 apic_set_bit(deliver_bitmask
, idx
);
463 /* XXX: cluster mode */
464 memset(deliver_bitmask
, 0x00, MAX_APIC_WORDS
* sizeof(uint32_t));
465 for(i
= 0; i
< MAX_APICS
; i
++) {
466 apic_iter
= local_apics
[i
];
468 if (apic_iter
->dest_mode
== 0xf) {
469 if (dest
& apic_iter
->log_dest
)
470 apic_set_bit(deliver_bitmask
, i
);
471 } else if (apic_iter
->dest_mode
== 0x0) {
472 if ((dest
& 0xf0) == (apic_iter
->log_dest
& 0xf0) &&
473 (dest
& apic_iter
->log_dest
& 0x0f)) {
474 apic_set_bit(deliver_bitmask
, i
);
484 static void apic_startup(APICCommonState
*s
, int vector_num
)
486 s
->sipi_vector
= vector_num
;
487 cpu_interrupt(CPU(s
->cpu
), CPU_INTERRUPT_SIPI
);
490 void apic_sipi(DeviceState
*dev
)
492 APICCommonState
*s
= APIC_COMMON(dev
);
494 cpu_reset_interrupt(CPU(s
->cpu
), CPU_INTERRUPT_SIPI
);
496 if (!s
->wait_for_sipi
)
498 cpu_x86_load_seg_cache_sipi(s
->cpu
, s
->sipi_vector
);
499 s
->wait_for_sipi
= 0;
502 static void apic_deliver(DeviceState
*dev
, uint8_t dest
, uint8_t dest_mode
,
503 uint8_t delivery_mode
, uint8_t vector_num
,
504 uint8_t trigger_mode
)
506 APICCommonState
*s
= APIC_COMMON(dev
);
507 uint32_t deliver_bitmask
[MAX_APIC_WORDS
];
508 int dest_shorthand
= (s
->icr
[0] >> 18) & 3;
509 APICCommonState
*apic_iter
;
511 switch (dest_shorthand
) {
513 apic_get_delivery_bitmask(deliver_bitmask
, dest
, dest_mode
);
516 memset(deliver_bitmask
, 0x00, sizeof(deliver_bitmask
));
517 apic_set_bit(deliver_bitmask
, s
->idx
);
520 memset(deliver_bitmask
, 0xff, sizeof(deliver_bitmask
));
523 memset(deliver_bitmask
, 0xff, sizeof(deliver_bitmask
));
524 apic_reset_bit(deliver_bitmask
, s
->idx
);
528 switch (delivery_mode
) {
531 int trig_mode
= (s
->icr
[0] >> 15) & 1;
532 int level
= (s
->icr
[0] >> 14) & 1;
533 if (level
== 0 && trig_mode
== 1) {
534 foreach_apic(apic_iter
, deliver_bitmask
,
535 apic_iter
->arb_id
= apic_iter
->id
);
542 foreach_apic(apic_iter
, deliver_bitmask
,
543 apic_startup(apic_iter
, vector_num
) );
547 apic_bus_deliver(deliver_bitmask
, delivery_mode
, vector_num
, trigger_mode
);
550 static bool apic_check_pic(APICCommonState
*s
)
552 if (!apic_accept_pic_intr(&s
->busdev
.qdev
) || !pic_get_output(isa_pic
)) {
555 apic_deliver_pic_intr(&s
->busdev
.qdev
, 1);
559 int apic_get_interrupt(DeviceState
*dev
)
561 APICCommonState
*s
= APIC_COMMON(dev
);
564 /* if the APIC is installed or enabled, we let the 8259 handle the
568 if (!(s
->spurious_vec
& APIC_SV_ENABLE
))
571 apic_sync_vapic(s
, SYNC_FROM_VAPIC
);
572 intno
= apic_irq_pending(s
);
574 /* if there is an interrupt from the 8259, let the caller handle
575 * that first since ExtINT interrupts ignore the priority.
577 if (intno
== 0 || apic_check_pic(s
)) {
578 apic_sync_vapic(s
, SYNC_TO_VAPIC
);
580 } else if (intno
< 0) {
581 apic_sync_vapic(s
, SYNC_TO_VAPIC
);
582 return s
->spurious_vec
& 0xff;
584 apic_reset_bit(s
->irr
, intno
);
585 apic_set_bit(s
->isr
, intno
);
586 apic_sync_vapic(s
, SYNC_TO_VAPIC
);
593 int apic_accept_pic_intr(DeviceState
*dev
)
595 APICCommonState
*s
= APIC_COMMON(dev
);
601 lvt0
= s
->lvt
[APIC_LVT_LINT0
];
603 if ((s
->apicbase
& MSR_IA32_APICBASE_ENABLE
) == 0 ||
604 (lvt0
& APIC_LVT_MASKED
) == 0)
610 static uint32_t apic_get_current_count(APICCommonState
*s
)
614 d
= (qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) - s
->initial_count_load_time
) >>
616 if (s
->lvt
[APIC_LVT_TIMER
] & APIC_LVT_TIMER_PERIODIC
) {
618 val
= s
->initial_count
- (d
% ((uint64_t)s
->initial_count
+ 1));
620 if (d
>= s
->initial_count
)
623 val
= s
->initial_count
- d
;
628 static void apic_timer_update(APICCommonState
*s
, int64_t current_time
)
630 if (apic_next_timer(s
, current_time
)) {
631 timer_mod(s
->timer
, s
->next_time
);
637 static void apic_timer(void *opaque
)
639 APICCommonState
*s
= opaque
;
641 apic_local_deliver(s
, APIC_LVT_TIMER
);
642 apic_timer_update(s
, s
->next_time
);
645 static uint32_t apic_mem_readb(void *opaque
, hwaddr addr
)
650 static uint32_t apic_mem_readw(void *opaque
, hwaddr addr
)
655 static void apic_mem_writeb(void *opaque
, hwaddr addr
, uint32_t val
)
659 static void apic_mem_writew(void *opaque
, hwaddr addr
, uint32_t val
)
663 static uint32_t apic_mem_readl(void *opaque
, hwaddr addr
)
670 dev
= cpu_get_current_apic();
674 s
= APIC_COMMON(dev
);
676 index
= (addr
>> 4) & 0xff;
681 case 0x03: /* version */
682 val
= s
->version
| ((APIC_LVT_NB
- 1) << 16);
685 apic_sync_vapic(s
, SYNC_FROM_VAPIC
);
686 if (apic_report_tpr_access
) {
687 cpu_report_tpr_access(&s
->cpu
->env
, TPR_ACCESS_READ
);
692 val
= apic_get_arb_pri(s
);
696 val
= apic_get_ppr(s
);
702 val
= s
->log_dest
<< 24;
705 val
= (s
->dest_mode
<< 28) | 0xfffffff;
708 val
= s
->spurious_vec
;
711 val
= s
->isr
[index
& 7];
714 val
= s
->tmr
[index
& 7];
717 val
= s
->irr
[index
& 7];
724 val
= s
->icr
[index
& 1];
727 val
= s
->lvt
[index
- 0x32];
730 val
= s
->initial_count
;
733 val
= apic_get_current_count(s
);
736 val
= s
->divide_conf
;
739 s
->esr
|= ESR_ILLEGAL_ADDRESS
;
743 trace_apic_mem_readl(addr
, val
);
747 static void apic_send_msi(hwaddr addr
, uint32_t data
)
749 uint8_t dest
= (addr
& MSI_ADDR_DEST_ID_MASK
) >> MSI_ADDR_DEST_ID_SHIFT
;
750 uint8_t vector
= (data
& MSI_DATA_VECTOR_MASK
) >> MSI_DATA_VECTOR_SHIFT
;
751 uint8_t dest_mode
= (addr
>> MSI_ADDR_DEST_MODE_SHIFT
) & 0x1;
752 uint8_t trigger_mode
= (data
>> MSI_DATA_TRIGGER_SHIFT
) & 0x1;
753 uint8_t delivery
= (data
>> MSI_DATA_DELIVERY_MODE_SHIFT
) & 0x7;
754 /* XXX: Ignore redirection hint. */
755 apic_deliver_irq(dest
, dest_mode
, delivery
, vector
, trigger_mode
);
758 static void apic_mem_writel(void *opaque
, hwaddr addr
, uint32_t val
)
762 int index
= (addr
>> 4) & 0xff;
763 if (addr
> 0xfff || !index
) {
764 /* MSI and MMIO APIC are at the same memory location,
765 * but actually not on the global bus: MSI is on PCI bus
766 * APIC is connected directly to the CPU.
767 * Mapping them on the global bus happens to work because
768 * MSI registers are reserved in APIC MMIO and vice versa. */
769 apic_send_msi(addr
, val
);
773 dev
= cpu_get_current_apic();
777 s
= APIC_COMMON(dev
);
779 trace_apic_mem_writel(addr
, val
);
788 if (apic_report_tpr_access
) {
789 cpu_report_tpr_access(&s
->cpu
->env
, TPR_ACCESS_WRITE
);
792 apic_sync_vapic(s
, SYNC_TO_VAPIC
);
802 s
->log_dest
= val
>> 24;
805 s
->dest_mode
= val
>> 28;
808 s
->spurious_vec
= val
& 0x1ff;
818 apic_deliver(dev
, (s
->icr
[1] >> 24) & 0xff, (s
->icr
[0] >> 11) & 1,
819 (s
->icr
[0] >> 8) & 7, (s
->icr
[0] & 0xff),
820 (s
->icr
[0] >> 15) & 1);
827 int n
= index
- 0x32;
829 if (n
== APIC_LVT_TIMER
) {
830 apic_timer_update(s
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
));
831 } else if (n
== APIC_LVT_LINT0
&& apic_check_pic(s
)) {
837 s
->initial_count
= val
;
838 s
->initial_count_load_time
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
839 apic_timer_update(s
, s
->initial_count_load_time
);
846 s
->divide_conf
= val
& 0xb;
847 v
= (s
->divide_conf
& 3) | ((s
->divide_conf
>> 1) & 4);
848 s
->count_shift
= (v
+ 1) & 7;
852 s
->esr
|= ESR_ILLEGAL_ADDRESS
;
857 static void apic_pre_save(APICCommonState
*s
)
859 apic_sync_vapic(s
, SYNC_FROM_VAPIC
);
862 static void apic_post_load(APICCommonState
*s
)
864 if (s
->timer_expiry
!= -1) {
865 timer_mod(s
->timer
, s
->timer_expiry
);
871 static const MemoryRegionOps apic_io_ops
= {
873 .read
= { apic_mem_readb
, apic_mem_readw
, apic_mem_readl
, },
874 .write
= { apic_mem_writeb
, apic_mem_writew
, apic_mem_writel
, },
876 .endianness
= DEVICE_NATIVE_ENDIAN
,
879 static void apic_realize(DeviceState
*dev
, Error
**errp
)
881 APICCommonState
*s
= APIC_COMMON(dev
);
883 memory_region_init_io(&s
->io_memory
, OBJECT(s
), &apic_io_ops
, s
, "apic-msi",
886 s
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, apic_timer
, s
);
887 local_apics
[s
->idx
] = s
;
889 msi_supported
= true;
892 static void apic_class_init(ObjectClass
*klass
, void *data
)
894 APICCommonClass
*k
= APIC_COMMON_CLASS(klass
);
896 k
->realize
= apic_realize
;
897 k
->set_base
= apic_set_base
;
898 k
->set_tpr
= apic_set_tpr
;
899 k
->get_tpr
= apic_get_tpr
;
900 k
->vapic_base_update
= apic_vapic_base_update
;
901 k
->external_nmi
= apic_external_nmi
;
902 k
->pre_save
= apic_pre_save
;
903 k
->post_load
= apic_post_load
;
906 static const TypeInfo apic_info
= {
908 .instance_size
= sizeof(APICCommonState
),
909 .parent
= TYPE_APIC_COMMON
,
910 .class_init
= apic_class_init
,
913 static void apic_register_types(void)
915 type_register_static(&apic_info
);
918 type_init(apic_register_types
)