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.
12 * Dor Laor <dor.laor@qumranet.com>
13 * Gregory Haskins <ghaskins@novell.com>
14 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
16 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <linux/kvm_host.h>
21 #include <linux/kvm.h>
23 #include <linux/highmem.h>
24 #include <linux/smp.h>
25 #include <linux/hrtimer.h>
27 #include <linux/export.h>
28 #include <linux/math64.h>
29 #include <linux/slab.h>
30 #include <asm/processor.h>
34 #include <asm/current.h>
35 #include <asm/apicdef.h>
36 #include <asm/delay.h>
37 #include <linux/atomic.h>
38 #include <linux/jump_label.h>
39 #include "kvm_cache_regs.h"
49 #define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
51 #define mod_64(x, y) ((x) % (y))
54 /* 14 is the version for Xeon and Pentium 8.4.8*/
55 #define APIC_VERSION 0x14UL
56 #define LAPIC_MMIO_LENGTH (1 << 12)
57 /* followed define is not in apicdef.h */
58 #define MAX_APIC_VECTOR 256
59 #define APIC_VECTORS_PER_REG 32
61 static bool lapic_timer_advance_dynamic __read_mostly;
62 #define LAPIC_TIMER_ADVANCE_ADJUST_MIN 100 /* clock cycles */
63 #define LAPIC_TIMER_ADVANCE_ADJUST_MAX 10000 /* clock cycles */
64 #define LAPIC_TIMER_ADVANCE_NS_INIT 1000
65 #define LAPIC_TIMER_ADVANCE_NS_MAX 5000
66 /* step-by-step approximation to mitigate fluctuation */
67 #define LAPIC_TIMER_ADVANCE_ADJUST_STEP 8
68 static int kvm_lapic_msr_read(struct kvm_lapic *apic, u32 reg, u64 *data);
69 static int kvm_lapic_msr_write(struct kvm_lapic *apic, u32 reg, u64 data);
71 static inline void __kvm_lapic_set_reg(char *regs, int reg_off, u32 val)
73 *((u32 *) (regs + reg_off)) = val;
76 static inline void kvm_lapic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
78 __kvm_lapic_set_reg(apic->regs, reg_off, val);
81 static __always_inline u64 __kvm_lapic_get_reg64(char *regs, int reg)
83 BUILD_BUG_ON(reg != APIC_ICR);
84 return *((u64 *) (regs + reg));
87 static __always_inline u64 kvm_lapic_get_reg64(struct kvm_lapic *apic, int reg)
89 return __kvm_lapic_get_reg64(apic->regs, reg);
92 static __always_inline void __kvm_lapic_set_reg64(char *regs, int reg, u64 val)
94 BUILD_BUG_ON(reg != APIC_ICR);
95 *((u64 *) (regs + reg)) = val;
98 static __always_inline void kvm_lapic_set_reg64(struct kvm_lapic *apic,
101 __kvm_lapic_set_reg64(apic->regs, reg, val);
104 static inline int apic_test_vector(int vec, void *bitmap)
106 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
109 bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector)
111 struct kvm_lapic *apic = vcpu->arch.apic;
113 return apic_test_vector(vector, apic->regs + APIC_ISR) ||
114 apic_test_vector(vector, apic->regs + APIC_IRR);
117 static inline int __apic_test_and_set_vector(int vec, void *bitmap)
119 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
122 static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
124 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
127 __read_mostly DEFINE_STATIC_KEY_DEFERRED_FALSE(apic_hw_disabled, HZ);
128 __read_mostly DEFINE_STATIC_KEY_DEFERRED_FALSE(apic_sw_disabled, HZ);
130 static inline int apic_enabled(struct kvm_lapic *apic)
132 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
136 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
139 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
140 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
142 static inline u32 kvm_x2apic_id(struct kvm_lapic *apic)
144 return apic->vcpu->vcpu_id;
147 static bool kvm_can_post_timer_interrupt(struct kvm_vcpu *vcpu)
149 return pi_inject_timer && kvm_vcpu_apicv_active(vcpu) &&
150 (kvm_mwait_in_guest(vcpu->kvm) || kvm_hlt_in_guest(vcpu->kvm));
153 bool kvm_can_use_hv_timer(struct kvm_vcpu *vcpu)
155 return kvm_x86_ops.set_hv_timer
156 && !(kvm_mwait_in_guest(vcpu->kvm) ||
157 kvm_can_post_timer_interrupt(vcpu));
160 static bool kvm_use_posted_timer_interrupt(struct kvm_vcpu *vcpu)
162 return kvm_can_post_timer_interrupt(vcpu) && vcpu->mode == IN_GUEST_MODE;
165 static inline u32 kvm_apic_calc_x2apic_ldr(u32 id)
167 return ((id >> 4) << 16) | (1 << (id & 0xf));
170 static inline bool kvm_apic_map_get_logical_dest(struct kvm_apic_map *map,
171 u32 dest_id, struct kvm_lapic ***cluster, u16 *mask) {
172 switch (map->logical_mode) {
173 case KVM_APIC_MODE_SW_DISABLED:
174 /* Arbitrarily use the flat map so that @cluster isn't NULL. */
175 *cluster = map->xapic_flat_map;
178 case KVM_APIC_MODE_X2APIC: {
179 u32 offset = (dest_id >> 16) * 16;
180 u32 max_apic_id = map->max_apic_id;
182 if (offset <= max_apic_id) {
183 u8 cluster_size = min(max_apic_id - offset + 1, 16U);
185 offset = array_index_nospec(offset, map->max_apic_id + 1);
186 *cluster = &map->phys_map[offset];
187 *mask = dest_id & (0xffff >> (16 - cluster_size));
194 case KVM_APIC_MODE_XAPIC_FLAT:
195 *cluster = map->xapic_flat_map;
196 *mask = dest_id & 0xff;
198 case KVM_APIC_MODE_XAPIC_CLUSTER:
199 *cluster = map->xapic_cluster_map[(dest_id >> 4) & 0xf];
200 *mask = dest_id & 0xf;
202 case KVM_APIC_MODE_MAP_DISABLED:
210 static void kvm_apic_map_free(struct rcu_head *rcu)
212 struct kvm_apic_map *map = container_of(rcu, struct kvm_apic_map, rcu);
217 static int kvm_recalculate_phys_map(struct kvm_apic_map *new,
218 struct kvm_vcpu *vcpu,
219 bool *xapic_id_mismatch)
221 struct kvm_lapic *apic = vcpu->arch.apic;
222 u32 x2apic_id = kvm_x2apic_id(apic);
223 u32 xapic_id = kvm_xapic_id(apic);
227 * For simplicity, KVM always allocates enough space for all possible
228 * xAPIC IDs. Yell, but don't kill the VM, as KVM can continue on
229 * without the optimized map.
231 if (WARN_ON_ONCE(xapic_id > new->max_apic_id))
235 * Bail if a vCPU was added and/or enabled its APIC between allocating
236 * the map and doing the actual calculations for the map. Note, KVM
237 * hardcodes the x2APIC ID to vcpu_id, i.e. there's no TOCTOU bug if
238 * the compiler decides to reload x2apic_id after this check.
240 if (x2apic_id > new->max_apic_id)
244 * Deliberately truncate the vCPU ID when detecting a mismatched APIC
245 * ID to avoid false positives if the vCPU ID, i.e. x2APIC ID, is a
246 * 32-bit value. Any unwanted aliasing due to truncation results will
249 if (!apic_x2apic_mode(apic) && xapic_id != (u8)vcpu->vcpu_id)
250 *xapic_id_mismatch = true;
253 * Apply KVM's hotplug hack if userspace has enable 32-bit APIC IDs.
254 * Allow sending events to vCPUs by their x2APIC ID even if the target
255 * vCPU is in legacy xAPIC mode, and silently ignore aliased xAPIC IDs
256 * (the x2APIC ID is truncated to 8 bits, causing IDs > 0xff to wrap
259 * Honor the architectural (and KVM's non-optimized) behavior if
260 * userspace has not enabled 32-bit x2APIC IDs. Each APIC is supposed
261 * to process messages independently. If multiple vCPUs have the same
262 * effective APIC ID, e.g. due to the x2APIC wrap or because the guest
263 * manually modified its xAPIC IDs, events targeting that ID are
264 * supposed to be recognized by all vCPUs with said ID.
266 if (vcpu->kvm->arch.x2apic_format) {
267 /* See also kvm_apic_match_physical_addr(). */
268 if (apic_x2apic_mode(apic) || x2apic_id > 0xff)
269 new->phys_map[x2apic_id] = apic;
271 if (!apic_x2apic_mode(apic) && !new->phys_map[xapic_id])
272 new->phys_map[xapic_id] = apic;
275 * Disable the optimized map if the physical APIC ID is already
276 * mapped, i.e. is aliased to multiple vCPUs. The optimized
277 * map requires a strict 1:1 mapping between IDs and vCPUs.
279 if (apic_x2apic_mode(apic))
280 physical_id = x2apic_id;
282 physical_id = xapic_id;
284 if (new->phys_map[physical_id])
287 new->phys_map[physical_id] = apic;
293 static void kvm_recalculate_logical_map(struct kvm_apic_map *new,
294 struct kvm_vcpu *vcpu)
296 struct kvm_lapic *apic = vcpu->arch.apic;
297 enum kvm_apic_logical_mode logical_mode;
298 struct kvm_lapic **cluster;
302 if (new->logical_mode == KVM_APIC_MODE_MAP_DISABLED)
305 if (!kvm_apic_sw_enabled(apic))
308 ldr = kvm_lapic_get_reg(apic, APIC_LDR);
312 if (apic_x2apic_mode(apic)) {
313 logical_mode = KVM_APIC_MODE_X2APIC;
315 ldr = GET_APIC_LOGICAL_ID(ldr);
316 if (kvm_lapic_get_reg(apic, APIC_DFR) == APIC_DFR_FLAT)
317 logical_mode = KVM_APIC_MODE_XAPIC_FLAT;
319 logical_mode = KVM_APIC_MODE_XAPIC_CLUSTER;
323 * To optimize logical mode delivery, all software-enabled APICs must
324 * be configured for the same mode.
326 if (new->logical_mode == KVM_APIC_MODE_SW_DISABLED) {
327 new->logical_mode = logical_mode;
328 } else if (new->logical_mode != logical_mode) {
329 new->logical_mode = KVM_APIC_MODE_MAP_DISABLED;
334 * In x2APIC mode, the LDR is read-only and derived directly from the
335 * x2APIC ID, thus is guaranteed to be addressable. KVM reuses
336 * kvm_apic_map.phys_map to optimize logical mode x2APIC interrupts by
337 * reversing the LDR calculation to get cluster of APICs, i.e. no
338 * additional work is required.
340 if (apic_x2apic_mode(apic)) {
341 WARN_ON_ONCE(ldr != kvm_apic_calc_x2apic_ldr(kvm_x2apic_id(apic)));
345 if (WARN_ON_ONCE(!kvm_apic_map_get_logical_dest(new, ldr,
347 new->logical_mode = KVM_APIC_MODE_MAP_DISABLED;
355 if (!is_power_of_2(mask) || cluster[ldr])
356 new->logical_mode = KVM_APIC_MODE_MAP_DISABLED;
362 * CLEAN -> DIRTY and UPDATE_IN_PROGRESS -> DIRTY changes happen without a lock.
364 * DIRTY -> UPDATE_IN_PROGRESS and UPDATE_IN_PROGRESS -> CLEAN happen with
365 * apic_map_lock_held.
373 void kvm_recalculate_apic_map(struct kvm *kvm)
375 struct kvm_apic_map *new, *old = NULL;
376 struct kvm_vcpu *vcpu;
378 u32 max_id = 255; /* enough space for any xAPIC ID */
379 bool xapic_id_mismatch;
382 /* Read kvm->arch.apic_map_dirty before kvm->arch.apic_map. */
383 if (atomic_read_acquire(&kvm->arch.apic_map_dirty) == CLEAN)
386 WARN_ONCE(!irqchip_in_kernel(kvm),
387 "Dirty APIC map without an in-kernel local APIC");
389 mutex_lock(&kvm->arch.apic_map_lock);
393 * Read kvm->arch.apic_map_dirty before kvm->arch.apic_map (if clean)
394 * or the APIC registers (if dirty). Note, on retry the map may have
395 * not yet been marked dirty by whatever task changed a vCPU's x2APIC
396 * ID, i.e. the map may still show up as in-progress. In that case
397 * this task still needs to retry and complete its calculation.
399 if (atomic_cmpxchg_acquire(&kvm->arch.apic_map_dirty,
400 DIRTY, UPDATE_IN_PROGRESS) == CLEAN) {
401 /* Someone else has updated the map. */
402 mutex_unlock(&kvm->arch.apic_map_lock);
407 * Reset the mismatch flag between attempts so that KVM does the right
408 * thing if a vCPU changes its xAPIC ID, but do NOT reset max_id, i.e.
409 * keep max_id strictly increasing. Disallowing max_id from shrinking
410 * ensures KVM won't get stuck in an infinite loop, e.g. if the vCPU
411 * with the highest x2APIC ID is toggling its APIC on and off.
413 xapic_id_mismatch = false;
415 kvm_for_each_vcpu(i, vcpu, kvm)
416 if (kvm_apic_present(vcpu))
417 max_id = max(max_id, kvm_x2apic_id(vcpu->arch.apic));
419 new = kvzalloc(sizeof(struct kvm_apic_map) +
420 sizeof(struct kvm_lapic *) * ((u64)max_id + 1),
426 new->max_apic_id = max_id;
427 new->logical_mode = KVM_APIC_MODE_SW_DISABLED;
429 kvm_for_each_vcpu(i, vcpu, kvm) {
430 if (!kvm_apic_present(vcpu))
433 r = kvm_recalculate_phys_map(new, vcpu, &xapic_id_mismatch);
445 kvm_recalculate_logical_map(new, vcpu);
449 * The optimized map is effectively KVM's internal version of APICv,
450 * and all unwanted aliasing that results in disabling the optimized
451 * map also applies to APICv.
454 kvm_set_apicv_inhibit(kvm, APICV_INHIBIT_REASON_PHYSICAL_ID_ALIASED);
456 kvm_clear_apicv_inhibit(kvm, APICV_INHIBIT_REASON_PHYSICAL_ID_ALIASED);
458 if (!new || new->logical_mode == KVM_APIC_MODE_MAP_DISABLED)
459 kvm_set_apicv_inhibit(kvm, APICV_INHIBIT_REASON_LOGICAL_ID_ALIASED);
461 kvm_clear_apicv_inhibit(kvm, APICV_INHIBIT_REASON_LOGICAL_ID_ALIASED);
463 if (xapic_id_mismatch)
464 kvm_set_apicv_inhibit(kvm, APICV_INHIBIT_REASON_APIC_ID_MODIFIED);
466 kvm_clear_apicv_inhibit(kvm, APICV_INHIBIT_REASON_APIC_ID_MODIFIED);
468 old = rcu_dereference_protected(kvm->arch.apic_map,
469 lockdep_is_held(&kvm->arch.apic_map_lock));
470 rcu_assign_pointer(kvm->arch.apic_map, new);
472 * Write kvm->arch.apic_map before clearing apic->apic_map_dirty.
473 * If another update has come in, leave it DIRTY.
475 atomic_cmpxchg_release(&kvm->arch.apic_map_dirty,
476 UPDATE_IN_PROGRESS, CLEAN);
477 mutex_unlock(&kvm->arch.apic_map_lock);
480 call_rcu(&old->rcu, kvm_apic_map_free);
482 kvm_make_scan_ioapic_request(kvm);
485 static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
487 bool enabled = val & APIC_SPIV_APIC_ENABLED;
489 kvm_lapic_set_reg(apic, APIC_SPIV, val);
491 if (enabled != apic->sw_enabled) {
492 apic->sw_enabled = enabled;
494 static_branch_slow_dec_deferred(&apic_sw_disabled);
496 static_branch_inc(&apic_sw_disabled.key);
498 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
501 /* Check if there are APF page ready requests pending */
503 kvm_make_request(KVM_REQ_APF_READY, apic->vcpu);
506 static inline void kvm_apic_set_xapic_id(struct kvm_lapic *apic, u8 id)
508 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
509 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
512 static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
514 kvm_lapic_set_reg(apic, APIC_LDR, id);
515 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
518 static inline void kvm_apic_set_dfr(struct kvm_lapic *apic, u32 val)
520 kvm_lapic_set_reg(apic, APIC_DFR, val);
521 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
524 static inline void kvm_apic_set_x2apic_id(struct kvm_lapic *apic, u32 id)
526 u32 ldr = kvm_apic_calc_x2apic_ldr(id);
528 WARN_ON_ONCE(id != apic->vcpu->vcpu_id);
530 kvm_lapic_set_reg(apic, APIC_ID, id);
531 kvm_lapic_set_reg(apic, APIC_LDR, ldr);
532 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
535 static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
537 return !(kvm_lapic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
540 static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
542 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
545 static inline int apic_lvtt_period(struct kvm_lapic *apic)
547 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
550 static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
552 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
555 static inline int apic_lvt_nmi_mode(u32 lvt_val)
557 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
560 static inline bool kvm_lapic_lvt_supported(struct kvm_lapic *apic, int lvt_index)
562 return apic->nr_lvt_entries > lvt_index;
565 static inline int kvm_apic_calc_nr_lvt_entries(struct kvm_vcpu *vcpu)
567 return KVM_APIC_MAX_NR_LVT_ENTRIES - !(vcpu->arch.mcg_cap & MCG_CMCI_P);
570 void kvm_apic_set_version(struct kvm_vcpu *vcpu)
572 struct kvm_lapic *apic = vcpu->arch.apic;
575 if (!lapic_in_kernel(vcpu))
578 v = APIC_VERSION | ((apic->nr_lvt_entries - 1) << 16);
581 * KVM emulates 82093AA datasheet (with in-kernel IOAPIC implementation)
582 * which doesn't have EOI register; Some buggy OSes (e.g. Windows with
583 * Hyper-V role) disable EOI broadcast in lapic not checking for IOAPIC
584 * version first and level-triggered interrupts never get EOIed in
587 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) &&
588 !ioapic_in_kernel(vcpu->kvm))
589 v |= APIC_LVR_DIRECTED_EOI;
590 kvm_lapic_set_reg(apic, APIC_LVR, v);
593 void kvm_apic_after_set_mcg_cap(struct kvm_vcpu *vcpu)
595 int nr_lvt_entries = kvm_apic_calc_nr_lvt_entries(vcpu);
596 struct kvm_lapic *apic = vcpu->arch.apic;
599 if (!lapic_in_kernel(vcpu) || nr_lvt_entries == apic->nr_lvt_entries)
602 /* Initialize/mask any "new" LVT entries. */
603 for (i = apic->nr_lvt_entries; i < nr_lvt_entries; i++)
604 kvm_lapic_set_reg(apic, APIC_LVTx(i), APIC_LVT_MASKED);
606 apic->nr_lvt_entries = nr_lvt_entries;
608 /* The number of LVT entries is reflected in the version register. */
609 kvm_apic_set_version(vcpu);
612 static const unsigned int apic_lvt_mask[KVM_APIC_MAX_NR_LVT_ENTRIES] = {
613 [LVT_TIMER] = LVT_MASK, /* timer mode mask added at runtime */
614 [LVT_THERMAL_MONITOR] = LVT_MASK | APIC_MODE_MASK,
615 [LVT_PERFORMANCE_COUNTER] = LVT_MASK | APIC_MODE_MASK,
616 [LVT_LINT0] = LINT_MASK,
617 [LVT_LINT1] = LINT_MASK,
618 [LVT_ERROR] = LVT_MASK,
619 [LVT_CMCI] = LVT_MASK | APIC_MODE_MASK
622 static int find_highest_vector(void *bitmap)
627 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
628 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
629 reg = bitmap + REG_POS(vec);
631 return __fls(*reg) + vec;
637 static u8 count_vectors(void *bitmap)
643 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
644 reg = bitmap + REG_POS(vec);
645 count += hweight32(*reg);
651 bool __kvm_apic_update_irr(u32 *pir, void *regs, int *max_irr)
654 u32 pir_val, irr_val, prev_irr_val;
657 max_updated_irr = -1;
660 for (i = vec = 0; i <= 7; i++, vec += 32) {
661 u32 *p_irr = (u32 *)(regs + APIC_IRR + i * 0x10);
664 pir_val = READ_ONCE(pir[i]);
667 pir_val = xchg(&pir[i], 0);
669 prev_irr_val = irr_val;
671 irr_val = prev_irr_val | pir_val;
672 } while (prev_irr_val != irr_val &&
673 !try_cmpxchg(p_irr, &prev_irr_val, irr_val));
675 if (prev_irr_val != irr_val)
676 max_updated_irr = __fls(irr_val ^ prev_irr_val) + vec;
679 *max_irr = __fls(irr_val) + vec;
682 return ((max_updated_irr != -1) &&
683 (max_updated_irr == *max_irr));
685 EXPORT_SYMBOL_GPL(__kvm_apic_update_irr);
687 bool kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir, int *max_irr)
689 struct kvm_lapic *apic = vcpu->arch.apic;
690 bool irr_updated = __kvm_apic_update_irr(pir, apic->regs, max_irr);
692 if (unlikely(!apic->apicv_active && irr_updated))
693 apic->irr_pending = true;
696 EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
698 static inline int apic_search_irr(struct kvm_lapic *apic)
700 return find_highest_vector(apic->regs + APIC_IRR);
703 static inline int apic_find_highest_irr(struct kvm_lapic *apic)
708 * Note that irr_pending is just a hint. It will be always
709 * true with virtual interrupt delivery enabled.
711 if (!apic->irr_pending)
714 result = apic_search_irr(apic);
715 ASSERT(result == -1 || result >= 16);
720 static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
722 if (unlikely(apic->apicv_active)) {
723 /* need to update RVI */
724 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
725 static_call_cond(kvm_x86_hwapic_irr_update)(apic->vcpu,
726 apic_find_highest_irr(apic));
728 apic->irr_pending = false;
729 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
730 if (apic_search_irr(apic) != -1)
731 apic->irr_pending = true;
735 void kvm_apic_clear_irr(struct kvm_vcpu *vcpu, int vec)
737 apic_clear_irr(vec, vcpu->arch.apic);
739 EXPORT_SYMBOL_GPL(kvm_apic_clear_irr);
741 static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
743 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
747 * With APIC virtualization enabled, all caching is disabled
748 * because the processor can modify ISR under the hood. Instead
751 if (unlikely(apic->apicv_active))
752 static_call_cond(kvm_x86_hwapic_isr_update)(vec);
755 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
757 * ISR (in service register) bit is set when injecting an interrupt.
758 * The highest vector is injected. Thus the latest bit set matches
759 * the highest bit in ISR.
761 apic->highest_isr_cache = vec;
765 static inline int apic_find_highest_isr(struct kvm_lapic *apic)
770 * Note that isr_count is always 1, and highest_isr_cache
771 * is always -1, with APIC virtualization enabled.
773 if (!apic->isr_count)
775 if (likely(apic->highest_isr_cache != -1))
776 return apic->highest_isr_cache;
778 result = find_highest_vector(apic->regs + APIC_ISR);
779 ASSERT(result == -1 || result >= 16);
784 static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
786 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
790 * We do get here for APIC virtualization enabled if the guest
791 * uses the Hyper-V APIC enlightenment. In this case we may need
792 * to trigger a new interrupt delivery by writing the SVI field;
793 * on the other hand isr_count and highest_isr_cache are unused
794 * and must be left alone.
796 if (unlikely(apic->apicv_active))
797 static_call_cond(kvm_x86_hwapic_isr_update)(apic_find_highest_isr(apic));
800 BUG_ON(apic->isr_count < 0);
801 apic->highest_isr_cache = -1;
805 int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
807 /* This may race with setting of irr in __apic_accept_irq() and
808 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
809 * will cause vmexit immediately and the value will be recalculated
810 * on the next vmentry.
812 return apic_find_highest_irr(vcpu->arch.apic);
814 EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
816 static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
817 int vector, int level, int trig_mode,
818 struct dest_map *dest_map);
820 int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
821 struct dest_map *dest_map)
823 struct kvm_lapic *apic = vcpu->arch.apic;
825 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
826 irq->level, irq->trig_mode, dest_map);
829 static int __pv_send_ipi(unsigned long *ipi_bitmap, struct kvm_apic_map *map,
830 struct kvm_lapic_irq *irq, u32 min)
833 struct kvm_vcpu *vcpu;
835 if (min > map->max_apic_id)
838 for_each_set_bit(i, ipi_bitmap,
839 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
840 if (map->phys_map[min + i]) {
841 vcpu = map->phys_map[min + i]->vcpu;
842 count += kvm_apic_set_irq(vcpu, irq, NULL);
849 int kvm_pv_send_ipi(struct kvm *kvm, unsigned long ipi_bitmap_low,
850 unsigned long ipi_bitmap_high, u32 min,
851 unsigned long icr, int op_64_bit)
853 struct kvm_apic_map *map;
854 struct kvm_lapic_irq irq = {0};
855 int cluster_size = op_64_bit ? 64 : 32;
858 if (icr & (APIC_DEST_MASK | APIC_SHORT_MASK))
861 irq.vector = icr & APIC_VECTOR_MASK;
862 irq.delivery_mode = icr & APIC_MODE_MASK;
863 irq.level = (icr & APIC_INT_ASSERT) != 0;
864 irq.trig_mode = icr & APIC_INT_LEVELTRIG;
867 map = rcu_dereference(kvm->arch.apic_map);
871 count = __pv_send_ipi(&ipi_bitmap_low, map, &irq, min);
873 count += __pv_send_ipi(&ipi_bitmap_high, map, &irq, min);
880 static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
883 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
887 static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
890 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
894 static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
896 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
899 static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
901 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0)
904 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
907 static bool pv_eoi_test_and_clr_pending(struct kvm_vcpu *vcpu)
911 if (pv_eoi_get_user(vcpu, &val) < 0)
914 val &= KVM_PV_EOI_ENABLED;
916 if (val && pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0)
920 * Clear pending bit in any case: it will be set again on vmentry.
921 * While this might not be ideal from performance point of view,
922 * this makes sure pv eoi is only enabled when we know it's safe.
924 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
929 static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
932 if (kvm_x86_ops.sync_pir_to_irr)
933 highest_irr = static_call(kvm_x86_sync_pir_to_irr)(apic->vcpu);
935 highest_irr = apic_find_highest_irr(apic);
936 if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
941 static bool __apic_update_ppr(struct kvm_lapic *apic, u32 *new_ppr)
943 u32 tpr, isrv, ppr, old_ppr;
946 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
947 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
948 isr = apic_find_highest_isr(apic);
949 isrv = (isr != -1) ? isr : 0;
951 if ((tpr & 0xf0) >= (isrv & 0xf0))
958 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
960 return ppr < old_ppr;
963 static void apic_update_ppr(struct kvm_lapic *apic)
967 if (__apic_update_ppr(apic, &ppr) &&
968 apic_has_interrupt_for_ppr(apic, ppr) != -1)
969 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
972 void kvm_apic_update_ppr(struct kvm_vcpu *vcpu)
974 apic_update_ppr(vcpu->arch.apic);
976 EXPORT_SYMBOL_GPL(kvm_apic_update_ppr);
978 static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
980 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
981 apic_update_ppr(apic);
984 static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
986 return mda == (apic_x2apic_mode(apic) ?
987 X2APIC_BROADCAST : APIC_BROADCAST);
990 static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
992 if (kvm_apic_broadcast(apic, mda))
996 * Hotplug hack: Accept interrupts for vCPUs in xAPIC mode as if they
997 * were in x2APIC mode if the target APIC ID can't be encoded as an
998 * xAPIC ID. This allows unique addressing of hotplugged vCPUs (which
999 * start in xAPIC mode) with an APIC ID that is unaddressable in xAPIC
1000 * mode. Match the x2APIC ID if and only if the target APIC ID can't
1001 * be encoded in xAPIC to avoid spurious matches against a vCPU that
1002 * changed its (addressable) xAPIC ID (which is writable).
1004 if (apic_x2apic_mode(apic) || mda > 0xff)
1005 return mda == kvm_x2apic_id(apic);
1007 return mda == kvm_xapic_id(apic);
1010 static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
1014 if (kvm_apic_broadcast(apic, mda))
1017 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
1019 if (apic_x2apic_mode(apic))
1020 return ((logical_id >> 16) == (mda >> 16))
1021 && (logical_id & mda & 0xffff) != 0;
1023 logical_id = GET_APIC_LOGICAL_ID(logical_id);
1025 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
1027 return (logical_id & mda) != 0;
1028 case APIC_DFR_CLUSTER:
1029 return ((logical_id >> 4) == (mda >> 4))
1030 && (logical_id & mda & 0xf) != 0;
1036 /* The KVM local APIC implementation has two quirks:
1038 * - Real hardware delivers interrupts destined to x2APIC ID > 0xff to LAPICs
1039 * in xAPIC mode if the "destination & 0xff" matches its xAPIC ID.
1040 * KVM doesn't do that aliasing.
1042 * - in-kernel IOAPIC messages have to be delivered directly to
1043 * x2APIC, because the kernel does not support interrupt remapping.
1044 * In order to support broadcast without interrupt remapping, x2APIC
1045 * rewrites the destination of non-IPI messages from APIC_BROADCAST
1046 * to X2APIC_BROADCAST.
1048 * The broadcast quirk can be disabled with KVM_CAP_X2APIC_API. This is
1049 * important when userspace wants to use x2APIC-format MSIs, because
1050 * APIC_BROADCAST (0xff) is a legal route for "cluster 0, CPUs 0-7".
1052 static u32 kvm_apic_mda(struct kvm_vcpu *vcpu, unsigned int dest_id,
1053 struct kvm_lapic *source, struct kvm_lapic *target)
1055 bool ipi = source != NULL;
1057 if (!vcpu->kvm->arch.x2apic_broadcast_quirk_disabled &&
1058 !ipi && dest_id == APIC_BROADCAST && apic_x2apic_mode(target))
1059 return X2APIC_BROADCAST;
1064 bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
1065 int shorthand, unsigned int dest, int dest_mode)
1067 struct kvm_lapic *target = vcpu->arch.apic;
1068 u32 mda = kvm_apic_mda(vcpu, dest, source, target);
1071 switch (shorthand) {
1072 case APIC_DEST_NOSHORT:
1073 if (dest_mode == APIC_DEST_PHYSICAL)
1074 return kvm_apic_match_physical_addr(target, mda);
1076 return kvm_apic_match_logical_addr(target, mda);
1077 case APIC_DEST_SELF:
1078 return target == source;
1079 case APIC_DEST_ALLINC:
1081 case APIC_DEST_ALLBUT:
1082 return target != source;
1087 EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
1089 int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
1090 const unsigned long *bitmap, u32 bitmap_size)
1095 mod = vector % dest_vcpus;
1097 for (i = 0; i <= mod; i++) {
1098 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
1099 BUG_ON(idx == bitmap_size);
1105 static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
1107 if (!kvm->arch.disabled_lapic_found) {
1108 kvm->arch.disabled_lapic_found = true;
1109 pr_info("Disabled LAPIC found during irq injection\n");
1113 static bool kvm_apic_is_broadcast_dest(struct kvm *kvm, struct kvm_lapic **src,
1114 struct kvm_lapic_irq *irq, struct kvm_apic_map *map)
1116 if (kvm->arch.x2apic_broadcast_quirk_disabled) {
1117 if ((irq->dest_id == APIC_BROADCAST &&
1118 map->logical_mode != KVM_APIC_MODE_X2APIC))
1120 if (irq->dest_id == X2APIC_BROADCAST)
1123 bool x2apic_ipi = src && *src && apic_x2apic_mode(*src);
1124 if (irq->dest_id == (x2apic_ipi ?
1125 X2APIC_BROADCAST : APIC_BROADCAST))
1132 /* Return true if the interrupt can be handled by using *bitmap as index mask
1133 * for valid destinations in *dst array.
1134 * Return false if kvm_apic_map_get_dest_lapic did nothing useful.
1135 * Note: we may have zero kvm_lapic destinations when we return true, which
1136 * means that the interrupt should be dropped. In this case, *bitmap would be
1137 * zero and *dst undefined.
1139 static inline bool kvm_apic_map_get_dest_lapic(struct kvm *kvm,
1140 struct kvm_lapic **src, struct kvm_lapic_irq *irq,
1141 struct kvm_apic_map *map, struct kvm_lapic ***dst,
1142 unsigned long *bitmap)
1146 if (irq->shorthand == APIC_DEST_SELF && src) {
1150 } else if (irq->shorthand)
1153 if (!map || kvm_apic_is_broadcast_dest(kvm, src, irq, map))
1156 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
1157 if (irq->dest_id > map->max_apic_id) {
1160 u32 dest_id = array_index_nospec(irq->dest_id, map->max_apic_id + 1);
1161 *dst = &map->phys_map[dest_id];
1168 if (!kvm_apic_map_get_logical_dest(map, irq->dest_id, dst,
1172 if (!kvm_lowest_prio_delivery(irq))
1175 if (!kvm_vector_hashing_enabled()) {
1177 for_each_set_bit(i, bitmap, 16) {
1182 else if (kvm_apic_compare_prio((*dst)[i]->vcpu,
1183 (*dst)[lowest]->vcpu) < 0)
1190 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap),
1193 if (!(*dst)[lowest]) {
1194 kvm_apic_disabled_lapic_found(kvm);
1200 *bitmap = (lowest >= 0) ? 1 << lowest : 0;
1205 bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
1206 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
1208 struct kvm_apic_map *map;
1209 unsigned long bitmap;
1210 struct kvm_lapic **dst = NULL;
1216 if (irq->shorthand == APIC_DEST_SELF) {
1217 if (KVM_BUG_ON(!src, kvm)) {
1221 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
1226 map = rcu_dereference(kvm->arch.apic_map);
1228 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dst, &bitmap);
1231 for_each_set_bit(i, &bitmap, 16) {
1234 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
1243 * This routine tries to handle interrupts in posted mode, here is how
1244 * it deals with different cases:
1245 * - For single-destination interrupts, handle it in posted mode
1246 * - Else if vector hashing is enabled and it is a lowest-priority
1247 * interrupt, handle it in posted mode and use the following mechanism
1248 * to find the destination vCPU.
1249 * 1. For lowest-priority interrupts, store all the possible
1250 * destination vCPUs in an array.
1251 * 2. Use "guest vector % max number of destination vCPUs" to find
1252 * the right destination vCPU in the array for the lowest-priority
1254 * - Otherwise, use remapped mode to inject the interrupt.
1256 bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
1257 struct kvm_vcpu **dest_vcpu)
1259 struct kvm_apic_map *map;
1260 unsigned long bitmap;
1261 struct kvm_lapic **dst = NULL;
1268 map = rcu_dereference(kvm->arch.apic_map);
1270 if (kvm_apic_map_get_dest_lapic(kvm, NULL, irq, map, &dst, &bitmap) &&
1271 hweight16(bitmap) == 1) {
1272 unsigned long i = find_first_bit(&bitmap, 16);
1275 *dest_vcpu = dst[i]->vcpu;
1285 * Add a pending IRQ into lapic.
1286 * Return 1 if successfully added and 0 if discarded.
1288 static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
1289 int vector, int level, int trig_mode,
1290 struct dest_map *dest_map)
1293 struct kvm_vcpu *vcpu = apic->vcpu;
1295 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
1297 switch (delivery_mode) {
1298 case APIC_DM_LOWEST:
1299 vcpu->arch.apic_arb_prio++;
1302 if (unlikely(trig_mode && !level))
1305 /* FIXME add logic for vcpu on reset */
1306 if (unlikely(!apic_enabled(apic)))
1312 __set_bit(vcpu->vcpu_id, dest_map->map);
1313 dest_map->vectors[vcpu->vcpu_id] = vector;
1316 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
1318 kvm_lapic_set_vector(vector,
1319 apic->regs + APIC_TMR);
1321 kvm_lapic_clear_vector(vector,
1322 apic->regs + APIC_TMR);
1325 static_call(kvm_x86_deliver_interrupt)(apic, delivery_mode,
1331 vcpu->arch.pv.pv_unhalted = 1;
1332 kvm_make_request(KVM_REQ_EVENT, vcpu);
1333 kvm_vcpu_kick(vcpu);
1337 if (!kvm_inject_smi(vcpu)) {
1338 kvm_vcpu_kick(vcpu);
1345 kvm_inject_nmi(vcpu);
1346 kvm_vcpu_kick(vcpu);
1350 if (!trig_mode || level) {
1352 /* assumes that there are only KVM_APIC_INIT/SIPI */
1353 apic->pending_events = (1UL << KVM_APIC_INIT);
1354 kvm_make_request(KVM_REQ_EVENT, vcpu);
1355 kvm_vcpu_kick(vcpu);
1359 case APIC_DM_STARTUP:
1361 apic->sipi_vector = vector;
1362 /* make sure sipi_vector is visible for the receiver */
1364 set_bit(KVM_APIC_SIPI, &apic->pending_events);
1365 kvm_make_request(KVM_REQ_EVENT, vcpu);
1366 kvm_vcpu_kick(vcpu);
1369 case APIC_DM_EXTINT:
1371 * Should only be called by kvm_apic_local_deliver() with LVT0,
1372 * before NMI watchdog was enabled. Already handled by
1373 * kvm_apic_accept_pic_intr().
1378 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
1386 * This routine identifies the destination vcpus mask meant to receive the
1387 * IOAPIC interrupts. It either uses kvm_apic_map_get_dest_lapic() to find
1388 * out the destination vcpus array and set the bitmap or it traverses to
1389 * each available vcpu to identify the same.
1391 void kvm_bitmap_or_dest_vcpus(struct kvm *kvm, struct kvm_lapic_irq *irq,
1392 unsigned long *vcpu_bitmap)
1394 struct kvm_lapic **dest_vcpu = NULL;
1395 struct kvm_lapic *src = NULL;
1396 struct kvm_apic_map *map;
1397 struct kvm_vcpu *vcpu;
1398 unsigned long bitmap, i;
1403 map = rcu_dereference(kvm->arch.apic_map);
1405 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dest_vcpu,
1408 for_each_set_bit(i, &bitmap, 16) {
1411 vcpu_idx = dest_vcpu[i]->vcpu->vcpu_idx;
1412 __set_bit(vcpu_idx, vcpu_bitmap);
1415 kvm_for_each_vcpu(i, vcpu, kvm) {
1416 if (!kvm_apic_present(vcpu))
1418 if (!kvm_apic_match_dest(vcpu, NULL,
1423 __set_bit(i, vcpu_bitmap);
1429 int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
1431 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
1434 static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
1436 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
1439 static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
1443 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
1444 if (!kvm_ioapic_handles_vector(apic, vector))
1447 /* Request a KVM exit to inform the userspace IOAPIC. */
1448 if (irqchip_split(apic->vcpu->kvm)) {
1449 apic->vcpu->arch.pending_ioapic_eoi = vector;
1450 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1454 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1455 trigger_mode = IOAPIC_LEVEL_TRIG;
1457 trigger_mode = IOAPIC_EDGE_TRIG;
1459 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
1462 static int apic_set_eoi(struct kvm_lapic *apic)
1464 int vector = apic_find_highest_isr(apic);
1466 trace_kvm_eoi(apic, vector);
1469 * Not every write EOI will has corresponding ISR,
1470 * one example is when Kernel check timer on setup_IO_APIC
1475 apic_clear_isr(vector, apic);
1476 apic_update_ppr(apic);
1478 if (to_hv_vcpu(apic->vcpu) &&
1479 test_bit(vector, to_hv_synic(apic->vcpu)->vec_bitmap))
1480 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1482 kvm_ioapic_send_eoi(apic, vector);
1483 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1488 * this interface assumes a trap-like exit, which has already finished
1489 * desired side effect including vISR and vPPR update.
1491 void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1493 struct kvm_lapic *apic = vcpu->arch.apic;
1495 trace_kvm_eoi(apic, vector);
1497 kvm_ioapic_send_eoi(apic, vector);
1498 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1500 EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1502 void kvm_apic_send_ipi(struct kvm_lapic *apic, u32 icr_low, u32 icr_high)
1504 struct kvm_lapic_irq irq;
1506 /* KVM has no delay and should always clear the BUSY/PENDING flag. */
1507 WARN_ON_ONCE(icr_low & APIC_ICR_BUSY);
1509 irq.vector = icr_low & APIC_VECTOR_MASK;
1510 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1511 irq.dest_mode = icr_low & APIC_DEST_MASK;
1512 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
1513 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1514 irq.shorthand = icr_low & APIC_SHORT_MASK;
1515 irq.msi_redir_hint = false;
1516 if (apic_x2apic_mode(apic))
1517 irq.dest_id = icr_high;
1519 irq.dest_id = GET_XAPIC_DEST_FIELD(icr_high);
1521 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1523 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
1525 EXPORT_SYMBOL_GPL(kvm_apic_send_ipi);
1527 static u32 apic_get_tmcct(struct kvm_lapic *apic)
1529 ktime_t remaining, now;
1532 ASSERT(apic != NULL);
1534 /* if initial count is 0, current count should also be 0 */
1535 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
1536 apic->lapic_timer.period == 0)
1540 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1541 if (ktime_to_ns(remaining) < 0)
1544 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1545 return div64_u64(ns, (APIC_BUS_CYCLE_NS * apic->divide_count));
1548 static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1550 struct kvm_vcpu *vcpu = apic->vcpu;
1551 struct kvm_run *run = vcpu->run;
1553 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
1554 run->tpr_access.rip = kvm_rip_read(vcpu);
1555 run->tpr_access.is_write = write;
1558 static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1560 if (apic->vcpu->arch.tpr_access_reporting)
1561 __report_tpr_access(apic, write);
1564 static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1568 if (offset >= LAPIC_MMIO_LENGTH)
1575 case APIC_TMCCT: /* Timer CCR */
1576 if (apic_lvtt_tscdeadline(apic))
1579 val = apic_get_tmcct(apic);
1582 apic_update_ppr(apic);
1583 val = kvm_lapic_get_reg(apic, offset);
1586 report_tpr_access(apic, false);
1589 val = kvm_lapic_get_reg(apic, offset);
1596 static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1598 return container_of(dev, struct kvm_lapic, dev);
1601 #define APIC_REG_MASK(reg) (1ull << ((reg) >> 4))
1602 #define APIC_REGS_MASK(first, count) \
1603 (APIC_REG_MASK(first) * ((1ull << (count)) - 1))
1605 u64 kvm_lapic_readable_reg_mask(struct kvm_lapic *apic)
1607 /* Leave bits '0' for reserved and write-only registers. */
1608 u64 valid_reg_mask =
1609 APIC_REG_MASK(APIC_ID) |
1610 APIC_REG_MASK(APIC_LVR) |
1611 APIC_REG_MASK(APIC_TASKPRI) |
1612 APIC_REG_MASK(APIC_PROCPRI) |
1613 APIC_REG_MASK(APIC_LDR) |
1614 APIC_REG_MASK(APIC_SPIV) |
1615 APIC_REGS_MASK(APIC_ISR, APIC_ISR_NR) |
1616 APIC_REGS_MASK(APIC_TMR, APIC_ISR_NR) |
1617 APIC_REGS_MASK(APIC_IRR, APIC_ISR_NR) |
1618 APIC_REG_MASK(APIC_ESR) |
1619 APIC_REG_MASK(APIC_ICR) |
1620 APIC_REG_MASK(APIC_LVTT) |
1621 APIC_REG_MASK(APIC_LVTTHMR) |
1622 APIC_REG_MASK(APIC_LVTPC) |
1623 APIC_REG_MASK(APIC_LVT0) |
1624 APIC_REG_MASK(APIC_LVT1) |
1625 APIC_REG_MASK(APIC_LVTERR) |
1626 APIC_REG_MASK(APIC_TMICT) |
1627 APIC_REG_MASK(APIC_TMCCT) |
1628 APIC_REG_MASK(APIC_TDCR);
1630 if (kvm_lapic_lvt_supported(apic, LVT_CMCI))
1631 valid_reg_mask |= APIC_REG_MASK(APIC_LVTCMCI);
1633 /* ARBPRI, DFR, and ICR2 are not valid in x2APIC mode. */
1634 if (!apic_x2apic_mode(apic))
1635 valid_reg_mask |= APIC_REG_MASK(APIC_ARBPRI) |
1636 APIC_REG_MASK(APIC_DFR) |
1637 APIC_REG_MASK(APIC_ICR2);
1639 return valid_reg_mask;
1641 EXPORT_SYMBOL_GPL(kvm_lapic_readable_reg_mask);
1643 static int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
1646 unsigned char alignment = offset & 0xf;
1650 * WARN if KVM reads ICR in x2APIC mode, as it's an 8-byte register in
1651 * x2APIC and needs to be manually handled by the caller.
1653 WARN_ON_ONCE(apic_x2apic_mode(apic) && offset == APIC_ICR);
1655 if (alignment + len > 4)
1658 if (offset > 0x3f0 ||
1659 !(kvm_lapic_readable_reg_mask(apic) & APIC_REG_MASK(offset)))
1662 result = __apic_read(apic, offset & ~0xf);
1664 trace_kvm_apic_read(offset, result);
1670 memcpy(data, (char *)&result + alignment, len);
1673 printk(KERN_ERR "Local APIC read with len = %x, "
1674 "should be 1,2, or 4 instead\n", len);
1680 static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1682 return addr >= apic->base_address &&
1683 addr < apic->base_address + LAPIC_MMIO_LENGTH;
1686 static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
1687 gpa_t address, int len, void *data)
1689 struct kvm_lapic *apic = to_lapic(this);
1690 u32 offset = address - apic->base_address;
1692 if (!apic_mmio_in_range(apic, address))
1695 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1696 if (!kvm_check_has_quirk(vcpu->kvm,
1697 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1700 memset(data, 0xff, len);
1704 kvm_lapic_reg_read(apic, offset, len, data);
1709 static void update_divide_count(struct kvm_lapic *apic)
1711 u32 tmp1, tmp2, tdcr;
1713 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
1715 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
1716 apic->divide_count = 0x1 << (tmp2 & 0x7);
1719 static void limit_periodic_timer_frequency(struct kvm_lapic *apic)
1722 * Do not allow the guest to program periodic timers with small
1723 * interval, since the hrtimers are not throttled by the host
1726 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1727 s64 min_period = min_timer_period_us * 1000LL;
1729 if (apic->lapic_timer.period < min_period) {
1730 pr_info_ratelimited(
1731 "vcpu %i: requested %lld ns "
1732 "lapic timer period limited to %lld ns\n",
1733 apic->vcpu->vcpu_id,
1734 apic->lapic_timer.period, min_period);
1735 apic->lapic_timer.period = min_period;
1740 static void cancel_hv_timer(struct kvm_lapic *apic);
1742 static void cancel_apic_timer(struct kvm_lapic *apic)
1744 hrtimer_cancel(&apic->lapic_timer.timer);
1746 if (apic->lapic_timer.hv_timer_in_use)
1747 cancel_hv_timer(apic);
1749 atomic_set(&apic->lapic_timer.pending, 0);
1752 static void apic_update_lvtt(struct kvm_lapic *apic)
1754 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
1755 apic->lapic_timer.timer_mode_mask;
1757 if (apic->lapic_timer.timer_mode != timer_mode) {
1758 if (apic_lvtt_tscdeadline(apic) != (timer_mode ==
1759 APIC_LVT_TIMER_TSCDEADLINE)) {
1760 cancel_apic_timer(apic);
1761 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
1762 apic->lapic_timer.period = 0;
1763 apic->lapic_timer.tscdeadline = 0;
1765 apic->lapic_timer.timer_mode = timer_mode;
1766 limit_periodic_timer_frequency(apic);
1771 * On APICv, this test will cause a busy wait
1772 * during a higher-priority task.
1775 static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1777 struct kvm_lapic *apic = vcpu->arch.apic;
1778 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
1780 if (kvm_apic_hw_enabled(apic)) {
1781 int vec = reg & APIC_VECTOR_MASK;
1782 void *bitmap = apic->regs + APIC_ISR;
1784 if (apic->apicv_active)
1785 bitmap = apic->regs + APIC_IRR;
1787 if (apic_test_vector(vec, bitmap))
1793 static inline void __wait_lapic_expire(struct kvm_vcpu *vcpu, u64 guest_cycles)
1795 u64 timer_advance_ns = vcpu->arch.apic->lapic_timer.timer_advance_ns;
1798 * If the guest TSC is running at a different ratio than the host, then
1799 * convert the delay to nanoseconds to achieve an accurate delay. Note
1800 * that __delay() uses delay_tsc whenever the hardware has TSC, thus
1801 * always for VMX enabled hardware.
1803 if (vcpu->arch.tsc_scaling_ratio == kvm_caps.default_tsc_scaling_ratio) {
1804 __delay(min(guest_cycles,
1805 nsec_to_cycles(vcpu, timer_advance_ns)));
1807 u64 delay_ns = guest_cycles * 1000000ULL;
1808 do_div(delay_ns, vcpu->arch.virtual_tsc_khz);
1809 ndelay(min_t(u32, delay_ns, timer_advance_ns));
1813 static inline void adjust_lapic_timer_advance(struct kvm_vcpu *vcpu,
1814 s64 advance_expire_delta)
1816 struct kvm_lapic *apic = vcpu->arch.apic;
1817 u32 timer_advance_ns = apic->lapic_timer.timer_advance_ns;
1820 /* Do not adjust for tiny fluctuations or large random spikes. */
1821 if (abs(advance_expire_delta) > LAPIC_TIMER_ADVANCE_ADJUST_MAX ||
1822 abs(advance_expire_delta) < LAPIC_TIMER_ADVANCE_ADJUST_MIN)
1826 if (advance_expire_delta < 0) {
1827 ns = -advance_expire_delta * 1000000ULL;
1828 do_div(ns, vcpu->arch.virtual_tsc_khz);
1829 timer_advance_ns -= ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
1832 ns = advance_expire_delta * 1000000ULL;
1833 do_div(ns, vcpu->arch.virtual_tsc_khz);
1834 timer_advance_ns += ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
1837 if (unlikely(timer_advance_ns > LAPIC_TIMER_ADVANCE_NS_MAX))
1838 timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
1839 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
1842 static void __kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1844 struct kvm_lapic *apic = vcpu->arch.apic;
1845 u64 guest_tsc, tsc_deadline;
1847 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1848 apic->lapic_timer.expired_tscdeadline = 0;
1849 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1850 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, guest_tsc - tsc_deadline);
1852 if (lapic_timer_advance_dynamic) {
1853 adjust_lapic_timer_advance(vcpu, guest_tsc - tsc_deadline);
1855 * If the timer fired early, reread the TSC to account for the
1856 * overhead of the above adjustment to avoid waiting longer
1857 * than is necessary.
1859 if (guest_tsc < tsc_deadline)
1860 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1863 if (guest_tsc < tsc_deadline)
1864 __wait_lapic_expire(vcpu, tsc_deadline - guest_tsc);
1867 void kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1869 if (lapic_in_kernel(vcpu) &&
1870 vcpu->arch.apic->lapic_timer.expired_tscdeadline &&
1871 vcpu->arch.apic->lapic_timer.timer_advance_ns &&
1872 lapic_timer_int_injected(vcpu))
1873 __kvm_wait_lapic_expire(vcpu);
1875 EXPORT_SYMBOL_GPL(kvm_wait_lapic_expire);
1877 static void kvm_apic_inject_pending_timer_irqs(struct kvm_lapic *apic)
1879 struct kvm_timer *ktimer = &apic->lapic_timer;
1881 kvm_apic_local_deliver(apic, APIC_LVTT);
1882 if (apic_lvtt_tscdeadline(apic)) {
1883 ktimer->tscdeadline = 0;
1884 } else if (apic_lvtt_oneshot(apic)) {
1885 ktimer->tscdeadline = 0;
1886 ktimer->target_expiration = 0;
1890 static void apic_timer_expired(struct kvm_lapic *apic, bool from_timer_fn)
1892 struct kvm_vcpu *vcpu = apic->vcpu;
1893 struct kvm_timer *ktimer = &apic->lapic_timer;
1895 if (atomic_read(&apic->lapic_timer.pending))
1898 if (apic_lvtt_tscdeadline(apic) || ktimer->hv_timer_in_use)
1899 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1901 if (!from_timer_fn && apic->apicv_active) {
1902 WARN_ON(kvm_get_running_vcpu() != vcpu);
1903 kvm_apic_inject_pending_timer_irqs(apic);
1907 if (kvm_use_posted_timer_interrupt(apic->vcpu)) {
1909 * Ensure the guest's timer has truly expired before posting an
1910 * interrupt. Open code the relevant checks to avoid querying
1911 * lapic_timer_int_injected(), which will be false since the
1912 * interrupt isn't yet injected. Waiting until after injecting
1913 * is not an option since that won't help a posted interrupt.
1915 if (vcpu->arch.apic->lapic_timer.expired_tscdeadline &&
1916 vcpu->arch.apic->lapic_timer.timer_advance_ns)
1917 __kvm_wait_lapic_expire(vcpu);
1918 kvm_apic_inject_pending_timer_irqs(apic);
1922 atomic_inc(&apic->lapic_timer.pending);
1923 kvm_make_request(KVM_REQ_UNBLOCK, vcpu);
1925 kvm_vcpu_kick(vcpu);
1928 static void start_sw_tscdeadline(struct kvm_lapic *apic)
1930 struct kvm_timer *ktimer = &apic->lapic_timer;
1931 u64 guest_tsc, tscdeadline = ktimer->tscdeadline;
1934 struct kvm_vcpu *vcpu = apic->vcpu;
1935 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
1936 unsigned long flags;
1939 if (unlikely(!tscdeadline || !this_tsc_khz))
1942 local_irq_save(flags);
1945 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1947 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1948 do_div(ns, this_tsc_khz);
1950 if (likely(tscdeadline > guest_tsc) &&
1951 likely(ns > apic->lapic_timer.timer_advance_ns)) {
1952 expire = ktime_add_ns(now, ns);
1953 expire = ktime_sub_ns(expire, ktimer->timer_advance_ns);
1954 hrtimer_start(&ktimer->timer, expire, HRTIMER_MODE_ABS_HARD);
1956 apic_timer_expired(apic, false);
1958 local_irq_restore(flags);
1961 static inline u64 tmict_to_ns(struct kvm_lapic *apic, u32 tmict)
1963 return (u64)tmict * APIC_BUS_CYCLE_NS * (u64)apic->divide_count;
1966 static void update_target_expiration(struct kvm_lapic *apic, uint32_t old_divisor)
1968 ktime_t now, remaining;
1969 u64 ns_remaining_old, ns_remaining_new;
1971 apic->lapic_timer.period =
1972 tmict_to_ns(apic, kvm_lapic_get_reg(apic, APIC_TMICT));
1973 limit_periodic_timer_frequency(apic);
1976 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1977 if (ktime_to_ns(remaining) < 0)
1980 ns_remaining_old = ktime_to_ns(remaining);
1981 ns_remaining_new = mul_u64_u32_div(ns_remaining_old,
1982 apic->divide_count, old_divisor);
1984 apic->lapic_timer.tscdeadline +=
1985 nsec_to_cycles(apic->vcpu, ns_remaining_new) -
1986 nsec_to_cycles(apic->vcpu, ns_remaining_old);
1987 apic->lapic_timer.target_expiration = ktime_add_ns(now, ns_remaining_new);
1990 static bool set_target_expiration(struct kvm_lapic *apic, u32 count_reg)
1997 apic->lapic_timer.period =
1998 tmict_to_ns(apic, kvm_lapic_get_reg(apic, APIC_TMICT));
2000 if (!apic->lapic_timer.period) {
2001 apic->lapic_timer.tscdeadline = 0;
2005 limit_periodic_timer_frequency(apic);
2006 deadline = apic->lapic_timer.period;
2008 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
2009 if (unlikely(count_reg != APIC_TMICT)) {
2010 deadline = tmict_to_ns(apic,
2011 kvm_lapic_get_reg(apic, count_reg));
2012 if (unlikely(deadline <= 0)) {
2013 if (apic_lvtt_period(apic))
2014 deadline = apic->lapic_timer.period;
2018 else if (unlikely(deadline > apic->lapic_timer.period)) {
2019 pr_info_ratelimited(
2020 "vcpu %i: requested lapic timer restore with "
2021 "starting count register %#x=%u (%lld ns) > initial count (%lld ns). "
2022 "Using initial count to start timer.\n",
2023 apic->vcpu->vcpu_id,
2025 kvm_lapic_get_reg(apic, count_reg),
2026 deadline, apic->lapic_timer.period);
2027 kvm_lapic_set_reg(apic, count_reg, 0);
2028 deadline = apic->lapic_timer.period;
2033 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
2034 nsec_to_cycles(apic->vcpu, deadline);
2035 apic->lapic_timer.target_expiration = ktime_add_ns(now, deadline);
2040 static void advance_periodic_target_expiration(struct kvm_lapic *apic)
2042 ktime_t now = ktime_get();
2047 * Synchronize both deadlines to the same time source or
2048 * differences in the periods (caused by differences in the
2049 * underlying clocks or numerical approximation errors) will
2050 * cause the two to drift apart over time as the errors
2053 apic->lapic_timer.target_expiration =
2054 ktime_add_ns(apic->lapic_timer.target_expiration,
2055 apic->lapic_timer.period);
2056 delta = ktime_sub(apic->lapic_timer.target_expiration, now);
2057 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
2058 nsec_to_cycles(apic->vcpu, delta);
2061 static void start_sw_period(struct kvm_lapic *apic)
2063 if (!apic->lapic_timer.period)
2066 if (ktime_after(ktime_get(),
2067 apic->lapic_timer.target_expiration)) {
2068 apic_timer_expired(apic, false);
2070 if (apic_lvtt_oneshot(apic))
2073 advance_periodic_target_expiration(apic);
2076 hrtimer_start(&apic->lapic_timer.timer,
2077 apic->lapic_timer.target_expiration,
2078 HRTIMER_MODE_ABS_HARD);
2081 bool kvm_lapic_hv_timer_in_use(struct kvm_vcpu *vcpu)
2083 if (!lapic_in_kernel(vcpu))
2086 return vcpu->arch.apic->lapic_timer.hv_timer_in_use;
2089 static void cancel_hv_timer(struct kvm_lapic *apic)
2091 WARN_ON(preemptible());
2092 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
2093 static_call(kvm_x86_cancel_hv_timer)(apic->vcpu);
2094 apic->lapic_timer.hv_timer_in_use = false;
2097 static bool start_hv_timer(struct kvm_lapic *apic)
2099 struct kvm_timer *ktimer = &apic->lapic_timer;
2100 struct kvm_vcpu *vcpu = apic->vcpu;
2103 WARN_ON(preemptible());
2104 if (!kvm_can_use_hv_timer(vcpu))
2107 if (!ktimer->tscdeadline)
2110 if (static_call(kvm_x86_set_hv_timer)(vcpu, ktimer->tscdeadline, &expired))
2113 ktimer->hv_timer_in_use = true;
2114 hrtimer_cancel(&ktimer->timer);
2117 * To simplify handling the periodic timer, leave the hv timer running
2118 * even if the deadline timer has expired, i.e. rely on the resulting
2119 * VM-Exit to recompute the periodic timer's target expiration.
2121 if (!apic_lvtt_period(apic)) {
2123 * Cancel the hv timer if the sw timer fired while the hv timer
2124 * was being programmed, or if the hv timer itself expired.
2126 if (atomic_read(&ktimer->pending)) {
2127 cancel_hv_timer(apic);
2128 } else if (expired) {
2129 apic_timer_expired(apic, false);
2130 cancel_hv_timer(apic);
2134 trace_kvm_hv_timer_state(vcpu->vcpu_id, ktimer->hv_timer_in_use);
2139 static void start_sw_timer(struct kvm_lapic *apic)
2141 struct kvm_timer *ktimer = &apic->lapic_timer;
2143 WARN_ON(preemptible());
2144 if (apic->lapic_timer.hv_timer_in_use)
2145 cancel_hv_timer(apic);
2146 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
2149 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
2150 start_sw_period(apic);
2151 else if (apic_lvtt_tscdeadline(apic))
2152 start_sw_tscdeadline(apic);
2153 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, false);
2156 static void restart_apic_timer(struct kvm_lapic *apic)
2160 if (!apic_lvtt_period(apic) && atomic_read(&apic->lapic_timer.pending))
2163 if (!start_hv_timer(apic))
2164 start_sw_timer(apic);
2169 void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
2171 struct kvm_lapic *apic = vcpu->arch.apic;
2174 /* If the preempt notifier has already run, it also called apic_timer_expired */
2175 if (!apic->lapic_timer.hv_timer_in_use)
2177 WARN_ON(kvm_vcpu_is_blocking(vcpu));
2178 apic_timer_expired(apic, false);
2179 cancel_hv_timer(apic);
2181 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
2182 advance_periodic_target_expiration(apic);
2183 restart_apic_timer(apic);
2188 EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
2190 void kvm_lapic_switch_to_hv_timer(struct kvm_vcpu *vcpu)
2192 restart_apic_timer(vcpu->arch.apic);
2195 void kvm_lapic_switch_to_sw_timer(struct kvm_vcpu *vcpu)
2197 struct kvm_lapic *apic = vcpu->arch.apic;
2200 /* Possibly the TSC deadline timer is not enabled yet */
2201 if (apic->lapic_timer.hv_timer_in_use)
2202 start_sw_timer(apic);
2206 void kvm_lapic_restart_hv_timer(struct kvm_vcpu *vcpu)
2208 struct kvm_lapic *apic = vcpu->arch.apic;
2210 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
2211 restart_apic_timer(apic);
2214 static void __start_apic_timer(struct kvm_lapic *apic, u32 count_reg)
2216 atomic_set(&apic->lapic_timer.pending, 0);
2218 if ((apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
2219 && !set_target_expiration(apic, count_reg))
2222 restart_apic_timer(apic);
2225 static void start_apic_timer(struct kvm_lapic *apic)
2227 __start_apic_timer(apic, APIC_TMICT);
2230 static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
2232 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
2234 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
2235 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
2236 if (lvt0_in_nmi_mode) {
2237 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
2239 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
2243 static int get_lvt_index(u32 reg)
2245 if (reg == APIC_LVTCMCI)
2247 if (reg < APIC_LVTT || reg > APIC_LVTERR)
2249 return array_index_nospec(
2250 (reg - APIC_LVTT) >> 4, KVM_APIC_MAX_NR_LVT_ENTRIES);
2253 static int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
2257 trace_kvm_apic_write(reg, val);
2260 case APIC_ID: /* Local APIC ID */
2261 if (!apic_x2apic_mode(apic)) {
2262 kvm_apic_set_xapic_id(apic, val >> 24);
2269 report_tpr_access(apic, true);
2270 apic_set_tpr(apic, val & 0xff);
2278 if (!apic_x2apic_mode(apic))
2279 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
2285 if (!apic_x2apic_mode(apic))
2286 kvm_apic_set_dfr(apic, val | 0x0FFFFFFF);
2293 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
2294 mask |= APIC_SPIV_DIRECTED_EOI;
2295 apic_set_spiv(apic, val & mask);
2296 if (!(val & APIC_SPIV_APIC_ENABLED)) {
2299 for (i = 0; i < apic->nr_lvt_entries; i++) {
2300 kvm_lapic_set_reg(apic, APIC_LVTx(i),
2301 kvm_lapic_get_reg(apic, APIC_LVTx(i)) | APIC_LVT_MASKED);
2303 apic_update_lvtt(apic);
2304 atomic_set(&apic->lapic_timer.pending, 0);
2310 WARN_ON_ONCE(apic_x2apic_mode(apic));
2312 /* No delay here, so we always clear the pending bit */
2313 val &= ~APIC_ICR_BUSY;
2314 kvm_apic_send_ipi(apic, val, kvm_lapic_get_reg(apic, APIC_ICR2));
2315 kvm_lapic_set_reg(apic, APIC_ICR, val);
2318 if (apic_x2apic_mode(apic))
2321 kvm_lapic_set_reg(apic, APIC_ICR2, val & 0xff000000);
2325 apic_manage_nmi_watchdog(apic, val);
2331 case APIC_LVTCMCI: {
2332 u32 index = get_lvt_index(reg);
2333 if (!kvm_lapic_lvt_supported(apic, index)) {
2337 if (!kvm_apic_sw_enabled(apic))
2338 val |= APIC_LVT_MASKED;
2339 val &= apic_lvt_mask[index];
2340 kvm_lapic_set_reg(apic, reg, val);
2345 if (!kvm_apic_sw_enabled(apic))
2346 val |= APIC_LVT_MASKED;
2347 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
2348 kvm_lapic_set_reg(apic, APIC_LVTT, val);
2349 apic_update_lvtt(apic);
2353 if (apic_lvtt_tscdeadline(apic))
2356 cancel_apic_timer(apic);
2357 kvm_lapic_set_reg(apic, APIC_TMICT, val);
2358 start_apic_timer(apic);
2362 uint32_t old_divisor = apic->divide_count;
2364 kvm_lapic_set_reg(apic, APIC_TDCR, val & 0xb);
2365 update_divide_count(apic);
2366 if (apic->divide_count != old_divisor &&
2367 apic->lapic_timer.period) {
2368 hrtimer_cancel(&apic->lapic_timer.timer);
2369 update_target_expiration(apic, old_divisor);
2370 restart_apic_timer(apic);
2375 if (apic_x2apic_mode(apic) && val != 0)
2381 * Self-IPI exists only when x2APIC is enabled. Bits 7:0 hold
2382 * the vector, everything else is reserved.
2384 if (!apic_x2apic_mode(apic) || (val & ~APIC_VECTOR_MASK))
2387 kvm_apic_send_ipi(apic, APIC_DEST_SELF | val, 0);
2395 * Recalculate APIC maps if necessary, e.g. if the software enable bit
2396 * was toggled, the APIC ID changed, etc... The maps are marked dirty
2397 * on relevant changes, i.e. this is a nop for most writes.
2399 kvm_recalculate_apic_map(apic->vcpu->kvm);
2404 static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
2405 gpa_t address, int len, const void *data)
2407 struct kvm_lapic *apic = to_lapic(this);
2408 unsigned int offset = address - apic->base_address;
2411 if (!apic_mmio_in_range(apic, address))
2414 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
2415 if (!kvm_check_has_quirk(vcpu->kvm,
2416 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
2423 * APIC register must be aligned on 128-bits boundary.
2424 * 32/64/128 bits registers must be accessed thru 32 bits.
2427 if (len != 4 || (offset & 0xf))
2432 kvm_lapic_reg_write(apic, offset & 0xff0, val);
2437 void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
2439 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
2441 EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
2443 /* emulate APIC access in a trap manner */
2444 void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
2446 struct kvm_lapic *apic = vcpu->arch.apic;
2450 * ICR is a single 64-bit register when x2APIC is enabled. For legacy
2451 * xAPIC, ICR writes need to go down the common (slightly slower) path
2452 * to get the upper half from ICR2.
2454 if (apic_x2apic_mode(apic) && offset == APIC_ICR) {
2455 val = kvm_lapic_get_reg64(apic, APIC_ICR);
2456 kvm_apic_send_ipi(apic, (u32)val, (u32)(val >> 32));
2457 trace_kvm_apic_write(APIC_ICR, val);
2459 /* TODO: optimize to just emulate side effect w/o one more write */
2460 val = kvm_lapic_get_reg(apic, offset);
2461 kvm_lapic_reg_write(apic, offset, (u32)val);
2464 EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
2466 void kvm_free_lapic(struct kvm_vcpu *vcpu)
2468 struct kvm_lapic *apic = vcpu->arch.apic;
2470 if (!vcpu->arch.apic)
2473 hrtimer_cancel(&apic->lapic_timer.timer);
2475 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
2476 static_branch_slow_dec_deferred(&apic_hw_disabled);
2478 if (!apic->sw_enabled)
2479 static_branch_slow_dec_deferred(&apic_sw_disabled);
2482 free_page((unsigned long)apic->regs);
2488 *----------------------------------------------------------------------
2490 *----------------------------------------------------------------------
2492 u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
2494 struct kvm_lapic *apic = vcpu->arch.apic;
2496 if (!kvm_apic_present(vcpu) || !apic_lvtt_tscdeadline(apic))
2499 return apic->lapic_timer.tscdeadline;
2502 void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
2504 struct kvm_lapic *apic = vcpu->arch.apic;
2506 if (!kvm_apic_present(vcpu) || !apic_lvtt_tscdeadline(apic))
2509 hrtimer_cancel(&apic->lapic_timer.timer);
2510 apic->lapic_timer.tscdeadline = data;
2511 start_apic_timer(apic);
2514 void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
2516 apic_set_tpr(vcpu->arch.apic, (cr8 & 0x0f) << 4);
2519 u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
2523 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
2525 return (tpr & 0xf0) >> 4;
2528 void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
2530 u64 old_value = vcpu->arch.apic_base;
2531 struct kvm_lapic *apic = vcpu->arch.apic;
2533 vcpu->arch.apic_base = value;
2535 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE)
2536 kvm_update_cpuid_runtime(vcpu);
2541 /* update jump label if enable bit changes */
2542 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
2543 if (value & MSR_IA32_APICBASE_ENABLE) {
2544 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
2545 static_branch_slow_dec_deferred(&apic_hw_disabled);
2546 /* Check if there are APF page ready requests pending */
2547 kvm_make_request(KVM_REQ_APF_READY, vcpu);
2549 static_branch_inc(&apic_hw_disabled.key);
2550 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
2554 if ((old_value ^ value) & X2APIC_ENABLE) {
2555 if (value & X2APIC_ENABLE)
2556 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
2557 else if (value & MSR_IA32_APICBASE_ENABLE)
2558 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
2561 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) {
2562 kvm_make_request(KVM_REQ_APICV_UPDATE, vcpu);
2563 static_call_cond(kvm_x86_set_virtual_apic_mode)(vcpu);
2566 apic->base_address = apic->vcpu->arch.apic_base &
2567 MSR_IA32_APICBASE_BASE;
2569 if ((value & MSR_IA32_APICBASE_ENABLE) &&
2570 apic->base_address != APIC_DEFAULT_PHYS_BASE) {
2571 kvm_set_apicv_inhibit(apic->vcpu->kvm,
2572 APICV_INHIBIT_REASON_APIC_BASE_MODIFIED);
2576 void kvm_apic_update_apicv(struct kvm_vcpu *vcpu)
2578 struct kvm_lapic *apic = vcpu->arch.apic;
2580 if (apic->apicv_active) {
2581 /* irr_pending is always true when apicv is activated. */
2582 apic->irr_pending = true;
2583 apic->isr_count = 1;
2586 * Don't clear irr_pending, searching the IRR can race with
2587 * updates from the CPU as APICv is still active from hardware's
2588 * perspective. The flag will be cleared as appropriate when
2589 * KVM injects the interrupt.
2591 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
2593 apic->highest_isr_cache = -1;
2596 int kvm_alloc_apic_access_page(struct kvm *kvm)
2602 mutex_lock(&kvm->slots_lock);
2603 if (kvm->arch.apic_access_memslot_enabled ||
2604 kvm->arch.apic_access_memslot_inhibited)
2607 hva = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
2608 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
2614 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
2615 if (is_error_page(page)) {
2621 * Do not pin the page in memory, so that memory hot-unplug
2622 * is able to migrate it.
2625 kvm->arch.apic_access_memslot_enabled = true;
2627 mutex_unlock(&kvm->slots_lock);
2630 EXPORT_SYMBOL_GPL(kvm_alloc_apic_access_page);
2632 void kvm_inhibit_apic_access_page(struct kvm_vcpu *vcpu)
2634 struct kvm *kvm = vcpu->kvm;
2636 if (!kvm->arch.apic_access_memslot_enabled)
2639 kvm_vcpu_srcu_read_unlock(vcpu);
2641 mutex_lock(&kvm->slots_lock);
2643 if (kvm->arch.apic_access_memslot_enabled) {
2644 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, 0, 0);
2646 * Clear "enabled" after the memslot is deleted so that a
2647 * different vCPU doesn't get a false negative when checking
2648 * the flag out of slots_lock. No additional memory barrier is
2649 * needed as modifying memslots requires waiting other vCPUs to
2650 * drop SRCU (see above), and false positives are ok as the
2651 * flag is rechecked after acquiring slots_lock.
2653 kvm->arch.apic_access_memslot_enabled = false;
2656 * Mark the memslot as inhibited to prevent reallocating the
2657 * memslot during vCPU creation, e.g. if a vCPU is hotplugged.
2659 kvm->arch.apic_access_memslot_inhibited = true;
2662 mutex_unlock(&kvm->slots_lock);
2664 kvm_vcpu_srcu_read_lock(vcpu);
2667 void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
2669 struct kvm_lapic *apic = vcpu->arch.apic;
2674 msr_val = APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE;
2675 if (kvm_vcpu_is_reset_bsp(vcpu))
2676 msr_val |= MSR_IA32_APICBASE_BSP;
2677 kvm_lapic_set_base(vcpu, msr_val);
2683 /* Stop the timer in case it's a reset to an active apic */
2684 hrtimer_cancel(&apic->lapic_timer.timer);
2686 /* The xAPIC ID is set at RESET even if the APIC was already enabled. */
2688 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
2689 kvm_apic_set_version(apic->vcpu);
2691 for (i = 0; i < apic->nr_lvt_entries; i++)
2692 kvm_lapic_set_reg(apic, APIC_LVTx(i), APIC_LVT_MASKED);
2693 apic_update_lvtt(apic);
2694 if (kvm_vcpu_is_reset_bsp(vcpu) &&
2695 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
2696 kvm_lapic_set_reg(apic, APIC_LVT0,
2697 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
2698 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
2700 kvm_apic_set_dfr(apic, 0xffffffffU);
2701 apic_set_spiv(apic, 0xff);
2702 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
2703 if (!apic_x2apic_mode(apic))
2704 kvm_apic_set_ldr(apic, 0);
2705 kvm_lapic_set_reg(apic, APIC_ESR, 0);
2706 if (!apic_x2apic_mode(apic)) {
2707 kvm_lapic_set_reg(apic, APIC_ICR, 0);
2708 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
2710 kvm_lapic_set_reg64(apic, APIC_ICR, 0);
2712 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
2713 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
2714 for (i = 0; i < 8; i++) {
2715 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
2716 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
2717 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
2719 kvm_apic_update_apicv(vcpu);
2720 update_divide_count(apic);
2721 atomic_set(&apic->lapic_timer.pending, 0);
2723 vcpu->arch.pv_eoi.msr_val = 0;
2724 apic_update_ppr(apic);
2725 if (apic->apicv_active) {
2726 static_call_cond(kvm_x86_apicv_post_state_restore)(vcpu);
2727 static_call_cond(kvm_x86_hwapic_irr_update)(vcpu, -1);
2728 static_call_cond(kvm_x86_hwapic_isr_update)(-1);
2731 vcpu->arch.apic_arb_prio = 0;
2732 vcpu->arch.apic_attention = 0;
2734 kvm_recalculate_apic_map(vcpu->kvm);
2738 *----------------------------------------------------------------------
2740 *----------------------------------------------------------------------
2743 static bool lapic_is_periodic(struct kvm_lapic *apic)
2745 return apic_lvtt_period(apic);
2748 int apic_has_pending_timer(struct kvm_vcpu *vcpu)
2750 struct kvm_lapic *apic = vcpu->arch.apic;
2752 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
2753 return atomic_read(&apic->lapic_timer.pending);
2758 int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
2760 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
2761 int vector, mode, trig_mode;
2764 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
2765 vector = reg & APIC_VECTOR_MASK;
2766 mode = reg & APIC_MODE_MASK;
2767 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
2769 r = __apic_accept_irq(apic, mode, vector, 1, trig_mode, NULL);
2770 if (r && lvt_type == APIC_LVTPC)
2771 kvm_lapic_set_reg(apic, APIC_LVTPC, reg | APIC_LVT_MASKED);
2777 void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
2779 struct kvm_lapic *apic = vcpu->arch.apic;
2782 kvm_apic_local_deliver(apic, APIC_LVT0);
2785 static const struct kvm_io_device_ops apic_mmio_ops = {
2786 .read = apic_mmio_read,
2787 .write = apic_mmio_write,
2790 static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
2792 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
2793 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
2795 apic_timer_expired(apic, true);
2797 if (lapic_is_periodic(apic)) {
2798 advance_periodic_target_expiration(apic);
2799 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
2800 return HRTIMER_RESTART;
2802 return HRTIMER_NORESTART;
2805 int kvm_create_lapic(struct kvm_vcpu *vcpu, int timer_advance_ns)
2807 struct kvm_lapic *apic;
2809 ASSERT(vcpu != NULL);
2811 apic = kzalloc(sizeof(*apic), GFP_KERNEL_ACCOUNT);
2815 vcpu->arch.apic = apic;
2817 apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
2819 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
2821 goto nomem_free_apic;
2825 apic->nr_lvt_entries = kvm_apic_calc_nr_lvt_entries(vcpu);
2827 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
2828 HRTIMER_MODE_ABS_HARD);
2829 apic->lapic_timer.timer.function = apic_timer_fn;
2830 if (timer_advance_ns == -1) {
2831 apic->lapic_timer.timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
2832 lapic_timer_advance_dynamic = true;
2834 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
2835 lapic_timer_advance_dynamic = false;
2839 * Stuff the APIC ENABLE bit in lieu of temporarily incrementing
2840 * apic_hw_disabled; the full RESET value is set by kvm_lapic_reset().
2842 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
2843 static_branch_inc(&apic_sw_disabled.key); /* sw disabled at reset */
2844 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
2849 vcpu->arch.apic = NULL;
2854 int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
2856 struct kvm_lapic *apic = vcpu->arch.apic;
2859 if (!kvm_apic_present(vcpu))
2862 __apic_update_ppr(apic, &ppr);
2863 return apic_has_interrupt_for_ppr(apic, ppr);
2865 EXPORT_SYMBOL_GPL(kvm_apic_has_interrupt);
2867 int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
2869 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
2871 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
2873 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
2874 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
2879 void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
2881 struct kvm_lapic *apic = vcpu->arch.apic;
2883 if (atomic_read(&apic->lapic_timer.pending) > 0) {
2884 kvm_apic_inject_pending_timer_irqs(apic);
2885 atomic_set(&apic->lapic_timer.pending, 0);
2889 int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
2891 int vector = kvm_apic_has_interrupt(vcpu);
2892 struct kvm_lapic *apic = vcpu->arch.apic;
2899 * We get here even with APIC virtualization enabled, if doing
2900 * nested virtualization and L1 runs with the "acknowledge interrupt
2901 * on exit" mode. Then we cannot inject the interrupt via RVI,
2902 * because the process would deliver it through the IDT.
2905 apic_clear_irr(vector, apic);
2906 if (to_hv_vcpu(vcpu) && test_bit(vector, to_hv_synic(vcpu)->auto_eoi_bitmap)) {
2908 * For auto-EOI interrupts, there might be another pending
2909 * interrupt above PPR, so check whether to raise another
2912 apic_update_ppr(apic);
2915 * For normal interrupts, PPR has been raised and there cannot
2916 * be a higher-priority pending interrupt---except if there was
2917 * a concurrent interrupt injection, but that would have
2918 * triggered KVM_REQ_EVENT already.
2920 apic_set_isr(vector, apic);
2921 __apic_update_ppr(apic, &ppr);
2927 static int kvm_apic_state_fixup(struct kvm_vcpu *vcpu,
2928 struct kvm_lapic_state *s, bool set)
2930 if (apic_x2apic_mode(vcpu->arch.apic)) {
2931 u32 *id = (u32 *)(s->regs + APIC_ID);
2932 u32 *ldr = (u32 *)(s->regs + APIC_LDR);
2935 if (vcpu->kvm->arch.x2apic_format) {
2936 if (*id != vcpu->vcpu_id)
2946 * In x2APIC mode, the LDR is fixed and based on the id. And
2947 * ICR is internally a single 64-bit register, but needs to be
2948 * split to ICR+ICR2 in userspace for backwards compatibility.
2951 *ldr = kvm_apic_calc_x2apic_ldr(*id);
2953 icr = __kvm_lapic_get_reg(s->regs, APIC_ICR) |
2954 (u64)__kvm_lapic_get_reg(s->regs, APIC_ICR2) << 32;
2955 __kvm_lapic_set_reg64(s->regs, APIC_ICR, icr);
2957 icr = __kvm_lapic_get_reg64(s->regs, APIC_ICR);
2958 __kvm_lapic_set_reg(s->regs, APIC_ICR2, icr >> 32);
2965 int kvm_apic_get_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2967 memcpy(s->regs, vcpu->arch.apic->regs, sizeof(*s));
2970 * Get calculated timer current count for remaining timer period (if
2971 * any) and store it in the returned register set.
2973 __kvm_lapic_set_reg(s->regs, APIC_TMCCT,
2974 __apic_read(vcpu->arch.apic, APIC_TMCCT));
2976 return kvm_apic_state_fixup(vcpu, s, false);
2979 int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2981 struct kvm_lapic *apic = vcpu->arch.apic;
2984 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
2985 /* set SPIV separately to get count of SW disabled APICs right */
2986 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
2988 r = kvm_apic_state_fixup(vcpu, s, true);
2990 kvm_recalculate_apic_map(vcpu->kvm);
2993 memcpy(vcpu->arch.apic->regs, s->regs, sizeof(*s));
2995 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
2996 kvm_recalculate_apic_map(vcpu->kvm);
2997 kvm_apic_set_version(vcpu);
2999 apic_update_ppr(apic);
3000 cancel_apic_timer(apic);
3001 apic->lapic_timer.expired_tscdeadline = 0;
3002 apic_update_lvtt(apic);
3003 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
3004 update_divide_count(apic);
3005 __start_apic_timer(apic, APIC_TMCCT);
3006 kvm_lapic_set_reg(apic, APIC_TMCCT, 0);
3007 kvm_apic_update_apicv(vcpu);
3008 if (apic->apicv_active) {
3009 static_call_cond(kvm_x86_apicv_post_state_restore)(vcpu);
3010 static_call_cond(kvm_x86_hwapic_irr_update)(vcpu, apic_find_highest_irr(apic));
3011 static_call_cond(kvm_x86_hwapic_isr_update)(apic_find_highest_isr(apic));
3013 kvm_make_request(KVM_REQ_EVENT, vcpu);
3014 if (ioapic_in_kernel(vcpu->kvm))
3015 kvm_rtc_eoi_tracking_restore_one(vcpu);
3017 vcpu->arch.apic_arb_prio = 0;
3022 void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
3024 struct hrtimer *timer;
3026 if (!lapic_in_kernel(vcpu) ||
3027 kvm_can_post_timer_interrupt(vcpu))
3030 timer = &vcpu->arch.apic->lapic_timer.timer;
3031 if (hrtimer_cancel(timer))
3032 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_HARD);
3036 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
3038 * Detect whether guest triggered PV EOI since the
3039 * last entry. If yes, set EOI on guests's behalf.
3040 * Clear PV EOI in guest memory in any case.
3042 static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
3043 struct kvm_lapic *apic)
3047 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
3048 * and KVM_PV_EOI_ENABLED in guest memory as follows:
3050 * KVM_APIC_PV_EOI_PENDING is unset:
3051 * -> host disabled PV EOI.
3052 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
3053 * -> host enabled PV EOI, guest did not execute EOI yet.
3054 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
3055 * -> host enabled PV EOI, guest executed EOI.
3057 BUG_ON(!pv_eoi_enabled(vcpu));
3059 if (pv_eoi_test_and_clr_pending(vcpu))
3061 vector = apic_set_eoi(apic);
3062 trace_kvm_pv_eoi(apic, vector);
3065 void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
3069 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
3070 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
3072 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
3075 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
3079 apic_set_tpr(vcpu->arch.apic, data & 0xff);
3083 * apic_sync_pv_eoi_to_guest - called before vmentry
3085 * Detect whether it's safe to enable PV EOI and
3088 static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
3089 struct kvm_lapic *apic)
3091 if (!pv_eoi_enabled(vcpu) ||
3092 /* IRR set or many bits in ISR: could be nested. */
3093 apic->irr_pending ||
3094 /* Cache not set: could be safe but we don't bother. */
3095 apic->highest_isr_cache == -1 ||
3096 /* Need EOI to update ioapic. */
3097 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
3099 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
3100 * so we need not do anything here.
3105 pv_eoi_set_pending(apic->vcpu);
3108 void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
3111 int max_irr, max_isr;
3112 struct kvm_lapic *apic = vcpu->arch.apic;
3114 apic_sync_pv_eoi_to_guest(vcpu, apic);
3116 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
3119 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
3120 max_irr = apic_find_highest_irr(apic);
3123 max_isr = apic_find_highest_isr(apic);
3126 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
3128 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
3132 int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
3135 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
3136 &vcpu->arch.apic->vapic_cache,
3137 vapic_addr, sizeof(u32)))
3139 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
3141 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
3144 vcpu->arch.apic->vapic_addr = vapic_addr;
3148 int kvm_x2apic_icr_write(struct kvm_lapic *apic, u64 data)
3150 data &= ~APIC_ICR_BUSY;
3152 kvm_apic_send_ipi(apic, (u32)data, (u32)(data >> 32));
3153 kvm_lapic_set_reg64(apic, APIC_ICR, data);
3154 trace_kvm_apic_write(APIC_ICR, data);
3158 static int kvm_lapic_msr_read(struct kvm_lapic *apic, u32 reg, u64 *data)
3162 if (reg == APIC_ICR) {
3163 *data = kvm_lapic_get_reg64(apic, APIC_ICR);
3167 if (kvm_lapic_reg_read(apic, reg, 4, &low))
3175 static int kvm_lapic_msr_write(struct kvm_lapic *apic, u32 reg, u64 data)
3178 * ICR is a 64-bit register in x2APIC mode (and Hyper-V PV vAPIC) and
3179 * can be written as such, all other registers remain accessible only
3180 * through 32-bit reads/writes.
3182 if (reg == APIC_ICR)
3183 return kvm_x2apic_icr_write(apic, data);
3185 /* Bits 63:32 are reserved in all other registers. */
3189 return kvm_lapic_reg_write(apic, reg, (u32)data);
3192 int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
3194 struct kvm_lapic *apic = vcpu->arch.apic;
3195 u32 reg = (msr - APIC_BASE_MSR) << 4;
3197 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
3200 return kvm_lapic_msr_write(apic, reg, data);
3203 int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
3205 struct kvm_lapic *apic = vcpu->arch.apic;
3206 u32 reg = (msr - APIC_BASE_MSR) << 4;
3208 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
3211 return kvm_lapic_msr_read(apic, reg, data);
3214 int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
3216 if (!lapic_in_kernel(vcpu))
3219 return kvm_lapic_msr_write(vcpu->arch.apic, reg, data);
3222 int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
3224 if (!lapic_in_kernel(vcpu))
3227 return kvm_lapic_msr_read(vcpu->arch.apic, reg, data);
3230 int kvm_lapic_set_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
3232 u64 addr = data & ~KVM_MSR_ENABLED;
3233 struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
3234 unsigned long new_len;
3237 if (!IS_ALIGNED(addr, 4))
3240 if (data & KVM_MSR_ENABLED) {
3241 if (addr == ghc->gpa && len <= ghc->len)
3246 ret = kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
3251 vcpu->arch.pv_eoi.msr_val = data;
3256 int kvm_apic_accept_events(struct kvm_vcpu *vcpu)
3258 struct kvm_lapic *apic = vcpu->arch.apic;
3262 if (!kvm_apic_has_pending_init_or_sipi(vcpu))
3265 if (is_guest_mode(vcpu)) {
3266 r = kvm_check_nested_events(vcpu);
3268 return r == -EBUSY ? 0 : r;
3270 * Continue processing INIT/SIPI even if a nested VM-Exit
3271 * occurred, e.g. pending SIPIs should be dropped if INIT+SIPI
3272 * are blocked as a result of transitioning to VMX root mode.
3277 * INITs are blocked while CPU is in specific states (SMM, VMX root
3278 * mode, SVM with GIF=0), while SIPIs are dropped if the CPU isn't in
3279 * wait-for-SIPI (WFS).
3281 if (!kvm_apic_init_sipi_allowed(vcpu)) {
3282 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
3283 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
3287 if (test_and_clear_bit(KVM_APIC_INIT, &apic->pending_events)) {
3288 kvm_vcpu_reset(vcpu, true);
3289 if (kvm_vcpu_is_bsp(apic->vcpu))
3290 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
3292 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
3294 if (test_and_clear_bit(KVM_APIC_SIPI, &apic->pending_events)) {
3295 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
3296 /* evaluate pending_events before reading the vector */
3298 sipi_vector = apic->sipi_vector;
3299 static_call(kvm_x86_vcpu_deliver_sipi_vector)(vcpu, sipi_vector);
3300 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
3306 void kvm_lapic_exit(void)
3308 static_key_deferred_flush(&apic_hw_disabled);
3309 WARN_ON(static_branch_unlikely(&apic_hw_disabled.key));
3310 static_key_deferred_flush(&apic_sw_disabled);
3311 WARN_ON(static_branch_unlikely(&apic_sw_disabled.key));