blob: d7e6fde82d254408fe3b208eb5631d1c718c71a7 [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;
Marc Zyngier46808a42021-11-16 16:04:02 +0000188 unsigned long 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
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300676static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
677{
Li RongQingce5977b2021-11-04 19:56:13 +0800678 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300679 return;
Li RongQingce5977b2021-11-04 19:56:13 +0800680
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300681 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
682}
683
Li RongQing51b12092021-11-04 19:56:14 +0800684static bool pv_eoi_test_and_clr_pending(struct kvm_vcpu *vcpu)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300685{
Li RongQing51b12092021-11-04 19:56:14 +0800686 u8 val;
Li RongQingce5977b2021-11-04 19:56:13 +0800687
Li RongQing51b12092021-11-04 19:56:14 +0800688 if (pv_eoi_get_user(vcpu, &val) < 0)
689 return false;
690
691 val &= KVM_PV_EOI_ENABLED;
692
693 if (val && pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0)
694 return false;
695
696 /*
697 * Clear pending bit in any case: it will be set again on vmentry.
698 * While this might not be ideal from performance point of view,
699 * this makes sure pv eoi is only enabled when we know it's safe.
700 */
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300701 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
Li RongQing51b12092021-11-04 19:56:14 +0800702
703 return val;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300704}
705
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100706static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
707{
Paolo Bonzini3d927892016-12-19 13:29:03 +0100708 int highest_irr;
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -0500709 if (kvm_x86_ops.sync_pir_to_irr)
Jason Baronb36464772021-01-14 22:27:56 -0500710 highest_irr = static_call(kvm_x86_sync_pir_to_irr)(apic->vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100711 else
712 highest_irr = apic_find_highest_irr(apic);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100713 if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
714 return -1;
715 return highest_irr;
716}
717
718static bool __apic_update_ppr(struct kvm_lapic *apic, u32 *new_ppr)
Eddie Dong97222cc2007-09-12 10:58:04 +0300719{
Avi Kivity3842d132010-07-27 12:30:24 +0300720 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300721 int isr;
722
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500723 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
724 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300725 isr = apic_find_highest_isr(apic);
726 isrv = (isr != -1) ? isr : 0;
727
728 if ((tpr & 0xf0) >= (isrv & 0xf0))
729 ppr = tpr & 0xff;
730 else
731 ppr = isrv & 0xf0;
732
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100733 *new_ppr = ppr;
734 if (old_ppr != ppr)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500735 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100736
737 return ppr < old_ppr;
738}
739
740static void apic_update_ppr(struct kvm_lapic *apic)
741{
742 u32 ppr;
743
Paolo Bonzini26fbbee2016-12-18 13:54:58 +0100744 if (__apic_update_ppr(apic, &ppr) &&
745 apic_has_interrupt_for_ppr(apic, ppr) != -1)
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100746 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300747}
748
Paolo Bonzinieb90f342016-12-18 14:02:21 +0100749void kvm_apic_update_ppr(struct kvm_vcpu *vcpu)
750{
751 apic_update_ppr(vcpu->arch.apic);
752}
753EXPORT_SYMBOL_GPL(kvm_apic_update_ppr);
754
Eddie Dong97222cc2007-09-12 10:58:04 +0300755static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
756{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500757 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
Eddie Dong97222cc2007-09-12 10:58:04 +0300758 apic_update_ppr(apic);
759}
760
Radim Krčmář03d22492015-02-12 19:41:31 +0100761static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300762{
Radim Krčmářb4535b52016-12-15 18:06:47 +0100763 return mda == (apic_x2apic_mode(apic) ?
764 X2APIC_BROADCAST : APIC_BROADCAST);
Eddie Dong97222cc2007-09-12 10:58:04 +0300765}
766
Radim Krčmář03d22492015-02-12 19:41:31 +0100767static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
Nadav Amit394457a2014-10-03 00:30:52 +0300768{
Radim Krčmář03d22492015-02-12 19:41:31 +0100769 if (kvm_apic_broadcast(apic, mda))
770 return true;
771
772 if (apic_x2apic_mode(apic))
Radim Krčmář6e500432016-12-15 18:06:46 +0100773 return mda == kvm_x2apic_id(apic);
Radim Krčmář03d22492015-02-12 19:41:31 +0100774
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100775 /*
776 * Hotplug hack: Make LAPIC in xAPIC mode also accept interrupts as if
777 * it were in x2APIC mode. Hotplugged VCPUs start in xAPIC mode and
778 * this allows unique addressing of VCPUs with APIC ID over 0xff.
779 * The 0xff condition is needed because writeable xAPIC ID.
780 */
781 if (kvm_x2apic_id(apic) > 0xff && mda == kvm_x2apic_id(apic))
782 return true;
783
Radim Krčmářb4535b52016-12-15 18:06:47 +0100784 return mda == kvm_xapic_id(apic);
Nadav Amit394457a2014-10-03 00:30:52 +0300785}
786
Radim Krčmář52c233a2015-01-29 22:48:48 +0100787static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300788{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300789 u32 logical_id;
790
Nadav Amit394457a2014-10-03 00:30:52 +0300791 if (kvm_apic_broadcast(apic, mda))
Radim Krčmář9368b562015-01-29 22:48:49 +0100792 return true;
Nadav Amit394457a2014-10-03 00:30:52 +0300793
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500794 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300795
Radim Krčmář9368b562015-01-29 22:48:49 +0100796 if (apic_x2apic_mode(apic))
Radim Krčmář8a395362015-01-29 22:48:51 +0100797 return ((logical_id >> 16) == (mda >> 16))
798 && (logical_id & mda & 0xffff) != 0;
Radim Krčmář9368b562015-01-29 22:48:49 +0100799
800 logical_id = GET_APIC_LOGICAL_ID(logical_id);
Eddie Dong97222cc2007-09-12 10:58:04 +0300801
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500802 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300803 case APIC_DFR_FLAT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100804 return (logical_id & mda) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300805 case APIC_DFR_CLUSTER:
Radim Krčmář9368b562015-01-29 22:48:49 +0100806 return ((logical_id >> 4) == (mda >> 4))
807 && (logical_id & mda & 0xf) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300808 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100809 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300810 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300811}
812
Radim Krčmářc5192652016-07-12 22:09:28 +0200813/* The KVM local APIC implementation has two quirks:
814 *
Radim Krčmářb4535b52016-12-15 18:06:47 +0100815 * - Real hardware delivers interrupts destined to x2APIC ID > 0xff to LAPICs
816 * in xAPIC mode if the "destination & 0xff" matches its xAPIC ID.
817 * KVM doesn't do that aliasing.
Radim Krčmářc5192652016-07-12 22:09:28 +0200818 *
819 * - in-kernel IOAPIC messages have to be delivered directly to
820 * x2APIC, because the kernel does not support interrupt remapping.
821 * In order to support broadcast without interrupt remapping, x2APIC
822 * rewrites the destination of non-IPI messages from APIC_BROADCAST
823 * to X2APIC_BROADCAST.
824 *
825 * The broadcast quirk can be disabled with KVM_CAP_X2APIC_API. This is
826 * important when userspace wants to use x2APIC-format MSIs, because
827 * APIC_BROADCAST (0xff) is a legal route for "cluster 0, CPUs 0-7".
Radim Krčmář03d22492015-02-12 19:41:31 +0100828 */
Radim Krčmářc5192652016-07-12 22:09:28 +0200829static u32 kvm_apic_mda(struct kvm_vcpu *vcpu, unsigned int dest_id,
830 struct kvm_lapic *source, struct kvm_lapic *target)
Radim Krčmář03d22492015-02-12 19:41:31 +0100831{
832 bool ipi = source != NULL;
Radim Krčmář03d22492015-02-12 19:41:31 +0100833
Radim Krčmářc5192652016-07-12 22:09:28 +0200834 if (!vcpu->kvm->arch.x2apic_broadcast_quirk_disabled &&
Radim Krčmářb4535b52016-12-15 18:06:47 +0100835 !ipi && dest_id == APIC_BROADCAST && apic_x2apic_mode(target))
Radim Krčmář03d22492015-02-12 19:41:31 +0100836 return X2APIC_BROADCAST;
837
Radim Krčmářb4535b52016-12-15 18:06:47 +0100838 return dest_id;
Radim Krčmář03d22492015-02-12 19:41:31 +0100839}
840
Radim Krčmář52c233a2015-01-29 22:48:48 +0100841bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Peter Xu5c69d5c2019-12-04 20:07:20 +0100842 int shorthand, unsigned int dest, int dest_mode)
Eddie Dong97222cc2007-09-12 10:58:04 +0300843{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800844 struct kvm_lapic *target = vcpu->arch.apic;
Radim Krčmářc5192652016-07-12 22:09:28 +0200845 u32 mda = kvm_apic_mda(vcpu, dest, source, target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300846
Zachary Amsdenbd371392010-06-14 11:42:15 -1000847 ASSERT(target);
Peter Xu5c69d5c2019-12-04 20:07:20 +0100848 switch (shorthand) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300849 case APIC_DEST_NOSHORT:
Radim Krčmář3697f302015-01-29 22:48:50 +0100850 if (dest_mode == APIC_DEST_PHYSICAL)
Radim Krčmář03d22492015-02-12 19:41:31 +0100851 return kvm_apic_match_physical_addr(target, mda);
Gleb Natapov343f94f2009-03-05 16:34:54 +0200852 else
Radim Krčmář03d22492015-02-12 19:41:31 +0100853 return kvm_apic_match_logical_addr(target, mda);
Eddie Dong97222cc2007-09-12 10:58:04 +0300854 case APIC_DEST_SELF:
Radim Krčmář9368b562015-01-29 22:48:49 +0100855 return target == source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300856 case APIC_DEST_ALLINC:
Radim Krčmář9368b562015-01-29 22:48:49 +0100857 return true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300858 case APIC_DEST_ALLBUT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100859 return target != source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300860 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100861 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300862 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300863}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500864EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
Eddie Dong97222cc2007-09-12 10:58:04 +0300865
Feng Wu520040142016-01-25 16:53:33 +0800866int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
867 const unsigned long *bitmap, u32 bitmap_size)
868{
869 u32 mod;
870 int i, idx = -1;
871
872 mod = vector % dest_vcpus;
873
874 for (i = 0; i <= mod; i++) {
875 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
876 BUG_ON(idx == bitmap_size);
877 }
878
879 return idx;
880}
881
Radim Krčmář4efd8052016-02-12 15:00:15 +0100882static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
883{
884 if (!kvm->arch.disabled_lapic_found) {
885 kvm->arch.disabled_lapic_found = true;
886 printk(KERN_INFO
887 "Disabled LAPIC found during irq injection\n");
888 }
889}
890
Radim Krčmářc5192652016-07-12 22:09:28 +0200891static bool kvm_apic_is_broadcast_dest(struct kvm *kvm, struct kvm_lapic **src,
892 struct kvm_lapic_irq *irq, struct kvm_apic_map *map)
893{
894 if (kvm->arch.x2apic_broadcast_quirk_disabled) {
895 if ((irq->dest_id == APIC_BROADCAST &&
896 map->mode != KVM_APIC_MODE_X2APIC))
897 return true;
898 if (irq->dest_id == X2APIC_BROADCAST)
899 return true;
900 } else {
901 bool x2apic_ipi = src && *src && apic_x2apic_mode(*src);
902 if (irq->dest_id == (x2apic_ipi ?
903 X2APIC_BROADCAST : APIC_BROADCAST))
904 return true;
905 }
906
907 return false;
908}
909
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200910/* Return true if the interrupt can be handled by using *bitmap as index mask
911 * for valid destinations in *dst array.
912 * Return false if kvm_apic_map_get_dest_lapic did nothing useful.
913 * Note: we may have zero kvm_lapic destinations when we return true, which
914 * means that the interrupt should be dropped. In this case, *bitmap would be
915 * zero and *dst undefined.
916 */
917static inline bool kvm_apic_map_get_dest_lapic(struct kvm *kvm,
918 struct kvm_lapic **src, struct kvm_lapic_irq *irq,
919 struct kvm_apic_map *map, struct kvm_lapic ***dst,
920 unsigned long *bitmap)
921{
922 int i, lowest;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200923
924 if (irq->shorthand == APIC_DEST_SELF && src) {
925 *dst = src;
926 *bitmap = 1;
927 return true;
928 } else if (irq->shorthand)
929 return false;
930
Radim Krčmářc5192652016-07-12 22:09:28 +0200931 if (!map || kvm_apic_is_broadcast_dest(kvm, src, irq, map))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200932 return false;
933
934 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200935 if (irq->dest_id > map->max_apic_id) {
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200936 *bitmap = 0;
937 } else {
Paolo Bonzini1d487e92019-04-11 11:16:47 +0200938 u32 dest_id = array_index_nospec(irq->dest_id, map->max_apic_id + 1);
939 *dst = &map->phys_map[dest_id];
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200940 *bitmap = 1;
941 }
942 return true;
943 }
944
Radim Krčmáře45115b2016-07-12 22:09:19 +0200945 *bitmap = 0;
946 if (!kvm_apic_map_get_logical_dest(map, irq->dest_id, dst,
947 (u16 *)bitmap))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200948 return false;
949
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200950 if (!kvm_lowest_prio_delivery(irq))
951 return true;
952
953 if (!kvm_vector_hashing_enabled()) {
954 lowest = -1;
955 for_each_set_bit(i, bitmap, 16) {
956 if (!(*dst)[i])
957 continue;
958 if (lowest < 0)
959 lowest = i;
960 else if (kvm_apic_compare_prio((*dst)[i]->vcpu,
961 (*dst)[lowest]->vcpu) < 0)
962 lowest = i;
963 }
964 } else {
965 if (!*bitmap)
966 return true;
967
968 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap),
969 bitmap, 16);
970
971 if (!(*dst)[lowest]) {
972 kvm_apic_disabled_lapic_found(kvm);
973 *bitmap = 0;
974 return true;
975 }
976 }
977
978 *bitmap = (lowest >= 0) ? 1 << lowest : 0;
979
980 return true;
981}
982
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300983bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100984 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300985{
986 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200987 unsigned long bitmap;
988 struct kvm_lapic **dst = NULL;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300989 int i;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200990 bool ret;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300991
992 *r = -1;
993
994 if (irq->shorthand == APIC_DEST_SELF) {
Yang Zhangb4f22252013-04-11 19:21:37 +0800995 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300996 return true;
997 }
998
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300999 rcu_read_lock();
1000 map = rcu_dereference(kvm->arch.apic_map);
1001
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001002 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dst, &bitmap);
Paolo Bonzini0624fca2018-10-01 16:07:18 +02001003 if (ret) {
1004 *r = 0;
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001005 for_each_set_bit(i, &bitmap, 16) {
1006 if (!dst[i])
1007 continue;
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001008 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
Radim Krčmář3548a252015-02-12 19:41:33 +01001009 }
Paolo Bonzini0624fca2018-10-01 16:07:18 +02001010 }
Radim Krčmář3548a252015-02-12 19:41:33 +01001011
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001012 rcu_read_unlock();
1013 return ret;
1014}
1015
Feng Wu6228a0d2016-01-25 16:53:34 +08001016/*
Miaohe Lin00116792019-12-11 14:26:23 +08001017 * This routine tries to handle interrupts in posted mode, here is how
Feng Wu6228a0d2016-01-25 16:53:34 +08001018 * it deals with different cases:
1019 * - For single-destination interrupts, handle it in posted mode
1020 * - Else if vector hashing is enabled and it is a lowest-priority
1021 * interrupt, handle it in posted mode and use the following mechanism
Miaohe Lin67b0ae42019-12-11 14:26:22 +08001022 * to find the destination vCPU.
Feng Wu6228a0d2016-01-25 16:53:34 +08001023 * 1. For lowest-priority interrupts, store all the possible
1024 * destination vCPUs in an array.
1025 * 2. Use "guest vector % max number of destination vCPUs" to find
1026 * the right destination vCPU in the array for the lowest-priority
1027 * interrupt.
1028 * - Otherwise, use remapped mode to inject the interrupt.
1029 */
Feng Wu8feb4a02015-09-18 22:29:47 +08001030bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
1031 struct kvm_vcpu **dest_vcpu)
1032{
1033 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001034 unsigned long bitmap;
1035 struct kvm_lapic **dst = NULL;
Feng Wu8feb4a02015-09-18 22:29:47 +08001036 bool ret = false;
Feng Wu8feb4a02015-09-18 22:29:47 +08001037
1038 if (irq->shorthand)
1039 return false;
1040
1041 rcu_read_lock();
1042 map = rcu_dereference(kvm->arch.apic_map);
1043
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001044 if (kvm_apic_map_get_dest_lapic(kvm, NULL, irq, map, &dst, &bitmap) &&
1045 hweight16(bitmap) == 1) {
1046 unsigned long i = find_first_bit(&bitmap, 16);
Feng Wu8feb4a02015-09-18 22:29:47 +08001047
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001048 if (dst[i]) {
1049 *dest_vcpu = dst[i]->vcpu;
1050 ret = true;
Feng Wu8feb4a02015-09-18 22:29:47 +08001051 }
Feng Wu8feb4a02015-09-18 22:29:47 +08001052 }
1053
Feng Wu8feb4a02015-09-18 22:29:47 +08001054 rcu_read_unlock();
1055 return ret;
1056}
1057
Eddie Dong97222cc2007-09-12 10:58:04 +03001058/*
1059 * Add a pending IRQ into lapic.
1060 * Return 1 if successfully added and 0 if discarded.
1061 */
1062static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +08001063 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001064 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +03001065{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001066 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +03001067 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +03001068
Paolo Bonzinia183b632014-09-11 11:51:02 +02001069 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
1070 trig_mode, vector);
Eddie Dong97222cc2007-09-12 10:58:04 +03001071 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001072 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +02001073 vcpu->arch.apic_arb_prio++;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001074 fallthrough;
Gleb Natapove1035712009-03-05 16:34:59 +02001075 case APIC_DM_FIXED:
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001076 if (unlikely(trig_mode && !level))
1077 break;
1078
Eddie Dong97222cc2007-09-12 10:58:04 +03001079 /* FIXME add logic for vcpu on reset */
1080 if (unlikely(!apic_enabled(apic)))
1081 break;
1082
Jan Kiszka11f5cc02013-07-25 09:58:45 +02001083 result = 1;
1084
Joerg Roedel9daa5002016-02-29 16:04:44 +01001085 if (dest_map) {
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001086 __set_bit(vcpu->vcpu_id, dest_map->map);
Joerg Roedel9daa5002016-02-29 16:04:44 +01001087 dest_map->vectors[vcpu->vcpu_id] = vector;
1088 }
Avi Kivitya5d36f82009-12-29 12:42:16 +02001089
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001090 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
1091 if (trig_mode)
Wei Yangee171d22019-03-31 19:17:22 -07001092 kvm_lapic_set_vector(vector,
1093 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001094 else
Wei Yangee171d22019-03-31 19:17:22 -07001095 kvm_lapic_clear_vector(vector,
1096 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001097 }
1098
Sean Christopherson57dfd7b2022-01-28 00:51:48 +00001099 static_call(kvm_x86_deliver_interrupt)(apic, delivery_mode,
1100 trig_mode, vector);
Eddie Dong97222cc2007-09-12 10:58:04 +03001101 break;
1102
1103 case APIC_DM_REMRD:
Raghavendra K T24d21662013-08-26 14:18:35 +05301104 result = 1;
1105 vcpu->arch.pv.pv_unhalted = 1;
1106 kvm_make_request(KVM_REQ_EVENT, vcpu);
1107 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001108 break;
1109
1110 case APIC_DM_SMI:
Paolo Bonzini64d60672015-05-07 11:36:11 +02001111 result = 1;
1112 kvm_make_request(KVM_REQ_SMI, vcpu);
1113 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001114 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001115
Eddie Dong97222cc2007-09-12 10:58:04 +03001116 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001117 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001118 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +02001119 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001120 break;
1121
1122 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +01001123 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001124 result = 1;
Jan Kiszka66450a22013-03-13 12:42:34 +01001125 /* assumes that there are only KVM_APIC_INIT/SIPI */
1126 apic->pending_events = (1UL << KVM_APIC_INIT);
Avi Kivity3842d132010-07-27 12:30:24 +03001127 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001128 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001129 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001130 break;
1131
1132 case APIC_DM_STARTUP:
Jan Kiszka66450a22013-03-13 12:42:34 +01001133 result = 1;
1134 apic->sipi_vector = vector;
1135 /* make sure sipi_vector is visible for the receiver */
1136 smp_wmb();
1137 set_bit(KVM_APIC_SIPI, &apic->pending_events);
1138 kvm_make_request(KVM_REQ_EVENT, vcpu);
1139 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001140 break;
1141
Jan Kiszka23930f92008-09-26 09:30:52 +02001142 case APIC_DM_EXTINT:
1143 /*
1144 * Should only be called by kvm_apic_local_deliver() with LVT0,
1145 * before NMI watchdog was enabled. Already handled by
1146 * kvm_apic_accept_pic_intr().
1147 */
1148 break;
1149
Eddie Dong97222cc2007-09-12 10:58:04 +03001150 default:
1151 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
1152 delivery_mode);
1153 break;
1154 }
1155 return result;
1156}
1157
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001158/*
1159 * This routine identifies the destination vcpus mask meant to receive the
1160 * IOAPIC interrupts. It either uses kvm_apic_map_get_dest_lapic() to find
1161 * out the destination vcpus array and set the bitmap or it traverses to
1162 * each available vcpu to identify the same.
1163 */
1164void kvm_bitmap_or_dest_vcpus(struct kvm *kvm, struct kvm_lapic_irq *irq,
1165 unsigned long *vcpu_bitmap)
1166{
1167 struct kvm_lapic **dest_vcpu = NULL;
1168 struct kvm_lapic *src = NULL;
1169 struct kvm_apic_map *map;
1170 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00001171 unsigned long bitmap, i;
1172 int vcpu_idx;
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001173 bool ret;
1174
1175 rcu_read_lock();
1176 map = rcu_dereference(kvm->arch.apic_map);
1177
1178 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dest_vcpu,
1179 &bitmap);
1180 if (ret) {
1181 for_each_set_bit(i, &bitmap, 16) {
1182 if (!dest_vcpu[i])
1183 continue;
1184 vcpu_idx = dest_vcpu[i]->vcpu->vcpu_idx;
1185 __set_bit(vcpu_idx, vcpu_bitmap);
1186 }
1187 } else {
1188 kvm_for_each_vcpu(i, vcpu, kvm) {
1189 if (!kvm_apic_present(vcpu))
1190 continue;
1191 if (!kvm_apic_match_dest(vcpu, NULL,
Peter Xub4b29632019-12-04 20:07:16 +01001192 irq->shorthand,
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001193 irq->dest_id,
1194 irq->dest_mode))
1195 continue;
1196 __set_bit(i, vcpu_bitmap);
1197 }
1198 }
1199 rcu_read_unlock();
1200}
1201
Gleb Natapove1035712009-03-05 16:34:59 +02001202int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +03001203{
Gleb Natapove1035712009-03-05 16:34:59 +02001204 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +08001205}
1206
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001207static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
1208{
Andrey Smetanin63086302015-11-10 15:36:32 +03001209 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001210}
1211
Yang Zhangc7c9c562013-01-25 10:18:51 +08001212static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
1213{
Steve Rutherford7543a632015-07-29 23:21:41 -07001214 int trigger_mode;
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001215
Steve Rutherford7543a632015-07-29 23:21:41 -07001216 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
1217 if (!kvm_ioapic_handles_vector(apic, vector))
1218 return;
1219
1220 /* Request a KVM exit to inform the userspace IOAPIC. */
1221 if (irqchip_split(apic->vcpu->kvm)) {
1222 apic->vcpu->arch.pending_ioapic_eoi = vector;
1223 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1224 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08001225 }
Steve Rutherford7543a632015-07-29 23:21:41 -07001226
1227 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1228 trigger_mode = IOAPIC_LEVEL_TRIG;
1229 else
1230 trigger_mode = IOAPIC_EDGE_TRIG;
1231
1232 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
Yang Zhangc7c9c562013-01-25 10:18:51 +08001233}
1234
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001235static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001236{
1237 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001238
1239 trace_kvm_eoi(apic, vector);
1240
Eddie Dong97222cc2007-09-12 10:58:04 +03001241 /*
1242 * Not every write EOI will has corresponding ISR,
1243 * one example is when Kernel check timer on setup_IO_APIC
1244 */
1245 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001246 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001247
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001248 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001249 apic_update_ppr(apic);
1250
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01001251 if (to_hv_vcpu(apic->vcpu) &&
1252 test_bit(vector, to_hv_synic(apic->vcpu)->vec_bitmap))
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001253 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1254
Yang Zhangc7c9c562013-01-25 10:18:51 +08001255 kvm_ioapic_send_eoi(apic, vector);
Avi Kivity3842d132010-07-27 12:30:24 +03001256 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001257 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001258}
1259
Yang Zhangc7c9c562013-01-25 10:18:51 +08001260/*
1261 * this interface assumes a trap-like exit, which has already finished
1262 * desired side effect including vISR and vPPR update.
1263 */
1264void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1265{
1266 struct kvm_lapic *apic = vcpu->arch.apic;
1267
1268 trace_kvm_eoi(apic, vector);
1269
1270 kvm_ioapic_send_eoi(apic, vector);
1271 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1272}
1273EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1274
Wanpeng Lid5361672020-03-26 10:20:02 +08001275void kvm_apic_send_ipi(struct kvm_lapic *apic, u32 icr_low, u32 icr_high)
Eddie Dong97222cc2007-09-12 10:58:04 +03001276{
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001277 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +03001278
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001279 irq.vector = icr_low & APIC_VECTOR_MASK;
1280 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1281 irq.dest_mode = icr_low & APIC_DEST_MASK;
Paolo Bonzinib7cb2232015-04-21 14:57:05 +02001282 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001283 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1284 irq.shorthand = icr_low & APIC_SHORT_MASK;
James Sullivan93bbf0b2015-03-18 19:26:03 -06001285 irq.msi_redir_hint = false;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001286 if (apic_x2apic_mode(apic))
1287 irq.dest_id = icr_high;
1288 else
1289 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +03001290
Gleb Natapov1000ff82009-07-07 16:00:57 +03001291 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1292
Yang Zhangb4f22252013-04-11 19:21:37 +08001293 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03001294}
1295
1296static u32 apic_get_tmcct(struct kvm_lapic *apic)
1297{
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001298 ktime_t remaining, now;
Marcelo Tosattib682b812009-02-10 20:41:41 -02001299 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001300 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +03001301
1302 ASSERT(apic != NULL);
1303
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001304 /* if initial count is 0, current count should also be 0 */
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001305 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
Andy Honigb963a222013-11-19 14:12:18 -08001306 apic->lapic_timer.period == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001307 return 0;
1308
Paolo Bonzini55878592016-10-25 15:23:49 +02001309 now = ktime_get();
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001310 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
Marcelo Tosattib682b812009-02-10 20:41:41 -02001311 if (ktime_to_ns(remaining) < 0)
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001312 remaining = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001313
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001314 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1315 tmcct = div64_u64(ns,
1316 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +03001317
1318 return tmcct;
1319}
1320
Avi Kivityb209749f2007-10-22 16:50:39 +02001321static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1322{
1323 struct kvm_vcpu *vcpu = apic->vcpu;
1324 struct kvm_run *run = vcpu->run;
1325
Avi Kivitya8eeb042010-05-10 12:34:53 +03001326 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001327 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +02001328 run->tpr_access.is_write = write;
1329}
1330
1331static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1332{
1333 if (apic->vcpu->arch.tpr_access_reporting)
1334 __report_tpr_access(apic, write);
1335}
1336
Eddie Dong97222cc2007-09-12 10:58:04 +03001337static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1338{
1339 u32 val = 0;
1340
1341 if (offset >= LAPIC_MMIO_LENGTH)
1342 return 0;
1343
1344 switch (offset) {
1345 case APIC_ARBPRI:
Eddie Dong97222cc2007-09-12 10:58:04 +03001346 break;
1347
1348 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001349 if (apic_lvtt_tscdeadline(apic))
1350 return 0;
1351
Eddie Dong97222cc2007-09-12 10:58:04 +03001352 val = apic_get_tmcct(apic);
1353 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +03001354 case APIC_PROCPRI:
1355 apic_update_ppr(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001356 val = kvm_lapic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +03001357 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02001358 case APIC_TASKPRI:
1359 report_tpr_access(apic, false);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001360 fallthrough;
Eddie Dong97222cc2007-09-12 10:58:04 +03001361 default:
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001362 val = kvm_lapic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +03001363 break;
1364 }
1365
1366 return val;
1367}
1368
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001369static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1370{
1371 return container_of(dev, struct kvm_lapic, dev);
1372}
1373
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001374#define APIC_REG_MASK(reg) (1ull << ((reg) >> 4))
1375#define APIC_REGS_MASK(first, count) \
1376 (APIC_REG_MASK(first) * ((1ull << (count)) - 1))
1377
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001378int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001379 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001380{
Eddie Dong97222cc2007-09-12 10:58:04 +03001381 unsigned char alignment = offset & 0xf;
1382 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +08001383 /* this bitmask has a bit cleared for each reserved register */
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001384 u64 valid_reg_mask =
1385 APIC_REG_MASK(APIC_ID) |
1386 APIC_REG_MASK(APIC_LVR) |
1387 APIC_REG_MASK(APIC_TASKPRI) |
1388 APIC_REG_MASK(APIC_PROCPRI) |
1389 APIC_REG_MASK(APIC_LDR) |
1390 APIC_REG_MASK(APIC_DFR) |
1391 APIC_REG_MASK(APIC_SPIV) |
1392 APIC_REGS_MASK(APIC_ISR, APIC_ISR_NR) |
1393 APIC_REGS_MASK(APIC_TMR, APIC_ISR_NR) |
1394 APIC_REGS_MASK(APIC_IRR, APIC_ISR_NR) |
1395 APIC_REG_MASK(APIC_ESR) |
1396 APIC_REG_MASK(APIC_ICR) |
1397 APIC_REG_MASK(APIC_ICR2) |
1398 APIC_REG_MASK(APIC_LVTT) |
1399 APIC_REG_MASK(APIC_LVTTHMR) |
1400 APIC_REG_MASK(APIC_LVTPC) |
1401 APIC_REG_MASK(APIC_LVT0) |
1402 APIC_REG_MASK(APIC_LVT1) |
1403 APIC_REG_MASK(APIC_LVTERR) |
1404 APIC_REG_MASK(APIC_TMICT) |
1405 APIC_REG_MASK(APIC_TMCCT) |
1406 APIC_REG_MASK(APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001407
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001408 /* ARBPRI is not valid on x2APIC */
1409 if (!apic_x2apic_mode(apic))
1410 valid_reg_mask |= APIC_REG_MASK(APIC_ARBPRI);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001411
Jim Mattson218bf772021-06-02 13:52:24 -07001412 if (alignment + len > 4)
1413 return 1;
1414
Yi Wang0d888002019-07-06 01:08:48 +08001415 if (offset > 0x3f0 || !(valid_reg_mask & APIC_REG_MASK(offset)))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001416 return 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001417
Eddie Dong97222cc2007-09-12 10:58:04 +03001418 result = __apic_read(apic, offset & ~0xf);
1419
Marcelo Tosatti229456f2009-06-17 09:22:14 -03001420 trace_kvm_apic_read(offset, result);
1421
Eddie Dong97222cc2007-09-12 10:58:04 +03001422 switch (len) {
1423 case 1:
1424 case 2:
1425 case 4:
1426 memcpy(data, (char *)&result + alignment, len);
1427 break;
1428 default:
1429 printk(KERN_ERR "Local APIC read with len = %x, "
1430 "should be 1,2, or 4 instead\n", len);
1431 break;
1432 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001433 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001434}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001435EXPORT_SYMBOL_GPL(kvm_lapic_reg_read);
Eddie Dong97222cc2007-09-12 10:58:04 +03001436
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001437static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1438{
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001439 return addr >= apic->base_address &&
1440 addr < apic->base_address + LAPIC_MMIO_LENGTH;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001441}
1442
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001443static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001444 gpa_t address, int len, void *data)
1445{
1446 struct kvm_lapic *apic = to_lapic(this);
1447 u32 offset = address - apic->base_address;
1448
1449 if (!apic_mmio_in_range(apic, address))
1450 return -EOPNOTSUPP;
1451
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001452 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1453 if (!kvm_check_has_quirk(vcpu->kvm,
1454 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1455 return -EOPNOTSUPP;
1456
1457 memset(data, 0xff, len);
1458 return 0;
1459 }
1460
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001461 kvm_lapic_reg_read(apic, offset, len, data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001462
1463 return 0;
1464}
1465
Eddie Dong97222cc2007-09-12 10:58:04 +03001466static void update_divide_count(struct kvm_lapic *apic)
1467{
1468 u32 tmp1, tmp2, tdcr;
1469
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001470 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001471 tmp1 = tdcr & 0xf;
1472 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001473 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +03001474}
1475
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001476static void limit_periodic_timer_frequency(struct kvm_lapic *apic)
1477{
1478 /*
1479 * Do not allow the guest to program periodic timers with small
1480 * interval, since the hrtimers are not throttled by the host
1481 * scheduler.
1482 */
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001483 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001484 s64 min_period = min_timer_period_us * 1000LL;
1485
1486 if (apic->lapic_timer.period < min_period) {
1487 pr_info_ratelimited(
1488 "kvm: vcpu %i: requested %lld ns "
1489 "lapic timer period limited to %lld ns\n",
1490 apic->vcpu->vcpu_id,
1491 apic->lapic_timer.period, min_period);
1492 apic->lapic_timer.period = min_period;
1493 }
1494 }
1495}
1496
Wanpeng Li94be4b82020-03-24 14:32:10 +08001497static void cancel_hv_timer(struct kvm_lapic *apic);
1498
Wanpeng Lie898da72021-06-07 00:19:43 -07001499static void cancel_apic_timer(struct kvm_lapic *apic)
1500{
1501 hrtimer_cancel(&apic->lapic_timer.timer);
1502 preempt_disable();
1503 if (apic->lapic_timer.hv_timer_in_use)
1504 cancel_hv_timer(apic);
1505 preempt_enable();
1506}
1507
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001508static void apic_update_lvtt(struct kvm_lapic *apic)
1509{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001510 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001511 apic->lapic_timer.timer_mode_mask;
1512
1513 if (apic->lapic_timer.timer_mode != timer_mode) {
Wanpeng Lic69518c2017-10-05 03:53:51 -07001514 if (apic_lvtt_tscdeadline(apic) != (timer_mode ==
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001515 APIC_LVT_TIMER_TSCDEADLINE)) {
Wanpeng Lie898da72021-06-07 00:19:43 -07001516 cancel_apic_timer(apic);
Radim Krčmář44275932017-10-06 19:25:55 +02001517 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
1518 apic->lapic_timer.period = 0;
1519 apic->lapic_timer.tscdeadline = 0;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001520 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001521 apic->lapic_timer.timer_mode = timer_mode;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001522 limit_periodic_timer_frequency(apic);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001523 }
1524}
1525
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001526/*
1527 * On APICv, this test will cause a busy wait
1528 * during a higher-priority task.
1529 */
1530
1531static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1532{
1533 struct kvm_lapic *apic = vcpu->arch.apic;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001534 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001535
1536 if (kvm_apic_hw_enabled(apic)) {
1537 int vec = reg & APIC_VECTOR_MASK;
Marcelo Tosattif9339862015-02-02 15:26:08 -02001538 void *bitmap = apic->regs + APIC_ISR;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001539
Andrey Smetanind62caab2015-11-10 15:36:33 +03001540 if (vcpu->arch.apicv_active)
Marcelo Tosattif9339862015-02-02 15:26:08 -02001541 bitmap = apic->regs + APIC_IRR;
1542
1543 if (apic_test_vector(vec, bitmap))
1544 return true;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001545 }
1546 return false;
1547}
1548
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001549static inline void __wait_lapic_expire(struct kvm_vcpu *vcpu, u64 guest_cycles)
1550{
1551 u64 timer_advance_ns = vcpu->arch.apic->lapic_timer.timer_advance_ns;
1552
1553 /*
1554 * If the guest TSC is running at a different ratio than the host, then
1555 * convert the delay to nanoseconds to achieve an accurate delay. Note
1556 * that __delay() uses delay_tsc whenever the hardware has TSC, thus
1557 * always for VMX enabled hardware.
1558 */
1559 if (vcpu->arch.tsc_scaling_ratio == kvm_default_tsc_scaling_ratio) {
1560 __delay(min(guest_cycles,
1561 nsec_to_cycles(vcpu, timer_advance_ns)));
1562 } else {
1563 u64 delay_ns = guest_cycles * 1000000ULL;
1564 do_div(delay_ns, vcpu->arch.virtual_tsc_khz);
1565 ndelay(min_t(u32, delay_ns, timer_advance_ns));
1566 }
1567}
1568
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001569static inline void adjust_lapic_timer_advance(struct kvm_vcpu *vcpu,
Wanpeng Liec0671d2019-05-20 16:18:08 +08001570 s64 advance_expire_delta)
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001571{
1572 struct kvm_lapic *apic = vcpu->arch.apic;
Sean Christopherson39497d72019-04-17 10:15:32 -07001573 u32 timer_advance_ns = apic->lapic_timer.timer_advance_ns;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001574 u64 ns;
1575
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001576 /* Do not adjust for tiny fluctuations or large random spikes. */
1577 if (abs(advance_expire_delta) > LAPIC_TIMER_ADVANCE_ADJUST_MAX ||
1578 abs(advance_expire_delta) < LAPIC_TIMER_ADVANCE_ADJUST_MIN)
1579 return;
1580
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001581 /* too early */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001582 if (advance_expire_delta < 0) {
1583 ns = -advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001584 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001585 timer_advance_ns -= ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001586 } else {
1587 /* too late */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001588 ns = advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001589 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001590 timer_advance_ns += ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001591 }
1592
Wanpeng Lia0f00372019-09-26 08:54:03 +08001593 if (unlikely(timer_advance_ns > LAPIC_TIMER_ADVANCE_NS_MAX))
1594 timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001595 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
1596}
1597
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001598static void __kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001599{
1600 struct kvm_lapic *apic = vcpu->arch.apic;
1601 u64 guest_tsc, tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001602
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001603 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1604 apic->lapic_timer.expired_tscdeadline = 0;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001605 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Wanpeng Liec0671d2019-05-20 16:18:08 +08001606 apic->lapic_timer.advance_expire_delta = guest_tsc - tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001607
Wanpeng Li9805cf02021-05-18 05:00:35 -07001608 if (lapic_timer_advance_dynamic) {
1609 adjust_lapic_timer_advance(vcpu, apic->lapic_timer.advance_expire_delta);
1610 /*
1611 * If the timer fired early, reread the TSC to account for the
1612 * overhead of the above adjustment to avoid waiting longer
1613 * than is necessary.
1614 */
1615 if (guest_tsc < tsc_deadline)
1616 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1617 }
1618
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001619 if (guest_tsc < tsc_deadline)
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001620 __wait_lapic_expire(vcpu, tsc_deadline - guest_tsc);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001621}
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001622
1623void kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1624{
Wanpeng Li010fd372020-09-10 17:50:41 +08001625 if (lapic_in_kernel(vcpu) &&
1626 vcpu->arch.apic->lapic_timer.expired_tscdeadline &&
1627 vcpu->arch.apic->lapic_timer.timer_advance_ns &&
1628 lapic_timer_int_injected(vcpu))
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001629 __kvm_wait_lapic_expire(vcpu);
1630}
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08001631EXPORT_SYMBOL_GPL(kvm_wait_lapic_expire);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001632
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001633static void kvm_apic_inject_pending_timer_irqs(struct kvm_lapic *apic)
1634{
1635 struct kvm_timer *ktimer = &apic->lapic_timer;
1636
1637 kvm_apic_local_deliver(apic, APIC_LVTT);
Haiwei Li17ac43a2020-01-16 16:50:21 +08001638 if (apic_lvtt_tscdeadline(apic)) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001639 ktimer->tscdeadline = 0;
Haiwei Li17ac43a2020-01-16 16:50:21 +08001640 } else if (apic_lvtt_oneshot(apic)) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001641 ktimer->tscdeadline = 0;
1642 ktimer->target_expiration = 0;
1643 }
1644}
1645
Wanpeng Liae95f562020-04-28 14:23:28 +08001646static void apic_timer_expired(struct kvm_lapic *apic, bool from_timer_fn)
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001647{
1648 struct kvm_vcpu *vcpu = apic->vcpu;
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001649 struct kvm_timer *ktimer = &apic->lapic_timer;
1650
1651 if (atomic_read(&apic->lapic_timer.pending))
1652 return;
1653
1654 if (apic_lvtt_tscdeadline(apic) || ktimer->hv_timer_in_use)
1655 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1656
Wanpeng Liae95f562020-04-28 14:23:28 +08001657 if (!from_timer_fn && vcpu->arch.apicv_active) {
1658 WARN_ON(kvm_get_running_vcpu() != vcpu);
1659 kvm_apic_inject_pending_timer_irqs(apic);
1660 return;
1661 }
1662
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001663 if (kvm_use_posted_timer_interrupt(apic->vcpu)) {
Sean Christophersonbeda4302021-03-04 18:18:08 -08001664 /*
1665 * Ensure the guest's timer has truly expired before posting an
1666 * interrupt. Open code the relevant checks to avoid querying
1667 * lapic_timer_int_injected(), which will be false since the
1668 * interrupt isn't yet injected. Waiting until after injecting
1669 * is not an option since that won't help a posted interrupt.
1670 */
1671 if (vcpu->arch.apic->lapic_timer.expired_tscdeadline &&
1672 vcpu->arch.apic->lapic_timer.timer_advance_ns)
1673 __kvm_wait_lapic_expire(vcpu);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001674 kvm_apic_inject_pending_timer_irqs(apic);
1675 return;
1676 }
1677
1678 atomic_inc(&apic->lapic_timer.pending);
Marcelo Tosatti084071d2021-05-25 10:41:17 -03001679 kvm_make_request(KVM_REQ_UNBLOCK, vcpu);
Wanpeng Li68ca76632020-09-10 17:50:40 +08001680 if (from_timer_fn)
1681 kvm_vcpu_kick(vcpu);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001682}
1683
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001684static void start_sw_tscdeadline(struct kvm_lapic *apic)
1685{
Sean Christopherson39497d72019-04-17 10:15:32 -07001686 struct kvm_timer *ktimer = &apic->lapic_timer;
1687 u64 guest_tsc, tscdeadline = ktimer->tscdeadline;
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001688 u64 ns = 0;
1689 ktime_t expire;
1690 struct kvm_vcpu *vcpu = apic->vcpu;
1691 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
1692 unsigned long flags;
1693 ktime_t now;
1694
1695 if (unlikely(!tscdeadline || !this_tsc_khz))
1696 return;
1697
1698 local_irq_save(flags);
1699
Paolo Bonzini55878592016-10-25 15:23:49 +02001700 now = ktime_get();
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001701 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Liran Alonc09d65d2019-04-16 20:36:34 +03001702
1703 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1704 do_div(ns, this_tsc_khz);
1705
1706 if (likely(tscdeadline > guest_tsc) &&
Sean Christopherson39497d72019-04-17 10:15:32 -07001707 likely(ns > apic->lapic_timer.timer_advance_ns)) {
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001708 expire = ktime_add_ns(now, ns);
Sean Christopherson39497d72019-04-17 10:15:32 -07001709 expire = ktime_sub_ns(expire, ktimer->timer_advance_ns);
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02001710 hrtimer_start(&ktimer->timer, expire, HRTIMER_MODE_ABS_HARD);
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001711 } else
Wanpeng Liae95f562020-04-28 14:23:28 +08001712 apic_timer_expired(apic, false);
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001713
1714 local_irq_restore(flags);
1715}
1716
Peter Shier24647e02018-10-10 15:56:53 -07001717static inline u64 tmict_to_ns(struct kvm_lapic *apic, u32 tmict)
1718{
1719 return (u64)tmict * APIC_BUS_CYCLE_NS * (u64)apic->divide_count;
1720}
1721
Wanpeng Lic301b902017-10-06 07:38:32 -07001722static void update_target_expiration(struct kvm_lapic *apic, uint32_t old_divisor)
1723{
1724 ktime_t now, remaining;
1725 u64 ns_remaining_old, ns_remaining_new;
1726
Peter Shier24647e02018-10-10 15:56:53 -07001727 apic->lapic_timer.period =
1728 tmict_to_ns(apic, kvm_lapic_get_reg(apic, APIC_TMICT));
Wanpeng Lic301b902017-10-06 07:38:32 -07001729 limit_periodic_timer_frequency(apic);
1730
1731 now = ktime_get();
1732 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1733 if (ktime_to_ns(remaining) < 0)
1734 remaining = 0;
1735
1736 ns_remaining_old = ktime_to_ns(remaining);
1737 ns_remaining_new = mul_u64_u32_div(ns_remaining_old,
1738 apic->divide_count, old_divisor);
1739
1740 apic->lapic_timer.tscdeadline +=
1741 nsec_to_cycles(apic->vcpu, ns_remaining_new) -
1742 nsec_to_cycles(apic->vcpu, ns_remaining_old);
1743 apic->lapic_timer.target_expiration = ktime_add_ns(now, ns_remaining_new);
1744}
1745
Peter Shier24647e02018-10-10 15:56:53 -07001746static bool set_target_expiration(struct kvm_lapic *apic, u32 count_reg)
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001747{
1748 ktime_t now;
1749 u64 tscl = rdtsc();
Peter Shier24647e02018-10-10 15:56:53 -07001750 s64 deadline;
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001751
Paolo Bonzini55878592016-10-25 15:23:49 +02001752 now = ktime_get();
Peter Shier24647e02018-10-10 15:56:53 -07001753 apic->lapic_timer.period =
1754 tmict_to_ns(apic, kvm_lapic_get_reg(apic, APIC_TMICT));
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001755
Radim Krčmář5d74a692017-10-06 19:25:54 +02001756 if (!apic->lapic_timer.period) {
1757 apic->lapic_timer.tscdeadline = 0;
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001758 return false;
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001759 }
1760
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001761 limit_periodic_timer_frequency(apic);
Peter Shier24647e02018-10-10 15:56:53 -07001762 deadline = apic->lapic_timer.period;
1763
1764 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
1765 if (unlikely(count_reg != APIC_TMICT)) {
1766 deadline = tmict_to_ns(apic,
1767 kvm_lapic_get_reg(apic, count_reg));
1768 if (unlikely(deadline <= 0))
1769 deadline = apic->lapic_timer.period;
1770 else if (unlikely(deadline > apic->lapic_timer.period)) {
1771 pr_info_ratelimited(
1772 "kvm: vcpu %i: requested lapic timer restore with "
1773 "starting count register %#x=%u (%lld ns) > initial count (%lld ns). "
1774 "Using initial count to start timer.\n",
1775 apic->vcpu->vcpu_id,
1776 count_reg,
1777 kvm_lapic_get_reg(apic, count_reg),
1778 deadline, apic->lapic_timer.period);
1779 kvm_lapic_set_reg(apic, count_reg, 0);
1780 deadline = apic->lapic_timer.period;
1781 }
1782 }
1783 }
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001784
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001785 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
Peter Shier24647e02018-10-10 15:56:53 -07001786 nsec_to_cycles(apic->vcpu, deadline);
1787 apic->lapic_timer.target_expiration = ktime_add_ns(now, deadline);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001788
1789 return true;
1790}
1791
1792static void advance_periodic_target_expiration(struct kvm_lapic *apic)
1793{
David Vrabeld8f2f492018-05-18 16:55:46 +01001794 ktime_t now = ktime_get();
1795 u64 tscl = rdtsc();
1796 ktime_t delta;
1797
1798 /*
1799 * Synchronize both deadlines to the same time source or
1800 * differences in the periods (caused by differences in the
1801 * underlying clocks or numerical approximation errors) will
1802 * cause the two to drift apart over time as the errors
1803 * accumulate.
1804 */
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001805 apic->lapic_timer.target_expiration =
1806 ktime_add_ns(apic->lapic_timer.target_expiration,
1807 apic->lapic_timer.period);
David Vrabeld8f2f492018-05-18 16:55:46 +01001808 delta = ktime_sub(apic->lapic_timer.target_expiration, now);
1809 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1810 nsec_to_cycles(apic->vcpu, delta);
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001811}
1812
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001813static void start_sw_period(struct kvm_lapic *apic)
1814{
1815 if (!apic->lapic_timer.period)
1816 return;
1817
1818 if (ktime_after(ktime_get(),
1819 apic->lapic_timer.target_expiration)) {
Wanpeng Liae95f562020-04-28 14:23:28 +08001820 apic_timer_expired(apic, false);
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001821
1822 if (apic_lvtt_oneshot(apic))
1823 return;
1824
1825 advance_periodic_target_expiration(apic);
1826 }
1827
1828 hrtimer_start(&apic->lapic_timer.timer,
1829 apic->lapic_timer.target_expiration,
He Zheedec6e02020-03-20 15:06:07 +08001830 HRTIMER_MODE_ABS_HARD);
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001831}
1832
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001833bool kvm_lapic_hv_timer_in_use(struct kvm_vcpu *vcpu)
1834{
Wanpeng Li91005302016-08-03 12:04:12 +08001835 if (!lapic_in_kernel(vcpu))
1836 return false;
1837
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001838 return vcpu->arch.apic->lapic_timer.hv_timer_in_use;
1839}
1840EXPORT_SYMBOL_GPL(kvm_lapic_hv_timer_in_use);
1841
Wanpeng Li7e810a32016-10-24 18:23:12 +08001842static void cancel_hv_timer(struct kvm_lapic *apic)
Wanpeng Libd97ad02016-06-30 08:52:49 +08001843{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001844 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001845 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
Jason Baronb36464772021-01-14 22:27:56 -05001846 static_call(kvm_x86_cancel_hv_timer)(apic->vcpu);
Wanpeng Libd97ad02016-06-30 08:52:49 +08001847 apic->lapic_timer.hv_timer_in_use = false;
1848}
1849
Paolo Bonzinia749e242017-06-29 17:14:50 +02001850static bool start_hv_timer(struct kvm_lapic *apic)
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001851{
1852 struct kvm_timer *ktimer = &apic->lapic_timer;
Sean Christophersonf9927982019-04-16 13:32:46 -07001853 struct kvm_vcpu *vcpu = apic->vcpu;
1854 bool expired;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001855
Wanpeng Li1d518c62017-07-25 00:43:15 -07001856 WARN_ON(preemptible());
Paolo Bonzini199a8b82020-05-05 06:45:35 -04001857 if (!kvm_can_use_hv_timer(vcpu))
Paolo Bonzinia749e242017-06-29 17:14:50 +02001858 return false;
1859
Radim Krčmář86bbc1e2017-10-06 19:25:53 +02001860 if (!ktimer->tscdeadline)
1861 return false;
1862
Jason Baronb36464772021-01-14 22:27:56 -05001863 if (static_call(kvm_x86_set_hv_timer)(vcpu, ktimer->tscdeadline, &expired))
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001864 return false;
1865
1866 ktimer->hv_timer_in_use = true;
1867 hrtimer_cancel(&ktimer->timer);
1868
1869 /*
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001870 * To simplify handling the periodic timer, leave the hv timer running
1871 * even if the deadline timer has expired, i.e. rely on the resulting
1872 * VM-Exit to recompute the periodic timer's target expiration.
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001873 */
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001874 if (!apic_lvtt_period(apic)) {
1875 /*
1876 * Cancel the hv timer if the sw timer fired while the hv timer
1877 * was being programmed, or if the hv timer itself expired.
1878 */
1879 if (atomic_read(&ktimer->pending)) {
1880 cancel_hv_timer(apic);
Sean Christophersonf9927982019-04-16 13:32:46 -07001881 } else if (expired) {
Wanpeng Liae95f562020-04-28 14:23:28 +08001882 apic_timer_expired(apic, false);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001883 cancel_hv_timer(apic);
1884 }
Wanpeng Lic8533542017-06-29 06:28:09 -07001885 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02001886
Sean Christophersonf9927982019-04-16 13:32:46 -07001887 trace_kvm_hv_timer_state(vcpu->vcpu_id, ktimer->hv_timer_in_use);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001888
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001889 return true;
1890}
1891
Paolo Bonzinia749e242017-06-29 17:14:50 +02001892static void start_sw_timer(struct kvm_lapic *apic)
Wanpeng Li196f20c2016-06-28 14:54:19 +08001893{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001894 struct kvm_timer *ktimer = &apic->lapic_timer;
Wanpeng Li1d518c62017-07-25 00:43:15 -07001895
1896 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001897 if (apic->lapic_timer.hv_timer_in_use)
1898 cancel_hv_timer(apic);
1899 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
1900 return;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001901
Paolo Bonzinia749e242017-06-29 17:14:50 +02001902 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1903 start_sw_period(apic);
1904 else if (apic_lvtt_tscdeadline(apic))
1905 start_sw_tscdeadline(apic);
1906 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, false);
1907}
1908
1909static void restart_apic_timer(struct kvm_lapic *apic)
1910{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001911 preempt_disable();
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001912
1913 if (!apic_lvtt_period(apic) && atomic_read(&apic->lapic_timer.pending))
1914 goto out;
1915
Paolo Bonzinia749e242017-06-29 17:14:50 +02001916 if (!start_hv_timer(apic))
1917 start_sw_timer(apic);
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001918out:
Wanpeng Li1d518c62017-07-25 00:43:15 -07001919 preempt_enable();
Wanpeng Li196f20c2016-06-28 14:54:19 +08001920}
1921
Eddie Dong97222cc2007-09-12 10:58:04 +03001922void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
1923{
1924 struct kvm_lapic *apic = vcpu->arch.apic;
1925
Wanpeng Li1d518c62017-07-25 00:43:15 -07001926 preempt_disable();
1927 /* If the preempt notifier has already run, it also called apic_timer_expired */
1928 if (!apic->lapic_timer.hv_timer_in_use)
1929 goto out;
Sean Christophersond92a5d12021-10-08 19:12:12 -07001930 WARN_ON(kvm_vcpu_is_blocking(vcpu));
Wanpeng Liae95f562020-04-28 14:23:28 +08001931 apic_timer_expired(apic, false);
Wanpeng Lid981dd12021-04-28 19:08:02 +08001932 cancel_hv_timer(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001933
1934 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1935 advance_periodic_target_expiration(apic);
Paolo Bonzinia749e242017-06-29 17:14:50 +02001936 restart_apic_timer(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001937 }
Wanpeng Li1d518c62017-07-25 00:43:15 -07001938out:
1939 preempt_enable();
Eddie Dong97222cc2007-09-12 10:58:04 +03001940}
1941EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
1942
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001943void kvm_lapic_switch_to_hv_timer(struct kvm_vcpu *vcpu)
1944{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001945 restart_apic_timer(vcpu->arch.apic);
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001946}
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001947
1948void kvm_lapic_switch_to_sw_timer(struct kvm_vcpu *vcpu)
1949{
1950 struct kvm_lapic *apic = vcpu->arch.apic;
1951
Wanpeng Li1d518c62017-07-25 00:43:15 -07001952 preempt_disable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001953 /* Possibly the TSC deadline timer is not enabled yet */
Paolo Bonzinia749e242017-06-29 17:14:50 +02001954 if (apic->lapic_timer.hv_timer_in_use)
1955 start_sw_timer(apic);
Wanpeng Li1d518c62017-07-25 00:43:15 -07001956 preempt_enable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001957}
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001958
Paolo Bonzinia749e242017-06-29 17:14:50 +02001959void kvm_lapic_restart_hv_timer(struct kvm_vcpu *vcpu)
1960{
1961 struct kvm_lapic *apic = vcpu->arch.apic;
1962
1963 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1964 restart_apic_timer(apic);
1965}
1966
Peter Shier24647e02018-10-10 15:56:53 -07001967static void __start_apic_timer(struct kvm_lapic *apic, u32 count_reg)
Eddie Dong97222cc2007-09-12 10:58:04 +03001968{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001969 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +02001970
Paolo Bonzinia749e242017-06-29 17:14:50 +02001971 if ((apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
Peter Shier24647e02018-10-10 15:56:53 -07001972 && !set_target_expiration(apic, count_reg))
Paolo Bonzinia749e242017-06-29 17:14:50 +02001973 return;
1974
1975 restart_apic_timer(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001976}
1977
Peter Shier24647e02018-10-10 15:56:53 -07001978static void start_apic_timer(struct kvm_lapic *apic)
1979{
1980 __start_apic_timer(apic, APIC_TMICT);
1981}
1982
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001983static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1984{
Radim Krčmář59fd1322015-06-30 22:19:16 +02001985 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001986
Radim Krčmář59fd1322015-06-30 22:19:16 +02001987 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
1988 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
1989 if (lvt0_in_nmi_mode) {
Radim Krčmář42720132015-07-01 15:31:49 +02001990 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
Radim Krčmář59fd1322015-06-30 22:19:16 +02001991 } else
1992 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1993 }
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001994}
1995
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001996int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03001997{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001998 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001999
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002000 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002001
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002002 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03002003 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002004 if (!apic_x2apic_mode(apic))
Radim Krčmářa92e2542016-07-12 22:09:22 +02002005 kvm_apic_set_xapic_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002006 else
2007 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002008 break;
2009
2010 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02002011 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03002012 apic_set_tpr(apic, val & 0xff);
2013 break;
2014
2015 case APIC_EOI:
2016 apic_set_eoi(apic);
2017 break;
2018
2019 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002020 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03002021 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002022 else
2023 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002024 break;
2025
2026 case APIC_DFR:
Wanpeng Liae6f2492020-08-19 16:55:26 +08002027 if (!apic_x2apic_mode(apic))
2028 kvm_apic_set_dfr(apic, val | 0x0FFFFFFF);
2029 else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002030 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002031 break;
2032
Gleb Natapovfc61b802009-07-05 17:39:35 +03002033 case APIC_SPIV: {
2034 u32 mask = 0x3ff;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002035 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03002036 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002037 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03002038 if (!(val & APIC_SPIV_APIC_ENABLED)) {
2039 int i;
2040 u32 lvt_val;
2041
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002042 for (i = 0; i < KVM_APIC_LVT_NUM; i++) {
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002043 lvt_val = kvm_lapic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03002044 APIC_LVTT + 0x10 * i);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002045 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i,
Eddie Dong97222cc2007-09-12 10:58:04 +03002046 lvt_val | APIC_LVT_MASKED);
2047 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002048 apic_update_lvtt(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002049 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002050
2051 }
2052 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03002053 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002054 case APIC_ICR:
2055 /* No delay here, so we always clear the pending bit */
Wanpeng Li2b0911d2019-09-05 14:26:27 +08002056 val &= ~(1 << 12);
Wanpeng Lid5361672020-03-26 10:20:02 +08002057 kvm_apic_send_ipi(apic, val, kvm_lapic_get_reg(apic, APIC_ICR2));
Wanpeng Li2b0911d2019-09-05 14:26:27 +08002058 kvm_lapic_set_reg(apic, APIC_ICR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002059 break;
2060
2061 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002062 if (!apic_x2apic_mode(apic))
2063 val &= 0xff000000;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002064 kvm_lapic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002065 break;
2066
Jan Kiszka23930f92008-09-26 09:30:52 +02002067 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02002068 apic_manage_nmi_watchdog(apic, val);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002069 fallthrough;
Eddie Dong97222cc2007-09-12 10:58:04 +03002070 case APIC_LVTTHMR:
2071 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03002072 case APIC_LVT1:
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002073 case APIC_LVTERR: {
Eddie Dong97222cc2007-09-12 10:58:04 +03002074 /* TODO: Check vector */
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002075 size_t size;
2076 u32 index;
2077
Gleb Natapovc48f1492012-08-05 15:58:33 +03002078 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03002079 val |= APIC_LVT_MASKED;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002080 size = ARRAY_SIZE(apic_lvt_mask);
2081 index = array_index_nospec(
2082 (reg - APIC_LVTT) >> 4, size);
2083 val &= apic_lvt_mask[index];
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002084 kvm_lapic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002085 break;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002086 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002087
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002088 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03002089 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002090 val |= APIC_LVT_MASKED;
2091 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002092 kvm_lapic_set_reg(apic, APIC_LVTT, val);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002093 apic_update_lvtt(apic);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002094 break;
2095
Eddie Dong97222cc2007-09-12 10:58:04 +03002096 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002097 if (apic_lvtt_tscdeadline(apic))
2098 break;
2099
Wanpeng Lie898da72021-06-07 00:19:43 -07002100 cancel_apic_timer(apic);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002101 kvm_lapic_set_reg(apic, APIC_TMICT, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002102 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002103 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002104
Wanpeng Lic301b902017-10-06 07:38:32 -07002105 case APIC_TDCR: {
2106 uint32_t old_divisor = apic->divide_count;
2107
Wanpeng Lia445fc42020-07-31 11:12:20 +08002108 kvm_lapic_set_reg(apic, APIC_TDCR, val & 0xb);
Eddie Dong97222cc2007-09-12 10:58:04 +03002109 update_divide_count(apic);
Wanpeng Lic301b902017-10-06 07:38:32 -07002110 if (apic->divide_count != old_divisor &&
2111 apic->lapic_timer.period) {
2112 hrtimer_cancel(&apic->lapic_timer.timer);
2113 update_target_expiration(apic, old_divisor);
2114 restart_apic_timer(apic);
2115 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002116 break;
Wanpeng Lic301b902017-10-06 07:38:32 -07002117 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002118 case APIC_ESR:
Yi Wang0d888002019-07-06 01:08:48 +08002119 if (apic_x2apic_mode(apic) && val != 0)
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002120 ret = 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002121 break;
2122
2123 case APIC_SELF_IPI:
2124 if (apic_x2apic_mode(apic)) {
Haiwei Li9c2475f2020-07-21 16:23:54 +08002125 kvm_lapic_reg_write(apic, APIC_ICR,
2126 APIC_DEST_SELF | (val & APIC_VECTOR_MASK));
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002127 } else
2128 ret = 1;
2129 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002130 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002131 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002132 break;
2133 }
Yi Wang0d888002019-07-06 01:08:48 +08002134
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002135 kvm_recalculate_apic_map(apic->vcpu->kvm);
2136
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002137 return ret;
2138}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002139EXPORT_SYMBOL_GPL(kvm_lapic_reg_write);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002140
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002141static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002142 gpa_t address, int len, const void *data)
2143{
2144 struct kvm_lapic *apic = to_lapic(this);
2145 unsigned int offset = address - apic->base_address;
2146 u32 val;
2147
2148 if (!apic_mmio_in_range(apic, address))
2149 return -EOPNOTSUPP;
2150
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02002151 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
2152 if (!kvm_check_has_quirk(vcpu->kvm,
2153 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
2154 return -EOPNOTSUPP;
2155
2156 return 0;
2157 }
2158
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002159 /*
2160 * APIC register must be aligned on 128-bits boundary.
2161 * 32/64/128 bits registers must be accessed thru 32 bits.
2162 * Refer SDM 8.4.1
2163 */
Yi Wang0d888002019-07-06 01:08:48 +08002164 if (len != 4 || (offset & 0xf))
Sheng Yang756975b2009-07-06 11:05:39 +08002165 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002166
2167 val = *(u32*)data;
2168
Yi Wang0d888002019-07-06 01:08:48 +08002169 kvm_lapic_reg_write(apic, offset & 0xff0, val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002170
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002171 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002172}
2173
Kevin Tian58fbbf22011-08-30 13:56:17 +03002174void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
2175{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002176 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
Kevin Tian58fbbf22011-08-30 13:56:17 +03002177}
2178EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
2179
Yang Zhang83d4c282013-01-25 10:18:49 +08002180/* emulate APIC access in a trap manner */
2181void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
2182{
2183 u32 val = 0;
2184
2185 /* hw has done the conditional check and inst decode */
2186 offset &= 0xff0;
2187
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002188 kvm_lapic_reg_read(vcpu->arch.apic, offset, 4, &val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002189
2190 /* TODO: optimize to just emulate side effect w/o one more write */
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002191 kvm_lapic_reg_write(vcpu->arch.apic, offset, val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002192}
2193EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
2194
Rusty Russelld5894442007-10-08 10:48:30 +10002195void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03002196{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002197 struct kvm_lapic *apic = vcpu->arch.apic;
2198
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002199 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002200 return;
2201
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002202 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002203
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002204 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
Cun Li6e4e3b42021-01-11 23:24:35 +08002205 static_branch_slow_dec_deferred(&apic_hw_disabled);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002206
Radim Krčmáře4627552014-10-30 15:06:45 +01002207 if (!apic->sw_enabled)
Cun Li6e4e3b42021-01-11 23:24:35 +08002208 static_branch_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03002209
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002210 if (apic->regs)
2211 free_page((unsigned long)apic->regs);
2212
2213 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002214}
2215
2216/*
2217 *----------------------------------------------------------------------
2218 * LAPIC interface
2219 *----------------------------------------------------------------------
2220 */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002221u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
2222{
2223 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002224
Wanpeng Lia970e9b2020-09-10 17:50:36 +08002225 if (!kvm_apic_present(vcpu) || !apic_lvtt_tscdeadline(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002226 return 0;
2227
2228 return apic->lapic_timer.tscdeadline;
2229}
2230
2231void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
2232{
2233 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002234
Wanpeng Li27503832020-09-10 17:50:37 +08002235 if (!kvm_apic_present(vcpu) || !apic_lvtt_tscdeadline(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002236 return;
2237
2238 hrtimer_cancel(&apic->lapic_timer.timer);
2239 apic->lapic_timer.tscdeadline = data;
2240 start_apic_timer(apic);
2241}
2242
Eddie Dong97222cc2007-09-12 10:58:04 +03002243void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
2244{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002245 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002246
Avi Kivityb93463a2007-10-25 16:52:32 +02002247 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002248 | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03002249}
2250
2251u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
2252{
Eddie Dong97222cc2007-09-12 10:58:04 +03002253 u64 tpr;
2254
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002255 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03002256
2257 return (tpr & 0xf0) >> 4;
2258}
2259
2260void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
2261{
Yang Zhang8d146952013-01-25 10:18:50 +08002262 u64 old_value = vcpu->arch.apic_base;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002263 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002264
Jan Kiszkae66d2ae2013-12-29 02:29:30 +01002265 vcpu->arch.apic_base = value;
2266
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002267 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08002268 kvm_update_cpuid_runtime(vcpu);
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002269
2270 if (!apic)
2271 return;
2272
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002273 /* update jump label if enable bit changes */
Andrew Jones0dce7cd2014-01-15 13:39:59 +01002274 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
Radim Krčmář49bd29b2016-07-12 22:09:23 +02002275 if (value & MSR_IA32_APICBASE_ENABLE) {
2276 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Cun Li6e4e3b42021-01-11 23:24:35 +08002277 static_branch_slow_dec_deferred(&apic_hw_disabled);
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +02002278 /* Check if there are APF page ready requests pending */
2279 kvm_make_request(KVM_REQ_APF_READY, vcpu);
Wanpeng Li187ca842016-08-03 12:04:13 +08002280 } else {
Cun Li6e4e3b42021-01-11 23:24:35 +08002281 static_branch_inc(&apic_hw_disabled.key);
Paolo Bonzini44d52712020-06-22 16:37:42 +02002282 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Wanpeng Li187ca842016-08-03 12:04:13 +08002283 }
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002284 }
2285
Jim Mattson8d860bb2018-05-09 16:56:05 -04002286 if (((old_value ^ value) & X2APIC_ENABLE) && (value & X2APIC_ENABLE))
2287 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
2288
2289 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE))
Jason Baronb36464772021-01-14 22:27:56 -05002290 static_call(kvm_x86_set_virtual_apic_mode)(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08002291
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002292 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03002293 MSR_IA32_APICBASE_BASE;
2294
Nadav Amitdb324fe2014-11-02 11:54:59 +02002295 if ((value & MSR_IA32_APICBASE_ENABLE) &&
2296 apic->base_address != APIC_DEFAULT_PHYS_BASE)
2297 pr_warn_once("APIC base relocation is unsupported by KVM");
Eddie Dong97222cc2007-09-12 10:58:04 +03002298}
2299
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002300void kvm_apic_update_apicv(struct kvm_vcpu *vcpu)
2301{
2302 struct kvm_lapic *apic = vcpu->arch.apic;
2303
2304 if (vcpu->arch.apicv_active) {
2305 /* irr_pending is always true when apicv is activated. */
2306 apic->irr_pending = true;
2307 apic->isr_count = 1;
2308 } else {
2309 apic->irr_pending = (apic_search_irr(apic) != -1);
2310 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
2311 }
2312}
2313EXPORT_SYMBOL_GPL(kvm_apic_update_apicv);
2314
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002315void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
Eddie Dong97222cc2007-09-12 10:58:04 +03002316{
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002317 struct kvm_lapic *apic = vcpu->arch.apic;
Sean Christophersonf7d8a192021-10-12 17:35:53 -07002318 u64 msr_val;
Eddie Dong97222cc2007-09-12 10:58:04 +03002319 int i;
2320
Sean Christopherson45477002021-07-13 09:32:56 -07002321 if (!init_event) {
Sean Christophersonf7d8a192021-10-12 17:35:53 -07002322 msr_val = APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE;
Sean Christopherson45477002021-07-13 09:32:56 -07002323 if (kvm_vcpu_is_reset_bsp(vcpu))
Sean Christophersonf7d8a192021-10-12 17:35:53 -07002324 msr_val |= MSR_IA32_APICBASE_BSP;
2325 kvm_lapic_set_base(vcpu, msr_val);
Sean Christopherson45477002021-07-13 09:32:56 -07002326 }
2327
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002328 if (!apic)
2329 return;
Eddie Dong97222cc2007-09-12 10:58:04 +03002330
Eddie Dong97222cc2007-09-12 10:58:04 +03002331 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002332 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002333
Sean Christophersonf7d8a192021-10-12 17:35:53 -07002334 /* The xAPIC ID is set at RESET even if the APIC was already enabled. */
2335 if (!init_event)
Radim Krčmářa92e2542016-07-12 22:09:22 +02002336 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Gleb Natapovfc61b802009-07-05 17:39:35 +03002337 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03002338
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002339 for (i = 0; i < KVM_APIC_LVT_NUM; i++)
2340 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002341 apic_update_lvtt(apic);
Jan H. Schönherr52b54192017-05-20 13:24:32 +02002342 if (kvm_vcpu_is_reset_bsp(vcpu) &&
2343 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002344 kvm_lapic_set_reg(apic, APIC_LVT0,
Nadav Amit90de4a12015-04-13 01:53:41 +03002345 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002346 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong97222cc2007-09-12 10:58:04 +03002347
Wanpeng Liae6f2492020-08-19 16:55:26 +08002348 kvm_apic_set_dfr(apic, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002349 apic_set_spiv(apic, 0xff);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002350 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
Radim Krčmářc028dd62015-05-22 19:22:10 +02002351 if (!apic_x2apic_mode(apic))
2352 kvm_apic_set_ldr(apic, 0);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002353 kvm_lapic_set_reg(apic, APIC_ESR, 0);
2354 kvm_lapic_set_reg(apic, APIC_ICR, 0);
2355 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
2356 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
2357 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002358 for (i = 0; i < 8; i++) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002359 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
2360 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
2361 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002362 }
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002363 kvm_apic_update_apicv(vcpu);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002364 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02002365 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002366 atomic_set(&apic->lapic_timer.pending, 0);
Sean Christopherson549240e2021-07-13 09:32:50 -07002367
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002368 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002369 apic_update_ppr(apic);
Jan H. Schönherr4191db22017-10-25 16:43:27 +02002370 if (vcpu->arch.apicv_active) {
Jason Baronb36464772021-01-14 22:27:56 -05002371 static_call(kvm_x86_apicv_post_state_restore)(vcpu);
2372 static_call(kvm_x86_hwapic_irr_update)(vcpu, -1);
2373 static_call(kvm_x86_hwapic_isr_update)(vcpu, -1);
Jan H. Schönherr4191db22017-10-25 16:43:27 +02002374 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002375
Gleb Natapove1035712009-03-05 16:34:59 +02002376 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03002377 vcpu->arch.apic_attention = 0;
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002378
2379 kvm_recalculate_apic_map(vcpu->kvm);
Eddie Dong97222cc2007-09-12 10:58:04 +03002380}
2381
Eddie Dong97222cc2007-09-12 10:58:04 +03002382/*
2383 *----------------------------------------------------------------------
2384 * timer interface
2385 *----------------------------------------------------------------------
2386 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03002387
Avi Kivity2a6eac92012-07-26 18:01:51 +03002388static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002389{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002390 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002391}
2392
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002393int apic_has_pending_timer(struct kvm_vcpu *vcpu)
2394{
Gleb Natapov54e98182012-08-05 15:58:32 +03002395 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002396
Paolo Bonzini1e3161b42016-01-08 13:41:16 +01002397 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
Gleb Natapov54e98182012-08-05 15:58:32 +03002398 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002399
2400 return 0;
2401}
2402
Avi Kivity89342082011-11-10 14:57:21 +02002403int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03002404{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002405 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02002406 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002407
Gleb Natapovc48f1492012-08-05 15:58:33 +03002408 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02002409 vector = reg & APIC_VECTOR_MASK;
2410 mode = reg & APIC_MODE_MASK;
2411 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
Yang Zhangb4f22252013-04-11 19:21:37 +08002412 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
2413 NULL);
Jan Kiszka23930f92008-09-26 09:30:52 +02002414 }
2415 return 0;
2416}
2417
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002418void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02002419{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002420 struct kvm_lapic *apic = vcpu->arch.apic;
2421
2422 if (apic)
2423 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002424}
2425
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002426static const struct kvm_io_device_ops apic_mmio_ops = {
2427 .read = apic_mmio_read,
2428 .write = apic_mmio_write,
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002429};
2430
Avi Kivitye9d90d42012-07-26 18:01:50 +03002431static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
2432{
2433 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03002434 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002435
Wanpeng Liae95f562020-04-28 14:23:28 +08002436 apic_timer_expired(apic, true);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002437
Avi Kivity2a6eac92012-07-26 18:01:51 +03002438 if (lapic_is_periodic(apic)) {
Wanpeng Li8003c9a2016-10-24 18:23:13 +08002439 advance_periodic_target_expiration(apic);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002440 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
2441 return HRTIMER_RESTART;
2442 } else
2443 return HRTIMER_NORESTART;
2444}
2445
Sean Christophersonc3941d92019-04-17 10:15:33 -07002446int kvm_create_lapic(struct kvm_vcpu *vcpu, int timer_advance_ns)
Eddie Dong97222cc2007-09-12 10:58:04 +03002447{
2448 struct kvm_lapic *apic;
2449
2450 ASSERT(vcpu != NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03002451
Ben Gardon254272c2019-02-11 11:02:50 -08002452 apic = kzalloc(sizeof(*apic), GFP_KERNEL_ACCOUNT);
Eddie Dong97222cc2007-09-12 10:58:04 +03002453 if (!apic)
2454 goto nomem;
2455
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002456 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002457
Ben Gardon254272c2019-02-11 11:02:50 -08002458 apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09002459 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03002460 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
2461 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10002462 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002463 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002464 apic->vcpu = vcpu;
2465
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002466 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002467 HRTIMER_MODE_ABS_HARD);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002468 apic->lapic_timer.timer.function = apic_timer_fn;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002469 if (timer_advance_ns == -1) {
Wanpeng Lia0f00372019-09-26 08:54:03 +08002470 apic->lapic_timer.timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002471 lapic_timer_advance_dynamic = true;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002472 } else {
2473 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002474 lapic_timer_advance_dynamic = false;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002475 }
2476
Sean Christophersonf7d8a192021-10-12 17:35:53 -07002477 /*
2478 * Stuff the APIC ENABLE bit in lieu of temporarily incrementing
2479 * apic_hw_disabled; the full RESET value is set by kvm_lapic_reset().
2480 */
2481 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Cun Li6e4e3b42021-01-11 23:24:35 +08002482 static_branch_inc(&apic_sw_disabled.key); /* sw disabled at reset */
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002483 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03002484
2485 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10002486nomem_free_apic:
2487 kfree(apic);
Saar Amara251fb902019-05-06 11:29:16 +03002488 vcpu->arch.apic = NULL;
Eddie Dong97222cc2007-09-12 10:58:04 +03002489nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03002490 return -ENOMEM;
2491}
Eddie Dong97222cc2007-09-12 10:58:04 +03002492
2493int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
2494{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002495 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002496 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002497
Paolo Bonzini72c3bcd2020-11-27 08:53:52 +01002498 if (!kvm_apic_present(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03002499 return -1;
2500
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002501 __apic_update_ppr(apic, &ppr);
2502 return apic_has_interrupt_for_ppr(apic, ppr);
Eddie Dong97222cc2007-09-12 10:58:04 +03002503}
Sean Christopherson25bb2cf2020-08-12 10:51:29 -07002504EXPORT_SYMBOL_GPL(kvm_apic_has_interrupt);
Eddie Dong97222cc2007-09-12 10:58:04 +03002505
Qing He40487c62007-09-17 14:47:13 +08002506int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
2507{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002508 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08002509
Gleb Natapovc48f1492012-08-05 15:58:33 +03002510 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Miaohe Lin3ce4dc12020-01-18 10:50:37 +08002511 return 1;
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04002512 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
2513 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
Miaohe Lin3ce4dc12020-01-18 10:50:37 +08002514 return 1;
2515 return 0;
Qing He40487c62007-09-17 14:47:13 +08002516}
2517
Eddie Dong1b9778d2007-09-03 16:56:58 +03002518void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
2519{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002520 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002521
Gleb Natapov54e98182012-08-05 15:58:32 +03002522 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002523 kvm_apic_inject_pending_timer_irqs(apic);
Jan Kiszkaf1ed0452013-04-28 14:00:41 +02002524 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002525 }
2526}
2527
Eddie Dong97222cc2007-09-12 10:58:04 +03002528int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
2529{
2530 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002531 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002532 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002533
2534 if (vector == -1)
2535 return -1;
2536
Wanpeng Li56cc2402014-08-05 12:42:24 +08002537 /*
2538 * We get here even with APIC virtualization enabled, if doing
2539 * nested virtualization and L1 runs with the "acknowledge interrupt
2540 * on exit" mode. Then we cannot inject the interrupt via RVI,
2541 * because the process would deliver it through the IDT.
2542 */
2543
Eddie Dong97222cc2007-09-12 10:58:04 +03002544 apic_clear_irr(vector, apic);
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01002545 if (to_hv_vcpu(vcpu) && test_bit(vector, to_hv_synic(vcpu)->auto_eoi_bitmap)) {
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002546 /*
2547 * For auto-EOI interrupts, there might be another pending
2548 * interrupt above PPR, so check whether to raise another
2549 * KVM_REQ_EVENT.
2550 */
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002551 apic_update_ppr(apic);
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002552 } else {
2553 /*
2554 * For normal interrupts, PPR has been raised and there cannot
2555 * be a higher-priority pending interrupt---except if there was
2556 * a concurrent interrupt injection, but that would have
2557 * triggered KVM_REQ_EVENT already.
2558 */
2559 apic_set_isr(vector, apic);
2560 __apic_update_ppr(apic, &ppr);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002561 }
2562
Eddie Dong97222cc2007-09-12 10:58:04 +03002563 return vector;
2564}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002565
Radim Krčmářa92e2542016-07-12 22:09:22 +02002566static int kvm_apic_state_fixup(struct kvm_vcpu *vcpu,
2567 struct kvm_lapic_state *s, bool set)
2568{
2569 if (apic_x2apic_mode(vcpu->arch.apic)) {
2570 u32 *id = (u32 *)(s->regs + APIC_ID);
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002571 u32 *ldr = (u32 *)(s->regs + APIC_LDR);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002572
Radim Krčmář371313132016-07-12 22:09:27 +02002573 if (vcpu->kvm->arch.x2apic_format) {
2574 if (*id != vcpu->vcpu_id)
2575 return -EINVAL;
2576 } else {
2577 if (set)
2578 *id >>= 24;
2579 else
2580 *id <<= 24;
2581 }
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002582
2583 /* In x2APIC mode, the LDR is fixed and based on the id */
2584 if (set)
2585 *ldr = kvm_apic_calc_x2apic_ldr(*id);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002586 }
2587
2588 return 0;
2589}
2590
2591int kvm_apic_get_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2592{
2593 memcpy(s->regs, vcpu->arch.apic->regs, sizeof(*s));
Peter Shier24647e02018-10-10 15:56:53 -07002594
2595 /*
2596 * Get calculated timer current count for remaining timer period (if
2597 * any) and store it in the returned register set.
2598 */
2599 __kvm_lapic_set_reg(s->regs, APIC_TMCCT,
2600 __apic_read(vcpu->arch.apic, APIC_TMCCT));
2601
Radim Krčmářa92e2542016-07-12 22:09:22 +02002602 return kvm_apic_state_fixup(vcpu, s, false);
2603}
2604
2605int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002606{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002607 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002608 int r;
2609
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03002610 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03002611 /* set SPIV separately to get count of SW disabled APICs right */
2612 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002613
2614 r = kvm_apic_state_fixup(vcpu, s, true);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002615 if (r) {
2616 kvm_recalculate_apic_map(vcpu->kvm);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002617 return r;
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002618 }
Jordan Borgner0e96f312018-10-28 12:58:28 +00002619 memcpy(vcpu->arch.apic->regs, s->regs, sizeof(*s));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002620
Paolo Bonzini44d52712020-06-22 16:37:42 +02002621 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002622 kvm_recalculate_apic_map(vcpu->kvm);
Gleb Natapovfc61b802009-07-05 17:39:35 +03002623 kvm_apic_set_version(vcpu);
2624
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002625 apic_update_ppr(apic);
Wanpeng Li35fe7cf2022-01-25 01:17:00 -08002626 cancel_apic_timer(apic);
Wanpeng Li35737d22021-03-04 08:35:18 +08002627 apic->lapic_timer.expired_tscdeadline = 0;
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002628 apic_update_lvtt(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002629 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002630 update_divide_count(apic);
Peter Shier24647e02018-10-10 15:56:53 -07002631 __start_apic_timer(apic, APIC_TMCCT);
Wanpeng Li27358862021-06-09 00:16:40 -07002632 kvm_lapic_set_reg(apic, APIC_TMCCT, 0);
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002633 kvm_apic_update_apicv(vcpu);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002634 apic->highest_isr_cache = -1;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002635 if (vcpu->arch.apicv_active) {
Jason Baronb36464772021-01-14 22:27:56 -05002636 static_call(kvm_x86_apicv_post_state_restore)(vcpu);
2637 static_call(kvm_x86_hwapic_irr_update)(vcpu,
Wei Wang4114c272014-11-05 10:53:43 +08002638 apic_find_highest_irr(apic));
Jason Baronb36464772021-01-14 22:27:56 -05002639 static_call(kvm_x86_hwapic_isr_update)(vcpu,
Tiejun Chenb4eef9b2014-12-22 10:32:57 +01002640 apic_find_highest_isr(apic));
Andrey Smetanind62caab2015-11-10 15:36:33 +03002641 }
Avi Kivity3842d132010-07-27 12:30:24 +03002642 kvm_make_request(KVM_REQ_EVENT, vcpu);
Steve Rutherford49df6392015-07-29 23:21:40 -07002643 if (ioapic_in_kernel(vcpu->kvm))
2644 kvm_rtc_eoi_tracking_restore_one(vcpu);
Radim Krčmář0669a512015-10-30 15:48:20 +01002645
2646 vcpu->arch.apic_arb_prio = 0;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002647
2648 return 0;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002649}
Eddie Donga3d7f852007-09-03 16:15:12 +03002650
Avi Kivity2f52d582008-01-16 12:49:30 +02002651void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03002652{
Eddie Donga3d7f852007-09-03 16:15:12 +03002653 struct hrtimer *timer;
2654
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002655 if (!lapic_in_kernel(vcpu) ||
2656 kvm_can_post_timer_interrupt(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03002657 return;
2658
Gleb Natapov54e98182012-08-05 15:58:32 +03002659 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03002660 if (hrtimer_cancel(timer))
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002661 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_HARD);
Eddie Donga3d7f852007-09-03 16:15:12 +03002662}
Avi Kivityb93463a2007-10-25 16:52:32 +02002663
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002664/*
2665 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
2666 *
2667 * Detect whether guest triggered PV EOI since the
2668 * last entry. If yes, set EOI on guests's behalf.
2669 * Clear PV EOI in guest memory in any case.
2670 */
2671static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
2672 struct kvm_lapic *apic)
2673{
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002674 int vector;
2675 /*
2676 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
2677 * and KVM_PV_EOI_ENABLED in guest memory as follows:
2678 *
2679 * KVM_APIC_PV_EOI_PENDING is unset:
2680 * -> host disabled PV EOI.
2681 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
2682 * -> host enabled PV EOI, guest did not execute EOI yet.
2683 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
2684 * -> host enabled PV EOI, guest executed EOI.
2685 */
2686 BUG_ON(!pv_eoi_enabled(vcpu));
Li RongQing51b12092021-11-04 19:56:14 +08002687
2688 if (pv_eoi_test_and_clr_pending(vcpu))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002689 return;
2690 vector = apic_set_eoi(apic);
2691 trace_kvm_pv_eoi(apic, vector);
2692}
2693
Avi Kivityb93463a2007-10-25 16:52:32 +02002694void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
2695{
2696 u32 data;
Avi Kivityb93463a2007-10-25 16:52:32 +02002697
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002698 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
2699 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
2700
Gleb Natapov41383772012-04-19 14:06:29 +03002701 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002702 return;
2703
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002704 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2705 sizeof(u32)))
Nicholas Krause603242a2015-08-05 10:44:40 -04002706 return;
Avi Kivityb93463a2007-10-25 16:52:32 +02002707
2708 apic_set_tpr(vcpu->arch.apic, data & 0xff);
2709}
2710
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002711/*
2712 * apic_sync_pv_eoi_to_guest - called before vmentry
2713 *
2714 * Detect whether it's safe to enable PV EOI and
2715 * if yes do so.
2716 */
2717static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
2718 struct kvm_lapic *apic)
2719{
2720 if (!pv_eoi_enabled(vcpu) ||
2721 /* IRR set or many bits in ISR: could be nested. */
2722 apic->irr_pending ||
2723 /* Cache not set: could be safe but we don't bother. */
2724 apic->highest_isr_cache == -1 ||
2725 /* Need EOI to update ioapic. */
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02002726 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002727 /*
2728 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
2729 * so we need not do anything here.
2730 */
2731 return;
2732 }
2733
2734 pv_eoi_set_pending(apic->vcpu);
2735}
2736
Avi Kivityb93463a2007-10-25 16:52:32 +02002737void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
2738{
2739 u32 data, tpr;
2740 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002741 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02002742
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002743 apic_sync_pv_eoi_to_guest(vcpu, apic);
2744
Gleb Natapov41383772012-04-19 14:06:29 +03002745 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002746 return;
2747
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002748 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02002749 max_irr = apic_find_highest_irr(apic);
2750 if (max_irr < 0)
2751 max_irr = 0;
2752 max_isr = apic_find_highest_isr(apic);
2753 if (max_isr < 0)
2754 max_isr = 0;
2755 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
2756
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002757 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2758 sizeof(u32));
Avi Kivityb93463a2007-10-25 16:52:32 +02002759}
2760
Andy Honigfda4e2e2013-11-20 10:23:22 -08002761int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
Avi Kivityb93463a2007-10-25 16:52:32 +02002762{
Andy Honigfda4e2e2013-11-20 10:23:22 -08002763 if (vapic_addr) {
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002764 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andy Honigfda4e2e2013-11-20 10:23:22 -08002765 &vcpu->arch.apic->vapic_cache,
2766 vapic_addr, sizeof(u32)))
2767 return -EINVAL;
Gleb Natapov41383772012-04-19 14:06:29 +03002768 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002769 } else {
Gleb Natapov41383772012-04-19 14:06:29 +03002770 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002771 }
2772
2773 vcpu->arch.apic->vapic_addr = vapic_addr;
2774 return 0;
Avi Kivityb93463a2007-10-25 16:52:32 +02002775}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002776
2777int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2778{
2779 struct kvm_lapic *apic = vcpu->arch.apic;
2780 u32 reg = (msr - APIC_BASE_MSR) << 4;
2781
Paolo Bonzini35754c92015-07-29 12:05:37 +02002782 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002783 return 1;
2784
Nadav Amitc69d3d92014-11-26 17:56:25 +02002785 if (reg == APIC_ICR2)
2786 return 1;
2787
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002788 /* if this is ICR write vector before command */
Radim Krčmářdecdc282014-11-26 17:07:05 +01002789 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002790 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2791 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002792}
2793
2794int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
2795{
2796 struct kvm_lapic *apic = vcpu->arch.apic;
2797 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
2798
Paolo Bonzini35754c92015-07-29 12:05:37 +02002799 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002800 return 1;
2801
Yi Wang0d888002019-07-06 01:08:48 +08002802 if (reg == APIC_DFR || reg == APIC_ICR2)
Nadav Amitc69d3d92014-11-26 17:56:25 +02002803 return 1;
Nadav Amitc69d3d92014-11-26 17:56:25 +02002804
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002805 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002806 return 1;
Radim Krčmářdecdc282014-11-26 17:07:05 +01002807 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002808 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002809
2810 *data = (((u64)high) << 32) | low;
2811
2812 return 0;
2813}
Gleb Natapov10388a02010-01-17 15:51:23 +02002814
2815int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
2816{
2817 struct kvm_lapic *apic = vcpu->arch.apic;
2818
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002819 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002820 return 1;
2821
2822 /* if this is ICR write vector before command */
2823 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002824 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2825 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov10388a02010-01-17 15:51:23 +02002826}
2827
2828int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
2829{
2830 struct kvm_lapic *apic = vcpu->arch.apic;
2831 u32 low, high = 0;
2832
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002833 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002834 return 1;
2835
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002836 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov10388a02010-01-17 15:51:23 +02002837 return 1;
2838 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002839 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov10388a02010-01-17 15:51:23 +02002840
2841 *data = (((u64)high) << 32) | low;
2842
2843 return 0;
2844}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002845
Vitaly Kuznetsov77c33232021-11-08 16:28:18 +01002846int kvm_lapic_set_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002847{
2848 u64 addr = data & ~KVM_MSR_ENABLED;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002849 struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
2850 unsigned long new_len;
Vitaly Kuznetsovafd67ee2021-11-08 16:28:19 +01002851 int ret;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002852
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002853 if (!IS_ALIGNED(addr, 4))
2854 return 1;
2855
Vitaly Kuznetsovafd67ee2021-11-08 16:28:19 +01002856 if (data & KVM_MSR_ENABLED) {
2857 if (addr == ghc->gpa && len <= ghc->len)
2858 new_len = ghc->len;
2859 else
2860 new_len = len;
2861
2862 ret = kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
2863 if (ret)
2864 return ret;
2865 }
2866
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002867 vcpu->arch.pv_eoi.msr_val = data;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002868
Vitaly Kuznetsovafd67ee2021-11-08 16:28:19 +01002869 return 0;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002870}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002871
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002872int kvm_apic_accept_events(struct kvm_vcpu *vcpu)
Jan Kiszka66450a22013-03-13 12:42:34 +01002873{
2874 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01002875 u8 sipi_vector;
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002876 int r;
Gleb Natapov299018f2013-06-03 11:30:02 +03002877 unsigned long pe;
Jan Kiszka66450a22013-03-13 12:42:34 +01002878
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002879 if (!lapic_in_kernel(vcpu))
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002880 return 0;
Jan Kiszka66450a22013-03-13 12:42:34 +01002881
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002882 /*
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002883 * Read pending events before calling the check_events
2884 * callback.
2885 */
2886 pe = smp_load_acquire(&apic->pending_events);
2887 if (!pe)
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002888 return 0;
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002889
2890 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08002891 r = kvm_check_nested_events(vcpu);
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002892 if (r < 0)
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002893 return r == -EBUSY ? 0 : r;
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002894 /*
2895 * If an event has happened and caused a vmexit,
2896 * we know INITs are latched and therefore
2897 * we will not incorrectly deliver an APIC
2898 * event instead of a vmexit.
2899 */
2900 }
2901
2902 /*
Liran Alon4b9852f2019-08-26 13:24:49 +03002903 * INITs are latched while CPU is in specific states
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002904 * (SMM, VMX root mode, SVM with GIF=0).
Liran Alon4b9852f2019-08-26 13:24:49 +03002905 * Because a CPU cannot be in these states immediately
2906 * after it has processed an INIT signal (and thus in
2907 * KVM_MP_STATE_INIT_RECEIVED state), just eat SIPIs
2908 * and leave the INIT pending.
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002909 */
Liran Alon27cbe7d2019-11-11 11:16:40 +02002910 if (kvm_vcpu_latch_init(vcpu)) {
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002911 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002912 if (test_bit(KVM_APIC_SIPI, &pe))
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002913 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002914 return 0;
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002915 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002916
2917 if (test_bit(KVM_APIC_INIT, &pe)) {
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002918 clear_bit(KVM_APIC_INIT, &apic->pending_events);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002919 kvm_vcpu_reset(vcpu, true);
Jan Kiszka66450a22013-03-13 12:42:34 +01002920 if (kvm_vcpu_is_bsp(apic->vcpu))
2921 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2922 else
2923 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
2924 }
Maxim Levitskyf57ad632020-12-03 16:33:19 +02002925 if (test_bit(KVM_APIC_SIPI, &pe)) {
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05002926 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
Maxim Levitskyf57ad632020-12-03 16:33:19 +02002927 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
2928 /* evaluate pending_events before reading the vector */
2929 smp_rmb();
2930 sipi_vector = apic->sipi_vector;
Tom Lendacky647daca2021-01-04 14:20:01 -06002931 kvm_x86_ops.vcpu_deliver_sipi_vector(vcpu, sipi_vector);
Maxim Levitskyf57ad632020-12-03 16:33:19 +02002932 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2933 }
Jan Kiszka66450a22013-03-13 12:42:34 +01002934 }
Jim Mattson4fe09bc2021-06-04 10:26:04 -07002935 return 0;
Jan Kiszka66450a22013-03-13 12:42:34 +01002936}
2937
David Matlackcef84c32016-12-16 14:30:36 -08002938void kvm_lapic_exit(void)
2939{
2940 static_key_deferred_flush(&apic_hw_disabled);
Sean Christopherson9139a7a2021-10-12 17:35:54 -07002941 WARN_ON(static_branch_unlikely(&apic_hw_disabled.key));
David Matlackcef84c32016-12-16 14:30:36 -08002942 static_key_deferred_flush(&apic_sw_disabled);
Sean Christopherson9139a7a2021-10-12 17:35:54 -07002943 WARN_ON(static_branch_unlikely(&apic_sw_disabled.key));
David Matlackcef84c32016-12-16 14:30:36 -08002944}