blob: 76fb0092120377bec06e4f2e9aeb2d2bb7d3f099 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Eddie Dong97222cc2007-09-12 10:58:04 +03002
3/*
4 * Local APIC virtualization
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
7 * Copyright (C) 2007 Novell
8 * Copyright (C) 2007 Intel
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
Eddie Dong97222cc2007-09-12 10:58:04 +030010 *
11 * Authors:
12 * Dor Laor <dor.laor@qumranet.com>
13 * Gregory Haskins <ghaskins@novell.com>
14 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
15 *
16 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
Eddie Dong97222cc2007-09-12 10:58:04 +030017 */
18
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030020#include <linux/kvm.h>
21#include <linux/mm.h>
22#include <linux/highmem.h>
23#include <linux/smp.h>
24#include <linux/hrtimer.h>
25#include <linux/io.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040026#include <linux/export.h>
Roman Zippel6f6d6a12008-05-01 04:34:28 -070027#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030029#include <asm/processor.h>
30#include <asm/msr.h>
31#include <asm/page.h>
32#include <asm/current.h>
33#include <asm/apicdef.h>
Marcelo Tosattid0659d92014-12-16 09:08:15 -050034#include <asm/delay.h>
Arun Sharma600634972011-07-26 16:09:06 -070035#include <linux/atomic.h>
Gleb Natapovc5cc4212012-08-05 15:58:30 +030036#include <linux/jump_label.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030037#include "kvm_cache_regs.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030038#include "irq.h"
彭浩(Richard)88197e62020-05-21 05:57:49 +000039#include "ioapic.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030040#include "trace.h"
Gleb Natapovfc61b802009-07-05 17:39:35 +030041#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020042#include "cpuid.h"
Andrey Smetanin5c9194122015-11-10 15:36:34 +030043#include "hyperv.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030044
Marcelo Tosattib682b812009-02-10 20:41:41 -020045#ifndef CONFIG_X86_64
46#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
47#else
48#define mod_64(x, y) ((x) % (y))
49#endif
50
Eddie Dong97222cc2007-09-12 10:58:04 +030051#define PRId64 "d"
52#define PRIx64 "llx"
53#define PRIu64 "u"
54#define PRIo64 "o"
55
Eddie Dong97222cc2007-09-12 10:58:04 +030056/* 14 is the version for Xeon and Pentium 8.4.8*/
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -050057#define APIC_VERSION (0x14UL | ((KVM_APIC_LVT_NUM - 1) << 16))
Eddie Dong97222cc2007-09-12 10:58:04 +030058#define LAPIC_MMIO_LENGTH (1 << 12)
59/* followed define is not in apicdef.h */
Eddie Dong97222cc2007-09-12 10:58:04 +030060#define MAX_APIC_VECTOR 256
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +090061#define APIC_VECTORS_PER_REG 32
Eddie Dong97222cc2007-09-12 10:58:04 +030062
Wanpeng Lid0f5a862019-09-17 16:16:26 +080063static bool lapic_timer_advance_dynamic __read_mostly;
Wanpeng Lia0f00372019-09-26 08:54:03 +080064#define LAPIC_TIMER_ADVANCE_ADJUST_MIN 100 /* clock cycles */
65#define LAPIC_TIMER_ADVANCE_ADJUST_MAX 10000 /* clock cycles */
66#define LAPIC_TIMER_ADVANCE_NS_INIT 1000
67#define LAPIC_TIMER_ADVANCE_NS_MAX 5000
Wanpeng Li3b8a5df2018-10-09 09:02:08 +080068/* step-by-step approximation to mitigate fluctuation */
69#define LAPIC_TIMER_ADVANCE_ADJUST_STEP 8
70
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +030071static inline int apic_test_vector(int vec, void *bitmap)
72{
73 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
74}
75
Yang Zhang10606912013-04-11 19:21:38 +080076bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector)
77{
78 struct kvm_lapic *apic = vcpu->arch.apic;
79
80 return apic_test_vector(vector, apic->regs + APIC_ISR) ||
81 apic_test_vector(vector, apic->regs + APIC_IRR);
82}
83
Michael S. Tsirkin8680b942012-06-24 19:24:26 +030084static inline int __apic_test_and_set_vector(int vec, void *bitmap)
85{
86 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
87}
88
89static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
90{
91 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
92}
93
Cun Li6e4e3b42021-01-11 23:24:35 +080094__read_mostly DEFINE_STATIC_KEY_DEFERRED_FALSE(apic_hw_disabled, HZ);
95__read_mostly DEFINE_STATIC_KEY_DEFERRED_FALSE(apic_sw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +030096
Eddie Dong97222cc2007-09-12 10:58:04 +030097static inline int apic_enabled(struct kvm_lapic *apic)
98{
Gleb Natapovc48f1492012-08-05 15:58:33 +030099 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
Gleb Natapov54e98182012-08-05 15:58:32 +0300100}
101
Eddie Dong97222cc2007-09-12 10:58:04 +0300102#define LVT_MASK \
103 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
104
105#define LINT_MASK \
106 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
107 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
108
Radim Krčmář6e500432016-12-15 18:06:46 +0100109static inline u32 kvm_x2apic_id(struct kvm_lapic *apic)
110{
111 return apic->vcpu->vcpu_id;
112}
113
Paolo Bonzini199a8b82020-05-05 06:45:35 -0400114static bool kvm_can_post_timer_interrupt(struct kvm_vcpu *vcpu)
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800115{
116 return pi_inject_timer && kvm_vcpu_apicv_active(vcpu);
117}
Paolo Bonzini199a8b82020-05-05 06:45:35 -0400118
119bool kvm_can_use_hv_timer(struct kvm_vcpu *vcpu)
120{
121 return kvm_x86_ops.set_hv_timer
122 && !(kvm_mwait_in_guest(vcpu->kvm) ||
123 kvm_can_post_timer_interrupt(vcpu));
124}
125EXPORT_SYMBOL_GPL(kvm_can_use_hv_timer);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800126
127static bool kvm_use_posted_timer_interrupt(struct kvm_vcpu *vcpu)
128{
129 return kvm_can_post_timer_interrupt(vcpu) && vcpu->mode == IN_GUEST_MODE;
130}
131
Radim Krčmáře45115b2016-07-12 22:09:19 +0200132static inline bool kvm_apic_map_get_logical_dest(struct kvm_apic_map *map,
133 u32 dest_id, struct kvm_lapic ***cluster, u16 *mask) {
134 switch (map->mode) {
135 case KVM_APIC_MODE_X2APIC: {
136 u32 offset = (dest_id >> 16) * 16;
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200137 u32 max_apic_id = map->max_apic_id;
Radim Krčmář3548a252015-02-12 19:41:33 +0100138
Radim Krčmáře45115b2016-07-12 22:09:19 +0200139 if (offset <= max_apic_id) {
140 u8 cluster_size = min(max_apic_id - offset + 1, 16U);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100141
Paolo Bonzini1d487e92019-04-11 11:16:47 +0200142 offset = array_index_nospec(offset, map->max_apic_id + 1);
Radim Krčmáře45115b2016-07-12 22:09:19 +0200143 *cluster = &map->phys_map[offset];
144 *mask = dest_id & (0xffff >> (16 - cluster_size));
145 } else {
146 *mask = 0;
147 }
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100148
Radim Krčmáře45115b2016-07-12 22:09:19 +0200149 return true;
150 }
151 case KVM_APIC_MODE_XAPIC_FLAT:
152 *cluster = map->xapic_flat_map;
153 *mask = dest_id & 0xff;
154 return true;
155 case KVM_APIC_MODE_XAPIC_CLUSTER:
Radim Krčmář444fdad2016-11-22 20:20:14 +0100156 *cluster = map->xapic_cluster_map[(dest_id >> 4) & 0xf];
Radim Krčmáře45115b2016-07-12 22:09:19 +0200157 *mask = dest_id & 0xf;
158 return true;
159 default:
160 /* Not optimized. */
161 return false;
162 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300163}
164
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200165static void kvm_apic_map_free(struct rcu_head *rcu)
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100166{
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200167 struct kvm_apic_map *map = container_of(rcu, struct kvm_apic_map, rcu);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100168
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200169 kvfree(map);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100170}
171
Paolo Bonzini44d52712020-06-22 16:37:42 +0200172/*
173 * CLEAN -> DIRTY and UPDATE_IN_PROGRESS -> DIRTY changes happen without a lock.
174 *
175 * DIRTY -> UPDATE_IN_PROGRESS and UPDATE_IN_PROGRESS -> CLEAN happen with
176 * apic_map_lock_held.
177 */
178enum {
179 CLEAN,
180 UPDATE_IN_PROGRESS,
181 DIRTY
182};
183
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800184void kvm_recalculate_apic_map(struct kvm *kvm)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300185{
186 struct kvm_apic_map *new, *old = NULL;
187 struct kvm_vcpu *vcpu;
188 int i;
Radim Krčmář6e500432016-12-15 18:06:46 +0100189 u32 max_id = 255; /* enough space for any xAPIC ID */
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300190
Paolo Bonzini44d52712020-06-22 16:37:42 +0200191 /* Read kvm->arch.apic_map_dirty before kvm->arch.apic_map. */
192 if (atomic_read_acquire(&kvm->arch.apic_map_dirty) == CLEAN)
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800193 return;
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800194
Sean Christophersonc2f79a62021-07-13 09:32:49 -0700195 WARN_ONCE(!irqchip_in_kernel(kvm),
196 "Dirty APIC map without an in-kernel local APIC");
197
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300198 mutex_lock(&kvm->arch.apic_map_lock);
Paolo Bonzini44d52712020-06-22 16:37:42 +0200199 /*
200 * Read kvm->arch.apic_map_dirty before kvm->arch.apic_map
201 * (if clean) or the APIC registers (if dirty).
202 */
203 if (atomic_cmpxchg_acquire(&kvm->arch.apic_map_dirty,
204 DIRTY, UPDATE_IN_PROGRESS) == CLEAN) {
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800205 /* Someone else has updated the map. */
206 mutex_unlock(&kvm->arch.apic_map_lock);
207 return;
208 }
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300209
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200210 kvm_for_each_vcpu(i, vcpu, kvm)
211 if (kvm_apic_present(vcpu))
Radim Krčmář6e500432016-12-15 18:06:46 +0100212 max_id = max(max_id, kvm_x2apic_id(vcpu->arch.apic));
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200213
Michal Hockoa7c3e902017-05-08 15:57:09 -0700214 new = kvzalloc(sizeof(struct kvm_apic_map) +
Ben Gardon254272c2019-02-11 11:02:50 -0800215 sizeof(struct kvm_lapic *) * ((u64)max_id + 1),
216 GFP_KERNEL_ACCOUNT);
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200217
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300218 if (!new)
219 goto out;
220
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200221 new->max_apic_id = max_id;
222
Nadav Amit173beed2014-11-02 11:54:54 +0200223 kvm_for_each_vcpu(i, vcpu, kvm) {
224 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmáře45115b2016-07-12 22:09:19 +0200225 struct kvm_lapic **cluster;
226 u16 mask;
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100227 u32 ldr;
228 u8 xapic_id;
229 u32 x2apic_id;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300230
Radim Krčmářdf04d1d2015-01-29 22:33:35 +0100231 if (!kvm_apic_present(vcpu))
232 continue;
233
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100234 xapic_id = kvm_xapic_id(apic);
235 x2apic_id = kvm_x2apic_id(apic);
236
237 /* Hotplug hack: see kvm_apic_match_physical_addr(), ... */
238 if ((apic_x2apic_mode(apic) || x2apic_id > 0xff) &&
239 x2apic_id <= new->max_apic_id)
240 new->phys_map[x2apic_id] = apic;
241 /*
242 * ... xAPIC ID of VCPUs with APIC ID > 0xff will wrap-around,
243 * prevent them from masking VCPUs with APIC ID <= 0xff.
244 */
245 if (!apic_x2apic_mode(apic) && !new->phys_map[xapic_id])
246 new->phys_map[xapic_id] = apic;
Radim Krčmář3548a252015-02-12 19:41:33 +0100247
Radim Krcmarb14c8762019-08-13 23:37:37 -0400248 if (!kvm_apic_sw_enabled(apic))
249 continue;
250
Radim Krčmář6e500432016-12-15 18:06:46 +0100251 ldr = kvm_lapic_get_reg(apic, APIC_LDR);
252
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100253 if (apic_x2apic_mode(apic)) {
254 new->mode |= KVM_APIC_MODE_X2APIC;
255 } else if (ldr) {
256 ldr = GET_APIC_LOGICAL_ID(ldr);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500257 if (kvm_lapic_get_reg(apic, APIC_DFR) == APIC_DFR_FLAT)
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100258 new->mode |= KVM_APIC_MODE_XAPIC_FLAT;
259 else
260 new->mode |= KVM_APIC_MODE_XAPIC_CLUSTER;
261 }
262
Radim Krčmáře45115b2016-07-12 22:09:19 +0200263 if (!kvm_apic_map_get_logical_dest(new, ldr, &cluster, &mask))
Radim Krčmář3548a252015-02-12 19:41:33 +0100264 continue;
265
Radim Krčmáře45115b2016-07-12 22:09:19 +0200266 if (mask)
267 cluster[ffs(mask) - 1] = apic;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300268 }
269out:
270 old = rcu_dereference_protected(kvm->arch.apic_map,
271 lockdep_is_held(&kvm->arch.apic_map_lock));
272 rcu_assign_pointer(kvm->arch.apic_map, new);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800273 /*
Paolo Bonzini44d52712020-06-22 16:37:42 +0200274 * Write kvm->arch.apic_map before clearing apic->apic_map_dirty.
275 * If another update has come in, leave it DIRTY.
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800276 */
Paolo Bonzini44d52712020-06-22 16:37:42 +0200277 atomic_cmpxchg_release(&kvm->arch.apic_map_dirty,
278 UPDATE_IN_PROGRESS, CLEAN);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300279 mutex_unlock(&kvm->arch.apic_map_lock);
280
281 if (old)
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200282 call_rcu(&old->rcu, kvm_apic_map_free);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800283
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700284 kvm_make_scan_ioapic_request(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300285}
286
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300287static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
288{
Radim Krčmáře4627552014-10-30 15:06:45 +0100289 bool enabled = val & APIC_SPIV_APIC_ENABLED;
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300290
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500291 kvm_lapic_set_reg(apic, APIC_SPIV, val);
Radim Krčmáře4627552014-10-30 15:06:45 +0100292
293 if (enabled != apic->sw_enabled) {
294 apic->sw_enabled = enabled;
Peng Haoeb1ff0a2018-12-04 17:42:50 +0800295 if (enabled)
Cun Li6e4e3b42021-01-11 23:24:35 +0800296 static_branch_slow_dec_deferred(&apic_sw_disabled);
Peng Haoeb1ff0a2018-12-04 17:42:50 +0800297 else
Cun Li6e4e3b42021-01-11 23:24:35 +0800298 static_branch_inc(&apic_sw_disabled.key);
Radim Krcmarb14c8762019-08-13 23:37:37 -0400299
Paolo Bonzini44d52712020-06-22 16:37:42 +0200300 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300301 }
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +0200302
303 /* Check if there are APF page ready requests pending */
304 if (enabled)
305 kvm_make_request(KVM_REQ_APF_READY, apic->vcpu);
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300306}
307
Radim Krčmářa92e2542016-07-12 22:09:22 +0200308static inline void kvm_apic_set_xapic_id(struct kvm_lapic *apic, u8 id)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300309{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500310 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
Paolo Bonzini44d52712020-06-22 16:37:42 +0200311 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300312}
313
314static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
315{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500316 kvm_lapic_set_reg(apic, APIC_LDR, id);
Paolo Bonzini44d52712020-06-22 16:37:42 +0200317 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300318}
319
Wanpeng Liae6f2492020-08-19 16:55:26 +0800320static inline void kvm_apic_set_dfr(struct kvm_lapic *apic, u32 val)
321{
322 kvm_lapic_set_reg(apic, APIC_DFR, val);
323 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
324}
325
Dr. David Alan Gilberte872fa92017-11-17 11:52:49 +0000326static inline u32 kvm_apic_calc_x2apic_ldr(u32 id)
327{
328 return ((id >> 4) << 16) | (1 << (id & 0xf));
329}
330
Radim Krčmářa92e2542016-07-12 22:09:22 +0200331static inline void kvm_apic_set_x2apic_id(struct kvm_lapic *apic, u32 id)
Radim Krčmář257b9a52015-05-22 18:45:11 +0200332{
Dr. David Alan Gilberte872fa92017-11-17 11:52:49 +0000333 u32 ldr = kvm_apic_calc_x2apic_ldr(id);
Radim Krčmář257b9a52015-05-22 18:45:11 +0200334
Radim Krčmář6e500432016-12-15 18:06:46 +0100335 WARN_ON_ONCE(id != apic->vcpu->vcpu_id);
336
Radim Krčmářa92e2542016-07-12 22:09:22 +0200337 kvm_lapic_set_reg(apic, APIC_ID, id);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500338 kvm_lapic_set_reg(apic, APIC_LDR, ldr);
Paolo Bonzini44d52712020-06-22 16:37:42 +0200339 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Radim Krčmář257b9a52015-05-22 18:45:11 +0200340}
341
Eddie Dong97222cc2007-09-12 10:58:04 +0300342static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
343{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500344 return !(kvm_lapic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300345}
346
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800347static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
348{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100349 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800350}
351
Eddie Dong97222cc2007-09-12 10:58:04 +0300352static inline int apic_lvtt_period(struct kvm_lapic *apic)
353{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100354 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800355}
356
357static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
358{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100359 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300360}
361
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200362static inline int apic_lvt_nmi_mode(u32 lvt_val)
363{
364 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
365}
366
Gleb Natapovfc61b802009-07-05 17:39:35 +0300367void kvm_apic_set_version(struct kvm_vcpu *vcpu)
368{
369 struct kvm_lapic *apic = vcpu->arch.apic;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300370 u32 v = APIC_VERSION;
371
Paolo Bonzinibce87cc2016-01-08 13:48:51 +0100372 if (!lapic_in_kernel(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300373 return;
374
Vitaly Kuznetsov0bcc3fb2018-02-09 14:01:33 +0100375 /*
376 * KVM emulates 82093AA datasheet (with in-kernel IOAPIC implementation)
377 * which doesn't have EOI register; Some buggy OSes (e.g. Windows with
378 * Hyper-V role) disable EOI broadcast in lapic not checking for IOAPIC
379 * version first and level-triggered interrupts never get EOIed in
380 * IOAPIC.
381 */
Xiaoyao Li565b7822020-07-08 14:50:53 +0800382 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) &&
Vitaly Kuznetsov0bcc3fb2018-02-09 14:01:33 +0100383 !ioapic_in_kernel(vcpu->kvm))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300384 v |= APIC_LVR_DIRECTED_EOI;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500385 kvm_lapic_set_reg(apic, APIC_LVR, v);
Gleb Natapovfc61b802009-07-05 17:39:35 +0300386}
387
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500388static const unsigned int apic_lvt_mask[KVM_APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800389 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300390 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
391 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
392 LINT_MASK, LINT_MASK, /* LVT0-1 */
393 LVT_MASK /* LVTERR */
394};
395
396static int find_highest_vector(void *bitmap)
397{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900398 int vec;
399 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300400
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900401 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
402 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
403 reg = bitmap + REG_POS(vec);
404 if (*reg)
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100405 return __fls(*reg) + vec;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900406 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300407
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900408 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300409}
410
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300411static u8 count_vectors(void *bitmap)
412{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900413 int vec;
414 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300415 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900416
417 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
418 reg = bitmap + REG_POS(vec);
419 count += hweight32(*reg);
420 }
421
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300422 return count;
423}
424
Liran Alone7387b02017-12-24 18:12:54 +0200425bool __kvm_apic_update_irr(u32 *pir, void *regs, int *max_irr)
Yang Zhanga20ed542013-04-11 19:25:15 +0800426{
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100427 u32 i, vec;
Liran Alone7387b02017-12-24 18:12:54 +0200428 u32 pir_val, irr_val, prev_irr_val;
429 int max_updated_irr;
430
431 max_updated_irr = -1;
432 *max_irr = -1;
Yang Zhanga20ed542013-04-11 19:25:15 +0800433
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100434 for (i = vec = 0; i <= 7; i++, vec += 32) {
Paolo Bonziniad361092016-09-20 16:15:05 +0200435 pir_val = READ_ONCE(pir[i]);
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100436 irr_val = *((u32 *)(regs + APIC_IRR + i * 0x10));
Paolo Bonziniad361092016-09-20 16:15:05 +0200437 if (pir_val) {
Liran Alone7387b02017-12-24 18:12:54 +0200438 prev_irr_val = irr_val;
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100439 irr_val |= xchg(&pir[i], 0);
440 *((u32 *)(regs + APIC_IRR + i * 0x10)) = irr_val;
Liran Alone7387b02017-12-24 18:12:54 +0200441 if (prev_irr_val != irr_val) {
442 max_updated_irr =
443 __fls(irr_val ^ prev_irr_val) + vec;
444 }
Paolo Bonziniad361092016-09-20 16:15:05 +0200445 }
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100446 if (irr_val)
Liran Alone7387b02017-12-24 18:12:54 +0200447 *max_irr = __fls(irr_val) + vec;
Yang Zhanga20ed542013-04-11 19:25:15 +0800448 }
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100449
Liran Alone7387b02017-12-24 18:12:54 +0200450 return ((max_updated_irr != -1) &&
451 (max_updated_irr == *max_irr));
Yang Zhanga20ed542013-04-11 19:25:15 +0800452}
Wincy Van705699a2015-02-03 23:58:17 +0800453EXPORT_SYMBOL_GPL(__kvm_apic_update_irr);
454
Liran Alone7387b02017-12-24 18:12:54 +0200455bool kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir, int *max_irr)
Wincy Van705699a2015-02-03 23:58:17 +0800456{
457 struct kvm_lapic *apic = vcpu->arch.apic;
458
Liran Alone7387b02017-12-24 18:12:54 +0200459 return __kvm_apic_update_irr(pir, apic->regs, max_irr);
Wincy Van705699a2015-02-03 23:58:17 +0800460}
Yang Zhanga20ed542013-04-11 19:25:15 +0800461EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
462
Gleb Natapov33e4c682009-06-11 11:06:51 +0300463static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300464{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300465 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300466}
467
468static inline int apic_find_highest_irr(struct kvm_lapic *apic)
469{
470 int result;
471
Yang Zhangc7c9c562013-01-25 10:18:51 +0800472 /*
473 * Note that irr_pending is just a hint. It will be always
474 * true with virtual interrupt delivery enabled.
475 */
Gleb Natapov33e4c682009-06-11 11:06:51 +0300476 if (!apic->irr_pending)
477 return -1;
478
479 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300480 ASSERT(result == -1 || result >= 16);
481
482 return result;
483}
484
Gleb Natapov33e4c682009-06-11 11:06:51 +0300485static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
486{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800487 struct kvm_vcpu *vcpu;
488
489 vcpu = apic->vcpu;
490
Andrey Smetanind62caab2015-11-10 15:36:33 +0300491 if (unlikely(vcpu->arch.apicv_active)) {
Paolo Bonzinib95234c2016-12-19 13:57:33 +0100492 /* need to update RVI */
Wei Yangee171d22019-03-31 19:17:22 -0700493 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
Jason Baronb36464772021-01-14 22:27:56 -0500494 static_call(kvm_x86_hwapic_irr_update)(vcpu,
Paolo Bonzinib95234c2016-12-19 13:57:33 +0100495 apic_find_highest_irr(apic));
Nadav Amitf210f752014-11-16 23:49:07 +0200496 } else {
497 apic->irr_pending = false;
Wei Yangee171d22019-03-31 19:17:22 -0700498 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
Nadav Amitf210f752014-11-16 23:49:07 +0200499 if (apic_search_irr(apic) != -1)
500 apic->irr_pending = true;
Wanpeng Li56cc2402014-08-05 12:42:24 +0800501 }
Gleb Natapov33e4c682009-06-11 11:06:51 +0300502}
503
Sean Christopherson25bb2cf2020-08-12 10:51:29 -0700504void kvm_apic_clear_irr(struct kvm_vcpu *vcpu, int vec)
505{
506 apic_clear_irr(vec, vcpu->arch.apic);
507}
508EXPORT_SYMBOL_GPL(kvm_apic_clear_irr);
509
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300510static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
511{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800512 struct kvm_vcpu *vcpu;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200513
Wanpeng Li56cc2402014-08-05 12:42:24 +0800514 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
515 return;
516
517 vcpu = apic->vcpu;
518
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300519 /*
Wanpeng Li56cc2402014-08-05 12:42:24 +0800520 * With APIC virtualization enabled, all caching is disabled
521 * because the processor can modify ISR under the hood. Instead
522 * just set SVI.
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300523 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300524 if (unlikely(vcpu->arch.apicv_active))
Jason Baronb36464772021-01-14 22:27:56 -0500525 static_call(kvm_x86_hwapic_isr_update)(vcpu, vec);
Wanpeng Li56cc2402014-08-05 12:42:24 +0800526 else {
527 ++apic->isr_count;
528 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
529 /*
530 * ISR (in service register) bit is set when injecting an interrupt.
531 * The highest vector is injected. Thus the latest bit set matches
532 * the highest bit in ISR.
533 */
534 apic->highest_isr_cache = vec;
535 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300536}
537
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200538static inline int apic_find_highest_isr(struct kvm_lapic *apic)
539{
540 int result;
541
542 /*
543 * Note that isr_count is always 1, and highest_isr_cache
544 * is always -1, with APIC virtualization enabled.
545 */
546 if (!apic->isr_count)
547 return -1;
548 if (likely(apic->highest_isr_cache != -1))
549 return apic->highest_isr_cache;
550
551 result = find_highest_vector(apic->regs + APIC_ISR);
552 ASSERT(result == -1 || result >= 16);
553
554 return result;
555}
556
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300557static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
558{
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200559 struct kvm_vcpu *vcpu;
560 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
561 return;
562
563 vcpu = apic->vcpu;
564
565 /*
566 * We do get here for APIC virtualization enabled if the guest
567 * uses the Hyper-V APIC enlightenment. In this case we may need
568 * to trigger a new interrupt delivery by writing the SVI field;
569 * on the other hand isr_count and highest_isr_cache are unused
570 * and must be left alone.
571 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300572 if (unlikely(vcpu->arch.apicv_active))
Jason Baronb36464772021-01-14 22:27:56 -0500573 static_call(kvm_x86_hwapic_isr_update)(vcpu,
574 apic_find_highest_isr(apic));
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200575 else {
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300576 --apic->isr_count;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200577 BUG_ON(apic->isr_count < 0);
578 apic->highest_isr_cache = -1;
579 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300580}
581
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800582int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
583{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300584 /* This may race with setting of irr in __apic_accept_irq() and
585 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
586 * will cause vmexit immediately and the value will be recalculated
587 * on the next vmentry.
588 */
Paolo Bonzinif8543d62016-01-08 13:42:24 +0100589 return apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800590}
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100591EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800592
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200593static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +0800594 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100595 struct dest_map *dest_map);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200596
Yang Zhangb4f22252013-04-11 19:21:37 +0800597int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100598 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +0300599{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800600 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800601
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200602 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
Yang Zhangb4f22252013-04-11 19:21:37 +0800603 irq->level, irq->trig_mode, dest_map);
Eddie Dong97222cc2007-09-12 10:58:04 +0300604}
605
Miaohe Lin1a686232019-11-09 17:46:49 +0800606static int __pv_send_ipi(unsigned long *ipi_bitmap, struct kvm_apic_map *map,
607 struct kvm_lapic_irq *irq, u32 min)
608{
609 int i, count = 0;
610 struct kvm_vcpu *vcpu;
611
612 if (min > map->max_apic_id)
613 return 0;
614
615 for_each_set_bit(i, ipi_bitmap,
616 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
617 if (map->phys_map[min + i]) {
618 vcpu = map->phys_map[min + i]->vcpu;
619 count += kvm_apic_set_irq(vcpu, irq, NULL);
620 }
621 }
622
623 return count;
624}
625
Wanpeng Li4180bf12018-07-23 14:39:54 +0800626int kvm_pv_send_ipi(struct kvm *kvm, unsigned long ipi_bitmap_low,
Wanpeng Libdf7ffc2018-08-30 10:03:30 +0800627 unsigned long ipi_bitmap_high, u32 min,
Wanpeng Li4180bf12018-07-23 14:39:54 +0800628 unsigned long icr, int op_64_bit)
629{
Wanpeng Li4180bf12018-07-23 14:39:54 +0800630 struct kvm_apic_map *map;
Wanpeng Li4180bf12018-07-23 14:39:54 +0800631 struct kvm_lapic_irq irq = {0};
632 int cluster_size = op_64_bit ? 64 : 32;
Miaohe Lin1a686232019-11-09 17:46:49 +0800633 int count;
634
635 if (icr & (APIC_DEST_MASK | APIC_SHORT_MASK))
636 return -KVM_EINVAL;
Wanpeng Li4180bf12018-07-23 14:39:54 +0800637
638 irq.vector = icr & APIC_VECTOR_MASK;
639 irq.delivery_mode = icr & APIC_MODE_MASK;
640 irq.level = (icr & APIC_INT_ASSERT) != 0;
641 irq.trig_mode = icr & APIC_INT_LEVELTRIG;
642
Wanpeng Li4180bf12018-07-23 14:39:54 +0800643 rcu_read_lock();
644 map = rcu_dereference(kvm->arch.apic_map);
645
Miaohe Lin1a686232019-11-09 17:46:49 +0800646 count = -EOPNOTSUPP;
647 if (likely(map)) {
648 count = __pv_send_ipi(&ipi_bitmap_low, map, &irq, min);
649 min += cluster_size;
650 count += __pv_send_ipi(&ipi_bitmap_high, map, &irq, min);
Wanpeng Li38ab0122018-11-20 09:39:30 +0800651 }
652
Wanpeng Li4180bf12018-07-23 14:39:54 +0800653 rcu_read_unlock();
654 return count;
655}
656
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300657static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
658{
Paolo Bonzini4e335d92017-05-02 16:20:18 +0200659
660 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
661 sizeof(val));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300662}
663
664static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
665{
Paolo Bonzini4e335d92017-05-02 16:20:18 +0200666
667 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
668 sizeof(*val));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300669}
670
671static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
672{
673 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
674}
675
676static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
677{
678 u8 val;
Miaohe Lin23520b22020-02-21 22:04:46 +0800679 if (pv_eoi_get_user(vcpu, &val) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800680 printk(KERN_WARNING "Can't read EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800681 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Miaohe Lin23520b22020-02-21 22:04:46 +0800682 return false;
683 }
Stephen Zhangde7860c82020-12-18 15:51:37 +0800684 return val & KVM_PV_EOI_ENABLED;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300685}
686
687static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
688{
689 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800690 printk(KERN_WARNING "Can't set EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800691 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300692 return;
693 }
694 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
695}
696
697static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
698{
699 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800700 printk(KERN_WARNING "Can't clear EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800701 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300702 return;
703 }
704 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
705}
706
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100707static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
708{
Paolo Bonzini3d927892016-12-19 13:29:03 +0100709 int highest_irr;
Liran Alonfa59cc02017-12-24 18:12:53 +0200710 if (apic->vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -0500711 highest_irr = static_call(kvm_x86_sync_pir_to_irr)(apic->vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100712 else
713 highest_irr = apic_find_highest_irr(apic);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100714 if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
715 return -1;
716 return highest_irr;
717}
718
719static bool __apic_update_ppr(struct kvm_lapic *apic, u32 *new_ppr)
Eddie Dong97222cc2007-09-12 10:58:04 +0300720{
Avi Kivity3842d132010-07-27 12:30:24 +0300721 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300722 int isr;
723
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500724 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
725 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300726 isr = apic_find_highest_isr(apic);
727 isrv = (isr != -1) ? isr : 0;
728
729 if ((tpr & 0xf0) >= (isrv & 0xf0))
730 ppr = tpr & 0xff;
731 else
732 ppr = isrv & 0xf0;
733
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100734 *new_ppr = ppr;
735 if (old_ppr != ppr)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500736 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100737
738 return ppr < old_ppr;
739}
740
741static void apic_update_ppr(struct kvm_lapic *apic)
742{
743 u32 ppr;
744
Paolo Bonzini26fbbee2016-12-18 13:54:58 +0100745 if (__apic_update_ppr(apic, &ppr) &&
746 apic_has_interrupt_for_ppr(apic, ppr) != -1)
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100747 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300748}
749
Paolo Bonzinieb90f342016-12-18 14:02:21 +0100750void kvm_apic_update_ppr(struct kvm_vcpu *vcpu)
751{
752 apic_update_ppr(vcpu->arch.apic);
753}
754EXPORT_SYMBOL_GPL(kvm_apic_update_ppr);
755
Eddie Dong97222cc2007-09-12 10:58:04 +0300756static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
757{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500758 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
Eddie Dong97222cc2007-09-12 10:58:04 +0300759 apic_update_ppr(apic);
760}
761
Radim Krčmář03d22492015-02-12 19:41:31 +0100762static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300763{
Radim Krčmářb4535b52016-12-15 18:06:47 +0100764 return mda == (apic_x2apic_mode(apic) ?
765 X2APIC_BROADCAST : APIC_BROADCAST);
Eddie Dong97222cc2007-09-12 10:58:04 +0300766}
767
Radim Krčmář03d22492015-02-12 19:41:31 +0100768static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
Nadav Amit394457a2014-10-03 00:30:52 +0300769{
Radim Krčmář03d22492015-02-12 19:41:31 +0100770 if (kvm_apic_broadcast(apic, mda))
771 return true;
772
773 if (apic_x2apic_mode(apic))
Radim Krčmář6e500432016-12-15 18:06:46 +0100774 return mda == kvm_x2apic_id(apic);
Radim Krčmář03d22492015-02-12 19:41:31 +0100775
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100776 /*
777 * Hotplug hack: Make LAPIC in xAPIC mode also accept interrupts as if
778 * it were in x2APIC mode. Hotplugged VCPUs start in xAPIC mode and
779 * this allows unique addressing of VCPUs with APIC ID over 0xff.
780 * The 0xff condition is needed because writeable xAPIC ID.
781 */
782 if (kvm_x2apic_id(apic) > 0xff && mda == kvm_x2apic_id(apic))
783 return true;
784
Radim Krčmářb4535b52016-12-15 18:06:47 +0100785 return mda == kvm_xapic_id(apic);
Nadav Amit394457a2014-10-03 00:30:52 +0300786}
787
Radim Krčmář52c233a2015-01-29 22:48:48 +0100788static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300789{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300790 u32 logical_id;
791
Nadav Amit394457a2014-10-03 00:30:52 +0300792 if (kvm_apic_broadcast(apic, mda))
Radim Krčmář9368b562015-01-29 22:48:49 +0100793 return true;
Nadav Amit394457a2014-10-03 00:30:52 +0300794
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500795 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300796
Radim Krčmář9368b562015-01-29 22:48:49 +0100797 if (apic_x2apic_mode(apic))
Radim Krčmář8a395362015-01-29 22:48:51 +0100798 return ((logical_id >> 16) == (mda >> 16))
799 && (logical_id & mda & 0xffff) != 0;
Radim Krčmář9368b562015-01-29 22:48:49 +0100800
801 logical_id = GET_APIC_LOGICAL_ID(logical_id);
Eddie Dong97222cc2007-09-12 10:58:04 +0300802
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500803 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300804 case APIC_DFR_FLAT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100805 return (logical_id & mda) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300806 case APIC_DFR_CLUSTER:
Radim Krčmář9368b562015-01-29 22:48:49 +0100807 return ((logical_id >> 4) == (mda >> 4))
808 && (logical_id & mda & 0xf) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300809 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100810 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300811 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300812}
813
Radim Krčmářc5192652016-07-12 22:09:28 +0200814/* The KVM local APIC implementation has two quirks:
815 *
Radim Krčmářb4535b52016-12-15 18:06:47 +0100816 * - Real hardware delivers interrupts destined to x2APIC ID > 0xff to LAPICs
817 * in xAPIC mode if the "destination & 0xff" matches its xAPIC ID.
818 * KVM doesn't do that aliasing.
Radim Krčmářc5192652016-07-12 22:09:28 +0200819 *
820 * - in-kernel IOAPIC messages have to be delivered directly to
821 * x2APIC, because the kernel does not support interrupt remapping.
822 * In order to support broadcast without interrupt remapping, x2APIC
823 * rewrites the destination of non-IPI messages from APIC_BROADCAST
824 * to X2APIC_BROADCAST.
825 *
826 * The broadcast quirk can be disabled with KVM_CAP_X2APIC_API. This is
827 * important when userspace wants to use x2APIC-format MSIs, because
828 * APIC_BROADCAST (0xff) is a legal route for "cluster 0, CPUs 0-7".
Radim Krčmář03d22492015-02-12 19:41:31 +0100829 */
Radim Krčmářc5192652016-07-12 22:09:28 +0200830static u32 kvm_apic_mda(struct kvm_vcpu *vcpu, unsigned int dest_id,
831 struct kvm_lapic *source, struct kvm_lapic *target)
Radim Krčmář03d22492015-02-12 19:41:31 +0100832{
833 bool ipi = source != NULL;
Radim Krčmář03d22492015-02-12 19:41:31 +0100834
Radim Krčmářc5192652016-07-12 22:09:28 +0200835 if (!vcpu->kvm->arch.x2apic_broadcast_quirk_disabled &&
Radim Krčmářb4535b52016-12-15 18:06:47 +0100836 !ipi && dest_id == APIC_BROADCAST && apic_x2apic_mode(target))
Radim Krčmář03d22492015-02-12 19:41:31 +0100837 return X2APIC_BROADCAST;
838
Radim Krčmářb4535b52016-12-15 18:06:47 +0100839 return dest_id;
Radim Krčmář03d22492015-02-12 19:41:31 +0100840}
841
Radim Krčmář52c233a2015-01-29 22:48:48 +0100842bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Peter Xu5c69d5c2019-12-04 20:07:20 +0100843 int shorthand, unsigned int dest, int dest_mode)
Eddie Dong97222cc2007-09-12 10:58:04 +0300844{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800845 struct kvm_lapic *target = vcpu->arch.apic;
Radim Krčmářc5192652016-07-12 22:09:28 +0200846 u32 mda = kvm_apic_mda(vcpu, dest, source, target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300847
Zachary Amsdenbd371392010-06-14 11:42:15 -1000848 ASSERT(target);
Peter Xu5c69d5c2019-12-04 20:07:20 +0100849 switch (shorthand) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300850 case APIC_DEST_NOSHORT:
Radim Krčmář3697f302015-01-29 22:48:50 +0100851 if (dest_mode == APIC_DEST_PHYSICAL)
Radim Krčmář03d22492015-02-12 19:41:31 +0100852 return kvm_apic_match_physical_addr(target, mda);
Gleb Natapov343f94f2009-03-05 16:34:54 +0200853 else
Radim Krčmář03d22492015-02-12 19:41:31 +0100854 return kvm_apic_match_logical_addr(target, mda);
Eddie Dong97222cc2007-09-12 10:58:04 +0300855 case APIC_DEST_SELF:
Radim Krčmář9368b562015-01-29 22:48:49 +0100856 return target == source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300857 case APIC_DEST_ALLINC:
Radim Krčmář9368b562015-01-29 22:48:49 +0100858 return true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300859 case APIC_DEST_ALLBUT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100860 return target != source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300861 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100862 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300863 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300864}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500865EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
Eddie Dong97222cc2007-09-12 10:58:04 +0300866
Feng Wu520040142016-01-25 16:53:33 +0800867int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
868 const unsigned long *bitmap, u32 bitmap_size)
869{
870 u32 mod;
871 int i, idx = -1;
872
873 mod = vector % dest_vcpus;
874
875 for (i = 0; i <= mod; i++) {
876 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
877 BUG_ON(idx == bitmap_size);
878 }
879
880 return idx;
881}
882
Radim Krčmář4efd8052016-02-12 15:00:15 +0100883static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
884{
885 if (!kvm->arch.disabled_lapic_found) {
886 kvm->arch.disabled_lapic_found = true;
887 printk(KERN_INFO
888 "Disabled LAPIC found during irq injection\n");
889 }
890}
891
Radim Krčmářc5192652016-07-12 22:09:28 +0200892static bool kvm_apic_is_broadcast_dest(struct kvm *kvm, struct kvm_lapic **src,
893 struct kvm_lapic_irq *irq, struct kvm_apic_map *map)
894{
895 if (kvm->arch.x2apic_broadcast_quirk_disabled) {
896 if ((irq->dest_id == APIC_BROADCAST &&
897 map->mode != KVM_APIC_MODE_X2APIC))
898 return true;
899 if (irq->dest_id == X2APIC_BROADCAST)
900 return true;
901 } else {
902 bool x2apic_ipi = src && *src && apic_x2apic_mode(*src);
903 if (irq->dest_id == (x2apic_ipi ?
904 X2APIC_BROADCAST : APIC_BROADCAST))
905 return true;
906 }
907
908 return false;
909}
910
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200911/* Return true if the interrupt can be handled by using *bitmap as index mask
912 * for valid destinations in *dst array.
913 * Return false if kvm_apic_map_get_dest_lapic did nothing useful.
914 * Note: we may have zero kvm_lapic destinations when we return true, which
915 * means that the interrupt should be dropped. In this case, *bitmap would be
916 * zero and *dst undefined.
917 */
918static inline bool kvm_apic_map_get_dest_lapic(struct kvm *kvm,
919 struct kvm_lapic **src, struct kvm_lapic_irq *irq,
920 struct kvm_apic_map *map, struct kvm_lapic ***dst,
921 unsigned long *bitmap)
922{
923 int i, lowest;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200924
925 if (irq->shorthand == APIC_DEST_SELF && src) {
926 *dst = src;
927 *bitmap = 1;
928 return true;
929 } else if (irq->shorthand)
930 return false;
931
Radim Krčmářc5192652016-07-12 22:09:28 +0200932 if (!map || kvm_apic_is_broadcast_dest(kvm, src, irq, map))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200933 return false;
934
935 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200936 if (irq->dest_id > map->max_apic_id) {
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200937 *bitmap = 0;
938 } else {
Paolo Bonzini1d487e92019-04-11 11:16:47 +0200939 u32 dest_id = array_index_nospec(irq->dest_id, map->max_apic_id + 1);
940 *dst = &map->phys_map[dest_id];
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200941 *bitmap = 1;
942 }
943 return true;
944 }
945
Radim Krčmáře45115b2016-07-12 22:09:19 +0200946 *bitmap = 0;
947 if (!kvm_apic_map_get_logical_dest(map, irq->dest_id, dst,
948 (u16 *)bitmap))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200949 return false;
950
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200951 if (!kvm_lowest_prio_delivery(irq))
952 return true;
953
954 if (!kvm_vector_hashing_enabled()) {
955 lowest = -1;
956 for_each_set_bit(i, bitmap, 16) {
957 if (!(*dst)[i])
958 continue;
959 if (lowest < 0)
960 lowest = i;
961 else if (kvm_apic_compare_prio((*dst)[i]->vcpu,
962 (*dst)[lowest]->vcpu) < 0)
963 lowest = i;
964 }
965 } else {
966 if (!*bitmap)
967 return true;
968
969 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap),
970 bitmap, 16);
971
972 if (!(*dst)[lowest]) {
973 kvm_apic_disabled_lapic_found(kvm);
974 *bitmap = 0;
975 return true;
976 }
977 }
978
979 *bitmap = (lowest >= 0) ? 1 << lowest : 0;
980
981 return true;
982}
983
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300984bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100985 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300986{
987 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200988 unsigned long bitmap;
989 struct kvm_lapic **dst = NULL;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300990 int i;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200991 bool ret;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300992
993 *r = -1;
994
995 if (irq->shorthand == APIC_DEST_SELF) {
Yang Zhangb4f22252013-04-11 19:21:37 +0800996 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300997 return true;
998 }
999
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001000 rcu_read_lock();
1001 map = rcu_dereference(kvm->arch.apic_map);
1002
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001003 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dst, &bitmap);
Paolo Bonzini0624fca2018-10-01 16:07:18 +02001004 if (ret) {
1005 *r = 0;
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001006 for_each_set_bit(i, &bitmap, 16) {
1007 if (!dst[i])
1008 continue;
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001009 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
Radim Krčmář3548a252015-02-12 19:41:33 +01001010 }
Paolo Bonzini0624fca2018-10-01 16:07:18 +02001011 }
Radim Krčmář3548a252015-02-12 19:41:33 +01001012
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001013 rcu_read_unlock();
1014 return ret;
1015}
1016
Feng Wu6228a0d2016-01-25 16:53:34 +08001017/*
Miaohe Lin00116792019-12-11 14:26:23 +08001018 * This routine tries to handle interrupts in posted mode, here is how
Feng Wu6228a0d2016-01-25 16:53:34 +08001019 * it deals with different cases:
1020 * - For single-destination interrupts, handle it in posted mode
1021 * - Else if vector hashing is enabled and it is a lowest-priority
1022 * interrupt, handle it in posted mode and use the following mechanism
Miaohe Lin67b0ae42019-12-11 14:26:22 +08001023 * to find the destination vCPU.
Feng Wu6228a0d2016-01-25 16:53:34 +08001024 * 1. For lowest-priority interrupts, store all the possible
1025 * destination vCPUs in an array.
1026 * 2. Use "guest vector % max number of destination vCPUs" to find
1027 * the right destination vCPU in the array for the lowest-priority
1028 * interrupt.
1029 * - Otherwise, use remapped mode to inject the interrupt.
1030 */
Feng Wu8feb4a02015-09-18 22:29:47 +08001031bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
1032 struct kvm_vcpu **dest_vcpu)
1033{
1034 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001035 unsigned long bitmap;
1036 struct kvm_lapic **dst = NULL;
Feng Wu8feb4a02015-09-18 22:29:47 +08001037 bool ret = false;
Feng Wu8feb4a02015-09-18 22:29:47 +08001038
1039 if (irq->shorthand)
1040 return false;
1041
1042 rcu_read_lock();
1043 map = rcu_dereference(kvm->arch.apic_map);
1044
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001045 if (kvm_apic_map_get_dest_lapic(kvm, NULL, irq, map, &dst, &bitmap) &&
1046 hweight16(bitmap) == 1) {
1047 unsigned long i = find_first_bit(&bitmap, 16);
Feng Wu8feb4a02015-09-18 22:29:47 +08001048
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001049 if (dst[i]) {
1050 *dest_vcpu = dst[i]->vcpu;
1051 ret = true;
Feng Wu8feb4a02015-09-18 22:29:47 +08001052 }
Feng Wu8feb4a02015-09-18 22:29:47 +08001053 }
1054
Feng Wu8feb4a02015-09-18 22:29:47 +08001055 rcu_read_unlock();
1056 return ret;
1057}
1058
Eddie Dong97222cc2007-09-12 10:58:04 +03001059/*
1060 * Add a pending IRQ into lapic.
1061 * Return 1 if successfully added and 0 if discarded.
1062 */
1063static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +08001064 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001065 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +03001066{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001067 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +03001068 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +03001069
Paolo Bonzinia183b632014-09-11 11:51:02 +02001070 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
1071 trig_mode, vector);
Eddie Dong97222cc2007-09-12 10:58:04 +03001072 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001073 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +02001074 vcpu->arch.apic_arb_prio++;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001075 fallthrough;
Gleb Natapove1035712009-03-05 16:34:59 +02001076 case APIC_DM_FIXED:
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001077 if (unlikely(trig_mode && !level))
1078 break;
1079
Eddie Dong97222cc2007-09-12 10:58:04 +03001080 /* FIXME add logic for vcpu on reset */
1081 if (unlikely(!apic_enabled(apic)))
1082 break;
1083
Jan Kiszka11f5cc02013-07-25 09:58:45 +02001084 result = 1;
1085
Joerg Roedel9daa5002016-02-29 16:04:44 +01001086 if (dest_map) {
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001087 __set_bit(vcpu->vcpu_id, dest_map->map);
Joerg Roedel9daa5002016-02-29 16:04:44 +01001088 dest_map->vectors[vcpu->vcpu_id] = vector;
1089 }
Avi Kivitya5d36f82009-12-29 12:42:16 +02001090
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001091 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
1092 if (trig_mode)
Wei Yangee171d22019-03-31 19:17:22 -07001093 kvm_lapic_set_vector(vector,
1094 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001095 else
Wei Yangee171d22019-03-31 19:17:22 -07001096 kvm_lapic_clear_vector(vector,
1097 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001098 }
1099
Jason Baronb36464772021-01-14 22:27:56 -05001100 if (static_call(kvm_x86_deliver_posted_interrupt)(vcpu, vector)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001101 kvm_lapic_set_irr(vector, apic);
Yang Zhang5a717852013-04-11 19:25:16 +08001102 kvm_make_request(KVM_REQ_EVENT, vcpu);
1103 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001104 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001105 break;
1106
1107 case APIC_DM_REMRD:
Raghavendra K T24d21662013-08-26 14:18:35 +05301108 result = 1;
1109 vcpu->arch.pv.pv_unhalted = 1;
1110 kvm_make_request(KVM_REQ_EVENT, vcpu);
1111 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001112 break;
1113
1114 case APIC_DM_SMI:
Paolo Bonzini64d60672015-05-07 11:36:11 +02001115 result = 1;
1116 kvm_make_request(KVM_REQ_SMI, vcpu);
1117 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001118 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001119
Eddie Dong97222cc2007-09-12 10:58:04 +03001120 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001121 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001122 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +02001123 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001124 break;
1125
1126 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +01001127 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001128 result = 1;
Jan Kiszka66450a22013-03-13 12:42:34 +01001129 /* assumes that there are only KVM_APIC_INIT/SIPI */
1130 apic->pending_events = (1UL << KVM_APIC_INIT);
Avi Kivity3842d132010-07-27 12:30:24 +03001131 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001132 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001133 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001134 break;
1135
1136 case APIC_DM_STARTUP:
Jan Kiszka66450a22013-03-13 12:42:34 +01001137 result = 1;
1138 apic->sipi_vector = vector;
1139 /* make sure sipi_vector is visible for the receiver */
1140 smp_wmb();
1141 set_bit(KVM_APIC_SIPI, &apic->pending_events);
1142 kvm_make_request(KVM_REQ_EVENT, vcpu);
1143 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001144 break;
1145
Jan Kiszka23930f92008-09-26 09:30:52 +02001146 case APIC_DM_EXTINT:
1147 /*
1148 * Should only be called by kvm_apic_local_deliver() with LVT0,
1149 * before NMI watchdog was enabled. Already handled by
1150 * kvm_apic_accept_pic_intr().
1151 */
1152 break;
1153
Eddie Dong97222cc2007-09-12 10:58:04 +03001154 default:
1155 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
1156 delivery_mode);
1157 break;
1158 }
1159 return result;
1160}
1161
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001162/*
1163 * This routine identifies the destination vcpus mask meant to receive the
1164 * IOAPIC interrupts. It either uses kvm_apic_map_get_dest_lapic() to find
1165 * out the destination vcpus array and set the bitmap or it traverses to
1166 * each available vcpu to identify the same.
1167 */
1168void kvm_bitmap_or_dest_vcpus(struct kvm *kvm, struct kvm_lapic_irq *irq,
1169 unsigned long *vcpu_bitmap)
1170{
1171 struct kvm_lapic **dest_vcpu = NULL;
1172 struct kvm_lapic *src = NULL;
1173 struct kvm_apic_map *map;
1174 struct kvm_vcpu *vcpu;
1175 unsigned long bitmap;
1176 int i, vcpu_idx;
1177 bool ret;
1178
1179 rcu_read_lock();
1180 map = rcu_dereference(kvm->arch.apic_map);
1181
1182 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dest_vcpu,
1183 &bitmap);
1184 if (ret) {
1185 for_each_set_bit(i, &bitmap, 16) {
1186 if (!dest_vcpu[i])
1187 continue;
1188 vcpu_idx = dest_vcpu[i]->vcpu->vcpu_idx;
1189 __set_bit(vcpu_idx, vcpu_bitmap);
1190 }
1191 } else {
1192 kvm_for_each_vcpu(i, vcpu, kvm) {
1193 if (!kvm_apic_present(vcpu))
1194 continue;
1195 if (!kvm_apic_match_dest(vcpu, NULL,
Peter Xub4b29632019-12-04 20:07:16 +01001196 irq->shorthand,
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001197 irq->dest_id,
1198 irq->dest_mode))
1199 continue;
1200 __set_bit(i, vcpu_bitmap);
1201 }
1202 }
1203 rcu_read_unlock();
1204}
1205
Gleb Natapove1035712009-03-05 16:34:59 +02001206int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +03001207{
Gleb Natapove1035712009-03-05 16:34:59 +02001208 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +08001209}
1210
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001211static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
1212{
Andrey Smetanin63086302015-11-10 15:36:32 +03001213 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001214}
1215
Yang Zhangc7c9c562013-01-25 10:18:51 +08001216static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
1217{
Steve Rutherford7543a632015-07-29 23:21:41 -07001218 int trigger_mode;
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001219
Steve Rutherford7543a632015-07-29 23:21:41 -07001220 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
1221 if (!kvm_ioapic_handles_vector(apic, vector))
1222 return;
1223
1224 /* Request a KVM exit to inform the userspace IOAPIC. */
1225 if (irqchip_split(apic->vcpu->kvm)) {
1226 apic->vcpu->arch.pending_ioapic_eoi = vector;
1227 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1228 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08001229 }
Steve Rutherford7543a632015-07-29 23:21:41 -07001230
1231 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1232 trigger_mode = IOAPIC_LEVEL_TRIG;
1233 else
1234 trigger_mode = IOAPIC_EDGE_TRIG;
1235
1236 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
Yang Zhangc7c9c562013-01-25 10:18:51 +08001237}
1238
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001239static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001240{
1241 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001242
1243 trace_kvm_eoi(apic, vector);
1244
Eddie Dong97222cc2007-09-12 10:58:04 +03001245 /*
1246 * Not every write EOI will has corresponding ISR,
1247 * one example is when Kernel check timer on setup_IO_APIC
1248 */
1249 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001250 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001251
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001252 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001253 apic_update_ppr(apic);
1254
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01001255 if (to_hv_vcpu(apic->vcpu) &&
1256 test_bit(vector, to_hv_synic(apic->vcpu)->vec_bitmap))
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001257 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1258
Yang Zhangc7c9c562013-01-25 10:18:51 +08001259 kvm_ioapic_send_eoi(apic, vector);
Avi Kivity3842d132010-07-27 12:30:24 +03001260 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001261 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001262}
1263
Yang Zhangc7c9c562013-01-25 10:18:51 +08001264/*
1265 * this interface assumes a trap-like exit, which has already finished
1266 * desired side effect including vISR and vPPR update.
1267 */
1268void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1269{
1270 struct kvm_lapic *apic = vcpu->arch.apic;
1271
1272 trace_kvm_eoi(apic, vector);
1273
1274 kvm_ioapic_send_eoi(apic, vector);
1275 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1276}
1277EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1278
Wanpeng Lid5361672020-03-26 10:20:02 +08001279void kvm_apic_send_ipi(struct kvm_lapic *apic, u32 icr_low, u32 icr_high)
Eddie Dong97222cc2007-09-12 10:58:04 +03001280{
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001281 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +03001282
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001283 irq.vector = icr_low & APIC_VECTOR_MASK;
1284 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1285 irq.dest_mode = icr_low & APIC_DEST_MASK;
Paolo Bonzinib7cb2232015-04-21 14:57:05 +02001286 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001287 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1288 irq.shorthand = icr_low & APIC_SHORT_MASK;
James Sullivan93bbf0b2015-03-18 19:26:03 -06001289 irq.msi_redir_hint = false;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001290 if (apic_x2apic_mode(apic))
1291 irq.dest_id = icr_high;
1292 else
1293 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +03001294
Gleb Natapov1000ff82009-07-07 16:00:57 +03001295 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1296
Yang Zhangb4f22252013-04-11 19:21:37 +08001297 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03001298}
1299
1300static u32 apic_get_tmcct(struct kvm_lapic *apic)
1301{
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001302 ktime_t remaining, now;
Marcelo Tosattib682b812009-02-10 20:41:41 -02001303 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001304 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +03001305
1306 ASSERT(apic != NULL);
1307
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001308 /* if initial count is 0, current count should also be 0 */
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001309 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
Andy Honigb963a222013-11-19 14:12:18 -08001310 apic->lapic_timer.period == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001311 return 0;
1312
Paolo Bonzini55878592016-10-25 15:23:49 +02001313 now = ktime_get();
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001314 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
Marcelo Tosattib682b812009-02-10 20:41:41 -02001315 if (ktime_to_ns(remaining) < 0)
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001316 remaining = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001317
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001318 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1319 tmcct = div64_u64(ns,
1320 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +03001321
1322 return tmcct;
1323}
1324
Avi Kivityb209749f2007-10-22 16:50:39 +02001325static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1326{
1327 struct kvm_vcpu *vcpu = apic->vcpu;
1328 struct kvm_run *run = vcpu->run;
1329
Avi Kivitya8eeb042010-05-10 12:34:53 +03001330 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001331 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +02001332 run->tpr_access.is_write = write;
1333}
1334
1335static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1336{
1337 if (apic->vcpu->arch.tpr_access_reporting)
1338 __report_tpr_access(apic, write);
1339}
1340
Eddie Dong97222cc2007-09-12 10:58:04 +03001341static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1342{
1343 u32 val = 0;
1344
1345 if (offset >= LAPIC_MMIO_LENGTH)
1346 return 0;
1347
1348 switch (offset) {
1349 case APIC_ARBPRI:
Eddie Dong97222cc2007-09-12 10:58:04 +03001350 break;
1351
1352 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001353 if (apic_lvtt_tscdeadline(apic))
1354 return 0;
1355
Eddie Dong97222cc2007-09-12 10:58:04 +03001356 val = apic_get_tmcct(apic);
1357 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +03001358 case APIC_PROCPRI:
1359 apic_update_ppr(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001360 val = kvm_lapic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +03001361 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02001362 case APIC_TASKPRI:
1363 report_tpr_access(apic, false);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001364 fallthrough;
Eddie Dong97222cc2007-09-12 10:58:04 +03001365 default:
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001366 val = kvm_lapic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +03001367 break;
1368 }
1369
1370 return val;
1371}
1372
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001373static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1374{
1375 return container_of(dev, struct kvm_lapic, dev);
1376}
1377
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001378#define APIC_REG_MASK(reg) (1ull << ((reg) >> 4))
1379#define APIC_REGS_MASK(first, count) \
1380 (APIC_REG_MASK(first) * ((1ull << (count)) - 1))
1381
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001382int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001383 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001384{
Eddie Dong97222cc2007-09-12 10:58:04 +03001385 unsigned char alignment = offset & 0xf;
1386 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +08001387 /* this bitmask has a bit cleared for each reserved register */
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001388 u64 valid_reg_mask =
1389 APIC_REG_MASK(APIC_ID) |
1390 APIC_REG_MASK(APIC_LVR) |
1391 APIC_REG_MASK(APIC_TASKPRI) |
1392 APIC_REG_MASK(APIC_PROCPRI) |
1393 APIC_REG_MASK(APIC_LDR) |
1394 APIC_REG_MASK(APIC_DFR) |
1395 APIC_REG_MASK(APIC_SPIV) |
1396 APIC_REGS_MASK(APIC_ISR, APIC_ISR_NR) |
1397 APIC_REGS_MASK(APIC_TMR, APIC_ISR_NR) |
1398 APIC_REGS_MASK(APIC_IRR, APIC_ISR_NR) |
1399 APIC_REG_MASK(APIC_ESR) |
1400 APIC_REG_MASK(APIC_ICR) |
1401 APIC_REG_MASK(APIC_ICR2) |
1402 APIC_REG_MASK(APIC_LVTT) |
1403 APIC_REG_MASK(APIC_LVTTHMR) |
1404 APIC_REG_MASK(APIC_LVTPC) |
1405 APIC_REG_MASK(APIC_LVT0) |
1406 APIC_REG_MASK(APIC_LVT1) |
1407 APIC_REG_MASK(APIC_LVTERR) |
1408 APIC_REG_MASK(APIC_TMICT) |
1409 APIC_REG_MASK(APIC_TMCCT) |
1410 APIC_REG_MASK(APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001411
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001412 /* ARBPRI is not valid on x2APIC */
1413 if (!apic_x2apic_mode(apic))
1414 valid_reg_mask |= APIC_REG_MASK(APIC_ARBPRI);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001415
Jim Mattson218bf772021-06-02 13:52:24 -07001416 if (alignment + len > 4)
1417 return 1;
1418
Yi Wang0d888002019-07-06 01:08:48 +08001419 if (offset > 0x3f0 || !(valid_reg_mask & APIC_REG_MASK(offset)))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001420 return 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001421
Eddie Dong97222cc2007-09-12 10:58:04 +03001422 result = __apic_read(apic, offset & ~0xf);
1423
Marcelo Tosatti229456f2009-06-17 09:22:14 -03001424 trace_kvm_apic_read(offset, result);
1425
Eddie Dong97222cc2007-09-12 10:58:04 +03001426 switch (len) {
1427 case 1:
1428 case 2:
1429 case 4:
1430 memcpy(data, (char *)&result + alignment, len);
1431 break;
1432 default:
1433 printk(KERN_ERR "Local APIC read with len = %x, "
1434 "should be 1,2, or 4 instead\n", len);
1435 break;
1436 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001437 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001438}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001439EXPORT_SYMBOL_GPL(kvm_lapic_reg_read);
Eddie Dong97222cc2007-09-12 10:58:04 +03001440
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001441static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1442{
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001443 return addr >= apic->base_address &&
1444 addr < apic->base_address + LAPIC_MMIO_LENGTH;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001445}
1446
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001447static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001448 gpa_t address, int len, void *data)
1449{
1450 struct kvm_lapic *apic = to_lapic(this);
1451 u32 offset = address - apic->base_address;
1452
1453 if (!apic_mmio_in_range(apic, address))
1454 return -EOPNOTSUPP;
1455
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001456 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1457 if (!kvm_check_has_quirk(vcpu->kvm,
1458 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1459 return -EOPNOTSUPP;
1460
1461 memset(data, 0xff, len);
1462 return 0;
1463 }
1464
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001465 kvm_lapic_reg_read(apic, offset, len, data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001466
1467 return 0;
1468}
1469
Eddie Dong97222cc2007-09-12 10:58:04 +03001470static void update_divide_count(struct kvm_lapic *apic)
1471{
1472 u32 tmp1, tmp2, tdcr;
1473
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001474 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001475 tmp1 = tdcr & 0xf;
1476 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001477 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +03001478}
1479
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001480static void limit_periodic_timer_frequency(struct kvm_lapic *apic)
1481{
1482 /*
1483 * Do not allow the guest to program periodic timers with small
1484 * interval, since the hrtimers are not throttled by the host
1485 * scheduler.
1486 */
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001487 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001488 s64 min_period = min_timer_period_us * 1000LL;
1489
1490 if (apic->lapic_timer.period < min_period) {
1491 pr_info_ratelimited(
1492 "kvm: vcpu %i: requested %lld ns "
1493 "lapic timer period limited to %lld ns\n",
1494 apic->vcpu->vcpu_id,
1495 apic->lapic_timer.period, min_period);
1496 apic->lapic_timer.period = min_period;
1497 }
1498 }
1499}
1500
Wanpeng Li94be4b82020-03-24 14:32:10 +08001501static void cancel_hv_timer(struct kvm_lapic *apic);
1502
Wanpeng Lie898da72021-06-07 00:19:43 -07001503static void cancel_apic_timer(struct kvm_lapic *apic)
1504{
1505 hrtimer_cancel(&apic->lapic_timer.timer);
1506 preempt_disable();
1507 if (apic->lapic_timer.hv_timer_in_use)
1508 cancel_hv_timer(apic);
1509 preempt_enable();
1510}
1511
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001512static void apic_update_lvtt(struct kvm_lapic *apic)
1513{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001514 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001515 apic->lapic_timer.timer_mode_mask;
1516
1517 if (apic->lapic_timer.timer_mode != timer_mode) {
Wanpeng Lic69518c2017-10-05 03:53:51 -07001518 if (apic_lvtt_tscdeadline(apic) != (timer_mode ==
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001519 APIC_LVT_TIMER_TSCDEADLINE)) {
Wanpeng Lie898da72021-06-07 00:19:43 -07001520 cancel_apic_timer(apic);
Radim Krčmář44275932017-10-06 19:25:55 +02001521 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
1522 apic->lapic_timer.period = 0;
1523 apic->lapic_timer.tscdeadline = 0;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001524 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001525 apic->lapic_timer.timer_mode = timer_mode;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001526 limit_periodic_timer_frequency(apic);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001527 }
1528}
1529
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001530/*
1531 * On APICv, this test will cause a busy wait
1532 * during a higher-priority task.
1533 */
1534
1535static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1536{
1537 struct kvm_lapic *apic = vcpu->arch.apic;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001538 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001539
1540 if (kvm_apic_hw_enabled(apic)) {
1541 int vec = reg & APIC_VECTOR_MASK;
Marcelo Tosattif9339862015-02-02 15:26:08 -02001542 void *bitmap = apic->regs + APIC_ISR;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001543
Andrey Smetanind62caab2015-11-10 15:36:33 +03001544 if (vcpu->arch.apicv_active)
Marcelo Tosattif9339862015-02-02 15:26:08 -02001545 bitmap = apic->regs + APIC_IRR;
1546
1547 if (apic_test_vector(vec, bitmap))
1548 return true;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001549 }
1550 return false;
1551}
1552
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001553static inline void __wait_lapic_expire(struct kvm_vcpu *vcpu, u64 guest_cycles)
1554{
1555 u64 timer_advance_ns = vcpu->arch.apic->lapic_timer.timer_advance_ns;
1556
1557 /*
1558 * If the guest TSC is running at a different ratio than the host, then
1559 * convert the delay to nanoseconds to achieve an accurate delay. Note
1560 * that __delay() uses delay_tsc whenever the hardware has TSC, thus
1561 * always for VMX enabled hardware.
1562 */
1563 if (vcpu->arch.tsc_scaling_ratio == kvm_default_tsc_scaling_ratio) {
1564 __delay(min(guest_cycles,
1565 nsec_to_cycles(vcpu, timer_advance_ns)));
1566 } else {
1567 u64 delay_ns = guest_cycles * 1000000ULL;
1568 do_div(delay_ns, vcpu->arch.virtual_tsc_khz);
1569 ndelay(min_t(u32, delay_ns, timer_advance_ns));
1570 }
1571}
1572
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001573static inline void adjust_lapic_timer_advance(struct kvm_vcpu *vcpu,
Wanpeng Liec0671d2019-05-20 16:18:08 +08001574 s64 advance_expire_delta)
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001575{
1576 struct kvm_lapic *apic = vcpu->arch.apic;
Sean Christopherson39497d72019-04-17 10:15:32 -07001577 u32 timer_advance_ns = apic->lapic_timer.timer_advance_ns;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001578 u64 ns;
1579
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001580 /* Do not adjust for tiny fluctuations or large random spikes. */
1581 if (abs(advance_expire_delta) > LAPIC_TIMER_ADVANCE_ADJUST_MAX ||
1582 abs(advance_expire_delta) < LAPIC_TIMER_ADVANCE_ADJUST_MIN)
1583 return;
1584
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001585 /* too early */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001586 if (advance_expire_delta < 0) {
1587 ns = -advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001588 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001589 timer_advance_ns -= ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001590 } else {
1591 /* too late */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001592 ns = advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001593 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001594 timer_advance_ns += ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001595 }
1596
Wanpeng Lia0f00372019-09-26 08:54:03 +08001597 if (unlikely(timer_advance_ns > LAPIC_TIMER_ADVANCE_NS_MAX))
1598 timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001599 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
1600}
1601
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001602static void __kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001603{
1604 struct kvm_lapic *apic = vcpu->arch.apic;
1605 u64 guest_tsc, tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001606
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001607 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1608 apic->lapic_timer.expired_tscdeadline = 0;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001609 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Wanpeng Liec0671d2019-05-20 16:18:08 +08001610 apic->lapic_timer.advance_expire_delta = guest_tsc - tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001611
Wanpeng Li9805cf02021-05-18 05:00:35 -07001612 if (lapic_timer_advance_dynamic) {
1613 adjust_lapic_timer_advance(vcpu, apic->lapic_timer.advance_expire_delta);
1614 /*
1615 * If the timer fired early, reread the TSC to account for the
1616 * overhead of the above adjustment to avoid waiting longer
1617 * than is necessary.
1618 */
1619 if (guest_tsc < tsc_deadline)
1620 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1621 }
1622
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001623 if (guest_tsc < tsc_deadline)
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001624 __wait_lapic_expire(vcpu, tsc_deadline - guest_tsc);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001625}
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001626
1627void kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1628{
Wanpeng Li010fd372020-09-10 17:50:41 +08001629 if (lapic_in_kernel(vcpu) &&
1630 vcpu->arch.apic->lapic_timer.expired_tscdeadline &&
1631 vcpu->arch.apic->lapic_timer.timer_advance_ns &&
1632 lapic_timer_int_injected(vcpu))
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001633 __kvm_wait_lapic_expire(vcpu);
1634}
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08001635EXPORT_SYMBOL_GPL(kvm_wait_lapic_expire);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001636
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001637static void kvm_apic_inject_pending_timer_irqs(struct kvm_lapic *apic)
1638{
1639 struct kvm_timer *ktimer = &apic->lapic_timer;
1640
1641 kvm_apic_local_deliver(apic, APIC_LVTT);
Haiwei Li17ac43a2020-01-16 16:50:21 +08001642 if (apic_lvtt_tscdeadline(apic)) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001643 ktimer->tscdeadline = 0;
Haiwei Li17ac43a2020-01-16 16:50:21 +08001644 } else if (apic_lvtt_oneshot(apic)) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001645 ktimer->tscdeadline = 0;
1646 ktimer->target_expiration = 0;
1647 }
1648}
1649
Wanpeng Liae95f562020-04-28 14:23:28 +08001650static void apic_timer_expired(struct kvm_lapic *apic, bool from_timer_fn)
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001651{
1652 struct kvm_vcpu *vcpu = apic->vcpu;
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001653 struct kvm_timer *ktimer = &apic->lapic_timer;
1654
1655 if (atomic_read(&apic->lapic_timer.pending))
1656 return;
1657
1658 if (apic_lvtt_tscdeadline(apic) || ktimer->hv_timer_in_use)
1659 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1660
Wanpeng Liae95f562020-04-28 14:23:28 +08001661 if (!from_timer_fn && vcpu->arch.apicv_active) {
1662 WARN_ON(kvm_get_running_vcpu() != vcpu);
1663 kvm_apic_inject_pending_timer_irqs(apic);
1664 return;
1665 }
1666
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001667 if (kvm_use_posted_timer_interrupt(apic->vcpu)) {
Sean Christophersonbeda4302021-03-04 18:18:08 -08001668 /*
1669 * Ensure the guest's timer has truly expired before posting an
1670 * interrupt. Open code the relevant checks to avoid querying
1671 * lapic_timer_int_injected(), which will be false since the
1672 * interrupt isn't yet injected. Waiting until after injecting
1673 * is not an option since that won't help a posted interrupt.
1674 */
1675 if (vcpu->arch.apic->lapic_timer.expired_tscdeadline &&
1676 vcpu->arch.apic->lapic_timer.timer_advance_ns)
1677 __kvm_wait_lapic_expire(vcpu);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001678 kvm_apic_inject_pending_timer_irqs(apic);
1679 return;
1680 }
1681
1682 atomic_inc(&apic->lapic_timer.pending);
Marcelo Tosatti084071d2021-05-25 10:41:17 -03001683 kvm_make_request(KVM_REQ_UNBLOCK, vcpu);
Wanpeng Li68ca76632020-09-10 17:50:40 +08001684 if (from_timer_fn)
1685 kvm_vcpu_kick(vcpu);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001686}
1687
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001688static void start_sw_tscdeadline(struct kvm_lapic *apic)
1689{
Sean Christopherson39497d72019-04-17 10:15:32 -07001690 struct kvm_timer *ktimer = &apic->lapic_timer;
1691 u64 guest_tsc, tscdeadline = ktimer->tscdeadline;
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001692 u64 ns = 0;
1693 ktime_t expire;
1694 struct kvm_vcpu *vcpu = apic->vcpu;
1695 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
1696 unsigned long flags;
1697 ktime_t now;
1698
1699 if (unlikely(!tscdeadline || !this_tsc_khz))
1700 return;
1701
1702 local_irq_save(flags);
1703
Paolo Bonzini55878592016-10-25 15:23:49 +02001704 now = ktime_get();
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001705 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Liran Alonc09d65d2019-04-16 20:36:34 +03001706
1707 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1708 do_div(ns, this_tsc_khz);
1709
1710 if (likely(tscdeadline > guest_tsc) &&
Sean Christopherson39497d72019-04-17 10:15:32 -07001711 likely(ns > apic->lapic_timer.timer_advance_ns)) {
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001712 expire = ktime_add_ns(now, ns);
Sean Christopherson39497d72019-04-17 10:15:32 -07001713 expire = ktime_sub_ns(expire, ktimer->timer_advance_ns);
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02001714 hrtimer_start(&ktimer->timer, expire, HRTIMER_MODE_ABS_HARD);
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001715 } else
Wanpeng Liae95f562020-04-28 14:23:28 +08001716 apic_timer_expired(apic, false);
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001717
1718 local_irq_restore(flags);
1719}
1720
Peter Shier24647e02018-10-10 15:56:53 -07001721static inline u64 tmict_to_ns(struct kvm_lapic *apic, u32 tmict)
1722{
1723 return (u64)tmict * APIC_BUS_CYCLE_NS * (u64)apic->divide_count;
1724}
1725
Wanpeng Lic301b902017-10-06 07:38:32 -07001726static void update_target_expiration(struct kvm_lapic *apic, uint32_t old_divisor)
1727{
1728 ktime_t now, remaining;
1729 u64 ns_remaining_old, ns_remaining_new;
1730
Peter Shier24647e02018-10-10 15:56:53 -07001731 apic->lapic_timer.period =
1732 tmict_to_ns(apic, kvm_lapic_get_reg(apic, APIC_TMICT));
Wanpeng Lic301b902017-10-06 07:38:32 -07001733 limit_periodic_timer_frequency(apic);
1734
1735 now = ktime_get();
1736 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1737 if (ktime_to_ns(remaining) < 0)
1738 remaining = 0;
1739
1740 ns_remaining_old = ktime_to_ns(remaining);
1741 ns_remaining_new = mul_u64_u32_div(ns_remaining_old,
1742 apic->divide_count, old_divisor);
1743
1744 apic->lapic_timer.tscdeadline +=
1745 nsec_to_cycles(apic->vcpu, ns_remaining_new) -
1746 nsec_to_cycles(apic->vcpu, ns_remaining_old);
1747 apic->lapic_timer.target_expiration = ktime_add_ns(now, ns_remaining_new);
1748}
1749
Peter Shier24647e02018-10-10 15:56:53 -07001750static bool set_target_expiration(struct kvm_lapic *apic, u32 count_reg)
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001751{
1752 ktime_t now;
1753 u64 tscl = rdtsc();
Peter Shier24647e02018-10-10 15:56:53 -07001754 s64 deadline;
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001755
Paolo Bonzini55878592016-10-25 15:23:49 +02001756 now = ktime_get();
Peter Shier24647e02018-10-10 15:56:53 -07001757 apic->lapic_timer.period =
1758 tmict_to_ns(apic, kvm_lapic_get_reg(apic, APIC_TMICT));
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001759
Radim Krčmář5d74a692017-10-06 19:25:54 +02001760 if (!apic->lapic_timer.period) {
1761 apic->lapic_timer.tscdeadline = 0;
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001762 return false;
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001763 }
1764
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001765 limit_periodic_timer_frequency(apic);
Peter Shier24647e02018-10-10 15:56:53 -07001766 deadline = apic->lapic_timer.period;
1767
1768 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
1769 if (unlikely(count_reg != APIC_TMICT)) {
1770 deadline = tmict_to_ns(apic,
1771 kvm_lapic_get_reg(apic, count_reg));
1772 if (unlikely(deadline <= 0))
1773 deadline = apic->lapic_timer.period;
1774 else if (unlikely(deadline > apic->lapic_timer.period)) {
1775 pr_info_ratelimited(
1776 "kvm: vcpu %i: requested lapic timer restore with "
1777 "starting count register %#x=%u (%lld ns) > initial count (%lld ns). "
1778 "Using initial count to start timer.\n",
1779 apic->vcpu->vcpu_id,
1780 count_reg,
1781 kvm_lapic_get_reg(apic, count_reg),
1782 deadline, apic->lapic_timer.period);
1783 kvm_lapic_set_reg(apic, count_reg, 0);
1784 deadline = apic->lapic_timer.period;
1785 }
1786 }
1787 }
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001788
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001789 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
Peter Shier24647e02018-10-10 15:56:53 -07001790 nsec_to_cycles(apic->vcpu, deadline);
1791 apic->lapic_timer.target_expiration = ktime_add_ns(now, deadline);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001792
1793 return true;
1794}
1795
1796static void advance_periodic_target_expiration(struct kvm_lapic *apic)
1797{
David Vrabeld8f2f492018-05-18 16:55:46 +01001798 ktime_t now = ktime_get();
1799 u64 tscl = rdtsc();
1800 ktime_t delta;
1801
1802 /*
1803 * Synchronize both deadlines to the same time source or
1804 * differences in the periods (caused by differences in the
1805 * underlying clocks or numerical approximation errors) will
1806 * cause the two to drift apart over time as the errors
1807 * accumulate.
1808 */
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001809 apic->lapic_timer.target_expiration =
1810 ktime_add_ns(apic->lapic_timer.target_expiration,
1811 apic->lapic_timer.period);
David Vrabeld8f2f492018-05-18 16:55:46 +01001812 delta = ktime_sub(apic->lapic_timer.target_expiration, now);
1813 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1814 nsec_to_cycles(apic->vcpu, delta);
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001815}
1816
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001817static void start_sw_period(struct kvm_lapic *apic)
1818{
1819 if (!apic->lapic_timer.period)
1820 return;
1821
1822 if (ktime_after(ktime_get(),
1823 apic->lapic_timer.target_expiration)) {
Wanpeng Liae95f562020-04-28 14:23:28 +08001824 apic_timer_expired(apic, false);
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001825
1826 if (apic_lvtt_oneshot(apic))
1827 return;
1828
1829 advance_periodic_target_expiration(apic);
1830 }
1831
1832 hrtimer_start(&apic->lapic_timer.timer,
1833 apic->lapic_timer.target_expiration,
He Zheedec6e02020-03-20 15:06:07 +08001834 HRTIMER_MODE_ABS_HARD);
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001835}
1836
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001837bool kvm_lapic_hv_timer_in_use(struct kvm_vcpu *vcpu)
1838{
Wanpeng Li91005302016-08-03 12:04:12 +08001839 if (!lapic_in_kernel(vcpu))
1840 return false;
1841
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001842 return vcpu->arch.apic->lapic_timer.hv_timer_in_use;
1843}
1844EXPORT_SYMBOL_GPL(kvm_lapic_hv_timer_in_use);
1845
Wanpeng Li7e810a32016-10-24 18:23:12 +08001846static void cancel_hv_timer(struct kvm_lapic *apic)
Wanpeng Libd97ad02016-06-30 08:52:49 +08001847{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001848 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001849 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
Jason Baronb36464772021-01-14 22:27:56 -05001850 static_call(kvm_x86_cancel_hv_timer)(apic->vcpu);
Wanpeng Libd97ad02016-06-30 08:52:49 +08001851 apic->lapic_timer.hv_timer_in_use = false;
1852}
1853
Paolo Bonzinia749e242017-06-29 17:14:50 +02001854static bool start_hv_timer(struct kvm_lapic *apic)
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001855{
1856 struct kvm_timer *ktimer = &apic->lapic_timer;
Sean Christophersonf9927982019-04-16 13:32:46 -07001857 struct kvm_vcpu *vcpu = apic->vcpu;
1858 bool expired;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001859
Wanpeng Li1d518c62017-07-25 00:43:15 -07001860 WARN_ON(preemptible());
Paolo Bonzini199a8b82020-05-05 06:45:35 -04001861 if (!kvm_can_use_hv_timer(vcpu))
Paolo Bonzinia749e242017-06-29 17:14:50 +02001862 return false;
1863
Radim Krčmář86bbc1e2017-10-06 19:25:53 +02001864 if (!ktimer->tscdeadline)
1865 return false;
1866
Jason Baronb36464772021-01-14 22:27:56 -05001867 if (static_call(kvm_x86_set_hv_timer)(vcpu, ktimer->tscdeadline, &expired))
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001868 return false;
1869
1870 ktimer->hv_timer_in_use = true;
1871 hrtimer_cancel(&ktimer->timer);
1872
1873 /*
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001874 * To simplify handling the periodic timer, leave the hv timer running
1875 * even if the deadline timer has expired, i.e. rely on the resulting
1876 * VM-Exit to recompute the periodic timer's target expiration.
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001877 */
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001878 if (!apic_lvtt_period(apic)) {
1879 /*
1880 * Cancel the hv timer if the sw timer fired while the hv timer
1881 * was being programmed, or if the hv timer itself expired.
1882 */
1883 if (atomic_read(&ktimer->pending)) {
1884 cancel_hv_timer(apic);
Sean Christophersonf9927982019-04-16 13:32:46 -07001885 } else if (expired) {
Wanpeng Liae95f562020-04-28 14:23:28 +08001886 apic_timer_expired(apic, false);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001887 cancel_hv_timer(apic);
1888 }
Wanpeng Lic8533542017-06-29 06:28:09 -07001889 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02001890
Sean Christophersonf9927982019-04-16 13:32:46 -07001891 trace_kvm_hv_timer_state(vcpu->vcpu_id, ktimer->hv_timer_in_use);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001892
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001893 return true;
1894}
1895
Paolo Bonzinia749e242017-06-29 17:14:50 +02001896static void start_sw_timer(struct kvm_lapic *apic)
Wanpeng Li196f20c2016-06-28 14:54:19 +08001897{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001898 struct kvm_timer *ktimer = &apic->lapic_timer;
Wanpeng Li1d518c62017-07-25 00:43:15 -07001899
1900 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001901 if (apic->lapic_timer.hv_timer_in_use)
1902 cancel_hv_timer(apic);
1903 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
1904 return;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001905
Paolo Bonzinia749e242017-06-29 17:14:50 +02001906 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1907 start_sw_period(apic);
1908 else if (apic_lvtt_tscdeadline(apic))
1909 start_sw_tscdeadline(apic);
1910 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, false);
1911}
1912
1913static void restart_apic_timer(struct kvm_lapic *apic)
1914{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001915 preempt_disable();
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001916
1917 if (!apic_lvtt_period(apic) && atomic_read(&apic->lapic_timer.pending))
1918 goto out;
1919
Paolo Bonzinia749e242017-06-29 17:14:50 +02001920 if (!start_hv_timer(apic))
1921 start_sw_timer(apic);
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001922out:
Wanpeng Li1d518c62017-07-25 00:43:15 -07001923 preempt_enable();
Wanpeng Li196f20c2016-06-28 14:54:19 +08001924}
1925
Eddie Dong97222cc2007-09-12 10:58:04 +03001926void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
1927{
1928 struct kvm_lapic *apic = vcpu->arch.apic;
1929
Wanpeng Li1d518c62017-07-25 00:43:15 -07001930 preempt_disable();
1931 /* If the preempt notifier has already run, it also called apic_timer_expired */
1932 if (!apic->lapic_timer.hv_timer_in_use)
1933 goto out;
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07001934 WARN_ON(rcuwait_active(&vcpu->wait));
Wanpeng Liae95f562020-04-28 14:23:28 +08001935 apic_timer_expired(apic, false);
Wanpeng Lid981dd12021-04-28 19:08:02 +08001936 cancel_hv_timer(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001937
1938 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1939 advance_periodic_target_expiration(apic);
Paolo Bonzinia749e242017-06-29 17:14:50 +02001940 restart_apic_timer(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001941 }
Wanpeng Li1d518c62017-07-25 00:43:15 -07001942out:
1943 preempt_enable();
Eddie Dong97222cc2007-09-12 10:58:04 +03001944}
1945EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
1946
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001947void kvm_lapic_switch_to_hv_timer(struct kvm_vcpu *vcpu)
1948{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001949 restart_apic_timer(vcpu->arch.apic);
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001950}
1951EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_hv_timer);
1952
1953void kvm_lapic_switch_to_sw_timer(struct kvm_vcpu *vcpu)
1954{
1955 struct kvm_lapic *apic = vcpu->arch.apic;
1956
Wanpeng Li1d518c62017-07-25 00:43:15 -07001957 preempt_disable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001958 /* Possibly the TSC deadline timer is not enabled yet */
Paolo Bonzinia749e242017-06-29 17:14:50 +02001959 if (apic->lapic_timer.hv_timer_in_use)
1960 start_sw_timer(apic);
Wanpeng Li1d518c62017-07-25 00:43:15 -07001961 preempt_enable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001962}
1963EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_sw_timer);
1964
Paolo Bonzinia749e242017-06-29 17:14:50 +02001965void kvm_lapic_restart_hv_timer(struct kvm_vcpu *vcpu)
1966{
1967 struct kvm_lapic *apic = vcpu->arch.apic;
1968
1969 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1970 restart_apic_timer(apic);
1971}
1972
Peter Shier24647e02018-10-10 15:56:53 -07001973static void __start_apic_timer(struct kvm_lapic *apic, u32 count_reg)
Eddie Dong97222cc2007-09-12 10:58:04 +03001974{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001975 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +02001976
Paolo Bonzinia749e242017-06-29 17:14:50 +02001977 if ((apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
Peter Shier24647e02018-10-10 15:56:53 -07001978 && !set_target_expiration(apic, count_reg))
Paolo Bonzinia749e242017-06-29 17:14:50 +02001979 return;
1980
1981 restart_apic_timer(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001982}
1983
Peter Shier24647e02018-10-10 15:56:53 -07001984static void start_apic_timer(struct kvm_lapic *apic)
1985{
1986 __start_apic_timer(apic, APIC_TMICT);
1987}
1988
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001989static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1990{
Radim Krčmář59fd1322015-06-30 22:19:16 +02001991 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001992
Radim Krčmář59fd1322015-06-30 22:19:16 +02001993 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
1994 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
1995 if (lvt0_in_nmi_mode) {
Radim Krčmář42720132015-07-01 15:31:49 +02001996 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
Radim Krčmář59fd1322015-06-30 22:19:16 +02001997 } else
1998 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1999 }
Jan Kiszkacc6e4622008-10-20 10:20:03 +02002000}
2001
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002002int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03002003{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002004 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002005
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002006 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002007
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002008 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03002009 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002010 if (!apic_x2apic_mode(apic))
Radim Krčmářa92e2542016-07-12 22:09:22 +02002011 kvm_apic_set_xapic_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002012 else
2013 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002014 break;
2015
2016 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02002017 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03002018 apic_set_tpr(apic, val & 0xff);
2019 break;
2020
2021 case APIC_EOI:
2022 apic_set_eoi(apic);
2023 break;
2024
2025 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002026 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03002027 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002028 else
2029 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002030 break;
2031
2032 case APIC_DFR:
Wanpeng Liae6f2492020-08-19 16:55:26 +08002033 if (!apic_x2apic_mode(apic))
2034 kvm_apic_set_dfr(apic, val | 0x0FFFFFFF);
2035 else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002036 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002037 break;
2038
Gleb Natapovfc61b802009-07-05 17:39:35 +03002039 case APIC_SPIV: {
2040 u32 mask = 0x3ff;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002041 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03002042 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002043 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03002044 if (!(val & APIC_SPIV_APIC_ENABLED)) {
2045 int i;
2046 u32 lvt_val;
2047
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002048 for (i = 0; i < KVM_APIC_LVT_NUM; i++) {
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002049 lvt_val = kvm_lapic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03002050 APIC_LVTT + 0x10 * i);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002051 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i,
Eddie Dong97222cc2007-09-12 10:58:04 +03002052 lvt_val | APIC_LVT_MASKED);
2053 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002054 apic_update_lvtt(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002055 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002056
2057 }
2058 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03002059 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002060 case APIC_ICR:
2061 /* No delay here, so we always clear the pending bit */
Wanpeng Li2b0911d2019-09-05 14:26:27 +08002062 val &= ~(1 << 12);
Wanpeng Lid5361672020-03-26 10:20:02 +08002063 kvm_apic_send_ipi(apic, val, kvm_lapic_get_reg(apic, APIC_ICR2));
Wanpeng Li2b0911d2019-09-05 14:26:27 +08002064 kvm_lapic_set_reg(apic, APIC_ICR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002065 break;
2066
2067 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002068 if (!apic_x2apic_mode(apic))
2069 val &= 0xff000000;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002070 kvm_lapic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002071 break;
2072
Jan Kiszka23930f92008-09-26 09:30:52 +02002073 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02002074 apic_manage_nmi_watchdog(apic, val);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002075 fallthrough;
Eddie Dong97222cc2007-09-12 10:58:04 +03002076 case APIC_LVTTHMR:
2077 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03002078 case APIC_LVT1:
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002079 case APIC_LVTERR: {
Eddie Dong97222cc2007-09-12 10:58:04 +03002080 /* TODO: Check vector */
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002081 size_t size;
2082 u32 index;
2083
Gleb Natapovc48f1492012-08-05 15:58:33 +03002084 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03002085 val |= APIC_LVT_MASKED;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002086 size = ARRAY_SIZE(apic_lvt_mask);
2087 index = array_index_nospec(
2088 (reg - APIC_LVTT) >> 4, size);
2089 val &= apic_lvt_mask[index];
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002090 kvm_lapic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002091 break;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002092 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002093
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002094 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03002095 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002096 val |= APIC_LVT_MASKED;
2097 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002098 kvm_lapic_set_reg(apic, APIC_LVTT, val);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002099 apic_update_lvtt(apic);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002100 break;
2101
Eddie Dong97222cc2007-09-12 10:58:04 +03002102 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002103 if (apic_lvtt_tscdeadline(apic))
2104 break;
2105
Wanpeng Lie898da72021-06-07 00:19:43 -07002106 cancel_apic_timer(apic);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002107 kvm_lapic_set_reg(apic, APIC_TMICT, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002108 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002109 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002110
Wanpeng Lic301b902017-10-06 07:38:32 -07002111 case APIC_TDCR: {
2112 uint32_t old_divisor = apic->divide_count;
2113
Wanpeng Lia445fc42020-07-31 11:12:20 +08002114 kvm_lapic_set_reg(apic, APIC_TDCR, val & 0xb);
Eddie Dong97222cc2007-09-12 10:58:04 +03002115 update_divide_count(apic);
Wanpeng Lic301b902017-10-06 07:38:32 -07002116 if (apic->divide_count != old_divisor &&
2117 apic->lapic_timer.period) {
2118 hrtimer_cancel(&apic->lapic_timer.timer);
2119 update_target_expiration(apic, old_divisor);
2120 restart_apic_timer(apic);
2121 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002122 break;
Wanpeng Lic301b902017-10-06 07:38:32 -07002123 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002124 case APIC_ESR:
Yi Wang0d888002019-07-06 01:08:48 +08002125 if (apic_x2apic_mode(apic) && val != 0)
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002126 ret = 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002127 break;
2128
2129 case APIC_SELF_IPI:
2130 if (apic_x2apic_mode(apic)) {
Haiwei Li9c2475f2020-07-21 16:23:54 +08002131 kvm_lapic_reg_write(apic, APIC_ICR,
2132 APIC_DEST_SELF | (val & APIC_VECTOR_MASK));
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002133 } else
2134 ret = 1;
2135 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002136 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002137 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002138 break;
2139 }
Yi Wang0d888002019-07-06 01:08:48 +08002140
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002141 kvm_recalculate_apic_map(apic->vcpu->kvm);
2142
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002143 return ret;
2144}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002145EXPORT_SYMBOL_GPL(kvm_lapic_reg_write);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002146
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002147static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002148 gpa_t address, int len, const void *data)
2149{
2150 struct kvm_lapic *apic = to_lapic(this);
2151 unsigned int offset = address - apic->base_address;
2152 u32 val;
2153
2154 if (!apic_mmio_in_range(apic, address))
2155 return -EOPNOTSUPP;
2156
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02002157 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
2158 if (!kvm_check_has_quirk(vcpu->kvm,
2159 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
2160 return -EOPNOTSUPP;
2161
2162 return 0;
2163 }
2164
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002165 /*
2166 * APIC register must be aligned on 128-bits boundary.
2167 * 32/64/128 bits registers must be accessed thru 32 bits.
2168 * Refer SDM 8.4.1
2169 */
Yi Wang0d888002019-07-06 01:08:48 +08002170 if (len != 4 || (offset & 0xf))
Sheng Yang756975b2009-07-06 11:05:39 +08002171 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002172
2173 val = *(u32*)data;
2174
Yi Wang0d888002019-07-06 01:08:48 +08002175 kvm_lapic_reg_write(apic, offset & 0xff0, val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002176
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002177 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002178}
2179
Kevin Tian58fbbf22011-08-30 13:56:17 +03002180void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
2181{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002182 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
Kevin Tian58fbbf22011-08-30 13:56:17 +03002183}
2184EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
2185
Yang Zhang83d4c282013-01-25 10:18:49 +08002186/* emulate APIC access in a trap manner */
2187void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
2188{
2189 u32 val = 0;
2190
2191 /* hw has done the conditional check and inst decode */
2192 offset &= 0xff0;
2193
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002194 kvm_lapic_reg_read(vcpu->arch.apic, offset, 4, &val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002195
2196 /* TODO: optimize to just emulate side effect w/o one more write */
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002197 kvm_lapic_reg_write(vcpu->arch.apic, offset, val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002198}
2199EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
2200
Rusty Russelld5894442007-10-08 10:48:30 +10002201void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03002202{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002203 struct kvm_lapic *apic = vcpu->arch.apic;
2204
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002205 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002206 return;
2207
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002208 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002209
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002210 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
Cun Li6e4e3b42021-01-11 23:24:35 +08002211 static_branch_slow_dec_deferred(&apic_hw_disabled);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002212
Radim Krčmáře4627552014-10-30 15:06:45 +01002213 if (!apic->sw_enabled)
Cun Li6e4e3b42021-01-11 23:24:35 +08002214 static_branch_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03002215
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002216 if (apic->regs)
2217 free_page((unsigned long)apic->regs);
2218
2219 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002220}
2221
2222/*
2223 *----------------------------------------------------------------------
2224 * LAPIC interface
2225 *----------------------------------------------------------------------
2226 */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002227u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
2228{
2229 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002230
Wanpeng Lia970e9b2020-09-10 17:50:36 +08002231 if (!kvm_apic_present(vcpu) || !apic_lvtt_tscdeadline(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002232 return 0;
2233
2234 return apic->lapic_timer.tscdeadline;
2235}
2236
2237void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
2238{
2239 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002240
Wanpeng Li27503832020-09-10 17:50:37 +08002241 if (!kvm_apic_present(vcpu) || !apic_lvtt_tscdeadline(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002242 return;
2243
2244 hrtimer_cancel(&apic->lapic_timer.timer);
2245 apic->lapic_timer.tscdeadline = data;
2246 start_apic_timer(apic);
2247}
2248
Eddie Dong97222cc2007-09-12 10:58:04 +03002249void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
2250{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002251 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002252
Avi Kivityb93463a2007-10-25 16:52:32 +02002253 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002254 | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03002255}
2256
2257u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
2258{
Eddie Dong97222cc2007-09-12 10:58:04 +03002259 u64 tpr;
2260
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002261 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03002262
2263 return (tpr & 0xf0) >> 4;
2264}
2265
2266void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
2267{
Yang Zhang8d146952013-01-25 10:18:50 +08002268 u64 old_value = vcpu->arch.apic_base;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002269 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002270
Jan Kiszkae66d2ae2013-12-29 02:29:30 +01002271 vcpu->arch.apic_base = value;
2272
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002273 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08002274 kvm_update_cpuid_runtime(vcpu);
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002275
2276 if (!apic)
2277 return;
2278
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002279 /* update jump label if enable bit changes */
Andrew Jones0dce7cd2014-01-15 13:39:59 +01002280 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
Radim Krčmář49bd29b2016-07-12 22:09:23 +02002281 if (value & MSR_IA32_APICBASE_ENABLE) {
2282 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Cun Li6e4e3b42021-01-11 23:24:35 +08002283 static_branch_slow_dec_deferred(&apic_hw_disabled);
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +02002284 /* Check if there are APF page ready requests pending */
2285 kvm_make_request(KVM_REQ_APF_READY, vcpu);
Wanpeng Li187ca842016-08-03 12:04:13 +08002286 } else {
Cun Li6e4e3b42021-01-11 23:24:35 +08002287 static_branch_inc(&apic_hw_disabled.key);
Paolo Bonzini44d52712020-06-22 16:37:42 +02002288 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Wanpeng Li187ca842016-08-03 12:04:13 +08002289 }
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002290 }
2291
Jim Mattson8d860bb2018-05-09 16:56:05 -04002292 if (((old_value ^ value) & X2APIC_ENABLE) && (value & X2APIC_ENABLE))
2293 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
2294
2295 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE))
Jason Baronb36464772021-01-14 22:27:56 -05002296 static_call(kvm_x86_set_virtual_apic_mode)(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08002297
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002298 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03002299 MSR_IA32_APICBASE_BASE;
2300
Nadav Amitdb324fe2014-11-02 11:54:59 +02002301 if ((value & MSR_IA32_APICBASE_ENABLE) &&
2302 apic->base_address != APIC_DEFAULT_PHYS_BASE)
2303 pr_warn_once("APIC base relocation is unsupported by KVM");
Eddie Dong97222cc2007-09-12 10:58:04 +03002304}
2305
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002306void kvm_apic_update_apicv(struct kvm_vcpu *vcpu)
2307{
2308 struct kvm_lapic *apic = vcpu->arch.apic;
2309
2310 if (vcpu->arch.apicv_active) {
2311 /* irr_pending is always true when apicv is activated. */
2312 apic->irr_pending = true;
2313 apic->isr_count = 1;
2314 } else {
2315 apic->irr_pending = (apic_search_irr(apic) != -1);
2316 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
2317 }
2318}
2319EXPORT_SYMBOL_GPL(kvm_apic_update_apicv);
2320
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002321void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
Eddie Dong97222cc2007-09-12 10:58:04 +03002322{
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002323 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002324 int i;
2325
Sean Christopherson45477002021-07-13 09:32:56 -07002326 if (!init_event) {
2327 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE |
2328 MSR_IA32_APICBASE_ENABLE;
2329 if (kvm_vcpu_is_reset_bsp(vcpu))
2330 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
2331 }
2332
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002333 if (!apic)
2334 return;
Eddie Dong97222cc2007-09-12 10:58:04 +03002335
Eddie Dong97222cc2007-09-12 10:58:04 +03002336 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002337 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002338
Radim Krčmář4d8e7722016-07-12 22:09:25 +02002339 if (!init_event) {
Sean Christopherson42122122021-07-13 09:32:55 -07002340 apic->base_address = APIC_DEFAULT_PHYS_BASE;
2341
Radim Krčmářa92e2542016-07-12 22:09:22 +02002342 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Radim Krčmář4d8e7722016-07-12 22:09:25 +02002343 }
Gleb Natapovfc61b802009-07-05 17:39:35 +03002344 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03002345
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002346 for (i = 0; i < KVM_APIC_LVT_NUM; i++)
2347 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002348 apic_update_lvtt(apic);
Jan H. Schönherr52b54192017-05-20 13:24:32 +02002349 if (kvm_vcpu_is_reset_bsp(vcpu) &&
2350 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002351 kvm_lapic_set_reg(apic, APIC_LVT0,
Nadav Amit90de4a12015-04-13 01:53:41 +03002352 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002353 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong97222cc2007-09-12 10:58:04 +03002354
Wanpeng Liae6f2492020-08-19 16:55:26 +08002355 kvm_apic_set_dfr(apic, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002356 apic_set_spiv(apic, 0xff);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002357 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
Radim Krčmářc028dd62015-05-22 19:22:10 +02002358 if (!apic_x2apic_mode(apic))
2359 kvm_apic_set_ldr(apic, 0);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002360 kvm_lapic_set_reg(apic, APIC_ESR, 0);
2361 kvm_lapic_set_reg(apic, APIC_ICR, 0);
2362 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
2363 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
2364 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002365 for (i = 0; i < 8; i++) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002366 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
2367 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
2368 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002369 }
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002370 kvm_apic_update_apicv(vcpu);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002371 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02002372 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002373 atomic_set(&apic->lapic_timer.pending, 0);
Sean Christopherson549240e2021-07-13 09:32:50 -07002374
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002375 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002376 apic_update_ppr(apic);
Jan H. Schönherr4191db22017-10-25 16:43:27 +02002377 if (vcpu->arch.apicv_active) {
Jason Baronb36464772021-01-14 22:27:56 -05002378 static_call(kvm_x86_apicv_post_state_restore)(vcpu);
2379 static_call(kvm_x86_hwapic_irr_update)(vcpu, -1);
2380 static_call(kvm_x86_hwapic_isr_update)(vcpu, -1);
Jan H. Schönherr4191db22017-10-25 16:43:27 +02002381 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002382
Gleb Natapove1035712009-03-05 16:34:59 +02002383 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03002384 vcpu->arch.apic_attention = 0;
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002385
2386 kvm_recalculate_apic_map(vcpu->kvm);
Eddie Dong97222cc2007-09-12 10:58:04 +03002387}
2388
Eddie Dong97222cc2007-09-12 10:58:04 +03002389/*
2390 *----------------------------------------------------------------------
2391 * timer interface
2392 *----------------------------------------------------------------------
2393 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03002394
Avi Kivity2a6eac92012-07-26 18:01:51 +03002395static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002396{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002397 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002398}
2399
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002400int apic_has_pending_timer(struct kvm_vcpu *vcpu)
2401{
Gleb Natapov54e98182012-08-05 15:58:32 +03002402 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002403
Paolo Bonzini1e3161b42016-01-08 13:41:16 +01002404 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
Gleb Natapov54e98182012-08-05 15:58:32 +03002405 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002406
2407 return 0;
2408}
2409
Avi Kivity89342082011-11-10 14:57:21 +02002410int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03002411{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002412 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02002413 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002414
Gleb Natapovc48f1492012-08-05 15:58:33 +03002415 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02002416 vector = reg & APIC_VECTOR_MASK;
2417 mode = reg & APIC_MODE_MASK;
2418 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
Yang Zhangb4f22252013-04-11 19:21:37 +08002419 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
2420 NULL);
Jan Kiszka23930f92008-09-26 09:30:52 +02002421 }
2422 return 0;
2423}
2424
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002425void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02002426{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002427 struct kvm_lapic *apic = vcpu->arch.apic;
2428
2429 if (apic)
2430 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002431}
2432
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002433static const struct kvm_io_device_ops apic_mmio_ops = {
2434 .read = apic_mmio_read,
2435 .write = apic_mmio_write,
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002436};
2437
Avi Kivitye9d90d42012-07-26 18:01:50 +03002438static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
2439{
2440 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03002441 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002442
Wanpeng Liae95f562020-04-28 14:23:28 +08002443 apic_timer_expired(apic, true);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002444
Avi Kivity2a6eac92012-07-26 18:01:51 +03002445 if (lapic_is_periodic(apic)) {
Wanpeng Li8003c9a2016-10-24 18:23:13 +08002446 advance_periodic_target_expiration(apic);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002447 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
2448 return HRTIMER_RESTART;
2449 } else
2450 return HRTIMER_NORESTART;
2451}
2452
Sean Christophersonc3941d92019-04-17 10:15:33 -07002453int kvm_create_lapic(struct kvm_vcpu *vcpu, int timer_advance_ns)
Eddie Dong97222cc2007-09-12 10:58:04 +03002454{
2455 struct kvm_lapic *apic;
2456
2457 ASSERT(vcpu != NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03002458
Ben Gardon254272c2019-02-11 11:02:50 -08002459 apic = kzalloc(sizeof(*apic), GFP_KERNEL_ACCOUNT);
Eddie Dong97222cc2007-09-12 10:58:04 +03002460 if (!apic)
2461 goto nomem;
2462
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002463 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002464
Ben Gardon254272c2019-02-11 11:02:50 -08002465 apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09002466 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03002467 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
2468 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10002469 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002470 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002471 apic->vcpu = vcpu;
2472
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002473 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002474 HRTIMER_MODE_ABS_HARD);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002475 apic->lapic_timer.timer.function = apic_timer_fn;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002476 if (timer_advance_ns == -1) {
Wanpeng Lia0f00372019-09-26 08:54:03 +08002477 apic->lapic_timer.timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002478 lapic_timer_advance_dynamic = true;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002479 } else {
2480 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002481 lapic_timer_advance_dynamic = false;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002482 }
2483
Cun Li6e4e3b42021-01-11 23:24:35 +08002484 static_branch_inc(&apic_sw_disabled.key); /* sw disabled at reset */
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002485 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03002486
2487 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10002488nomem_free_apic:
2489 kfree(apic);
Saar Amara251fb902019-05-06 11:29:16 +03002490 vcpu->arch.apic = NULL;
Eddie Dong97222cc2007-09-12 10:58:04 +03002491nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03002492 return -ENOMEM;
2493}
Eddie Dong97222cc2007-09-12 10:58:04 +03002494
2495int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
2496{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002497 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002498 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002499
Paolo Bonzini72c3bcd2020-11-27 08:53:52 +01002500 if (!kvm_apic_present(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03002501 return -1;
2502
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002503 __apic_update_ppr(apic, &ppr);
2504 return apic_has_interrupt_for_ppr(apic, ppr);
Eddie Dong97222cc2007-09-12 10:58:04 +03002505}
Sean Christopherson25bb2cf2020-08-12 10:51:29 -07002506EXPORT_SYMBOL_GPL(kvm_apic_has_interrupt);
Eddie Dong97222cc2007-09-12 10:58:04 +03002507
Qing He40487c62007-09-17 14:47:13 +08002508int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
2509{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002510 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08002511
Gleb Natapovc48f1492012-08-05 15:58:33 +03002512 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Miaohe Lin3ce4dc12020-01-18 10:50:37 +08002513 return 1;
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04002514 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
2515 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
Miaohe Lin3ce4dc12020-01-18 10:50:37 +08002516 return 1;
2517 return 0;
Qing He40487c62007-09-17 14:47:13 +08002518}
2519
Eddie Dong1b9778d2007-09-03 16:56:58 +03002520void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
2521{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002522 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002523
Gleb Natapov54e98182012-08-05 15:58:32 +03002524 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002525 kvm_apic_inject_pending_timer_irqs(apic);
Jan Kiszkaf1ed0452013-04-28 14:00:41 +02002526 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002527 }
2528}
2529
Eddie Dong97222cc2007-09-12 10:58:04 +03002530int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
2531{
2532 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002533 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002534 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002535
2536 if (vector == -1)
2537 return -1;
2538
Wanpeng Li56cc2402014-08-05 12:42:24 +08002539 /*
2540 * We get here even with APIC virtualization enabled, if doing
2541 * nested virtualization and L1 runs with the "acknowledge interrupt
2542 * on exit" mode. Then we cannot inject the interrupt via RVI,
2543 * because the process would deliver it through the IDT.
2544 */
2545
Eddie Dong97222cc2007-09-12 10:58:04 +03002546 apic_clear_irr(vector, apic);
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01002547 if (to_hv_vcpu(vcpu) && test_bit(vector, to_hv_synic(vcpu)->auto_eoi_bitmap)) {
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002548 /*
2549 * For auto-EOI interrupts, there might be another pending
2550 * interrupt above PPR, so check whether to raise another
2551 * KVM_REQ_EVENT.
2552 */
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002553 apic_update_ppr(apic);
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002554 } else {
2555 /*
2556 * For normal interrupts, PPR has been raised and there cannot
2557 * be a higher-priority pending interrupt---except if there was
2558 * a concurrent interrupt injection, but that would have
2559 * triggered KVM_REQ_EVENT already.
2560 */
2561 apic_set_isr(vector, apic);
2562 __apic_update_ppr(apic, &ppr);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002563 }
2564
Eddie Dong97222cc2007-09-12 10:58:04 +03002565 return vector;
2566}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002567
Radim Krčmářa92e2542016-07-12 22:09:22 +02002568static int kvm_apic_state_fixup(struct kvm_vcpu *vcpu,
2569 struct kvm_lapic_state *s, bool set)
2570{
2571 if (apic_x2apic_mode(vcpu->arch.apic)) {
2572 u32 *id = (u32 *)(s->regs + APIC_ID);
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002573 u32 *ldr = (u32 *)(s->regs + APIC_LDR);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002574
Radim Krčmář371313132016-07-12 22:09:27 +02002575 if (vcpu->kvm->arch.x2apic_format) {
2576 if (*id != vcpu->vcpu_id)
2577 return -EINVAL;
2578 } else {
2579 if (set)
2580 *id >>= 24;
2581 else
2582 *id <<= 24;
2583 }
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002584
2585 /* In x2APIC mode, the LDR is fixed and based on the id */
2586 if (set)
2587 *ldr = kvm_apic_calc_x2apic_ldr(*id);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002588 }
2589
2590 return 0;
2591}
2592
2593int kvm_apic_get_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2594{
2595 memcpy(s->regs, vcpu->arch.apic->regs, sizeof(*s));
Peter Shier24647e02018-10-10 15:56:53 -07002596
2597 /*
2598 * Get calculated timer current count for remaining timer period (if
2599 * any) and store it in the returned register set.
2600 */
2601 __kvm_lapic_set_reg(s->regs, APIC_TMCCT,
2602 __apic_read(vcpu->arch.apic, APIC_TMCCT));
2603
Radim Krčmářa92e2542016-07-12 22:09:22 +02002604 return kvm_apic_state_fixup(vcpu, s, false);
2605}
2606
2607int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002608{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002609 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002610 int r;
2611
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03002612 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03002613 /* set SPIV separately to get count of SW disabled APICs right */
2614 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002615
2616 r = kvm_apic_state_fixup(vcpu, s, true);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002617 if (r) {
2618 kvm_recalculate_apic_map(vcpu->kvm);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002619 return r;
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002620 }
Jordan Borgner0e96f312018-10-28 12:58:28 +00002621 memcpy(vcpu->arch.apic->regs, s->regs, sizeof(*s));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002622
Paolo Bonzini44d52712020-06-22 16:37:42 +02002623 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002624 kvm_recalculate_apic_map(vcpu->kvm);
Gleb Natapovfc61b802009-07-05 17:39:35 +03002625 kvm_apic_set_version(vcpu);
2626
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002627 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002628 hrtimer_cancel(&apic->lapic_timer.timer);
Wanpeng Li35737d22021-03-04 08:35:18 +08002629 apic->lapic_timer.expired_tscdeadline = 0;
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002630 apic_update_lvtt(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002631 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002632 update_divide_count(apic);
Peter Shier24647e02018-10-10 15:56:53 -07002633 __start_apic_timer(apic, APIC_TMCCT);
Wanpeng Li27358862021-06-09 00:16:40 -07002634 kvm_lapic_set_reg(apic, APIC_TMCCT, 0);
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002635 kvm_apic_update_apicv(vcpu);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002636 apic->highest_isr_cache = -1;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002637 if (vcpu->arch.apicv_active) {
Jason Baronb36464772021-01-14 22:27:56 -05002638 static_call(kvm_x86_apicv_post_state_restore)(vcpu);
2639 static_call(kvm_x86_hwapic_irr_update)(vcpu,
Wei Wang4114c272014-11-05 10:53:43 +08002640 apic_find_highest_irr(apic));
Jason Baronb36464772021-01-14 22:27:56 -05002641 static_call(kvm_x86_hwapic_isr_update)(vcpu,
Tiejun Chenb4eef9b2014-12-22 10:32:57 +01002642 apic_find_highest_isr(apic));
Andrey Smetanind62caab2015-11-10 15:36:33 +03002643 }
Avi Kivity3842d132010-07-27 12:30:24 +03002644 kvm_make_request(KVM_REQ_EVENT, vcpu);
Steve Rutherford49df6392015-07-29 23:21:40 -07002645 if (ioapic_in_kernel(vcpu->kvm))
2646 kvm_rtc_eoi_tracking_restore_one(vcpu);
Radim Krčmář0669a512015-10-30 15:48:20 +01002647
2648 vcpu->arch.apic_arb_prio = 0;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002649
2650 return 0;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002651}
Eddie Donga3d7f852007-09-03 16:15:12 +03002652
Avi Kivity2f52d582008-01-16 12:49:30 +02002653void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03002654{
Eddie Donga3d7f852007-09-03 16:15:12 +03002655 struct hrtimer *timer;
2656
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002657 if (!lapic_in_kernel(vcpu) ||
2658 kvm_can_post_timer_interrupt(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03002659 return;
2660
Gleb Natapov54e98182012-08-05 15:58:32 +03002661 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03002662 if (hrtimer_cancel(timer))
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002663 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_HARD);
Eddie Donga3d7f852007-09-03 16:15:12 +03002664}
Avi Kivityb93463a2007-10-25 16:52:32 +02002665
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002666/*
2667 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
2668 *
2669 * Detect whether guest triggered PV EOI since the
2670 * last entry. If yes, set EOI on guests's behalf.
2671 * Clear PV EOI in guest memory in any case.
2672 */
2673static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
2674 struct kvm_lapic *apic)
2675{
2676 bool pending;
2677 int vector;
2678 /*
2679 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
2680 * and KVM_PV_EOI_ENABLED in guest memory as follows:
2681 *
2682 * KVM_APIC_PV_EOI_PENDING is unset:
2683 * -> host disabled PV EOI.
2684 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
2685 * -> host enabled PV EOI, guest did not execute EOI yet.
2686 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
2687 * -> host enabled PV EOI, guest executed EOI.
2688 */
2689 BUG_ON(!pv_eoi_enabled(vcpu));
2690 pending = pv_eoi_get_pending(vcpu);
2691 /*
2692 * Clear pending bit in any case: it will be set again on vmentry.
2693 * While this might not be ideal from performance point of view,
2694 * this makes sure pv eoi is only enabled when we know it's safe.
2695 */
2696 pv_eoi_clr_pending(vcpu);
2697 if (pending)
2698 return;
2699 vector = apic_set_eoi(apic);
2700 trace_kvm_pv_eoi(apic, vector);
2701}
2702
Avi Kivityb93463a2007-10-25 16:52:32 +02002703void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
2704{
2705 u32 data;
Avi Kivityb93463a2007-10-25 16:52:32 +02002706
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002707 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
2708 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
2709
Gleb Natapov41383772012-04-19 14:06:29 +03002710 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002711 return;
2712
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002713 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2714 sizeof(u32)))
Nicholas Krause603242a2015-08-05 10:44:40 -04002715 return;
Avi Kivityb93463a2007-10-25 16:52:32 +02002716
2717 apic_set_tpr(vcpu->arch.apic, data & 0xff);
2718}
2719
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002720/*
2721 * apic_sync_pv_eoi_to_guest - called before vmentry
2722 *
2723 * Detect whether it's safe to enable PV EOI and
2724 * if yes do so.
2725 */
2726static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
2727 struct kvm_lapic *apic)
2728{
2729 if (!pv_eoi_enabled(vcpu) ||
2730 /* IRR set or many bits in ISR: could be nested. */
2731 apic->irr_pending ||
2732 /* Cache not set: could be safe but we don't bother. */
2733 apic->highest_isr_cache == -1 ||
2734 /* Need EOI to update ioapic. */
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02002735 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002736 /*
2737 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
2738 * so we need not do anything here.
2739 */
2740 return;
2741 }
2742
2743 pv_eoi_set_pending(apic->vcpu);
2744}
2745
Avi Kivityb93463a2007-10-25 16:52:32 +02002746void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
2747{
2748 u32 data, tpr;
2749 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002750 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02002751
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002752 apic_sync_pv_eoi_to_guest(vcpu, apic);
2753
Gleb Natapov41383772012-04-19 14:06:29 +03002754 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002755 return;
2756
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002757 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02002758 max_irr = apic_find_highest_irr(apic);
2759 if (max_irr < 0)
2760 max_irr = 0;
2761 max_isr = apic_find_highest_isr(apic);
2762 if (max_isr < 0)
2763 max_isr = 0;
2764 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
2765
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002766 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2767 sizeof(u32));
Avi Kivityb93463a2007-10-25 16:52:32 +02002768}
2769
Andy Honigfda4e2e2013-11-20 10:23:22 -08002770int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
Avi Kivityb93463a2007-10-25 16:52:32 +02002771{
Andy Honigfda4e2e2013-11-20 10:23:22 -08002772 if (vapic_addr) {
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002773 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andy Honigfda4e2e2013-11-20 10:23:22 -08002774 &vcpu->arch.apic->vapic_cache,
2775 vapic_addr, sizeof(u32)))
2776 return -EINVAL;
Gleb Natapov41383772012-04-19 14:06:29 +03002777 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002778 } else {
Gleb Natapov41383772012-04-19 14:06:29 +03002779 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002780 }
2781
2782 vcpu->arch.apic->vapic_addr = vapic_addr;
2783 return 0;
Avi Kivityb93463a2007-10-25 16:52:32 +02002784}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002785
2786int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2787{
2788 struct kvm_lapic *apic = vcpu->arch.apic;
2789 u32 reg = (msr - APIC_BASE_MSR) << 4;
2790
Paolo Bonzini35754c92015-07-29 12:05:37 +02002791 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002792 return 1;
2793
Nadav Amitc69d3d92014-11-26 17:56:25 +02002794 if (reg == APIC_ICR2)
2795 return 1;
2796
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002797 /* if this is ICR write vector before command */
Radim Krčmářdecdc282014-11-26 17:07:05 +01002798 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002799 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2800 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002801}
2802
2803int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
2804{
2805 struct kvm_lapic *apic = vcpu->arch.apic;
2806 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
2807
Paolo Bonzini35754c92015-07-29 12:05:37 +02002808 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002809 return 1;
2810
Yi Wang0d888002019-07-06 01:08:48 +08002811 if (reg == APIC_DFR || reg == APIC_ICR2)
Nadav Amitc69d3d92014-11-26 17:56:25 +02002812 return 1;
Nadav Amitc69d3d92014-11-26 17:56:25 +02002813
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002814 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002815 return 1;
Radim Krčmářdecdc282014-11-26 17:07:05 +01002816 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002817 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002818
2819 *data = (((u64)high) << 32) | low;
2820
2821 return 0;
2822}
Gleb Natapov10388a02010-01-17 15:51:23 +02002823
2824int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
2825{
2826 struct kvm_lapic *apic = vcpu->arch.apic;
2827
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002828 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002829 return 1;
2830
2831 /* if this is ICR write vector before command */
2832 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002833 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2834 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov10388a02010-01-17 15:51:23 +02002835}
2836
2837int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
2838{
2839 struct kvm_lapic *apic = vcpu->arch.apic;
2840 u32 low, high = 0;
2841
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002842 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002843 return 1;
2844
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002845 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov10388a02010-01-17 15:51:23 +02002846 return 1;
2847 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002848 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov10388a02010-01-17 15:51:23 +02002849
2850 *data = (((u64)high) << 32) | low;
2851
2852 return 0;
2853}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002854
Ladi Prosek72bbf932018-10-16 18:49:59 +02002855int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002856{
2857 u64 addr = data & ~KVM_MSR_ENABLED;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002858 struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
2859 unsigned long new_len;
2860
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002861 if (!IS_ALIGNED(addr, 4))
2862 return 1;
2863
2864 vcpu->arch.pv_eoi.msr_val = data;
2865 if (!pv_eoi_enabled(vcpu))
2866 return 0;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002867
2868 if (addr == ghc->gpa && len <= ghc->len)
2869 new_len = ghc->len;
2870 else
2871 new_len = len;
2872
2873 return kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002874}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002875
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002876int kvm_apic_accept_events(struct kvm_vcpu *vcpu)
Jan Kiszka66450a22013-03-13 12:42:34 +01002877{
2878 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01002879 u8 sipi_vector;
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002880 int r;
Gleb Natapov299018f2013-06-03 11:30:02 +03002881 unsigned long pe;
Jan Kiszka66450a22013-03-13 12:42:34 +01002882
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002883 if (!lapic_in_kernel(vcpu))
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002884 return 0;
Jan Kiszka66450a22013-03-13 12:42:34 +01002885
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002886 /*
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002887 * Read pending events before calling the check_events
2888 * callback.
2889 */
2890 pe = smp_load_acquire(&apic->pending_events);
2891 if (!pe)
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002892 return 0;
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002893
2894 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08002895 r = kvm_check_nested_events(vcpu);
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002896 if (r < 0)
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002897 return r == -EBUSY ? 0 : r;
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002898 /*
2899 * If an event has happened and caused a vmexit,
2900 * we know INITs are latched and therefore
2901 * we will not incorrectly deliver an APIC
2902 * event instead of a vmexit.
2903 */
2904 }
2905
2906 /*
Liran Alon4b9852f2019-08-26 13:24:49 +03002907 * INITs are latched while CPU is in specific states
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002908 * (SMM, VMX root mode, SVM with GIF=0).
Liran Alon4b9852f2019-08-26 13:24:49 +03002909 * Because a CPU cannot be in these states immediately
2910 * after it has processed an INIT signal (and thus in
2911 * KVM_MP_STATE_INIT_RECEIVED state), just eat SIPIs
2912 * and leave the INIT pending.
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002913 */
Liran Alon27cbe7d2019-11-11 11:16:40 +02002914 if (kvm_vcpu_latch_init(vcpu)) {
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002915 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002916 if (test_bit(KVM_APIC_SIPI, &pe))
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002917 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002918 return 0;
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002919 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002920
2921 if (test_bit(KVM_APIC_INIT, &pe)) {
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002922 clear_bit(KVM_APIC_INIT, &apic->pending_events);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002923 kvm_vcpu_reset(vcpu, true);
Jan Kiszka66450a22013-03-13 12:42:34 +01002924 if (kvm_vcpu_is_bsp(apic->vcpu))
2925 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2926 else
2927 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
2928 }
Maxim Levitskyf57ad632020-12-03 16:33:19 +02002929 if (test_bit(KVM_APIC_SIPI, &pe)) {
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002930 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
Maxim Levitskyf57ad632020-12-03 16:33:19 +02002931 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
2932 /* evaluate pending_events before reading the vector */
2933 smp_rmb();
2934 sipi_vector = apic->sipi_vector;
Tom Lendacky647daca2021-01-04 14:20:01 -06002935 kvm_x86_ops.vcpu_deliver_sipi_vector(vcpu, sipi_vector);
Maxim Levitskyf57ad632020-12-03 16:33:19 +02002936 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2937 }
Jan Kiszka66450a22013-03-13 12:42:34 +01002938 }
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002939 return 0;
Jan Kiszka66450a22013-03-13 12:42:34 +01002940}
2941
David Matlackcef84c32016-12-16 14:30:36 -08002942void kvm_lapic_exit(void)
2943{
2944 static_key_deferred_flush(&apic_hw_disabled);
2945 static_key_deferred_flush(&apic_sw_disabled);
2946}