1 // SPDX-License-Identifier: GPL-2.0-only
4 * Local APIC virtualization
6 * Copyright (C) 2006 Qumranet, Inc.
7 * Copyright (C) 2007 Novell
8 * Copyright (C) 2007 Intel
9 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
16 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
19 #include <linux/kvm_host.h>
20 #include <linux/kvm.h>
22 #include <linux/highmem.h>
23 #include <linux/smp.h>
24 #include <linux/hrtimer.h>
26 #include <linux/export.h>
27 #include <linux/math64.h>
28 #include <linux/slab.h>
29 #include <asm/processor.h>
32 #include <asm/current.h>
33 #include <asm/apicdef.h>
34 #include <asm/delay.h>
35 #include <linux/atomic.h>
36 #include <linux/jump_label.h>
37 #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 /* 14 is the version for Xeon and Pentium 8.4.8*/
56 #define APIC_VERSION (0x14UL | ((KVM_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
63 #define APIC_VECTORS_PER_REG 32
65 #define APIC_BROADCAST 0xFF
66 #define X2APIC_BROADCAST 0xFFFFFFFFul
68 #define LAPIC_TIMER_ADVANCE_ADJUST_DONE 100
69 #define LAPIC_TIMER_ADVANCE_ADJUST_INIT 1000
70 /* step-by-step approximation to mitigate fluctuation */
71 #define LAPIC_TIMER_ADVANCE_ADJUST_STEP 8
73 static inline int apic_test_vector(int vec, void *bitmap)
75 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
78 bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector)
80 struct kvm_lapic *apic = vcpu->arch.apic;
82 return apic_test_vector(vector, apic->regs + APIC_ISR) ||
83 apic_test_vector(vector, apic->regs + APIC_IRR);
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 struct static_key_deferred apic_hw_disabled __read_mostly;
97 struct static_key_deferred apic_sw_disabled __read_mostly;
99 static inline int apic_enabled(struct kvm_lapic *apic)
101 return kvm_apic_sw_enabled(apic) && kvm_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 u8 kvm_xapic_id(struct kvm_lapic *apic)
113 return kvm_lapic_get_reg(apic, APIC_ID) >> 24;
116 static inline u32 kvm_x2apic_id(struct kvm_lapic *apic)
118 return apic->vcpu->vcpu_id;
121 bool kvm_can_post_timer_interrupt(struct kvm_vcpu *vcpu)
123 return pi_inject_timer && kvm_vcpu_apicv_active(vcpu);
125 EXPORT_SYMBOL_GPL(kvm_can_post_timer_interrupt);
127 static bool kvm_use_posted_timer_interrupt(struct kvm_vcpu *vcpu)
129 return kvm_can_post_timer_interrupt(vcpu) && vcpu->mode == IN_GUEST_MODE;
132 static inline bool kvm_apic_map_get_logical_dest(struct kvm_apic_map *map,
133 u32 dest_id, struct kvm_lapic ***cluster, u16 *mask) {
135 case KVM_APIC_MODE_X2APIC: {
136 u32 offset = (dest_id >> 16) * 16;
137 u32 max_apic_id = map->max_apic_id;
139 if (offset <= max_apic_id) {
140 u8 cluster_size = min(max_apic_id - offset + 1, 16U);
142 offset = array_index_nospec(offset, map->max_apic_id + 1);
143 *cluster = &map->phys_map[offset];
144 *mask = dest_id & (0xffff >> (16 - cluster_size));
151 case KVM_APIC_MODE_XAPIC_FLAT:
152 *cluster = map->xapic_flat_map;
153 *mask = dest_id & 0xff;
155 case KVM_APIC_MODE_XAPIC_CLUSTER:
156 *cluster = map->xapic_cluster_map[(dest_id >> 4) & 0xf];
157 *mask = dest_id & 0xf;
165 static void kvm_apic_map_free(struct rcu_head *rcu)
167 struct kvm_apic_map *map = container_of(rcu, struct kvm_apic_map, rcu);
172 static void recalculate_apic_map(struct kvm *kvm)
174 struct kvm_apic_map *new, *old = NULL;
175 struct kvm_vcpu *vcpu;
177 u32 max_id = 255; /* enough space for any xAPIC ID */
179 mutex_lock(&kvm->arch.apic_map_lock);
181 kvm_for_each_vcpu(i, vcpu, kvm)
182 if (kvm_apic_present(vcpu))
183 max_id = max(max_id, kvm_x2apic_id(vcpu->arch.apic));
185 new = kvzalloc(sizeof(struct kvm_apic_map) +
186 sizeof(struct kvm_lapic *) * ((u64)max_id + 1),
192 new->max_apic_id = max_id;
194 kvm_for_each_vcpu(i, vcpu, kvm) {
195 struct kvm_lapic *apic = vcpu->arch.apic;
196 struct kvm_lapic **cluster;
202 if (!kvm_apic_present(vcpu))
205 xapic_id = kvm_xapic_id(apic);
206 x2apic_id = kvm_x2apic_id(apic);
208 /* Hotplug hack: see kvm_apic_match_physical_addr(), ... */
209 if ((apic_x2apic_mode(apic) || x2apic_id > 0xff) &&
210 x2apic_id <= new->max_apic_id)
211 new->phys_map[x2apic_id] = apic;
213 * ... xAPIC ID of VCPUs with APIC ID > 0xff will wrap-around,
214 * prevent them from masking VCPUs with APIC ID <= 0xff.
216 if (!apic_x2apic_mode(apic) && !new->phys_map[xapic_id])
217 new->phys_map[xapic_id] = apic;
219 if (!kvm_apic_sw_enabled(apic))
222 ldr = kvm_lapic_get_reg(apic, APIC_LDR);
224 if (apic_x2apic_mode(apic)) {
225 new->mode |= KVM_APIC_MODE_X2APIC;
227 ldr = GET_APIC_LOGICAL_ID(ldr);
228 if (kvm_lapic_get_reg(apic, APIC_DFR) == APIC_DFR_FLAT)
229 new->mode |= KVM_APIC_MODE_XAPIC_FLAT;
231 new->mode |= KVM_APIC_MODE_XAPIC_CLUSTER;
234 if (!kvm_apic_map_get_logical_dest(new, ldr, &cluster, &mask))
238 cluster[ffs(mask) - 1] = apic;
241 old = rcu_dereference_protected(kvm->arch.apic_map,
242 lockdep_is_held(&kvm->arch.apic_map_lock));
243 rcu_assign_pointer(kvm->arch.apic_map, new);
244 mutex_unlock(&kvm->arch.apic_map_lock);
247 call_rcu(&old->rcu, kvm_apic_map_free);
249 kvm_make_scan_ioapic_request(kvm);
252 static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
254 bool enabled = val & APIC_SPIV_APIC_ENABLED;
256 kvm_lapic_set_reg(apic, APIC_SPIV, val);
258 if (enabled != apic->sw_enabled) {
259 apic->sw_enabled = enabled;
261 static_key_slow_dec_deferred(&apic_sw_disabled);
263 static_key_slow_inc(&apic_sw_disabled.key);
265 recalculate_apic_map(apic->vcpu->kvm);
269 static inline void kvm_apic_set_xapic_id(struct kvm_lapic *apic, u8 id)
271 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
272 recalculate_apic_map(apic->vcpu->kvm);
275 static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
277 kvm_lapic_set_reg(apic, APIC_LDR, id);
278 recalculate_apic_map(apic->vcpu->kvm);
281 static inline u32 kvm_apic_calc_x2apic_ldr(u32 id)
283 return ((id >> 4) << 16) | (1 << (id & 0xf));
286 static inline void kvm_apic_set_x2apic_id(struct kvm_lapic *apic, u32 id)
288 u32 ldr = kvm_apic_calc_x2apic_ldr(id);
290 WARN_ON_ONCE(id != apic->vcpu->vcpu_id);
292 kvm_lapic_set_reg(apic, APIC_ID, id);
293 kvm_lapic_set_reg(apic, APIC_LDR, ldr);
294 recalculate_apic_map(apic->vcpu->kvm);
297 static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
299 return !(kvm_lapic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
302 static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
304 return kvm_lapic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
307 static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
309 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
312 static inline int apic_lvtt_period(struct kvm_lapic *apic)
314 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
317 static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
319 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
322 static inline int apic_lvt_nmi_mode(u32 lvt_val)
324 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
327 void kvm_apic_set_version(struct kvm_vcpu *vcpu)
329 struct kvm_lapic *apic = vcpu->arch.apic;
330 struct kvm_cpuid_entry2 *feat;
331 u32 v = APIC_VERSION;
333 if (!lapic_in_kernel(vcpu))
337 * KVM emulates 82093AA datasheet (with in-kernel IOAPIC implementation)
338 * which doesn't have EOI register; Some buggy OSes (e.g. Windows with
339 * Hyper-V role) disable EOI broadcast in lapic not checking for IOAPIC
340 * version first and level-triggered interrupts never get EOIed in
343 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
344 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))) &&
345 !ioapic_in_kernel(vcpu->kvm))
346 v |= APIC_LVR_DIRECTED_EOI;
347 kvm_lapic_set_reg(apic, APIC_LVR, v);
350 static const unsigned int apic_lvt_mask[KVM_APIC_LVT_NUM] = {
351 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
352 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
353 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
354 LINT_MASK, LINT_MASK, /* LVT0-1 */
355 LVT_MASK /* LVTERR */
358 static int find_highest_vector(void *bitmap)
363 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
364 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
365 reg = bitmap + REG_POS(vec);
367 return __fls(*reg) + vec;
373 static u8 count_vectors(void *bitmap)
379 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
380 reg = bitmap + REG_POS(vec);
381 count += hweight32(*reg);
387 bool __kvm_apic_update_irr(u32 *pir, void *regs, int *max_irr)
390 u32 pir_val, irr_val, prev_irr_val;
393 max_updated_irr = -1;
396 for (i = vec = 0; i <= 7; i++, vec += 32) {
397 pir_val = READ_ONCE(pir[i]);
398 irr_val = *((u32 *)(regs + APIC_IRR + i * 0x10));
400 prev_irr_val = irr_val;
401 irr_val |= xchg(&pir[i], 0);
402 *((u32 *)(regs + APIC_IRR + i * 0x10)) = irr_val;
403 if (prev_irr_val != irr_val) {
405 __fls(irr_val ^ prev_irr_val) + vec;
409 *max_irr = __fls(irr_val) + vec;
412 return ((max_updated_irr != -1) &&
413 (max_updated_irr == *max_irr));
415 EXPORT_SYMBOL_GPL(__kvm_apic_update_irr);
417 bool kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir, int *max_irr)
419 struct kvm_lapic *apic = vcpu->arch.apic;
421 return __kvm_apic_update_irr(pir, apic->regs, max_irr);
423 EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
425 static inline int apic_search_irr(struct kvm_lapic *apic)
427 return find_highest_vector(apic->regs + APIC_IRR);
430 static inline int apic_find_highest_irr(struct kvm_lapic *apic)
435 * Note that irr_pending is just a hint. It will be always
436 * true with virtual interrupt delivery enabled.
438 if (!apic->irr_pending)
441 result = apic_search_irr(apic);
442 ASSERT(result == -1 || result >= 16);
447 static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
449 struct kvm_vcpu *vcpu;
453 if (unlikely(vcpu->arch.apicv_active)) {
454 /* need to update RVI */
455 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
456 kvm_x86_ops->hwapic_irr_update(vcpu,
457 apic_find_highest_irr(apic));
459 apic->irr_pending = false;
460 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
461 if (apic_search_irr(apic) != -1)
462 apic->irr_pending = true;
466 static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
468 struct kvm_vcpu *vcpu;
470 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
476 * With APIC virtualization enabled, all caching is disabled
477 * because the processor can modify ISR under the hood. Instead
480 if (unlikely(vcpu->arch.apicv_active))
481 kvm_x86_ops->hwapic_isr_update(vcpu, vec);
484 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
486 * ISR (in service register) bit is set when injecting an interrupt.
487 * The highest vector is injected. Thus the latest bit set matches
488 * the highest bit in ISR.
490 apic->highest_isr_cache = vec;
494 static inline int apic_find_highest_isr(struct kvm_lapic *apic)
499 * Note that isr_count is always 1, and highest_isr_cache
500 * is always -1, with APIC virtualization enabled.
502 if (!apic->isr_count)
504 if (likely(apic->highest_isr_cache != -1))
505 return apic->highest_isr_cache;
507 result = find_highest_vector(apic->regs + APIC_ISR);
508 ASSERT(result == -1 || result >= 16);
513 static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
515 struct kvm_vcpu *vcpu;
516 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
522 * We do get here for APIC virtualization enabled if the guest
523 * uses the Hyper-V APIC enlightenment. In this case we may need
524 * to trigger a new interrupt delivery by writing the SVI field;
525 * on the other hand isr_count and highest_isr_cache are unused
526 * and must be left alone.
528 if (unlikely(vcpu->arch.apicv_active))
529 kvm_x86_ops->hwapic_isr_update(vcpu,
530 apic_find_highest_isr(apic));
533 BUG_ON(apic->isr_count < 0);
534 apic->highest_isr_cache = -1;
538 int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
540 /* This may race with setting of irr in __apic_accept_irq() and
541 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
542 * will cause vmexit immediately and the value will be recalculated
543 * on the next vmentry.
545 return apic_find_highest_irr(vcpu->arch.apic);
547 EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
549 static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
550 int vector, int level, int trig_mode,
551 struct dest_map *dest_map);
553 int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
554 struct dest_map *dest_map)
556 struct kvm_lapic *apic = vcpu->arch.apic;
558 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
559 irq->level, irq->trig_mode, dest_map);
562 int kvm_pv_send_ipi(struct kvm *kvm, unsigned long ipi_bitmap_low,
563 unsigned long ipi_bitmap_high, u32 min,
564 unsigned long icr, int op_64_bit)
567 struct kvm_apic_map *map;
568 struct kvm_vcpu *vcpu;
569 struct kvm_lapic_irq irq = {0};
570 int cluster_size = op_64_bit ? 64 : 32;
573 irq.vector = icr & APIC_VECTOR_MASK;
574 irq.delivery_mode = icr & APIC_MODE_MASK;
575 irq.level = (icr & APIC_INT_ASSERT) != 0;
576 irq.trig_mode = icr & APIC_INT_LEVELTRIG;
578 if (icr & APIC_DEST_MASK)
580 if (icr & APIC_SHORT_MASK)
584 map = rcu_dereference(kvm->arch.apic_map);
586 if (unlikely(!map)) {
591 if (min > map->max_apic_id)
593 /* Bits above cluster_size are masked in the caller. */
594 for_each_set_bit(i, &ipi_bitmap_low,
595 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
596 if (map->phys_map[min + i]) {
597 vcpu = map->phys_map[min + i]->vcpu;
598 count += kvm_apic_set_irq(vcpu, &irq, NULL);
604 if (min > map->max_apic_id)
607 for_each_set_bit(i, &ipi_bitmap_high,
608 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
609 if (map->phys_map[min + i]) {
610 vcpu = map->phys_map[min + i]->vcpu;
611 count += kvm_apic_set_irq(vcpu, &irq, NULL);
620 static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
623 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
627 static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
630 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
634 static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
636 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
639 static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
642 if (pv_eoi_get_user(vcpu, &val) < 0)
643 printk(KERN_WARNING "Can't read EOI MSR value: 0x%llx\n",
644 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
648 static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
650 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
651 printk(KERN_WARNING "Can't set EOI MSR value: 0x%llx\n",
652 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
655 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
658 static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
660 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
661 printk(KERN_WARNING "Can't clear EOI MSR value: 0x%llx\n",
662 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
665 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
668 static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
671 if (apic->vcpu->arch.apicv_active)
672 highest_irr = kvm_x86_ops->sync_pir_to_irr(apic->vcpu);
674 highest_irr = apic_find_highest_irr(apic);
675 if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
680 static bool __apic_update_ppr(struct kvm_lapic *apic, u32 *new_ppr)
682 u32 tpr, isrv, ppr, old_ppr;
685 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
686 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
687 isr = apic_find_highest_isr(apic);
688 isrv = (isr != -1) ? isr : 0;
690 if ((tpr & 0xf0) >= (isrv & 0xf0))
697 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
699 return ppr < old_ppr;
702 static void apic_update_ppr(struct kvm_lapic *apic)
706 if (__apic_update_ppr(apic, &ppr) &&
707 apic_has_interrupt_for_ppr(apic, ppr) != -1)
708 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
711 void kvm_apic_update_ppr(struct kvm_vcpu *vcpu)
713 apic_update_ppr(vcpu->arch.apic);
715 EXPORT_SYMBOL_GPL(kvm_apic_update_ppr);
717 static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
719 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
720 apic_update_ppr(apic);
723 static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
725 return mda == (apic_x2apic_mode(apic) ?
726 X2APIC_BROADCAST : APIC_BROADCAST);
729 static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
731 if (kvm_apic_broadcast(apic, mda))
734 if (apic_x2apic_mode(apic))
735 return mda == kvm_x2apic_id(apic);
738 * Hotplug hack: Make LAPIC in xAPIC mode also accept interrupts as if
739 * it were in x2APIC mode. Hotplugged VCPUs start in xAPIC mode and
740 * this allows unique addressing of VCPUs with APIC ID over 0xff.
741 * The 0xff condition is needed because writeable xAPIC ID.
743 if (kvm_x2apic_id(apic) > 0xff && mda == kvm_x2apic_id(apic))
746 return mda == kvm_xapic_id(apic);
749 static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
753 if (kvm_apic_broadcast(apic, mda))
756 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
758 if (apic_x2apic_mode(apic))
759 return ((logical_id >> 16) == (mda >> 16))
760 && (logical_id & mda & 0xffff) != 0;
762 logical_id = GET_APIC_LOGICAL_ID(logical_id);
764 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
766 return (logical_id & mda) != 0;
767 case APIC_DFR_CLUSTER:
768 return ((logical_id >> 4) == (mda >> 4))
769 && (logical_id & mda & 0xf) != 0;
775 /* The KVM local APIC implementation has two quirks:
777 * - Real hardware delivers interrupts destined to x2APIC ID > 0xff to LAPICs
778 * in xAPIC mode if the "destination & 0xff" matches its xAPIC ID.
779 * KVM doesn't do that aliasing.
781 * - in-kernel IOAPIC messages have to be delivered directly to
782 * x2APIC, because the kernel does not support interrupt remapping.
783 * In order to support broadcast without interrupt remapping, x2APIC
784 * rewrites the destination of non-IPI messages from APIC_BROADCAST
785 * to X2APIC_BROADCAST.
787 * The broadcast quirk can be disabled with KVM_CAP_X2APIC_API. This is
788 * important when userspace wants to use x2APIC-format MSIs, because
789 * APIC_BROADCAST (0xff) is a legal route for "cluster 0, CPUs 0-7".
791 static u32 kvm_apic_mda(struct kvm_vcpu *vcpu, unsigned int dest_id,
792 struct kvm_lapic *source, struct kvm_lapic *target)
794 bool ipi = source != NULL;
796 if (!vcpu->kvm->arch.x2apic_broadcast_quirk_disabled &&
797 !ipi && dest_id == APIC_BROADCAST && apic_x2apic_mode(target))
798 return X2APIC_BROADCAST;
803 bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
804 int short_hand, unsigned int dest, int dest_mode)
806 struct kvm_lapic *target = vcpu->arch.apic;
807 u32 mda = kvm_apic_mda(vcpu, dest, source, target);
810 switch (short_hand) {
811 case APIC_DEST_NOSHORT:
812 if (dest_mode == APIC_DEST_PHYSICAL)
813 return kvm_apic_match_physical_addr(target, mda);
815 return kvm_apic_match_logical_addr(target, mda);
817 return target == source;
818 case APIC_DEST_ALLINC:
820 case APIC_DEST_ALLBUT:
821 return target != source;
826 EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
828 int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
829 const unsigned long *bitmap, u32 bitmap_size)
834 mod = vector % dest_vcpus;
836 for (i = 0; i <= mod; i++) {
837 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
838 BUG_ON(idx == bitmap_size);
844 static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
846 if (!kvm->arch.disabled_lapic_found) {
847 kvm->arch.disabled_lapic_found = true;
849 "Disabled LAPIC found during irq injection\n");
853 static bool kvm_apic_is_broadcast_dest(struct kvm *kvm, struct kvm_lapic **src,
854 struct kvm_lapic_irq *irq, struct kvm_apic_map *map)
856 if (kvm->arch.x2apic_broadcast_quirk_disabled) {
857 if ((irq->dest_id == APIC_BROADCAST &&
858 map->mode != KVM_APIC_MODE_X2APIC))
860 if (irq->dest_id == X2APIC_BROADCAST)
863 bool x2apic_ipi = src && *src && apic_x2apic_mode(*src);
864 if (irq->dest_id == (x2apic_ipi ?
865 X2APIC_BROADCAST : APIC_BROADCAST))
872 /* Return true if the interrupt can be handled by using *bitmap as index mask
873 * for valid destinations in *dst array.
874 * Return false if kvm_apic_map_get_dest_lapic did nothing useful.
875 * Note: we may have zero kvm_lapic destinations when we return true, which
876 * means that the interrupt should be dropped. In this case, *bitmap would be
877 * zero and *dst undefined.
879 static inline bool kvm_apic_map_get_dest_lapic(struct kvm *kvm,
880 struct kvm_lapic **src, struct kvm_lapic_irq *irq,
881 struct kvm_apic_map *map, struct kvm_lapic ***dst,
882 unsigned long *bitmap)
886 if (irq->shorthand == APIC_DEST_SELF && src) {
890 } else if (irq->shorthand)
893 if (!map || kvm_apic_is_broadcast_dest(kvm, src, irq, map))
896 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
897 if (irq->dest_id > map->max_apic_id) {
900 u32 dest_id = array_index_nospec(irq->dest_id, map->max_apic_id + 1);
901 *dst = &map->phys_map[dest_id];
908 if (!kvm_apic_map_get_logical_dest(map, irq->dest_id, dst,
912 if (!kvm_lowest_prio_delivery(irq))
915 if (!kvm_vector_hashing_enabled()) {
917 for_each_set_bit(i, bitmap, 16) {
922 else if (kvm_apic_compare_prio((*dst)[i]->vcpu,
923 (*dst)[lowest]->vcpu) < 0)
930 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap),
933 if (!(*dst)[lowest]) {
934 kvm_apic_disabled_lapic_found(kvm);
940 *bitmap = (lowest >= 0) ? 1 << lowest : 0;
945 bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
946 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
948 struct kvm_apic_map *map;
949 unsigned long bitmap;
950 struct kvm_lapic **dst = NULL;
956 if (irq->shorthand == APIC_DEST_SELF) {
957 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
962 map = rcu_dereference(kvm->arch.apic_map);
964 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dst, &bitmap);
967 for_each_set_bit(i, &bitmap, 16) {
970 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
979 * This routine tries to handler interrupts in posted mode, here is how
980 * it deals with different cases:
981 * - For single-destination interrupts, handle it in posted mode
982 * - Else if vector hashing is enabled and it is a lowest-priority
983 * interrupt, handle it in posted mode and use the following mechanism
984 * to find the destinaiton vCPU.
985 * 1. For lowest-priority interrupts, store all the possible
986 * destination vCPUs in an array.
987 * 2. Use "guest vector % max number of destination vCPUs" to find
988 * the right destination vCPU in the array for the lowest-priority
990 * - Otherwise, use remapped mode to inject the interrupt.
992 bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
993 struct kvm_vcpu **dest_vcpu)
995 struct kvm_apic_map *map;
996 unsigned long bitmap;
997 struct kvm_lapic **dst = NULL;
1004 map = rcu_dereference(kvm->arch.apic_map);
1006 if (kvm_apic_map_get_dest_lapic(kvm, NULL, irq, map, &dst, &bitmap) &&
1007 hweight16(bitmap) == 1) {
1008 unsigned long i = find_first_bit(&bitmap, 16);
1011 *dest_vcpu = dst[i]->vcpu;
1021 * Add a pending IRQ into lapic.
1022 * Return 1 if successfully added and 0 if discarded.
1024 static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
1025 int vector, int level, int trig_mode,
1026 struct dest_map *dest_map)
1029 struct kvm_vcpu *vcpu = apic->vcpu;
1031 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
1033 switch (delivery_mode) {
1034 case APIC_DM_LOWEST:
1035 vcpu->arch.apic_arb_prio++;
1038 if (unlikely(trig_mode && !level))
1041 /* FIXME add logic for vcpu on reset */
1042 if (unlikely(!apic_enabled(apic)))
1048 __set_bit(vcpu->vcpu_id, dest_map->map);
1049 dest_map->vectors[vcpu->vcpu_id] = vector;
1052 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
1054 kvm_lapic_set_vector(vector,
1055 apic->regs + APIC_TMR);
1057 kvm_lapic_clear_vector(vector,
1058 apic->regs + APIC_TMR);
1061 if (vcpu->arch.apicv_active)
1062 kvm_x86_ops->deliver_posted_interrupt(vcpu, vector);
1064 kvm_lapic_set_irr(vector, apic);
1066 kvm_make_request(KVM_REQ_EVENT, vcpu);
1067 kvm_vcpu_kick(vcpu);
1073 vcpu->arch.pv.pv_unhalted = 1;
1074 kvm_make_request(KVM_REQ_EVENT, vcpu);
1075 kvm_vcpu_kick(vcpu);
1080 kvm_make_request(KVM_REQ_SMI, vcpu);
1081 kvm_vcpu_kick(vcpu);
1086 kvm_inject_nmi(vcpu);
1087 kvm_vcpu_kick(vcpu);
1091 if (!trig_mode || level) {
1093 /* assumes that there are only KVM_APIC_INIT/SIPI */
1094 apic->pending_events = (1UL << KVM_APIC_INIT);
1095 /* make sure pending_events is visible before sending
1098 kvm_make_request(KVM_REQ_EVENT, vcpu);
1099 kvm_vcpu_kick(vcpu);
1103 case APIC_DM_STARTUP:
1105 apic->sipi_vector = vector;
1106 /* make sure sipi_vector is visible for the receiver */
1108 set_bit(KVM_APIC_SIPI, &apic->pending_events);
1109 kvm_make_request(KVM_REQ_EVENT, vcpu);
1110 kvm_vcpu_kick(vcpu);
1113 case APIC_DM_EXTINT:
1115 * Should only be called by kvm_apic_local_deliver() with LVT0,
1116 * before NMI watchdog was enabled. Already handled by
1117 * kvm_apic_accept_pic_intr().
1122 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
1129 int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
1131 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
1134 static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
1136 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
1139 static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
1143 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
1144 if (!kvm_ioapic_handles_vector(apic, vector))
1147 /* Request a KVM exit to inform the userspace IOAPIC. */
1148 if (irqchip_split(apic->vcpu->kvm)) {
1149 apic->vcpu->arch.pending_ioapic_eoi = vector;
1150 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1154 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1155 trigger_mode = IOAPIC_LEVEL_TRIG;
1157 trigger_mode = IOAPIC_EDGE_TRIG;
1159 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
1162 static int apic_set_eoi(struct kvm_lapic *apic)
1164 int vector = apic_find_highest_isr(apic);
1166 trace_kvm_eoi(apic, vector);
1169 * Not every write EOI will has corresponding ISR,
1170 * one example is when Kernel check timer on setup_IO_APIC
1175 apic_clear_isr(vector, apic);
1176 apic_update_ppr(apic);
1178 if (test_bit(vector, vcpu_to_synic(apic->vcpu)->vec_bitmap))
1179 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1181 kvm_ioapic_send_eoi(apic, vector);
1182 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1187 * this interface assumes a trap-like exit, which has already finished
1188 * desired side effect including vISR and vPPR update.
1190 void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1192 struct kvm_lapic *apic = vcpu->arch.apic;
1194 trace_kvm_eoi(apic, vector);
1196 kvm_ioapic_send_eoi(apic, vector);
1197 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1199 EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1201 static void apic_send_ipi(struct kvm_lapic *apic, u32 icr_low, u32 icr_high)
1203 struct kvm_lapic_irq irq;
1205 irq.vector = icr_low & APIC_VECTOR_MASK;
1206 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1207 irq.dest_mode = icr_low & APIC_DEST_MASK;
1208 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
1209 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1210 irq.shorthand = icr_low & APIC_SHORT_MASK;
1211 irq.msi_redir_hint = false;
1212 if (apic_x2apic_mode(apic))
1213 irq.dest_id = icr_high;
1215 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
1217 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1219 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
1222 static u32 apic_get_tmcct(struct kvm_lapic *apic)
1224 ktime_t remaining, now;
1228 ASSERT(apic != NULL);
1230 /* if initial count is 0, current count should also be 0 */
1231 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
1232 apic->lapic_timer.period == 0)
1236 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1237 if (ktime_to_ns(remaining) < 0)
1240 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1241 tmcct = div64_u64(ns,
1242 (APIC_BUS_CYCLE_NS * apic->divide_count));
1247 static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1249 struct kvm_vcpu *vcpu = apic->vcpu;
1250 struct kvm_run *run = vcpu->run;
1252 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
1253 run->tpr_access.rip = kvm_rip_read(vcpu);
1254 run->tpr_access.is_write = write;
1257 static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1259 if (apic->vcpu->arch.tpr_access_reporting)
1260 __report_tpr_access(apic, write);
1263 static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1267 if (offset >= LAPIC_MMIO_LENGTH)
1274 case APIC_TMCCT: /* Timer CCR */
1275 if (apic_lvtt_tscdeadline(apic))
1278 val = apic_get_tmcct(apic);
1281 apic_update_ppr(apic);
1282 val = kvm_lapic_get_reg(apic, offset);
1285 report_tpr_access(apic, false);
1288 val = kvm_lapic_get_reg(apic, offset);
1295 static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1297 return container_of(dev, struct kvm_lapic, dev);
1300 #define APIC_REG_MASK(reg) (1ull << ((reg) >> 4))
1301 #define APIC_REGS_MASK(first, count) \
1302 (APIC_REG_MASK(first) * ((1ull << (count)) - 1))
1304 int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
1307 unsigned char alignment = offset & 0xf;
1309 /* this bitmask has a bit cleared for each reserved register */
1310 u64 valid_reg_mask =
1311 APIC_REG_MASK(APIC_ID) |
1312 APIC_REG_MASK(APIC_LVR) |
1313 APIC_REG_MASK(APIC_TASKPRI) |
1314 APIC_REG_MASK(APIC_PROCPRI) |
1315 APIC_REG_MASK(APIC_LDR) |
1316 APIC_REG_MASK(APIC_DFR) |
1317 APIC_REG_MASK(APIC_SPIV) |
1318 APIC_REGS_MASK(APIC_ISR, APIC_ISR_NR) |
1319 APIC_REGS_MASK(APIC_TMR, APIC_ISR_NR) |
1320 APIC_REGS_MASK(APIC_IRR, APIC_ISR_NR) |
1321 APIC_REG_MASK(APIC_ESR) |
1322 APIC_REG_MASK(APIC_ICR) |
1323 APIC_REG_MASK(APIC_ICR2) |
1324 APIC_REG_MASK(APIC_LVTT) |
1325 APIC_REG_MASK(APIC_LVTTHMR) |
1326 APIC_REG_MASK(APIC_LVTPC) |
1327 APIC_REG_MASK(APIC_LVT0) |
1328 APIC_REG_MASK(APIC_LVT1) |
1329 APIC_REG_MASK(APIC_LVTERR) |
1330 APIC_REG_MASK(APIC_TMICT) |
1331 APIC_REG_MASK(APIC_TMCCT) |
1332 APIC_REG_MASK(APIC_TDCR);
1334 /* ARBPRI is not valid on x2APIC */
1335 if (!apic_x2apic_mode(apic))
1336 valid_reg_mask |= APIC_REG_MASK(APIC_ARBPRI);
1338 if (offset > 0x3f0 || !(valid_reg_mask & APIC_REG_MASK(offset)))
1341 result = __apic_read(apic, offset & ~0xf);
1343 trace_kvm_apic_read(offset, result);
1349 memcpy(data, (char *)&result + alignment, len);
1352 printk(KERN_ERR "Local APIC read with len = %x, "
1353 "should be 1,2, or 4 instead\n", len);
1358 EXPORT_SYMBOL_GPL(kvm_lapic_reg_read);
1360 static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1362 return addr >= apic->base_address &&
1363 addr < apic->base_address + LAPIC_MMIO_LENGTH;
1366 static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
1367 gpa_t address, int len, void *data)
1369 struct kvm_lapic *apic = to_lapic(this);
1370 u32 offset = address - apic->base_address;
1372 if (!apic_mmio_in_range(apic, address))
1375 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1376 if (!kvm_check_has_quirk(vcpu->kvm,
1377 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1380 memset(data, 0xff, len);
1384 kvm_lapic_reg_read(apic, offset, len, data);
1389 static void update_divide_count(struct kvm_lapic *apic)
1391 u32 tmp1, tmp2, tdcr;
1393 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
1395 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
1396 apic->divide_count = 0x1 << (tmp2 & 0x7);
1399 static void limit_periodic_timer_frequency(struct kvm_lapic *apic)
1402 * Do not allow the guest to program periodic timers with small
1403 * interval, since the hrtimers are not throttled by the host
1406 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1407 s64 min_period = min_timer_period_us * 1000LL;
1409 if (apic->lapic_timer.period < min_period) {
1410 pr_info_ratelimited(
1411 "kvm: vcpu %i: requested %lld ns "
1412 "lapic timer period limited to %lld ns\n",
1413 apic->vcpu->vcpu_id,
1414 apic->lapic_timer.period, min_period);
1415 apic->lapic_timer.period = min_period;
1420 static void apic_update_lvtt(struct kvm_lapic *apic)
1422 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
1423 apic->lapic_timer.timer_mode_mask;
1425 if (apic->lapic_timer.timer_mode != timer_mode) {
1426 if (apic_lvtt_tscdeadline(apic) != (timer_mode ==
1427 APIC_LVT_TIMER_TSCDEADLINE)) {
1428 hrtimer_cancel(&apic->lapic_timer.timer);
1429 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
1430 apic->lapic_timer.period = 0;
1431 apic->lapic_timer.tscdeadline = 0;
1433 apic->lapic_timer.timer_mode = timer_mode;
1434 limit_periodic_timer_frequency(apic);
1439 * On APICv, this test will cause a busy wait
1440 * during a higher-priority task.
1443 static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1445 struct kvm_lapic *apic = vcpu->arch.apic;
1446 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
1448 if (kvm_apic_hw_enabled(apic)) {
1449 int vec = reg & APIC_VECTOR_MASK;
1450 void *bitmap = apic->regs + APIC_ISR;
1452 if (vcpu->arch.apicv_active)
1453 bitmap = apic->regs + APIC_IRR;
1455 if (apic_test_vector(vec, bitmap))
1461 static inline void __wait_lapic_expire(struct kvm_vcpu *vcpu, u64 guest_cycles)
1463 u64 timer_advance_ns = vcpu->arch.apic->lapic_timer.timer_advance_ns;
1466 * If the guest TSC is running at a different ratio than the host, then
1467 * convert the delay to nanoseconds to achieve an accurate delay. Note
1468 * that __delay() uses delay_tsc whenever the hardware has TSC, thus
1469 * always for VMX enabled hardware.
1471 if (vcpu->arch.tsc_scaling_ratio == kvm_default_tsc_scaling_ratio) {
1472 __delay(min(guest_cycles,
1473 nsec_to_cycles(vcpu, timer_advance_ns)));
1475 u64 delay_ns = guest_cycles * 1000000ULL;
1476 do_div(delay_ns, vcpu->arch.virtual_tsc_khz);
1477 ndelay(min_t(u32, delay_ns, timer_advance_ns));
1481 static inline void adjust_lapic_timer_advance(struct kvm_vcpu *vcpu,
1482 s64 advance_expire_delta)
1484 struct kvm_lapic *apic = vcpu->arch.apic;
1485 u32 timer_advance_ns = apic->lapic_timer.timer_advance_ns;
1489 if (advance_expire_delta < 0) {
1490 ns = -advance_expire_delta * 1000000ULL;
1491 do_div(ns, vcpu->arch.virtual_tsc_khz);
1492 timer_advance_ns -= min((u32)ns,
1493 timer_advance_ns / LAPIC_TIMER_ADVANCE_ADJUST_STEP);
1496 ns = advance_expire_delta * 1000000ULL;
1497 do_div(ns, vcpu->arch.virtual_tsc_khz);
1498 timer_advance_ns += min((u32)ns,
1499 timer_advance_ns / LAPIC_TIMER_ADVANCE_ADJUST_STEP);
1502 if (abs(advance_expire_delta) < LAPIC_TIMER_ADVANCE_ADJUST_DONE)
1503 apic->lapic_timer.timer_advance_adjust_done = true;
1504 if (unlikely(timer_advance_ns > 5000)) {
1505 timer_advance_ns = LAPIC_TIMER_ADVANCE_ADJUST_INIT;
1506 apic->lapic_timer.timer_advance_adjust_done = false;
1508 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
1511 static void __kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1513 struct kvm_lapic *apic = vcpu->arch.apic;
1514 u64 guest_tsc, tsc_deadline;
1516 if (apic->lapic_timer.expired_tscdeadline == 0)
1519 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1520 apic->lapic_timer.expired_tscdeadline = 0;
1521 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1522 apic->lapic_timer.advance_expire_delta = guest_tsc - tsc_deadline;
1524 if (guest_tsc < tsc_deadline)
1525 __wait_lapic_expire(vcpu, tsc_deadline - guest_tsc);
1527 if (unlikely(!apic->lapic_timer.timer_advance_adjust_done))
1528 adjust_lapic_timer_advance(vcpu, apic->lapic_timer.advance_expire_delta);
1531 void kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1533 if (lapic_timer_int_injected(vcpu))
1534 __kvm_wait_lapic_expire(vcpu);
1536 EXPORT_SYMBOL_GPL(kvm_wait_lapic_expire);
1538 static void kvm_apic_inject_pending_timer_irqs(struct kvm_lapic *apic)
1540 struct kvm_timer *ktimer = &apic->lapic_timer;
1542 kvm_apic_local_deliver(apic, APIC_LVTT);
1543 if (apic_lvtt_tscdeadline(apic))
1544 ktimer->tscdeadline = 0;
1545 if (apic_lvtt_oneshot(apic)) {
1546 ktimer->tscdeadline = 0;
1547 ktimer->target_expiration = 0;
1551 static void apic_timer_expired(struct kvm_lapic *apic)
1553 struct kvm_vcpu *vcpu = apic->vcpu;
1554 struct kvm_timer *ktimer = &apic->lapic_timer;
1556 if (atomic_read(&apic->lapic_timer.pending))
1559 if (apic_lvtt_tscdeadline(apic) || ktimer->hv_timer_in_use)
1560 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1562 if (kvm_use_posted_timer_interrupt(apic->vcpu)) {
1563 if (apic->lapic_timer.timer_advance_ns)
1564 __kvm_wait_lapic_expire(vcpu);
1565 kvm_apic_inject_pending_timer_irqs(apic);
1569 atomic_inc(&apic->lapic_timer.pending);
1570 kvm_set_pending_timer(vcpu);
1573 static void start_sw_tscdeadline(struct kvm_lapic *apic)
1575 struct kvm_timer *ktimer = &apic->lapic_timer;
1576 u64 guest_tsc, tscdeadline = ktimer->tscdeadline;
1579 struct kvm_vcpu *vcpu = apic->vcpu;
1580 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
1581 unsigned long flags;
1584 if (unlikely(!tscdeadline || !this_tsc_khz))
1587 local_irq_save(flags);
1590 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1592 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1593 do_div(ns, this_tsc_khz);
1595 if (likely(tscdeadline > guest_tsc) &&
1596 likely(ns > apic->lapic_timer.timer_advance_ns)) {
1597 expire = ktime_add_ns(now, ns);
1598 expire = ktime_sub_ns(expire, ktimer->timer_advance_ns);
1599 hrtimer_start(&ktimer->timer, expire, HRTIMER_MODE_ABS);
1601 apic_timer_expired(apic);
1603 local_irq_restore(flags);
1606 static void update_target_expiration(struct kvm_lapic *apic, uint32_t old_divisor)
1608 ktime_t now, remaining;
1609 u64 ns_remaining_old, ns_remaining_new;
1611 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
1612 * APIC_BUS_CYCLE_NS * apic->divide_count;
1613 limit_periodic_timer_frequency(apic);
1616 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1617 if (ktime_to_ns(remaining) < 0)
1620 ns_remaining_old = ktime_to_ns(remaining);
1621 ns_remaining_new = mul_u64_u32_div(ns_remaining_old,
1622 apic->divide_count, old_divisor);
1624 apic->lapic_timer.tscdeadline +=
1625 nsec_to_cycles(apic->vcpu, ns_remaining_new) -
1626 nsec_to_cycles(apic->vcpu, ns_remaining_old);
1627 apic->lapic_timer.target_expiration = ktime_add_ns(now, ns_remaining_new);
1630 static bool set_target_expiration(struct kvm_lapic *apic)
1636 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
1637 * APIC_BUS_CYCLE_NS * apic->divide_count;
1639 if (!apic->lapic_timer.period) {
1640 apic->lapic_timer.tscdeadline = 0;
1644 limit_periodic_timer_frequency(apic);
1646 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1647 nsec_to_cycles(apic->vcpu, apic->lapic_timer.period);
1648 apic->lapic_timer.target_expiration = ktime_add_ns(now, apic->lapic_timer.period);
1653 static void advance_periodic_target_expiration(struct kvm_lapic *apic)
1655 ktime_t now = ktime_get();
1660 * Synchronize both deadlines to the same time source or
1661 * differences in the periods (caused by differences in the
1662 * underlying clocks or numerical approximation errors) will
1663 * cause the two to drift apart over time as the errors
1666 apic->lapic_timer.target_expiration =
1667 ktime_add_ns(apic->lapic_timer.target_expiration,
1668 apic->lapic_timer.period);
1669 delta = ktime_sub(apic->lapic_timer.target_expiration, now);
1670 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1671 nsec_to_cycles(apic->vcpu, delta);
1674 static void start_sw_period(struct kvm_lapic *apic)
1676 if (!apic->lapic_timer.period)
1679 if (ktime_after(ktime_get(),
1680 apic->lapic_timer.target_expiration)) {
1681 apic_timer_expired(apic);
1683 if (apic_lvtt_oneshot(apic))
1686 advance_periodic_target_expiration(apic);
1689 hrtimer_start(&apic->lapic_timer.timer,
1690 apic->lapic_timer.target_expiration,
1694 bool kvm_lapic_hv_timer_in_use(struct kvm_vcpu *vcpu)
1696 if (!lapic_in_kernel(vcpu))
1699 return vcpu->arch.apic->lapic_timer.hv_timer_in_use;
1701 EXPORT_SYMBOL_GPL(kvm_lapic_hv_timer_in_use);
1703 static void cancel_hv_timer(struct kvm_lapic *apic)
1705 WARN_ON(preemptible());
1706 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1707 kvm_x86_ops->cancel_hv_timer(apic->vcpu);
1708 apic->lapic_timer.hv_timer_in_use = false;
1711 static bool start_hv_timer(struct kvm_lapic *apic)
1713 struct kvm_timer *ktimer = &apic->lapic_timer;
1714 struct kvm_vcpu *vcpu = apic->vcpu;
1717 WARN_ON(preemptible());
1718 if (!kvm_x86_ops->set_hv_timer)
1721 if (!ktimer->tscdeadline)
1724 if (kvm_x86_ops->set_hv_timer(vcpu, ktimer->tscdeadline, &expired))
1727 ktimer->hv_timer_in_use = true;
1728 hrtimer_cancel(&ktimer->timer);
1731 * To simplify handling the periodic timer, leave the hv timer running
1732 * even if the deadline timer has expired, i.e. rely on the resulting
1733 * VM-Exit to recompute the periodic timer's target expiration.
1735 if (!apic_lvtt_period(apic)) {
1737 * Cancel the hv timer if the sw timer fired while the hv timer
1738 * was being programmed, or if the hv timer itself expired.
1740 if (atomic_read(&ktimer->pending)) {
1741 cancel_hv_timer(apic);
1742 } else if (expired) {
1743 apic_timer_expired(apic);
1744 cancel_hv_timer(apic);
1748 trace_kvm_hv_timer_state(vcpu->vcpu_id, ktimer->hv_timer_in_use);
1753 static void start_sw_timer(struct kvm_lapic *apic)
1755 struct kvm_timer *ktimer = &apic->lapic_timer;
1757 WARN_ON(preemptible());
1758 if (apic->lapic_timer.hv_timer_in_use)
1759 cancel_hv_timer(apic);
1760 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
1763 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1764 start_sw_period(apic);
1765 else if (apic_lvtt_tscdeadline(apic))
1766 start_sw_tscdeadline(apic);
1767 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, false);
1770 static void restart_apic_timer(struct kvm_lapic *apic)
1774 if (!apic_lvtt_period(apic) && atomic_read(&apic->lapic_timer.pending))
1777 if (!start_hv_timer(apic))
1778 start_sw_timer(apic);
1783 void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
1785 struct kvm_lapic *apic = vcpu->arch.apic;
1788 /* If the preempt notifier has already run, it also called apic_timer_expired */
1789 if (!apic->lapic_timer.hv_timer_in_use)
1791 WARN_ON(swait_active(&vcpu->wq));
1792 cancel_hv_timer(apic);
1793 apic_timer_expired(apic);
1795 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1796 advance_periodic_target_expiration(apic);
1797 restart_apic_timer(apic);
1802 EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
1804 void kvm_lapic_switch_to_hv_timer(struct kvm_vcpu *vcpu)
1806 restart_apic_timer(vcpu->arch.apic);
1808 EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_hv_timer);
1810 void kvm_lapic_switch_to_sw_timer(struct kvm_vcpu *vcpu)
1812 struct kvm_lapic *apic = vcpu->arch.apic;
1815 /* Possibly the TSC deadline timer is not enabled yet */
1816 if (apic->lapic_timer.hv_timer_in_use)
1817 start_sw_timer(apic);
1820 EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_sw_timer);
1822 void kvm_lapic_restart_hv_timer(struct kvm_vcpu *vcpu)
1824 struct kvm_lapic *apic = vcpu->arch.apic;
1826 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1827 restart_apic_timer(apic);
1830 static void start_apic_timer(struct kvm_lapic *apic)
1832 atomic_set(&apic->lapic_timer.pending, 0);
1834 if ((apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1835 && !set_target_expiration(apic))
1838 restart_apic_timer(apic);
1841 static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1843 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
1845 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
1846 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
1847 if (lvt0_in_nmi_mode) {
1848 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1850 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1854 int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
1858 trace_kvm_apic_write(reg, val);
1861 case APIC_ID: /* Local APIC ID */
1862 if (!apic_x2apic_mode(apic))
1863 kvm_apic_set_xapic_id(apic, val >> 24);
1869 report_tpr_access(apic, true);
1870 apic_set_tpr(apic, val & 0xff);
1878 if (!apic_x2apic_mode(apic))
1879 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
1885 if (!apic_x2apic_mode(apic)) {
1886 kvm_lapic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
1887 recalculate_apic_map(apic->vcpu->kvm);
1894 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
1895 mask |= APIC_SPIV_DIRECTED_EOI;
1896 apic_set_spiv(apic, val & mask);
1897 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1901 for (i = 0; i < KVM_APIC_LVT_NUM; i++) {
1902 lvt_val = kvm_lapic_get_reg(apic,
1903 APIC_LVTT + 0x10 * i);
1904 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i,
1905 lvt_val | APIC_LVT_MASKED);
1907 apic_update_lvtt(apic);
1908 atomic_set(&apic->lapic_timer.pending, 0);
1914 /* No delay here, so we always clear the pending bit */
1916 apic_send_ipi(apic, val, kvm_lapic_get_reg(apic, APIC_ICR2));
1917 kvm_lapic_set_reg(apic, APIC_ICR, val);
1921 if (!apic_x2apic_mode(apic))
1923 kvm_lapic_set_reg(apic, APIC_ICR2, val);
1927 apic_manage_nmi_watchdog(apic, val);
1933 /* TODO: Check vector */
1934 if (!kvm_apic_sw_enabled(apic))
1935 val |= APIC_LVT_MASKED;
1937 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
1938 kvm_lapic_set_reg(apic, reg, val);
1943 if (!kvm_apic_sw_enabled(apic))
1944 val |= APIC_LVT_MASKED;
1945 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
1946 kvm_lapic_set_reg(apic, APIC_LVTT, val);
1947 apic_update_lvtt(apic);
1951 if (apic_lvtt_tscdeadline(apic))
1954 hrtimer_cancel(&apic->lapic_timer.timer);
1955 kvm_lapic_set_reg(apic, APIC_TMICT, val);
1956 start_apic_timer(apic);
1960 uint32_t old_divisor = apic->divide_count;
1962 kvm_lapic_set_reg(apic, APIC_TDCR, val);
1963 update_divide_count(apic);
1964 if (apic->divide_count != old_divisor &&
1965 apic->lapic_timer.period) {
1966 hrtimer_cancel(&apic->lapic_timer.timer);
1967 update_target_expiration(apic, old_divisor);
1968 restart_apic_timer(apic);
1973 if (apic_x2apic_mode(apic) && val != 0)
1978 if (apic_x2apic_mode(apic)) {
1979 kvm_lapic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1990 EXPORT_SYMBOL_GPL(kvm_lapic_reg_write);
1992 static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
1993 gpa_t address, int len, const void *data)
1995 struct kvm_lapic *apic = to_lapic(this);
1996 unsigned int offset = address - apic->base_address;
1999 if (!apic_mmio_in_range(apic, address))
2002 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
2003 if (!kvm_check_has_quirk(vcpu->kvm,
2004 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
2011 * APIC register must be aligned on 128-bits boundary.
2012 * 32/64/128 bits registers must be accessed thru 32 bits.
2015 if (len != 4 || (offset & 0xf))
2020 kvm_lapic_reg_write(apic, offset & 0xff0, val);
2025 void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
2027 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
2029 EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
2031 /* emulate APIC access in a trap manner */
2032 void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
2036 /* hw has done the conditional check and inst decode */
2039 kvm_lapic_reg_read(vcpu->arch.apic, offset, 4, &val);
2041 /* TODO: optimize to just emulate side effect w/o one more write */
2042 kvm_lapic_reg_write(vcpu->arch.apic, offset, val);
2044 EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
2046 void kvm_free_lapic(struct kvm_vcpu *vcpu)
2048 struct kvm_lapic *apic = vcpu->arch.apic;
2050 if (!vcpu->arch.apic)
2053 hrtimer_cancel(&apic->lapic_timer.timer);
2055 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
2056 static_key_slow_dec_deferred(&apic_hw_disabled);
2058 if (!apic->sw_enabled)
2059 static_key_slow_dec_deferred(&apic_sw_disabled);
2062 free_page((unsigned long)apic->regs);
2068 *----------------------------------------------------------------------
2070 *----------------------------------------------------------------------
2072 u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
2074 struct kvm_lapic *apic = vcpu->arch.apic;
2076 if (!lapic_in_kernel(vcpu) ||
2077 !apic_lvtt_tscdeadline(apic))
2080 return apic->lapic_timer.tscdeadline;
2083 void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
2085 struct kvm_lapic *apic = vcpu->arch.apic;
2087 if (!lapic_in_kernel(vcpu) || apic_lvtt_oneshot(apic) ||
2088 apic_lvtt_period(apic))
2091 hrtimer_cancel(&apic->lapic_timer.timer);
2092 apic->lapic_timer.tscdeadline = data;
2093 start_apic_timer(apic);
2096 void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
2098 struct kvm_lapic *apic = vcpu->arch.apic;
2100 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
2101 | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4));
2104 u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
2108 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
2110 return (tpr & 0xf0) >> 4;
2113 void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
2115 u64 old_value = vcpu->arch.apic_base;
2116 struct kvm_lapic *apic = vcpu->arch.apic;
2119 value |= MSR_IA32_APICBASE_BSP;
2121 vcpu->arch.apic_base = value;
2123 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE)
2124 kvm_update_cpuid(vcpu);
2129 /* update jump label if enable bit changes */
2130 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
2131 if (value & MSR_IA32_APICBASE_ENABLE) {
2132 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
2133 static_key_slow_dec_deferred(&apic_hw_disabled);
2135 static_key_slow_inc(&apic_hw_disabled.key);
2136 recalculate_apic_map(vcpu->kvm);
2140 if (((old_value ^ value) & X2APIC_ENABLE) && (value & X2APIC_ENABLE))
2141 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
2143 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE))
2144 kvm_x86_ops->set_virtual_apic_mode(vcpu);
2146 apic->base_address = apic->vcpu->arch.apic_base &
2147 MSR_IA32_APICBASE_BASE;
2149 if ((value & MSR_IA32_APICBASE_ENABLE) &&
2150 apic->base_address != APIC_DEFAULT_PHYS_BASE)
2151 pr_warn_once("APIC base relocation is unsupported by KVM");
2154 void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
2156 struct kvm_lapic *apic = vcpu->arch.apic;
2162 /* Stop the timer in case it's a reset to an active apic */
2163 hrtimer_cancel(&apic->lapic_timer.timer);
2166 kvm_lapic_set_base(vcpu, APIC_DEFAULT_PHYS_BASE |
2167 MSR_IA32_APICBASE_ENABLE);
2168 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
2170 kvm_apic_set_version(apic->vcpu);
2172 for (i = 0; i < KVM_APIC_LVT_NUM; i++)
2173 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
2174 apic_update_lvtt(apic);
2175 if (kvm_vcpu_is_reset_bsp(vcpu) &&
2176 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
2177 kvm_lapic_set_reg(apic, APIC_LVT0,
2178 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
2179 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
2181 kvm_lapic_set_reg(apic, APIC_DFR, 0xffffffffU);
2182 apic_set_spiv(apic, 0xff);
2183 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
2184 if (!apic_x2apic_mode(apic))
2185 kvm_apic_set_ldr(apic, 0);
2186 kvm_lapic_set_reg(apic, APIC_ESR, 0);
2187 kvm_lapic_set_reg(apic, APIC_ICR, 0);
2188 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
2189 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
2190 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
2191 for (i = 0; i < 8; i++) {
2192 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
2193 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
2194 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
2196 apic->irr_pending = vcpu->arch.apicv_active;
2197 apic->isr_count = vcpu->arch.apicv_active ? 1 : 0;
2198 apic->highest_isr_cache = -1;
2199 update_divide_count(apic);
2200 atomic_set(&apic->lapic_timer.pending, 0);
2201 if (kvm_vcpu_is_bsp(vcpu))
2202 kvm_lapic_set_base(vcpu,
2203 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
2204 vcpu->arch.pv_eoi.msr_val = 0;
2205 apic_update_ppr(apic);
2206 if (vcpu->arch.apicv_active) {
2207 kvm_x86_ops->apicv_post_state_restore(vcpu);
2208 kvm_x86_ops->hwapic_irr_update(vcpu, -1);
2209 kvm_x86_ops->hwapic_isr_update(vcpu, -1);
2212 vcpu->arch.apic_arb_prio = 0;
2213 vcpu->arch.apic_attention = 0;
2217 *----------------------------------------------------------------------
2219 *----------------------------------------------------------------------
2222 static bool lapic_is_periodic(struct kvm_lapic *apic)
2224 return apic_lvtt_period(apic);
2227 int apic_has_pending_timer(struct kvm_vcpu *vcpu)
2229 struct kvm_lapic *apic = vcpu->arch.apic;
2231 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
2232 return atomic_read(&apic->lapic_timer.pending);
2237 int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
2239 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
2240 int vector, mode, trig_mode;
2242 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
2243 vector = reg & APIC_VECTOR_MASK;
2244 mode = reg & APIC_MODE_MASK;
2245 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
2246 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
2252 void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
2254 struct kvm_lapic *apic = vcpu->arch.apic;
2257 kvm_apic_local_deliver(apic, APIC_LVT0);
2260 static const struct kvm_io_device_ops apic_mmio_ops = {
2261 .read = apic_mmio_read,
2262 .write = apic_mmio_write,
2265 static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
2267 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
2268 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
2270 apic_timer_expired(apic);
2272 if (lapic_is_periodic(apic)) {
2273 advance_periodic_target_expiration(apic);
2274 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
2275 return HRTIMER_RESTART;
2277 return HRTIMER_NORESTART;
2280 int kvm_create_lapic(struct kvm_vcpu *vcpu, int timer_advance_ns)
2282 struct kvm_lapic *apic;
2284 ASSERT(vcpu != NULL);
2286 apic = kzalloc(sizeof(*apic), GFP_KERNEL_ACCOUNT);
2290 vcpu->arch.apic = apic;
2292 apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
2294 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
2296 goto nomem_free_apic;
2300 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
2302 apic->lapic_timer.timer.function = apic_timer_fn;
2303 if (timer_advance_ns == -1) {
2304 apic->lapic_timer.timer_advance_ns = LAPIC_TIMER_ADVANCE_ADJUST_INIT;
2305 apic->lapic_timer.timer_advance_adjust_done = false;
2307 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
2308 apic->lapic_timer.timer_advance_adjust_done = true;
2313 * APIC is created enabled. This will prevent kvm_lapic_set_base from
2314 * thinking that APIC state has changed.
2316 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
2317 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
2318 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
2323 vcpu->arch.apic = NULL;
2328 int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
2330 struct kvm_lapic *apic = vcpu->arch.apic;
2333 if (!kvm_apic_hw_enabled(apic))
2336 __apic_update_ppr(apic, &ppr);
2337 return apic_has_interrupt_for_ppr(apic, ppr);
2340 int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
2342 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
2345 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
2347 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
2348 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
2353 void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
2355 struct kvm_lapic *apic = vcpu->arch.apic;
2357 if (atomic_read(&apic->lapic_timer.pending) > 0) {
2358 kvm_apic_inject_pending_timer_irqs(apic);
2359 atomic_set(&apic->lapic_timer.pending, 0);
2363 int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
2365 int vector = kvm_apic_has_interrupt(vcpu);
2366 struct kvm_lapic *apic = vcpu->arch.apic;
2373 * We get here even with APIC virtualization enabled, if doing
2374 * nested virtualization and L1 runs with the "acknowledge interrupt
2375 * on exit" mode. Then we cannot inject the interrupt via RVI,
2376 * because the process would deliver it through the IDT.
2379 apic_clear_irr(vector, apic);
2380 if (test_bit(vector, vcpu_to_synic(vcpu)->auto_eoi_bitmap)) {
2382 * For auto-EOI interrupts, there might be another pending
2383 * interrupt above PPR, so check whether to raise another
2386 apic_update_ppr(apic);
2389 * For normal interrupts, PPR has been raised and there cannot
2390 * be a higher-priority pending interrupt---except if there was
2391 * a concurrent interrupt injection, but that would have
2392 * triggered KVM_REQ_EVENT already.
2394 apic_set_isr(vector, apic);
2395 __apic_update_ppr(apic, &ppr);
2401 static int kvm_apic_state_fixup(struct kvm_vcpu *vcpu,
2402 struct kvm_lapic_state *s, bool set)
2404 if (apic_x2apic_mode(vcpu->arch.apic)) {
2405 u32 *id = (u32 *)(s->regs + APIC_ID);
2406 u32 *ldr = (u32 *)(s->regs + APIC_LDR);
2408 if (vcpu->kvm->arch.x2apic_format) {
2409 if (*id != vcpu->vcpu_id)
2418 /* In x2APIC mode, the LDR is fixed and based on the id */
2420 *ldr = kvm_apic_calc_x2apic_ldr(*id);
2426 int kvm_apic_get_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2428 memcpy(s->regs, vcpu->arch.apic->regs, sizeof(*s));
2429 return kvm_apic_state_fixup(vcpu, s, false);
2432 int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2434 struct kvm_lapic *apic = vcpu->arch.apic;
2438 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
2439 /* set SPIV separately to get count of SW disabled APICs right */
2440 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
2442 r = kvm_apic_state_fixup(vcpu, s, true);
2445 memcpy(vcpu->arch.apic->regs, s->regs, sizeof(*s));
2447 recalculate_apic_map(vcpu->kvm);
2448 kvm_apic_set_version(vcpu);
2450 apic_update_ppr(apic);
2451 hrtimer_cancel(&apic->lapic_timer.timer);
2452 apic_update_lvtt(apic);
2453 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
2454 update_divide_count(apic);
2455 start_apic_timer(apic);
2456 apic->irr_pending = true;
2457 apic->isr_count = vcpu->arch.apicv_active ?
2458 1 : count_vectors(apic->regs + APIC_ISR);
2459 apic->highest_isr_cache = -1;
2460 if (vcpu->arch.apicv_active) {
2461 kvm_x86_ops->apicv_post_state_restore(vcpu);
2462 kvm_x86_ops->hwapic_irr_update(vcpu,
2463 apic_find_highest_irr(apic));
2464 kvm_x86_ops->hwapic_isr_update(vcpu,
2465 apic_find_highest_isr(apic));
2467 kvm_make_request(KVM_REQ_EVENT, vcpu);
2468 if (ioapic_in_kernel(vcpu->kvm))
2469 kvm_rtc_eoi_tracking_restore_one(vcpu);
2471 vcpu->arch.apic_arb_prio = 0;
2476 void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
2478 struct hrtimer *timer;
2480 if (!lapic_in_kernel(vcpu) ||
2481 kvm_can_post_timer_interrupt(vcpu))
2484 timer = &vcpu->arch.apic->lapic_timer.timer;
2485 if (hrtimer_cancel(timer))
2486 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
2490 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
2492 * Detect whether guest triggered PV EOI since the
2493 * last entry. If yes, set EOI on guests's behalf.
2494 * Clear PV EOI in guest memory in any case.
2496 static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
2497 struct kvm_lapic *apic)
2502 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
2503 * and KVM_PV_EOI_ENABLED in guest memory as follows:
2505 * KVM_APIC_PV_EOI_PENDING is unset:
2506 * -> host disabled PV EOI.
2507 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
2508 * -> host enabled PV EOI, guest did not execute EOI yet.
2509 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
2510 * -> host enabled PV EOI, guest executed EOI.
2512 BUG_ON(!pv_eoi_enabled(vcpu));
2513 pending = pv_eoi_get_pending(vcpu);
2515 * Clear pending bit in any case: it will be set again on vmentry.
2516 * While this might not be ideal from performance point of view,
2517 * this makes sure pv eoi is only enabled when we know it's safe.
2519 pv_eoi_clr_pending(vcpu);
2522 vector = apic_set_eoi(apic);
2523 trace_kvm_pv_eoi(apic, vector);
2526 void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
2530 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
2531 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
2533 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
2536 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2540 apic_set_tpr(vcpu->arch.apic, data & 0xff);
2544 * apic_sync_pv_eoi_to_guest - called before vmentry
2546 * Detect whether it's safe to enable PV EOI and
2549 static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
2550 struct kvm_lapic *apic)
2552 if (!pv_eoi_enabled(vcpu) ||
2553 /* IRR set or many bits in ISR: could be nested. */
2554 apic->irr_pending ||
2555 /* Cache not set: could be safe but we don't bother. */
2556 apic->highest_isr_cache == -1 ||
2557 /* Need EOI to update ioapic. */
2558 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
2560 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
2561 * so we need not do anything here.
2566 pv_eoi_set_pending(apic->vcpu);
2569 void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
2572 int max_irr, max_isr;
2573 struct kvm_lapic *apic = vcpu->arch.apic;
2575 apic_sync_pv_eoi_to_guest(vcpu, apic);
2577 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
2580 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
2581 max_irr = apic_find_highest_irr(apic);
2584 max_isr = apic_find_highest_isr(apic);
2587 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
2589 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2593 int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
2596 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
2597 &vcpu->arch.apic->vapic_cache,
2598 vapic_addr, sizeof(u32)))
2600 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
2602 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
2605 vcpu->arch.apic->vapic_addr = vapic_addr;
2609 int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2611 struct kvm_lapic *apic = vcpu->arch.apic;
2612 u32 reg = (msr - APIC_BASE_MSR) << 4;
2614 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
2617 if (reg == APIC_ICR2)
2620 /* if this is ICR write vector before command */
2621 if (reg == APIC_ICR)
2622 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2623 return kvm_lapic_reg_write(apic, reg, (u32)data);
2626 int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
2628 struct kvm_lapic *apic = vcpu->arch.apic;
2629 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
2631 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
2634 if (reg == APIC_DFR || reg == APIC_ICR2)
2637 if (kvm_lapic_reg_read(apic, reg, 4, &low))
2639 if (reg == APIC_ICR)
2640 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
2642 *data = (((u64)high) << 32) | low;
2647 int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
2649 struct kvm_lapic *apic = vcpu->arch.apic;
2651 if (!lapic_in_kernel(vcpu))
2654 /* if this is ICR write vector before command */
2655 if (reg == APIC_ICR)
2656 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2657 return kvm_lapic_reg_write(apic, reg, (u32)data);
2660 int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
2662 struct kvm_lapic *apic = vcpu->arch.apic;
2665 if (!lapic_in_kernel(vcpu))
2668 if (kvm_lapic_reg_read(apic, reg, 4, &low))
2670 if (reg == APIC_ICR)
2671 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
2673 *data = (((u64)high) << 32) | low;
2678 int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
2680 u64 addr = data & ~KVM_MSR_ENABLED;
2681 struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
2682 unsigned long new_len;
2684 if (!IS_ALIGNED(addr, 4))
2687 vcpu->arch.pv_eoi.msr_val = data;
2688 if (!pv_eoi_enabled(vcpu))
2691 if (addr == ghc->gpa && len <= ghc->len)
2696 return kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
2699 void kvm_apic_accept_events(struct kvm_vcpu *vcpu)
2701 struct kvm_lapic *apic = vcpu->arch.apic;
2705 if (!lapic_in_kernel(vcpu) || !apic->pending_events)
2709 * INITs are latched while CPU is in specific states
2710 * (SMM, VMX non-root mode, SVM with GIF=0).
2711 * Because a CPU cannot be in these states immediately
2712 * after it has processed an INIT signal (and thus in
2713 * KVM_MP_STATE_INIT_RECEIVED state), just eat SIPIs
2714 * and leave the INIT pending.
2716 if (is_smm(vcpu) || kvm_x86_ops->apic_init_signal_blocked(vcpu)) {
2717 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
2718 if (test_bit(KVM_APIC_SIPI, &apic->pending_events))
2719 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
2723 pe = xchg(&apic->pending_events, 0);
2724 if (test_bit(KVM_APIC_INIT, &pe)) {
2725 kvm_vcpu_reset(vcpu, true);
2726 if (kvm_vcpu_is_bsp(apic->vcpu))
2727 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2729 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
2731 if (test_bit(KVM_APIC_SIPI, &pe) &&
2732 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
2733 /* evaluate pending_events before reading the vector */
2735 sipi_vector = apic->sipi_vector;
2736 kvm_vcpu_deliver_sipi_vector(vcpu, sipi_vector);
2737 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2741 void kvm_lapic_init(void)
2743 /* do not patch jump label more than once per second */
2744 jump_label_rate_limit(&apic_hw_disabled, HZ);
2745 jump_label_rate_limit(&apic_sw_disabled, HZ);
2748 void kvm_lapic_exit(void)
2750 static_key_deferred_flush(&apic_hw_disabled);
2751 static_key_deferred_flush(&apic_sw_disabled);