3 * Local APIC virtualization
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
8 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
11 * Dor Laor <dor.laor@qumranet.com>
12 * Gregory Haskins <ghaskins@novell.com>
13 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
15 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
17 * This work is licensed under the terms of the GNU GPL, version 2. See
18 * the COPYING file in the top-level directory.
21 #include <linux/kvm_host.h>
22 #include <linux/kvm.h>
24 #include <linux/highmem.h>
25 #include <linux/smp.h>
26 #include <linux/hrtimer.h>
28 #include <linux/module.h>
29 #include <linux/math64.h>
30 #include <linux/slab.h>
31 #include <asm/processor.h>
34 #include <asm/current.h>
35 #include <asm/apicdef.h>
36 #include <linux/atomic.h>
37 #include <linux/jump_label.h>
38 #include "kvm_cache_regs.h"
45 #define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
47 #define mod_64(x, y) ((x) % (y))
55 #define APIC_BUS_CYCLE_NS 1
57 /* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
58 #define apic_debug(fmt, arg...)
60 #define APIC_LVT_NUM 6
61 /* 14 is the version for Xeon and Pentium 8.4.8*/
62 #define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
63 #define LAPIC_MMIO_LENGTH (1 << 12)
64 /* followed define is not in apicdef.h */
65 #define APIC_SHORT_MASK 0xc0000
66 #define APIC_DEST_NOSHORT 0x0
67 #define APIC_DEST_MASK 0x800
68 #define MAX_APIC_VECTOR 256
70 #define VEC_POS(v) ((v) & (32 - 1))
71 #define REG_POS(v) (((v) >> 5) << 4)
73 static unsigned int min_timer_period_us = 500;
74 module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
76 static inline u32 apic_get_reg(struct kvm_lapic *apic, int reg_off)
78 return *((u32 *) (apic->regs + reg_off));
81 static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
83 *((u32 *) (apic->regs + reg_off)) = val;
86 static inline int apic_test_and_set_vector(int vec, void *bitmap)
88 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
91 static inline int apic_test_and_clear_vector(int vec, void *bitmap)
93 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
96 static inline int apic_test_vector(int vec, void *bitmap)
98 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
101 static inline void apic_set_vector(int vec, void *bitmap)
103 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
106 static inline void apic_clear_vector(int vec, void *bitmap)
108 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
111 static inline int __apic_test_and_set_vector(int vec, void *bitmap)
113 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
116 static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
118 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
121 struct static_key_deferred apic_hw_disabled __read_mostly;
123 static inline int apic_hw_enabled(struct kvm_lapic *apic)
125 if (static_key_false(&apic_hw_disabled.key))
126 return apic->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE;
127 return MSR_IA32_APICBASE_ENABLE;
130 struct static_key_deferred apic_sw_disabled __read_mostly;
132 static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
134 if ((apic_get_reg(apic, APIC_SPIV) ^ val) & APIC_SPIV_APIC_ENABLED) {
135 if (val & APIC_SPIV_APIC_ENABLED)
136 static_key_slow_dec_deferred(&apic_sw_disabled);
138 static_key_slow_inc(&apic_sw_disabled.key);
140 apic_set_reg(apic, APIC_SPIV, val);
143 static inline int apic_sw_enabled(struct kvm_lapic *apic)
145 if (static_key_false(&apic_sw_disabled.key))
146 return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED;
147 return APIC_SPIV_APIC_ENABLED;
150 static inline int apic_enabled(struct kvm_lapic *apic)
152 return apic_sw_enabled(apic) && apic_hw_enabled(apic);
155 static inline bool vcpu_has_lapic(struct kvm_vcpu *vcpu)
157 if (static_key_false(&kvm_no_apic_vcpu))
158 return vcpu->arch.apic;
163 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
166 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
167 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
169 static inline int kvm_apic_id(struct kvm_lapic *apic)
171 return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
174 static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
176 return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
179 static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
181 return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
184 static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
186 return ((apic_get_reg(apic, APIC_LVTT) &
187 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
190 static inline int apic_lvtt_period(struct kvm_lapic *apic)
192 return ((apic_get_reg(apic, APIC_LVTT) &
193 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
196 static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
198 return ((apic_get_reg(apic, APIC_LVTT) &
199 apic->lapic_timer.timer_mode_mask) ==
200 APIC_LVT_TIMER_TSCDEADLINE);
203 static inline int apic_lvt_nmi_mode(u32 lvt_val)
205 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
208 void kvm_apic_set_version(struct kvm_vcpu *vcpu)
210 struct kvm_lapic *apic = vcpu->arch.apic;
211 struct kvm_cpuid_entry2 *feat;
212 u32 v = APIC_VERSION;
214 if (!vcpu_has_lapic(vcpu))
217 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
218 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
219 v |= APIC_LVR_DIRECTED_EOI;
220 apic_set_reg(apic, APIC_LVR, v);
223 static inline int apic_x2apic_mode(struct kvm_lapic *apic)
225 return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
228 static unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
229 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
230 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
231 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
232 LINT_MASK, LINT_MASK, /* LVT0-1 */
233 LVT_MASK /* LVTERR */
236 static int find_highest_vector(void *bitmap)
239 int word_offset = MAX_APIC_VECTOR >> 5;
241 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
244 if (likely(!word_offset && !word[0]))
247 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
250 static u8 count_vectors(void *bitmap)
255 for (word_offset = 0; word_offset < MAX_APIC_VECTOR >> 5; ++word_offset)
256 count += hweight32(word[word_offset << 2]);
260 static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
262 apic->irr_pending = true;
263 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
266 static inline int apic_search_irr(struct kvm_lapic *apic)
268 return find_highest_vector(apic->regs + APIC_IRR);
271 static inline int apic_find_highest_irr(struct kvm_lapic *apic)
275 if (!apic->irr_pending)
278 result = apic_search_irr(apic);
279 ASSERT(result == -1 || result >= 16);
284 static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
286 apic->irr_pending = false;
287 apic_clear_vector(vec, apic->regs + APIC_IRR);
288 if (apic_search_irr(apic) != -1)
289 apic->irr_pending = true;
292 static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
294 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
296 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
298 * ISR (in service register) bit is set when injecting an interrupt.
299 * The highest vector is injected. Thus the latest bit set matches
300 * the highest bit in ISR.
302 apic->highest_isr_cache = vec;
305 static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
307 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
309 BUG_ON(apic->isr_count < 0);
310 apic->highest_isr_cache = -1;
313 int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
317 /* This may race with setting of irr in __apic_accept_irq() and
318 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
319 * will cause vmexit immediately and the value will be recalculated
320 * on the next vmentry.
322 if (!vcpu_has_lapic(vcpu))
324 highest_irr = apic_find_highest_irr(vcpu->arch.apic);
329 static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
330 int vector, int level, int trig_mode);
332 int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
334 struct kvm_lapic *apic = vcpu->arch.apic;
336 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
337 irq->level, irq->trig_mode);
340 static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
343 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
347 static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
350 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
354 static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
356 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
359 static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
362 if (pv_eoi_get_user(vcpu, &val) < 0)
363 apic_debug("Can't read EOI MSR value: 0x%llx\n",
364 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
368 static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
370 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
371 apic_debug("Can't set EOI MSR value: 0x%llx\n",
372 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
375 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
378 static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
380 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
381 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
382 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
385 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
388 static inline int apic_find_highest_isr(struct kvm_lapic *apic)
391 if (!apic->isr_count)
393 if (likely(apic->highest_isr_cache != -1))
394 return apic->highest_isr_cache;
396 result = find_highest_vector(apic->regs + APIC_ISR);
397 ASSERT(result == -1 || result >= 16);
402 static void apic_update_ppr(struct kvm_lapic *apic)
404 u32 tpr, isrv, ppr, old_ppr;
407 old_ppr = apic_get_reg(apic, APIC_PROCPRI);
408 tpr = apic_get_reg(apic, APIC_TASKPRI);
409 isr = apic_find_highest_isr(apic);
410 isrv = (isr != -1) ? isr : 0;
412 if ((tpr & 0xf0) >= (isrv & 0xf0))
417 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
418 apic, ppr, isr, isrv);
420 if (old_ppr != ppr) {
421 apic_set_reg(apic, APIC_PROCPRI, ppr);
423 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
427 static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
429 apic_set_reg(apic, APIC_TASKPRI, tpr);
430 apic_update_ppr(apic);
433 int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
435 return dest == 0xff || kvm_apic_id(apic) == dest;
438 int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
443 if (apic_x2apic_mode(apic)) {
444 logical_id = apic_get_reg(apic, APIC_LDR);
445 return logical_id & mda;
448 logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR));
450 switch (apic_get_reg(apic, APIC_DFR)) {
452 if (logical_id & mda)
455 case APIC_DFR_CLUSTER:
456 if (((logical_id >> 4) == (mda >> 0x4))
457 && (logical_id & mda & 0xf))
461 apic_debug("Bad DFR vcpu %d: %08x\n",
462 apic->vcpu->vcpu_id, apic_get_reg(apic, APIC_DFR));
469 int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
470 int short_hand, int dest, int dest_mode)
473 struct kvm_lapic *target = vcpu->arch.apic;
475 apic_debug("target %p, source %p, dest 0x%x, "
476 "dest_mode 0x%x, short_hand 0x%x\n",
477 target, source, dest, dest_mode, short_hand);
480 switch (short_hand) {
481 case APIC_DEST_NOSHORT:
484 result = kvm_apic_match_physical_addr(target, dest);
487 result = kvm_apic_match_logical_addr(target, dest);
490 result = (target == source);
492 case APIC_DEST_ALLINC:
495 case APIC_DEST_ALLBUT:
496 result = (target != source);
499 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
508 * Add a pending IRQ into lapic.
509 * Return 1 if successfully added and 0 if discarded.
511 static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
512 int vector, int level, int trig_mode)
515 struct kvm_vcpu *vcpu = apic->vcpu;
517 switch (delivery_mode) {
519 vcpu->arch.apic_arb_prio++;
521 /* FIXME add logic for vcpu on reset */
522 if (unlikely(!apic_enabled(apic)))
526 apic_debug("level trig mode for vector %d", vector);
527 apic_set_vector(vector, apic->regs + APIC_TMR);
529 apic_clear_vector(vector, apic->regs + APIC_TMR);
531 result = !apic_test_and_set_irr(vector, apic);
532 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
533 trig_mode, vector, !result);
536 apic_debug("level trig mode repeatedly for "
537 "vector %d", vector);
541 kvm_make_request(KVM_REQ_EVENT, vcpu);
546 apic_debug("Ignoring delivery mode 3\n");
550 apic_debug("Ignoring guest SMI\n");
555 kvm_inject_nmi(vcpu);
560 if (!trig_mode || level) {
562 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
563 kvm_make_request(KVM_REQ_EVENT, vcpu);
566 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
571 case APIC_DM_STARTUP:
572 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
573 vcpu->vcpu_id, vector);
574 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
576 vcpu->arch.sipi_vector = vector;
577 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
578 kvm_make_request(KVM_REQ_EVENT, vcpu);
585 * Should only be called by kvm_apic_local_deliver() with LVT0,
586 * before NMI watchdog was enabled. Already handled by
587 * kvm_apic_accept_pic_intr().
592 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
599 int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
601 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
604 static int apic_set_eoi(struct kvm_lapic *apic)
606 int vector = apic_find_highest_isr(apic);
608 trace_kvm_eoi(apic, vector);
611 * Not every write EOI will has corresponding ISR,
612 * one example is when Kernel check timer on setup_IO_APIC
617 apic_clear_isr(vector, apic);
618 apic_update_ppr(apic);
620 if (!(apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
621 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
623 if (apic_test_vector(vector, apic->regs + APIC_TMR))
624 trigger_mode = IOAPIC_LEVEL_TRIG;
626 trigger_mode = IOAPIC_EDGE_TRIG;
627 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
629 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
633 static void apic_send_ipi(struct kvm_lapic *apic)
635 u32 icr_low = apic_get_reg(apic, APIC_ICR);
636 u32 icr_high = apic_get_reg(apic, APIC_ICR2);
637 struct kvm_lapic_irq irq;
639 irq.vector = icr_low & APIC_VECTOR_MASK;
640 irq.delivery_mode = icr_low & APIC_MODE_MASK;
641 irq.dest_mode = icr_low & APIC_DEST_MASK;
642 irq.level = icr_low & APIC_INT_ASSERT;
643 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
644 irq.shorthand = icr_low & APIC_SHORT_MASK;
645 if (apic_x2apic_mode(apic))
646 irq.dest_id = icr_high;
648 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
650 trace_kvm_apic_ipi(icr_low, irq.dest_id);
652 apic_debug("icr_high 0x%x, icr_low 0x%x, "
653 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
654 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
655 icr_high, icr_low, irq.shorthand, irq.dest_id,
656 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
659 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
662 static u32 apic_get_tmcct(struct kvm_lapic *apic)
668 ASSERT(apic != NULL);
670 /* if initial count is 0, current count should also be 0 */
671 if (apic_get_reg(apic, APIC_TMICT) == 0)
674 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
675 if (ktime_to_ns(remaining) < 0)
676 remaining = ktime_set(0, 0);
678 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
679 tmcct = div64_u64(ns,
680 (APIC_BUS_CYCLE_NS * apic->divide_count));
685 static void __report_tpr_access(struct kvm_lapic *apic, bool write)
687 struct kvm_vcpu *vcpu = apic->vcpu;
688 struct kvm_run *run = vcpu->run;
690 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
691 run->tpr_access.rip = kvm_rip_read(vcpu);
692 run->tpr_access.is_write = write;
695 static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
697 if (apic->vcpu->arch.tpr_access_reporting)
698 __report_tpr_access(apic, write);
701 static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
705 if (offset >= LAPIC_MMIO_LENGTH)
710 if (apic_x2apic_mode(apic))
711 val = kvm_apic_id(apic);
713 val = kvm_apic_id(apic) << 24;
716 apic_debug("Access APIC ARBPRI register which is for P6\n");
719 case APIC_TMCCT: /* Timer CCR */
720 if (apic_lvtt_tscdeadline(apic))
723 val = apic_get_tmcct(apic);
726 apic_update_ppr(apic);
727 val = apic_get_reg(apic, offset);
730 report_tpr_access(apic, false);
733 val = apic_get_reg(apic, offset);
740 static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
742 return container_of(dev, struct kvm_lapic, dev);
745 static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
748 unsigned char alignment = offset & 0xf;
750 /* this bitmask has a bit cleared for each reserved register */
751 static const u64 rmask = 0x43ff01ffffffe70cULL;
753 if ((alignment + len) > 4) {
754 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
759 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
760 apic_debug("KVM_APIC_READ: read reserved register %x\n",
765 result = __apic_read(apic, offset & ~0xf);
767 trace_kvm_apic_read(offset, result);
773 memcpy(data, (char *)&result + alignment, len);
776 printk(KERN_ERR "Local APIC read with len = %x, "
777 "should be 1,2, or 4 instead\n", len);
783 static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
785 return apic_hw_enabled(apic) &&
786 addr >= apic->base_address &&
787 addr < apic->base_address + LAPIC_MMIO_LENGTH;
790 static int apic_mmio_read(struct kvm_io_device *this,
791 gpa_t address, int len, void *data)
793 struct kvm_lapic *apic = to_lapic(this);
794 u32 offset = address - apic->base_address;
796 if (!apic_mmio_in_range(apic, address))
799 apic_reg_read(apic, offset, len, data);
804 static void update_divide_count(struct kvm_lapic *apic)
806 u32 tmp1, tmp2, tdcr;
808 tdcr = apic_get_reg(apic, APIC_TDCR);
810 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
811 apic->divide_count = 0x1 << (tmp2 & 0x7);
813 apic_debug("timer divide count is 0x%x\n",
817 static void start_apic_timer(struct kvm_lapic *apic)
820 atomic_set(&apic->lapic_timer.pending, 0);
822 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
823 /* lapic timer in oneshot or periodic mode */
824 now = apic->lapic_timer.timer.base->get_time();
825 apic->lapic_timer.period = (u64)apic_get_reg(apic, APIC_TMICT)
826 * APIC_BUS_CYCLE_NS * apic->divide_count;
828 if (!apic->lapic_timer.period)
831 * Do not allow the guest to program periodic timers with small
832 * interval, since the hrtimers are not throttled by the host
835 if (apic_lvtt_period(apic)) {
836 s64 min_period = min_timer_period_us * 1000LL;
838 if (apic->lapic_timer.period < min_period) {
840 "kvm: vcpu %i: requested %lld ns "
841 "lapic timer period limited to %lld ns\n",
843 apic->lapic_timer.period, min_period);
844 apic->lapic_timer.period = min_period;
848 hrtimer_start(&apic->lapic_timer.timer,
849 ktime_add_ns(now, apic->lapic_timer.period),
852 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
854 "timer initial count 0x%x, period %lldns, "
855 "expire @ 0x%016" PRIx64 ".\n", __func__,
856 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
857 apic_get_reg(apic, APIC_TMICT),
858 apic->lapic_timer.period,
859 ktime_to_ns(ktime_add_ns(now,
860 apic->lapic_timer.period)));
861 } else if (apic_lvtt_tscdeadline(apic)) {
862 /* lapic timer in tsc deadline mode */
863 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
865 struct kvm_vcpu *vcpu = apic->vcpu;
866 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
869 if (unlikely(!tscdeadline || !this_tsc_khz))
872 local_irq_save(flags);
874 now = apic->lapic_timer.timer.base->get_time();
875 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu);
876 if (likely(tscdeadline > guest_tsc)) {
877 ns = (tscdeadline - guest_tsc) * 1000000ULL;
878 do_div(ns, this_tsc_khz);
880 hrtimer_start(&apic->lapic_timer.timer,
881 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
883 local_irq_restore(flags);
887 static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
889 int nmi_wd_enabled = apic_lvt_nmi_mode(apic_get_reg(apic, APIC_LVT0));
891 if (apic_lvt_nmi_mode(lvt0_val)) {
892 if (!nmi_wd_enabled) {
893 apic_debug("Receive NMI setting on APIC_LVT0 "
894 "for cpu %d\n", apic->vcpu->vcpu_id);
895 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
897 } else if (nmi_wd_enabled)
898 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
901 static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
905 trace_kvm_apic_write(reg, val);
908 case APIC_ID: /* Local APIC ID */
909 if (!apic_x2apic_mode(apic))
910 apic_set_reg(apic, APIC_ID, val);
916 report_tpr_access(apic, true);
917 apic_set_tpr(apic, val & 0xff);
925 if (!apic_x2apic_mode(apic))
926 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
932 if (!apic_x2apic_mode(apic))
933 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
940 if (apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
941 mask |= APIC_SPIV_DIRECTED_EOI;
942 apic_set_spiv(apic, val & mask);
943 if (!(val & APIC_SPIV_APIC_ENABLED)) {
947 for (i = 0; i < APIC_LVT_NUM; i++) {
948 lvt_val = apic_get_reg(apic,
949 APIC_LVTT + 0x10 * i);
950 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
951 lvt_val | APIC_LVT_MASKED);
953 atomic_set(&apic->lapic_timer.pending, 0);
959 /* No delay here, so we always clear the pending bit */
960 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
965 if (!apic_x2apic_mode(apic))
967 apic_set_reg(apic, APIC_ICR2, val);
971 apic_manage_nmi_watchdog(apic, val);
976 /* TODO: Check vector */
977 if (!apic_sw_enabled(apic))
978 val |= APIC_LVT_MASKED;
980 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
981 apic_set_reg(apic, reg, val);
986 if ((apic_get_reg(apic, APIC_LVTT) &
987 apic->lapic_timer.timer_mode_mask) !=
988 (val & apic->lapic_timer.timer_mode_mask))
989 hrtimer_cancel(&apic->lapic_timer.timer);
991 if (!apic_sw_enabled(apic))
992 val |= APIC_LVT_MASKED;
993 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
994 apic_set_reg(apic, APIC_LVTT, val);
998 if (apic_lvtt_tscdeadline(apic))
1001 hrtimer_cancel(&apic->lapic_timer.timer);
1002 apic_set_reg(apic, APIC_TMICT, val);
1003 start_apic_timer(apic);
1008 apic_debug("KVM_WRITE:TDCR %x\n", val);
1009 apic_set_reg(apic, APIC_TDCR, val);
1010 update_divide_count(apic);
1014 if (apic_x2apic_mode(apic) && val != 0) {
1015 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
1021 if (apic_x2apic_mode(apic)) {
1022 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1031 apic_debug("Local APIC Write to read-only register %x\n", reg);
1035 static int apic_mmio_write(struct kvm_io_device *this,
1036 gpa_t address, int len, const void *data)
1038 struct kvm_lapic *apic = to_lapic(this);
1039 unsigned int offset = address - apic->base_address;
1042 if (!apic_mmio_in_range(apic, address))
1046 * APIC register must be aligned on 128-bits boundary.
1047 * 32/64/128 bits registers must be accessed thru 32 bits.
1050 if (len != 4 || (offset & 0xf)) {
1051 /* Don't shout loud, $infamous_os would cause only noise. */
1052 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
1058 /* too common printing */
1059 if (offset != APIC_EOI)
1060 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1061 "0x%x\n", __func__, offset, len, val);
1063 apic_reg_write(apic, offset & 0xff0, val);
1068 void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1070 if (vcpu_has_lapic(vcpu))
1071 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1073 EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1075 void kvm_free_lapic(struct kvm_vcpu *vcpu)
1077 struct kvm_lapic *apic = vcpu->arch.apic;
1079 if (!vcpu->arch.apic)
1082 hrtimer_cancel(&apic->lapic_timer.timer);
1084 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1085 static_key_slow_dec_deferred(&apic_hw_disabled);
1087 if (!(apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED))
1088 static_key_slow_dec_deferred(&apic_sw_disabled);
1091 free_page((unsigned long)apic->regs);
1097 *----------------------------------------------------------------------
1099 *----------------------------------------------------------------------
1102 u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1104 struct kvm_lapic *apic = vcpu->arch.apic;
1106 if (!vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
1107 apic_lvtt_period(apic))
1110 return apic->lapic_timer.tscdeadline;
1113 void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1115 struct kvm_lapic *apic = vcpu->arch.apic;
1117 if (!vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
1118 apic_lvtt_period(apic))
1121 hrtimer_cancel(&apic->lapic_timer.timer);
1122 apic->lapic_timer.tscdeadline = data;
1123 start_apic_timer(apic);
1126 void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1128 struct kvm_lapic *apic = vcpu->arch.apic;
1130 if (!vcpu_has_lapic(vcpu))
1133 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
1134 | (apic_get_reg(apic, APIC_TASKPRI) & 4));
1137 u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1141 if (!vcpu_has_lapic(vcpu))
1144 tpr = (u64) apic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
1146 return (tpr & 0xf0) >> 4;
1149 void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1151 struct kvm_lapic *apic = vcpu->arch.apic;
1154 value |= MSR_IA32_APICBASE_BSP;
1155 vcpu->arch.apic_base = value;
1159 /* update jump label if enable bit changes */
1160 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1161 if (value & MSR_IA32_APICBASE_ENABLE)
1162 static_key_slow_dec_deferred(&apic_hw_disabled);
1164 static_key_slow_inc(&apic_hw_disabled.key);
1167 if (!kvm_vcpu_is_bsp(apic->vcpu))
1168 value &= ~MSR_IA32_APICBASE_BSP;
1170 vcpu->arch.apic_base = value;
1171 if (apic_x2apic_mode(apic)) {
1172 u32 id = kvm_apic_id(apic);
1173 u32 ldr = ((id & ~0xf) << 16) | (1 << (id & 0xf));
1174 apic_set_reg(apic, APIC_LDR, ldr);
1176 apic->base_address = apic->vcpu->arch.apic_base &
1177 MSR_IA32_APICBASE_BASE;
1179 /* with FSB delivery interrupt, we can restart APIC functionality */
1180 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
1181 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
1185 void kvm_lapic_reset(struct kvm_vcpu *vcpu)
1187 struct kvm_lapic *apic;
1190 apic_debug("%s\n", __func__);
1193 apic = vcpu->arch.apic;
1194 ASSERT(apic != NULL);
1196 /* Stop the timer in case it's a reset to an active apic */
1197 hrtimer_cancel(&apic->lapic_timer.timer);
1199 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
1200 kvm_apic_set_version(apic->vcpu);
1202 for (i = 0; i < APIC_LVT_NUM; i++)
1203 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
1204 apic_set_reg(apic, APIC_LVT0,
1205 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
1207 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
1208 apic_set_spiv(apic, 0xff);
1209 apic_set_reg(apic, APIC_TASKPRI, 0);
1210 apic_set_reg(apic, APIC_LDR, 0);
1211 apic_set_reg(apic, APIC_ESR, 0);
1212 apic_set_reg(apic, APIC_ICR, 0);
1213 apic_set_reg(apic, APIC_ICR2, 0);
1214 apic_set_reg(apic, APIC_TDCR, 0);
1215 apic_set_reg(apic, APIC_TMICT, 0);
1216 for (i = 0; i < 8; i++) {
1217 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1218 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1219 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1221 apic->irr_pending = false;
1222 apic->isr_count = 0;
1223 apic->highest_isr_cache = -1;
1224 update_divide_count(apic);
1225 atomic_set(&apic->lapic_timer.pending, 0);
1226 if (kvm_vcpu_is_bsp(vcpu))
1227 kvm_lapic_set_base(vcpu,
1228 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
1229 vcpu->arch.pv_eoi.msr_val = 0;
1230 apic_update_ppr(apic);
1232 vcpu->arch.apic_arb_prio = 0;
1233 vcpu->arch.apic_attention = 0;
1235 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
1236 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
1237 vcpu, kvm_apic_id(apic),
1238 vcpu->arch.apic_base, apic->base_address);
1241 bool kvm_apic_present(struct kvm_vcpu *vcpu)
1243 return vcpu_has_lapic(vcpu) && apic_hw_enabled(vcpu->arch.apic);
1246 int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
1248 return kvm_apic_present(vcpu) && apic_sw_enabled(vcpu->arch.apic);
1252 *----------------------------------------------------------------------
1254 *----------------------------------------------------------------------
1257 static bool lapic_is_periodic(struct kvm_lapic *apic)
1259 return apic_lvtt_period(apic);
1262 int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1264 struct kvm_lapic *apic = vcpu->arch.apic;
1266 if (vcpu_has_lapic(vcpu) && apic_enabled(apic) &&
1267 apic_lvt_enabled(apic, APIC_LVTT))
1268 return atomic_read(&apic->lapic_timer.pending);
1273 int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
1275 u32 reg = apic_get_reg(apic, lvt_type);
1276 int vector, mode, trig_mode;
1278 if (apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
1279 vector = reg & APIC_VECTOR_MASK;
1280 mode = reg & APIC_MODE_MASK;
1281 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1282 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1287 void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
1289 struct kvm_lapic *apic = vcpu->arch.apic;
1292 kvm_apic_local_deliver(apic, APIC_LVT0);
1295 static const struct kvm_io_device_ops apic_mmio_ops = {
1296 .read = apic_mmio_read,
1297 .write = apic_mmio_write,
1300 static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1302 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
1303 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1304 struct kvm_vcpu *vcpu = apic->vcpu;
1305 wait_queue_head_t *q = &vcpu->wq;
1308 * There is a race window between reading and incrementing, but we do
1309 * not care about potentially losing timer events in the !reinject
1310 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1311 * in vcpu_enter_guest.
1313 if (!atomic_read(&ktimer->pending)) {
1314 atomic_inc(&ktimer->pending);
1315 /* FIXME: this code should not know anything about vcpus */
1316 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1319 if (waitqueue_active(q))
1320 wake_up_interruptible(q);
1322 if (lapic_is_periodic(apic)) {
1323 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1324 return HRTIMER_RESTART;
1326 return HRTIMER_NORESTART;
1329 int kvm_create_lapic(struct kvm_vcpu *vcpu)
1331 struct kvm_lapic *apic;
1333 ASSERT(vcpu != NULL);
1334 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1336 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1340 vcpu->arch.apic = apic;
1342 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1344 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1346 goto nomem_free_apic;
1350 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1352 apic->lapic_timer.timer.function = apic_timer_fn;
1355 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1356 * thinking that APIC satet has changed.
1358 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
1359 kvm_lapic_set_base(vcpu,
1360 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
1362 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
1363 kvm_lapic_reset(vcpu);
1364 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
1373 int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1375 struct kvm_lapic *apic = vcpu->arch.apic;
1378 if (!vcpu_has_lapic(vcpu) || !apic_enabled(apic))
1381 apic_update_ppr(apic);
1382 highest_irr = apic_find_highest_irr(apic);
1383 if ((highest_irr == -1) ||
1384 ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI)))
1389 int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1391 u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0);
1394 if (!apic_hw_enabled(vcpu->arch.apic))
1396 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1397 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1402 void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1404 struct kvm_lapic *apic = vcpu->arch.apic;
1406 if (!vcpu_has_lapic(vcpu))
1409 if (atomic_read(&apic->lapic_timer.pending) > 0) {
1410 if (kvm_apic_local_deliver(apic, APIC_LVTT))
1411 atomic_dec(&apic->lapic_timer.pending);
1415 int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1417 int vector = kvm_apic_has_interrupt(vcpu);
1418 struct kvm_lapic *apic = vcpu->arch.apic;
1423 apic_set_isr(vector, apic);
1424 apic_update_ppr(apic);
1425 apic_clear_irr(vector, apic);
1429 void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1431 struct kvm_lapic *apic = vcpu->arch.apic;
1433 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
1434 kvm_apic_set_version(vcpu);
1435 apic_set_spiv(apic, apic_get_reg(apic, APIC_SPIV));
1437 apic_update_ppr(apic);
1438 hrtimer_cancel(&apic->lapic_timer.timer);
1439 update_divide_count(apic);
1440 start_apic_timer(apic);
1441 apic->irr_pending = true;
1442 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
1443 apic->highest_isr_cache = -1;
1444 kvm_make_request(KVM_REQ_EVENT, vcpu);
1447 void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
1449 struct hrtimer *timer;
1451 if (!vcpu_has_lapic(vcpu))
1454 timer = &vcpu->arch.apic->lapic_timer.timer;
1455 if (hrtimer_cancel(timer))
1456 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
1460 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1462 * Detect whether guest triggered PV EOI since the
1463 * last entry. If yes, set EOI on guests's behalf.
1464 * Clear PV EOI in guest memory in any case.
1466 static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1467 struct kvm_lapic *apic)
1472 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1473 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1475 * KVM_APIC_PV_EOI_PENDING is unset:
1476 * -> host disabled PV EOI.
1477 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1478 * -> host enabled PV EOI, guest did not execute EOI yet.
1479 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1480 * -> host enabled PV EOI, guest executed EOI.
1482 BUG_ON(!pv_eoi_enabled(vcpu));
1483 pending = pv_eoi_get_pending(vcpu);
1485 * Clear pending bit in any case: it will be set again on vmentry.
1486 * While this might not be ideal from performance point of view,
1487 * this makes sure pv eoi is only enabled when we know it's safe.
1489 pv_eoi_clr_pending(vcpu);
1492 vector = apic_set_eoi(apic);
1493 trace_kvm_pv_eoi(apic, vector);
1496 void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1501 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1502 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1504 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
1507 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
1508 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
1509 kunmap_atomic(vapic);
1511 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1515 * apic_sync_pv_eoi_to_guest - called before vmentry
1517 * Detect whether it's safe to enable PV EOI and
1520 static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1521 struct kvm_lapic *apic)
1523 if (!pv_eoi_enabled(vcpu) ||
1524 /* IRR set or many bits in ISR: could be nested. */
1525 apic->irr_pending ||
1526 /* Cache not set: could be safe but we don't bother. */
1527 apic->highest_isr_cache == -1 ||
1528 /* Need EOI to update ioapic. */
1529 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1531 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1532 * so we need not do anything here.
1537 pv_eoi_set_pending(apic->vcpu);
1540 void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1543 int max_irr, max_isr;
1544 struct kvm_lapic *apic = vcpu->arch.apic;
1547 apic_sync_pv_eoi_to_guest(vcpu, apic);
1549 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
1552 tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff;
1553 max_irr = apic_find_highest_irr(apic);
1556 max_isr = apic_find_highest_isr(apic);
1559 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1561 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
1562 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
1563 kunmap_atomic(vapic);
1566 void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1568 vcpu->arch.apic->vapic_addr = vapic_addr;
1570 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1572 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1575 int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1577 struct kvm_lapic *apic = vcpu->arch.apic;
1578 u32 reg = (msr - APIC_BASE_MSR) << 4;
1580 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1583 /* if this is ICR write vector before command */
1585 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1586 return apic_reg_write(apic, reg, (u32)data);
1589 int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1591 struct kvm_lapic *apic = vcpu->arch.apic;
1592 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1594 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1597 if (apic_reg_read(apic, reg, 4, &low))
1600 apic_reg_read(apic, APIC_ICR2, 4, &high);
1602 *data = (((u64)high) << 32) | low;
1607 int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1609 struct kvm_lapic *apic = vcpu->arch.apic;
1611 if (!vcpu_has_lapic(vcpu))
1614 /* if this is ICR write vector before command */
1615 if (reg == APIC_ICR)
1616 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1617 return apic_reg_write(apic, reg, (u32)data);
1620 int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1622 struct kvm_lapic *apic = vcpu->arch.apic;
1625 if (!vcpu_has_lapic(vcpu))
1628 if (apic_reg_read(apic, reg, 4, &low))
1630 if (reg == APIC_ICR)
1631 apic_reg_read(apic, APIC_ICR2, 4, &high);
1633 *data = (((u64)high) << 32) | low;
1638 int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1640 u64 addr = data & ~KVM_MSR_ENABLED;
1641 if (!IS_ALIGNED(addr, 4))
1644 vcpu->arch.pv_eoi.msr_val = data;
1645 if (!pv_eoi_enabled(vcpu))
1647 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
1651 void kvm_lapic_init(void)
1653 /* do not patch jump label more than once per second */
1654 jump_label_rate_limit(&apic_hw_disabled, HZ);
1655 jump_label_rate_limit(&apic_sw_disabled, HZ);