blob: d5fb2ea2fadb4690cd0ff6f9c7f5fab7e41a4124 [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
Gleb Natapovc5cc4212012-08-05 15:58:30 +030094struct static_key_deferred apic_hw_disabled __read_mostly;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +030095struct static_key_deferred apic_sw_disabled __read_mostly;
96
Eddie Dong97222cc2007-09-12 10:58:04 +030097static inline int apic_enabled(struct kvm_lapic *apic)
98{
Gleb Natapovc48f1492012-08-05 15:58:33 +030099 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
Gleb Natapov54e98182012-08-05 15:58:32 +0300100}
101
Eddie Dong97222cc2007-09-12 10:58:04 +0300102#define LVT_MASK \
103 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
104
105#define LINT_MASK \
106 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
107 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
108
Radim Krčmář6e500432016-12-15 18:06:46 +0100109static inline u32 kvm_x2apic_id(struct kvm_lapic *apic)
110{
111 return apic->vcpu->vcpu_id;
112}
113
Paolo Bonzini199a8b82020-05-05 06:45:35 -0400114static bool kvm_can_post_timer_interrupt(struct kvm_vcpu *vcpu)
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800115{
116 return pi_inject_timer && kvm_vcpu_apicv_active(vcpu);
117}
Paolo Bonzini199a8b82020-05-05 06:45:35 -0400118
119bool kvm_can_use_hv_timer(struct kvm_vcpu *vcpu)
120{
121 return kvm_x86_ops.set_hv_timer
122 && !(kvm_mwait_in_guest(vcpu->kvm) ||
123 kvm_can_post_timer_interrupt(vcpu));
124}
125EXPORT_SYMBOL_GPL(kvm_can_use_hv_timer);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800126
127static bool kvm_use_posted_timer_interrupt(struct kvm_vcpu *vcpu)
128{
129 return kvm_can_post_timer_interrupt(vcpu) && vcpu->mode == IN_GUEST_MODE;
130}
131
Radim Krčmáře45115b2016-07-12 22:09:19 +0200132static inline bool kvm_apic_map_get_logical_dest(struct kvm_apic_map *map,
133 u32 dest_id, struct kvm_lapic ***cluster, u16 *mask) {
134 switch (map->mode) {
135 case KVM_APIC_MODE_X2APIC: {
136 u32 offset = (dest_id >> 16) * 16;
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200137 u32 max_apic_id = map->max_apic_id;
Radim Krčmář3548a252015-02-12 19:41:33 +0100138
Radim Krčmáře45115b2016-07-12 22:09:19 +0200139 if (offset <= max_apic_id) {
140 u8 cluster_size = min(max_apic_id - offset + 1, 16U);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100141
Paolo Bonzini1d487e92019-04-11 11:16:47 +0200142 offset = array_index_nospec(offset, map->max_apic_id + 1);
Radim Krčmáře45115b2016-07-12 22:09:19 +0200143 *cluster = &map->phys_map[offset];
144 *mask = dest_id & (0xffff >> (16 - cluster_size));
145 } else {
146 *mask = 0;
147 }
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100148
Radim Krčmáře45115b2016-07-12 22:09:19 +0200149 return true;
150 }
151 case KVM_APIC_MODE_XAPIC_FLAT:
152 *cluster = map->xapic_flat_map;
153 *mask = dest_id & 0xff;
154 return true;
155 case KVM_APIC_MODE_XAPIC_CLUSTER:
Radim Krčmář444fdad2016-11-22 20:20:14 +0100156 *cluster = map->xapic_cluster_map[(dest_id >> 4) & 0xf];
Radim Krčmáře45115b2016-07-12 22:09:19 +0200157 *mask = dest_id & 0xf;
158 return true;
159 default:
160 /* Not optimized. */
161 return false;
162 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300163}
164
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200165static void kvm_apic_map_free(struct rcu_head *rcu)
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100166{
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200167 struct kvm_apic_map *map = container_of(rcu, struct kvm_apic_map, rcu);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100168
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200169 kvfree(map);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100170}
171
Paolo Bonzini44d52712020-06-22 16:37:42 +0200172/*
173 * CLEAN -> DIRTY and UPDATE_IN_PROGRESS -> DIRTY changes happen without a lock.
174 *
175 * DIRTY -> UPDATE_IN_PROGRESS and UPDATE_IN_PROGRESS -> CLEAN happen with
176 * apic_map_lock_held.
177 */
178enum {
179 CLEAN,
180 UPDATE_IN_PROGRESS,
181 DIRTY
182};
183
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800184void kvm_recalculate_apic_map(struct kvm *kvm)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300185{
186 struct kvm_apic_map *new, *old = NULL;
187 struct kvm_vcpu *vcpu;
188 int i;
Radim Krčmář6e500432016-12-15 18:06:46 +0100189 u32 max_id = 255; /* enough space for any xAPIC ID */
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300190
Paolo Bonzini44d52712020-06-22 16:37:42 +0200191 /* Read kvm->arch.apic_map_dirty before kvm->arch.apic_map. */
192 if (atomic_read_acquire(&kvm->arch.apic_map_dirty) == CLEAN)
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800193 return;
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800194
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300195 mutex_lock(&kvm->arch.apic_map_lock);
Paolo Bonzini44d52712020-06-22 16:37:42 +0200196 /*
197 * Read kvm->arch.apic_map_dirty before kvm->arch.apic_map
198 * (if clean) or the APIC registers (if dirty).
199 */
200 if (atomic_cmpxchg_acquire(&kvm->arch.apic_map_dirty,
201 DIRTY, UPDATE_IN_PROGRESS) == CLEAN) {
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800202 /* Someone else has updated the map. */
203 mutex_unlock(&kvm->arch.apic_map_lock);
204 return;
205 }
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300206
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200207 kvm_for_each_vcpu(i, vcpu, kvm)
208 if (kvm_apic_present(vcpu))
Radim Krčmář6e500432016-12-15 18:06:46 +0100209 max_id = max(max_id, kvm_x2apic_id(vcpu->arch.apic));
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200210
Michal Hockoa7c3e902017-05-08 15:57:09 -0700211 new = kvzalloc(sizeof(struct kvm_apic_map) +
Ben Gardon254272c2019-02-11 11:02:50 -0800212 sizeof(struct kvm_lapic *) * ((u64)max_id + 1),
213 GFP_KERNEL_ACCOUNT);
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200214
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300215 if (!new)
216 goto out;
217
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200218 new->max_apic_id = max_id;
219
Nadav Amit173beed2014-11-02 11:54:54 +0200220 kvm_for_each_vcpu(i, vcpu, kvm) {
221 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmáře45115b2016-07-12 22:09:19 +0200222 struct kvm_lapic **cluster;
223 u16 mask;
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100224 u32 ldr;
225 u8 xapic_id;
226 u32 x2apic_id;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300227
Radim Krčmářdf04d1d2015-01-29 22:33:35 +0100228 if (!kvm_apic_present(vcpu))
229 continue;
230
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100231 xapic_id = kvm_xapic_id(apic);
232 x2apic_id = kvm_x2apic_id(apic);
233
234 /* Hotplug hack: see kvm_apic_match_physical_addr(), ... */
235 if ((apic_x2apic_mode(apic) || x2apic_id > 0xff) &&
236 x2apic_id <= new->max_apic_id)
237 new->phys_map[x2apic_id] = apic;
238 /*
239 * ... xAPIC ID of VCPUs with APIC ID > 0xff will wrap-around,
240 * prevent them from masking VCPUs with APIC ID <= 0xff.
241 */
242 if (!apic_x2apic_mode(apic) && !new->phys_map[xapic_id])
243 new->phys_map[xapic_id] = apic;
Radim Krčmář3548a252015-02-12 19:41:33 +0100244
Radim Krcmarb14c8762019-08-13 23:37:37 -0400245 if (!kvm_apic_sw_enabled(apic))
246 continue;
247
Radim Krčmář6e500432016-12-15 18:06:46 +0100248 ldr = kvm_lapic_get_reg(apic, APIC_LDR);
249
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100250 if (apic_x2apic_mode(apic)) {
251 new->mode |= KVM_APIC_MODE_X2APIC;
252 } else if (ldr) {
253 ldr = GET_APIC_LOGICAL_ID(ldr);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500254 if (kvm_lapic_get_reg(apic, APIC_DFR) == APIC_DFR_FLAT)
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100255 new->mode |= KVM_APIC_MODE_XAPIC_FLAT;
256 else
257 new->mode |= KVM_APIC_MODE_XAPIC_CLUSTER;
258 }
259
Radim Krčmáře45115b2016-07-12 22:09:19 +0200260 if (!kvm_apic_map_get_logical_dest(new, ldr, &cluster, &mask))
Radim Krčmář3548a252015-02-12 19:41:33 +0100261 continue;
262
Radim Krčmáře45115b2016-07-12 22:09:19 +0200263 if (mask)
264 cluster[ffs(mask) - 1] = apic;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300265 }
266out:
267 old = rcu_dereference_protected(kvm->arch.apic_map,
268 lockdep_is_held(&kvm->arch.apic_map_lock));
269 rcu_assign_pointer(kvm->arch.apic_map, new);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800270 /*
Paolo Bonzini44d52712020-06-22 16:37:42 +0200271 * Write kvm->arch.apic_map before clearing apic->apic_map_dirty.
272 * If another update has come in, leave it DIRTY.
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800273 */
Paolo Bonzini44d52712020-06-22 16:37:42 +0200274 atomic_cmpxchg_release(&kvm->arch.apic_map_dirty,
275 UPDATE_IN_PROGRESS, CLEAN);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300276 mutex_unlock(&kvm->arch.apic_map_lock);
277
278 if (old)
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200279 call_rcu(&old->rcu, kvm_apic_map_free);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800280
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700281 kvm_make_scan_ioapic_request(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300282}
283
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300284static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
285{
Radim Krčmáře4627552014-10-30 15:06:45 +0100286 bool enabled = val & APIC_SPIV_APIC_ENABLED;
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300287
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500288 kvm_lapic_set_reg(apic, APIC_SPIV, val);
Radim Krčmáře4627552014-10-30 15:06:45 +0100289
290 if (enabled != apic->sw_enabled) {
291 apic->sw_enabled = enabled;
Peng Haoeb1ff0a2018-12-04 17:42:50 +0800292 if (enabled)
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300293 static_key_slow_dec_deferred(&apic_sw_disabled);
Peng Haoeb1ff0a2018-12-04 17:42:50 +0800294 else
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300295 static_key_slow_inc(&apic_sw_disabled.key);
Radim Krcmarb14c8762019-08-13 23:37:37 -0400296
Paolo Bonzini44d52712020-06-22 16:37:42 +0200297 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300298 }
299}
300
Radim Krčmářa92e2542016-07-12 22:09:22 +0200301static inline void kvm_apic_set_xapic_id(struct kvm_lapic *apic, u8 id)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300302{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500303 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
Paolo Bonzini44d52712020-06-22 16:37:42 +0200304 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300305}
306
307static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
308{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500309 kvm_lapic_set_reg(apic, APIC_LDR, id);
Paolo Bonzini44d52712020-06-22 16:37:42 +0200310 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300311}
312
Dr. David Alan Gilberte872fa92017-11-17 11:52:49 +0000313static inline u32 kvm_apic_calc_x2apic_ldr(u32 id)
314{
315 return ((id >> 4) << 16) | (1 << (id & 0xf));
316}
317
Radim Krčmářa92e2542016-07-12 22:09:22 +0200318static inline void kvm_apic_set_x2apic_id(struct kvm_lapic *apic, u32 id)
Radim Krčmář257b9a52015-05-22 18:45:11 +0200319{
Dr. David Alan Gilberte872fa92017-11-17 11:52:49 +0000320 u32 ldr = kvm_apic_calc_x2apic_ldr(id);
Radim Krčmář257b9a52015-05-22 18:45:11 +0200321
Radim Krčmář6e500432016-12-15 18:06:46 +0100322 WARN_ON_ONCE(id != apic->vcpu->vcpu_id);
323
Radim Krčmářa92e2542016-07-12 22:09:22 +0200324 kvm_lapic_set_reg(apic, APIC_ID, id);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500325 kvm_lapic_set_reg(apic, APIC_LDR, ldr);
Paolo Bonzini44d52712020-06-22 16:37:42 +0200326 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Radim Krčmář257b9a52015-05-22 18:45:11 +0200327}
328
Eddie Dong97222cc2007-09-12 10:58:04 +0300329static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
330{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500331 return !(kvm_lapic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300332}
333
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800334static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
335{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100336 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800337}
338
Eddie Dong97222cc2007-09-12 10:58:04 +0300339static inline int apic_lvtt_period(struct kvm_lapic *apic)
340{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100341 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800342}
343
344static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
345{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100346 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300347}
348
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200349static inline int apic_lvt_nmi_mode(u32 lvt_val)
350{
351 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
352}
353
Gleb Natapovfc61b802009-07-05 17:39:35 +0300354void kvm_apic_set_version(struct kvm_vcpu *vcpu)
355{
356 struct kvm_lapic *apic = vcpu->arch.apic;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300357 u32 v = APIC_VERSION;
358
Paolo Bonzinibce87cc2016-01-08 13:48:51 +0100359 if (!lapic_in_kernel(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300360 return;
361
Vitaly Kuznetsov0bcc3fb2018-02-09 14:01:33 +0100362 /*
363 * KVM emulates 82093AA datasheet (with in-kernel IOAPIC implementation)
364 * which doesn't have EOI register; Some buggy OSes (e.g. Windows with
365 * Hyper-V role) disable EOI broadcast in lapic not checking for IOAPIC
366 * version first and level-triggered interrupts never get EOIed in
367 * IOAPIC.
368 */
Xiaoyao Li565b7822020-07-08 14:50:53 +0800369 if (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) &&
Vitaly Kuznetsov0bcc3fb2018-02-09 14:01:33 +0100370 !ioapic_in_kernel(vcpu->kvm))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300371 v |= APIC_LVR_DIRECTED_EOI;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500372 kvm_lapic_set_reg(apic, APIC_LVR, v);
Gleb Natapovfc61b802009-07-05 17:39:35 +0300373}
374
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500375static const unsigned int apic_lvt_mask[KVM_APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800376 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300377 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
378 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
379 LINT_MASK, LINT_MASK, /* LVT0-1 */
380 LVT_MASK /* LVTERR */
381};
382
383static int find_highest_vector(void *bitmap)
384{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900385 int vec;
386 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300387
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900388 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
389 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
390 reg = bitmap + REG_POS(vec);
391 if (*reg)
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100392 return __fls(*reg) + vec;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900393 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300394
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900395 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300396}
397
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300398static u8 count_vectors(void *bitmap)
399{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900400 int vec;
401 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300402 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900403
404 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
405 reg = bitmap + REG_POS(vec);
406 count += hweight32(*reg);
407 }
408
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300409 return count;
410}
411
Liran Alone7387b02017-12-24 18:12:54 +0200412bool __kvm_apic_update_irr(u32 *pir, void *regs, int *max_irr)
Yang Zhanga20ed542013-04-11 19:25:15 +0800413{
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100414 u32 i, vec;
Liran Alone7387b02017-12-24 18:12:54 +0200415 u32 pir_val, irr_val, prev_irr_val;
416 int max_updated_irr;
417
418 max_updated_irr = -1;
419 *max_irr = -1;
Yang Zhanga20ed542013-04-11 19:25:15 +0800420
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100421 for (i = vec = 0; i <= 7; i++, vec += 32) {
Paolo Bonziniad361092016-09-20 16:15:05 +0200422 pir_val = READ_ONCE(pir[i]);
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100423 irr_val = *((u32 *)(regs + APIC_IRR + i * 0x10));
Paolo Bonziniad361092016-09-20 16:15:05 +0200424 if (pir_val) {
Liran Alone7387b02017-12-24 18:12:54 +0200425 prev_irr_val = irr_val;
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100426 irr_val |= xchg(&pir[i], 0);
427 *((u32 *)(regs + APIC_IRR + i * 0x10)) = irr_val;
Liran Alone7387b02017-12-24 18:12:54 +0200428 if (prev_irr_val != irr_val) {
429 max_updated_irr =
430 __fls(irr_val ^ prev_irr_val) + vec;
431 }
Paolo Bonziniad361092016-09-20 16:15:05 +0200432 }
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100433 if (irr_val)
Liran Alone7387b02017-12-24 18:12:54 +0200434 *max_irr = __fls(irr_val) + vec;
Yang Zhanga20ed542013-04-11 19:25:15 +0800435 }
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100436
Liran Alone7387b02017-12-24 18:12:54 +0200437 return ((max_updated_irr != -1) &&
438 (max_updated_irr == *max_irr));
Yang Zhanga20ed542013-04-11 19:25:15 +0800439}
Wincy Van705699a2015-02-03 23:58:17 +0800440EXPORT_SYMBOL_GPL(__kvm_apic_update_irr);
441
Liran Alone7387b02017-12-24 18:12:54 +0200442bool kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir, int *max_irr)
Wincy Van705699a2015-02-03 23:58:17 +0800443{
444 struct kvm_lapic *apic = vcpu->arch.apic;
445
Liran Alone7387b02017-12-24 18:12:54 +0200446 return __kvm_apic_update_irr(pir, apic->regs, max_irr);
Wincy Van705699a2015-02-03 23:58:17 +0800447}
Yang Zhanga20ed542013-04-11 19:25:15 +0800448EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
449
Gleb Natapov33e4c682009-06-11 11:06:51 +0300450static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300451{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300452 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300453}
454
455static inline int apic_find_highest_irr(struct kvm_lapic *apic)
456{
457 int result;
458
Yang Zhangc7c9c562013-01-25 10:18:51 +0800459 /*
460 * Note that irr_pending is just a hint. It will be always
461 * true with virtual interrupt delivery enabled.
462 */
Gleb Natapov33e4c682009-06-11 11:06:51 +0300463 if (!apic->irr_pending)
464 return -1;
465
466 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300467 ASSERT(result == -1 || result >= 16);
468
469 return result;
470}
471
Gleb Natapov33e4c682009-06-11 11:06:51 +0300472static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
473{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800474 struct kvm_vcpu *vcpu;
475
476 vcpu = apic->vcpu;
477
Andrey Smetanind62caab2015-11-10 15:36:33 +0300478 if (unlikely(vcpu->arch.apicv_active)) {
Paolo Bonzinib95234c2016-12-19 13:57:33 +0100479 /* need to update RVI */
Wei Yangee171d22019-03-31 19:17:22 -0700480 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700481 kvm_x86_ops.hwapic_irr_update(vcpu,
Paolo Bonzinib95234c2016-12-19 13:57:33 +0100482 apic_find_highest_irr(apic));
Nadav Amitf210f752014-11-16 23:49:07 +0200483 } else {
484 apic->irr_pending = false;
Wei Yangee171d22019-03-31 19:17:22 -0700485 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
Nadav Amitf210f752014-11-16 23:49:07 +0200486 if (apic_search_irr(apic) != -1)
487 apic->irr_pending = true;
Wanpeng Li56cc2402014-08-05 12:42:24 +0800488 }
Gleb Natapov33e4c682009-06-11 11:06:51 +0300489}
490
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300491static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
492{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800493 struct kvm_vcpu *vcpu;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200494
Wanpeng Li56cc2402014-08-05 12:42:24 +0800495 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
496 return;
497
498 vcpu = apic->vcpu;
499
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300500 /*
Wanpeng Li56cc2402014-08-05 12:42:24 +0800501 * With APIC virtualization enabled, all caching is disabled
502 * because the processor can modify ISR under the hood. Instead
503 * just set SVI.
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300504 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300505 if (unlikely(vcpu->arch.apicv_active))
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700506 kvm_x86_ops.hwapic_isr_update(vcpu, vec);
Wanpeng Li56cc2402014-08-05 12:42:24 +0800507 else {
508 ++apic->isr_count;
509 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
510 /*
511 * ISR (in service register) bit is set when injecting an interrupt.
512 * The highest vector is injected. Thus the latest bit set matches
513 * the highest bit in ISR.
514 */
515 apic->highest_isr_cache = vec;
516 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300517}
518
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200519static inline int apic_find_highest_isr(struct kvm_lapic *apic)
520{
521 int result;
522
523 /*
524 * Note that isr_count is always 1, and highest_isr_cache
525 * is always -1, with APIC virtualization enabled.
526 */
527 if (!apic->isr_count)
528 return -1;
529 if (likely(apic->highest_isr_cache != -1))
530 return apic->highest_isr_cache;
531
532 result = find_highest_vector(apic->regs + APIC_ISR);
533 ASSERT(result == -1 || result >= 16);
534
535 return result;
536}
537
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300538static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
539{
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200540 struct kvm_vcpu *vcpu;
541 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
542 return;
543
544 vcpu = apic->vcpu;
545
546 /*
547 * We do get here for APIC virtualization enabled if the guest
548 * uses the Hyper-V APIC enlightenment. In this case we may need
549 * to trigger a new interrupt delivery by writing the SVI field;
550 * on the other hand isr_count and highest_isr_cache are unused
551 * and must be left alone.
552 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300553 if (unlikely(vcpu->arch.apicv_active))
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700554 kvm_x86_ops.hwapic_isr_update(vcpu,
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200555 apic_find_highest_isr(apic));
556 else {
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300557 --apic->isr_count;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200558 BUG_ON(apic->isr_count < 0);
559 apic->highest_isr_cache = -1;
560 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300561}
562
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800563int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
564{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300565 /* This may race with setting of irr in __apic_accept_irq() and
566 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
567 * will cause vmexit immediately and the value will be recalculated
568 * on the next vmentry.
569 */
Paolo Bonzinif8543d62016-01-08 13:42:24 +0100570 return apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800571}
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100572EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800573
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200574static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +0800575 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100576 struct dest_map *dest_map);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200577
Yang Zhangb4f22252013-04-11 19:21:37 +0800578int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100579 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +0300580{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800581 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800582
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200583 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
Yang Zhangb4f22252013-04-11 19:21:37 +0800584 irq->level, irq->trig_mode, dest_map);
Eddie Dong97222cc2007-09-12 10:58:04 +0300585}
586
Miaohe Lin1a686232019-11-09 17:46:49 +0800587static int __pv_send_ipi(unsigned long *ipi_bitmap, struct kvm_apic_map *map,
588 struct kvm_lapic_irq *irq, u32 min)
589{
590 int i, count = 0;
591 struct kvm_vcpu *vcpu;
592
593 if (min > map->max_apic_id)
594 return 0;
595
596 for_each_set_bit(i, ipi_bitmap,
597 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
598 if (map->phys_map[min + i]) {
599 vcpu = map->phys_map[min + i]->vcpu;
600 count += kvm_apic_set_irq(vcpu, irq, NULL);
601 }
602 }
603
604 return count;
605}
606
Wanpeng Li4180bf12018-07-23 14:39:54 +0800607int kvm_pv_send_ipi(struct kvm *kvm, unsigned long ipi_bitmap_low,
Wanpeng Libdf7ffc2018-08-30 10:03:30 +0800608 unsigned long ipi_bitmap_high, u32 min,
Wanpeng Li4180bf12018-07-23 14:39:54 +0800609 unsigned long icr, int op_64_bit)
610{
Wanpeng Li4180bf12018-07-23 14:39:54 +0800611 struct kvm_apic_map *map;
Wanpeng Li4180bf12018-07-23 14:39:54 +0800612 struct kvm_lapic_irq irq = {0};
613 int cluster_size = op_64_bit ? 64 : 32;
Miaohe Lin1a686232019-11-09 17:46:49 +0800614 int count;
615
616 if (icr & (APIC_DEST_MASK | APIC_SHORT_MASK))
617 return -KVM_EINVAL;
Wanpeng Li4180bf12018-07-23 14:39:54 +0800618
619 irq.vector = icr & APIC_VECTOR_MASK;
620 irq.delivery_mode = icr & APIC_MODE_MASK;
621 irq.level = (icr & APIC_INT_ASSERT) != 0;
622 irq.trig_mode = icr & APIC_INT_LEVELTRIG;
623
Wanpeng Li4180bf12018-07-23 14:39:54 +0800624 rcu_read_lock();
625 map = rcu_dereference(kvm->arch.apic_map);
626
Miaohe Lin1a686232019-11-09 17:46:49 +0800627 count = -EOPNOTSUPP;
628 if (likely(map)) {
629 count = __pv_send_ipi(&ipi_bitmap_low, map, &irq, min);
630 min += cluster_size;
631 count += __pv_send_ipi(&ipi_bitmap_high, map, &irq, min);
Wanpeng Li38ab0122018-11-20 09:39:30 +0800632 }
633
Wanpeng Li4180bf12018-07-23 14:39:54 +0800634 rcu_read_unlock();
635 return count;
636}
637
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300638static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
639{
Paolo Bonzini4e335d92017-05-02 16:20:18 +0200640
641 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
642 sizeof(val));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300643}
644
645static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
646{
Paolo Bonzini4e335d92017-05-02 16:20:18 +0200647
648 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
649 sizeof(*val));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300650}
651
652static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
653{
654 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
655}
656
657static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
658{
659 u8 val;
Miaohe Lin23520b22020-02-21 22:04:46 +0800660 if (pv_eoi_get_user(vcpu, &val) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800661 printk(KERN_WARNING "Can't read EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800662 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Miaohe Lin23520b22020-02-21 22:04:46 +0800663 return false;
664 }
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300665 return val & 0x1;
666}
667
668static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
669{
670 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800671 printk(KERN_WARNING "Can't set EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800672 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300673 return;
674 }
675 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
676}
677
678static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
679{
680 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800681 printk(KERN_WARNING "Can't clear EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800682 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300683 return;
684 }
685 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
686}
687
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100688static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
689{
Paolo Bonzini3d927892016-12-19 13:29:03 +0100690 int highest_irr;
Liran Alonfa59cc02017-12-24 18:12:53 +0200691 if (apic->vcpu->arch.apicv_active)
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700692 highest_irr = kvm_x86_ops.sync_pir_to_irr(apic->vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100693 else
694 highest_irr = apic_find_highest_irr(apic);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100695 if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
696 return -1;
697 return highest_irr;
698}
699
700static bool __apic_update_ppr(struct kvm_lapic *apic, u32 *new_ppr)
Eddie Dong97222cc2007-09-12 10:58:04 +0300701{
Avi Kivity3842d132010-07-27 12:30:24 +0300702 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300703 int isr;
704
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500705 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
706 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300707 isr = apic_find_highest_isr(apic);
708 isrv = (isr != -1) ? isr : 0;
709
710 if ((tpr & 0xf0) >= (isrv & 0xf0))
711 ppr = tpr & 0xff;
712 else
713 ppr = isrv & 0xf0;
714
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100715 *new_ppr = ppr;
716 if (old_ppr != ppr)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500717 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100718
719 return ppr < old_ppr;
720}
721
722static void apic_update_ppr(struct kvm_lapic *apic)
723{
724 u32 ppr;
725
Paolo Bonzini26fbbee2016-12-18 13:54:58 +0100726 if (__apic_update_ppr(apic, &ppr) &&
727 apic_has_interrupt_for_ppr(apic, ppr) != -1)
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100728 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300729}
730
Paolo Bonzinieb90f342016-12-18 14:02:21 +0100731void kvm_apic_update_ppr(struct kvm_vcpu *vcpu)
732{
733 apic_update_ppr(vcpu->arch.apic);
734}
735EXPORT_SYMBOL_GPL(kvm_apic_update_ppr);
736
Eddie Dong97222cc2007-09-12 10:58:04 +0300737static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
738{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500739 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
Eddie Dong97222cc2007-09-12 10:58:04 +0300740 apic_update_ppr(apic);
741}
742
Radim Krčmář03d22492015-02-12 19:41:31 +0100743static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300744{
Radim Krčmářb4535b52016-12-15 18:06:47 +0100745 return mda == (apic_x2apic_mode(apic) ?
746 X2APIC_BROADCAST : APIC_BROADCAST);
Eddie Dong97222cc2007-09-12 10:58:04 +0300747}
748
Radim Krčmář03d22492015-02-12 19:41:31 +0100749static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
Nadav Amit394457a2014-10-03 00:30:52 +0300750{
Radim Krčmář03d22492015-02-12 19:41:31 +0100751 if (kvm_apic_broadcast(apic, mda))
752 return true;
753
754 if (apic_x2apic_mode(apic))
Radim Krčmář6e500432016-12-15 18:06:46 +0100755 return mda == kvm_x2apic_id(apic);
Radim Krčmář03d22492015-02-12 19:41:31 +0100756
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100757 /*
758 * Hotplug hack: Make LAPIC in xAPIC mode also accept interrupts as if
759 * it were in x2APIC mode. Hotplugged VCPUs start in xAPIC mode and
760 * this allows unique addressing of VCPUs with APIC ID over 0xff.
761 * The 0xff condition is needed because writeable xAPIC ID.
762 */
763 if (kvm_x2apic_id(apic) > 0xff && mda == kvm_x2apic_id(apic))
764 return true;
765
Radim Krčmářb4535b52016-12-15 18:06:47 +0100766 return mda == kvm_xapic_id(apic);
Nadav Amit394457a2014-10-03 00:30:52 +0300767}
768
Radim Krčmář52c233a2015-01-29 22:48:48 +0100769static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300770{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300771 u32 logical_id;
772
Nadav Amit394457a2014-10-03 00:30:52 +0300773 if (kvm_apic_broadcast(apic, mda))
Radim Krčmář9368b562015-01-29 22:48:49 +0100774 return true;
Nadav Amit394457a2014-10-03 00:30:52 +0300775
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500776 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300777
Radim Krčmář9368b562015-01-29 22:48:49 +0100778 if (apic_x2apic_mode(apic))
Radim Krčmář8a395362015-01-29 22:48:51 +0100779 return ((logical_id >> 16) == (mda >> 16))
780 && (logical_id & mda & 0xffff) != 0;
Radim Krčmář9368b562015-01-29 22:48:49 +0100781
782 logical_id = GET_APIC_LOGICAL_ID(logical_id);
Eddie Dong97222cc2007-09-12 10:58:04 +0300783
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500784 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300785 case APIC_DFR_FLAT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100786 return (logical_id & mda) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300787 case APIC_DFR_CLUSTER:
Radim Krčmář9368b562015-01-29 22:48:49 +0100788 return ((logical_id >> 4) == (mda >> 4))
789 && (logical_id & mda & 0xf) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300790 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100791 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300792 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300793}
794
Radim Krčmářc5192652016-07-12 22:09:28 +0200795/* The KVM local APIC implementation has two quirks:
796 *
Radim Krčmářb4535b52016-12-15 18:06:47 +0100797 * - Real hardware delivers interrupts destined to x2APIC ID > 0xff to LAPICs
798 * in xAPIC mode if the "destination & 0xff" matches its xAPIC ID.
799 * KVM doesn't do that aliasing.
Radim Krčmářc5192652016-07-12 22:09:28 +0200800 *
801 * - in-kernel IOAPIC messages have to be delivered directly to
802 * x2APIC, because the kernel does not support interrupt remapping.
803 * In order to support broadcast without interrupt remapping, x2APIC
804 * rewrites the destination of non-IPI messages from APIC_BROADCAST
805 * to X2APIC_BROADCAST.
806 *
807 * The broadcast quirk can be disabled with KVM_CAP_X2APIC_API. This is
808 * important when userspace wants to use x2APIC-format MSIs, because
809 * APIC_BROADCAST (0xff) is a legal route for "cluster 0, CPUs 0-7".
Radim Krčmář03d22492015-02-12 19:41:31 +0100810 */
Radim Krčmářc5192652016-07-12 22:09:28 +0200811static u32 kvm_apic_mda(struct kvm_vcpu *vcpu, unsigned int dest_id,
812 struct kvm_lapic *source, struct kvm_lapic *target)
Radim Krčmář03d22492015-02-12 19:41:31 +0100813{
814 bool ipi = source != NULL;
Radim Krčmář03d22492015-02-12 19:41:31 +0100815
Radim Krčmářc5192652016-07-12 22:09:28 +0200816 if (!vcpu->kvm->arch.x2apic_broadcast_quirk_disabled &&
Radim Krčmářb4535b52016-12-15 18:06:47 +0100817 !ipi && dest_id == APIC_BROADCAST && apic_x2apic_mode(target))
Radim Krčmář03d22492015-02-12 19:41:31 +0100818 return X2APIC_BROADCAST;
819
Radim Krčmářb4535b52016-12-15 18:06:47 +0100820 return dest_id;
Radim Krčmář03d22492015-02-12 19:41:31 +0100821}
822
Radim Krčmář52c233a2015-01-29 22:48:48 +0100823bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Peter Xu5c69d5c2019-12-04 20:07:20 +0100824 int shorthand, unsigned int dest, int dest_mode)
Eddie Dong97222cc2007-09-12 10:58:04 +0300825{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800826 struct kvm_lapic *target = vcpu->arch.apic;
Radim Krčmářc5192652016-07-12 22:09:28 +0200827 u32 mda = kvm_apic_mda(vcpu, dest, source, target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300828
Zachary Amsdenbd371392010-06-14 11:42:15 -1000829 ASSERT(target);
Peter Xu5c69d5c2019-12-04 20:07:20 +0100830 switch (shorthand) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300831 case APIC_DEST_NOSHORT:
Radim Krčmář3697f302015-01-29 22:48:50 +0100832 if (dest_mode == APIC_DEST_PHYSICAL)
Radim Krčmář03d22492015-02-12 19:41:31 +0100833 return kvm_apic_match_physical_addr(target, mda);
Gleb Natapov343f94f2009-03-05 16:34:54 +0200834 else
Radim Krčmář03d22492015-02-12 19:41:31 +0100835 return kvm_apic_match_logical_addr(target, mda);
Eddie Dong97222cc2007-09-12 10:58:04 +0300836 case APIC_DEST_SELF:
Radim Krčmář9368b562015-01-29 22:48:49 +0100837 return target == source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300838 case APIC_DEST_ALLINC:
Radim Krčmář9368b562015-01-29 22:48:49 +0100839 return true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300840 case APIC_DEST_ALLBUT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100841 return target != source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300842 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100843 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300844 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300845}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500846EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
Eddie Dong97222cc2007-09-12 10:58:04 +0300847
Feng Wu520040142016-01-25 16:53:33 +0800848int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
849 const unsigned long *bitmap, u32 bitmap_size)
850{
851 u32 mod;
852 int i, idx = -1;
853
854 mod = vector % dest_vcpus;
855
856 for (i = 0; i <= mod; i++) {
857 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
858 BUG_ON(idx == bitmap_size);
859 }
860
861 return idx;
862}
863
Radim Krčmář4efd8052016-02-12 15:00:15 +0100864static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
865{
866 if (!kvm->arch.disabled_lapic_found) {
867 kvm->arch.disabled_lapic_found = true;
868 printk(KERN_INFO
869 "Disabled LAPIC found during irq injection\n");
870 }
871}
872
Radim Krčmářc5192652016-07-12 22:09:28 +0200873static bool kvm_apic_is_broadcast_dest(struct kvm *kvm, struct kvm_lapic **src,
874 struct kvm_lapic_irq *irq, struct kvm_apic_map *map)
875{
876 if (kvm->arch.x2apic_broadcast_quirk_disabled) {
877 if ((irq->dest_id == APIC_BROADCAST &&
878 map->mode != KVM_APIC_MODE_X2APIC))
879 return true;
880 if (irq->dest_id == X2APIC_BROADCAST)
881 return true;
882 } else {
883 bool x2apic_ipi = src && *src && apic_x2apic_mode(*src);
884 if (irq->dest_id == (x2apic_ipi ?
885 X2APIC_BROADCAST : APIC_BROADCAST))
886 return true;
887 }
888
889 return false;
890}
891
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200892/* Return true if the interrupt can be handled by using *bitmap as index mask
893 * for valid destinations in *dst array.
894 * Return false if kvm_apic_map_get_dest_lapic did nothing useful.
895 * Note: we may have zero kvm_lapic destinations when we return true, which
896 * means that the interrupt should be dropped. In this case, *bitmap would be
897 * zero and *dst undefined.
898 */
899static inline bool kvm_apic_map_get_dest_lapic(struct kvm *kvm,
900 struct kvm_lapic **src, struct kvm_lapic_irq *irq,
901 struct kvm_apic_map *map, struct kvm_lapic ***dst,
902 unsigned long *bitmap)
903{
904 int i, lowest;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200905
906 if (irq->shorthand == APIC_DEST_SELF && src) {
907 *dst = src;
908 *bitmap = 1;
909 return true;
910 } else if (irq->shorthand)
911 return false;
912
Radim Krčmářc5192652016-07-12 22:09:28 +0200913 if (!map || kvm_apic_is_broadcast_dest(kvm, src, irq, map))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200914 return false;
915
916 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200917 if (irq->dest_id > map->max_apic_id) {
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200918 *bitmap = 0;
919 } else {
Paolo Bonzini1d487e92019-04-11 11:16:47 +0200920 u32 dest_id = array_index_nospec(irq->dest_id, map->max_apic_id + 1);
921 *dst = &map->phys_map[dest_id];
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200922 *bitmap = 1;
923 }
924 return true;
925 }
926
Radim Krčmáře45115b2016-07-12 22:09:19 +0200927 *bitmap = 0;
928 if (!kvm_apic_map_get_logical_dest(map, irq->dest_id, dst,
929 (u16 *)bitmap))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200930 return false;
931
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200932 if (!kvm_lowest_prio_delivery(irq))
933 return true;
934
935 if (!kvm_vector_hashing_enabled()) {
936 lowest = -1;
937 for_each_set_bit(i, bitmap, 16) {
938 if (!(*dst)[i])
939 continue;
940 if (lowest < 0)
941 lowest = i;
942 else if (kvm_apic_compare_prio((*dst)[i]->vcpu,
943 (*dst)[lowest]->vcpu) < 0)
944 lowest = i;
945 }
946 } else {
947 if (!*bitmap)
948 return true;
949
950 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap),
951 bitmap, 16);
952
953 if (!(*dst)[lowest]) {
954 kvm_apic_disabled_lapic_found(kvm);
955 *bitmap = 0;
956 return true;
957 }
958 }
959
960 *bitmap = (lowest >= 0) ? 1 << lowest : 0;
961
962 return true;
963}
964
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300965bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100966 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300967{
968 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200969 unsigned long bitmap;
970 struct kvm_lapic **dst = NULL;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300971 int i;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200972 bool ret;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300973
974 *r = -1;
975
976 if (irq->shorthand == APIC_DEST_SELF) {
Yang Zhangb4f22252013-04-11 19:21:37 +0800977 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300978 return true;
979 }
980
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300981 rcu_read_lock();
982 map = rcu_dereference(kvm->arch.apic_map);
983
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200984 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dst, &bitmap);
Paolo Bonzini0624fca2018-10-01 16:07:18 +0200985 if (ret) {
986 *r = 0;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200987 for_each_set_bit(i, &bitmap, 16) {
988 if (!dst[i])
989 continue;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200990 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
Radim Krčmář3548a252015-02-12 19:41:33 +0100991 }
Paolo Bonzini0624fca2018-10-01 16:07:18 +0200992 }
Radim Krčmář3548a252015-02-12 19:41:33 +0100993
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300994 rcu_read_unlock();
995 return ret;
996}
997
Feng Wu6228a0d2016-01-25 16:53:34 +0800998/*
Miaohe Lin00116792019-12-11 14:26:23 +0800999 * This routine tries to handle interrupts in posted mode, here is how
Feng Wu6228a0d2016-01-25 16:53:34 +08001000 * it deals with different cases:
1001 * - For single-destination interrupts, handle it in posted mode
1002 * - Else if vector hashing is enabled and it is a lowest-priority
1003 * interrupt, handle it in posted mode and use the following mechanism
Miaohe Lin67b0ae42019-12-11 14:26:22 +08001004 * to find the destination vCPU.
Feng Wu6228a0d2016-01-25 16:53:34 +08001005 * 1. For lowest-priority interrupts, store all the possible
1006 * destination vCPUs in an array.
1007 * 2. Use "guest vector % max number of destination vCPUs" to find
1008 * the right destination vCPU in the array for the lowest-priority
1009 * interrupt.
1010 * - Otherwise, use remapped mode to inject the interrupt.
1011 */
Feng Wu8feb4a02015-09-18 22:29:47 +08001012bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
1013 struct kvm_vcpu **dest_vcpu)
1014{
1015 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001016 unsigned long bitmap;
1017 struct kvm_lapic **dst = NULL;
Feng Wu8feb4a02015-09-18 22:29:47 +08001018 bool ret = false;
Feng Wu8feb4a02015-09-18 22:29:47 +08001019
1020 if (irq->shorthand)
1021 return false;
1022
1023 rcu_read_lock();
1024 map = rcu_dereference(kvm->arch.apic_map);
1025
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001026 if (kvm_apic_map_get_dest_lapic(kvm, NULL, irq, map, &dst, &bitmap) &&
1027 hweight16(bitmap) == 1) {
1028 unsigned long i = find_first_bit(&bitmap, 16);
Feng Wu8feb4a02015-09-18 22:29:47 +08001029
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001030 if (dst[i]) {
1031 *dest_vcpu = dst[i]->vcpu;
1032 ret = true;
Feng Wu8feb4a02015-09-18 22:29:47 +08001033 }
Feng Wu8feb4a02015-09-18 22:29:47 +08001034 }
1035
Feng Wu8feb4a02015-09-18 22:29:47 +08001036 rcu_read_unlock();
1037 return ret;
1038}
1039
Eddie Dong97222cc2007-09-12 10:58:04 +03001040/*
1041 * Add a pending IRQ into lapic.
1042 * Return 1 if successfully added and 0 if discarded.
1043 */
1044static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +08001045 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001046 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +03001047{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001048 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +03001049 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +03001050
Paolo Bonzinia183b632014-09-11 11:51:02 +02001051 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
1052 trig_mode, vector);
Eddie Dong97222cc2007-09-12 10:58:04 +03001053 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001054 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +02001055 vcpu->arch.apic_arb_prio++;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06001056 /* fall through */
Gleb Natapove1035712009-03-05 16:34:59 +02001057 case APIC_DM_FIXED:
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001058 if (unlikely(trig_mode && !level))
1059 break;
1060
Eddie Dong97222cc2007-09-12 10:58:04 +03001061 /* FIXME add logic for vcpu on reset */
1062 if (unlikely(!apic_enabled(apic)))
1063 break;
1064
Jan Kiszka11f5cc02013-07-25 09:58:45 +02001065 result = 1;
1066
Joerg Roedel9daa5002016-02-29 16:04:44 +01001067 if (dest_map) {
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001068 __set_bit(vcpu->vcpu_id, dest_map->map);
Joerg Roedel9daa5002016-02-29 16:04:44 +01001069 dest_map->vectors[vcpu->vcpu_id] = vector;
1070 }
Avi Kivitya5d36f82009-12-29 12:42:16 +02001071
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001072 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
1073 if (trig_mode)
Wei Yangee171d22019-03-31 19:17:22 -07001074 kvm_lapic_set_vector(vector,
1075 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001076 else
Wei Yangee171d22019-03-31 19:17:22 -07001077 kvm_lapic_clear_vector(vector,
1078 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001079 }
1080
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001081 if (kvm_x86_ops.deliver_posted_interrupt(vcpu, vector)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001082 kvm_lapic_set_irr(vector, apic);
Yang Zhang5a717852013-04-11 19:25:16 +08001083 kvm_make_request(KVM_REQ_EVENT, vcpu);
1084 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001085 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001086 break;
1087
1088 case APIC_DM_REMRD:
Raghavendra K T24d21662013-08-26 14:18:35 +05301089 result = 1;
1090 vcpu->arch.pv.pv_unhalted = 1;
1091 kvm_make_request(KVM_REQ_EVENT, vcpu);
1092 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001093 break;
1094
1095 case APIC_DM_SMI:
Paolo Bonzini64d60672015-05-07 11:36:11 +02001096 result = 1;
1097 kvm_make_request(KVM_REQ_SMI, vcpu);
1098 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001099 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001100
Eddie Dong97222cc2007-09-12 10:58:04 +03001101 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001102 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001103 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +02001104 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001105 break;
1106
1107 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +01001108 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001109 result = 1;
Jan Kiszka66450a22013-03-13 12:42:34 +01001110 /* assumes that there are only KVM_APIC_INIT/SIPI */
1111 apic->pending_events = (1UL << KVM_APIC_INIT);
Avi Kivity3842d132010-07-27 12:30:24 +03001112 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001113 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001114 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001115 break;
1116
1117 case APIC_DM_STARTUP:
Jan Kiszka66450a22013-03-13 12:42:34 +01001118 result = 1;
1119 apic->sipi_vector = vector;
1120 /* make sure sipi_vector is visible for the receiver */
1121 smp_wmb();
1122 set_bit(KVM_APIC_SIPI, &apic->pending_events);
1123 kvm_make_request(KVM_REQ_EVENT, vcpu);
1124 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001125 break;
1126
Jan Kiszka23930f92008-09-26 09:30:52 +02001127 case APIC_DM_EXTINT:
1128 /*
1129 * Should only be called by kvm_apic_local_deliver() with LVT0,
1130 * before NMI watchdog was enabled. Already handled by
1131 * kvm_apic_accept_pic_intr().
1132 */
1133 break;
1134
Eddie Dong97222cc2007-09-12 10:58:04 +03001135 default:
1136 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
1137 delivery_mode);
1138 break;
1139 }
1140 return result;
1141}
1142
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001143/*
1144 * This routine identifies the destination vcpus mask meant to receive the
1145 * IOAPIC interrupts. It either uses kvm_apic_map_get_dest_lapic() to find
1146 * out the destination vcpus array and set the bitmap or it traverses to
1147 * each available vcpu to identify the same.
1148 */
1149void kvm_bitmap_or_dest_vcpus(struct kvm *kvm, struct kvm_lapic_irq *irq,
1150 unsigned long *vcpu_bitmap)
1151{
1152 struct kvm_lapic **dest_vcpu = NULL;
1153 struct kvm_lapic *src = NULL;
1154 struct kvm_apic_map *map;
1155 struct kvm_vcpu *vcpu;
1156 unsigned long bitmap;
1157 int i, vcpu_idx;
1158 bool ret;
1159
1160 rcu_read_lock();
1161 map = rcu_dereference(kvm->arch.apic_map);
1162
1163 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dest_vcpu,
1164 &bitmap);
1165 if (ret) {
1166 for_each_set_bit(i, &bitmap, 16) {
1167 if (!dest_vcpu[i])
1168 continue;
1169 vcpu_idx = dest_vcpu[i]->vcpu->vcpu_idx;
1170 __set_bit(vcpu_idx, vcpu_bitmap);
1171 }
1172 } else {
1173 kvm_for_each_vcpu(i, vcpu, kvm) {
1174 if (!kvm_apic_present(vcpu))
1175 continue;
1176 if (!kvm_apic_match_dest(vcpu, NULL,
Peter Xub4b29632019-12-04 20:07:16 +01001177 irq->shorthand,
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001178 irq->dest_id,
1179 irq->dest_mode))
1180 continue;
1181 __set_bit(i, vcpu_bitmap);
1182 }
1183 }
1184 rcu_read_unlock();
1185}
1186
Gleb Natapove1035712009-03-05 16:34:59 +02001187int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +03001188{
Gleb Natapove1035712009-03-05 16:34:59 +02001189 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +08001190}
1191
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001192static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
1193{
Andrey Smetanin63086302015-11-10 15:36:32 +03001194 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001195}
1196
Yang Zhangc7c9c562013-01-25 10:18:51 +08001197static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
1198{
Steve Rutherford7543a632015-07-29 23:21:41 -07001199 int trigger_mode;
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001200
Steve Rutherford7543a632015-07-29 23:21:41 -07001201 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
1202 if (!kvm_ioapic_handles_vector(apic, vector))
1203 return;
1204
1205 /* Request a KVM exit to inform the userspace IOAPIC. */
1206 if (irqchip_split(apic->vcpu->kvm)) {
1207 apic->vcpu->arch.pending_ioapic_eoi = vector;
1208 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1209 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08001210 }
Steve Rutherford7543a632015-07-29 23:21:41 -07001211
1212 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1213 trigger_mode = IOAPIC_LEVEL_TRIG;
1214 else
1215 trigger_mode = IOAPIC_EDGE_TRIG;
1216
1217 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
Yang Zhangc7c9c562013-01-25 10:18:51 +08001218}
1219
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001220static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001221{
1222 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001223
1224 trace_kvm_eoi(apic, vector);
1225
Eddie Dong97222cc2007-09-12 10:58:04 +03001226 /*
1227 * Not every write EOI will has corresponding ISR,
1228 * one example is when Kernel check timer on setup_IO_APIC
1229 */
1230 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001231 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001232
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001233 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001234 apic_update_ppr(apic);
1235
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001236 if (test_bit(vector, vcpu_to_synic(apic->vcpu)->vec_bitmap))
1237 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1238
Yang Zhangc7c9c562013-01-25 10:18:51 +08001239 kvm_ioapic_send_eoi(apic, vector);
Avi Kivity3842d132010-07-27 12:30:24 +03001240 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001241 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001242}
1243
Yang Zhangc7c9c562013-01-25 10:18:51 +08001244/*
1245 * this interface assumes a trap-like exit, which has already finished
1246 * desired side effect including vISR and vPPR update.
1247 */
1248void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1249{
1250 struct kvm_lapic *apic = vcpu->arch.apic;
1251
1252 trace_kvm_eoi(apic, vector);
1253
1254 kvm_ioapic_send_eoi(apic, vector);
1255 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1256}
1257EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1258
Wanpeng Lid5361672020-03-26 10:20:02 +08001259void kvm_apic_send_ipi(struct kvm_lapic *apic, u32 icr_low, u32 icr_high)
Eddie Dong97222cc2007-09-12 10:58:04 +03001260{
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001261 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +03001262
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001263 irq.vector = icr_low & APIC_VECTOR_MASK;
1264 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1265 irq.dest_mode = icr_low & APIC_DEST_MASK;
Paolo Bonzinib7cb2232015-04-21 14:57:05 +02001266 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001267 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1268 irq.shorthand = icr_low & APIC_SHORT_MASK;
James Sullivan93bbf0b2015-03-18 19:26:03 -06001269 irq.msi_redir_hint = false;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001270 if (apic_x2apic_mode(apic))
1271 irq.dest_id = icr_high;
1272 else
1273 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +03001274
Gleb Natapov1000ff82009-07-07 16:00:57 +03001275 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1276
Yang Zhangb4f22252013-04-11 19:21:37 +08001277 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03001278}
1279
1280static u32 apic_get_tmcct(struct kvm_lapic *apic)
1281{
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001282 ktime_t remaining, now;
Marcelo Tosattib682b812009-02-10 20:41:41 -02001283 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001284 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +03001285
1286 ASSERT(apic != NULL);
1287
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001288 /* if initial count is 0, current count should also be 0 */
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001289 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
Andy Honigb963a222013-11-19 14:12:18 -08001290 apic->lapic_timer.period == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001291 return 0;
1292
Paolo Bonzini55878592016-10-25 15:23:49 +02001293 now = ktime_get();
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001294 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
Marcelo Tosattib682b812009-02-10 20:41:41 -02001295 if (ktime_to_ns(remaining) < 0)
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001296 remaining = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001297
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001298 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1299 tmcct = div64_u64(ns,
1300 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +03001301
1302 return tmcct;
1303}
1304
Avi Kivityb209749f2007-10-22 16:50:39 +02001305static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1306{
1307 struct kvm_vcpu *vcpu = apic->vcpu;
1308 struct kvm_run *run = vcpu->run;
1309
Avi Kivitya8eeb042010-05-10 12:34:53 +03001310 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001311 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +02001312 run->tpr_access.is_write = write;
1313}
1314
1315static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1316{
1317 if (apic->vcpu->arch.tpr_access_reporting)
1318 __report_tpr_access(apic, write);
1319}
1320
Eddie Dong97222cc2007-09-12 10:58:04 +03001321static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1322{
1323 u32 val = 0;
1324
1325 if (offset >= LAPIC_MMIO_LENGTH)
1326 return 0;
1327
1328 switch (offset) {
1329 case APIC_ARBPRI:
Eddie Dong97222cc2007-09-12 10:58:04 +03001330 break;
1331
1332 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001333 if (apic_lvtt_tscdeadline(apic))
1334 return 0;
1335
Eddie Dong97222cc2007-09-12 10:58:04 +03001336 val = apic_get_tmcct(apic);
1337 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +03001338 case APIC_PROCPRI:
1339 apic_update_ppr(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001340 val = kvm_lapic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +03001341 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02001342 case APIC_TASKPRI:
1343 report_tpr_access(apic, false);
1344 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +03001345 default:
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001346 val = kvm_lapic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +03001347 break;
1348 }
1349
1350 return val;
1351}
1352
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001353static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1354{
1355 return container_of(dev, struct kvm_lapic, dev);
1356}
1357
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001358#define APIC_REG_MASK(reg) (1ull << ((reg) >> 4))
1359#define APIC_REGS_MASK(first, count) \
1360 (APIC_REG_MASK(first) * ((1ull << (count)) - 1))
1361
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001362int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001363 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001364{
Eddie Dong97222cc2007-09-12 10:58:04 +03001365 unsigned char alignment = offset & 0xf;
1366 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +08001367 /* this bitmask has a bit cleared for each reserved register */
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001368 u64 valid_reg_mask =
1369 APIC_REG_MASK(APIC_ID) |
1370 APIC_REG_MASK(APIC_LVR) |
1371 APIC_REG_MASK(APIC_TASKPRI) |
1372 APIC_REG_MASK(APIC_PROCPRI) |
1373 APIC_REG_MASK(APIC_LDR) |
1374 APIC_REG_MASK(APIC_DFR) |
1375 APIC_REG_MASK(APIC_SPIV) |
1376 APIC_REGS_MASK(APIC_ISR, APIC_ISR_NR) |
1377 APIC_REGS_MASK(APIC_TMR, APIC_ISR_NR) |
1378 APIC_REGS_MASK(APIC_IRR, APIC_ISR_NR) |
1379 APIC_REG_MASK(APIC_ESR) |
1380 APIC_REG_MASK(APIC_ICR) |
1381 APIC_REG_MASK(APIC_ICR2) |
1382 APIC_REG_MASK(APIC_LVTT) |
1383 APIC_REG_MASK(APIC_LVTTHMR) |
1384 APIC_REG_MASK(APIC_LVTPC) |
1385 APIC_REG_MASK(APIC_LVT0) |
1386 APIC_REG_MASK(APIC_LVT1) |
1387 APIC_REG_MASK(APIC_LVTERR) |
1388 APIC_REG_MASK(APIC_TMICT) |
1389 APIC_REG_MASK(APIC_TMCCT) |
1390 APIC_REG_MASK(APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001391
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001392 /* ARBPRI is not valid on x2APIC */
1393 if (!apic_x2apic_mode(apic))
1394 valid_reg_mask |= APIC_REG_MASK(APIC_ARBPRI);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001395
Yi Wang0d888002019-07-06 01:08:48 +08001396 if (offset > 0x3f0 || !(valid_reg_mask & APIC_REG_MASK(offset)))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001397 return 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001398
Eddie Dong97222cc2007-09-12 10:58:04 +03001399 result = __apic_read(apic, offset & ~0xf);
1400
Marcelo Tosatti229456f2009-06-17 09:22:14 -03001401 trace_kvm_apic_read(offset, result);
1402
Eddie Dong97222cc2007-09-12 10:58:04 +03001403 switch (len) {
1404 case 1:
1405 case 2:
1406 case 4:
1407 memcpy(data, (char *)&result + alignment, len);
1408 break;
1409 default:
1410 printk(KERN_ERR "Local APIC read with len = %x, "
1411 "should be 1,2, or 4 instead\n", len);
1412 break;
1413 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001414 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001415}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001416EXPORT_SYMBOL_GPL(kvm_lapic_reg_read);
Eddie Dong97222cc2007-09-12 10:58:04 +03001417
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001418static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1419{
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001420 return addr >= apic->base_address &&
1421 addr < apic->base_address + LAPIC_MMIO_LENGTH;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001422}
1423
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001424static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001425 gpa_t address, int len, void *data)
1426{
1427 struct kvm_lapic *apic = to_lapic(this);
1428 u32 offset = address - apic->base_address;
1429
1430 if (!apic_mmio_in_range(apic, address))
1431 return -EOPNOTSUPP;
1432
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001433 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1434 if (!kvm_check_has_quirk(vcpu->kvm,
1435 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1436 return -EOPNOTSUPP;
1437
1438 memset(data, 0xff, len);
1439 return 0;
1440 }
1441
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001442 kvm_lapic_reg_read(apic, offset, len, data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001443
1444 return 0;
1445}
1446
Eddie Dong97222cc2007-09-12 10:58:04 +03001447static void update_divide_count(struct kvm_lapic *apic)
1448{
1449 u32 tmp1, tmp2, tdcr;
1450
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001451 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001452 tmp1 = tdcr & 0xf;
1453 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001454 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +03001455}
1456
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001457static void limit_periodic_timer_frequency(struct kvm_lapic *apic)
1458{
1459 /*
1460 * Do not allow the guest to program periodic timers with small
1461 * interval, since the hrtimers are not throttled by the host
1462 * scheduler.
1463 */
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001464 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001465 s64 min_period = min_timer_period_us * 1000LL;
1466
1467 if (apic->lapic_timer.period < min_period) {
1468 pr_info_ratelimited(
1469 "kvm: vcpu %i: requested %lld ns "
1470 "lapic timer period limited to %lld ns\n",
1471 apic->vcpu->vcpu_id,
1472 apic->lapic_timer.period, min_period);
1473 apic->lapic_timer.period = min_period;
1474 }
1475 }
1476}
1477
Wanpeng Li94be4b82020-03-24 14:32:10 +08001478static void cancel_hv_timer(struct kvm_lapic *apic);
1479
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001480static void apic_update_lvtt(struct kvm_lapic *apic)
1481{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001482 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001483 apic->lapic_timer.timer_mode_mask;
1484
1485 if (apic->lapic_timer.timer_mode != timer_mode) {
Wanpeng Lic69518c2017-10-05 03:53:51 -07001486 if (apic_lvtt_tscdeadline(apic) != (timer_mode ==
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001487 APIC_LVT_TIMER_TSCDEADLINE)) {
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001488 hrtimer_cancel(&apic->lapic_timer.timer);
Wanpeng Li94be4b82020-03-24 14:32:10 +08001489 preempt_disable();
1490 if (apic->lapic_timer.hv_timer_in_use)
1491 cancel_hv_timer(apic);
1492 preempt_enable();
Radim Krčmář44275932017-10-06 19:25:55 +02001493 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
1494 apic->lapic_timer.period = 0;
1495 apic->lapic_timer.tscdeadline = 0;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001496 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001497 apic->lapic_timer.timer_mode = timer_mode;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001498 limit_periodic_timer_frequency(apic);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001499 }
1500}
1501
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001502/*
1503 * On APICv, this test will cause a busy wait
1504 * during a higher-priority task.
1505 */
1506
1507static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1508{
1509 struct kvm_lapic *apic = vcpu->arch.apic;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001510 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001511
1512 if (kvm_apic_hw_enabled(apic)) {
1513 int vec = reg & APIC_VECTOR_MASK;
Marcelo Tosattif9339862015-02-02 15:26:08 -02001514 void *bitmap = apic->regs + APIC_ISR;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001515
Andrey Smetanind62caab2015-11-10 15:36:33 +03001516 if (vcpu->arch.apicv_active)
Marcelo Tosattif9339862015-02-02 15:26:08 -02001517 bitmap = apic->regs + APIC_IRR;
1518
1519 if (apic_test_vector(vec, bitmap))
1520 return true;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001521 }
1522 return false;
1523}
1524
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001525static inline void __wait_lapic_expire(struct kvm_vcpu *vcpu, u64 guest_cycles)
1526{
1527 u64 timer_advance_ns = vcpu->arch.apic->lapic_timer.timer_advance_ns;
1528
1529 /*
1530 * If the guest TSC is running at a different ratio than the host, then
1531 * convert the delay to nanoseconds to achieve an accurate delay. Note
1532 * that __delay() uses delay_tsc whenever the hardware has TSC, thus
1533 * always for VMX enabled hardware.
1534 */
1535 if (vcpu->arch.tsc_scaling_ratio == kvm_default_tsc_scaling_ratio) {
1536 __delay(min(guest_cycles,
1537 nsec_to_cycles(vcpu, timer_advance_ns)));
1538 } else {
1539 u64 delay_ns = guest_cycles * 1000000ULL;
1540 do_div(delay_ns, vcpu->arch.virtual_tsc_khz);
1541 ndelay(min_t(u32, delay_ns, timer_advance_ns));
1542 }
1543}
1544
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001545static inline void adjust_lapic_timer_advance(struct kvm_vcpu *vcpu,
Wanpeng Liec0671d2019-05-20 16:18:08 +08001546 s64 advance_expire_delta)
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001547{
1548 struct kvm_lapic *apic = vcpu->arch.apic;
Sean Christopherson39497d72019-04-17 10:15:32 -07001549 u32 timer_advance_ns = apic->lapic_timer.timer_advance_ns;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001550 u64 ns;
1551
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001552 /* Do not adjust for tiny fluctuations or large random spikes. */
1553 if (abs(advance_expire_delta) > LAPIC_TIMER_ADVANCE_ADJUST_MAX ||
1554 abs(advance_expire_delta) < LAPIC_TIMER_ADVANCE_ADJUST_MIN)
1555 return;
1556
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001557 /* too early */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001558 if (advance_expire_delta < 0) {
1559 ns = -advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001560 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001561 timer_advance_ns -= ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001562 } else {
1563 /* too late */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001564 ns = advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001565 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001566 timer_advance_ns += ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001567 }
1568
Wanpeng Lia0f00372019-09-26 08:54:03 +08001569 if (unlikely(timer_advance_ns > LAPIC_TIMER_ADVANCE_NS_MAX))
1570 timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001571 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
1572}
1573
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001574static void __kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001575{
1576 struct kvm_lapic *apic = vcpu->arch.apic;
1577 u64 guest_tsc, tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001578
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001579 if (apic->lapic_timer.expired_tscdeadline == 0)
1580 return;
1581
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001582 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1583 apic->lapic_timer.expired_tscdeadline = 0;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001584 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Wanpeng Liec0671d2019-05-20 16:18:08 +08001585 apic->lapic_timer.advance_expire_delta = guest_tsc - tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001586
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001587 if (guest_tsc < tsc_deadline)
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001588 __wait_lapic_expire(vcpu, tsc_deadline - guest_tsc);
Wanpeng Li3b8a5df2018-10-09 09:02:08 +08001589
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001590 if (lapic_timer_advance_dynamic)
Wanpeng Liec0671d2019-05-20 16:18:08 +08001591 adjust_lapic_timer_advance(vcpu, apic->lapic_timer.advance_expire_delta);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001592}
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001593
1594void kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1595{
1596 if (lapic_timer_int_injected(vcpu))
1597 __kvm_wait_lapic_expire(vcpu);
1598}
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08001599EXPORT_SYMBOL_GPL(kvm_wait_lapic_expire);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001600
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001601static void kvm_apic_inject_pending_timer_irqs(struct kvm_lapic *apic)
1602{
1603 struct kvm_timer *ktimer = &apic->lapic_timer;
1604
1605 kvm_apic_local_deliver(apic, APIC_LVTT);
Haiwei Li17ac43a2020-01-16 16:50:21 +08001606 if (apic_lvtt_tscdeadline(apic)) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001607 ktimer->tscdeadline = 0;
Haiwei Li17ac43a2020-01-16 16:50:21 +08001608 } else if (apic_lvtt_oneshot(apic)) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001609 ktimer->tscdeadline = 0;
1610 ktimer->target_expiration = 0;
1611 }
1612}
1613
Wanpeng Liae95f562020-04-28 14:23:28 +08001614static void apic_timer_expired(struct kvm_lapic *apic, bool from_timer_fn)
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001615{
1616 struct kvm_vcpu *vcpu = apic->vcpu;
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001617 struct kvm_timer *ktimer = &apic->lapic_timer;
1618
1619 if (atomic_read(&apic->lapic_timer.pending))
1620 return;
1621
1622 if (apic_lvtt_tscdeadline(apic) || ktimer->hv_timer_in_use)
1623 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1624
Wanpeng Liae95f562020-04-28 14:23:28 +08001625 if (!from_timer_fn && vcpu->arch.apicv_active) {
1626 WARN_ON(kvm_get_running_vcpu() != vcpu);
1627 kvm_apic_inject_pending_timer_irqs(apic);
1628 return;
1629 }
1630
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001631 if (kvm_use_posted_timer_interrupt(apic->vcpu)) {
1632 if (apic->lapic_timer.timer_advance_ns)
1633 __kvm_wait_lapic_expire(vcpu);
1634 kvm_apic_inject_pending_timer_irqs(apic);
1635 return;
1636 }
1637
1638 atomic_inc(&apic->lapic_timer.pending);
1639 kvm_set_pending_timer(vcpu);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001640}
1641
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001642static void start_sw_tscdeadline(struct kvm_lapic *apic)
1643{
Sean Christopherson39497d72019-04-17 10:15:32 -07001644 struct kvm_timer *ktimer = &apic->lapic_timer;
1645 u64 guest_tsc, tscdeadline = ktimer->tscdeadline;
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001646 u64 ns = 0;
1647 ktime_t expire;
1648 struct kvm_vcpu *vcpu = apic->vcpu;
1649 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
1650 unsigned long flags;
1651 ktime_t now;
1652
1653 if (unlikely(!tscdeadline || !this_tsc_khz))
1654 return;
1655
1656 local_irq_save(flags);
1657
Paolo Bonzini55878592016-10-25 15:23:49 +02001658 now = ktime_get();
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001659 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Liran Alonc09d65d2019-04-16 20:36:34 +03001660
1661 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1662 do_div(ns, this_tsc_khz);
1663
1664 if (likely(tscdeadline > guest_tsc) &&
Sean Christopherson39497d72019-04-17 10:15:32 -07001665 likely(ns > apic->lapic_timer.timer_advance_ns)) {
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001666 expire = ktime_add_ns(now, ns);
Sean Christopherson39497d72019-04-17 10:15:32 -07001667 expire = ktime_sub_ns(expire, ktimer->timer_advance_ns);
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02001668 hrtimer_start(&ktimer->timer, expire, HRTIMER_MODE_ABS_HARD);
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001669 } else
Wanpeng Liae95f562020-04-28 14:23:28 +08001670 apic_timer_expired(apic, false);
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001671
1672 local_irq_restore(flags);
1673}
1674
Peter Shier24647e02018-10-10 15:56:53 -07001675static inline u64 tmict_to_ns(struct kvm_lapic *apic, u32 tmict)
1676{
1677 return (u64)tmict * APIC_BUS_CYCLE_NS * (u64)apic->divide_count;
1678}
1679
Wanpeng Lic301b902017-10-06 07:38:32 -07001680static void update_target_expiration(struct kvm_lapic *apic, uint32_t old_divisor)
1681{
1682 ktime_t now, remaining;
1683 u64 ns_remaining_old, ns_remaining_new;
1684
Peter Shier24647e02018-10-10 15:56:53 -07001685 apic->lapic_timer.period =
1686 tmict_to_ns(apic, kvm_lapic_get_reg(apic, APIC_TMICT));
Wanpeng Lic301b902017-10-06 07:38:32 -07001687 limit_periodic_timer_frequency(apic);
1688
1689 now = ktime_get();
1690 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1691 if (ktime_to_ns(remaining) < 0)
1692 remaining = 0;
1693
1694 ns_remaining_old = ktime_to_ns(remaining);
1695 ns_remaining_new = mul_u64_u32_div(ns_remaining_old,
1696 apic->divide_count, old_divisor);
1697
1698 apic->lapic_timer.tscdeadline +=
1699 nsec_to_cycles(apic->vcpu, ns_remaining_new) -
1700 nsec_to_cycles(apic->vcpu, ns_remaining_old);
1701 apic->lapic_timer.target_expiration = ktime_add_ns(now, ns_remaining_new);
1702}
1703
Peter Shier24647e02018-10-10 15:56:53 -07001704static bool set_target_expiration(struct kvm_lapic *apic, u32 count_reg)
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001705{
1706 ktime_t now;
1707 u64 tscl = rdtsc();
Peter Shier24647e02018-10-10 15:56:53 -07001708 s64 deadline;
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001709
Paolo Bonzini55878592016-10-25 15:23:49 +02001710 now = ktime_get();
Peter Shier24647e02018-10-10 15:56:53 -07001711 apic->lapic_timer.period =
1712 tmict_to_ns(apic, kvm_lapic_get_reg(apic, APIC_TMICT));
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001713
Radim Krčmář5d74a692017-10-06 19:25:54 +02001714 if (!apic->lapic_timer.period) {
1715 apic->lapic_timer.tscdeadline = 0;
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001716 return false;
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001717 }
1718
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001719 limit_periodic_timer_frequency(apic);
Peter Shier24647e02018-10-10 15:56:53 -07001720 deadline = apic->lapic_timer.period;
1721
1722 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
1723 if (unlikely(count_reg != APIC_TMICT)) {
1724 deadline = tmict_to_ns(apic,
1725 kvm_lapic_get_reg(apic, count_reg));
1726 if (unlikely(deadline <= 0))
1727 deadline = apic->lapic_timer.period;
1728 else if (unlikely(deadline > apic->lapic_timer.period)) {
1729 pr_info_ratelimited(
1730 "kvm: vcpu %i: requested lapic timer restore with "
1731 "starting count register %#x=%u (%lld ns) > initial count (%lld ns). "
1732 "Using initial count to start timer.\n",
1733 apic->vcpu->vcpu_id,
1734 count_reg,
1735 kvm_lapic_get_reg(apic, count_reg),
1736 deadline, apic->lapic_timer.period);
1737 kvm_lapic_set_reg(apic, count_reg, 0);
1738 deadline = apic->lapic_timer.period;
1739 }
1740 }
1741 }
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001742
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001743 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
Peter Shier24647e02018-10-10 15:56:53 -07001744 nsec_to_cycles(apic->vcpu, deadline);
1745 apic->lapic_timer.target_expiration = ktime_add_ns(now, deadline);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001746
1747 return true;
1748}
1749
1750static void advance_periodic_target_expiration(struct kvm_lapic *apic)
1751{
David Vrabeld8f2f492018-05-18 16:55:46 +01001752 ktime_t now = ktime_get();
1753 u64 tscl = rdtsc();
1754 ktime_t delta;
1755
1756 /*
1757 * Synchronize both deadlines to the same time source or
1758 * differences in the periods (caused by differences in the
1759 * underlying clocks or numerical approximation errors) will
1760 * cause the two to drift apart over time as the errors
1761 * accumulate.
1762 */
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001763 apic->lapic_timer.target_expiration =
1764 ktime_add_ns(apic->lapic_timer.target_expiration,
1765 apic->lapic_timer.period);
David Vrabeld8f2f492018-05-18 16:55:46 +01001766 delta = ktime_sub(apic->lapic_timer.target_expiration, now);
1767 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1768 nsec_to_cycles(apic->vcpu, delta);
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001769}
1770
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001771static void start_sw_period(struct kvm_lapic *apic)
1772{
1773 if (!apic->lapic_timer.period)
1774 return;
1775
1776 if (ktime_after(ktime_get(),
1777 apic->lapic_timer.target_expiration)) {
Wanpeng Liae95f562020-04-28 14:23:28 +08001778 apic_timer_expired(apic, false);
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001779
1780 if (apic_lvtt_oneshot(apic))
1781 return;
1782
1783 advance_periodic_target_expiration(apic);
1784 }
1785
1786 hrtimer_start(&apic->lapic_timer.timer,
1787 apic->lapic_timer.target_expiration,
He Zheedec6e02020-03-20 15:06:07 +08001788 HRTIMER_MODE_ABS_HARD);
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001789}
1790
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001791bool kvm_lapic_hv_timer_in_use(struct kvm_vcpu *vcpu)
1792{
Wanpeng Li91005302016-08-03 12:04:12 +08001793 if (!lapic_in_kernel(vcpu))
1794 return false;
1795
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001796 return vcpu->arch.apic->lapic_timer.hv_timer_in_use;
1797}
1798EXPORT_SYMBOL_GPL(kvm_lapic_hv_timer_in_use);
1799
Wanpeng Li7e810a32016-10-24 18:23:12 +08001800static void cancel_hv_timer(struct kvm_lapic *apic)
Wanpeng Libd97ad02016-06-30 08:52:49 +08001801{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001802 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001803 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001804 kvm_x86_ops.cancel_hv_timer(apic->vcpu);
Wanpeng Libd97ad02016-06-30 08:52:49 +08001805 apic->lapic_timer.hv_timer_in_use = false;
1806}
1807
Paolo Bonzinia749e242017-06-29 17:14:50 +02001808static bool start_hv_timer(struct kvm_lapic *apic)
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001809{
1810 struct kvm_timer *ktimer = &apic->lapic_timer;
Sean Christophersonf9927982019-04-16 13:32:46 -07001811 struct kvm_vcpu *vcpu = apic->vcpu;
1812 bool expired;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001813
Wanpeng Li1d518c62017-07-25 00:43:15 -07001814 WARN_ON(preemptible());
Paolo Bonzini199a8b82020-05-05 06:45:35 -04001815 if (!kvm_can_use_hv_timer(vcpu))
Paolo Bonzinia749e242017-06-29 17:14:50 +02001816 return false;
1817
Radim Krčmář86bbc1e2017-10-06 19:25:53 +02001818 if (!ktimer->tscdeadline)
1819 return false;
1820
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001821 if (kvm_x86_ops.set_hv_timer(vcpu, ktimer->tscdeadline, &expired))
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001822 return false;
1823
1824 ktimer->hv_timer_in_use = true;
1825 hrtimer_cancel(&ktimer->timer);
1826
1827 /*
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001828 * To simplify handling the periodic timer, leave the hv timer running
1829 * even if the deadline timer has expired, i.e. rely on the resulting
1830 * VM-Exit to recompute the periodic timer's target expiration.
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001831 */
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001832 if (!apic_lvtt_period(apic)) {
1833 /*
1834 * Cancel the hv timer if the sw timer fired while the hv timer
1835 * was being programmed, or if the hv timer itself expired.
1836 */
1837 if (atomic_read(&ktimer->pending)) {
1838 cancel_hv_timer(apic);
Sean Christophersonf9927982019-04-16 13:32:46 -07001839 } else if (expired) {
Wanpeng Liae95f562020-04-28 14:23:28 +08001840 apic_timer_expired(apic, false);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001841 cancel_hv_timer(apic);
1842 }
Wanpeng Lic8533542017-06-29 06:28:09 -07001843 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02001844
Sean Christophersonf9927982019-04-16 13:32:46 -07001845 trace_kvm_hv_timer_state(vcpu->vcpu_id, ktimer->hv_timer_in_use);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001846
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001847 return true;
1848}
1849
Paolo Bonzinia749e242017-06-29 17:14:50 +02001850static void start_sw_timer(struct kvm_lapic *apic)
Wanpeng Li196f20c2016-06-28 14:54:19 +08001851{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001852 struct kvm_timer *ktimer = &apic->lapic_timer;
Wanpeng Li1d518c62017-07-25 00:43:15 -07001853
1854 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001855 if (apic->lapic_timer.hv_timer_in_use)
1856 cancel_hv_timer(apic);
1857 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
1858 return;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001859
Paolo Bonzinia749e242017-06-29 17:14:50 +02001860 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1861 start_sw_period(apic);
1862 else if (apic_lvtt_tscdeadline(apic))
1863 start_sw_tscdeadline(apic);
1864 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, false);
1865}
1866
1867static void restart_apic_timer(struct kvm_lapic *apic)
1868{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001869 preempt_disable();
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001870
1871 if (!apic_lvtt_period(apic) && atomic_read(&apic->lapic_timer.pending))
1872 goto out;
1873
Paolo Bonzinia749e242017-06-29 17:14:50 +02001874 if (!start_hv_timer(apic))
1875 start_sw_timer(apic);
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001876out:
Wanpeng Li1d518c62017-07-25 00:43:15 -07001877 preempt_enable();
Wanpeng Li196f20c2016-06-28 14:54:19 +08001878}
1879
Eddie Dong97222cc2007-09-12 10:58:04 +03001880void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
1881{
1882 struct kvm_lapic *apic = vcpu->arch.apic;
1883
Wanpeng Li1d518c62017-07-25 00:43:15 -07001884 preempt_disable();
1885 /* If the preempt notifier has already run, it also called apic_timer_expired */
1886 if (!apic->lapic_timer.hv_timer_in_use)
1887 goto out;
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07001888 WARN_ON(rcuwait_active(&vcpu->wait));
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001889 cancel_hv_timer(apic);
Wanpeng Liae95f562020-04-28 14:23:28 +08001890 apic_timer_expired(apic, false);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001891
1892 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1893 advance_periodic_target_expiration(apic);
Paolo Bonzinia749e242017-06-29 17:14:50 +02001894 restart_apic_timer(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001895 }
Wanpeng Li1d518c62017-07-25 00:43:15 -07001896out:
1897 preempt_enable();
Eddie Dong97222cc2007-09-12 10:58:04 +03001898}
1899EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
1900
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001901void kvm_lapic_switch_to_hv_timer(struct kvm_vcpu *vcpu)
1902{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001903 restart_apic_timer(vcpu->arch.apic);
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001904}
1905EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_hv_timer);
1906
1907void kvm_lapic_switch_to_sw_timer(struct kvm_vcpu *vcpu)
1908{
1909 struct kvm_lapic *apic = vcpu->arch.apic;
1910
Wanpeng Li1d518c62017-07-25 00:43:15 -07001911 preempt_disable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001912 /* Possibly the TSC deadline timer is not enabled yet */
Paolo Bonzinia749e242017-06-29 17:14:50 +02001913 if (apic->lapic_timer.hv_timer_in_use)
1914 start_sw_timer(apic);
Wanpeng Li1d518c62017-07-25 00:43:15 -07001915 preempt_enable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001916}
1917EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_sw_timer);
1918
Paolo Bonzinia749e242017-06-29 17:14:50 +02001919void kvm_lapic_restart_hv_timer(struct kvm_vcpu *vcpu)
1920{
1921 struct kvm_lapic *apic = vcpu->arch.apic;
1922
1923 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1924 restart_apic_timer(apic);
1925}
1926
Peter Shier24647e02018-10-10 15:56:53 -07001927static void __start_apic_timer(struct kvm_lapic *apic, u32 count_reg)
Eddie Dong97222cc2007-09-12 10:58:04 +03001928{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001929 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +02001930
Paolo Bonzinia749e242017-06-29 17:14:50 +02001931 if ((apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
Peter Shier24647e02018-10-10 15:56:53 -07001932 && !set_target_expiration(apic, count_reg))
Paolo Bonzinia749e242017-06-29 17:14:50 +02001933 return;
1934
1935 restart_apic_timer(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001936}
1937
Peter Shier24647e02018-10-10 15:56:53 -07001938static void start_apic_timer(struct kvm_lapic *apic)
1939{
1940 __start_apic_timer(apic, APIC_TMICT);
1941}
1942
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001943static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1944{
Radim Krčmář59fd1322015-06-30 22:19:16 +02001945 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001946
Radim Krčmář59fd1322015-06-30 22:19:16 +02001947 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
1948 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
1949 if (lvt0_in_nmi_mode) {
Radim Krčmář42720132015-07-01 15:31:49 +02001950 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
Radim Krčmář59fd1322015-06-30 22:19:16 +02001951 } else
1952 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1953 }
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001954}
1955
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001956int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03001957{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001958 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001959
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001960 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001961
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001962 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001963 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001964 if (!apic_x2apic_mode(apic))
Radim Krčmářa92e2542016-07-12 22:09:22 +02001965 kvm_apic_set_xapic_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001966 else
1967 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001968 break;
1969
1970 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02001971 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03001972 apic_set_tpr(apic, val & 0xff);
1973 break;
1974
1975 case APIC_EOI:
1976 apic_set_eoi(apic);
1977 break;
1978
1979 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001980 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001981 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001982 else
1983 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001984 break;
1985
1986 case APIC_DFR:
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001987 if (!apic_x2apic_mode(apic)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001988 kvm_lapic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
Paolo Bonzini44d52712020-06-22 16:37:42 +02001989 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001990 } else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001991 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001992 break;
1993
Gleb Natapovfc61b802009-07-05 17:39:35 +03001994 case APIC_SPIV: {
1995 u32 mask = 0x3ff;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001996 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03001997 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001998 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03001999 if (!(val & APIC_SPIV_APIC_ENABLED)) {
2000 int i;
2001 u32 lvt_val;
2002
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002003 for (i = 0; i < KVM_APIC_LVT_NUM; i++) {
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002004 lvt_val = kvm_lapic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03002005 APIC_LVTT + 0x10 * i);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002006 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i,
Eddie Dong97222cc2007-09-12 10:58:04 +03002007 lvt_val | APIC_LVT_MASKED);
2008 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002009 apic_update_lvtt(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002010 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002011
2012 }
2013 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03002014 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002015 case APIC_ICR:
2016 /* No delay here, so we always clear the pending bit */
Wanpeng Li2b0911d2019-09-05 14:26:27 +08002017 val &= ~(1 << 12);
Wanpeng Lid5361672020-03-26 10:20:02 +08002018 kvm_apic_send_ipi(apic, val, kvm_lapic_get_reg(apic, APIC_ICR2));
Wanpeng Li2b0911d2019-09-05 14:26:27 +08002019 kvm_lapic_set_reg(apic, APIC_ICR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002020 break;
2021
2022 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002023 if (!apic_x2apic_mode(apic))
2024 val &= 0xff000000;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002025 kvm_lapic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002026 break;
2027
Jan Kiszka23930f92008-09-26 09:30:52 +02002028 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02002029 apic_manage_nmi_watchdog(apic, val);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06002030 /* fall through */
Eddie Dong97222cc2007-09-12 10:58:04 +03002031 case APIC_LVTTHMR:
2032 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03002033 case APIC_LVT1:
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002034 case APIC_LVTERR: {
Eddie Dong97222cc2007-09-12 10:58:04 +03002035 /* TODO: Check vector */
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002036 size_t size;
2037 u32 index;
2038
Gleb Natapovc48f1492012-08-05 15:58:33 +03002039 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03002040 val |= APIC_LVT_MASKED;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002041 size = ARRAY_SIZE(apic_lvt_mask);
2042 index = array_index_nospec(
2043 (reg - APIC_LVTT) >> 4, size);
2044 val &= apic_lvt_mask[index];
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002045 kvm_lapic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002046 break;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08002047 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002048
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002049 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03002050 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002051 val |= APIC_LVT_MASKED;
2052 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002053 kvm_lapic_set_reg(apic, APIC_LVTT, val);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002054 apic_update_lvtt(apic);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002055 break;
2056
Eddie Dong97222cc2007-09-12 10:58:04 +03002057 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002058 if (apic_lvtt_tscdeadline(apic))
2059 break;
2060
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002061 hrtimer_cancel(&apic->lapic_timer.timer);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002062 kvm_lapic_set_reg(apic, APIC_TMICT, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002063 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002064 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002065
Wanpeng Lic301b902017-10-06 07:38:32 -07002066 case APIC_TDCR: {
2067 uint32_t old_divisor = apic->divide_count;
2068
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002069 kvm_lapic_set_reg(apic, APIC_TDCR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002070 update_divide_count(apic);
Wanpeng Lic301b902017-10-06 07:38:32 -07002071 if (apic->divide_count != old_divisor &&
2072 apic->lapic_timer.period) {
2073 hrtimer_cancel(&apic->lapic_timer.timer);
2074 update_target_expiration(apic, old_divisor);
2075 restart_apic_timer(apic);
2076 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002077 break;
Wanpeng Lic301b902017-10-06 07:38:32 -07002078 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002079 case APIC_ESR:
Yi Wang0d888002019-07-06 01:08:48 +08002080 if (apic_x2apic_mode(apic) && val != 0)
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002081 ret = 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002082 break;
2083
2084 case APIC_SELF_IPI:
2085 if (apic_x2apic_mode(apic)) {
Haiwei Li9c2475f2020-07-21 16:23:54 +08002086 kvm_lapic_reg_write(apic, APIC_ICR,
2087 APIC_DEST_SELF | (val & APIC_VECTOR_MASK));
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002088 } else
2089 ret = 1;
2090 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002091 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002092 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002093 break;
2094 }
Yi Wang0d888002019-07-06 01:08:48 +08002095
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002096 kvm_recalculate_apic_map(apic->vcpu->kvm);
2097
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002098 return ret;
2099}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002100EXPORT_SYMBOL_GPL(kvm_lapic_reg_write);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002101
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002102static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002103 gpa_t address, int len, const void *data)
2104{
2105 struct kvm_lapic *apic = to_lapic(this);
2106 unsigned int offset = address - apic->base_address;
2107 u32 val;
2108
2109 if (!apic_mmio_in_range(apic, address))
2110 return -EOPNOTSUPP;
2111
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02002112 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
2113 if (!kvm_check_has_quirk(vcpu->kvm,
2114 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
2115 return -EOPNOTSUPP;
2116
2117 return 0;
2118 }
2119
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002120 /*
2121 * APIC register must be aligned on 128-bits boundary.
2122 * 32/64/128 bits registers must be accessed thru 32 bits.
2123 * Refer SDM 8.4.1
2124 */
Yi Wang0d888002019-07-06 01:08:48 +08002125 if (len != 4 || (offset & 0xf))
Sheng Yang756975b2009-07-06 11:05:39 +08002126 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002127
2128 val = *(u32*)data;
2129
Yi Wang0d888002019-07-06 01:08:48 +08002130 kvm_lapic_reg_write(apic, offset & 0xff0, val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002131
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002132 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002133}
2134
Kevin Tian58fbbf22011-08-30 13:56:17 +03002135void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
2136{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002137 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
Kevin Tian58fbbf22011-08-30 13:56:17 +03002138}
2139EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
2140
Yang Zhang83d4c282013-01-25 10:18:49 +08002141/* emulate APIC access in a trap manner */
2142void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
2143{
2144 u32 val = 0;
2145
2146 /* hw has done the conditional check and inst decode */
2147 offset &= 0xff0;
2148
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002149 kvm_lapic_reg_read(vcpu->arch.apic, offset, 4, &val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002150
2151 /* TODO: optimize to just emulate side effect w/o one more write */
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002152 kvm_lapic_reg_write(vcpu->arch.apic, offset, val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002153}
2154EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
2155
Rusty Russelld5894442007-10-08 10:48:30 +10002156void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03002157{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002158 struct kvm_lapic *apic = vcpu->arch.apic;
2159
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002160 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002161 return;
2162
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002163 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002164
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002165 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
2166 static_key_slow_dec_deferred(&apic_hw_disabled);
2167
Radim Krčmáře4627552014-10-30 15:06:45 +01002168 if (!apic->sw_enabled)
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002169 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03002170
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002171 if (apic->regs)
2172 free_page((unsigned long)apic->regs);
2173
2174 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002175}
2176
2177/*
2178 *----------------------------------------------------------------------
2179 * LAPIC interface
2180 *----------------------------------------------------------------------
2181 */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002182u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
2183{
2184 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002185
Wanpeng Lia10388e2016-10-24 18:23:10 +08002186 if (!lapic_in_kernel(vcpu) ||
2187 !apic_lvtt_tscdeadline(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002188 return 0;
2189
2190 return apic->lapic_timer.tscdeadline;
2191}
2192
2193void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
2194{
2195 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002196
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002197 if (!lapic_in_kernel(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03002198 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002199 return;
2200
2201 hrtimer_cancel(&apic->lapic_timer.timer);
2202 apic->lapic_timer.tscdeadline = data;
2203 start_apic_timer(apic);
2204}
2205
Eddie Dong97222cc2007-09-12 10:58:04 +03002206void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
2207{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002208 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002209
Avi Kivityb93463a2007-10-25 16:52:32 +02002210 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002211 | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03002212}
2213
2214u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
2215{
Eddie Dong97222cc2007-09-12 10:58:04 +03002216 u64 tpr;
2217
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002218 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03002219
2220 return (tpr & 0xf0) >> 4;
2221}
2222
2223void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
2224{
Yang Zhang8d146952013-01-25 10:18:50 +08002225 u64 old_value = vcpu->arch.apic_base;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002226 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002227
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002228 if (!apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002229 value |= MSR_IA32_APICBASE_BSP;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002230
Jan Kiszkae66d2ae2013-12-29 02:29:30 +01002231 vcpu->arch.apic_base = value;
2232
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002233 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08002234 kvm_update_cpuid_runtime(vcpu);
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002235
2236 if (!apic)
2237 return;
2238
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002239 /* update jump label if enable bit changes */
Andrew Jones0dce7cd2014-01-15 13:39:59 +01002240 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
Radim Krčmář49bd29b2016-07-12 22:09:23 +02002241 if (value & MSR_IA32_APICBASE_ENABLE) {
2242 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002243 static_key_slow_dec_deferred(&apic_hw_disabled);
Wanpeng Li187ca842016-08-03 12:04:13 +08002244 } else {
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002245 static_key_slow_inc(&apic_hw_disabled.key);
Paolo Bonzini44d52712020-06-22 16:37:42 +02002246 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Wanpeng Li187ca842016-08-03 12:04:13 +08002247 }
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002248 }
2249
Jim Mattson8d860bb2018-05-09 16:56:05 -04002250 if (((old_value ^ value) & X2APIC_ENABLE) && (value & X2APIC_ENABLE))
2251 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
2252
2253 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE))
Sean Christophersonafaf0b22020-03-21 13:26:00 -07002254 kvm_x86_ops.set_virtual_apic_mode(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08002255
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002256 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03002257 MSR_IA32_APICBASE_BASE;
2258
Nadav Amitdb324fe2014-11-02 11:54:59 +02002259 if ((value & MSR_IA32_APICBASE_ENABLE) &&
2260 apic->base_address != APIC_DEFAULT_PHYS_BASE)
2261 pr_warn_once("APIC base relocation is unsupported by KVM");
Eddie Dong97222cc2007-09-12 10:58:04 +03002262}
2263
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002264void kvm_apic_update_apicv(struct kvm_vcpu *vcpu)
2265{
2266 struct kvm_lapic *apic = vcpu->arch.apic;
2267
2268 if (vcpu->arch.apicv_active) {
2269 /* irr_pending is always true when apicv is activated. */
2270 apic->irr_pending = true;
2271 apic->isr_count = 1;
2272 } else {
2273 apic->irr_pending = (apic_search_irr(apic) != -1);
2274 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
2275 }
2276}
2277EXPORT_SYMBOL_GPL(kvm_apic_update_apicv);
2278
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002279void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
Eddie Dong97222cc2007-09-12 10:58:04 +03002280{
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002281 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002282 int i;
2283
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002284 if (!apic)
2285 return;
Eddie Dong97222cc2007-09-12 10:58:04 +03002286
Eddie Dong97222cc2007-09-12 10:58:04 +03002287 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002288 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002289
Radim Krčmář4d8e7722016-07-12 22:09:25 +02002290 if (!init_event) {
2291 kvm_lapic_set_base(vcpu, APIC_DEFAULT_PHYS_BASE |
2292 MSR_IA32_APICBASE_ENABLE);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002293 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Radim Krčmář4d8e7722016-07-12 22:09:25 +02002294 }
Gleb Natapovfc61b802009-07-05 17:39:35 +03002295 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03002296
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002297 for (i = 0; i < KVM_APIC_LVT_NUM; i++)
2298 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002299 apic_update_lvtt(apic);
Jan H. Schönherr52b54192017-05-20 13:24:32 +02002300 if (kvm_vcpu_is_reset_bsp(vcpu) &&
2301 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002302 kvm_lapic_set_reg(apic, APIC_LVT0,
Nadav Amit90de4a12015-04-13 01:53:41 +03002303 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002304 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong97222cc2007-09-12 10:58:04 +03002305
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002306 kvm_lapic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002307 apic_set_spiv(apic, 0xff);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002308 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
Radim Krčmářc028dd62015-05-22 19:22:10 +02002309 if (!apic_x2apic_mode(apic))
2310 kvm_apic_set_ldr(apic, 0);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002311 kvm_lapic_set_reg(apic, APIC_ESR, 0);
2312 kvm_lapic_set_reg(apic, APIC_ICR, 0);
2313 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
2314 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
2315 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002316 for (i = 0; i < 8; i++) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002317 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
2318 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
2319 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002320 }
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002321 kvm_apic_update_apicv(vcpu);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002322 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02002323 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002324 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002325 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03002326 kvm_lapic_set_base(vcpu,
2327 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002328 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002329 apic_update_ppr(apic);
Jan H. Schönherr4191db22017-10-25 16:43:27 +02002330 if (vcpu->arch.apicv_active) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07002331 kvm_x86_ops.apicv_post_state_restore(vcpu);
2332 kvm_x86_ops.hwapic_irr_update(vcpu, -1);
2333 kvm_x86_ops.hwapic_isr_update(vcpu, -1);
Jan H. Schönherr4191db22017-10-25 16:43:27 +02002334 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002335
Gleb Natapove1035712009-03-05 16:34:59 +02002336 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03002337 vcpu->arch.apic_attention = 0;
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002338
2339 kvm_recalculate_apic_map(vcpu->kvm);
Eddie Dong97222cc2007-09-12 10:58:04 +03002340}
2341
Eddie Dong97222cc2007-09-12 10:58:04 +03002342/*
2343 *----------------------------------------------------------------------
2344 * timer interface
2345 *----------------------------------------------------------------------
2346 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03002347
Avi Kivity2a6eac92012-07-26 18:01:51 +03002348static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002349{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002350 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002351}
2352
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002353int apic_has_pending_timer(struct kvm_vcpu *vcpu)
2354{
Gleb Natapov54e98182012-08-05 15:58:32 +03002355 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002356
Paolo Bonzini1e3161b42016-01-08 13:41:16 +01002357 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
Gleb Natapov54e98182012-08-05 15:58:32 +03002358 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002359
2360 return 0;
2361}
2362
Avi Kivity89342082011-11-10 14:57:21 +02002363int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03002364{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002365 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02002366 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002367
Gleb Natapovc48f1492012-08-05 15:58:33 +03002368 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02002369 vector = reg & APIC_VECTOR_MASK;
2370 mode = reg & APIC_MODE_MASK;
2371 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
Yang Zhangb4f22252013-04-11 19:21:37 +08002372 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
2373 NULL);
Jan Kiszka23930f92008-09-26 09:30:52 +02002374 }
2375 return 0;
2376}
2377
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002378void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02002379{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002380 struct kvm_lapic *apic = vcpu->arch.apic;
2381
2382 if (apic)
2383 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002384}
2385
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002386static const struct kvm_io_device_ops apic_mmio_ops = {
2387 .read = apic_mmio_read,
2388 .write = apic_mmio_write,
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002389};
2390
Avi Kivitye9d90d42012-07-26 18:01:50 +03002391static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
2392{
2393 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03002394 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002395
Wanpeng Liae95f562020-04-28 14:23:28 +08002396 apic_timer_expired(apic, true);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002397
Avi Kivity2a6eac92012-07-26 18:01:51 +03002398 if (lapic_is_periodic(apic)) {
Wanpeng Li8003c9a2016-10-24 18:23:13 +08002399 advance_periodic_target_expiration(apic);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002400 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
2401 return HRTIMER_RESTART;
2402 } else
2403 return HRTIMER_NORESTART;
2404}
2405
Sean Christophersonc3941d92019-04-17 10:15:33 -07002406int kvm_create_lapic(struct kvm_vcpu *vcpu, int timer_advance_ns)
Eddie Dong97222cc2007-09-12 10:58:04 +03002407{
2408 struct kvm_lapic *apic;
2409
2410 ASSERT(vcpu != NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03002411
Ben Gardon254272c2019-02-11 11:02:50 -08002412 apic = kzalloc(sizeof(*apic), GFP_KERNEL_ACCOUNT);
Eddie Dong97222cc2007-09-12 10:58:04 +03002413 if (!apic)
2414 goto nomem;
2415
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002416 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002417
Ben Gardon254272c2019-02-11 11:02:50 -08002418 apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09002419 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03002420 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
2421 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10002422 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002423 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002424 apic->vcpu = vcpu;
2425
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002426 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002427 HRTIMER_MODE_ABS_HARD);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002428 apic->lapic_timer.timer.function = apic_timer_fn;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002429 if (timer_advance_ns == -1) {
Wanpeng Lia0f00372019-09-26 08:54:03 +08002430 apic->lapic_timer.timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002431 lapic_timer_advance_dynamic = true;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002432 } else {
2433 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002434 lapic_timer_advance_dynamic = false;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002435 }
2436
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002437 /*
2438 * APIC is created enabled. This will prevent kvm_lapic_set_base from
Wei Yangee171d22019-03-31 19:17:22 -07002439 * thinking that APIC state has changed.
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002440 */
2441 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002442 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002443 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03002444
2445 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10002446nomem_free_apic:
2447 kfree(apic);
Saar Amara251fb902019-05-06 11:29:16 +03002448 vcpu->arch.apic = NULL;
Eddie Dong97222cc2007-09-12 10:58:04 +03002449nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03002450 return -ENOMEM;
2451}
Eddie Dong97222cc2007-09-12 10:58:04 +03002452
2453int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
2454{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002455 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002456 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002457
Wanpeng Libb34e692019-07-02 17:25:02 +08002458 if (!kvm_apic_hw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03002459 return -1;
2460
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002461 __apic_update_ppr(apic, &ppr);
2462 return apic_has_interrupt_for_ppr(apic, ppr);
Eddie Dong97222cc2007-09-12 10:58:04 +03002463}
2464
Qing He40487c62007-09-17 14:47:13 +08002465int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
2466{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002467 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08002468
Gleb Natapovc48f1492012-08-05 15:58:33 +03002469 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Miaohe Lin3ce4dc12020-01-18 10:50:37 +08002470 return 1;
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04002471 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
2472 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
Miaohe Lin3ce4dc12020-01-18 10:50:37 +08002473 return 1;
2474 return 0;
Qing He40487c62007-09-17 14:47:13 +08002475}
2476
Eddie Dong1b9778d2007-09-03 16:56:58 +03002477void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
2478{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002479 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002480
Gleb Natapov54e98182012-08-05 15:58:32 +03002481 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002482 kvm_apic_inject_pending_timer_irqs(apic);
Jan Kiszkaf1ed0452013-04-28 14:00:41 +02002483 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002484 }
2485}
2486
Eddie Dong97222cc2007-09-12 10:58:04 +03002487int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
2488{
2489 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002490 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002491 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002492
2493 if (vector == -1)
2494 return -1;
2495
Wanpeng Li56cc2402014-08-05 12:42:24 +08002496 /*
2497 * We get here even with APIC virtualization enabled, if doing
2498 * nested virtualization and L1 runs with the "acknowledge interrupt
2499 * on exit" mode. Then we cannot inject the interrupt via RVI,
2500 * because the process would deliver it through the IDT.
2501 */
2502
Eddie Dong97222cc2007-09-12 10:58:04 +03002503 apic_clear_irr(vector, apic);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002504 if (test_bit(vector, vcpu_to_synic(vcpu)->auto_eoi_bitmap)) {
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002505 /*
2506 * For auto-EOI interrupts, there might be another pending
2507 * interrupt above PPR, so check whether to raise another
2508 * KVM_REQ_EVENT.
2509 */
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002510 apic_update_ppr(apic);
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002511 } else {
2512 /*
2513 * For normal interrupts, PPR has been raised and there cannot
2514 * be a higher-priority pending interrupt---except if there was
2515 * a concurrent interrupt injection, but that would have
2516 * triggered KVM_REQ_EVENT already.
2517 */
2518 apic_set_isr(vector, apic);
2519 __apic_update_ppr(apic, &ppr);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002520 }
2521
Eddie Dong97222cc2007-09-12 10:58:04 +03002522 return vector;
2523}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002524
Radim Krčmářa92e2542016-07-12 22:09:22 +02002525static int kvm_apic_state_fixup(struct kvm_vcpu *vcpu,
2526 struct kvm_lapic_state *s, bool set)
2527{
2528 if (apic_x2apic_mode(vcpu->arch.apic)) {
2529 u32 *id = (u32 *)(s->regs + APIC_ID);
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002530 u32 *ldr = (u32 *)(s->regs + APIC_LDR);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002531
Radim Krčmář371313132016-07-12 22:09:27 +02002532 if (vcpu->kvm->arch.x2apic_format) {
2533 if (*id != vcpu->vcpu_id)
2534 return -EINVAL;
2535 } else {
2536 if (set)
2537 *id >>= 24;
2538 else
2539 *id <<= 24;
2540 }
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002541
2542 /* In x2APIC mode, the LDR is fixed and based on the id */
2543 if (set)
2544 *ldr = kvm_apic_calc_x2apic_ldr(*id);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002545 }
2546
2547 return 0;
2548}
2549
2550int kvm_apic_get_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2551{
2552 memcpy(s->regs, vcpu->arch.apic->regs, sizeof(*s));
Peter Shier24647e02018-10-10 15:56:53 -07002553
2554 /*
2555 * Get calculated timer current count for remaining timer period (if
2556 * any) and store it in the returned register set.
2557 */
2558 __kvm_lapic_set_reg(s->regs, APIC_TMCCT,
2559 __apic_read(vcpu->arch.apic, APIC_TMCCT));
2560
Radim Krčmářa92e2542016-07-12 22:09:22 +02002561 return kvm_apic_state_fixup(vcpu, s, false);
2562}
2563
2564int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002565{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002566 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002567 int r;
2568
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03002569 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03002570 /* set SPIV separately to get count of SW disabled APICs right */
2571 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002572
2573 r = kvm_apic_state_fixup(vcpu, s, true);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002574 if (r) {
2575 kvm_recalculate_apic_map(vcpu->kvm);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002576 return r;
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002577 }
Jordan Borgner0e96f312018-10-28 12:58:28 +00002578 memcpy(vcpu->arch.apic->regs, s->regs, sizeof(*s));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002579
Paolo Bonzini44d52712020-06-22 16:37:42 +02002580 atomic_set_release(&apic->vcpu->kvm->arch.apic_map_dirty, DIRTY);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002581 kvm_recalculate_apic_map(vcpu->kvm);
Gleb Natapovfc61b802009-07-05 17:39:35 +03002582 kvm_apic_set_version(vcpu);
2583
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002584 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002585 hrtimer_cancel(&apic->lapic_timer.timer);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002586 apic_update_lvtt(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002587 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002588 update_divide_count(apic);
Peter Shier24647e02018-10-10 15:56:53 -07002589 __start_apic_timer(apic, APIC_TMCCT);
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002590 kvm_apic_update_apicv(vcpu);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002591 apic->highest_isr_cache = -1;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002592 if (vcpu->arch.apicv_active) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07002593 kvm_x86_ops.apicv_post_state_restore(vcpu);
2594 kvm_x86_ops.hwapic_irr_update(vcpu,
Wei Wang4114c272014-11-05 10:53:43 +08002595 apic_find_highest_irr(apic));
Sean Christophersonafaf0b22020-03-21 13:26:00 -07002596 kvm_x86_ops.hwapic_isr_update(vcpu,
Tiejun Chenb4eef9b2014-12-22 10:32:57 +01002597 apic_find_highest_isr(apic));
Andrey Smetanind62caab2015-11-10 15:36:33 +03002598 }
Avi Kivity3842d132010-07-27 12:30:24 +03002599 kvm_make_request(KVM_REQ_EVENT, vcpu);
Steve Rutherford49df6392015-07-29 23:21:40 -07002600 if (ioapic_in_kernel(vcpu->kvm))
2601 kvm_rtc_eoi_tracking_restore_one(vcpu);
Radim Krčmář0669a512015-10-30 15:48:20 +01002602
2603 vcpu->arch.apic_arb_prio = 0;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002604
2605 return 0;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002606}
Eddie Donga3d7f852007-09-03 16:15:12 +03002607
Avi Kivity2f52d582008-01-16 12:49:30 +02002608void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03002609{
Eddie Donga3d7f852007-09-03 16:15:12 +03002610 struct hrtimer *timer;
2611
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002612 if (!lapic_in_kernel(vcpu) ||
2613 kvm_can_post_timer_interrupt(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03002614 return;
2615
Gleb Natapov54e98182012-08-05 15:58:32 +03002616 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03002617 if (hrtimer_cancel(timer))
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002618 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_HARD);
Eddie Donga3d7f852007-09-03 16:15:12 +03002619}
Avi Kivityb93463a2007-10-25 16:52:32 +02002620
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002621/*
2622 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
2623 *
2624 * Detect whether guest triggered PV EOI since the
2625 * last entry. If yes, set EOI on guests's behalf.
2626 * Clear PV EOI in guest memory in any case.
2627 */
2628static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
2629 struct kvm_lapic *apic)
2630{
2631 bool pending;
2632 int vector;
2633 /*
2634 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
2635 * and KVM_PV_EOI_ENABLED in guest memory as follows:
2636 *
2637 * KVM_APIC_PV_EOI_PENDING is unset:
2638 * -> host disabled PV EOI.
2639 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
2640 * -> host enabled PV EOI, guest did not execute EOI yet.
2641 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
2642 * -> host enabled PV EOI, guest executed EOI.
2643 */
2644 BUG_ON(!pv_eoi_enabled(vcpu));
2645 pending = pv_eoi_get_pending(vcpu);
2646 /*
2647 * Clear pending bit in any case: it will be set again on vmentry.
2648 * While this might not be ideal from performance point of view,
2649 * this makes sure pv eoi is only enabled when we know it's safe.
2650 */
2651 pv_eoi_clr_pending(vcpu);
2652 if (pending)
2653 return;
2654 vector = apic_set_eoi(apic);
2655 trace_kvm_pv_eoi(apic, vector);
2656}
2657
Avi Kivityb93463a2007-10-25 16:52:32 +02002658void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
2659{
2660 u32 data;
Avi Kivityb93463a2007-10-25 16:52:32 +02002661
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002662 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
2663 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
2664
Gleb Natapov41383772012-04-19 14:06:29 +03002665 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002666 return;
2667
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002668 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2669 sizeof(u32)))
Nicholas Krause603242a2015-08-05 10:44:40 -04002670 return;
Avi Kivityb93463a2007-10-25 16:52:32 +02002671
2672 apic_set_tpr(vcpu->arch.apic, data & 0xff);
2673}
2674
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002675/*
2676 * apic_sync_pv_eoi_to_guest - called before vmentry
2677 *
2678 * Detect whether it's safe to enable PV EOI and
2679 * if yes do so.
2680 */
2681static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
2682 struct kvm_lapic *apic)
2683{
2684 if (!pv_eoi_enabled(vcpu) ||
2685 /* IRR set or many bits in ISR: could be nested. */
2686 apic->irr_pending ||
2687 /* Cache not set: could be safe but we don't bother. */
2688 apic->highest_isr_cache == -1 ||
2689 /* Need EOI to update ioapic. */
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02002690 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002691 /*
2692 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
2693 * so we need not do anything here.
2694 */
2695 return;
2696 }
2697
2698 pv_eoi_set_pending(apic->vcpu);
2699}
2700
Avi Kivityb93463a2007-10-25 16:52:32 +02002701void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
2702{
2703 u32 data, tpr;
2704 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002705 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02002706
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002707 apic_sync_pv_eoi_to_guest(vcpu, apic);
2708
Gleb Natapov41383772012-04-19 14:06:29 +03002709 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002710 return;
2711
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002712 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02002713 max_irr = apic_find_highest_irr(apic);
2714 if (max_irr < 0)
2715 max_irr = 0;
2716 max_isr = apic_find_highest_isr(apic);
2717 if (max_isr < 0)
2718 max_isr = 0;
2719 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
2720
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002721 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2722 sizeof(u32));
Avi Kivityb93463a2007-10-25 16:52:32 +02002723}
2724
Andy Honigfda4e2e2013-11-20 10:23:22 -08002725int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
Avi Kivityb93463a2007-10-25 16:52:32 +02002726{
Andy Honigfda4e2e2013-11-20 10:23:22 -08002727 if (vapic_addr) {
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002728 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andy Honigfda4e2e2013-11-20 10:23:22 -08002729 &vcpu->arch.apic->vapic_cache,
2730 vapic_addr, sizeof(u32)))
2731 return -EINVAL;
Gleb Natapov41383772012-04-19 14:06:29 +03002732 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002733 } else {
Gleb Natapov41383772012-04-19 14:06:29 +03002734 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002735 }
2736
2737 vcpu->arch.apic->vapic_addr = vapic_addr;
2738 return 0;
Avi Kivityb93463a2007-10-25 16:52:32 +02002739}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002740
2741int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2742{
2743 struct kvm_lapic *apic = vcpu->arch.apic;
2744 u32 reg = (msr - APIC_BASE_MSR) << 4;
2745
Paolo Bonzini35754c92015-07-29 12:05:37 +02002746 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002747 return 1;
2748
Nadav Amitc69d3d92014-11-26 17:56:25 +02002749 if (reg == APIC_ICR2)
2750 return 1;
2751
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002752 /* if this is ICR write vector before command */
Radim Krčmářdecdc282014-11-26 17:07:05 +01002753 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002754 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2755 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002756}
2757
2758int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
2759{
2760 struct kvm_lapic *apic = vcpu->arch.apic;
2761 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
2762
Paolo Bonzini35754c92015-07-29 12:05:37 +02002763 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002764 return 1;
2765
Yi Wang0d888002019-07-06 01:08:48 +08002766 if (reg == APIC_DFR || reg == APIC_ICR2)
Nadav Amitc69d3d92014-11-26 17:56:25 +02002767 return 1;
Nadav Amitc69d3d92014-11-26 17:56:25 +02002768
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002769 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002770 return 1;
Radim Krčmářdecdc282014-11-26 17:07:05 +01002771 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002772 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002773
2774 *data = (((u64)high) << 32) | low;
2775
2776 return 0;
2777}
Gleb Natapov10388a02010-01-17 15:51:23 +02002778
2779int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
2780{
2781 struct kvm_lapic *apic = vcpu->arch.apic;
2782
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002783 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002784 return 1;
2785
2786 /* if this is ICR write vector before command */
2787 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002788 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2789 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov10388a02010-01-17 15:51:23 +02002790}
2791
2792int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
2793{
2794 struct kvm_lapic *apic = vcpu->arch.apic;
2795 u32 low, high = 0;
2796
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002797 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002798 return 1;
2799
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002800 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov10388a02010-01-17 15:51:23 +02002801 return 1;
2802 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002803 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov10388a02010-01-17 15:51:23 +02002804
2805 *data = (((u64)high) << 32) | low;
2806
2807 return 0;
2808}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002809
Ladi Prosek72bbf932018-10-16 18:49:59 +02002810int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002811{
2812 u64 addr = data & ~KVM_MSR_ENABLED;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002813 struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
2814 unsigned long new_len;
2815
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002816 if (!IS_ALIGNED(addr, 4))
2817 return 1;
2818
2819 vcpu->arch.pv_eoi.msr_val = data;
2820 if (!pv_eoi_enabled(vcpu))
2821 return 0;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002822
2823 if (addr == ghc->gpa && len <= ghc->len)
2824 new_len = ghc->len;
2825 else
2826 new_len = len;
2827
2828 return kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002829}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002830
Jan Kiszka66450a22013-03-13 12:42:34 +01002831void kvm_apic_accept_events(struct kvm_vcpu *vcpu)
2832{
2833 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01002834 u8 sipi_vector;
Gleb Natapov299018f2013-06-03 11:30:02 +03002835 unsigned long pe;
Jan Kiszka66450a22013-03-13 12:42:34 +01002836
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002837 if (!lapic_in_kernel(vcpu) || !apic->pending_events)
Jan Kiszka66450a22013-03-13 12:42:34 +01002838 return;
2839
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002840 /*
Liran Alon4b9852f2019-08-26 13:24:49 +03002841 * INITs are latched while CPU is in specific states
2842 * (SMM, VMX non-root mode, SVM with GIF=0).
2843 * Because a CPU cannot be in these states immediately
2844 * after it has processed an INIT signal (and thus in
2845 * KVM_MP_STATE_INIT_RECEIVED state), just eat SIPIs
2846 * and leave the INIT pending.
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002847 */
Liran Alon27cbe7d2019-11-11 11:16:40 +02002848 if (kvm_vcpu_latch_init(vcpu)) {
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002849 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
2850 if (test_bit(KVM_APIC_SIPI, &apic->pending_events))
2851 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
2852 return;
2853 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002854
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002855 pe = xchg(&apic->pending_events, 0);
Gleb Natapov299018f2013-06-03 11:30:02 +03002856 if (test_bit(KVM_APIC_INIT, &pe)) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002857 kvm_vcpu_reset(vcpu, true);
Jan Kiszka66450a22013-03-13 12:42:34 +01002858 if (kvm_vcpu_is_bsp(apic->vcpu))
2859 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2860 else
2861 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
2862 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002863 if (test_bit(KVM_APIC_SIPI, &pe) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01002864 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
2865 /* evaluate pending_events before reading the vector */
2866 smp_rmb();
2867 sipi_vector = apic->sipi_vector;
Jan Kiszka66450a22013-03-13 12:42:34 +01002868 kvm_vcpu_deliver_sipi_vector(vcpu, sipi_vector);
2869 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2870 }
2871}
2872
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002873void kvm_lapic_init(void)
2874{
2875 /* do not patch jump label more than once per second */
2876 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002877 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002878}
David Matlackcef84c32016-12-16 14:30:36 -08002879
2880void kvm_lapic_exit(void)
2881{
2882 static_key_deferred_flush(&apic_hw_disabled);
2883 static_key_deferred_flush(&apic_sw_disabled);
2884}