3 * Local APIC virtualization
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
10 * Dor Laor <dor.laor@qumranet.com>
11 * Gregory Haskins <ghaskins@novell.com>
12 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
14 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
21 #include <linux/kvm.h>
23 #include <linux/highmem.h>
24 #include <linux/smp.h>
25 #include <linux/hrtimer.h>
27 #include <linux/module.h>
28 #include <asm/processor.h>
31 #include <asm/current.h>
32 #include <asm/apicdef.h>
33 #include <asm/atomic.h>
34 #include <asm/div64.h>
42 #define APIC_BUS_CYCLE_NS 1
44 /* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
45 #define apic_debug(fmt, arg...)
47 #define APIC_LVT_NUM 6
48 /* 14 is the version for Xeon and Pentium 8.4.8*/
49 #define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
50 #define LAPIC_MMIO_LENGTH (1 << 12)
51 /* followed define is not in apicdef.h */
52 #define APIC_SHORT_MASK 0xc0000
53 #define APIC_DEST_NOSHORT 0x0
54 #define APIC_DEST_MASK 0x800
55 #define MAX_APIC_VECTOR 256
57 #define VEC_POS(v) ((v) & (32 - 1))
58 #define REG_POS(v) (((v) >> 5) << 4)
59 static inline u32
apic_get_reg(struct kvm_lapic
*apic
, int reg_off
)
61 return *((u32
*) (apic
->regs
+ reg_off
));
64 static inline void apic_set_reg(struct kvm_lapic
*apic
, int reg_off
, u32 val
)
66 *((u32
*) (apic
->regs
+ reg_off
)) = val
;
69 static inline int apic_test_and_set_vector(int vec
, void *bitmap
)
71 return test_and_set_bit(VEC_POS(vec
), (bitmap
) + REG_POS(vec
));
74 static inline int apic_test_and_clear_vector(int vec
, void *bitmap
)
76 return test_and_clear_bit(VEC_POS(vec
), (bitmap
) + REG_POS(vec
));
79 static inline void apic_set_vector(int vec
, void *bitmap
)
81 set_bit(VEC_POS(vec
), (bitmap
) + REG_POS(vec
));
84 static inline void apic_clear_vector(int vec
, void *bitmap
)
86 clear_bit(VEC_POS(vec
), (bitmap
) + REG_POS(vec
));
89 static inline int apic_hw_enabled(struct kvm_lapic
*apic
)
91 return (apic
)->vcpu
->apic_base
& MSR_IA32_APICBASE_ENABLE
;
94 static inline int apic_sw_enabled(struct kvm_lapic
*apic
)
96 return apic_get_reg(apic
, APIC_SPIV
) & APIC_SPIV_APIC_ENABLED
;
99 static inline int apic_enabled(struct kvm_lapic
*apic
)
101 return apic_sw_enabled(apic
) && apic_hw_enabled(apic
);
105 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
108 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
109 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
111 static inline int kvm_apic_id(struct kvm_lapic
*apic
)
113 return (apic_get_reg(apic
, APIC_ID
) >> 24) & 0xff;
116 static inline int apic_lvt_enabled(struct kvm_lapic
*apic
, int lvt_type
)
118 return !(apic_get_reg(apic
, lvt_type
) & APIC_LVT_MASKED
);
121 static inline int apic_lvt_vector(struct kvm_lapic
*apic
, int lvt_type
)
123 return apic_get_reg(apic
, lvt_type
) & APIC_VECTOR_MASK
;
126 static inline int apic_lvtt_period(struct kvm_lapic
*apic
)
128 return apic_get_reg(apic
, APIC_LVTT
) & APIC_LVT_TIMER_PERIODIC
;
131 static unsigned int apic_lvt_mask
[APIC_LVT_NUM
] = {
132 LVT_MASK
| APIC_LVT_TIMER_PERIODIC
, /* LVTT */
133 LVT_MASK
| APIC_MODE_MASK
, /* LVTTHMR */
134 LVT_MASK
| APIC_MODE_MASK
, /* LVTPC */
135 LINT_MASK
, LINT_MASK
, /* LVT0-1 */
136 LVT_MASK
/* LVTERR */
139 static int find_highest_vector(void *bitmap
)
142 int word_offset
= MAX_APIC_VECTOR
>> 5;
144 while ((word_offset
!= 0) && (word
[(--word_offset
) << 2] == 0))
147 if (likely(!word_offset
&& !word
[0]))
150 return fls(word
[word_offset
<< 2]) - 1 + (word_offset
<< 5);
153 static inline int apic_test_and_set_irr(int vec
, struct kvm_lapic
*apic
)
155 return apic_test_and_set_vector(vec
, apic
->regs
+ APIC_IRR
);
158 static inline void apic_clear_irr(int vec
, struct kvm_lapic
*apic
)
160 apic_clear_vector(vec
, apic
->regs
+ APIC_IRR
);
163 static inline int apic_find_highest_irr(struct kvm_lapic
*apic
)
167 result
= find_highest_vector(apic
->regs
+ APIC_IRR
);
168 ASSERT(result
== -1 || result
>= 16);
173 int kvm_lapic_find_highest_irr(struct kvm_vcpu
*vcpu
)
175 struct kvm_lapic
*apic
= (struct kvm_lapic
*)vcpu
->apic
;
180 highest_irr
= apic_find_highest_irr(apic
);
184 EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr
);
186 int kvm_apic_set_irq(struct kvm_lapic
*apic
, u8 vec
, u8 trig
)
188 if (!apic_test_and_set_irr(vec
, apic
)) {
189 /* a new pending irq is set in IRR */
191 apic_set_vector(vec
, apic
->regs
+ APIC_TMR
);
193 apic_clear_vector(vec
, apic
->regs
+ APIC_TMR
);
194 kvm_vcpu_kick(apic
->vcpu
);
200 static inline int apic_find_highest_isr(struct kvm_lapic
*apic
)
204 result
= find_highest_vector(apic
->regs
+ APIC_ISR
);
205 ASSERT(result
== -1 || result
>= 16);
210 static void apic_update_ppr(struct kvm_lapic
*apic
)
215 tpr
= apic_get_reg(apic
, APIC_TASKPRI
);
216 isr
= apic_find_highest_isr(apic
);
217 isrv
= (isr
!= -1) ? isr
: 0;
219 if ((tpr
& 0xf0) >= (isrv
& 0xf0))
224 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
225 apic
, ppr
, isr
, isrv
);
227 apic_set_reg(apic
, APIC_PROCPRI
, ppr
);
230 static void apic_set_tpr(struct kvm_lapic
*apic
, u32 tpr
)
232 apic_set_reg(apic
, APIC_TASKPRI
, tpr
);
233 apic_update_ppr(apic
);
236 int kvm_apic_match_physical_addr(struct kvm_lapic
*apic
, u16 dest
)
238 return kvm_apic_id(apic
) == dest
;
241 int kvm_apic_match_logical_addr(struct kvm_lapic
*apic
, u8 mda
)
246 logical_id
= GET_APIC_LOGICAL_ID(apic_get_reg(apic
, APIC_LDR
));
248 switch (apic_get_reg(apic
, APIC_DFR
)) {
250 if (logical_id
& mda
)
253 case APIC_DFR_CLUSTER
:
254 if (((logical_id
>> 4) == (mda
>> 0x4))
255 && (logical_id
& mda
& 0xf))
259 printk(KERN_WARNING
"Bad DFR vcpu %d: %08x\n",
260 apic
->vcpu
->vcpu_id
, apic_get_reg(apic
, APIC_DFR
));
267 static int apic_match_dest(struct kvm_vcpu
*vcpu
, struct kvm_lapic
*source
,
268 int short_hand
, int dest
, int dest_mode
)
271 struct kvm_lapic
*target
= vcpu
->apic
;
273 apic_debug("target %p, source %p, dest 0x%x, "
274 "dest_mode 0x%x, short_hand 0x%x",
275 target
, source
, dest
, dest_mode
, short_hand
);
278 switch (short_hand
) {
279 case APIC_DEST_NOSHORT
:
280 if (dest_mode
== 0) {
282 if ((dest
== 0xFF) || (dest
== kvm_apic_id(target
)))
286 result
= kvm_apic_match_logical_addr(target
, dest
);
289 if (target
== source
)
292 case APIC_DEST_ALLINC
:
295 case APIC_DEST_ALLBUT
:
296 if (target
!= source
)
300 printk(KERN_WARNING
"Bad dest shorthand value %x\n",
309 * Add a pending IRQ into lapic.
310 * Return 1 if successfully added and 0 if discarded.
312 static int __apic_accept_irq(struct kvm_lapic
*apic
, int delivery_mode
,
313 int vector
, int level
, int trig_mode
)
315 int orig_irr
, result
= 0;
316 struct kvm_vcpu
*vcpu
= apic
->vcpu
;
318 switch (delivery_mode
) {
321 /* FIXME add logic for vcpu on reset */
322 if (unlikely(!apic_enabled(apic
)))
325 orig_irr
= apic_test_and_set_irr(vector
, apic
);
326 if (orig_irr
&& trig_mode
) {
327 apic_debug("level trig mode repeatedly for vector %d",
333 apic_debug("level trig mode for vector %d", vector
);
334 apic_set_vector(vector
, apic
->regs
+ APIC_TMR
);
336 apic_clear_vector(vector
, apic
->regs
+ APIC_TMR
);
338 if (vcpu
->mp_state
== VCPU_MP_STATE_RUNNABLE
)
340 else if (vcpu
->mp_state
== VCPU_MP_STATE_HALTED
) {
341 vcpu
->mp_state
= VCPU_MP_STATE_RUNNABLE
;
342 if (waitqueue_active(&vcpu
->wq
))
343 wake_up_interruptible(&vcpu
->wq
);
346 result
= (orig_irr
== 0);
350 printk(KERN_DEBUG
"Ignoring delivery mode 3\n");
354 printk(KERN_DEBUG
"Ignoring guest SMI\n");
357 printk(KERN_DEBUG
"Ignoring guest NMI\n");
362 if (vcpu
->mp_state
== VCPU_MP_STATE_RUNNABLE
)
364 "INIT on a runnable vcpu %d\n",
366 vcpu
->mp_state
= VCPU_MP_STATE_INIT_RECEIVED
;
370 "Ignoring de-assert INIT to vcpu %d\n",
376 case APIC_DM_STARTUP
:
377 printk(KERN_DEBUG
"SIPI to vcpu %d vector 0x%02x\n",
378 vcpu
->vcpu_id
, vector
);
379 if (vcpu
->mp_state
== VCPU_MP_STATE_INIT_RECEIVED
) {
380 vcpu
->sipi_vector
= vector
;
381 vcpu
->mp_state
= VCPU_MP_STATE_SIPI_RECEIVED
;
382 if (waitqueue_active(&vcpu
->wq
))
383 wake_up_interruptible(&vcpu
->wq
);
388 printk(KERN_ERR
"TODO: unsupported delivery mode %x\n",
395 struct kvm_lapic
*kvm_apic_round_robin(struct kvm
*kvm
, u8 vector
,
396 unsigned long bitmap
)
401 struct kvm_lapic
*apic
;
403 last
= kvm
->round_robin_prev_vcpu
;
407 if (++next
== KVM_MAX_VCPUS
)
409 if (kvm
->vcpus
[next
] == NULL
|| !test_bit(next
, &bitmap
))
411 apic
= kvm
->vcpus
[next
]->apic
;
412 if (apic
&& apic_enabled(apic
))
415 } while (next
!= last
);
416 kvm
->round_robin_prev_vcpu
= next
;
419 vcpu_id
= ffs(bitmap
) - 1;
422 printk(KERN_DEBUG
"vcpu not ready for apic_round_robin\n");
424 apic
= kvm
->vcpus
[vcpu_id
]->apic
;
430 static void apic_set_eoi(struct kvm_lapic
*apic
)
432 int vector
= apic_find_highest_isr(apic
);
435 * Not every write EOI will has corresponding ISR,
436 * one example is when Kernel check timer on setup_IO_APIC
441 apic_clear_vector(vector
, apic
->regs
+ APIC_ISR
);
442 apic_update_ppr(apic
);
444 if (apic_test_and_clear_vector(vector
, apic
->regs
+ APIC_TMR
))
445 kvm_ioapic_update_eoi(apic
->vcpu
->kvm
, vector
);
448 static void apic_send_ipi(struct kvm_lapic
*apic
)
450 u32 icr_low
= apic_get_reg(apic
, APIC_ICR
);
451 u32 icr_high
= apic_get_reg(apic
, APIC_ICR2
);
453 unsigned int dest
= GET_APIC_DEST_FIELD(icr_high
);
454 unsigned int short_hand
= icr_low
& APIC_SHORT_MASK
;
455 unsigned int trig_mode
= icr_low
& APIC_INT_LEVELTRIG
;
456 unsigned int level
= icr_low
& APIC_INT_ASSERT
;
457 unsigned int dest_mode
= icr_low
& APIC_DEST_MASK
;
458 unsigned int delivery_mode
= icr_low
& APIC_MODE_MASK
;
459 unsigned int vector
= icr_low
& APIC_VECTOR_MASK
;
461 struct kvm_lapic
*target
;
462 struct kvm_vcpu
*vcpu
;
463 unsigned long lpr_map
= 0;
466 apic_debug("icr_high 0x%x, icr_low 0x%x, "
467 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
468 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
469 icr_high
, icr_low
, short_hand
, dest
,
470 trig_mode
, level
, dest_mode
, delivery_mode
, vector
);
472 for (i
= 0; i
< KVM_MAX_VCPUS
; i
++) {
473 vcpu
= apic
->vcpu
->kvm
->vcpus
[i
];
478 apic_match_dest(vcpu
, apic
, short_hand
, dest
, dest_mode
)) {
479 if (delivery_mode
== APIC_DM_LOWEST
)
480 set_bit(vcpu
->vcpu_id
, &lpr_map
);
482 __apic_accept_irq(vcpu
->apic
, delivery_mode
,
483 vector
, level
, trig_mode
);
487 if (delivery_mode
== APIC_DM_LOWEST
) {
488 target
= kvm_apic_round_robin(vcpu
->kvm
, vector
, lpr_map
);
490 __apic_accept_irq(target
, delivery_mode
,
491 vector
, level
, trig_mode
);
495 static u32
apic_get_tmcct(struct kvm_lapic
*apic
)
498 ktime_t passed
, now
= apic
->timer
.dev
.base
->get_time();
499 u32 tmcct
= apic_get_reg(apic
, APIC_TMICT
);
501 ASSERT(apic
!= NULL
);
503 if (unlikely(ktime_to_ns(now
) <=
504 ktime_to_ns(apic
->timer
.last_update
))) {
506 passed
= ktime_add(( {
509 (apic
->timer
.last_update
).tv64
}; }
511 apic_debug("time elapsed\n");
513 passed
= ktime_sub(now
, apic
->timer
.last_update
);
515 counter_passed
= div64_64(ktime_to_ns(passed
),
516 (APIC_BUS_CYCLE_NS
* apic
->timer
.divide_count
));
517 tmcct
-= counter_passed
;
520 if (unlikely(!apic_lvtt_period(apic
)))
524 tmcct
+= apic_get_reg(apic
, APIC_TMICT
);
525 } while (tmcct
<= 0);
531 static u32
__apic_read(struct kvm_lapic
*apic
, unsigned int offset
)
535 if (offset
>= LAPIC_MMIO_LENGTH
)
540 printk(KERN_WARNING
"Access APIC ARBPRI register "
541 "which is for P6\n");
544 case APIC_TMCCT
: /* Timer CCR */
545 val
= apic_get_tmcct(apic
);
549 apic_update_ppr(apic
);
550 val
= apic_get_reg(apic
, offset
);
557 static void apic_mmio_read(struct kvm_io_device
*this,
558 gpa_t address
, int len
, void *data
)
560 struct kvm_lapic
*apic
= (struct kvm_lapic
*)this->private;
561 unsigned int offset
= address
- apic
->base_address
;
562 unsigned char alignment
= offset
& 0xf;
565 if ((alignment
+ len
) > 4) {
566 printk(KERN_ERR
"KVM_APIC_READ: alignment error %lx %d",
567 (unsigned long)address
, len
);
570 result
= __apic_read(apic
, offset
& ~0xf);
576 memcpy(data
, (char *)&result
+ alignment
, len
);
579 printk(KERN_ERR
"Local APIC read with len = %x, "
580 "should be 1,2, or 4 instead\n", len
);
585 static void update_divide_count(struct kvm_lapic
*apic
)
587 u32 tmp1
, tmp2
, tdcr
;
589 tdcr
= apic_get_reg(apic
, APIC_TDCR
);
591 tmp2
= ((tmp1
& 0x3) | ((tmp1
& 0x8) >> 1)) + 1;
592 apic
->timer
.divide_count
= 0x1 << (tmp2
& 0x7);
594 apic_debug("timer divide count is 0x%x\n",
595 apic
->timer
.divide_count
);
598 static void start_apic_timer(struct kvm_lapic
*apic
)
600 ktime_t now
= apic
->timer
.dev
.base
->get_time();
602 apic
->timer
.last_update
= now
;
604 apic
->timer
.period
= apic_get_reg(apic
, APIC_TMICT
) *
605 APIC_BUS_CYCLE_NS
* apic
->timer
.divide_count
;
606 atomic_set(&apic
->timer
.pending
, 0);
607 hrtimer_start(&apic
->timer
.dev
,
608 ktime_add_ns(now
, apic
->timer
.period
),
611 apic_debug("%s: bus cycle is %" PRId64
"ns, now 0x%016"
613 "timer initial count 0x%x, period %lldns, "
614 "expire @ 0x%016" PRIx64
".\n", __FUNCTION__
,
615 APIC_BUS_CYCLE_NS
, ktime_to_ns(now
),
616 apic_get_reg(apic
, APIC_TMICT
),
618 ktime_to_ns(ktime_add_ns(now
,
619 apic
->timer
.period
)));
622 static void apic_mmio_write(struct kvm_io_device
*this,
623 gpa_t address
, int len
, const void *data
)
625 struct kvm_lapic
*apic
= (struct kvm_lapic
*)this->private;
626 unsigned int offset
= address
- apic
->base_address
;
627 unsigned char alignment
= offset
& 0xf;
631 * APIC register must be aligned on 128-bits boundary.
632 * 32/64/128 bits registers must be accessed thru 32 bits.
635 if (len
!= 4 || alignment
) {
636 if (printk_ratelimit())
637 printk(KERN_ERR
"apic write: bad size=%d %lx\n",
644 /* too common printing */
645 if (offset
!= APIC_EOI
)
646 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
647 "0x%x\n", __FUNCTION__
, offset
, len
, val
);
652 case APIC_ID
: /* Local APIC ID */
653 apic_set_reg(apic
, APIC_ID
, val
);
657 apic_set_tpr(apic
, val
& 0xff);
665 apic_set_reg(apic
, APIC_LDR
, val
& APIC_LDR_MASK
);
669 apic_set_reg(apic
, APIC_DFR
, val
| 0x0FFFFFFF);
673 apic_set_reg(apic
, APIC_SPIV
, val
& 0x3ff);
674 if (!(val
& APIC_SPIV_APIC_ENABLED
)) {
678 for (i
= 0; i
< APIC_LVT_NUM
; i
++) {
679 lvt_val
= apic_get_reg(apic
,
680 APIC_LVTT
+ 0x10 * i
);
681 apic_set_reg(apic
, APIC_LVTT
+ 0x10 * i
,
682 lvt_val
| APIC_LVT_MASKED
);
684 atomic_set(&apic
->timer
.pending
, 0);
690 /* No delay here, so we always clear the pending bit */
691 apic_set_reg(apic
, APIC_ICR
, val
& ~(1 << 12));
696 apic_set_reg(apic
, APIC_ICR2
, val
& 0xff000000);
705 /* TODO: Check vector */
706 if (!apic_sw_enabled(apic
))
707 val
|= APIC_LVT_MASKED
;
709 val
&= apic_lvt_mask
[(offset
- APIC_LVTT
) >> 4];
710 apic_set_reg(apic
, offset
, val
);
715 hrtimer_cancel(&apic
->timer
.dev
);
716 apic_set_reg(apic
, APIC_TMICT
, val
);
717 start_apic_timer(apic
);
722 printk(KERN_ERR
"KVM_WRITE:TDCR %x\n", val
);
723 apic_set_reg(apic
, APIC_TDCR
, val
);
724 update_divide_count(apic
);
728 apic_debug("Local APIC Write to read-only register %x\n",
735 static int apic_mmio_range(struct kvm_io_device
*this, gpa_t addr
)
737 struct kvm_lapic
*apic
= (struct kvm_lapic
*)this->private;
741 if (apic_hw_enabled(apic
) &&
742 (addr
>= apic
->base_address
) &&
743 (addr
< (apic
->base_address
+ LAPIC_MMIO_LENGTH
)))
749 void kvm_free_apic(struct kvm_lapic
*apic
)
754 hrtimer_cancel(&apic
->timer
.dev
);
756 if (apic
->regs_page
) {
757 __free_page(apic
->regs_page
);
765 *----------------------------------------------------------------------
767 *----------------------------------------------------------------------
770 void kvm_lapic_set_tpr(struct kvm_vcpu
*vcpu
, unsigned long cr8
)
772 struct kvm_lapic
*apic
= (struct kvm_lapic
*)vcpu
->apic
;
776 apic_set_tpr(apic
, ((cr8
& 0x0f) << 4));
779 u64
kvm_lapic_get_cr8(struct kvm_vcpu
*vcpu
)
781 struct kvm_lapic
*apic
= (struct kvm_lapic
*)vcpu
->apic
;
786 tpr
= (u64
) apic_get_reg(apic
, APIC_TASKPRI
);
788 return (tpr
& 0xf0) >> 4;
790 EXPORT_SYMBOL_GPL(kvm_lapic_get_cr8
);
792 void kvm_lapic_set_base(struct kvm_vcpu
*vcpu
, u64 value
)
794 struct kvm_lapic
*apic
= (struct kvm_lapic
*)vcpu
->apic
;
797 value
|= MSR_IA32_APICBASE_BSP
;
798 vcpu
->apic_base
= value
;
801 if (apic
->vcpu
->vcpu_id
)
802 value
&= ~MSR_IA32_APICBASE_BSP
;
804 vcpu
->apic_base
= value
;
805 apic
->base_address
= apic
->vcpu
->apic_base
&
806 MSR_IA32_APICBASE_BASE
;
808 /* with FSB delivery interrupt, we can restart APIC functionality */
809 apic_debug("apic base msr is 0x%016" PRIx64
", and base address is "
810 "0x%lx.\n", apic
->apic_base
, apic
->base_address
);
814 u64
kvm_lapic_get_base(struct kvm_vcpu
*vcpu
)
816 return vcpu
->apic_base
;
818 EXPORT_SYMBOL_GPL(kvm_lapic_get_base
);
820 void kvm_lapic_reset(struct kvm_vcpu
*vcpu
)
822 struct kvm_lapic
*apic
;
825 apic_debug("%s\n", __FUNCTION__
);
829 ASSERT(apic
!= NULL
);
831 /* Stop the timer in case it's a reset to an active apic */
832 hrtimer_cancel(&apic
->timer
.dev
);
834 apic_set_reg(apic
, APIC_ID
, vcpu
->vcpu_id
<< 24);
835 apic_set_reg(apic
, APIC_LVR
, APIC_VERSION
);
837 for (i
= 0; i
< APIC_LVT_NUM
; i
++)
838 apic_set_reg(apic
, APIC_LVTT
+ 0x10 * i
, APIC_LVT_MASKED
);
839 apic_set_reg(apic
, APIC_LVT0
,
840 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT
));
842 apic_set_reg(apic
, APIC_DFR
, 0xffffffffU
);
843 apic_set_reg(apic
, APIC_SPIV
, 0xff);
844 apic_set_reg(apic
, APIC_TASKPRI
, 0);
845 apic_set_reg(apic
, APIC_LDR
, 0);
846 apic_set_reg(apic
, APIC_ESR
, 0);
847 apic_set_reg(apic
, APIC_ICR
, 0);
848 apic_set_reg(apic
, APIC_ICR2
, 0);
849 apic_set_reg(apic
, APIC_TDCR
, 0);
850 apic_set_reg(apic
, APIC_TMICT
, 0);
851 for (i
= 0; i
< 8; i
++) {
852 apic_set_reg(apic
, APIC_IRR
+ 0x10 * i
, 0);
853 apic_set_reg(apic
, APIC_ISR
+ 0x10 * i
, 0);
854 apic_set_reg(apic
, APIC_TMR
+ 0x10 * i
, 0);
856 apic
->timer
.divide_count
= 0;
857 atomic_set(&apic
->timer
.pending
, 0);
858 if (vcpu
->vcpu_id
== 0)
859 vcpu
->apic_base
|= MSR_IA32_APICBASE_BSP
;
860 apic_update_ppr(apic
);
862 apic_debug(KERN_INFO
"%s: vcpu=%p, id=%d, base_msr="
863 "0x%016" PRIx64
", base_address=0x%0lx.\n", __FUNCTION__
,
864 vcpu
, kvm_apic_id(apic
),
865 vcpu
->apic_base
, apic
->base_address
);
867 EXPORT_SYMBOL_GPL(kvm_lapic_reset
);
869 int kvm_lapic_enabled(struct kvm_vcpu
*vcpu
)
871 struct kvm_lapic
*apic
= (struct kvm_lapic
*)vcpu
->apic
;
876 ret
= apic_enabled(apic
);
880 EXPORT_SYMBOL_GPL(kvm_lapic_enabled
);
883 *----------------------------------------------------------------------
885 *----------------------------------------------------------------------
888 /* TODO: make sure __apic_timer_fn runs in current pCPU */
889 static int __apic_timer_fn(struct kvm_lapic
*apic
)
892 wait_queue_head_t
*q
= &apic
->vcpu
->wq
;
894 atomic_inc(&apic
->timer
.pending
);
895 if (waitqueue_active(q
))
897 apic
->vcpu
->mp_state
= VCPU_MP_STATE_RUNNABLE
;
898 wake_up_interruptible(q
);
900 if (apic_lvtt_period(apic
)) {
902 apic
->timer
.dev
.expires
= ktime_add_ns(
903 apic
->timer
.dev
.expires
,
909 static int __inject_apic_timer_irq(struct kvm_lapic
*apic
)
913 vector
= apic_lvt_vector(apic
, APIC_LVTT
);
914 return __apic_accept_irq(apic
, APIC_DM_FIXED
, vector
, 1, 0);
917 static enum hrtimer_restart
apic_timer_fn(struct hrtimer
*data
)
919 struct kvm_lapic
*apic
;
920 int restart_timer
= 0;
922 apic
= container_of(data
, struct kvm_lapic
, timer
.dev
);
924 restart_timer
= __apic_timer_fn(apic
);
927 return HRTIMER_RESTART
;
929 return HRTIMER_NORESTART
;
932 int kvm_create_lapic(struct kvm_vcpu
*vcpu
)
934 struct kvm_lapic
*apic
;
936 ASSERT(vcpu
!= NULL
);
937 apic_debug("apic_init %d\n", vcpu
->vcpu_id
);
939 apic
= kzalloc(sizeof(*apic
), GFP_KERNEL
);
945 apic
->regs_page
= alloc_page(GFP_KERNEL
);
946 if (apic
->regs_page
== NULL
) {
947 printk(KERN_ERR
"malloc apic regs error for vcpu %x\n",
951 apic
->regs
= page_address(apic
->regs_page
);
952 memset(apic
->regs
, 0, PAGE_SIZE
);
955 hrtimer_init(&apic
->timer
.dev
, CLOCK_MONOTONIC
, HRTIMER_MODE_ABS
);
956 apic
->timer
.dev
.function
= apic_timer_fn
;
957 apic
->base_address
= APIC_DEFAULT_PHYS_BASE
;
958 vcpu
->apic_base
= APIC_DEFAULT_PHYS_BASE
;
960 kvm_lapic_reset(vcpu
);
961 apic
->dev
.read
= apic_mmio_read
;
962 apic
->dev
.write
= apic_mmio_write
;
963 apic
->dev
.in_range
= apic_mmio_range
;
964 apic
->dev
.private = apic
;
971 EXPORT_SYMBOL_GPL(kvm_create_lapic
);
973 int kvm_apic_has_interrupt(struct kvm_vcpu
*vcpu
)
975 struct kvm_lapic
*apic
= vcpu
->apic
;
978 if (!apic
|| !apic_enabled(apic
))
981 apic_update_ppr(apic
);
982 highest_irr
= apic_find_highest_irr(apic
);
983 if ((highest_irr
== -1) ||
984 ((highest_irr
& 0xF0) <= apic_get_reg(apic
, APIC_PROCPRI
)))
989 int kvm_apic_accept_pic_intr(struct kvm_vcpu
*vcpu
)
991 u32 lvt0
= apic_get_reg(vcpu
->apic
, APIC_LVT0
);
994 if (vcpu
->vcpu_id
== 0) {
995 if (!apic_hw_enabled(vcpu
->apic
))
997 if ((lvt0
& APIC_LVT_MASKED
) == 0 &&
998 GET_APIC_DELIVERY_MODE(lvt0
) == APIC_MODE_EXTINT
)
1004 void kvm_inject_apic_timer_irqs(struct kvm_vcpu
*vcpu
)
1006 struct kvm_lapic
*apic
= vcpu
->apic
;
1008 if (apic
&& apic_lvt_enabled(apic
, APIC_LVTT
) &&
1009 atomic_read(&apic
->timer
.pending
) > 0) {
1010 if (__inject_apic_timer_irq(apic
))
1011 atomic_dec(&apic
->timer
.pending
);
1015 void kvm_apic_timer_intr_post(struct kvm_vcpu
*vcpu
, int vec
)
1017 struct kvm_lapic
*apic
= vcpu
->apic
;
1019 if (apic
&& apic_lvt_vector(apic
, APIC_LVTT
) == vec
)
1020 apic
->timer
.last_update
= ktime_add_ns(
1021 apic
->timer
.last_update
,
1022 apic
->timer
.period
);
1025 int kvm_get_apic_interrupt(struct kvm_vcpu
*vcpu
)
1027 int vector
= kvm_apic_has_interrupt(vcpu
);
1028 struct kvm_lapic
*apic
= vcpu
->apic
;
1033 apic_set_vector(vector
, apic
->regs
+ APIC_ISR
);
1034 apic_update_ppr(apic
);
1035 apic_clear_irr(vector
, apic
);
1039 void kvm_apic_post_state_restore(struct kvm_vcpu
*vcpu
)
1041 struct kvm_lapic
*apic
= vcpu
->apic
;
1043 apic
->base_address
= vcpu
->apic_base
&
1044 MSR_IA32_APICBASE_BASE
;
1045 apic_set_reg(apic
, APIC_LVR
, APIC_VERSION
);
1046 apic_update_ppr(apic
);
1047 hrtimer_cancel(&apic
->timer
.dev
);
1048 update_divide_count(apic
);
1049 start_apic_timer(apic
);
1052 void kvm_migrate_apic_timer(struct kvm_vcpu
*vcpu
)
1054 struct kvm_lapic
*apic
= vcpu
->apic
;
1055 struct hrtimer
*timer
;
1060 timer
= &apic
->timer
.dev
;
1061 if (hrtimer_cancel(timer
))
1062 hrtimer_start(timer
, timer
->expires
, HRTIMER_MODE_ABS
);
1064 EXPORT_SYMBOL_GPL(kvm_migrate_apic_timer
);