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.
20 #include <linux/kvm_host.h>
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 <linux/math64.h>
29 #include <asm/processor.h>
32 #include <asm/current.h>
33 #include <asm/apicdef.h>
34 #include <asm/atomic.h>
35 #include "kvm_cache_regs.h"
39 #define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
41 #define mod_64(x, y) ((x) % (y))
49 #define APIC_BUS_CYCLE_NS 1
51 /* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
52 #define apic_debug(fmt, arg...)
54 #define APIC_LVT_NUM 6
55 /* 14 is the version for Xeon and Pentium 8.4.8*/
56 #define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
57 #define LAPIC_MMIO_LENGTH (1 << 12)
58 /* followed define is not in apicdef.h */
59 #define APIC_SHORT_MASK 0xc0000
60 #define APIC_DEST_NOSHORT 0x0
61 #define APIC_DEST_MASK 0x800
62 #define MAX_APIC_VECTOR 256
64 #define VEC_POS(v) ((v) & (32 - 1))
65 #define REG_POS(v) (((v) >> 5) << 4)
67 static inline u32
apic_get_reg(struct kvm_lapic
*apic
, int reg_off
)
69 return *((u32
*) (apic
->regs
+ reg_off
));
72 static inline void apic_set_reg(struct kvm_lapic
*apic
, int reg_off
, u32 val
)
74 *((u32
*) (apic
->regs
+ reg_off
)) = val
;
77 static inline int apic_test_and_set_vector(int vec
, void *bitmap
)
79 return test_and_set_bit(VEC_POS(vec
), (bitmap
) + REG_POS(vec
));
82 static inline int apic_test_and_clear_vector(int vec
, void *bitmap
)
84 return test_and_clear_bit(VEC_POS(vec
), (bitmap
) + REG_POS(vec
));
87 static inline void apic_set_vector(int vec
, void *bitmap
)
89 set_bit(VEC_POS(vec
), (bitmap
) + REG_POS(vec
));
92 static inline void apic_clear_vector(int vec
, void *bitmap
)
94 clear_bit(VEC_POS(vec
), (bitmap
) + REG_POS(vec
));
97 static inline int apic_hw_enabled(struct kvm_lapic
*apic
)
99 return (apic
)->vcpu
->arch
.apic_base
& MSR_IA32_APICBASE_ENABLE
;
102 static inline int apic_sw_enabled(struct kvm_lapic
*apic
)
104 return apic_get_reg(apic
, APIC_SPIV
) & APIC_SPIV_APIC_ENABLED
;
107 static inline int apic_enabled(struct kvm_lapic
*apic
)
109 return apic_sw_enabled(apic
) && apic_hw_enabled(apic
);
113 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
116 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
117 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
119 static inline int kvm_apic_id(struct kvm_lapic
*apic
)
121 return (apic_get_reg(apic
, APIC_ID
) >> 24) & 0xff;
124 static inline int apic_lvt_enabled(struct kvm_lapic
*apic
, int lvt_type
)
126 return !(apic_get_reg(apic
, lvt_type
) & APIC_LVT_MASKED
);
129 static inline int apic_lvt_vector(struct kvm_lapic
*apic
, int lvt_type
)
131 return apic_get_reg(apic
, lvt_type
) & APIC_VECTOR_MASK
;
134 static inline int apic_lvtt_period(struct kvm_lapic
*apic
)
136 return apic_get_reg(apic
, APIC_LVTT
) & APIC_LVT_TIMER_PERIODIC
;
139 static inline int apic_lvt_nmi_mode(u32 lvt_val
)
141 return (lvt_val
& (APIC_MODE_MASK
| APIC_LVT_MASKED
)) == APIC_DM_NMI
;
144 static unsigned int apic_lvt_mask
[APIC_LVT_NUM
] = {
145 LVT_MASK
| APIC_LVT_TIMER_PERIODIC
, /* LVTT */
146 LVT_MASK
| APIC_MODE_MASK
, /* LVTTHMR */
147 LVT_MASK
| APIC_MODE_MASK
, /* LVTPC */
148 LINT_MASK
, LINT_MASK
, /* LVT0-1 */
149 LVT_MASK
/* LVTERR */
152 static int find_highest_vector(void *bitmap
)
155 int word_offset
= MAX_APIC_VECTOR
>> 5;
157 while ((word_offset
!= 0) && (word
[(--word_offset
) << 2] == 0))
160 if (likely(!word_offset
&& !word
[0]))
163 return fls(word
[word_offset
<< 2]) - 1 + (word_offset
<< 5);
166 static inline int apic_test_and_set_irr(int vec
, struct kvm_lapic
*apic
)
168 return apic_test_and_set_vector(vec
, apic
->regs
+ APIC_IRR
);
171 static inline void apic_clear_irr(int vec
, struct kvm_lapic
*apic
)
173 apic_clear_vector(vec
, apic
->regs
+ APIC_IRR
);
176 static inline int apic_find_highest_irr(struct kvm_lapic
*apic
)
180 result
= find_highest_vector(apic
->regs
+ APIC_IRR
);
181 ASSERT(result
== -1 || result
>= 16);
186 int kvm_lapic_find_highest_irr(struct kvm_vcpu
*vcpu
)
188 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
193 highest_irr
= apic_find_highest_irr(apic
);
197 EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr
);
199 static int __apic_accept_irq(struct kvm_lapic
*apic
, int delivery_mode
,
200 int vector
, int level
, int trig_mode
);
202 int kvm_apic_set_irq(struct kvm_vcpu
*vcpu
, struct kvm_lapic_irq
*irq
)
204 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
206 return __apic_accept_irq(apic
, irq
->delivery_mode
, irq
->vector
,
207 irq
->level
, irq
->trig_mode
);
210 static inline int apic_find_highest_isr(struct kvm_lapic
*apic
)
214 result
= find_highest_vector(apic
->regs
+ APIC_ISR
);
215 ASSERT(result
== -1 || result
>= 16);
220 static void apic_update_ppr(struct kvm_lapic
*apic
)
225 tpr
= apic_get_reg(apic
, APIC_TASKPRI
);
226 isr
= apic_find_highest_isr(apic
);
227 isrv
= (isr
!= -1) ? isr
: 0;
229 if ((tpr
& 0xf0) >= (isrv
& 0xf0))
234 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
235 apic
, ppr
, isr
, isrv
);
237 apic_set_reg(apic
, APIC_PROCPRI
, ppr
);
240 static void apic_set_tpr(struct kvm_lapic
*apic
, u32 tpr
)
242 apic_set_reg(apic
, APIC_TASKPRI
, tpr
);
243 apic_update_ppr(apic
);
246 int kvm_apic_match_physical_addr(struct kvm_lapic
*apic
, u16 dest
)
248 return dest
== 0xff || kvm_apic_id(apic
) == dest
;
251 int kvm_apic_match_logical_addr(struct kvm_lapic
*apic
, u8 mda
)
256 logical_id
= GET_APIC_LOGICAL_ID(apic_get_reg(apic
, APIC_LDR
));
258 switch (apic_get_reg(apic
, APIC_DFR
)) {
260 if (logical_id
& mda
)
263 case APIC_DFR_CLUSTER
:
264 if (((logical_id
>> 4) == (mda
>> 0x4))
265 && (logical_id
& mda
& 0xf))
269 printk(KERN_WARNING
"Bad DFR vcpu %d: %08x\n",
270 apic
->vcpu
->vcpu_id
, apic_get_reg(apic
, APIC_DFR
));
277 int kvm_apic_match_dest(struct kvm_vcpu
*vcpu
, struct kvm_lapic
*source
,
278 int short_hand
, int dest
, int dest_mode
)
281 struct kvm_lapic
*target
= vcpu
->arch
.apic
;
283 apic_debug("target %p, source %p, dest 0x%x, "
284 "dest_mode 0x%x, short_hand 0x%x\n",
285 target
, source
, dest
, dest_mode
, short_hand
);
288 switch (short_hand
) {
289 case APIC_DEST_NOSHORT
:
292 result
= kvm_apic_match_physical_addr(target
, dest
);
295 result
= kvm_apic_match_logical_addr(target
, dest
);
298 result
= (target
== source
);
300 case APIC_DEST_ALLINC
:
303 case APIC_DEST_ALLBUT
:
304 result
= (target
!= source
);
307 printk(KERN_WARNING
"Bad dest shorthand value %x\n",
316 * Add a pending IRQ into lapic.
317 * Return 1 if successfully added and 0 if discarded.
319 static int __apic_accept_irq(struct kvm_lapic
*apic
, int delivery_mode
,
320 int vector
, int level
, int trig_mode
)
323 struct kvm_vcpu
*vcpu
= apic
->vcpu
;
325 switch (delivery_mode
) {
327 vcpu
->arch
.apic_arb_prio
++;
329 /* FIXME add logic for vcpu on reset */
330 if (unlikely(!apic_enabled(apic
)))
333 result
= !apic_test_and_set_irr(vector
, apic
);
336 apic_debug("level trig mode repeatedly for "
337 "vector %d", vector
);
342 apic_debug("level trig mode for vector %d", vector
);
343 apic_set_vector(vector
, apic
->regs
+ APIC_TMR
);
345 apic_clear_vector(vector
, apic
->regs
+ APIC_TMR
);
350 printk(KERN_DEBUG
"Ignoring delivery mode 3\n");
354 printk(KERN_DEBUG
"Ignoring guest SMI\n");
359 kvm_inject_nmi(vcpu
);
366 if (vcpu
->arch
.mp_state
== KVM_MP_STATE_RUNNABLE
)
368 "INIT on a runnable vcpu %d\n",
370 vcpu
->arch
.mp_state
= KVM_MP_STATE_INIT_RECEIVED
;
373 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
378 case APIC_DM_STARTUP
:
379 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
380 vcpu
->vcpu_id
, vector
);
381 if (vcpu
->arch
.mp_state
== KVM_MP_STATE_INIT_RECEIVED
) {
383 vcpu
->arch
.sipi_vector
= vector
;
384 vcpu
->arch
.mp_state
= KVM_MP_STATE_SIPI_RECEIVED
;
391 * Should only be called by kvm_apic_local_deliver() with LVT0,
392 * before NMI watchdog was enabled. Already handled by
393 * kvm_apic_accept_pic_intr().
398 printk(KERN_ERR
"TODO: unsupported delivery mode %x\n",
405 int kvm_apic_compare_prio(struct kvm_vcpu
*vcpu1
, struct kvm_vcpu
*vcpu2
)
407 return vcpu1
->arch
.apic_arb_prio
- vcpu2
->arch
.apic_arb_prio
;
410 static void apic_set_eoi(struct kvm_lapic
*apic
)
412 int vector
= apic_find_highest_isr(apic
);
415 * Not every write EOI will has corresponding ISR,
416 * one example is when Kernel check timer on setup_IO_APIC
421 apic_clear_vector(vector
, apic
->regs
+ APIC_ISR
);
422 apic_update_ppr(apic
);
424 if (apic_test_and_clear_vector(vector
, apic
->regs
+ APIC_TMR
))
425 trigger_mode
= IOAPIC_LEVEL_TRIG
;
427 trigger_mode
= IOAPIC_EDGE_TRIG
;
428 kvm_ioapic_update_eoi(apic
->vcpu
->kvm
, vector
, trigger_mode
);
431 static void apic_send_ipi(struct kvm_lapic
*apic
)
433 u32 icr_low
= apic_get_reg(apic
, APIC_ICR
);
434 u32 icr_high
= apic_get_reg(apic
, APIC_ICR2
);
435 struct kvm_lapic_irq irq
;
437 irq
.vector
= icr_low
& APIC_VECTOR_MASK
;
438 irq
.delivery_mode
= icr_low
& APIC_MODE_MASK
;
439 irq
.dest_mode
= icr_low
& APIC_DEST_MASK
;
440 irq
.level
= icr_low
& APIC_INT_ASSERT
;
441 irq
.trig_mode
= icr_low
& APIC_INT_LEVELTRIG
;
442 irq
.shorthand
= icr_low
& APIC_SHORT_MASK
;
443 irq
.dest_id
= GET_APIC_DEST_FIELD(icr_high
);
445 apic_debug("icr_high 0x%x, icr_low 0x%x, "
446 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
447 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
448 icr_high
, icr_low
, irq
.shorthand
, irq
.dest_id
,
449 irq
.trig_mode
, irq
.level
, irq
.dest_mode
, irq
.delivery_mode
,
452 kvm_irq_delivery_to_apic(apic
->vcpu
->kvm
, apic
, &irq
);
455 static u32
apic_get_tmcct(struct kvm_lapic
*apic
)
461 ASSERT(apic
!= NULL
);
463 /* if initial count is 0, current count should also be 0 */
464 if (apic_get_reg(apic
, APIC_TMICT
) == 0)
467 remaining
= hrtimer_expires_remaining(&apic
->lapic_timer
.timer
);
468 if (ktime_to_ns(remaining
) < 0)
469 remaining
= ktime_set(0, 0);
471 ns
= mod_64(ktime_to_ns(remaining
), apic
->lapic_timer
.period
);
472 tmcct
= div64_u64(ns
,
473 (APIC_BUS_CYCLE_NS
* apic
->divide_count
));
478 static void __report_tpr_access(struct kvm_lapic
*apic
, bool write
)
480 struct kvm_vcpu
*vcpu
= apic
->vcpu
;
481 struct kvm_run
*run
= vcpu
->run
;
483 set_bit(KVM_REQ_REPORT_TPR_ACCESS
, &vcpu
->requests
);
484 run
->tpr_access
.rip
= kvm_rip_read(vcpu
);
485 run
->tpr_access
.is_write
= write
;
488 static inline void report_tpr_access(struct kvm_lapic
*apic
, bool write
)
490 if (apic
->vcpu
->arch
.tpr_access_reporting
)
491 __report_tpr_access(apic
, write
);
494 static u32
__apic_read(struct kvm_lapic
*apic
, unsigned int offset
)
498 KVMTRACE_1D(APIC_ACCESS
, apic
->vcpu
, (u32
)offset
, handler
);
500 if (offset
>= LAPIC_MMIO_LENGTH
)
505 printk(KERN_WARNING
"Access APIC ARBPRI register "
506 "which is for P6\n");
509 case APIC_TMCCT
: /* Timer CCR */
510 val
= apic_get_tmcct(apic
);
514 report_tpr_access(apic
, false);
517 apic_update_ppr(apic
);
518 val
= apic_get_reg(apic
, offset
);
525 static void apic_mmio_read(struct kvm_io_device
*this,
526 gpa_t address
, int len
, void *data
)
528 struct kvm_lapic
*apic
= (struct kvm_lapic
*)this->private;
529 unsigned int offset
= address
- apic
->base_address
;
530 unsigned char alignment
= offset
& 0xf;
533 if ((alignment
+ len
) > 4) {
534 printk(KERN_ERR
"KVM_APIC_READ: alignment error %lx %d",
535 (unsigned long)address
, len
);
538 result
= __apic_read(apic
, offset
& ~0xf);
544 memcpy(data
, (char *)&result
+ alignment
, len
);
547 printk(KERN_ERR
"Local APIC read with len = %x, "
548 "should be 1,2, or 4 instead\n", len
);
553 static void update_divide_count(struct kvm_lapic
*apic
)
555 u32 tmp1
, tmp2
, tdcr
;
557 tdcr
= apic_get_reg(apic
, APIC_TDCR
);
559 tmp2
= ((tmp1
& 0x3) | ((tmp1
& 0x8) >> 1)) + 1;
560 apic
->divide_count
= 0x1 << (tmp2
& 0x7);
562 apic_debug("timer divide count is 0x%x\n",
566 static void start_apic_timer(struct kvm_lapic
*apic
)
568 ktime_t now
= apic
->lapic_timer
.timer
.base
->get_time();
570 apic
->lapic_timer
.period
= apic_get_reg(apic
, APIC_TMICT
) *
571 APIC_BUS_CYCLE_NS
* apic
->divide_count
;
572 atomic_set(&apic
->lapic_timer
.pending
, 0);
574 if (!apic
->lapic_timer
.period
)
577 hrtimer_start(&apic
->lapic_timer
.timer
,
578 ktime_add_ns(now
, apic
->lapic_timer
.period
),
581 apic_debug("%s: bus cycle is %" PRId64
"ns, now 0x%016"
583 "timer initial count 0x%x, period %lldns, "
584 "expire @ 0x%016" PRIx64
".\n", __func__
,
585 APIC_BUS_CYCLE_NS
, ktime_to_ns(now
),
586 apic_get_reg(apic
, APIC_TMICT
),
587 apic
->lapic_timer
.period
,
588 ktime_to_ns(ktime_add_ns(now
,
589 apic
->lapic_timer
.period
)));
592 static void apic_manage_nmi_watchdog(struct kvm_lapic
*apic
, u32 lvt0_val
)
594 int nmi_wd_enabled
= apic_lvt_nmi_mode(apic_get_reg(apic
, APIC_LVT0
));
596 if (apic_lvt_nmi_mode(lvt0_val
)) {
597 if (!nmi_wd_enabled
) {
598 apic_debug("Receive NMI setting on APIC_LVT0 "
599 "for cpu %d\n", apic
->vcpu
->vcpu_id
);
600 apic
->vcpu
->kvm
->arch
.vapics_in_nmi_mode
++;
602 } else if (nmi_wd_enabled
)
603 apic
->vcpu
->kvm
->arch
.vapics_in_nmi_mode
--;
606 static void apic_mmio_write(struct kvm_io_device
*this,
607 gpa_t address
, int len
, const void *data
)
609 struct kvm_lapic
*apic
= (struct kvm_lapic
*)this->private;
610 unsigned int offset
= address
- apic
->base_address
;
611 unsigned char alignment
= offset
& 0xf;
615 * APIC register must be aligned on 128-bits boundary.
616 * 32/64/128 bits registers must be accessed thru 32 bits.
619 if (len
!= 4 || alignment
) {
620 /* Don't shout loud, $infamous_os would cause only noise. */
621 apic_debug("apic write: bad size=%d %lx\n",
628 /* too common printing */
629 if (offset
!= APIC_EOI
)
630 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
631 "0x%x\n", __func__
, offset
, len
, val
);
635 KVMTRACE_1D(APIC_ACCESS
, apic
->vcpu
, (u32
)offset
, handler
);
638 case APIC_ID
: /* Local APIC ID */
639 apic_set_reg(apic
, APIC_ID
, val
);
643 report_tpr_access(apic
, true);
644 apic_set_tpr(apic
, val
& 0xff);
652 apic_set_reg(apic
, APIC_LDR
, val
& APIC_LDR_MASK
);
656 apic_set_reg(apic
, APIC_DFR
, val
| 0x0FFFFFFF);
660 apic_set_reg(apic
, APIC_SPIV
, val
& 0x3ff);
661 if (!(val
& APIC_SPIV_APIC_ENABLED
)) {
665 for (i
= 0; i
< APIC_LVT_NUM
; i
++) {
666 lvt_val
= apic_get_reg(apic
,
667 APIC_LVTT
+ 0x10 * i
);
668 apic_set_reg(apic
, APIC_LVTT
+ 0x10 * i
,
669 lvt_val
| APIC_LVT_MASKED
);
671 atomic_set(&apic
->lapic_timer
.pending
, 0);
677 /* No delay here, so we always clear the pending bit */
678 apic_set_reg(apic
, APIC_ICR
, val
& ~(1 << 12));
683 apic_set_reg(apic
, APIC_ICR2
, val
& 0xff000000);
687 apic_manage_nmi_watchdog(apic
, val
);
693 /* TODO: Check vector */
694 if (!apic_sw_enabled(apic
))
695 val
|= APIC_LVT_MASKED
;
697 val
&= apic_lvt_mask
[(offset
- APIC_LVTT
) >> 4];
698 apic_set_reg(apic
, offset
, val
);
703 hrtimer_cancel(&apic
->lapic_timer
.timer
);
704 apic_set_reg(apic
, APIC_TMICT
, val
);
705 start_apic_timer(apic
);
710 printk(KERN_ERR
"KVM_WRITE:TDCR %x\n", val
);
711 apic_set_reg(apic
, APIC_TDCR
, val
);
712 update_divide_count(apic
);
716 apic_debug("Local APIC Write to read-only register %x\n",
723 static int apic_mmio_range(struct kvm_io_device
*this, gpa_t addr
,
726 struct kvm_lapic
*apic
= (struct kvm_lapic
*)this->private;
730 if (apic_hw_enabled(apic
) &&
731 (addr
>= apic
->base_address
) &&
732 (addr
< (apic
->base_address
+ LAPIC_MMIO_LENGTH
)))
738 void kvm_free_lapic(struct kvm_vcpu
*vcpu
)
740 if (!vcpu
->arch
.apic
)
743 hrtimer_cancel(&vcpu
->arch
.apic
->lapic_timer
.timer
);
745 if (vcpu
->arch
.apic
->regs_page
)
746 __free_page(vcpu
->arch
.apic
->regs_page
);
748 kfree(vcpu
->arch
.apic
);
752 *----------------------------------------------------------------------
754 *----------------------------------------------------------------------
757 void kvm_lapic_set_tpr(struct kvm_vcpu
*vcpu
, unsigned long cr8
)
759 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
763 apic_set_tpr(apic
, ((cr8
& 0x0f) << 4)
764 | (apic_get_reg(apic
, APIC_TASKPRI
) & 4));
766 EXPORT_SYMBOL_GPL(kvm_lapic_set_tpr
);
768 u64
kvm_lapic_get_cr8(struct kvm_vcpu
*vcpu
)
770 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
775 tpr
= (u64
) apic_get_reg(apic
, APIC_TASKPRI
);
777 return (tpr
& 0xf0) >> 4;
779 EXPORT_SYMBOL_GPL(kvm_lapic_get_cr8
);
781 void kvm_lapic_set_base(struct kvm_vcpu
*vcpu
, u64 value
)
783 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
786 value
|= MSR_IA32_APICBASE_BSP
;
787 vcpu
->arch
.apic_base
= value
;
790 if (apic
->vcpu
->vcpu_id
)
791 value
&= ~MSR_IA32_APICBASE_BSP
;
793 vcpu
->arch
.apic_base
= value
;
794 apic
->base_address
= apic
->vcpu
->arch
.apic_base
&
795 MSR_IA32_APICBASE_BASE
;
797 /* with FSB delivery interrupt, we can restart APIC functionality */
798 apic_debug("apic base msr is 0x%016" PRIx64
", and base address is "
799 "0x%lx.\n", apic
->vcpu
->arch
.apic_base
, apic
->base_address
);
803 u64
kvm_lapic_get_base(struct kvm_vcpu
*vcpu
)
805 return vcpu
->arch
.apic_base
;
807 EXPORT_SYMBOL_GPL(kvm_lapic_get_base
);
809 void kvm_lapic_reset(struct kvm_vcpu
*vcpu
)
811 struct kvm_lapic
*apic
;
814 apic_debug("%s\n", __func__
);
817 apic
= vcpu
->arch
.apic
;
818 ASSERT(apic
!= NULL
);
820 /* Stop the timer in case it's a reset to an active apic */
821 hrtimer_cancel(&apic
->lapic_timer
.timer
);
823 apic_set_reg(apic
, APIC_ID
, vcpu
->vcpu_id
<< 24);
824 apic_set_reg(apic
, APIC_LVR
, APIC_VERSION
);
826 for (i
= 0; i
< APIC_LVT_NUM
; i
++)
827 apic_set_reg(apic
, APIC_LVTT
+ 0x10 * i
, APIC_LVT_MASKED
);
828 apic_set_reg(apic
, APIC_LVT0
,
829 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT
));
831 apic_set_reg(apic
, APIC_DFR
, 0xffffffffU
);
832 apic_set_reg(apic
, APIC_SPIV
, 0xff);
833 apic_set_reg(apic
, APIC_TASKPRI
, 0);
834 apic_set_reg(apic
, APIC_LDR
, 0);
835 apic_set_reg(apic
, APIC_ESR
, 0);
836 apic_set_reg(apic
, APIC_ICR
, 0);
837 apic_set_reg(apic
, APIC_ICR2
, 0);
838 apic_set_reg(apic
, APIC_TDCR
, 0);
839 apic_set_reg(apic
, APIC_TMICT
, 0);
840 for (i
= 0; i
< 8; i
++) {
841 apic_set_reg(apic
, APIC_IRR
+ 0x10 * i
, 0);
842 apic_set_reg(apic
, APIC_ISR
+ 0x10 * i
, 0);
843 apic_set_reg(apic
, APIC_TMR
+ 0x10 * i
, 0);
845 update_divide_count(apic
);
846 atomic_set(&apic
->lapic_timer
.pending
, 0);
847 if (vcpu
->vcpu_id
== 0)
848 vcpu
->arch
.apic_base
|= MSR_IA32_APICBASE_BSP
;
849 apic_update_ppr(apic
);
851 vcpu
->arch
.apic_arb_prio
= 0;
853 apic_debug(KERN_INFO
"%s: vcpu=%p, id=%d, base_msr="
854 "0x%016" PRIx64
", base_address=0x%0lx.\n", __func__
,
855 vcpu
, kvm_apic_id(apic
),
856 vcpu
->arch
.apic_base
, apic
->base_address
);
858 EXPORT_SYMBOL_GPL(kvm_lapic_reset
);
860 bool kvm_apic_present(struct kvm_vcpu
*vcpu
)
862 return vcpu
->arch
.apic
&& apic_hw_enabled(vcpu
->arch
.apic
);
865 int kvm_lapic_enabled(struct kvm_vcpu
*vcpu
)
867 return kvm_apic_present(vcpu
) && apic_sw_enabled(vcpu
->arch
.apic
);
869 EXPORT_SYMBOL_GPL(kvm_lapic_enabled
);
872 *----------------------------------------------------------------------
874 *----------------------------------------------------------------------
877 static bool lapic_is_periodic(struct kvm_timer
*ktimer
)
879 struct kvm_lapic
*apic
= container_of(ktimer
, struct kvm_lapic
,
881 return apic_lvtt_period(apic
);
884 int apic_has_pending_timer(struct kvm_vcpu
*vcpu
)
886 struct kvm_lapic
*lapic
= vcpu
->arch
.apic
;
888 if (lapic
&& apic_enabled(lapic
) && apic_lvt_enabled(lapic
, APIC_LVTT
))
889 return atomic_read(&lapic
->lapic_timer
.pending
);
894 static int kvm_apic_local_deliver(struct kvm_lapic
*apic
, int lvt_type
)
896 u32 reg
= apic_get_reg(apic
, lvt_type
);
897 int vector
, mode
, trig_mode
;
899 if (apic_hw_enabled(apic
) && !(reg
& APIC_LVT_MASKED
)) {
900 vector
= reg
& APIC_VECTOR_MASK
;
901 mode
= reg
& APIC_MODE_MASK
;
902 trig_mode
= reg
& APIC_LVT_LEVEL_TRIGGER
;
903 return __apic_accept_irq(apic
, mode
, vector
, 1, trig_mode
);
908 void kvm_apic_nmi_wd_deliver(struct kvm_vcpu
*vcpu
)
910 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
913 kvm_apic_local_deliver(apic
, APIC_LVT0
);
916 static struct kvm_timer_ops lapic_timer_ops
= {
917 .is_periodic
= lapic_is_periodic
,
920 int kvm_create_lapic(struct kvm_vcpu
*vcpu
)
922 struct kvm_lapic
*apic
;
924 ASSERT(vcpu
!= NULL
);
925 apic_debug("apic_init %d\n", vcpu
->vcpu_id
);
927 apic
= kzalloc(sizeof(*apic
), GFP_KERNEL
);
931 vcpu
->arch
.apic
= apic
;
933 apic
->regs_page
= alloc_page(GFP_KERNEL
);
934 if (apic
->regs_page
== NULL
) {
935 printk(KERN_ERR
"malloc apic regs error for vcpu %x\n",
937 goto nomem_free_apic
;
939 apic
->regs
= page_address(apic
->regs_page
);
940 memset(apic
->regs
, 0, PAGE_SIZE
);
943 hrtimer_init(&apic
->lapic_timer
.timer
, CLOCK_MONOTONIC
,
945 apic
->lapic_timer
.timer
.function
= kvm_timer_fn
;
946 apic
->lapic_timer
.t_ops
= &lapic_timer_ops
;
947 apic
->lapic_timer
.kvm
= vcpu
->kvm
;
948 apic
->lapic_timer
.vcpu_id
= vcpu
->vcpu_id
;
950 apic
->base_address
= APIC_DEFAULT_PHYS_BASE
;
951 vcpu
->arch
.apic_base
= APIC_DEFAULT_PHYS_BASE
;
953 kvm_lapic_reset(vcpu
);
954 apic
->dev
.read
= apic_mmio_read
;
955 apic
->dev
.write
= apic_mmio_write
;
956 apic
->dev
.in_range
= apic_mmio_range
;
957 apic
->dev
.private = apic
;
965 EXPORT_SYMBOL_GPL(kvm_create_lapic
);
967 int kvm_apic_has_interrupt(struct kvm_vcpu
*vcpu
)
969 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
972 if (!apic
|| !apic_enabled(apic
))
975 apic_update_ppr(apic
);
976 highest_irr
= apic_find_highest_irr(apic
);
977 if ((highest_irr
== -1) ||
978 ((highest_irr
& 0xF0) <= apic_get_reg(apic
, APIC_PROCPRI
)))
983 int kvm_apic_accept_pic_intr(struct kvm_vcpu
*vcpu
)
985 u32 lvt0
= apic_get_reg(vcpu
->arch
.apic
, APIC_LVT0
);
988 if (vcpu
->vcpu_id
== 0) {
989 if (!apic_hw_enabled(vcpu
->arch
.apic
))
991 if ((lvt0
& APIC_LVT_MASKED
) == 0 &&
992 GET_APIC_DELIVERY_MODE(lvt0
) == APIC_MODE_EXTINT
)
998 void kvm_inject_apic_timer_irqs(struct kvm_vcpu
*vcpu
)
1000 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
1002 if (apic
&& atomic_read(&apic
->lapic_timer
.pending
) > 0) {
1003 if (kvm_apic_local_deliver(apic
, APIC_LVTT
))
1004 atomic_dec(&apic
->lapic_timer
.pending
);
1008 int kvm_get_apic_interrupt(struct kvm_vcpu
*vcpu
)
1010 int vector
= kvm_apic_has_interrupt(vcpu
);
1011 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
1016 apic_set_vector(vector
, apic
->regs
+ APIC_ISR
);
1017 apic_update_ppr(apic
);
1018 apic_clear_irr(vector
, apic
);
1022 void kvm_apic_post_state_restore(struct kvm_vcpu
*vcpu
)
1024 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
1026 apic
->base_address
= vcpu
->arch
.apic_base
&
1027 MSR_IA32_APICBASE_BASE
;
1028 apic_set_reg(apic
, APIC_LVR
, APIC_VERSION
);
1029 apic_update_ppr(apic
);
1030 hrtimer_cancel(&apic
->lapic_timer
.timer
);
1031 update_divide_count(apic
);
1032 start_apic_timer(apic
);
1035 void __kvm_migrate_apic_timer(struct kvm_vcpu
*vcpu
)
1037 struct kvm_lapic
*apic
= vcpu
->arch
.apic
;
1038 struct hrtimer
*timer
;
1043 timer
= &apic
->lapic_timer
.timer
;
1044 if (hrtimer_cancel(timer
))
1045 hrtimer_start_expires(timer
, HRTIMER_MODE_ABS
);
1048 void kvm_lapic_sync_from_vapic(struct kvm_vcpu
*vcpu
)
1053 if (!irqchip_in_kernel(vcpu
->kvm
) || !vcpu
->arch
.apic
->vapic_addr
)
1056 vapic
= kmap_atomic(vcpu
->arch
.apic
->vapic_page
, KM_USER0
);
1057 data
= *(u32
*)(vapic
+ offset_in_page(vcpu
->arch
.apic
->vapic_addr
));
1058 kunmap_atomic(vapic
, KM_USER0
);
1060 apic_set_tpr(vcpu
->arch
.apic
, data
& 0xff);
1063 void kvm_lapic_sync_to_vapic(struct kvm_vcpu
*vcpu
)
1066 int max_irr
, max_isr
;
1067 struct kvm_lapic
*apic
;
1070 if (!irqchip_in_kernel(vcpu
->kvm
) || !vcpu
->arch
.apic
->vapic_addr
)
1073 apic
= vcpu
->arch
.apic
;
1074 tpr
= apic_get_reg(apic
, APIC_TASKPRI
) & 0xff;
1075 max_irr
= apic_find_highest_irr(apic
);
1078 max_isr
= apic_find_highest_isr(apic
);
1081 data
= (tpr
& 0xff) | ((max_isr
& 0xf0) << 8) | (max_irr
<< 24);
1083 vapic
= kmap_atomic(vcpu
->arch
.apic
->vapic_page
, KM_USER0
);
1084 *(u32
*)(vapic
+ offset_in_page(vcpu
->arch
.apic
->vapic_addr
)) = data
;
1085 kunmap_atomic(vapic
, KM_USER0
);
1088 void kvm_lapic_set_vapic_addr(struct kvm_vcpu
*vcpu
, gpa_t vapic_addr
)
1090 if (!irqchip_in_kernel(vcpu
->kvm
))
1093 vcpu
->arch
.apic
->vapic_addr
= vapic_addr
;