blob: b754e49adbc598b50e9e3411dd95291b0fb7986f [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"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030039#include "trace.h"
Gleb Natapovfc61b802009-07-05 17:39:35 +030040#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020041#include "cpuid.h"
Andrey Smetanin5c9194122015-11-10 15:36:34 +030042#include "hyperv.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030043
Marcelo Tosattib682b812009-02-10 20:41:41 -020044#ifndef CONFIG_X86_64
45#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
46#else
47#define mod_64(x, y) ((x) % (y))
48#endif
49
Eddie Dong97222cc2007-09-12 10:58:04 +030050#define PRId64 "d"
51#define PRIx64 "llx"
52#define PRIu64 "u"
53#define PRIo64 "o"
54
Eddie Dong97222cc2007-09-12 10:58:04 +030055/* 14 is the version for Xeon and Pentium 8.4.8*/
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -050056#define APIC_VERSION (0x14UL | ((KVM_APIC_LVT_NUM - 1) << 16))
Eddie Dong97222cc2007-09-12 10:58:04 +030057#define LAPIC_MMIO_LENGTH (1 << 12)
58/* followed define is not in apicdef.h */
Eddie Dong97222cc2007-09-12 10:58:04 +030059#define MAX_APIC_VECTOR 256
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +090060#define APIC_VECTORS_PER_REG 32
Eddie Dong97222cc2007-09-12 10:58:04 +030061
Nadav Amit394457a2014-10-03 00:30:52 +030062#define APIC_BROADCAST 0xFF
63#define X2APIC_BROADCAST 0xFFFFFFFFul
64
Wanpeng Lid0f5a862019-09-17 16:16:26 +080065static bool lapic_timer_advance_dynamic __read_mostly;
Wanpeng Lia0f00372019-09-26 08:54:03 +080066#define LAPIC_TIMER_ADVANCE_ADJUST_MIN 100 /* clock cycles */
67#define LAPIC_TIMER_ADVANCE_ADJUST_MAX 10000 /* clock cycles */
68#define LAPIC_TIMER_ADVANCE_NS_INIT 1000
69#define LAPIC_TIMER_ADVANCE_NS_MAX 5000
Wanpeng Li3b8a5df2018-10-09 09:02:08 +080070/* step-by-step approximation to mitigate fluctuation */
71#define LAPIC_TIMER_ADVANCE_ADJUST_STEP 8
72
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +030073static inline int apic_test_vector(int vec, void *bitmap)
74{
75 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
76}
77
Yang Zhang10606912013-04-11 19:21:38 +080078bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector)
79{
80 struct kvm_lapic *apic = vcpu->arch.apic;
81
82 return apic_test_vector(vector, apic->regs + APIC_ISR) ||
83 apic_test_vector(vector, apic->regs + APIC_IRR);
84}
85
Michael S. Tsirkin8680b942012-06-24 19:24:26 +030086static inline int __apic_test_and_set_vector(int vec, void *bitmap)
87{
88 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
89}
90
91static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
92{
93 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
94}
95
Gleb Natapovc5cc4212012-08-05 15:58:30 +030096struct static_key_deferred apic_hw_disabled __read_mostly;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +030097struct static_key_deferred apic_sw_disabled __read_mostly;
98
Eddie Dong97222cc2007-09-12 10:58:04 +030099static inline int apic_enabled(struct kvm_lapic *apic)
100{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300101 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
Gleb Natapov54e98182012-08-05 15:58:32 +0300102}
103
Eddie Dong97222cc2007-09-12 10:58:04 +0300104#define LVT_MASK \
105 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
106
107#define LINT_MASK \
108 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
109 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
110
Radim Krčmář6e500432016-12-15 18:06:46 +0100111static inline u32 kvm_x2apic_id(struct kvm_lapic *apic)
112{
113 return apic->vcpu->vcpu_id;
114}
115
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800116bool kvm_can_post_timer_interrupt(struct kvm_vcpu *vcpu)
117{
118 return pi_inject_timer && kvm_vcpu_apicv_active(vcpu);
119}
120EXPORT_SYMBOL_GPL(kvm_can_post_timer_interrupt);
121
122static bool kvm_use_posted_timer_interrupt(struct kvm_vcpu *vcpu)
123{
124 return kvm_can_post_timer_interrupt(vcpu) && vcpu->mode == IN_GUEST_MODE;
125}
126
Radim Krčmáře45115b2016-07-12 22:09:19 +0200127static inline bool kvm_apic_map_get_logical_dest(struct kvm_apic_map *map,
128 u32 dest_id, struct kvm_lapic ***cluster, u16 *mask) {
129 switch (map->mode) {
130 case KVM_APIC_MODE_X2APIC: {
131 u32 offset = (dest_id >> 16) * 16;
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200132 u32 max_apic_id = map->max_apic_id;
Radim Krčmář3548a252015-02-12 19:41:33 +0100133
Radim Krčmáře45115b2016-07-12 22:09:19 +0200134 if (offset <= max_apic_id) {
135 u8 cluster_size = min(max_apic_id - offset + 1, 16U);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100136
Paolo Bonzini1d487e92019-04-11 11:16:47 +0200137 offset = array_index_nospec(offset, map->max_apic_id + 1);
Radim Krčmáře45115b2016-07-12 22:09:19 +0200138 *cluster = &map->phys_map[offset];
139 *mask = dest_id & (0xffff >> (16 - cluster_size));
140 } else {
141 *mask = 0;
142 }
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100143
Radim Krčmáře45115b2016-07-12 22:09:19 +0200144 return true;
145 }
146 case KVM_APIC_MODE_XAPIC_FLAT:
147 *cluster = map->xapic_flat_map;
148 *mask = dest_id & 0xff;
149 return true;
150 case KVM_APIC_MODE_XAPIC_CLUSTER:
Radim Krčmář444fdad2016-11-22 20:20:14 +0100151 *cluster = map->xapic_cluster_map[(dest_id >> 4) & 0xf];
Radim Krčmáře45115b2016-07-12 22:09:19 +0200152 *mask = dest_id & 0xf;
153 return true;
154 default:
155 /* Not optimized. */
156 return false;
157 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300158}
159
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200160static void kvm_apic_map_free(struct rcu_head *rcu)
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100161{
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200162 struct kvm_apic_map *map = container_of(rcu, struct kvm_apic_map, rcu);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100163
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200164 kvfree(map);
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100165}
166
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800167void kvm_recalculate_apic_map(struct kvm *kvm)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300168{
169 struct kvm_apic_map *new, *old = NULL;
170 struct kvm_vcpu *vcpu;
171 int i;
Radim Krčmář6e500432016-12-15 18:06:46 +0100172 u32 max_id = 255; /* enough space for any xAPIC ID */
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300173
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800174 if (!kvm->arch.apic_map_dirty) {
175 /*
176 * Read kvm->arch.apic_map_dirty before
177 * kvm->arch.apic_map
178 */
179 smp_rmb();
180 return;
181 }
182
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300183 mutex_lock(&kvm->arch.apic_map_lock);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800184 if (!kvm->arch.apic_map_dirty) {
185 /* Someone else has updated the map. */
186 mutex_unlock(&kvm->arch.apic_map_lock);
187 return;
188 }
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300189
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200190 kvm_for_each_vcpu(i, vcpu, kvm)
191 if (kvm_apic_present(vcpu))
Radim Krčmář6e500432016-12-15 18:06:46 +0100192 max_id = max(max_id, kvm_x2apic_id(vcpu->arch.apic));
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200193
Michal Hockoa7c3e902017-05-08 15:57:09 -0700194 new = kvzalloc(sizeof(struct kvm_apic_map) +
Ben Gardon254272c2019-02-11 11:02:50 -0800195 sizeof(struct kvm_lapic *) * ((u64)max_id + 1),
196 GFP_KERNEL_ACCOUNT);
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200197
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300198 if (!new)
199 goto out;
200
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200201 new->max_apic_id = max_id;
202
Nadav Amit173beed2014-11-02 11:54:54 +0200203 kvm_for_each_vcpu(i, vcpu, kvm) {
204 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmáře45115b2016-07-12 22:09:19 +0200205 struct kvm_lapic **cluster;
206 u16 mask;
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100207 u32 ldr;
208 u8 xapic_id;
209 u32 x2apic_id;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300210
Radim Krčmářdf04d1d2015-01-29 22:33:35 +0100211 if (!kvm_apic_present(vcpu))
212 continue;
213
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100214 xapic_id = kvm_xapic_id(apic);
215 x2apic_id = kvm_x2apic_id(apic);
216
217 /* Hotplug hack: see kvm_apic_match_physical_addr(), ... */
218 if ((apic_x2apic_mode(apic) || x2apic_id > 0xff) &&
219 x2apic_id <= new->max_apic_id)
220 new->phys_map[x2apic_id] = apic;
221 /*
222 * ... xAPIC ID of VCPUs with APIC ID > 0xff will wrap-around,
223 * prevent them from masking VCPUs with APIC ID <= 0xff.
224 */
225 if (!apic_x2apic_mode(apic) && !new->phys_map[xapic_id])
226 new->phys_map[xapic_id] = apic;
Radim Krčmář3548a252015-02-12 19:41:33 +0100227
Radim Krcmarb14c8762019-08-13 23:37:37 -0400228 if (!kvm_apic_sw_enabled(apic))
229 continue;
230
Radim Krčmář6e500432016-12-15 18:06:46 +0100231 ldr = kvm_lapic_get_reg(apic, APIC_LDR);
232
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100233 if (apic_x2apic_mode(apic)) {
234 new->mode |= KVM_APIC_MODE_X2APIC;
235 } else if (ldr) {
236 ldr = GET_APIC_LOGICAL_ID(ldr);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500237 if (kvm_lapic_get_reg(apic, APIC_DFR) == APIC_DFR_FLAT)
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100238 new->mode |= KVM_APIC_MODE_XAPIC_FLAT;
239 else
240 new->mode |= KVM_APIC_MODE_XAPIC_CLUSTER;
241 }
242
Radim Krčmáře45115b2016-07-12 22:09:19 +0200243 if (!kvm_apic_map_get_logical_dest(new, ldr, &cluster, &mask))
Radim Krčmář3548a252015-02-12 19:41:33 +0100244 continue;
245
Radim Krčmáře45115b2016-07-12 22:09:19 +0200246 if (mask)
247 cluster[ffs(mask) - 1] = apic;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300248 }
249out:
250 old = rcu_dereference_protected(kvm->arch.apic_map,
251 lockdep_is_held(&kvm->arch.apic_map_lock));
252 rcu_assign_pointer(kvm->arch.apic_map, new);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800253 /*
254 * Write kvm->arch.apic_map before
255 * clearing apic->apic_map_dirty
256 */
257 smp_wmb();
258 kvm->arch.apic_map_dirty = false;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300259 mutex_unlock(&kvm->arch.apic_map_lock);
260
261 if (old)
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200262 call_rcu(&old->rcu, kvm_apic_map_free);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800263
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700264 kvm_make_scan_ioapic_request(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300265}
266
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300267static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
268{
Radim Krčmáře4627552014-10-30 15:06:45 +0100269 bool enabled = val & APIC_SPIV_APIC_ENABLED;
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300270
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500271 kvm_lapic_set_reg(apic, APIC_SPIV, val);
Radim Krčmáře4627552014-10-30 15:06:45 +0100272
273 if (enabled != apic->sw_enabled) {
274 apic->sw_enabled = enabled;
Peng Haoeb1ff0a2018-12-04 17:42:50 +0800275 if (enabled)
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300276 static_key_slow_dec_deferred(&apic_sw_disabled);
Peng Haoeb1ff0a2018-12-04 17:42:50 +0800277 else
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300278 static_key_slow_inc(&apic_sw_disabled.key);
Radim Krcmarb14c8762019-08-13 23:37:37 -0400279
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800280 apic->vcpu->kvm->arch.apic_map_dirty = true;
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300281 }
282}
283
Radim Krčmářa92e2542016-07-12 22:09:22 +0200284static inline void kvm_apic_set_xapic_id(struct kvm_lapic *apic, u8 id)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300285{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500286 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800287 apic->vcpu->kvm->arch.apic_map_dirty = true;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300288}
289
290static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
291{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500292 kvm_lapic_set_reg(apic, APIC_LDR, id);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800293 apic->vcpu->kvm->arch.apic_map_dirty = true;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300294}
295
Dr. David Alan Gilberte872fa92017-11-17 11:52:49 +0000296static inline u32 kvm_apic_calc_x2apic_ldr(u32 id)
297{
298 return ((id >> 4) << 16) | (1 << (id & 0xf));
299}
300
Radim Krčmářa92e2542016-07-12 22:09:22 +0200301static inline void kvm_apic_set_x2apic_id(struct kvm_lapic *apic, u32 id)
Radim Krčmář257b9a52015-05-22 18:45:11 +0200302{
Dr. David Alan Gilberte872fa92017-11-17 11:52:49 +0000303 u32 ldr = kvm_apic_calc_x2apic_ldr(id);
Radim Krčmář257b9a52015-05-22 18:45:11 +0200304
Radim Krčmář6e500432016-12-15 18:06:46 +0100305 WARN_ON_ONCE(id != apic->vcpu->vcpu_id);
306
Radim Krčmářa92e2542016-07-12 22:09:22 +0200307 kvm_lapic_set_reg(apic, APIC_ID, id);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500308 kvm_lapic_set_reg(apic, APIC_LDR, ldr);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800309 apic->vcpu->kvm->arch.apic_map_dirty = true;
Radim Krčmář257b9a52015-05-22 18:45:11 +0200310}
311
Eddie Dong97222cc2007-09-12 10:58:04 +0300312static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
313{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500314 return !(kvm_lapic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300315}
316
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800317static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
318{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100319 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800320}
321
Eddie Dong97222cc2007-09-12 10:58:04 +0300322static inline int apic_lvtt_period(struct kvm_lapic *apic)
323{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100324 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800325}
326
327static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
328{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100329 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300330}
331
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200332static inline int apic_lvt_nmi_mode(u32 lvt_val)
333{
334 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
335}
336
Gleb Natapovfc61b802009-07-05 17:39:35 +0300337void kvm_apic_set_version(struct kvm_vcpu *vcpu)
338{
339 struct kvm_lapic *apic = vcpu->arch.apic;
340 struct kvm_cpuid_entry2 *feat;
341 u32 v = APIC_VERSION;
342
Paolo Bonzinibce87cc2016-01-08 13:48:51 +0100343 if (!lapic_in_kernel(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300344 return;
345
Vitaly Kuznetsov0bcc3fb2018-02-09 14:01:33 +0100346 /*
347 * KVM emulates 82093AA datasheet (with in-kernel IOAPIC implementation)
348 * which doesn't have EOI register; Some buggy OSes (e.g. Windows with
349 * Hyper-V role) disable EOI broadcast in lapic not checking for IOAPIC
350 * version first and level-triggered interrupts never get EOIed in
351 * IOAPIC.
352 */
Gleb Natapovfc61b802009-07-05 17:39:35 +0300353 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
Vitaly Kuznetsov0bcc3fb2018-02-09 14:01:33 +0100354 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))) &&
355 !ioapic_in_kernel(vcpu->kvm))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300356 v |= APIC_LVR_DIRECTED_EOI;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500357 kvm_lapic_set_reg(apic, APIC_LVR, v);
Gleb Natapovfc61b802009-07-05 17:39:35 +0300358}
359
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500360static const unsigned int apic_lvt_mask[KVM_APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800361 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300362 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
363 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
364 LINT_MASK, LINT_MASK, /* LVT0-1 */
365 LVT_MASK /* LVTERR */
366};
367
368static int find_highest_vector(void *bitmap)
369{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900370 int vec;
371 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300372
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900373 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
374 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
375 reg = bitmap + REG_POS(vec);
376 if (*reg)
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100377 return __fls(*reg) + vec;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900378 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300379
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900380 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300381}
382
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300383static u8 count_vectors(void *bitmap)
384{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900385 int vec;
386 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300387 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900388
389 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
390 reg = bitmap + REG_POS(vec);
391 count += hweight32(*reg);
392 }
393
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300394 return count;
395}
396
Liran Alone7387b02017-12-24 18:12:54 +0200397bool __kvm_apic_update_irr(u32 *pir, void *regs, int *max_irr)
Yang Zhanga20ed542013-04-11 19:25:15 +0800398{
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100399 u32 i, vec;
Liran Alone7387b02017-12-24 18:12:54 +0200400 u32 pir_val, irr_val, prev_irr_val;
401 int max_updated_irr;
402
403 max_updated_irr = -1;
404 *max_irr = -1;
Yang Zhanga20ed542013-04-11 19:25:15 +0800405
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100406 for (i = vec = 0; i <= 7; i++, vec += 32) {
Paolo Bonziniad361092016-09-20 16:15:05 +0200407 pir_val = READ_ONCE(pir[i]);
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100408 irr_val = *((u32 *)(regs + APIC_IRR + i * 0x10));
Paolo Bonziniad361092016-09-20 16:15:05 +0200409 if (pir_val) {
Liran Alone7387b02017-12-24 18:12:54 +0200410 prev_irr_val = irr_val;
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100411 irr_val |= xchg(&pir[i], 0);
412 *((u32 *)(regs + APIC_IRR + i * 0x10)) = irr_val;
Liran Alone7387b02017-12-24 18:12:54 +0200413 if (prev_irr_val != irr_val) {
414 max_updated_irr =
415 __fls(irr_val ^ prev_irr_val) + vec;
416 }
Paolo Bonziniad361092016-09-20 16:15:05 +0200417 }
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100418 if (irr_val)
Liran Alone7387b02017-12-24 18:12:54 +0200419 *max_irr = __fls(irr_val) + vec;
Yang Zhanga20ed542013-04-11 19:25:15 +0800420 }
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100421
Liran Alone7387b02017-12-24 18:12:54 +0200422 return ((max_updated_irr != -1) &&
423 (max_updated_irr == *max_irr));
Yang Zhanga20ed542013-04-11 19:25:15 +0800424}
Wincy Van705699a2015-02-03 23:58:17 +0800425EXPORT_SYMBOL_GPL(__kvm_apic_update_irr);
426
Liran Alone7387b02017-12-24 18:12:54 +0200427bool kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir, int *max_irr)
Wincy Van705699a2015-02-03 23:58:17 +0800428{
429 struct kvm_lapic *apic = vcpu->arch.apic;
430
Liran Alone7387b02017-12-24 18:12:54 +0200431 return __kvm_apic_update_irr(pir, apic->regs, max_irr);
Wincy Van705699a2015-02-03 23:58:17 +0800432}
Yang Zhanga20ed542013-04-11 19:25:15 +0800433EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
434
Gleb Natapov33e4c682009-06-11 11:06:51 +0300435static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300436{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300437 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300438}
439
440static inline int apic_find_highest_irr(struct kvm_lapic *apic)
441{
442 int result;
443
Yang Zhangc7c9c562013-01-25 10:18:51 +0800444 /*
445 * Note that irr_pending is just a hint. It will be always
446 * true with virtual interrupt delivery enabled.
447 */
Gleb Natapov33e4c682009-06-11 11:06:51 +0300448 if (!apic->irr_pending)
449 return -1;
450
451 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300452 ASSERT(result == -1 || result >= 16);
453
454 return result;
455}
456
Gleb Natapov33e4c682009-06-11 11:06:51 +0300457static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
458{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800459 struct kvm_vcpu *vcpu;
460
461 vcpu = apic->vcpu;
462
Andrey Smetanind62caab2015-11-10 15:36:33 +0300463 if (unlikely(vcpu->arch.apicv_active)) {
Paolo Bonzinib95234c2016-12-19 13:57:33 +0100464 /* need to update RVI */
Wei Yangee171d22019-03-31 19:17:22 -0700465 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
Paolo Bonzinib95234c2016-12-19 13:57:33 +0100466 kvm_x86_ops->hwapic_irr_update(vcpu,
467 apic_find_highest_irr(apic));
Nadav Amitf210f752014-11-16 23:49:07 +0200468 } else {
469 apic->irr_pending = false;
Wei Yangee171d22019-03-31 19:17:22 -0700470 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
Nadav Amitf210f752014-11-16 23:49:07 +0200471 if (apic_search_irr(apic) != -1)
472 apic->irr_pending = true;
Wanpeng Li56cc2402014-08-05 12:42:24 +0800473 }
Gleb Natapov33e4c682009-06-11 11:06:51 +0300474}
475
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300476static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
477{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800478 struct kvm_vcpu *vcpu;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200479
Wanpeng Li56cc2402014-08-05 12:42:24 +0800480 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
481 return;
482
483 vcpu = apic->vcpu;
484
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300485 /*
Wanpeng Li56cc2402014-08-05 12:42:24 +0800486 * With APIC virtualization enabled, all caching is disabled
487 * because the processor can modify ISR under the hood. Instead
488 * just set SVI.
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300489 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300490 if (unlikely(vcpu->arch.apicv_active))
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +0200491 kvm_x86_ops->hwapic_isr_update(vcpu, vec);
Wanpeng Li56cc2402014-08-05 12:42:24 +0800492 else {
493 ++apic->isr_count;
494 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
495 /*
496 * ISR (in service register) bit is set when injecting an interrupt.
497 * The highest vector is injected. Thus the latest bit set matches
498 * the highest bit in ISR.
499 */
500 apic->highest_isr_cache = vec;
501 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300502}
503
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200504static inline int apic_find_highest_isr(struct kvm_lapic *apic)
505{
506 int result;
507
508 /*
509 * Note that isr_count is always 1, and highest_isr_cache
510 * is always -1, with APIC virtualization enabled.
511 */
512 if (!apic->isr_count)
513 return -1;
514 if (likely(apic->highest_isr_cache != -1))
515 return apic->highest_isr_cache;
516
517 result = find_highest_vector(apic->regs + APIC_ISR);
518 ASSERT(result == -1 || result >= 16);
519
520 return result;
521}
522
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300523static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
524{
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200525 struct kvm_vcpu *vcpu;
526 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
527 return;
528
529 vcpu = apic->vcpu;
530
531 /*
532 * We do get here for APIC virtualization enabled if the guest
533 * uses the Hyper-V APIC enlightenment. In this case we may need
534 * to trigger a new interrupt delivery by writing the SVI field;
535 * on the other hand isr_count and highest_isr_cache are unused
536 * and must be left alone.
537 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300538 if (unlikely(vcpu->arch.apicv_active))
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +0200539 kvm_x86_ops->hwapic_isr_update(vcpu,
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200540 apic_find_highest_isr(apic));
541 else {
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300542 --apic->isr_count;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200543 BUG_ON(apic->isr_count < 0);
544 apic->highest_isr_cache = -1;
545 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300546}
547
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800548int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
549{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300550 /* This may race with setting of irr in __apic_accept_irq() and
551 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
552 * will cause vmexit immediately and the value will be recalculated
553 * on the next vmentry.
554 */
Paolo Bonzinif8543d62016-01-08 13:42:24 +0100555 return apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800556}
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100557EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800558
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200559static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +0800560 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100561 struct dest_map *dest_map);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200562
Yang Zhangb4f22252013-04-11 19:21:37 +0800563int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100564 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +0300565{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800566 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800567
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200568 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
Yang Zhangb4f22252013-04-11 19:21:37 +0800569 irq->level, irq->trig_mode, dest_map);
Eddie Dong97222cc2007-09-12 10:58:04 +0300570}
571
Miaohe Lin1a686232019-11-09 17:46:49 +0800572static int __pv_send_ipi(unsigned long *ipi_bitmap, struct kvm_apic_map *map,
573 struct kvm_lapic_irq *irq, u32 min)
574{
575 int i, count = 0;
576 struct kvm_vcpu *vcpu;
577
578 if (min > map->max_apic_id)
579 return 0;
580
581 for_each_set_bit(i, ipi_bitmap,
582 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
583 if (map->phys_map[min + i]) {
584 vcpu = map->phys_map[min + i]->vcpu;
585 count += kvm_apic_set_irq(vcpu, irq, NULL);
586 }
587 }
588
589 return count;
590}
591
Wanpeng Li4180bf12018-07-23 14:39:54 +0800592int kvm_pv_send_ipi(struct kvm *kvm, unsigned long ipi_bitmap_low,
Wanpeng Libdf7ffc2018-08-30 10:03:30 +0800593 unsigned long ipi_bitmap_high, u32 min,
Wanpeng Li4180bf12018-07-23 14:39:54 +0800594 unsigned long icr, int op_64_bit)
595{
Wanpeng Li4180bf12018-07-23 14:39:54 +0800596 struct kvm_apic_map *map;
Wanpeng Li4180bf12018-07-23 14:39:54 +0800597 struct kvm_lapic_irq irq = {0};
598 int cluster_size = op_64_bit ? 64 : 32;
Miaohe Lin1a686232019-11-09 17:46:49 +0800599 int count;
600
601 if (icr & (APIC_DEST_MASK | APIC_SHORT_MASK))
602 return -KVM_EINVAL;
Wanpeng Li4180bf12018-07-23 14:39:54 +0800603
604 irq.vector = icr & APIC_VECTOR_MASK;
605 irq.delivery_mode = icr & APIC_MODE_MASK;
606 irq.level = (icr & APIC_INT_ASSERT) != 0;
607 irq.trig_mode = icr & APIC_INT_LEVELTRIG;
608
Wanpeng Li4180bf12018-07-23 14:39:54 +0800609 rcu_read_lock();
610 map = rcu_dereference(kvm->arch.apic_map);
611
Miaohe Lin1a686232019-11-09 17:46:49 +0800612 count = -EOPNOTSUPP;
613 if (likely(map)) {
614 count = __pv_send_ipi(&ipi_bitmap_low, map, &irq, min);
615 min += cluster_size;
616 count += __pv_send_ipi(&ipi_bitmap_high, map, &irq, min);
Wanpeng Li38ab0122018-11-20 09:39:30 +0800617 }
618
Wanpeng Li4180bf12018-07-23 14:39:54 +0800619 rcu_read_unlock();
620 return count;
621}
622
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300623static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
624{
Paolo Bonzini4e335d92017-05-02 16:20:18 +0200625
626 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
627 sizeof(val));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300628}
629
630static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
631{
Paolo Bonzini4e335d92017-05-02 16:20:18 +0200632
633 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
634 sizeof(*val));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300635}
636
637static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
638{
639 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
640}
641
642static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
643{
644 u8 val;
Miaohe Lin23520b22020-02-21 22:04:46 +0800645 if (pv_eoi_get_user(vcpu, &val) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800646 printk(KERN_WARNING "Can't read EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800647 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Miaohe Lin23520b22020-02-21 22:04:46 +0800648 return false;
649 }
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300650 return val & 0x1;
651}
652
653static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
654{
655 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800656 printk(KERN_WARNING "Can't set EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800657 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300658 return;
659 }
660 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
661}
662
663static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
664{
665 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800666 printk(KERN_WARNING "Can't clear EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800667 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300668 return;
669 }
670 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
671}
672
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100673static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
674{
Paolo Bonzini3d927892016-12-19 13:29:03 +0100675 int highest_irr;
Liran Alonfa59cc02017-12-24 18:12:53 +0200676 if (apic->vcpu->arch.apicv_active)
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100677 highest_irr = kvm_x86_ops->sync_pir_to_irr(apic->vcpu);
678 else
679 highest_irr = apic_find_highest_irr(apic);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100680 if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
681 return -1;
682 return highest_irr;
683}
684
685static bool __apic_update_ppr(struct kvm_lapic *apic, u32 *new_ppr)
Eddie Dong97222cc2007-09-12 10:58:04 +0300686{
Avi Kivity3842d132010-07-27 12:30:24 +0300687 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300688 int isr;
689
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500690 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
691 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300692 isr = apic_find_highest_isr(apic);
693 isrv = (isr != -1) ? isr : 0;
694
695 if ((tpr & 0xf0) >= (isrv & 0xf0))
696 ppr = tpr & 0xff;
697 else
698 ppr = isrv & 0xf0;
699
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100700 *new_ppr = ppr;
701 if (old_ppr != ppr)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500702 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100703
704 return ppr < old_ppr;
705}
706
707static void apic_update_ppr(struct kvm_lapic *apic)
708{
709 u32 ppr;
710
Paolo Bonzini26fbbee2016-12-18 13:54:58 +0100711 if (__apic_update_ppr(apic, &ppr) &&
712 apic_has_interrupt_for_ppr(apic, ppr) != -1)
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100713 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300714}
715
Paolo Bonzinieb90f342016-12-18 14:02:21 +0100716void kvm_apic_update_ppr(struct kvm_vcpu *vcpu)
717{
718 apic_update_ppr(vcpu->arch.apic);
719}
720EXPORT_SYMBOL_GPL(kvm_apic_update_ppr);
721
Eddie Dong97222cc2007-09-12 10:58:04 +0300722static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
723{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500724 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
Eddie Dong97222cc2007-09-12 10:58:04 +0300725 apic_update_ppr(apic);
726}
727
Radim Krčmář03d22492015-02-12 19:41:31 +0100728static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300729{
Radim Krčmářb4535b52016-12-15 18:06:47 +0100730 return mda == (apic_x2apic_mode(apic) ?
731 X2APIC_BROADCAST : APIC_BROADCAST);
Eddie Dong97222cc2007-09-12 10:58:04 +0300732}
733
Radim Krčmář03d22492015-02-12 19:41:31 +0100734static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
Nadav Amit394457a2014-10-03 00:30:52 +0300735{
Radim Krčmář03d22492015-02-12 19:41:31 +0100736 if (kvm_apic_broadcast(apic, mda))
737 return true;
738
739 if (apic_x2apic_mode(apic))
Radim Krčmář6e500432016-12-15 18:06:46 +0100740 return mda == kvm_x2apic_id(apic);
Radim Krčmář03d22492015-02-12 19:41:31 +0100741
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100742 /*
743 * Hotplug hack: Make LAPIC in xAPIC mode also accept interrupts as if
744 * it were in x2APIC mode. Hotplugged VCPUs start in xAPIC mode and
745 * this allows unique addressing of VCPUs with APIC ID over 0xff.
746 * The 0xff condition is needed because writeable xAPIC ID.
747 */
748 if (kvm_x2apic_id(apic) > 0xff && mda == kvm_x2apic_id(apic))
749 return true;
750
Radim Krčmářb4535b52016-12-15 18:06:47 +0100751 return mda == kvm_xapic_id(apic);
Nadav Amit394457a2014-10-03 00:30:52 +0300752}
753
Radim Krčmář52c233a2015-01-29 22:48:48 +0100754static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300755{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300756 u32 logical_id;
757
Nadav Amit394457a2014-10-03 00:30:52 +0300758 if (kvm_apic_broadcast(apic, mda))
Radim Krčmář9368b562015-01-29 22:48:49 +0100759 return true;
Nadav Amit394457a2014-10-03 00:30:52 +0300760
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500761 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300762
Radim Krčmář9368b562015-01-29 22:48:49 +0100763 if (apic_x2apic_mode(apic))
Radim Krčmář8a395362015-01-29 22:48:51 +0100764 return ((logical_id >> 16) == (mda >> 16))
765 && (logical_id & mda & 0xffff) != 0;
Radim Krčmář9368b562015-01-29 22:48:49 +0100766
767 logical_id = GET_APIC_LOGICAL_ID(logical_id);
Eddie Dong97222cc2007-09-12 10:58:04 +0300768
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500769 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300770 case APIC_DFR_FLAT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100771 return (logical_id & mda) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300772 case APIC_DFR_CLUSTER:
Radim Krčmář9368b562015-01-29 22:48:49 +0100773 return ((logical_id >> 4) == (mda >> 4))
774 && (logical_id & mda & 0xf) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300775 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100776 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300777 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300778}
779
Radim Krčmářc5192652016-07-12 22:09:28 +0200780/* The KVM local APIC implementation has two quirks:
781 *
Radim Krčmářb4535b52016-12-15 18:06:47 +0100782 * - Real hardware delivers interrupts destined to x2APIC ID > 0xff to LAPICs
783 * in xAPIC mode if the "destination & 0xff" matches its xAPIC ID.
784 * KVM doesn't do that aliasing.
Radim Krčmářc5192652016-07-12 22:09:28 +0200785 *
786 * - in-kernel IOAPIC messages have to be delivered directly to
787 * x2APIC, because the kernel does not support interrupt remapping.
788 * In order to support broadcast without interrupt remapping, x2APIC
789 * rewrites the destination of non-IPI messages from APIC_BROADCAST
790 * to X2APIC_BROADCAST.
791 *
792 * The broadcast quirk can be disabled with KVM_CAP_X2APIC_API. This is
793 * important when userspace wants to use x2APIC-format MSIs, because
794 * APIC_BROADCAST (0xff) is a legal route for "cluster 0, CPUs 0-7".
Radim Krčmář03d22492015-02-12 19:41:31 +0100795 */
Radim Krčmářc5192652016-07-12 22:09:28 +0200796static u32 kvm_apic_mda(struct kvm_vcpu *vcpu, unsigned int dest_id,
797 struct kvm_lapic *source, struct kvm_lapic *target)
Radim Krčmář03d22492015-02-12 19:41:31 +0100798{
799 bool ipi = source != NULL;
Radim Krčmář03d22492015-02-12 19:41:31 +0100800
Radim Krčmářc5192652016-07-12 22:09:28 +0200801 if (!vcpu->kvm->arch.x2apic_broadcast_quirk_disabled &&
Radim Krčmářb4535b52016-12-15 18:06:47 +0100802 !ipi && dest_id == APIC_BROADCAST && apic_x2apic_mode(target))
Radim Krčmář03d22492015-02-12 19:41:31 +0100803 return X2APIC_BROADCAST;
804
Radim Krčmářb4535b52016-12-15 18:06:47 +0100805 return dest_id;
Radim Krčmář03d22492015-02-12 19:41:31 +0100806}
807
Radim Krčmář52c233a2015-01-29 22:48:48 +0100808bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Peter Xu5c69d5c2019-12-04 20:07:20 +0100809 int shorthand, unsigned int dest, int dest_mode)
Eddie Dong97222cc2007-09-12 10:58:04 +0300810{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800811 struct kvm_lapic *target = vcpu->arch.apic;
Radim Krčmářc5192652016-07-12 22:09:28 +0200812 u32 mda = kvm_apic_mda(vcpu, dest, source, target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300813
Zachary Amsdenbd371392010-06-14 11:42:15 -1000814 ASSERT(target);
Peter Xu5c69d5c2019-12-04 20:07:20 +0100815 switch (shorthand) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300816 case APIC_DEST_NOSHORT:
Radim Krčmář3697f302015-01-29 22:48:50 +0100817 if (dest_mode == APIC_DEST_PHYSICAL)
Radim Krčmář03d22492015-02-12 19:41:31 +0100818 return kvm_apic_match_physical_addr(target, mda);
Gleb Natapov343f94f2009-03-05 16:34:54 +0200819 else
Radim Krčmář03d22492015-02-12 19:41:31 +0100820 return kvm_apic_match_logical_addr(target, mda);
Eddie Dong97222cc2007-09-12 10:58:04 +0300821 case APIC_DEST_SELF:
Radim Krčmář9368b562015-01-29 22:48:49 +0100822 return target == source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300823 case APIC_DEST_ALLINC:
Radim Krčmář9368b562015-01-29 22:48:49 +0100824 return true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300825 case APIC_DEST_ALLBUT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100826 return target != source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300827 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100828 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300829 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300830}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500831EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
Eddie Dong97222cc2007-09-12 10:58:04 +0300832
Feng Wu520040142016-01-25 16:53:33 +0800833int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
834 const unsigned long *bitmap, u32 bitmap_size)
835{
836 u32 mod;
837 int i, idx = -1;
838
839 mod = vector % dest_vcpus;
840
841 for (i = 0; i <= mod; i++) {
842 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
843 BUG_ON(idx == bitmap_size);
844 }
845
846 return idx;
847}
848
Radim Krčmář4efd8052016-02-12 15:00:15 +0100849static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
850{
851 if (!kvm->arch.disabled_lapic_found) {
852 kvm->arch.disabled_lapic_found = true;
853 printk(KERN_INFO
854 "Disabled LAPIC found during irq injection\n");
855 }
856}
857
Radim Krčmářc5192652016-07-12 22:09:28 +0200858static bool kvm_apic_is_broadcast_dest(struct kvm *kvm, struct kvm_lapic **src,
859 struct kvm_lapic_irq *irq, struct kvm_apic_map *map)
860{
861 if (kvm->arch.x2apic_broadcast_quirk_disabled) {
862 if ((irq->dest_id == APIC_BROADCAST &&
863 map->mode != KVM_APIC_MODE_X2APIC))
864 return true;
865 if (irq->dest_id == X2APIC_BROADCAST)
866 return true;
867 } else {
868 bool x2apic_ipi = src && *src && apic_x2apic_mode(*src);
869 if (irq->dest_id == (x2apic_ipi ?
870 X2APIC_BROADCAST : APIC_BROADCAST))
871 return true;
872 }
873
874 return false;
875}
876
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200877/* Return true if the interrupt can be handled by using *bitmap as index mask
878 * for valid destinations in *dst array.
879 * Return false if kvm_apic_map_get_dest_lapic did nothing useful.
880 * Note: we may have zero kvm_lapic destinations when we return true, which
881 * means that the interrupt should be dropped. In this case, *bitmap would be
882 * zero and *dst undefined.
883 */
884static inline bool kvm_apic_map_get_dest_lapic(struct kvm *kvm,
885 struct kvm_lapic **src, struct kvm_lapic_irq *irq,
886 struct kvm_apic_map *map, struct kvm_lapic ***dst,
887 unsigned long *bitmap)
888{
889 int i, lowest;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200890
891 if (irq->shorthand == APIC_DEST_SELF && src) {
892 *dst = src;
893 *bitmap = 1;
894 return true;
895 } else if (irq->shorthand)
896 return false;
897
Radim Krčmářc5192652016-07-12 22:09:28 +0200898 if (!map || kvm_apic_is_broadcast_dest(kvm, src, irq, map))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200899 return false;
900
901 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200902 if (irq->dest_id > map->max_apic_id) {
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200903 *bitmap = 0;
904 } else {
Paolo Bonzini1d487e92019-04-11 11:16:47 +0200905 u32 dest_id = array_index_nospec(irq->dest_id, map->max_apic_id + 1);
906 *dst = &map->phys_map[dest_id];
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200907 *bitmap = 1;
908 }
909 return true;
910 }
911
Radim Krčmáře45115b2016-07-12 22:09:19 +0200912 *bitmap = 0;
913 if (!kvm_apic_map_get_logical_dest(map, irq->dest_id, dst,
914 (u16 *)bitmap))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200915 return false;
916
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200917 if (!kvm_lowest_prio_delivery(irq))
918 return true;
919
920 if (!kvm_vector_hashing_enabled()) {
921 lowest = -1;
922 for_each_set_bit(i, bitmap, 16) {
923 if (!(*dst)[i])
924 continue;
925 if (lowest < 0)
926 lowest = i;
927 else if (kvm_apic_compare_prio((*dst)[i]->vcpu,
928 (*dst)[lowest]->vcpu) < 0)
929 lowest = i;
930 }
931 } else {
932 if (!*bitmap)
933 return true;
934
935 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap),
936 bitmap, 16);
937
938 if (!(*dst)[lowest]) {
939 kvm_apic_disabled_lapic_found(kvm);
940 *bitmap = 0;
941 return true;
942 }
943 }
944
945 *bitmap = (lowest >= 0) ? 1 << lowest : 0;
946
947 return true;
948}
949
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300950bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100951 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300952{
953 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200954 unsigned long bitmap;
955 struct kvm_lapic **dst = NULL;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300956 int i;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200957 bool ret;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300958
959 *r = -1;
960
961 if (irq->shorthand == APIC_DEST_SELF) {
Yang Zhangb4f22252013-04-11 19:21:37 +0800962 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300963 return true;
964 }
965
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300966 rcu_read_lock();
967 map = rcu_dereference(kvm->arch.apic_map);
968
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200969 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dst, &bitmap);
Paolo Bonzini0624fca2018-10-01 16:07:18 +0200970 if (ret) {
971 *r = 0;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200972 for_each_set_bit(i, &bitmap, 16) {
973 if (!dst[i])
974 continue;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200975 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
Radim Krčmář3548a252015-02-12 19:41:33 +0100976 }
Paolo Bonzini0624fca2018-10-01 16:07:18 +0200977 }
Radim Krčmář3548a252015-02-12 19:41:33 +0100978
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300979 rcu_read_unlock();
980 return ret;
981}
982
Feng Wu6228a0d2016-01-25 16:53:34 +0800983/*
Miaohe Lin00116792019-12-11 14:26:23 +0800984 * This routine tries to handle interrupts in posted mode, here is how
Feng Wu6228a0d2016-01-25 16:53:34 +0800985 * it deals with different cases:
986 * - For single-destination interrupts, handle it in posted mode
987 * - Else if vector hashing is enabled and it is a lowest-priority
988 * interrupt, handle it in posted mode and use the following mechanism
Miaohe Lin67b0ae42019-12-11 14:26:22 +0800989 * to find the destination vCPU.
Feng Wu6228a0d2016-01-25 16:53:34 +0800990 * 1. For lowest-priority interrupts, store all the possible
991 * destination vCPUs in an array.
992 * 2. Use "guest vector % max number of destination vCPUs" to find
993 * the right destination vCPU in the array for the lowest-priority
994 * interrupt.
995 * - Otherwise, use remapped mode to inject the interrupt.
996 */
Feng Wu8feb4a02015-09-18 22:29:47 +0800997bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
998 struct kvm_vcpu **dest_vcpu)
999{
1000 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001001 unsigned long bitmap;
1002 struct kvm_lapic **dst = NULL;
Feng Wu8feb4a02015-09-18 22:29:47 +08001003 bool ret = false;
Feng Wu8feb4a02015-09-18 22:29:47 +08001004
1005 if (irq->shorthand)
1006 return false;
1007
1008 rcu_read_lock();
1009 map = rcu_dereference(kvm->arch.apic_map);
1010
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001011 if (kvm_apic_map_get_dest_lapic(kvm, NULL, irq, map, &dst, &bitmap) &&
1012 hweight16(bitmap) == 1) {
1013 unsigned long i = find_first_bit(&bitmap, 16);
Feng Wu8feb4a02015-09-18 22:29:47 +08001014
Radim Krčmář64aa47b2016-07-12 22:09:18 +02001015 if (dst[i]) {
1016 *dest_vcpu = dst[i]->vcpu;
1017 ret = true;
Feng Wu8feb4a02015-09-18 22:29:47 +08001018 }
Feng Wu8feb4a02015-09-18 22:29:47 +08001019 }
1020
Feng Wu8feb4a02015-09-18 22:29:47 +08001021 rcu_read_unlock();
1022 return ret;
1023}
1024
Eddie Dong97222cc2007-09-12 10:58:04 +03001025/*
1026 * Add a pending IRQ into lapic.
1027 * Return 1 if successfully added and 0 if discarded.
1028 */
1029static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +08001030 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001031 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +03001032{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001033 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +03001034 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +03001035
Paolo Bonzinia183b632014-09-11 11:51:02 +02001036 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
1037 trig_mode, vector);
Eddie Dong97222cc2007-09-12 10:58:04 +03001038 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001039 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +02001040 vcpu->arch.apic_arb_prio++;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06001041 /* fall through */
Gleb Natapove1035712009-03-05 16:34:59 +02001042 case APIC_DM_FIXED:
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001043 if (unlikely(trig_mode && !level))
1044 break;
1045
Eddie Dong97222cc2007-09-12 10:58:04 +03001046 /* FIXME add logic for vcpu on reset */
1047 if (unlikely(!apic_enabled(apic)))
1048 break;
1049
Jan Kiszka11f5cc02013-07-25 09:58:45 +02001050 result = 1;
1051
Joerg Roedel9daa5002016-02-29 16:04:44 +01001052 if (dest_map) {
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001053 __set_bit(vcpu->vcpu_id, dest_map->map);
Joerg Roedel9daa5002016-02-29 16:04:44 +01001054 dest_map->vectors[vcpu->vcpu_id] = vector;
1055 }
Avi Kivitya5d36f82009-12-29 12:42:16 +02001056
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001057 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
1058 if (trig_mode)
Wei Yangee171d22019-03-31 19:17:22 -07001059 kvm_lapic_set_vector(vector,
1060 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001061 else
Wei Yangee171d22019-03-31 19:17:22 -07001062 kvm_lapic_clear_vector(vector,
1063 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001064 }
1065
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01001066 if (kvm_x86_ops->deliver_posted_interrupt(vcpu, vector)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001067 kvm_lapic_set_irr(vector, apic);
Yang Zhang5a717852013-04-11 19:25:16 +08001068 kvm_make_request(KVM_REQ_EVENT, vcpu);
1069 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001070 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001071 break;
1072
1073 case APIC_DM_REMRD:
Raghavendra K T24d21662013-08-26 14:18:35 +05301074 result = 1;
1075 vcpu->arch.pv.pv_unhalted = 1;
1076 kvm_make_request(KVM_REQ_EVENT, vcpu);
1077 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001078 break;
1079
1080 case APIC_DM_SMI:
Paolo Bonzini64d60672015-05-07 11:36:11 +02001081 result = 1;
1082 kvm_make_request(KVM_REQ_SMI, vcpu);
1083 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001084 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001085
Eddie Dong97222cc2007-09-12 10:58:04 +03001086 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001087 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001088 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +02001089 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001090 break;
1091
1092 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +01001093 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001094 result = 1;
Jan Kiszka66450a22013-03-13 12:42:34 +01001095 /* assumes that there are only KVM_APIC_INIT/SIPI */
1096 apic->pending_events = (1UL << KVM_APIC_INIT);
Avi Kivity3842d132010-07-27 12:30:24 +03001097 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001098 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001099 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001100 break;
1101
1102 case APIC_DM_STARTUP:
Jan Kiszka66450a22013-03-13 12:42:34 +01001103 result = 1;
1104 apic->sipi_vector = vector;
1105 /* make sure sipi_vector is visible for the receiver */
1106 smp_wmb();
1107 set_bit(KVM_APIC_SIPI, &apic->pending_events);
1108 kvm_make_request(KVM_REQ_EVENT, vcpu);
1109 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001110 break;
1111
Jan Kiszka23930f92008-09-26 09:30:52 +02001112 case APIC_DM_EXTINT:
1113 /*
1114 * Should only be called by kvm_apic_local_deliver() with LVT0,
1115 * before NMI watchdog was enabled. Already handled by
1116 * kvm_apic_accept_pic_intr().
1117 */
1118 break;
1119
Eddie Dong97222cc2007-09-12 10:58:04 +03001120 default:
1121 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
1122 delivery_mode);
1123 break;
1124 }
1125 return result;
1126}
1127
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001128/*
1129 * This routine identifies the destination vcpus mask meant to receive the
1130 * IOAPIC interrupts. It either uses kvm_apic_map_get_dest_lapic() to find
1131 * out the destination vcpus array and set the bitmap or it traverses to
1132 * each available vcpu to identify the same.
1133 */
1134void kvm_bitmap_or_dest_vcpus(struct kvm *kvm, struct kvm_lapic_irq *irq,
1135 unsigned long *vcpu_bitmap)
1136{
1137 struct kvm_lapic **dest_vcpu = NULL;
1138 struct kvm_lapic *src = NULL;
1139 struct kvm_apic_map *map;
1140 struct kvm_vcpu *vcpu;
1141 unsigned long bitmap;
1142 int i, vcpu_idx;
1143 bool ret;
1144
1145 rcu_read_lock();
1146 map = rcu_dereference(kvm->arch.apic_map);
1147
1148 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dest_vcpu,
1149 &bitmap);
1150 if (ret) {
1151 for_each_set_bit(i, &bitmap, 16) {
1152 if (!dest_vcpu[i])
1153 continue;
1154 vcpu_idx = dest_vcpu[i]->vcpu->vcpu_idx;
1155 __set_bit(vcpu_idx, vcpu_bitmap);
1156 }
1157 } else {
1158 kvm_for_each_vcpu(i, vcpu, kvm) {
1159 if (!kvm_apic_present(vcpu))
1160 continue;
1161 if (!kvm_apic_match_dest(vcpu, NULL,
Peter Xub4b29632019-12-04 20:07:16 +01001162 irq->shorthand,
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001163 irq->dest_id,
1164 irq->dest_mode))
1165 continue;
1166 __set_bit(i, vcpu_bitmap);
1167 }
1168 }
1169 rcu_read_unlock();
1170}
1171
Gleb Natapove1035712009-03-05 16:34:59 +02001172int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +03001173{
Gleb Natapove1035712009-03-05 16:34:59 +02001174 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +08001175}
1176
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001177static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
1178{
Andrey Smetanin63086302015-11-10 15:36:32 +03001179 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001180}
1181
Yang Zhangc7c9c562013-01-25 10:18:51 +08001182static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
1183{
Steve Rutherford7543a632015-07-29 23:21:41 -07001184 int trigger_mode;
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001185
Steve Rutherford7543a632015-07-29 23:21:41 -07001186 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
1187 if (!kvm_ioapic_handles_vector(apic, vector))
1188 return;
1189
1190 /* Request a KVM exit to inform the userspace IOAPIC. */
1191 if (irqchip_split(apic->vcpu->kvm)) {
1192 apic->vcpu->arch.pending_ioapic_eoi = vector;
1193 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1194 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08001195 }
Steve Rutherford7543a632015-07-29 23:21:41 -07001196
1197 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1198 trigger_mode = IOAPIC_LEVEL_TRIG;
1199 else
1200 trigger_mode = IOAPIC_EDGE_TRIG;
1201
1202 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
Yang Zhangc7c9c562013-01-25 10:18:51 +08001203}
1204
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001205static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001206{
1207 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001208
1209 trace_kvm_eoi(apic, vector);
1210
Eddie Dong97222cc2007-09-12 10:58:04 +03001211 /*
1212 * Not every write EOI will has corresponding ISR,
1213 * one example is when Kernel check timer on setup_IO_APIC
1214 */
1215 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001216 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001217
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001218 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001219 apic_update_ppr(apic);
1220
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001221 if (test_bit(vector, vcpu_to_synic(apic->vcpu)->vec_bitmap))
1222 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1223
Yang Zhangc7c9c562013-01-25 10:18:51 +08001224 kvm_ioapic_send_eoi(apic, vector);
Avi Kivity3842d132010-07-27 12:30:24 +03001225 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001226 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001227}
1228
Yang Zhangc7c9c562013-01-25 10:18:51 +08001229/*
1230 * this interface assumes a trap-like exit, which has already finished
1231 * desired side effect including vISR and vPPR update.
1232 */
1233void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1234{
1235 struct kvm_lapic *apic = vcpu->arch.apic;
1236
1237 trace_kvm_eoi(apic, vector);
1238
1239 kvm_ioapic_send_eoi(apic, vector);
1240 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1241}
1242EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1243
Wanpeng Lid5361672020-03-26 10:20:02 +08001244void kvm_apic_send_ipi(struct kvm_lapic *apic, u32 icr_low, u32 icr_high)
Eddie Dong97222cc2007-09-12 10:58:04 +03001245{
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001246 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +03001247
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001248 irq.vector = icr_low & APIC_VECTOR_MASK;
1249 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1250 irq.dest_mode = icr_low & APIC_DEST_MASK;
Paolo Bonzinib7cb2232015-04-21 14:57:05 +02001251 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001252 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1253 irq.shorthand = icr_low & APIC_SHORT_MASK;
James Sullivan93bbf0b2015-03-18 19:26:03 -06001254 irq.msi_redir_hint = false;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001255 if (apic_x2apic_mode(apic))
1256 irq.dest_id = icr_high;
1257 else
1258 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +03001259
Gleb Natapov1000ff82009-07-07 16:00:57 +03001260 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1261
Yang Zhangb4f22252013-04-11 19:21:37 +08001262 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03001263}
1264
1265static u32 apic_get_tmcct(struct kvm_lapic *apic)
1266{
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001267 ktime_t remaining, now;
Marcelo Tosattib682b812009-02-10 20:41:41 -02001268 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001269 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +03001270
1271 ASSERT(apic != NULL);
1272
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001273 /* if initial count is 0, current count should also be 0 */
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001274 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
Andy Honigb963a222013-11-19 14:12:18 -08001275 apic->lapic_timer.period == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001276 return 0;
1277
Paolo Bonzini55878592016-10-25 15:23:49 +02001278 now = ktime_get();
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001279 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
Marcelo Tosattib682b812009-02-10 20:41:41 -02001280 if (ktime_to_ns(remaining) < 0)
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001281 remaining = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001282
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001283 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1284 tmcct = div64_u64(ns,
1285 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +03001286
1287 return tmcct;
1288}
1289
Avi Kivityb209749f2007-10-22 16:50:39 +02001290static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1291{
1292 struct kvm_vcpu *vcpu = apic->vcpu;
1293 struct kvm_run *run = vcpu->run;
1294
Avi Kivitya8eeb042010-05-10 12:34:53 +03001295 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001296 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +02001297 run->tpr_access.is_write = write;
1298}
1299
1300static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1301{
1302 if (apic->vcpu->arch.tpr_access_reporting)
1303 __report_tpr_access(apic, write);
1304}
1305
Eddie Dong97222cc2007-09-12 10:58:04 +03001306static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1307{
1308 u32 val = 0;
1309
1310 if (offset >= LAPIC_MMIO_LENGTH)
1311 return 0;
1312
1313 switch (offset) {
1314 case APIC_ARBPRI:
Eddie Dong97222cc2007-09-12 10:58:04 +03001315 break;
1316
1317 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001318 if (apic_lvtt_tscdeadline(apic))
1319 return 0;
1320
Eddie Dong97222cc2007-09-12 10:58:04 +03001321 val = apic_get_tmcct(apic);
1322 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +03001323 case APIC_PROCPRI:
1324 apic_update_ppr(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001325 val = kvm_lapic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +03001326 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02001327 case APIC_TASKPRI:
1328 report_tpr_access(apic, false);
1329 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +03001330 default:
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001331 val = kvm_lapic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +03001332 break;
1333 }
1334
1335 return val;
1336}
1337
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001338static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1339{
1340 return container_of(dev, struct kvm_lapic, dev);
1341}
1342
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001343#define APIC_REG_MASK(reg) (1ull << ((reg) >> 4))
1344#define APIC_REGS_MASK(first, count) \
1345 (APIC_REG_MASK(first) * ((1ull << (count)) - 1))
1346
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001347int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001348 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001349{
Eddie Dong97222cc2007-09-12 10:58:04 +03001350 unsigned char alignment = offset & 0xf;
1351 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +08001352 /* this bitmask has a bit cleared for each reserved register */
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001353 u64 valid_reg_mask =
1354 APIC_REG_MASK(APIC_ID) |
1355 APIC_REG_MASK(APIC_LVR) |
1356 APIC_REG_MASK(APIC_TASKPRI) |
1357 APIC_REG_MASK(APIC_PROCPRI) |
1358 APIC_REG_MASK(APIC_LDR) |
1359 APIC_REG_MASK(APIC_DFR) |
1360 APIC_REG_MASK(APIC_SPIV) |
1361 APIC_REGS_MASK(APIC_ISR, APIC_ISR_NR) |
1362 APIC_REGS_MASK(APIC_TMR, APIC_ISR_NR) |
1363 APIC_REGS_MASK(APIC_IRR, APIC_ISR_NR) |
1364 APIC_REG_MASK(APIC_ESR) |
1365 APIC_REG_MASK(APIC_ICR) |
1366 APIC_REG_MASK(APIC_ICR2) |
1367 APIC_REG_MASK(APIC_LVTT) |
1368 APIC_REG_MASK(APIC_LVTTHMR) |
1369 APIC_REG_MASK(APIC_LVTPC) |
1370 APIC_REG_MASK(APIC_LVT0) |
1371 APIC_REG_MASK(APIC_LVT1) |
1372 APIC_REG_MASK(APIC_LVTERR) |
1373 APIC_REG_MASK(APIC_TMICT) |
1374 APIC_REG_MASK(APIC_TMCCT) |
1375 APIC_REG_MASK(APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001376
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001377 /* ARBPRI is not valid on x2APIC */
1378 if (!apic_x2apic_mode(apic))
1379 valid_reg_mask |= APIC_REG_MASK(APIC_ARBPRI);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001380
Yi Wang0d888002019-07-06 01:08:48 +08001381 if (offset > 0x3f0 || !(valid_reg_mask & APIC_REG_MASK(offset)))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001382 return 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001383
Eddie Dong97222cc2007-09-12 10:58:04 +03001384 result = __apic_read(apic, offset & ~0xf);
1385
Marcelo Tosatti229456f2009-06-17 09:22:14 -03001386 trace_kvm_apic_read(offset, result);
1387
Eddie Dong97222cc2007-09-12 10:58:04 +03001388 switch (len) {
1389 case 1:
1390 case 2:
1391 case 4:
1392 memcpy(data, (char *)&result + alignment, len);
1393 break;
1394 default:
1395 printk(KERN_ERR "Local APIC read with len = %x, "
1396 "should be 1,2, or 4 instead\n", len);
1397 break;
1398 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001399 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001400}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001401EXPORT_SYMBOL_GPL(kvm_lapic_reg_read);
Eddie Dong97222cc2007-09-12 10:58:04 +03001402
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001403static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1404{
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001405 return addr >= apic->base_address &&
1406 addr < apic->base_address + LAPIC_MMIO_LENGTH;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001407}
1408
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001409static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001410 gpa_t address, int len, void *data)
1411{
1412 struct kvm_lapic *apic = to_lapic(this);
1413 u32 offset = address - apic->base_address;
1414
1415 if (!apic_mmio_in_range(apic, address))
1416 return -EOPNOTSUPP;
1417
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001418 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1419 if (!kvm_check_has_quirk(vcpu->kvm,
1420 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1421 return -EOPNOTSUPP;
1422
1423 memset(data, 0xff, len);
1424 return 0;
1425 }
1426
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001427 kvm_lapic_reg_read(apic, offset, len, data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001428
1429 return 0;
1430}
1431
Eddie Dong97222cc2007-09-12 10:58:04 +03001432static void update_divide_count(struct kvm_lapic *apic)
1433{
1434 u32 tmp1, tmp2, tdcr;
1435
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001436 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001437 tmp1 = tdcr & 0xf;
1438 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001439 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +03001440}
1441
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001442static void limit_periodic_timer_frequency(struct kvm_lapic *apic)
1443{
1444 /*
1445 * Do not allow the guest to program periodic timers with small
1446 * interval, since the hrtimers are not throttled by the host
1447 * scheduler.
1448 */
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001449 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001450 s64 min_period = min_timer_period_us * 1000LL;
1451
1452 if (apic->lapic_timer.period < min_period) {
1453 pr_info_ratelimited(
1454 "kvm: vcpu %i: requested %lld ns "
1455 "lapic timer period limited to %lld ns\n",
1456 apic->vcpu->vcpu_id,
1457 apic->lapic_timer.period, min_period);
1458 apic->lapic_timer.period = min_period;
1459 }
1460 }
1461}
1462
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001463static void apic_update_lvtt(struct kvm_lapic *apic)
1464{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001465 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001466 apic->lapic_timer.timer_mode_mask;
1467
1468 if (apic->lapic_timer.timer_mode != timer_mode) {
Wanpeng Lic69518c2017-10-05 03:53:51 -07001469 if (apic_lvtt_tscdeadline(apic) != (timer_mode ==
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001470 APIC_LVT_TIMER_TSCDEADLINE)) {
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001471 hrtimer_cancel(&apic->lapic_timer.timer);
Radim Krčmář44275932017-10-06 19:25:55 +02001472 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
1473 apic->lapic_timer.period = 0;
1474 apic->lapic_timer.tscdeadline = 0;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001475 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001476 apic->lapic_timer.timer_mode = timer_mode;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001477 limit_periodic_timer_frequency(apic);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001478 }
1479}
1480
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001481/*
1482 * On APICv, this test will cause a busy wait
1483 * during a higher-priority task.
1484 */
1485
1486static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1487{
1488 struct kvm_lapic *apic = vcpu->arch.apic;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001489 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001490
1491 if (kvm_apic_hw_enabled(apic)) {
1492 int vec = reg & APIC_VECTOR_MASK;
Marcelo Tosattif9339862015-02-02 15:26:08 -02001493 void *bitmap = apic->regs + APIC_ISR;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001494
Andrey Smetanind62caab2015-11-10 15:36:33 +03001495 if (vcpu->arch.apicv_active)
Marcelo Tosattif9339862015-02-02 15:26:08 -02001496 bitmap = apic->regs + APIC_IRR;
1497
1498 if (apic_test_vector(vec, bitmap))
1499 return true;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001500 }
1501 return false;
1502}
1503
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001504static inline void __wait_lapic_expire(struct kvm_vcpu *vcpu, u64 guest_cycles)
1505{
1506 u64 timer_advance_ns = vcpu->arch.apic->lapic_timer.timer_advance_ns;
1507
1508 /*
1509 * If the guest TSC is running at a different ratio than the host, then
1510 * convert the delay to nanoseconds to achieve an accurate delay. Note
1511 * that __delay() uses delay_tsc whenever the hardware has TSC, thus
1512 * always for VMX enabled hardware.
1513 */
1514 if (vcpu->arch.tsc_scaling_ratio == kvm_default_tsc_scaling_ratio) {
1515 __delay(min(guest_cycles,
1516 nsec_to_cycles(vcpu, timer_advance_ns)));
1517 } else {
1518 u64 delay_ns = guest_cycles * 1000000ULL;
1519 do_div(delay_ns, vcpu->arch.virtual_tsc_khz);
1520 ndelay(min_t(u32, delay_ns, timer_advance_ns));
1521 }
1522}
1523
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001524static inline void adjust_lapic_timer_advance(struct kvm_vcpu *vcpu,
Wanpeng Liec0671d2019-05-20 16:18:08 +08001525 s64 advance_expire_delta)
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001526{
1527 struct kvm_lapic *apic = vcpu->arch.apic;
Sean Christopherson39497d72019-04-17 10:15:32 -07001528 u32 timer_advance_ns = apic->lapic_timer.timer_advance_ns;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001529 u64 ns;
1530
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001531 /* Do not adjust for tiny fluctuations or large random spikes. */
1532 if (abs(advance_expire_delta) > LAPIC_TIMER_ADVANCE_ADJUST_MAX ||
1533 abs(advance_expire_delta) < LAPIC_TIMER_ADVANCE_ADJUST_MIN)
1534 return;
1535
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001536 /* too early */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001537 if (advance_expire_delta < 0) {
1538 ns = -advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001539 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001540 timer_advance_ns -= ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001541 } else {
1542 /* too late */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001543 ns = advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001544 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001545 timer_advance_ns += ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001546 }
1547
Wanpeng Lia0f00372019-09-26 08:54:03 +08001548 if (unlikely(timer_advance_ns > LAPIC_TIMER_ADVANCE_NS_MAX))
1549 timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001550 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
1551}
1552
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001553static void __kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001554{
1555 struct kvm_lapic *apic = vcpu->arch.apic;
1556 u64 guest_tsc, tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001557
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001558 if (apic->lapic_timer.expired_tscdeadline == 0)
1559 return;
1560
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001561 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1562 apic->lapic_timer.expired_tscdeadline = 0;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001563 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Wanpeng Liec0671d2019-05-20 16:18:08 +08001564 apic->lapic_timer.advance_expire_delta = guest_tsc - tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001565
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001566 if (guest_tsc < tsc_deadline)
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001567 __wait_lapic_expire(vcpu, tsc_deadline - guest_tsc);
Wanpeng Li3b8a5df2018-10-09 09:02:08 +08001568
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001569 if (lapic_timer_advance_dynamic)
Wanpeng Liec0671d2019-05-20 16:18:08 +08001570 adjust_lapic_timer_advance(vcpu, apic->lapic_timer.advance_expire_delta);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001571}
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001572
1573void kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1574{
1575 if (lapic_timer_int_injected(vcpu))
1576 __kvm_wait_lapic_expire(vcpu);
1577}
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08001578EXPORT_SYMBOL_GPL(kvm_wait_lapic_expire);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001579
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001580static void kvm_apic_inject_pending_timer_irqs(struct kvm_lapic *apic)
1581{
1582 struct kvm_timer *ktimer = &apic->lapic_timer;
1583
1584 kvm_apic_local_deliver(apic, APIC_LVTT);
Haiwei Li17ac43a2020-01-16 16:50:21 +08001585 if (apic_lvtt_tscdeadline(apic)) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001586 ktimer->tscdeadline = 0;
Haiwei Li17ac43a2020-01-16 16:50:21 +08001587 } else if (apic_lvtt_oneshot(apic)) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001588 ktimer->tscdeadline = 0;
1589 ktimer->target_expiration = 0;
1590 }
1591}
1592
1593static void apic_timer_expired(struct kvm_lapic *apic)
1594{
1595 struct kvm_vcpu *vcpu = apic->vcpu;
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001596 struct kvm_timer *ktimer = &apic->lapic_timer;
1597
1598 if (atomic_read(&apic->lapic_timer.pending))
1599 return;
1600
1601 if (apic_lvtt_tscdeadline(apic) || ktimer->hv_timer_in_use)
1602 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1603
1604 if (kvm_use_posted_timer_interrupt(apic->vcpu)) {
1605 if (apic->lapic_timer.timer_advance_ns)
1606 __kvm_wait_lapic_expire(vcpu);
1607 kvm_apic_inject_pending_timer_irqs(apic);
1608 return;
1609 }
1610
1611 atomic_inc(&apic->lapic_timer.pending);
1612 kvm_set_pending_timer(vcpu);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001613}
1614
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001615static void start_sw_tscdeadline(struct kvm_lapic *apic)
1616{
Sean Christopherson39497d72019-04-17 10:15:32 -07001617 struct kvm_timer *ktimer = &apic->lapic_timer;
1618 u64 guest_tsc, tscdeadline = ktimer->tscdeadline;
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001619 u64 ns = 0;
1620 ktime_t expire;
1621 struct kvm_vcpu *vcpu = apic->vcpu;
1622 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
1623 unsigned long flags;
1624 ktime_t now;
1625
1626 if (unlikely(!tscdeadline || !this_tsc_khz))
1627 return;
1628
1629 local_irq_save(flags);
1630
Paolo Bonzini55878592016-10-25 15:23:49 +02001631 now = ktime_get();
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001632 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Liran Alonc09d65d2019-04-16 20:36:34 +03001633
1634 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1635 do_div(ns, this_tsc_khz);
1636
1637 if (likely(tscdeadline > guest_tsc) &&
Sean Christopherson39497d72019-04-17 10:15:32 -07001638 likely(ns > apic->lapic_timer.timer_advance_ns)) {
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001639 expire = ktime_add_ns(now, ns);
Sean Christopherson39497d72019-04-17 10:15:32 -07001640 expire = ktime_sub_ns(expire, ktimer->timer_advance_ns);
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02001641 hrtimer_start(&ktimer->timer, expire, HRTIMER_MODE_ABS_HARD);
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001642 } else
1643 apic_timer_expired(apic);
1644
1645 local_irq_restore(flags);
1646}
1647
Wanpeng Lic301b902017-10-06 07:38:32 -07001648static void update_target_expiration(struct kvm_lapic *apic, uint32_t old_divisor)
1649{
1650 ktime_t now, remaining;
1651 u64 ns_remaining_old, ns_remaining_new;
1652
1653 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
1654 * APIC_BUS_CYCLE_NS * apic->divide_count;
1655 limit_periodic_timer_frequency(apic);
1656
1657 now = ktime_get();
1658 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1659 if (ktime_to_ns(remaining) < 0)
1660 remaining = 0;
1661
1662 ns_remaining_old = ktime_to_ns(remaining);
1663 ns_remaining_new = mul_u64_u32_div(ns_remaining_old,
1664 apic->divide_count, old_divisor);
1665
1666 apic->lapic_timer.tscdeadline +=
1667 nsec_to_cycles(apic->vcpu, ns_remaining_new) -
1668 nsec_to_cycles(apic->vcpu, ns_remaining_old);
1669 apic->lapic_timer.target_expiration = ktime_add_ns(now, ns_remaining_new);
1670}
1671
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001672static bool set_target_expiration(struct kvm_lapic *apic)
1673{
1674 ktime_t now;
1675 u64 tscl = rdtsc();
1676
Paolo Bonzini55878592016-10-25 15:23:49 +02001677 now = ktime_get();
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001678 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
1679 * APIC_BUS_CYCLE_NS * apic->divide_count;
1680
Radim Krčmář5d74a692017-10-06 19:25:54 +02001681 if (!apic->lapic_timer.period) {
1682 apic->lapic_timer.tscdeadline = 0;
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001683 return false;
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001684 }
1685
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001686 limit_periodic_timer_frequency(apic);
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001687
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001688 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1689 nsec_to_cycles(apic->vcpu, apic->lapic_timer.period);
1690 apic->lapic_timer.target_expiration = ktime_add_ns(now, apic->lapic_timer.period);
1691
1692 return true;
1693}
1694
1695static void advance_periodic_target_expiration(struct kvm_lapic *apic)
1696{
David Vrabeld8f2f492018-05-18 16:55:46 +01001697 ktime_t now = ktime_get();
1698 u64 tscl = rdtsc();
1699 ktime_t delta;
1700
1701 /*
1702 * Synchronize both deadlines to the same time source or
1703 * differences in the periods (caused by differences in the
1704 * underlying clocks or numerical approximation errors) will
1705 * cause the two to drift apart over time as the errors
1706 * accumulate.
1707 */
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001708 apic->lapic_timer.target_expiration =
1709 ktime_add_ns(apic->lapic_timer.target_expiration,
1710 apic->lapic_timer.period);
David Vrabeld8f2f492018-05-18 16:55:46 +01001711 delta = ktime_sub(apic->lapic_timer.target_expiration, now);
1712 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1713 nsec_to_cycles(apic->vcpu, delta);
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001714}
1715
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001716static void start_sw_period(struct kvm_lapic *apic)
1717{
1718 if (!apic->lapic_timer.period)
1719 return;
1720
1721 if (ktime_after(ktime_get(),
1722 apic->lapic_timer.target_expiration)) {
1723 apic_timer_expired(apic);
1724
1725 if (apic_lvtt_oneshot(apic))
1726 return;
1727
1728 advance_periodic_target_expiration(apic);
1729 }
1730
1731 hrtimer_start(&apic->lapic_timer.timer,
1732 apic->lapic_timer.target_expiration,
Wanpeng Li4d151bf2019-07-06 09:26:50 +08001733 HRTIMER_MODE_ABS);
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001734}
1735
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001736bool kvm_lapic_hv_timer_in_use(struct kvm_vcpu *vcpu)
1737{
Wanpeng Li91005302016-08-03 12:04:12 +08001738 if (!lapic_in_kernel(vcpu))
1739 return false;
1740
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001741 return vcpu->arch.apic->lapic_timer.hv_timer_in_use;
1742}
1743EXPORT_SYMBOL_GPL(kvm_lapic_hv_timer_in_use);
1744
Wanpeng Li7e810a32016-10-24 18:23:12 +08001745static void cancel_hv_timer(struct kvm_lapic *apic)
Wanpeng Libd97ad02016-06-30 08:52:49 +08001746{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001747 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001748 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
Wanpeng Libd97ad02016-06-30 08:52:49 +08001749 kvm_x86_ops->cancel_hv_timer(apic->vcpu);
1750 apic->lapic_timer.hv_timer_in_use = false;
1751}
1752
Paolo Bonzinia749e242017-06-29 17:14:50 +02001753static bool start_hv_timer(struct kvm_lapic *apic)
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001754{
1755 struct kvm_timer *ktimer = &apic->lapic_timer;
Sean Christophersonf9927982019-04-16 13:32:46 -07001756 struct kvm_vcpu *vcpu = apic->vcpu;
1757 bool expired;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001758
Wanpeng Li1d518c62017-07-25 00:43:15 -07001759 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001760 if (!kvm_x86_ops->set_hv_timer)
1761 return false;
1762
Radim Krčmář86bbc1e2017-10-06 19:25:53 +02001763 if (!ktimer->tscdeadline)
1764 return false;
1765
Sean Christophersonf9927982019-04-16 13:32:46 -07001766 if (kvm_x86_ops->set_hv_timer(vcpu, ktimer->tscdeadline, &expired))
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001767 return false;
1768
1769 ktimer->hv_timer_in_use = true;
1770 hrtimer_cancel(&ktimer->timer);
1771
1772 /*
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001773 * To simplify handling the periodic timer, leave the hv timer running
1774 * even if the deadline timer has expired, i.e. rely on the resulting
1775 * VM-Exit to recompute the periodic timer's target expiration.
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001776 */
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001777 if (!apic_lvtt_period(apic)) {
1778 /*
1779 * Cancel the hv timer if the sw timer fired while the hv timer
1780 * was being programmed, or if the hv timer itself expired.
1781 */
1782 if (atomic_read(&ktimer->pending)) {
1783 cancel_hv_timer(apic);
Sean Christophersonf9927982019-04-16 13:32:46 -07001784 } else if (expired) {
Wanpeng Lic8533542017-06-29 06:28:09 -07001785 apic_timer_expired(apic);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001786 cancel_hv_timer(apic);
1787 }
Wanpeng Lic8533542017-06-29 06:28:09 -07001788 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02001789
Sean Christophersonf9927982019-04-16 13:32:46 -07001790 trace_kvm_hv_timer_state(vcpu->vcpu_id, ktimer->hv_timer_in_use);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001791
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001792 return true;
1793}
1794
Paolo Bonzinia749e242017-06-29 17:14:50 +02001795static void start_sw_timer(struct kvm_lapic *apic)
Wanpeng Li196f20c2016-06-28 14:54:19 +08001796{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001797 struct kvm_timer *ktimer = &apic->lapic_timer;
Wanpeng Li1d518c62017-07-25 00:43:15 -07001798
1799 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001800 if (apic->lapic_timer.hv_timer_in_use)
1801 cancel_hv_timer(apic);
1802 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
1803 return;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001804
Paolo Bonzinia749e242017-06-29 17:14:50 +02001805 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1806 start_sw_period(apic);
1807 else if (apic_lvtt_tscdeadline(apic))
1808 start_sw_tscdeadline(apic);
1809 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, false);
1810}
1811
1812static void restart_apic_timer(struct kvm_lapic *apic)
1813{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001814 preempt_disable();
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001815
1816 if (!apic_lvtt_period(apic) && atomic_read(&apic->lapic_timer.pending))
1817 goto out;
1818
Paolo Bonzinia749e242017-06-29 17:14:50 +02001819 if (!start_hv_timer(apic))
1820 start_sw_timer(apic);
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001821out:
Wanpeng Li1d518c62017-07-25 00:43:15 -07001822 preempt_enable();
Wanpeng Li196f20c2016-06-28 14:54:19 +08001823}
1824
Eddie Dong97222cc2007-09-12 10:58:04 +03001825void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
1826{
1827 struct kvm_lapic *apic = vcpu->arch.apic;
1828
Wanpeng Li1d518c62017-07-25 00:43:15 -07001829 preempt_disable();
1830 /* If the preempt notifier has already run, it also called apic_timer_expired */
1831 if (!apic->lapic_timer.hv_timer_in_use)
1832 goto out;
Eddie Dong97222cc2007-09-12 10:58:04 +03001833 WARN_ON(swait_active(&vcpu->wq));
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001834 cancel_hv_timer(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001835 apic_timer_expired(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001836
1837 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1838 advance_periodic_target_expiration(apic);
Paolo Bonzinia749e242017-06-29 17:14:50 +02001839 restart_apic_timer(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001840 }
Wanpeng Li1d518c62017-07-25 00:43:15 -07001841out:
1842 preempt_enable();
Eddie Dong97222cc2007-09-12 10:58:04 +03001843}
1844EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
1845
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001846void kvm_lapic_switch_to_hv_timer(struct kvm_vcpu *vcpu)
1847{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001848 restart_apic_timer(vcpu->arch.apic);
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001849}
1850EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_hv_timer);
1851
1852void kvm_lapic_switch_to_sw_timer(struct kvm_vcpu *vcpu)
1853{
1854 struct kvm_lapic *apic = vcpu->arch.apic;
1855
Wanpeng Li1d518c62017-07-25 00:43:15 -07001856 preempt_disable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001857 /* Possibly the TSC deadline timer is not enabled yet */
Paolo Bonzinia749e242017-06-29 17:14:50 +02001858 if (apic->lapic_timer.hv_timer_in_use)
1859 start_sw_timer(apic);
Wanpeng Li1d518c62017-07-25 00:43:15 -07001860 preempt_enable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001861}
1862EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_sw_timer);
1863
Paolo Bonzinia749e242017-06-29 17:14:50 +02001864void kvm_lapic_restart_hv_timer(struct kvm_vcpu *vcpu)
1865{
1866 struct kvm_lapic *apic = vcpu->arch.apic;
1867
1868 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1869 restart_apic_timer(apic);
1870}
1871
Eddie Dong97222cc2007-09-12 10:58:04 +03001872static void start_apic_timer(struct kvm_lapic *apic)
1873{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001874 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +02001875
Paolo Bonzinia749e242017-06-29 17:14:50 +02001876 if ((apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1877 && !set_target_expiration(apic))
1878 return;
1879
1880 restart_apic_timer(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001881}
1882
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001883static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1884{
Radim Krčmář59fd1322015-06-30 22:19:16 +02001885 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001886
Radim Krčmář59fd1322015-06-30 22:19:16 +02001887 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
1888 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
1889 if (lvt0_in_nmi_mode) {
Radim Krčmář42720132015-07-01 15:31:49 +02001890 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
Radim Krčmář59fd1322015-06-30 22:19:16 +02001891 } else
1892 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1893 }
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001894}
1895
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001896int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03001897{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001898 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001899
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001900 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001901
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001902 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001903 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001904 if (!apic_x2apic_mode(apic))
Radim Krčmářa92e2542016-07-12 22:09:22 +02001905 kvm_apic_set_xapic_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001906 else
1907 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001908 break;
1909
1910 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02001911 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03001912 apic_set_tpr(apic, val & 0xff);
1913 break;
1914
1915 case APIC_EOI:
1916 apic_set_eoi(apic);
1917 break;
1918
1919 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001920 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001921 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001922 else
1923 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001924 break;
1925
1926 case APIC_DFR:
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001927 if (!apic_x2apic_mode(apic)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001928 kvm_lapic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08001929 apic->vcpu->kvm->arch.apic_map_dirty = true;
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001930 } else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001931 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001932 break;
1933
Gleb Natapovfc61b802009-07-05 17:39:35 +03001934 case APIC_SPIV: {
1935 u32 mask = 0x3ff;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001936 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03001937 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001938 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03001939 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1940 int i;
1941 u32 lvt_val;
1942
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001943 for (i = 0; i < KVM_APIC_LVT_NUM; i++) {
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001944 lvt_val = kvm_lapic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03001945 APIC_LVTT + 0x10 * i);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001946 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i,
Eddie Dong97222cc2007-09-12 10:58:04 +03001947 lvt_val | APIC_LVT_MASKED);
1948 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001949 apic_update_lvtt(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001950 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001951
1952 }
1953 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03001954 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001955 case APIC_ICR:
1956 /* No delay here, so we always clear the pending bit */
Wanpeng Li2b0911d2019-09-05 14:26:27 +08001957 val &= ~(1 << 12);
Wanpeng Lid5361672020-03-26 10:20:02 +08001958 kvm_apic_send_ipi(apic, val, kvm_lapic_get_reg(apic, APIC_ICR2));
Wanpeng Li2b0911d2019-09-05 14:26:27 +08001959 kvm_lapic_set_reg(apic, APIC_ICR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001960 break;
1961
1962 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001963 if (!apic_x2apic_mode(apic))
1964 val &= 0xff000000;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001965 kvm_lapic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001966 break;
1967
Jan Kiszka23930f92008-09-26 09:30:52 +02001968 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001969 apic_manage_nmi_watchdog(apic, val);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06001970 /* fall through */
Eddie Dong97222cc2007-09-12 10:58:04 +03001971 case APIC_LVTTHMR:
1972 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03001973 case APIC_LVT1:
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08001974 case APIC_LVTERR: {
Eddie Dong97222cc2007-09-12 10:58:04 +03001975 /* TODO: Check vector */
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08001976 size_t size;
1977 u32 index;
1978
Gleb Natapovc48f1492012-08-05 15:58:33 +03001979 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001980 val |= APIC_LVT_MASKED;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08001981 size = ARRAY_SIZE(apic_lvt_mask);
1982 index = array_index_nospec(
1983 (reg - APIC_LVTT) >> 4, size);
1984 val &= apic_lvt_mask[index];
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001985 kvm_lapic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001986 break;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08001987 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001988
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001989 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03001990 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001991 val |= APIC_LVT_MASKED;
1992 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001993 kvm_lapic_set_reg(apic, APIC_LVTT, val);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001994 apic_update_lvtt(apic);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001995 break;
1996
Eddie Dong97222cc2007-09-12 10:58:04 +03001997 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001998 if (apic_lvtt_tscdeadline(apic))
1999 break;
2000
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002001 hrtimer_cancel(&apic->lapic_timer.timer);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002002 kvm_lapic_set_reg(apic, APIC_TMICT, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002003 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002004 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002005
Wanpeng Lic301b902017-10-06 07:38:32 -07002006 case APIC_TDCR: {
2007 uint32_t old_divisor = apic->divide_count;
2008
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002009 kvm_lapic_set_reg(apic, APIC_TDCR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03002010 update_divide_count(apic);
Wanpeng Lic301b902017-10-06 07:38:32 -07002011 if (apic->divide_count != old_divisor &&
2012 apic->lapic_timer.period) {
2013 hrtimer_cancel(&apic->lapic_timer.timer);
2014 update_target_expiration(apic, old_divisor);
2015 restart_apic_timer(apic);
2016 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002017 break;
Wanpeng Lic301b902017-10-06 07:38:32 -07002018 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002019 case APIC_ESR:
Yi Wang0d888002019-07-06 01:08:48 +08002020 if (apic_x2apic_mode(apic) && val != 0)
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002021 ret = 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002022 break;
2023
2024 case APIC_SELF_IPI:
2025 if (apic_x2apic_mode(apic)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002026 kvm_lapic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002027 } else
2028 ret = 1;
2029 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002030 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002031 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002032 break;
2033 }
Yi Wang0d888002019-07-06 01:08:48 +08002034
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002035 kvm_recalculate_apic_map(apic->vcpu->kvm);
2036
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002037 return ret;
2038}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002039EXPORT_SYMBOL_GPL(kvm_lapic_reg_write);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002040
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002041static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002042 gpa_t address, int len, const void *data)
2043{
2044 struct kvm_lapic *apic = to_lapic(this);
2045 unsigned int offset = address - apic->base_address;
2046 u32 val;
2047
2048 if (!apic_mmio_in_range(apic, address))
2049 return -EOPNOTSUPP;
2050
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02002051 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
2052 if (!kvm_check_has_quirk(vcpu->kvm,
2053 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
2054 return -EOPNOTSUPP;
2055
2056 return 0;
2057 }
2058
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002059 /*
2060 * APIC register must be aligned on 128-bits boundary.
2061 * 32/64/128 bits registers must be accessed thru 32 bits.
2062 * Refer SDM 8.4.1
2063 */
Yi Wang0d888002019-07-06 01:08:48 +08002064 if (len != 4 || (offset & 0xf))
Sheng Yang756975b2009-07-06 11:05:39 +08002065 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002066
2067 val = *(u32*)data;
2068
Yi Wang0d888002019-07-06 01:08:48 +08002069 kvm_lapic_reg_write(apic, offset & 0xff0, val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002070
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002071 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002072}
2073
Kevin Tian58fbbf22011-08-30 13:56:17 +03002074void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
2075{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002076 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
Kevin Tian58fbbf22011-08-30 13:56:17 +03002077}
2078EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
2079
Yang Zhang83d4c282013-01-25 10:18:49 +08002080/* emulate APIC access in a trap manner */
2081void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
2082{
2083 u32 val = 0;
2084
2085 /* hw has done the conditional check and inst decode */
2086 offset &= 0xff0;
2087
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002088 kvm_lapic_reg_read(vcpu->arch.apic, offset, 4, &val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002089
2090 /* TODO: optimize to just emulate side effect w/o one more write */
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002091 kvm_lapic_reg_write(vcpu->arch.apic, offset, val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002092}
2093EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
2094
Rusty Russelld5894442007-10-08 10:48:30 +10002095void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03002096{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002097 struct kvm_lapic *apic = vcpu->arch.apic;
2098
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002099 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002100 return;
2101
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002102 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002103
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002104 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
2105 static_key_slow_dec_deferred(&apic_hw_disabled);
2106
Radim Krčmáře4627552014-10-30 15:06:45 +01002107 if (!apic->sw_enabled)
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002108 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03002109
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002110 if (apic->regs)
2111 free_page((unsigned long)apic->regs);
2112
2113 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002114}
2115
2116/*
2117 *----------------------------------------------------------------------
2118 * LAPIC interface
2119 *----------------------------------------------------------------------
2120 */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002121u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
2122{
2123 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002124
Wanpeng Lia10388e2016-10-24 18:23:10 +08002125 if (!lapic_in_kernel(vcpu) ||
2126 !apic_lvtt_tscdeadline(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002127 return 0;
2128
2129 return apic->lapic_timer.tscdeadline;
2130}
2131
2132void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
2133{
2134 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002135
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002136 if (!lapic_in_kernel(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03002137 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002138 return;
2139
2140 hrtimer_cancel(&apic->lapic_timer.timer);
2141 apic->lapic_timer.tscdeadline = data;
2142 start_apic_timer(apic);
2143}
2144
Eddie Dong97222cc2007-09-12 10:58:04 +03002145void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
2146{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002147 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002148
Avi Kivityb93463a2007-10-25 16:52:32 +02002149 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002150 | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03002151}
2152
2153u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
2154{
Eddie Dong97222cc2007-09-12 10:58:04 +03002155 u64 tpr;
2156
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002157 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03002158
2159 return (tpr & 0xf0) >> 4;
2160}
2161
2162void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
2163{
Yang Zhang8d146952013-01-25 10:18:50 +08002164 u64 old_value = vcpu->arch.apic_base;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002165 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002166
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002167 if (!apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002168 value |= MSR_IA32_APICBASE_BSP;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002169
Jan Kiszkae66d2ae2013-12-29 02:29:30 +01002170 vcpu->arch.apic_base = value;
2171
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002172 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE)
2173 kvm_update_cpuid(vcpu);
2174
2175 if (!apic)
2176 return;
2177
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002178 /* update jump label if enable bit changes */
Andrew Jones0dce7cd2014-01-15 13:39:59 +01002179 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
Radim Krčmář49bd29b2016-07-12 22:09:23 +02002180 if (value & MSR_IA32_APICBASE_ENABLE) {
2181 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002182 static_key_slow_dec_deferred(&apic_hw_disabled);
Wanpeng Li187ca842016-08-03 12:04:13 +08002183 } else {
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002184 static_key_slow_inc(&apic_hw_disabled.key);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002185 vcpu->kvm->arch.apic_map_dirty = true;
Wanpeng Li187ca842016-08-03 12:04:13 +08002186 }
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002187 }
2188
Jim Mattson8d860bb2018-05-09 16:56:05 -04002189 if (((old_value ^ value) & X2APIC_ENABLE) && (value & X2APIC_ENABLE))
2190 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
2191
2192 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE))
2193 kvm_x86_ops->set_virtual_apic_mode(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08002194
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002195 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03002196 MSR_IA32_APICBASE_BASE;
2197
Nadav Amitdb324fe2014-11-02 11:54:59 +02002198 if ((value & MSR_IA32_APICBASE_ENABLE) &&
2199 apic->base_address != APIC_DEFAULT_PHYS_BASE)
2200 pr_warn_once("APIC base relocation is unsupported by KVM");
Eddie Dong97222cc2007-09-12 10:58:04 +03002201}
2202
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002203void kvm_apic_update_apicv(struct kvm_vcpu *vcpu)
2204{
2205 struct kvm_lapic *apic = vcpu->arch.apic;
2206
2207 if (vcpu->arch.apicv_active) {
2208 /* irr_pending is always true when apicv is activated. */
2209 apic->irr_pending = true;
2210 apic->isr_count = 1;
2211 } else {
2212 apic->irr_pending = (apic_search_irr(apic) != -1);
2213 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
2214 }
2215}
2216EXPORT_SYMBOL_GPL(kvm_apic_update_apicv);
2217
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002218void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
Eddie Dong97222cc2007-09-12 10:58:04 +03002219{
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002220 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002221 int i;
2222
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002223 if (!apic)
2224 return;
Eddie Dong97222cc2007-09-12 10:58:04 +03002225
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002226 vcpu->kvm->arch.apic_map_dirty = false;
Eddie Dong97222cc2007-09-12 10:58:04 +03002227 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002228 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002229
Radim Krčmář4d8e7722016-07-12 22:09:25 +02002230 if (!init_event) {
2231 kvm_lapic_set_base(vcpu, APIC_DEFAULT_PHYS_BASE |
2232 MSR_IA32_APICBASE_ENABLE);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002233 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Radim Krčmář4d8e7722016-07-12 22:09:25 +02002234 }
Gleb Natapovfc61b802009-07-05 17:39:35 +03002235 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03002236
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002237 for (i = 0; i < KVM_APIC_LVT_NUM; i++)
2238 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002239 apic_update_lvtt(apic);
Jan H. Schönherr52b54192017-05-20 13:24:32 +02002240 if (kvm_vcpu_is_reset_bsp(vcpu) &&
2241 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002242 kvm_lapic_set_reg(apic, APIC_LVT0,
Nadav Amit90de4a12015-04-13 01:53:41 +03002243 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002244 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong97222cc2007-09-12 10:58:04 +03002245
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002246 kvm_lapic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002247 apic_set_spiv(apic, 0xff);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002248 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
Radim Krčmářc028dd62015-05-22 19:22:10 +02002249 if (!apic_x2apic_mode(apic))
2250 kvm_apic_set_ldr(apic, 0);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002251 kvm_lapic_set_reg(apic, APIC_ESR, 0);
2252 kvm_lapic_set_reg(apic, APIC_ICR, 0);
2253 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
2254 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
2255 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002256 for (i = 0; i < 8; i++) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002257 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
2258 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
2259 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002260 }
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002261 kvm_apic_update_apicv(vcpu);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002262 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02002263 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002264 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002265 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03002266 kvm_lapic_set_base(vcpu,
2267 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002268 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002269 apic_update_ppr(apic);
Jan H. Schönherr4191db22017-10-25 16:43:27 +02002270 if (vcpu->arch.apicv_active) {
2271 kvm_x86_ops->apicv_post_state_restore(vcpu);
2272 kvm_x86_ops->hwapic_irr_update(vcpu, -1);
2273 kvm_x86_ops->hwapic_isr_update(vcpu, -1);
2274 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002275
Gleb Natapove1035712009-03-05 16:34:59 +02002276 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03002277 vcpu->arch.apic_attention = 0;
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002278
2279 kvm_recalculate_apic_map(vcpu->kvm);
Eddie Dong97222cc2007-09-12 10:58:04 +03002280}
2281
Eddie Dong97222cc2007-09-12 10:58:04 +03002282/*
2283 *----------------------------------------------------------------------
2284 * timer interface
2285 *----------------------------------------------------------------------
2286 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03002287
Avi Kivity2a6eac92012-07-26 18:01:51 +03002288static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002289{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002290 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002291}
2292
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002293int apic_has_pending_timer(struct kvm_vcpu *vcpu)
2294{
Gleb Natapov54e98182012-08-05 15:58:32 +03002295 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002296
Paolo Bonzini1e3161b42016-01-08 13:41:16 +01002297 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
Gleb Natapov54e98182012-08-05 15:58:32 +03002298 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002299
2300 return 0;
2301}
2302
Avi Kivity89342082011-11-10 14:57:21 +02002303int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03002304{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002305 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02002306 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002307
Gleb Natapovc48f1492012-08-05 15:58:33 +03002308 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02002309 vector = reg & APIC_VECTOR_MASK;
2310 mode = reg & APIC_MODE_MASK;
2311 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
Yang Zhangb4f22252013-04-11 19:21:37 +08002312 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
2313 NULL);
Jan Kiszka23930f92008-09-26 09:30:52 +02002314 }
2315 return 0;
2316}
2317
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002318void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02002319{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002320 struct kvm_lapic *apic = vcpu->arch.apic;
2321
2322 if (apic)
2323 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002324}
2325
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002326static const struct kvm_io_device_ops apic_mmio_ops = {
2327 .read = apic_mmio_read,
2328 .write = apic_mmio_write,
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002329};
2330
Avi Kivitye9d90d42012-07-26 18:01:50 +03002331static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
2332{
2333 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03002334 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002335
Radim Krčmář5d87db72014-10-10 19:15:08 +02002336 apic_timer_expired(apic);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002337
Avi Kivity2a6eac92012-07-26 18:01:51 +03002338 if (lapic_is_periodic(apic)) {
Wanpeng Li8003c9a2016-10-24 18:23:13 +08002339 advance_periodic_target_expiration(apic);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002340 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
2341 return HRTIMER_RESTART;
2342 } else
2343 return HRTIMER_NORESTART;
2344}
2345
Sean Christophersonc3941d92019-04-17 10:15:33 -07002346int kvm_create_lapic(struct kvm_vcpu *vcpu, int timer_advance_ns)
Eddie Dong97222cc2007-09-12 10:58:04 +03002347{
2348 struct kvm_lapic *apic;
2349
2350 ASSERT(vcpu != NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03002351
Ben Gardon254272c2019-02-11 11:02:50 -08002352 apic = kzalloc(sizeof(*apic), GFP_KERNEL_ACCOUNT);
Eddie Dong97222cc2007-09-12 10:58:04 +03002353 if (!apic)
2354 goto nomem;
2355
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002356 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002357
Ben Gardon254272c2019-02-11 11:02:50 -08002358 apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09002359 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03002360 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
2361 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10002362 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002363 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002364 apic->vcpu = vcpu;
2365
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002366 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002367 HRTIMER_MODE_ABS_HARD);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002368 apic->lapic_timer.timer.function = apic_timer_fn;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002369 if (timer_advance_ns == -1) {
Wanpeng Lia0f00372019-09-26 08:54:03 +08002370 apic->lapic_timer.timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002371 lapic_timer_advance_dynamic = true;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002372 } else {
2373 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002374 lapic_timer_advance_dynamic = false;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002375 }
2376
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002377 /*
2378 * APIC is created enabled. This will prevent kvm_lapic_set_base from
Wei Yangee171d22019-03-31 19:17:22 -07002379 * thinking that APIC state has changed.
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002380 */
2381 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002382 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
Gregory Haskinsd76685c42009-06-01 12:54:50 -04002383 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03002384
2385 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10002386nomem_free_apic:
2387 kfree(apic);
Saar Amara251fb902019-05-06 11:29:16 +03002388 vcpu->arch.apic = NULL;
Eddie Dong97222cc2007-09-12 10:58:04 +03002389nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03002390 return -ENOMEM;
2391}
Eddie Dong97222cc2007-09-12 10:58:04 +03002392
2393int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
2394{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002395 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002396 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002397
Wanpeng Libb34e692019-07-02 17:25:02 +08002398 if (!kvm_apic_hw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03002399 return -1;
2400
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002401 __apic_update_ppr(apic, &ppr);
2402 return apic_has_interrupt_for_ppr(apic, ppr);
Eddie Dong97222cc2007-09-12 10:58:04 +03002403}
2404
Qing He40487c62007-09-17 14:47:13 +08002405int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
2406{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002407 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08002408
Gleb Natapovc48f1492012-08-05 15:58:33 +03002409 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Miaohe Lin3ce4dc12020-01-18 10:50:37 +08002410 return 1;
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04002411 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
2412 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
Miaohe Lin3ce4dc12020-01-18 10:50:37 +08002413 return 1;
2414 return 0;
Qing He40487c62007-09-17 14:47:13 +08002415}
2416
Eddie Dong1b9778d2007-09-03 16:56:58 +03002417void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
2418{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002419 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002420
Gleb Natapov54e98182012-08-05 15:58:32 +03002421 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002422 kvm_apic_inject_pending_timer_irqs(apic);
Jan Kiszkaf1ed0452013-04-28 14:00:41 +02002423 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002424 }
2425}
2426
Eddie Dong97222cc2007-09-12 10:58:04 +03002427int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
2428{
2429 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002430 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002431 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002432
2433 if (vector == -1)
2434 return -1;
2435
Wanpeng Li56cc2402014-08-05 12:42:24 +08002436 /*
2437 * We get here even with APIC virtualization enabled, if doing
2438 * nested virtualization and L1 runs with the "acknowledge interrupt
2439 * on exit" mode. Then we cannot inject the interrupt via RVI,
2440 * because the process would deliver it through the IDT.
2441 */
2442
Eddie Dong97222cc2007-09-12 10:58:04 +03002443 apic_clear_irr(vector, apic);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002444 if (test_bit(vector, vcpu_to_synic(vcpu)->auto_eoi_bitmap)) {
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002445 /*
2446 * For auto-EOI interrupts, there might be another pending
2447 * interrupt above PPR, so check whether to raise another
2448 * KVM_REQ_EVENT.
2449 */
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002450 apic_update_ppr(apic);
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002451 } else {
2452 /*
2453 * For normal interrupts, PPR has been raised and there cannot
2454 * be a higher-priority pending interrupt---except if there was
2455 * a concurrent interrupt injection, but that would have
2456 * triggered KVM_REQ_EVENT already.
2457 */
2458 apic_set_isr(vector, apic);
2459 __apic_update_ppr(apic, &ppr);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002460 }
2461
Eddie Dong97222cc2007-09-12 10:58:04 +03002462 return vector;
2463}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002464
Radim Krčmářa92e2542016-07-12 22:09:22 +02002465static int kvm_apic_state_fixup(struct kvm_vcpu *vcpu,
2466 struct kvm_lapic_state *s, bool set)
2467{
2468 if (apic_x2apic_mode(vcpu->arch.apic)) {
2469 u32 *id = (u32 *)(s->regs + APIC_ID);
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002470 u32 *ldr = (u32 *)(s->regs + APIC_LDR);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002471
Radim Krčmář371313132016-07-12 22:09:27 +02002472 if (vcpu->kvm->arch.x2apic_format) {
2473 if (*id != vcpu->vcpu_id)
2474 return -EINVAL;
2475 } else {
2476 if (set)
2477 *id >>= 24;
2478 else
2479 *id <<= 24;
2480 }
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002481
2482 /* In x2APIC mode, the LDR is fixed and based on the id */
2483 if (set)
2484 *ldr = kvm_apic_calc_x2apic_ldr(*id);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002485 }
2486
2487 return 0;
2488}
2489
2490int kvm_apic_get_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2491{
2492 memcpy(s->regs, vcpu->arch.apic->regs, sizeof(*s));
2493 return kvm_apic_state_fixup(vcpu, s, false);
2494}
2495
2496int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002497{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002498 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002499 int r;
2500
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03002501 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03002502 /* set SPIV separately to get count of SW disabled APICs right */
2503 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002504
2505 r = kvm_apic_state_fixup(vcpu, s, true);
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002506 if (r) {
2507 kvm_recalculate_apic_map(vcpu->kvm);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002508 return r;
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002509 }
Jordan Borgner0e96f312018-10-28 12:58:28 +00002510 memcpy(vcpu->arch.apic->regs, s->regs, sizeof(*s));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002511
Wanpeng Li4abaffc2020-02-26 10:41:02 +08002512 kvm_recalculate_apic_map(vcpu->kvm);
Gleb Natapovfc61b802009-07-05 17:39:35 +03002513 kvm_apic_set_version(vcpu);
2514
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002515 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002516 hrtimer_cancel(&apic->lapic_timer.timer);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002517 apic_update_lvtt(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002518 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002519 update_divide_count(apic);
2520 start_apic_timer(apic);
Suravee Suthikulpanitb26a6952019-11-14 14:15:04 -06002521 kvm_apic_update_apicv(vcpu);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002522 apic->highest_isr_cache = -1;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002523 if (vcpu->arch.apicv_active) {
Paolo Bonzini967235d2016-12-19 14:03:45 +01002524 kvm_x86_ops->apicv_post_state_restore(vcpu);
Wei Wang4114c272014-11-05 10:53:43 +08002525 kvm_x86_ops->hwapic_irr_update(vcpu,
2526 apic_find_highest_irr(apic));
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02002527 kvm_x86_ops->hwapic_isr_update(vcpu,
Tiejun Chenb4eef9b2014-12-22 10:32:57 +01002528 apic_find_highest_isr(apic));
Andrey Smetanind62caab2015-11-10 15:36:33 +03002529 }
Avi Kivity3842d132010-07-27 12:30:24 +03002530 kvm_make_request(KVM_REQ_EVENT, vcpu);
Steve Rutherford49df6392015-07-29 23:21:40 -07002531 if (ioapic_in_kernel(vcpu->kvm))
2532 kvm_rtc_eoi_tracking_restore_one(vcpu);
Radim Krčmář0669a512015-10-30 15:48:20 +01002533
2534 vcpu->arch.apic_arb_prio = 0;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002535
2536 return 0;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002537}
Eddie Donga3d7f852007-09-03 16:15:12 +03002538
Avi Kivity2f52d582008-01-16 12:49:30 +02002539void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03002540{
Eddie Donga3d7f852007-09-03 16:15:12 +03002541 struct hrtimer *timer;
2542
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002543 if (!lapic_in_kernel(vcpu) ||
2544 kvm_can_post_timer_interrupt(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03002545 return;
2546
Gleb Natapov54e98182012-08-05 15:58:32 +03002547 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03002548 if (hrtimer_cancel(timer))
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002549 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_HARD);
Eddie Donga3d7f852007-09-03 16:15:12 +03002550}
Avi Kivityb93463a2007-10-25 16:52:32 +02002551
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002552/*
2553 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
2554 *
2555 * Detect whether guest triggered PV EOI since the
2556 * last entry. If yes, set EOI on guests's behalf.
2557 * Clear PV EOI in guest memory in any case.
2558 */
2559static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
2560 struct kvm_lapic *apic)
2561{
2562 bool pending;
2563 int vector;
2564 /*
2565 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
2566 * and KVM_PV_EOI_ENABLED in guest memory as follows:
2567 *
2568 * KVM_APIC_PV_EOI_PENDING is unset:
2569 * -> host disabled PV EOI.
2570 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
2571 * -> host enabled PV EOI, guest did not execute EOI yet.
2572 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
2573 * -> host enabled PV EOI, guest executed EOI.
2574 */
2575 BUG_ON(!pv_eoi_enabled(vcpu));
2576 pending = pv_eoi_get_pending(vcpu);
2577 /*
2578 * Clear pending bit in any case: it will be set again on vmentry.
2579 * While this might not be ideal from performance point of view,
2580 * this makes sure pv eoi is only enabled when we know it's safe.
2581 */
2582 pv_eoi_clr_pending(vcpu);
2583 if (pending)
2584 return;
2585 vector = apic_set_eoi(apic);
2586 trace_kvm_pv_eoi(apic, vector);
2587}
2588
Avi Kivityb93463a2007-10-25 16:52:32 +02002589void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
2590{
2591 u32 data;
Avi Kivityb93463a2007-10-25 16:52:32 +02002592
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002593 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
2594 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
2595
Gleb Natapov41383772012-04-19 14:06:29 +03002596 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002597 return;
2598
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002599 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2600 sizeof(u32)))
Nicholas Krause603242a2015-08-05 10:44:40 -04002601 return;
Avi Kivityb93463a2007-10-25 16:52:32 +02002602
2603 apic_set_tpr(vcpu->arch.apic, data & 0xff);
2604}
2605
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002606/*
2607 * apic_sync_pv_eoi_to_guest - called before vmentry
2608 *
2609 * Detect whether it's safe to enable PV EOI and
2610 * if yes do so.
2611 */
2612static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
2613 struct kvm_lapic *apic)
2614{
2615 if (!pv_eoi_enabled(vcpu) ||
2616 /* IRR set or many bits in ISR: could be nested. */
2617 apic->irr_pending ||
2618 /* Cache not set: could be safe but we don't bother. */
2619 apic->highest_isr_cache == -1 ||
2620 /* Need EOI to update ioapic. */
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02002621 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002622 /*
2623 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
2624 * so we need not do anything here.
2625 */
2626 return;
2627 }
2628
2629 pv_eoi_set_pending(apic->vcpu);
2630}
2631
Avi Kivityb93463a2007-10-25 16:52:32 +02002632void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
2633{
2634 u32 data, tpr;
2635 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002636 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02002637
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002638 apic_sync_pv_eoi_to_guest(vcpu, apic);
2639
Gleb Natapov41383772012-04-19 14:06:29 +03002640 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002641 return;
2642
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002643 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02002644 max_irr = apic_find_highest_irr(apic);
2645 if (max_irr < 0)
2646 max_irr = 0;
2647 max_isr = apic_find_highest_isr(apic);
2648 if (max_isr < 0)
2649 max_isr = 0;
2650 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
2651
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002652 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2653 sizeof(u32));
Avi Kivityb93463a2007-10-25 16:52:32 +02002654}
2655
Andy Honigfda4e2e2013-11-20 10:23:22 -08002656int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
Avi Kivityb93463a2007-10-25 16:52:32 +02002657{
Andy Honigfda4e2e2013-11-20 10:23:22 -08002658 if (vapic_addr) {
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002659 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andy Honigfda4e2e2013-11-20 10:23:22 -08002660 &vcpu->arch.apic->vapic_cache,
2661 vapic_addr, sizeof(u32)))
2662 return -EINVAL;
Gleb Natapov41383772012-04-19 14:06:29 +03002663 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002664 } else {
Gleb Natapov41383772012-04-19 14:06:29 +03002665 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002666 }
2667
2668 vcpu->arch.apic->vapic_addr = vapic_addr;
2669 return 0;
Avi Kivityb93463a2007-10-25 16:52:32 +02002670}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002671
2672int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2673{
2674 struct kvm_lapic *apic = vcpu->arch.apic;
2675 u32 reg = (msr - APIC_BASE_MSR) << 4;
2676
Paolo Bonzini35754c92015-07-29 12:05:37 +02002677 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002678 return 1;
2679
Nadav Amitc69d3d92014-11-26 17:56:25 +02002680 if (reg == APIC_ICR2)
2681 return 1;
2682
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002683 /* if this is ICR write vector before command */
Radim Krčmářdecdc282014-11-26 17:07:05 +01002684 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002685 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2686 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002687}
2688
2689int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
2690{
2691 struct kvm_lapic *apic = vcpu->arch.apic;
2692 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
2693
Paolo Bonzini35754c92015-07-29 12:05:37 +02002694 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002695 return 1;
2696
Yi Wang0d888002019-07-06 01:08:48 +08002697 if (reg == APIC_DFR || reg == APIC_ICR2)
Nadav Amitc69d3d92014-11-26 17:56:25 +02002698 return 1;
Nadav Amitc69d3d92014-11-26 17:56:25 +02002699
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002700 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002701 return 1;
Radim Krčmářdecdc282014-11-26 17:07:05 +01002702 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002703 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002704
2705 *data = (((u64)high) << 32) | low;
2706
2707 return 0;
2708}
Gleb Natapov10388a02010-01-17 15:51:23 +02002709
2710int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
2711{
2712 struct kvm_lapic *apic = vcpu->arch.apic;
2713
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002714 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002715 return 1;
2716
2717 /* if this is ICR write vector before command */
2718 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002719 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2720 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov10388a02010-01-17 15:51:23 +02002721}
2722
2723int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
2724{
2725 struct kvm_lapic *apic = vcpu->arch.apic;
2726 u32 low, high = 0;
2727
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002728 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002729 return 1;
2730
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002731 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov10388a02010-01-17 15:51:23 +02002732 return 1;
2733 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002734 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov10388a02010-01-17 15:51:23 +02002735
2736 *data = (((u64)high) << 32) | low;
2737
2738 return 0;
2739}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002740
Ladi Prosek72bbf932018-10-16 18:49:59 +02002741int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002742{
2743 u64 addr = data & ~KVM_MSR_ENABLED;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002744 struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
2745 unsigned long new_len;
2746
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002747 if (!IS_ALIGNED(addr, 4))
2748 return 1;
2749
2750 vcpu->arch.pv_eoi.msr_val = data;
2751 if (!pv_eoi_enabled(vcpu))
2752 return 0;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002753
2754 if (addr == ghc->gpa && len <= ghc->len)
2755 new_len = ghc->len;
2756 else
2757 new_len = len;
2758
2759 return kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002760}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002761
Jan Kiszka66450a22013-03-13 12:42:34 +01002762void kvm_apic_accept_events(struct kvm_vcpu *vcpu)
2763{
2764 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01002765 u8 sipi_vector;
Gleb Natapov299018f2013-06-03 11:30:02 +03002766 unsigned long pe;
Jan Kiszka66450a22013-03-13 12:42:34 +01002767
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002768 if (!lapic_in_kernel(vcpu) || !apic->pending_events)
Jan Kiszka66450a22013-03-13 12:42:34 +01002769 return;
2770
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002771 /*
Liran Alon4b9852f2019-08-26 13:24:49 +03002772 * INITs are latched while CPU is in specific states
2773 * (SMM, VMX non-root mode, SVM with GIF=0).
2774 * Because a CPU cannot be in these states immediately
2775 * after it has processed an INIT signal (and thus in
2776 * KVM_MP_STATE_INIT_RECEIVED state), just eat SIPIs
2777 * and leave the INIT pending.
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002778 */
Liran Alon27cbe7d2019-11-11 11:16:40 +02002779 if (kvm_vcpu_latch_init(vcpu)) {
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002780 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
2781 if (test_bit(KVM_APIC_SIPI, &apic->pending_events))
2782 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
2783 return;
2784 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002785
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002786 pe = xchg(&apic->pending_events, 0);
Gleb Natapov299018f2013-06-03 11:30:02 +03002787 if (test_bit(KVM_APIC_INIT, &pe)) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002788 kvm_vcpu_reset(vcpu, true);
Jan Kiszka66450a22013-03-13 12:42:34 +01002789 if (kvm_vcpu_is_bsp(apic->vcpu))
2790 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2791 else
2792 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
2793 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002794 if (test_bit(KVM_APIC_SIPI, &pe) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01002795 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
2796 /* evaluate pending_events before reading the vector */
2797 smp_rmb();
2798 sipi_vector = apic->sipi_vector;
Jan Kiszka66450a22013-03-13 12:42:34 +01002799 kvm_vcpu_deliver_sipi_vector(vcpu, sipi_vector);
2800 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2801 }
2802}
2803
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002804void kvm_lapic_init(void)
2805{
2806 /* do not patch jump label more than once per second */
2807 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002808 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002809}
David Matlackcef84c32016-12-16 14:30:36 -08002810
2811void kvm_lapic_exit(void)
2812{
2813 static_key_deferred_flush(&apic_hw_disabled);
2814 static_key_deferred_flush(&apic_sw_disabled);
2815}