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/>
21 #include "qemu-timer.h"
22 #include "host-utils.h"
26 /* APIC Local Vector Table */
27 #define APIC_LVT_TIMER 0
28 #define APIC_LVT_THERMAL 1
29 #define APIC_LVT_PERFORM 2
30 #define APIC_LVT_LINT0 3
31 #define APIC_LVT_LINT1 4
32 #define APIC_LVT_ERROR 5
35 /* APIC delivery modes */
36 #define APIC_DM_FIXED 0
37 #define APIC_DM_LOWPRI 1
40 #define APIC_DM_INIT 5
41 #define APIC_DM_SIPI 6
42 #define APIC_DM_EXTINT 7
44 /* APIC destination mode */
45 #define APIC_DESTMODE_FLAT 0xf
46 #define APIC_DESTMODE_CLUSTER 1
48 #define APIC_TRIGGER_EDGE 0
49 #define APIC_TRIGGER_LEVEL 1
51 #define APIC_LVT_TIMER_PERIODIC (1<<17)
52 #define APIC_LVT_MASKED (1<<16)
53 #define APIC_LVT_LEVEL_TRIGGER (1<<15)
54 #define APIC_LVT_REMOTE_IRR (1<<14)
55 #define APIC_INPUT_POLARITY (1<<13)
56 #define APIC_SEND_PENDING (1<<12)
58 #define ESR_ILLEGAL_ADDRESS (1 << 7)
60 #define APIC_SV_ENABLE (1 << 8)
63 #define MAX_APIC_WORDS 8
65 /* Intel APIC constants: from include/asm/msidef.h */
66 #define MSI_DATA_VECTOR_SHIFT 0
67 #define MSI_DATA_VECTOR_MASK 0x000000ff
68 #define MSI_DATA_DELIVERY_MODE_SHIFT 8
69 #define MSI_DATA_TRIGGER_SHIFT 15
70 #define MSI_DATA_LEVEL_SHIFT 14
71 #define MSI_ADDR_DEST_MODE_SHIFT 2
72 #define MSI_ADDR_DEST_ID_SHIFT 12
73 #define MSI_ADDR_DEST_ID_MASK 0x00ffff0
75 #define MSI_ADDR_SIZE 0x100000
77 typedef struct APICState APICState
;
86 uint32_t spurious_vec
;
89 uint32_t isr
[8]; /* in service register */
90 uint32_t tmr
[8]; /* trigger mode register */
91 uint32_t irr
[8]; /* interrupt request register */
92 uint32_t lvt
[APIC_LVT_NB
];
93 uint32_t esr
; /* error register */
98 uint32_t initial_count
;
99 int64_t initial_count_load_time
, next_time
;
106 static APICState
*local_apics
[MAX_APICS
+ 1];
107 static int apic_irq_delivered
;
109 static void apic_set_irq(APICState
*s
, int vector_num
, int trigger_mode
);
110 static void apic_update_irq(APICState
*s
);
111 static void apic_get_delivery_bitmask(uint32_t *deliver_bitmask
,
112 uint8_t dest
, uint8_t dest_mode
);
114 /* Find first bit starting from msb */
115 static int fls_bit(uint32_t value
)
117 return 31 - clz32(value
);
120 /* Find first bit starting from lsb */
121 static int ffs_bit(uint32_t value
)
126 static inline void set_bit(uint32_t *tab
, int index
)
130 mask
= 1 << (index
& 0x1f);
134 static inline void reset_bit(uint32_t *tab
, int index
)
138 mask
= 1 << (index
& 0x1f);
142 static inline int get_bit(uint32_t *tab
, int index
)
146 mask
= 1 << (index
& 0x1f);
147 return !!(tab
[i
] & mask
);
150 static void apic_local_deliver(APICState
*s
, int vector
)
152 uint32_t lvt
= s
->lvt
[vector
];
155 trace_apic_local_deliver(vector
, (lvt
>> 8) & 7);
157 if (lvt
& APIC_LVT_MASKED
)
160 switch ((lvt
>> 8) & 7) {
162 cpu_interrupt(s
->cpu_env
, CPU_INTERRUPT_SMI
);
166 cpu_interrupt(s
->cpu_env
, CPU_INTERRUPT_NMI
);
170 cpu_interrupt(s
->cpu_env
, CPU_INTERRUPT_HARD
);
174 trigger_mode
= APIC_TRIGGER_EDGE
;
175 if ((vector
== APIC_LVT_LINT0
|| vector
== APIC_LVT_LINT1
) &&
176 (lvt
& APIC_LVT_LEVEL_TRIGGER
))
177 trigger_mode
= APIC_TRIGGER_LEVEL
;
178 apic_set_irq(s
, lvt
& 0xff, trigger_mode
);
182 void apic_deliver_pic_intr(DeviceState
*d
, int level
)
184 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
187 apic_local_deliver(s
, APIC_LVT_LINT0
);
189 uint32_t lvt
= s
->lvt
[APIC_LVT_LINT0
];
191 switch ((lvt
>> 8) & 7) {
193 if (!(lvt
& APIC_LVT_LEVEL_TRIGGER
))
195 reset_bit(s
->irr
, lvt
& 0xff);
198 cpu_reset_interrupt(s
->cpu_env
, CPU_INTERRUPT_HARD
);
204 #define foreach_apic(apic, deliver_bitmask, code) \
206 int __i, __j, __mask;\
207 for(__i = 0; __i < MAX_APIC_WORDS; __i++) {\
208 __mask = deliver_bitmask[__i];\
210 for(__j = 0; __j < 32; __j++) {\
211 if (__mask & (1 << __j)) {\
212 apic = local_apics[__i * 32 + __j];\
222 static void apic_bus_deliver(const uint32_t *deliver_bitmask
,
223 uint8_t delivery_mode
,
224 uint8_t vector_num
, uint8_t polarity
,
225 uint8_t trigger_mode
)
227 APICState
*apic_iter
;
229 switch (delivery_mode
) {
231 /* XXX: search for focus processor, arbitration */
235 for(i
= 0; i
< MAX_APIC_WORDS
; i
++) {
236 if (deliver_bitmask
[i
]) {
237 d
= i
* 32 + ffs_bit(deliver_bitmask
[i
]);
242 apic_iter
= local_apics
[d
];
244 apic_set_irq(apic_iter
, vector_num
, trigger_mode
);
254 foreach_apic(apic_iter
, deliver_bitmask
,
255 cpu_interrupt(apic_iter
->cpu_env
, CPU_INTERRUPT_SMI
) );
259 foreach_apic(apic_iter
, deliver_bitmask
,
260 cpu_interrupt(apic_iter
->cpu_env
, CPU_INTERRUPT_NMI
) );
264 /* normal INIT IPI sent to processors */
265 foreach_apic(apic_iter
, deliver_bitmask
,
266 cpu_interrupt(apic_iter
->cpu_env
, CPU_INTERRUPT_INIT
) );
270 /* handled in I/O APIC code */
277 foreach_apic(apic_iter
, deliver_bitmask
,
278 apic_set_irq(apic_iter
, vector_num
, trigger_mode
) );
281 void apic_deliver_irq(uint8_t dest
, uint8_t dest_mode
,
282 uint8_t delivery_mode
, uint8_t vector_num
,
283 uint8_t polarity
, uint8_t trigger_mode
)
285 uint32_t deliver_bitmask
[MAX_APIC_WORDS
];
287 trace_apic_deliver_irq(dest
, dest_mode
, delivery_mode
, vector_num
,
288 polarity
, trigger_mode
);
290 apic_get_delivery_bitmask(deliver_bitmask
, dest
, dest_mode
);
291 apic_bus_deliver(deliver_bitmask
, delivery_mode
, vector_num
, polarity
,
295 void cpu_set_apic_base(DeviceState
*d
, uint64_t val
)
297 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
299 trace_cpu_set_apic_base(val
);
303 s
->apicbase
= (val
& 0xfffff000) |
304 (s
->apicbase
& (MSR_IA32_APICBASE_BSP
| MSR_IA32_APICBASE_ENABLE
));
305 /* if disabled, cannot be enabled again */
306 if (!(val
& MSR_IA32_APICBASE_ENABLE
)) {
307 s
->apicbase
&= ~MSR_IA32_APICBASE_ENABLE
;
308 cpu_clear_apic_feature(s
->cpu_env
);
309 s
->spurious_vec
&= ~APIC_SV_ENABLE
;
313 uint64_t cpu_get_apic_base(DeviceState
*d
)
315 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
317 trace_cpu_get_apic_base(s
? (uint64_t)s
->apicbase
: 0);
319 return s
? s
->apicbase
: 0;
322 void cpu_set_apic_tpr(DeviceState
*d
, uint8_t val
)
324 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
328 s
->tpr
= (val
& 0x0f) << 4;
332 uint8_t cpu_get_apic_tpr(DeviceState
*d
)
334 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
336 return s
? s
->tpr
>> 4 : 0;
339 /* return -1 if no bit is set */
340 static int get_highest_priority_int(uint32_t *tab
)
343 for(i
= 7; i
>= 0; i
--) {
345 return i
* 32 + fls_bit(tab
[i
]);
351 static int apic_get_ppr(APICState
*s
)
356 isrv
= get_highest_priority_int(s
->isr
);
367 static int apic_get_arb_pri(APICState
*s
)
369 /* XXX: arbitration */
373 /* signal the CPU if an irq is pending */
374 static void apic_update_irq(APICState
*s
)
377 if (!(s
->spurious_vec
& APIC_SV_ENABLE
))
379 irrv
= get_highest_priority_int(s
->irr
);
382 ppr
= apic_get_ppr(s
);
383 if (ppr
&& (irrv
& 0xf0) <= (ppr
& 0xf0))
385 cpu_interrupt(s
->cpu_env
, CPU_INTERRUPT_HARD
);
388 void apic_reset_irq_delivered(void)
390 trace_apic_reset_irq_delivered(apic_irq_delivered
);
392 apic_irq_delivered
= 0;
395 int apic_get_irq_delivered(void)
397 trace_apic_get_irq_delivered(apic_irq_delivered
);
399 return apic_irq_delivered
;
402 static void apic_set_irq(APICState
*s
, int vector_num
, int trigger_mode
)
404 apic_irq_delivered
+= !get_bit(s
->irr
, vector_num
);
406 trace_apic_set_irq(apic_irq_delivered
);
408 set_bit(s
->irr
, vector_num
);
410 set_bit(s
->tmr
, vector_num
);
412 reset_bit(s
->tmr
, vector_num
);
416 static void apic_eoi(APICState
*s
)
419 isrv
= get_highest_priority_int(s
->isr
);
422 reset_bit(s
->isr
, isrv
);
423 /* XXX: send the EOI packet to the APIC bus to allow the I/O APIC to
424 set the remote IRR bit for level triggered interrupts. */
428 static int apic_find_dest(uint8_t dest
)
430 APICState
*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
)
445 static void apic_get_delivery_bitmask(uint32_t *deliver_bitmask
,
446 uint8_t dest
, uint8_t dest_mode
)
448 APICState
*apic_iter
;
451 if (dest_mode
== 0) {
453 memset(deliver_bitmask
, 0xff, MAX_APIC_WORDS
* sizeof(uint32_t));
455 int idx
= apic_find_dest(dest
);
456 memset(deliver_bitmask
, 0x00, MAX_APIC_WORDS
* sizeof(uint32_t));
458 set_bit(deliver_bitmask
, idx
);
461 /* XXX: cluster mode */
462 memset(deliver_bitmask
, 0x00, MAX_APIC_WORDS
* sizeof(uint32_t));
463 for(i
= 0; i
< MAX_APICS
; i
++) {
464 apic_iter
= local_apics
[i
];
466 if (apic_iter
->dest_mode
== 0xf) {
467 if (dest
& apic_iter
->log_dest
)
468 set_bit(deliver_bitmask
, i
);
469 } else if (apic_iter
->dest_mode
== 0x0) {
470 if ((dest
& 0xf0) == (apic_iter
->log_dest
& 0xf0) &&
471 (dest
& apic_iter
->log_dest
& 0x0f)) {
472 set_bit(deliver_bitmask
, i
);
480 void apic_init_reset(DeviceState
*d
)
482 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
489 s
->spurious_vec
= 0xff;
492 memset(s
->isr
, 0, sizeof(s
->isr
));
493 memset(s
->tmr
, 0, sizeof(s
->tmr
));
494 memset(s
->irr
, 0, sizeof(s
->irr
));
495 for(i
= 0; i
< APIC_LVT_NB
; i
++)
496 s
->lvt
[i
] = 1 << 16; /* mask LVT */
498 memset(s
->icr
, 0, sizeof(s
->icr
));
501 s
->initial_count
= 0;
502 s
->initial_count_load_time
= 0;
504 s
->wait_for_sipi
= 1;
507 static void apic_startup(APICState
*s
, int vector_num
)
509 s
->sipi_vector
= vector_num
;
510 cpu_interrupt(s
->cpu_env
, CPU_INTERRUPT_SIPI
);
513 void apic_sipi(DeviceState
*d
)
515 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
517 cpu_reset_interrupt(s
->cpu_env
, CPU_INTERRUPT_SIPI
);
519 if (!s
->wait_for_sipi
)
521 cpu_x86_load_seg_cache_sipi(s
->cpu_env
, s
->sipi_vector
);
522 s
->wait_for_sipi
= 0;
525 static void apic_deliver(DeviceState
*d
, uint8_t dest
, uint8_t dest_mode
,
526 uint8_t delivery_mode
, uint8_t vector_num
,
527 uint8_t polarity
, uint8_t trigger_mode
)
529 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
530 uint32_t deliver_bitmask
[MAX_APIC_WORDS
];
531 int dest_shorthand
= (s
->icr
[0] >> 18) & 3;
532 APICState
*apic_iter
;
534 switch (dest_shorthand
) {
536 apic_get_delivery_bitmask(deliver_bitmask
, dest
, dest_mode
);
539 memset(deliver_bitmask
, 0x00, sizeof(deliver_bitmask
));
540 set_bit(deliver_bitmask
, s
->idx
);
543 memset(deliver_bitmask
, 0xff, sizeof(deliver_bitmask
));
546 memset(deliver_bitmask
, 0xff, sizeof(deliver_bitmask
));
547 reset_bit(deliver_bitmask
, s
->idx
);
551 switch (delivery_mode
) {
554 int trig_mode
= (s
->icr
[0] >> 15) & 1;
555 int level
= (s
->icr
[0] >> 14) & 1;
556 if (level
== 0 && trig_mode
== 1) {
557 foreach_apic(apic_iter
, deliver_bitmask
,
558 apic_iter
->arb_id
= apic_iter
->id
);
565 foreach_apic(apic_iter
, deliver_bitmask
,
566 apic_startup(apic_iter
, vector_num
) );
570 apic_bus_deliver(deliver_bitmask
, delivery_mode
, vector_num
, polarity
,
574 int apic_get_interrupt(DeviceState
*d
)
576 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
579 /* if the APIC is installed or enabled, we let the 8259 handle the
583 if (!(s
->spurious_vec
& APIC_SV_ENABLE
))
586 /* XXX: spurious IRQ handling */
587 intno
= get_highest_priority_int(s
->irr
);
590 if (s
->tpr
&& intno
<= s
->tpr
)
591 return s
->spurious_vec
& 0xff;
592 reset_bit(s
->irr
, intno
);
593 set_bit(s
->isr
, intno
);
598 int apic_accept_pic_intr(DeviceState
*d
)
600 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
606 lvt0
= s
->lvt
[APIC_LVT_LINT0
];
608 if ((s
->apicbase
& MSR_IA32_APICBASE_ENABLE
) == 0 ||
609 (lvt0
& APIC_LVT_MASKED
) == 0)
615 static uint32_t apic_get_current_count(APICState
*s
)
619 d
= (qemu_get_clock(vm_clock
) - s
->initial_count_load_time
) >>
621 if (s
->lvt
[APIC_LVT_TIMER
] & APIC_LVT_TIMER_PERIODIC
) {
623 val
= s
->initial_count
- (d
% ((uint64_t)s
->initial_count
+ 1));
625 if (d
>= s
->initial_count
)
628 val
= s
->initial_count
- d
;
633 static void apic_timer_update(APICState
*s
, int64_t current_time
)
635 int64_t next_time
, d
;
637 if (!(s
->lvt
[APIC_LVT_TIMER
] & APIC_LVT_MASKED
)) {
638 d
= (current_time
- s
->initial_count_load_time
) >>
640 if (s
->lvt
[APIC_LVT_TIMER
] & APIC_LVT_TIMER_PERIODIC
) {
641 if (!s
->initial_count
)
643 d
= ((d
/ ((uint64_t)s
->initial_count
+ 1)) + 1) * ((uint64_t)s
->initial_count
+ 1);
645 if (d
>= s
->initial_count
)
647 d
= (uint64_t)s
->initial_count
+ 1;
649 next_time
= s
->initial_count_load_time
+ (d
<< s
->count_shift
);
650 qemu_mod_timer(s
->timer
, next_time
);
651 s
->next_time
= next_time
;
654 qemu_del_timer(s
->timer
);
658 static void apic_timer(void *opaque
)
660 APICState
*s
= opaque
;
662 apic_local_deliver(s
, APIC_LVT_TIMER
);
663 apic_timer_update(s
, s
->next_time
);
666 static uint32_t apic_mem_readb(void *opaque
, target_phys_addr_t addr
)
671 static uint32_t apic_mem_readw(void *opaque
, target_phys_addr_t addr
)
676 static void apic_mem_writeb(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
680 static void apic_mem_writew(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
684 static uint32_t apic_mem_readl(void *opaque
, target_phys_addr_t addr
)
691 d
= cpu_get_current_apic();
695 s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
697 index
= (addr
>> 4) & 0xff;
702 case 0x03: /* version */
703 val
= 0x11 | ((APIC_LVT_NB
- 1) << 16); /* version 0x11 */
709 val
= apic_get_arb_pri(s
);
713 val
= apic_get_ppr(s
);
719 val
= s
->log_dest
<< 24;
722 val
= s
->dest_mode
<< 28;
725 val
= s
->spurious_vec
;
728 val
= s
->isr
[index
& 7];
731 val
= s
->tmr
[index
& 7];
734 val
= s
->irr
[index
& 7];
741 val
= s
->icr
[index
& 1];
744 val
= s
->lvt
[index
- 0x32];
747 val
= s
->initial_count
;
750 val
= apic_get_current_count(s
);
753 val
= s
->divide_conf
;
756 s
->esr
|= ESR_ILLEGAL_ADDRESS
;
760 trace_apic_mem_readl(addr
, val
);
764 static void apic_send_msi(target_phys_addr_t addr
, uint32 data
)
766 uint8_t dest
= (addr
& MSI_ADDR_DEST_ID_MASK
) >> MSI_ADDR_DEST_ID_SHIFT
;
767 uint8_t vector
= (data
& MSI_DATA_VECTOR_MASK
) >> MSI_DATA_VECTOR_SHIFT
;
768 uint8_t dest_mode
= (addr
>> MSI_ADDR_DEST_MODE_SHIFT
) & 0x1;
769 uint8_t trigger_mode
= (data
>> MSI_DATA_TRIGGER_SHIFT
) & 0x1;
770 uint8_t delivery
= (data
>> MSI_DATA_DELIVERY_MODE_SHIFT
) & 0x7;
771 /* XXX: Ignore redirection hint. */
772 apic_deliver_irq(dest
, dest_mode
, delivery
, vector
, 0, trigger_mode
);
775 static void apic_mem_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
779 int index
= (addr
>> 4) & 0xff;
780 if (addr
> 0xfff || !index
) {
781 /* MSI and MMIO APIC are at the same memory location,
782 * but actually not on the global bus: MSI is on PCI bus
783 * APIC is connected directly to the CPU.
784 * Mapping them on the global bus happens to work because
785 * MSI registers are reserved in APIC MMIO and vice versa. */
786 apic_send_msi(addr
, val
);
790 d
= cpu_get_current_apic();
794 s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
796 trace_apic_mem_writel(addr
, val
);
815 s
->log_dest
= val
>> 24;
818 s
->dest_mode
= val
>> 28;
821 s
->spurious_vec
= val
& 0x1ff;
831 apic_deliver(d
, (s
->icr
[1] >> 24) & 0xff, (s
->icr
[0] >> 11) & 1,
832 (s
->icr
[0] >> 8) & 7, (s
->icr
[0] & 0xff),
833 (s
->icr
[0] >> 14) & 1, (s
->icr
[0] >> 15) & 1);
840 int n
= index
- 0x32;
842 if (n
== APIC_LVT_TIMER
)
843 apic_timer_update(s
, qemu_get_clock(vm_clock
));
847 s
->initial_count
= val
;
848 s
->initial_count_load_time
= qemu_get_clock(vm_clock
);
849 apic_timer_update(s
, s
->initial_count_load_time
);
856 s
->divide_conf
= val
& 0xb;
857 v
= (s
->divide_conf
& 3) | ((s
->divide_conf
>> 1) & 4);
858 s
->count_shift
= (v
+ 1) & 7;
862 s
->esr
|= ESR_ILLEGAL_ADDRESS
;
867 /* This function is only used for old state version 1 and 2 */
868 static int apic_load_old(QEMUFile
*f
, void *opaque
, int version_id
)
870 APICState
*s
= opaque
;
876 /* XXX: what if the base changes? (registered memory regions) */
877 qemu_get_be32s(f
, &s
->apicbase
);
878 qemu_get_8s(f
, &s
->id
);
879 qemu_get_8s(f
, &s
->arb_id
);
880 qemu_get_8s(f
, &s
->tpr
);
881 qemu_get_be32s(f
, &s
->spurious_vec
);
882 qemu_get_8s(f
, &s
->log_dest
);
883 qemu_get_8s(f
, &s
->dest_mode
);
884 for (i
= 0; i
< 8; i
++) {
885 qemu_get_be32s(f
, &s
->isr
[i
]);
886 qemu_get_be32s(f
, &s
->tmr
[i
]);
887 qemu_get_be32s(f
, &s
->irr
[i
]);
889 for (i
= 0; i
< APIC_LVT_NB
; i
++) {
890 qemu_get_be32s(f
, &s
->lvt
[i
]);
892 qemu_get_be32s(f
, &s
->esr
);
893 qemu_get_be32s(f
, &s
->icr
[0]);
894 qemu_get_be32s(f
, &s
->icr
[1]);
895 qemu_get_be32s(f
, &s
->divide_conf
);
896 s
->count_shift
=qemu_get_be32(f
);
897 qemu_get_be32s(f
, &s
->initial_count
);
898 s
->initial_count_load_time
=qemu_get_be64(f
);
899 s
->next_time
=qemu_get_be64(f
);
902 qemu_get_timer(f
, s
->timer
);
906 static const VMStateDescription vmstate_apic
= {
909 .minimum_version_id
= 3,
910 .minimum_version_id_old
= 1,
911 .load_state_old
= apic_load_old
,
912 .fields
= (VMStateField
[]) {
913 VMSTATE_UINT32(apicbase
, APICState
),
914 VMSTATE_UINT8(id
, APICState
),
915 VMSTATE_UINT8(arb_id
, APICState
),
916 VMSTATE_UINT8(tpr
, APICState
),
917 VMSTATE_UINT32(spurious_vec
, APICState
),
918 VMSTATE_UINT8(log_dest
, APICState
),
919 VMSTATE_UINT8(dest_mode
, APICState
),
920 VMSTATE_UINT32_ARRAY(isr
, APICState
, 8),
921 VMSTATE_UINT32_ARRAY(tmr
, APICState
, 8),
922 VMSTATE_UINT32_ARRAY(irr
, APICState
, 8),
923 VMSTATE_UINT32_ARRAY(lvt
, APICState
, APIC_LVT_NB
),
924 VMSTATE_UINT32(esr
, APICState
),
925 VMSTATE_UINT32_ARRAY(icr
, APICState
, 2),
926 VMSTATE_UINT32(divide_conf
, APICState
),
927 VMSTATE_INT32(count_shift
, APICState
),
928 VMSTATE_UINT32(initial_count
, APICState
),
929 VMSTATE_INT64(initial_count_load_time
, APICState
),
930 VMSTATE_INT64(next_time
, APICState
),
931 VMSTATE_TIMER(timer
, APICState
),
932 VMSTATE_END_OF_LIST()
936 static void apic_reset(DeviceState
*d
)
938 APICState
*s
= DO_UPCAST(APICState
, busdev
.qdev
, d
);
941 bsp
= cpu_is_bsp(s
->cpu_env
);
942 s
->apicbase
= 0xfee00000 |
943 (bsp
? MSR_IA32_APICBASE_BSP
: 0) | MSR_IA32_APICBASE_ENABLE
;
949 * LINT0 delivery mode on CPU #0 is set to ExtInt at initialization
950 * time typically by BIOS, so PIC interrupt can be delivered to the
951 * processor when local APIC is enabled.
953 s
->lvt
[APIC_LVT_LINT0
] = 0x700;
957 static CPUReadMemoryFunc
* const apic_mem_read
[3] = {
963 static CPUWriteMemoryFunc
* const apic_mem_write
[3] = {
969 static int apic_init1(SysBusDevice
*dev
)
971 APICState
*s
= FROM_SYSBUS(APICState
, dev
);
973 static int last_apic_idx
;
975 if (last_apic_idx
>= MAX_APICS
) {
978 apic_io_memory
= cpu_register_io_memory(apic_mem_read
,
979 apic_mem_write
, NULL
);
980 sysbus_init_mmio(dev
, MSI_ADDR_SIZE
, apic_io_memory
);
982 s
->timer
= qemu_new_timer(vm_clock
, apic_timer
, s
);
983 s
->idx
= last_apic_idx
++;
984 local_apics
[s
->idx
] = s
;
988 static SysBusDeviceInfo apic_info
= {
991 .qdev
.size
= sizeof(APICState
),
992 .qdev
.vmsd
= &vmstate_apic
,
993 .qdev
.reset
= apic_reset
,
995 .qdev
.props
= (Property
[]) {
996 DEFINE_PROP_UINT8("id", APICState
, id
, -1),
997 DEFINE_PROP_PTR("cpu_env", APICState
, cpu_env
),
998 DEFINE_PROP_END_OF_LIST(),
1002 static void apic_register_devices(void)
1004 sysbus_register_withprop(&apic_info
);
1007 device_init(apic_register_devices
)