blob: 865edce27a6aa18884cca35778db2b38680f3c94 [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
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300167static void recalculate_apic_map(struct kvm *kvm)
168{
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
174 mutex_lock(&kvm->arch.apic_map_lock);
175
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200176 kvm_for_each_vcpu(i, vcpu, kvm)
177 if (kvm_apic_present(vcpu))
Radim Krčmář6e500432016-12-15 18:06:46 +0100178 max_id = max(max_id, kvm_x2apic_id(vcpu->arch.apic));
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200179
Michal Hockoa7c3e902017-05-08 15:57:09 -0700180 new = kvzalloc(sizeof(struct kvm_apic_map) +
Ben Gardon254272c2019-02-11 11:02:50 -0800181 sizeof(struct kvm_lapic *) * ((u64)max_id + 1),
182 GFP_KERNEL_ACCOUNT);
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200183
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300184 if (!new)
185 goto out;
186
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200187 new->max_apic_id = max_id;
188
Nadav Amit173beed2014-11-02 11:54:54 +0200189 kvm_for_each_vcpu(i, vcpu, kvm) {
190 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmáře45115b2016-07-12 22:09:19 +0200191 struct kvm_lapic **cluster;
192 u16 mask;
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100193 u32 ldr;
194 u8 xapic_id;
195 u32 x2apic_id;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300196
Radim Krčmářdf04d1d2015-01-29 22:33:35 +0100197 if (!kvm_apic_present(vcpu))
198 continue;
199
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100200 xapic_id = kvm_xapic_id(apic);
201 x2apic_id = kvm_x2apic_id(apic);
202
203 /* Hotplug hack: see kvm_apic_match_physical_addr(), ... */
204 if ((apic_x2apic_mode(apic) || x2apic_id > 0xff) &&
205 x2apic_id <= new->max_apic_id)
206 new->phys_map[x2apic_id] = apic;
207 /*
208 * ... xAPIC ID of VCPUs with APIC ID > 0xff will wrap-around,
209 * prevent them from masking VCPUs with APIC ID <= 0xff.
210 */
211 if (!apic_x2apic_mode(apic) && !new->phys_map[xapic_id])
212 new->phys_map[xapic_id] = apic;
Radim Krčmář3548a252015-02-12 19:41:33 +0100213
Radim Krcmarb14c8762019-08-13 23:37:37 -0400214 if (!kvm_apic_sw_enabled(apic))
215 continue;
216
Radim Krčmář6e500432016-12-15 18:06:46 +0100217 ldr = kvm_lapic_get_reg(apic, APIC_LDR);
218
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100219 if (apic_x2apic_mode(apic)) {
220 new->mode |= KVM_APIC_MODE_X2APIC;
221 } else if (ldr) {
222 ldr = GET_APIC_LOGICAL_ID(ldr);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500223 if (kvm_lapic_get_reg(apic, APIC_DFR) == APIC_DFR_FLAT)
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100224 new->mode |= KVM_APIC_MODE_XAPIC_FLAT;
225 else
226 new->mode |= KVM_APIC_MODE_XAPIC_CLUSTER;
227 }
228
Radim Krčmáře45115b2016-07-12 22:09:19 +0200229 if (!kvm_apic_map_get_logical_dest(new, ldr, &cluster, &mask))
Radim Krčmář3548a252015-02-12 19:41:33 +0100230 continue;
231
Radim Krčmáře45115b2016-07-12 22:09:19 +0200232 if (mask)
233 cluster[ffs(mask) - 1] = apic;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300234 }
235out:
236 old = rcu_dereference_protected(kvm->arch.apic_map,
237 lockdep_is_held(&kvm->arch.apic_map_lock));
238 rcu_assign_pointer(kvm->arch.apic_map, new);
239 mutex_unlock(&kvm->arch.apic_map_lock);
240
241 if (old)
Radim Krčmářaf1bae52016-07-12 22:09:30 +0200242 call_rcu(&old->rcu, kvm_apic_map_free);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800243
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700244 kvm_make_scan_ioapic_request(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300245}
246
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300247static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
248{
Radim Krčmáře4627552014-10-30 15:06:45 +0100249 bool enabled = val & APIC_SPIV_APIC_ENABLED;
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300250
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500251 kvm_lapic_set_reg(apic, APIC_SPIV, val);
Radim Krčmáře4627552014-10-30 15:06:45 +0100252
253 if (enabled != apic->sw_enabled) {
254 apic->sw_enabled = enabled;
Peng Haoeb1ff0a2018-12-04 17:42:50 +0800255 if (enabled)
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300256 static_key_slow_dec_deferred(&apic_sw_disabled);
Peng Haoeb1ff0a2018-12-04 17:42:50 +0800257 else
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300258 static_key_slow_inc(&apic_sw_disabled.key);
Radim Krcmarb14c8762019-08-13 23:37:37 -0400259
260 recalculate_apic_map(apic->vcpu->kvm);
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300261 }
262}
263
Radim Krčmářa92e2542016-07-12 22:09:22 +0200264static inline void kvm_apic_set_xapic_id(struct kvm_lapic *apic, u8 id)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300265{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500266 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300267 recalculate_apic_map(apic->vcpu->kvm);
268}
269
270static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
271{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500272 kvm_lapic_set_reg(apic, APIC_LDR, id);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300273 recalculate_apic_map(apic->vcpu->kvm);
274}
275
Dr. David Alan Gilberte872fa92017-11-17 11:52:49 +0000276static inline u32 kvm_apic_calc_x2apic_ldr(u32 id)
277{
278 return ((id >> 4) << 16) | (1 << (id & 0xf));
279}
280
Radim Krčmářa92e2542016-07-12 22:09:22 +0200281static inline void kvm_apic_set_x2apic_id(struct kvm_lapic *apic, u32 id)
Radim Krčmář257b9a52015-05-22 18:45:11 +0200282{
Dr. David Alan Gilberte872fa92017-11-17 11:52:49 +0000283 u32 ldr = kvm_apic_calc_x2apic_ldr(id);
Radim Krčmář257b9a52015-05-22 18:45:11 +0200284
Radim Krčmář6e500432016-12-15 18:06:46 +0100285 WARN_ON_ONCE(id != apic->vcpu->vcpu_id);
286
Radim Krčmářa92e2542016-07-12 22:09:22 +0200287 kvm_lapic_set_reg(apic, APIC_ID, id);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500288 kvm_lapic_set_reg(apic, APIC_LDR, ldr);
Radim Krčmář257b9a52015-05-22 18:45:11 +0200289 recalculate_apic_map(apic->vcpu->kvm);
290}
291
Eddie Dong97222cc2007-09-12 10:58:04 +0300292static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
293{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500294 return !(kvm_lapic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300295}
296
297static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
298{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500299 return kvm_lapic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
Eddie Dong97222cc2007-09-12 10:58:04 +0300300}
301
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800302static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
303{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100304 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800305}
306
Eddie Dong97222cc2007-09-12 10:58:04 +0300307static inline int apic_lvtt_period(struct kvm_lapic *apic)
308{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100309 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800310}
311
312static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
313{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100314 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300315}
316
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200317static inline int apic_lvt_nmi_mode(u32 lvt_val)
318{
319 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
320}
321
Gleb Natapovfc61b802009-07-05 17:39:35 +0300322void kvm_apic_set_version(struct kvm_vcpu *vcpu)
323{
324 struct kvm_lapic *apic = vcpu->arch.apic;
325 struct kvm_cpuid_entry2 *feat;
326 u32 v = APIC_VERSION;
327
Paolo Bonzinibce87cc2016-01-08 13:48:51 +0100328 if (!lapic_in_kernel(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300329 return;
330
Vitaly Kuznetsov0bcc3fb2018-02-09 14:01:33 +0100331 /*
332 * KVM emulates 82093AA datasheet (with in-kernel IOAPIC implementation)
333 * which doesn't have EOI register; Some buggy OSes (e.g. Windows with
334 * Hyper-V role) disable EOI broadcast in lapic not checking for IOAPIC
335 * version first and level-triggered interrupts never get EOIed in
336 * IOAPIC.
337 */
Gleb Natapovfc61b802009-07-05 17:39:35 +0300338 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
Vitaly Kuznetsov0bcc3fb2018-02-09 14:01:33 +0100339 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))) &&
340 !ioapic_in_kernel(vcpu->kvm))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300341 v |= APIC_LVR_DIRECTED_EOI;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500342 kvm_lapic_set_reg(apic, APIC_LVR, v);
Gleb Natapovfc61b802009-07-05 17:39:35 +0300343}
344
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500345static const unsigned int apic_lvt_mask[KVM_APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800346 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300347 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
348 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
349 LINT_MASK, LINT_MASK, /* LVT0-1 */
350 LVT_MASK /* LVTERR */
351};
352
353static int find_highest_vector(void *bitmap)
354{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900355 int vec;
356 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300357
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900358 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
359 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
360 reg = bitmap + REG_POS(vec);
361 if (*reg)
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100362 return __fls(*reg) + vec;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900363 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300364
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900365 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300366}
367
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300368static u8 count_vectors(void *bitmap)
369{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900370 int vec;
371 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300372 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900373
374 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
375 reg = bitmap + REG_POS(vec);
376 count += hweight32(*reg);
377 }
378
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300379 return count;
380}
381
Liran Alone7387b02017-12-24 18:12:54 +0200382bool __kvm_apic_update_irr(u32 *pir, void *regs, int *max_irr)
Yang Zhanga20ed542013-04-11 19:25:15 +0800383{
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100384 u32 i, vec;
Liran Alone7387b02017-12-24 18:12:54 +0200385 u32 pir_val, irr_val, prev_irr_val;
386 int max_updated_irr;
387
388 max_updated_irr = -1;
389 *max_irr = -1;
Yang Zhanga20ed542013-04-11 19:25:15 +0800390
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100391 for (i = vec = 0; i <= 7; i++, vec += 32) {
Paolo Bonziniad361092016-09-20 16:15:05 +0200392 pir_val = READ_ONCE(pir[i]);
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100393 irr_val = *((u32 *)(regs + APIC_IRR + i * 0x10));
Paolo Bonziniad361092016-09-20 16:15:05 +0200394 if (pir_val) {
Liran Alone7387b02017-12-24 18:12:54 +0200395 prev_irr_val = irr_val;
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100396 irr_val |= xchg(&pir[i], 0);
397 *((u32 *)(regs + APIC_IRR + i * 0x10)) = irr_val;
Liran Alone7387b02017-12-24 18:12:54 +0200398 if (prev_irr_val != irr_val) {
399 max_updated_irr =
400 __fls(irr_val ^ prev_irr_val) + vec;
401 }
Paolo Bonziniad361092016-09-20 16:15:05 +0200402 }
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100403 if (irr_val)
Liran Alone7387b02017-12-24 18:12:54 +0200404 *max_irr = __fls(irr_val) + vec;
Yang Zhanga20ed542013-04-11 19:25:15 +0800405 }
Paolo Bonzini810e6de2016-12-19 13:05:46 +0100406
Liran Alone7387b02017-12-24 18:12:54 +0200407 return ((max_updated_irr != -1) &&
408 (max_updated_irr == *max_irr));
Yang Zhanga20ed542013-04-11 19:25:15 +0800409}
Wincy Van705699a2015-02-03 23:58:17 +0800410EXPORT_SYMBOL_GPL(__kvm_apic_update_irr);
411
Liran Alone7387b02017-12-24 18:12:54 +0200412bool kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir, int *max_irr)
Wincy Van705699a2015-02-03 23:58:17 +0800413{
414 struct kvm_lapic *apic = vcpu->arch.apic;
415
Liran Alone7387b02017-12-24 18:12:54 +0200416 return __kvm_apic_update_irr(pir, apic->regs, max_irr);
Wincy Van705699a2015-02-03 23:58:17 +0800417}
Yang Zhanga20ed542013-04-11 19:25:15 +0800418EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
419
Gleb Natapov33e4c682009-06-11 11:06:51 +0300420static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300421{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300422 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300423}
424
425static inline int apic_find_highest_irr(struct kvm_lapic *apic)
426{
427 int result;
428
Yang Zhangc7c9c562013-01-25 10:18:51 +0800429 /*
430 * Note that irr_pending is just a hint. It will be always
431 * true with virtual interrupt delivery enabled.
432 */
Gleb Natapov33e4c682009-06-11 11:06:51 +0300433 if (!apic->irr_pending)
434 return -1;
435
436 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300437 ASSERT(result == -1 || result >= 16);
438
439 return result;
440}
441
Gleb Natapov33e4c682009-06-11 11:06:51 +0300442static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
443{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800444 struct kvm_vcpu *vcpu;
445
446 vcpu = apic->vcpu;
447
Andrey Smetanind62caab2015-11-10 15:36:33 +0300448 if (unlikely(vcpu->arch.apicv_active)) {
Paolo Bonzinib95234c2016-12-19 13:57:33 +0100449 /* need to update RVI */
Wei Yangee171d22019-03-31 19:17:22 -0700450 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
Paolo Bonzinib95234c2016-12-19 13:57:33 +0100451 kvm_x86_ops->hwapic_irr_update(vcpu,
452 apic_find_highest_irr(apic));
Nadav Amitf210f752014-11-16 23:49:07 +0200453 } else {
454 apic->irr_pending = false;
Wei Yangee171d22019-03-31 19:17:22 -0700455 kvm_lapic_clear_vector(vec, apic->regs + APIC_IRR);
Nadav Amitf210f752014-11-16 23:49:07 +0200456 if (apic_search_irr(apic) != -1)
457 apic->irr_pending = true;
Wanpeng Li56cc2402014-08-05 12:42:24 +0800458 }
Gleb Natapov33e4c682009-06-11 11:06:51 +0300459}
460
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300461static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
462{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800463 struct kvm_vcpu *vcpu;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200464
Wanpeng Li56cc2402014-08-05 12:42:24 +0800465 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
466 return;
467
468 vcpu = apic->vcpu;
469
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300470 /*
Wanpeng Li56cc2402014-08-05 12:42:24 +0800471 * With APIC virtualization enabled, all caching is disabled
472 * because the processor can modify ISR under the hood. Instead
473 * just set SVI.
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300474 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300475 if (unlikely(vcpu->arch.apicv_active))
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +0200476 kvm_x86_ops->hwapic_isr_update(vcpu, vec);
Wanpeng Li56cc2402014-08-05 12:42:24 +0800477 else {
478 ++apic->isr_count;
479 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
480 /*
481 * ISR (in service register) bit is set when injecting an interrupt.
482 * The highest vector is injected. Thus the latest bit set matches
483 * the highest bit in ISR.
484 */
485 apic->highest_isr_cache = vec;
486 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300487}
488
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200489static inline int apic_find_highest_isr(struct kvm_lapic *apic)
490{
491 int result;
492
493 /*
494 * Note that isr_count is always 1, and highest_isr_cache
495 * is always -1, with APIC virtualization enabled.
496 */
497 if (!apic->isr_count)
498 return -1;
499 if (likely(apic->highest_isr_cache != -1))
500 return apic->highest_isr_cache;
501
502 result = find_highest_vector(apic->regs + APIC_ISR);
503 ASSERT(result == -1 || result >= 16);
504
505 return result;
506}
507
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300508static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
509{
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200510 struct kvm_vcpu *vcpu;
511 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
512 return;
513
514 vcpu = apic->vcpu;
515
516 /*
517 * We do get here for APIC virtualization enabled if the guest
518 * uses the Hyper-V APIC enlightenment. In this case we may need
519 * to trigger a new interrupt delivery by writing the SVI field;
520 * on the other hand isr_count and highest_isr_cache are unused
521 * and must be left alone.
522 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300523 if (unlikely(vcpu->arch.apicv_active))
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +0200524 kvm_x86_ops->hwapic_isr_update(vcpu,
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200525 apic_find_highest_isr(apic));
526 else {
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300527 --apic->isr_count;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200528 BUG_ON(apic->isr_count < 0);
529 apic->highest_isr_cache = -1;
530 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300531}
532
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800533int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
534{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300535 /* This may race with setting of irr in __apic_accept_irq() and
536 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
537 * will cause vmexit immediately and the value will be recalculated
538 * on the next vmentry.
539 */
Paolo Bonzinif8543d62016-01-08 13:42:24 +0100540 return apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800541}
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100542EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800543
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200544static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +0800545 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100546 struct dest_map *dest_map);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200547
Yang Zhangb4f22252013-04-11 19:21:37 +0800548int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100549 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +0300550{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800551 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800552
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200553 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
Yang Zhangb4f22252013-04-11 19:21:37 +0800554 irq->level, irq->trig_mode, dest_map);
Eddie Dong97222cc2007-09-12 10:58:04 +0300555}
556
Miaohe Lin1a686232019-11-09 17:46:49 +0800557static int __pv_send_ipi(unsigned long *ipi_bitmap, struct kvm_apic_map *map,
558 struct kvm_lapic_irq *irq, u32 min)
559{
560 int i, count = 0;
561 struct kvm_vcpu *vcpu;
562
563 if (min > map->max_apic_id)
564 return 0;
565
566 for_each_set_bit(i, ipi_bitmap,
567 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
568 if (map->phys_map[min + i]) {
569 vcpu = map->phys_map[min + i]->vcpu;
570 count += kvm_apic_set_irq(vcpu, irq, NULL);
571 }
572 }
573
574 return count;
575}
576
Wanpeng Li4180bf12018-07-23 14:39:54 +0800577int kvm_pv_send_ipi(struct kvm *kvm, unsigned long ipi_bitmap_low,
Wanpeng Libdf7ffc2018-08-30 10:03:30 +0800578 unsigned long ipi_bitmap_high, u32 min,
Wanpeng Li4180bf12018-07-23 14:39:54 +0800579 unsigned long icr, int op_64_bit)
580{
Wanpeng Li4180bf12018-07-23 14:39:54 +0800581 struct kvm_apic_map *map;
Wanpeng Li4180bf12018-07-23 14:39:54 +0800582 struct kvm_lapic_irq irq = {0};
583 int cluster_size = op_64_bit ? 64 : 32;
Miaohe Lin1a686232019-11-09 17:46:49 +0800584 int count;
585
586 if (icr & (APIC_DEST_MASK | APIC_SHORT_MASK))
587 return -KVM_EINVAL;
Wanpeng Li4180bf12018-07-23 14:39:54 +0800588
589 irq.vector = icr & APIC_VECTOR_MASK;
590 irq.delivery_mode = icr & APIC_MODE_MASK;
591 irq.level = (icr & APIC_INT_ASSERT) != 0;
592 irq.trig_mode = icr & APIC_INT_LEVELTRIG;
593
Wanpeng Li4180bf12018-07-23 14:39:54 +0800594 rcu_read_lock();
595 map = rcu_dereference(kvm->arch.apic_map);
596
Miaohe Lin1a686232019-11-09 17:46:49 +0800597 count = -EOPNOTSUPP;
598 if (likely(map)) {
599 count = __pv_send_ipi(&ipi_bitmap_low, map, &irq, min);
600 min += cluster_size;
601 count += __pv_send_ipi(&ipi_bitmap_high, map, &irq, min);
Wanpeng Li38ab0122018-11-20 09:39:30 +0800602 }
603
Wanpeng Li4180bf12018-07-23 14:39:54 +0800604 rcu_read_unlock();
605 return count;
606}
607
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300608static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
609{
Paolo Bonzini4e335d92017-05-02 16:20:18 +0200610
611 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
612 sizeof(val));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300613}
614
615static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
616{
Paolo Bonzini4e335d92017-05-02 16:20:18 +0200617
618 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
619 sizeof(*val));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300620}
621
622static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
623{
624 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
625}
626
627static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
628{
629 u8 val;
630 if (pv_eoi_get_user(vcpu, &val) < 0)
Yi Wang0d888002019-07-06 01:08:48 +0800631 printk(KERN_WARNING "Can't read EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800632 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300633 return val & 0x1;
634}
635
636static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
637{
638 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800639 printk(KERN_WARNING "Can't set EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800640 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300641 return;
642 }
643 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
644}
645
646static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
647{
648 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
Yi Wang0d888002019-07-06 01:08:48 +0800649 printk(KERN_WARNING "Can't clear EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800650 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300651 return;
652 }
653 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
654}
655
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100656static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
657{
Paolo Bonzini3d927892016-12-19 13:29:03 +0100658 int highest_irr;
Liran Alonfa59cc02017-12-24 18:12:53 +0200659 if (apic->vcpu->arch.apicv_active)
Paolo Bonzini76dfafd52016-12-19 17:17:11 +0100660 highest_irr = kvm_x86_ops->sync_pir_to_irr(apic->vcpu);
661 else
662 highest_irr = apic_find_highest_irr(apic);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100663 if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
664 return -1;
665 return highest_irr;
666}
667
668static bool __apic_update_ppr(struct kvm_lapic *apic, u32 *new_ppr)
Eddie Dong97222cc2007-09-12 10:58:04 +0300669{
Avi Kivity3842d132010-07-27 12:30:24 +0300670 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300671 int isr;
672
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500673 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
674 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300675 isr = apic_find_highest_isr(apic);
676 isrv = (isr != -1) ? isr : 0;
677
678 if ((tpr & 0xf0) >= (isrv & 0xf0))
679 ppr = tpr & 0xff;
680 else
681 ppr = isrv & 0xf0;
682
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100683 *new_ppr = ppr;
684 if (old_ppr != ppr)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500685 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100686
687 return ppr < old_ppr;
688}
689
690static void apic_update_ppr(struct kvm_lapic *apic)
691{
692 u32 ppr;
693
Paolo Bonzini26fbbee2016-12-18 13:54:58 +0100694 if (__apic_update_ppr(apic, &ppr) &&
695 apic_has_interrupt_for_ppr(apic, ppr) != -1)
Paolo Bonzinib3c045d2016-12-18 21:47:54 +0100696 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300697}
698
Paolo Bonzinieb90f342016-12-18 14:02:21 +0100699void kvm_apic_update_ppr(struct kvm_vcpu *vcpu)
700{
701 apic_update_ppr(vcpu->arch.apic);
702}
703EXPORT_SYMBOL_GPL(kvm_apic_update_ppr);
704
Eddie Dong97222cc2007-09-12 10:58:04 +0300705static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
706{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500707 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
Eddie Dong97222cc2007-09-12 10:58:04 +0300708 apic_update_ppr(apic);
709}
710
Radim Krčmář03d22492015-02-12 19:41:31 +0100711static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300712{
Radim Krčmářb4535b52016-12-15 18:06:47 +0100713 return mda == (apic_x2apic_mode(apic) ?
714 X2APIC_BROADCAST : APIC_BROADCAST);
Eddie Dong97222cc2007-09-12 10:58:04 +0300715}
716
Radim Krčmář03d22492015-02-12 19:41:31 +0100717static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
Nadav Amit394457a2014-10-03 00:30:52 +0300718{
Radim Krčmář03d22492015-02-12 19:41:31 +0100719 if (kvm_apic_broadcast(apic, mda))
720 return true;
721
722 if (apic_x2apic_mode(apic))
Radim Krčmář6e500432016-12-15 18:06:46 +0100723 return mda == kvm_x2apic_id(apic);
Radim Krčmář03d22492015-02-12 19:41:31 +0100724
Radim Krčmář5bd5db32016-12-15 18:06:48 +0100725 /*
726 * Hotplug hack: Make LAPIC in xAPIC mode also accept interrupts as if
727 * it were in x2APIC mode. Hotplugged VCPUs start in xAPIC mode and
728 * this allows unique addressing of VCPUs with APIC ID over 0xff.
729 * The 0xff condition is needed because writeable xAPIC ID.
730 */
731 if (kvm_x2apic_id(apic) > 0xff && mda == kvm_x2apic_id(apic))
732 return true;
733
Radim Krčmářb4535b52016-12-15 18:06:47 +0100734 return mda == kvm_xapic_id(apic);
Nadav Amit394457a2014-10-03 00:30:52 +0300735}
736
Radim Krčmář52c233a2015-01-29 22:48:48 +0100737static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300738{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300739 u32 logical_id;
740
Nadav Amit394457a2014-10-03 00:30:52 +0300741 if (kvm_apic_broadcast(apic, mda))
Radim Krčmář9368b562015-01-29 22:48:49 +0100742 return true;
Nadav Amit394457a2014-10-03 00:30:52 +0300743
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500744 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300745
Radim Krčmář9368b562015-01-29 22:48:49 +0100746 if (apic_x2apic_mode(apic))
Radim Krčmář8a395362015-01-29 22:48:51 +0100747 return ((logical_id >> 16) == (mda >> 16))
748 && (logical_id & mda & 0xffff) != 0;
Radim Krčmář9368b562015-01-29 22:48:49 +0100749
750 logical_id = GET_APIC_LOGICAL_ID(logical_id);
Eddie Dong97222cc2007-09-12 10:58:04 +0300751
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500752 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300753 case APIC_DFR_FLAT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100754 return (logical_id & mda) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300755 case APIC_DFR_CLUSTER:
Radim Krčmář9368b562015-01-29 22:48:49 +0100756 return ((logical_id >> 4) == (mda >> 4))
757 && (logical_id & mda & 0xf) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300758 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100759 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300760 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300761}
762
Radim Krčmářc5192652016-07-12 22:09:28 +0200763/* The KVM local APIC implementation has two quirks:
764 *
Radim Krčmářb4535b52016-12-15 18:06:47 +0100765 * - Real hardware delivers interrupts destined to x2APIC ID > 0xff to LAPICs
766 * in xAPIC mode if the "destination & 0xff" matches its xAPIC ID.
767 * KVM doesn't do that aliasing.
Radim Krčmářc5192652016-07-12 22:09:28 +0200768 *
769 * - in-kernel IOAPIC messages have to be delivered directly to
770 * x2APIC, because the kernel does not support interrupt remapping.
771 * In order to support broadcast without interrupt remapping, x2APIC
772 * rewrites the destination of non-IPI messages from APIC_BROADCAST
773 * to X2APIC_BROADCAST.
774 *
775 * The broadcast quirk can be disabled with KVM_CAP_X2APIC_API. This is
776 * important when userspace wants to use x2APIC-format MSIs, because
777 * APIC_BROADCAST (0xff) is a legal route for "cluster 0, CPUs 0-7".
Radim Krčmář03d22492015-02-12 19:41:31 +0100778 */
Radim Krčmářc5192652016-07-12 22:09:28 +0200779static u32 kvm_apic_mda(struct kvm_vcpu *vcpu, unsigned int dest_id,
780 struct kvm_lapic *source, struct kvm_lapic *target)
Radim Krčmář03d22492015-02-12 19:41:31 +0100781{
782 bool ipi = source != NULL;
Radim Krčmář03d22492015-02-12 19:41:31 +0100783
Radim Krčmářc5192652016-07-12 22:09:28 +0200784 if (!vcpu->kvm->arch.x2apic_broadcast_quirk_disabled &&
Radim Krčmářb4535b52016-12-15 18:06:47 +0100785 !ipi && dest_id == APIC_BROADCAST && apic_x2apic_mode(target))
Radim Krčmář03d22492015-02-12 19:41:31 +0100786 return X2APIC_BROADCAST;
787
Radim Krčmářb4535b52016-12-15 18:06:47 +0100788 return dest_id;
Radim Krčmář03d22492015-02-12 19:41:31 +0100789}
790
Radim Krčmář52c233a2015-01-29 22:48:48 +0100791bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Peter Xu5c69d5c2019-12-04 20:07:20 +0100792 int shorthand, unsigned int dest, int dest_mode)
Eddie Dong97222cc2007-09-12 10:58:04 +0300793{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800794 struct kvm_lapic *target = vcpu->arch.apic;
Radim Krčmářc5192652016-07-12 22:09:28 +0200795 u32 mda = kvm_apic_mda(vcpu, dest, source, target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300796
Zachary Amsdenbd371392010-06-14 11:42:15 -1000797 ASSERT(target);
Peter Xu5c69d5c2019-12-04 20:07:20 +0100798 switch (shorthand) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300799 case APIC_DEST_NOSHORT:
Radim Krčmář3697f302015-01-29 22:48:50 +0100800 if (dest_mode == APIC_DEST_PHYSICAL)
Radim Krčmář03d22492015-02-12 19:41:31 +0100801 return kvm_apic_match_physical_addr(target, mda);
Gleb Natapov343f94f2009-03-05 16:34:54 +0200802 else
Radim Krčmář03d22492015-02-12 19:41:31 +0100803 return kvm_apic_match_logical_addr(target, mda);
Eddie Dong97222cc2007-09-12 10:58:04 +0300804 case APIC_DEST_SELF:
Radim Krčmář9368b562015-01-29 22:48:49 +0100805 return target == source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300806 case APIC_DEST_ALLINC:
Radim Krčmář9368b562015-01-29 22:48:49 +0100807 return true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300808 case APIC_DEST_ALLBUT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100809 return target != source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300810 default:
Radim Krčmář9368b562015-01-29 22:48:49 +0100811 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300812 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300813}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500814EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
Eddie Dong97222cc2007-09-12 10:58:04 +0300815
Feng Wu520040142016-01-25 16:53:33 +0800816int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
817 const unsigned long *bitmap, u32 bitmap_size)
818{
819 u32 mod;
820 int i, idx = -1;
821
822 mod = vector % dest_vcpus;
823
824 for (i = 0; i <= mod; i++) {
825 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
826 BUG_ON(idx == bitmap_size);
827 }
828
829 return idx;
830}
831
Radim Krčmář4efd8052016-02-12 15:00:15 +0100832static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
833{
834 if (!kvm->arch.disabled_lapic_found) {
835 kvm->arch.disabled_lapic_found = true;
836 printk(KERN_INFO
837 "Disabled LAPIC found during irq injection\n");
838 }
839}
840
Radim Krčmářc5192652016-07-12 22:09:28 +0200841static bool kvm_apic_is_broadcast_dest(struct kvm *kvm, struct kvm_lapic **src,
842 struct kvm_lapic_irq *irq, struct kvm_apic_map *map)
843{
844 if (kvm->arch.x2apic_broadcast_quirk_disabled) {
845 if ((irq->dest_id == APIC_BROADCAST &&
846 map->mode != KVM_APIC_MODE_X2APIC))
847 return true;
848 if (irq->dest_id == X2APIC_BROADCAST)
849 return true;
850 } else {
851 bool x2apic_ipi = src && *src && apic_x2apic_mode(*src);
852 if (irq->dest_id == (x2apic_ipi ?
853 X2APIC_BROADCAST : APIC_BROADCAST))
854 return true;
855 }
856
857 return false;
858}
859
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200860/* Return true if the interrupt can be handled by using *bitmap as index mask
861 * for valid destinations in *dst array.
862 * Return false if kvm_apic_map_get_dest_lapic did nothing useful.
863 * Note: we may have zero kvm_lapic destinations when we return true, which
864 * means that the interrupt should be dropped. In this case, *bitmap would be
865 * zero and *dst undefined.
866 */
867static inline bool kvm_apic_map_get_dest_lapic(struct kvm *kvm,
868 struct kvm_lapic **src, struct kvm_lapic_irq *irq,
869 struct kvm_apic_map *map, struct kvm_lapic ***dst,
870 unsigned long *bitmap)
871{
872 int i, lowest;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200873
874 if (irq->shorthand == APIC_DEST_SELF && src) {
875 *dst = src;
876 *bitmap = 1;
877 return true;
878 } else if (irq->shorthand)
879 return false;
880
Radim Krčmářc5192652016-07-12 22:09:28 +0200881 if (!map || kvm_apic_is_broadcast_dest(kvm, src, irq, map))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200882 return false;
883
884 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
Radim Krčmář0ca52e72016-07-12 22:09:20 +0200885 if (irq->dest_id > map->max_apic_id) {
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200886 *bitmap = 0;
887 } else {
Paolo Bonzini1d487e92019-04-11 11:16:47 +0200888 u32 dest_id = array_index_nospec(irq->dest_id, map->max_apic_id + 1);
889 *dst = &map->phys_map[dest_id];
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200890 *bitmap = 1;
891 }
892 return true;
893 }
894
Radim Krčmáře45115b2016-07-12 22:09:19 +0200895 *bitmap = 0;
896 if (!kvm_apic_map_get_logical_dest(map, irq->dest_id, dst,
897 (u16 *)bitmap))
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200898 return false;
899
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200900 if (!kvm_lowest_prio_delivery(irq))
901 return true;
902
903 if (!kvm_vector_hashing_enabled()) {
904 lowest = -1;
905 for_each_set_bit(i, bitmap, 16) {
906 if (!(*dst)[i])
907 continue;
908 if (lowest < 0)
909 lowest = i;
910 else if (kvm_apic_compare_prio((*dst)[i]->vcpu,
911 (*dst)[lowest]->vcpu) < 0)
912 lowest = i;
913 }
914 } else {
915 if (!*bitmap)
916 return true;
917
918 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap),
919 bitmap, 16);
920
921 if (!(*dst)[lowest]) {
922 kvm_apic_disabled_lapic_found(kvm);
923 *bitmap = 0;
924 return true;
925 }
926 }
927
928 *bitmap = (lowest >= 0) ? 1 << lowest : 0;
929
930 return true;
931}
932
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300933bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100934 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300935{
936 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200937 unsigned long bitmap;
938 struct kvm_lapic **dst = NULL;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300939 int i;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200940 bool ret;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300941
942 *r = -1;
943
944 if (irq->shorthand == APIC_DEST_SELF) {
Yang Zhangb4f22252013-04-11 19:21:37 +0800945 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300946 return true;
947 }
948
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300949 rcu_read_lock();
950 map = rcu_dereference(kvm->arch.apic_map);
951
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200952 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dst, &bitmap);
Paolo Bonzini0624fca2018-10-01 16:07:18 +0200953 if (ret) {
954 *r = 0;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200955 for_each_set_bit(i, &bitmap, 16) {
956 if (!dst[i])
957 continue;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200958 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
Radim Krčmář3548a252015-02-12 19:41:33 +0100959 }
Paolo Bonzini0624fca2018-10-01 16:07:18 +0200960 }
Radim Krčmář3548a252015-02-12 19:41:33 +0100961
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300962 rcu_read_unlock();
963 return ret;
964}
965
Feng Wu6228a0d2016-01-25 16:53:34 +0800966/*
Miaohe Lin00116792019-12-11 14:26:23 +0800967 * This routine tries to handle interrupts in posted mode, here is how
Feng Wu6228a0d2016-01-25 16:53:34 +0800968 * it deals with different cases:
969 * - For single-destination interrupts, handle it in posted mode
970 * - Else if vector hashing is enabled and it is a lowest-priority
971 * interrupt, handle it in posted mode and use the following mechanism
Miaohe Lin67b0ae42019-12-11 14:26:22 +0800972 * to find the destination vCPU.
Feng Wu6228a0d2016-01-25 16:53:34 +0800973 * 1. For lowest-priority interrupts, store all the possible
974 * destination vCPUs in an array.
975 * 2. Use "guest vector % max number of destination vCPUs" to find
976 * the right destination vCPU in the array for the lowest-priority
977 * interrupt.
978 * - Otherwise, use remapped mode to inject the interrupt.
979 */
Feng Wu8feb4a02015-09-18 22:29:47 +0800980bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
981 struct kvm_vcpu **dest_vcpu)
982{
983 struct kvm_apic_map *map;
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200984 unsigned long bitmap;
985 struct kvm_lapic **dst = NULL;
Feng Wu8feb4a02015-09-18 22:29:47 +0800986 bool ret = false;
Feng Wu8feb4a02015-09-18 22:29:47 +0800987
988 if (irq->shorthand)
989 return false;
990
991 rcu_read_lock();
992 map = rcu_dereference(kvm->arch.apic_map);
993
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200994 if (kvm_apic_map_get_dest_lapic(kvm, NULL, irq, map, &dst, &bitmap) &&
995 hweight16(bitmap) == 1) {
996 unsigned long i = find_first_bit(&bitmap, 16);
Feng Wu8feb4a02015-09-18 22:29:47 +0800997
Radim Krčmář64aa47b2016-07-12 22:09:18 +0200998 if (dst[i]) {
999 *dest_vcpu = dst[i]->vcpu;
1000 ret = true;
Feng Wu8feb4a02015-09-18 22:29:47 +08001001 }
Feng Wu8feb4a02015-09-18 22:29:47 +08001002 }
1003
Feng Wu8feb4a02015-09-18 22:29:47 +08001004 rcu_read_unlock();
1005 return ret;
1006}
1007
Eddie Dong97222cc2007-09-12 10:58:04 +03001008/*
1009 * Add a pending IRQ into lapic.
1010 * Return 1 if successfully added and 0 if discarded.
1011 */
1012static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +08001013 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001014 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +03001015{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001016 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +03001017 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +03001018
Paolo Bonzinia183b632014-09-11 11:51:02 +02001019 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
1020 trig_mode, vector);
Eddie Dong97222cc2007-09-12 10:58:04 +03001021 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001022 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +02001023 vcpu->arch.apic_arb_prio++;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06001024 /* fall through */
Gleb Natapove1035712009-03-05 16:34:59 +02001025 case APIC_DM_FIXED:
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001026 if (unlikely(trig_mode && !level))
1027 break;
1028
Eddie Dong97222cc2007-09-12 10:58:04 +03001029 /* FIXME add logic for vcpu on reset */
1030 if (unlikely(!apic_enabled(apic)))
1031 break;
1032
Jan Kiszka11f5cc02013-07-25 09:58:45 +02001033 result = 1;
1034
Joerg Roedel9daa5002016-02-29 16:04:44 +01001035 if (dest_map) {
Joerg Roedel9e4aabe2016-02-29 16:04:43 +01001036 __set_bit(vcpu->vcpu_id, dest_map->map);
Joerg Roedel9daa5002016-02-29 16:04:44 +01001037 dest_map->vectors[vcpu->vcpu_id] = vector;
1038 }
Avi Kivitya5d36f82009-12-29 12:42:16 +02001039
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001040 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
1041 if (trig_mode)
Wei Yangee171d22019-03-31 19:17:22 -07001042 kvm_lapic_set_vector(vector,
1043 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001044 else
Wei Yangee171d22019-03-31 19:17:22 -07001045 kvm_lapic_clear_vector(vector,
1046 apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +02001047 }
1048
Andrey Smetanind62caab2015-11-10 15:36:33 +03001049 if (vcpu->arch.apicv_active)
Yang Zhang5a717852013-04-11 19:25:16 +08001050 kvm_x86_ops->deliver_posted_interrupt(vcpu, vector);
Jan Kiszka11f5cc02013-07-25 09:58:45 +02001051 else {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001052 kvm_lapic_set_irr(vector, apic);
Yang Zhang5a717852013-04-11 19:25:16 +08001053
1054 kvm_make_request(KVM_REQ_EVENT, vcpu);
1055 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001056 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001057 break;
1058
1059 case APIC_DM_REMRD:
Raghavendra K T24d21662013-08-26 14:18:35 +05301060 result = 1;
1061 vcpu->arch.pv.pv_unhalted = 1;
1062 kvm_make_request(KVM_REQ_EVENT, vcpu);
1063 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001064 break;
1065
1066 case APIC_DM_SMI:
Paolo Bonzini64d60672015-05-07 11:36:11 +02001067 result = 1;
1068 kvm_make_request(KVM_REQ_SMI, vcpu);
1069 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001070 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001071
Eddie Dong97222cc2007-09-12 10:58:04 +03001072 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001073 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +08001074 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +02001075 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001076 break;
1077
1078 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +01001079 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +02001080 result = 1;
Jan Kiszka66450a22013-03-13 12:42:34 +01001081 /* assumes that there are only KVM_APIC_INIT/SIPI */
1082 apic->pending_events = (1UL << KVM_APIC_INIT);
1083 /* make sure pending_events is visible before sending
1084 * the request */
1085 smp_wmb();
Avi Kivity3842d132010-07-27 12:30:24 +03001086 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001087 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +03001088 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001089 break;
1090
1091 case APIC_DM_STARTUP:
Jan Kiszka66450a22013-03-13 12:42:34 +01001092 result = 1;
1093 apic->sipi_vector = vector;
1094 /* make sure sipi_vector is visible for the receiver */
1095 smp_wmb();
1096 set_bit(KVM_APIC_SIPI, &apic->pending_events);
1097 kvm_make_request(KVM_REQ_EVENT, vcpu);
1098 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001099 break;
1100
Jan Kiszka23930f92008-09-26 09:30:52 +02001101 case APIC_DM_EXTINT:
1102 /*
1103 * Should only be called by kvm_apic_local_deliver() with LVT0,
1104 * before NMI watchdog was enabled. Already handled by
1105 * kvm_apic_accept_pic_intr().
1106 */
1107 break;
1108
Eddie Dong97222cc2007-09-12 10:58:04 +03001109 default:
1110 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
1111 delivery_mode);
1112 break;
1113 }
1114 return result;
1115}
1116
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001117/*
1118 * This routine identifies the destination vcpus mask meant to receive the
1119 * IOAPIC interrupts. It either uses kvm_apic_map_get_dest_lapic() to find
1120 * out the destination vcpus array and set the bitmap or it traverses to
1121 * each available vcpu to identify the same.
1122 */
1123void kvm_bitmap_or_dest_vcpus(struct kvm *kvm, struct kvm_lapic_irq *irq,
1124 unsigned long *vcpu_bitmap)
1125{
1126 struct kvm_lapic **dest_vcpu = NULL;
1127 struct kvm_lapic *src = NULL;
1128 struct kvm_apic_map *map;
1129 struct kvm_vcpu *vcpu;
1130 unsigned long bitmap;
1131 int i, vcpu_idx;
1132 bool ret;
1133
1134 rcu_read_lock();
1135 map = rcu_dereference(kvm->arch.apic_map);
1136
1137 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dest_vcpu,
1138 &bitmap);
1139 if (ret) {
1140 for_each_set_bit(i, &bitmap, 16) {
1141 if (!dest_vcpu[i])
1142 continue;
1143 vcpu_idx = dest_vcpu[i]->vcpu->vcpu_idx;
1144 __set_bit(vcpu_idx, vcpu_bitmap);
1145 }
1146 } else {
1147 kvm_for_each_vcpu(i, vcpu, kvm) {
1148 if (!kvm_apic_present(vcpu))
1149 continue;
1150 if (!kvm_apic_match_dest(vcpu, NULL,
Peter Xub4b29632019-12-04 20:07:16 +01001151 irq->shorthand,
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05001152 irq->dest_id,
1153 irq->dest_mode))
1154 continue;
1155 __set_bit(i, vcpu_bitmap);
1156 }
1157 }
1158 rcu_read_unlock();
1159}
1160
Gleb Natapove1035712009-03-05 16:34:59 +02001161int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +03001162{
Gleb Natapove1035712009-03-05 16:34:59 +02001163 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +08001164}
1165
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001166static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
1167{
Andrey Smetanin63086302015-11-10 15:36:32 +03001168 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001169}
1170
Yang Zhangc7c9c562013-01-25 10:18:51 +08001171static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
1172{
Steve Rutherford7543a632015-07-29 23:21:41 -07001173 int trigger_mode;
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02001174
Steve Rutherford7543a632015-07-29 23:21:41 -07001175 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
1176 if (!kvm_ioapic_handles_vector(apic, vector))
1177 return;
1178
1179 /* Request a KVM exit to inform the userspace IOAPIC. */
1180 if (irqchip_split(apic->vcpu->kvm)) {
1181 apic->vcpu->arch.pending_ioapic_eoi = vector;
1182 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1183 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08001184 }
Steve Rutherford7543a632015-07-29 23:21:41 -07001185
1186 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1187 trigger_mode = IOAPIC_LEVEL_TRIG;
1188 else
1189 trigger_mode = IOAPIC_EDGE_TRIG;
1190
1191 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
Yang Zhangc7c9c562013-01-25 10:18:51 +08001192}
1193
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001194static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001195{
1196 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001197
1198 trace_kvm_eoi(apic, vector);
1199
Eddie Dong97222cc2007-09-12 10:58:04 +03001200 /*
1201 * Not every write EOI will has corresponding ISR,
1202 * one example is when Kernel check timer on setup_IO_APIC
1203 */
1204 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001205 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001206
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001207 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001208 apic_update_ppr(apic);
1209
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001210 if (test_bit(vector, vcpu_to_synic(apic->vcpu)->vec_bitmap))
1211 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1212
Yang Zhangc7c9c562013-01-25 10:18:51 +08001213 kvm_ioapic_send_eoi(apic, vector);
Avi Kivity3842d132010-07-27 12:30:24 +03001214 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001215 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001216}
1217
Yang Zhangc7c9c562013-01-25 10:18:51 +08001218/*
1219 * this interface assumes a trap-like exit, which has already finished
1220 * desired side effect including vISR and vPPR update.
1221 */
1222void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1223{
1224 struct kvm_lapic *apic = vcpu->arch.apic;
1225
1226 trace_kvm_eoi(apic, vector);
1227
1228 kvm_ioapic_send_eoi(apic, vector);
1229 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1230}
1231EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1232
Wanpeng Li2b0911d2019-09-05 14:26:27 +08001233static void apic_send_ipi(struct kvm_lapic *apic, u32 icr_low, u32 icr_high)
Eddie Dong97222cc2007-09-12 10:58:04 +03001234{
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001235 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +03001236
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001237 irq.vector = icr_low & APIC_VECTOR_MASK;
1238 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1239 irq.dest_mode = icr_low & APIC_DEST_MASK;
Paolo Bonzinib7cb2232015-04-21 14:57:05 +02001240 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001241 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1242 irq.shorthand = icr_low & APIC_SHORT_MASK;
James Sullivan93bbf0b2015-03-18 19:26:03 -06001243 irq.msi_redir_hint = false;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001244 if (apic_x2apic_mode(apic))
1245 irq.dest_id = icr_high;
1246 else
1247 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +03001248
Gleb Natapov1000ff82009-07-07 16:00:57 +03001249 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1250
Yang Zhangb4f22252013-04-11 19:21:37 +08001251 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03001252}
1253
1254static u32 apic_get_tmcct(struct kvm_lapic *apic)
1255{
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001256 ktime_t remaining, now;
Marcelo Tosattib682b812009-02-10 20:41:41 -02001257 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001258 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +03001259
1260 ASSERT(apic != NULL);
1261
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001262 /* if initial count is 0, current count should also be 0 */
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001263 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
Andy Honigb963a222013-11-19 14:12:18 -08001264 apic->lapic_timer.period == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001265 return 0;
1266
Paolo Bonzini55878592016-10-25 15:23:49 +02001267 now = ktime_get();
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001268 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
Marcelo Tosattib682b812009-02-10 20:41:41 -02001269 if (ktime_to_ns(remaining) < 0)
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001270 remaining = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001271
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001272 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1273 tmcct = div64_u64(ns,
1274 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +03001275
1276 return tmcct;
1277}
1278
Avi Kivityb209749f2007-10-22 16:50:39 +02001279static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1280{
1281 struct kvm_vcpu *vcpu = apic->vcpu;
1282 struct kvm_run *run = vcpu->run;
1283
Avi Kivitya8eeb042010-05-10 12:34:53 +03001284 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001285 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +02001286 run->tpr_access.is_write = write;
1287}
1288
1289static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1290{
1291 if (apic->vcpu->arch.tpr_access_reporting)
1292 __report_tpr_access(apic, write);
1293}
1294
Eddie Dong97222cc2007-09-12 10:58:04 +03001295static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1296{
1297 u32 val = 0;
1298
1299 if (offset >= LAPIC_MMIO_LENGTH)
1300 return 0;
1301
1302 switch (offset) {
1303 case APIC_ARBPRI:
Eddie Dong97222cc2007-09-12 10:58:04 +03001304 break;
1305
1306 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001307 if (apic_lvtt_tscdeadline(apic))
1308 return 0;
1309
Eddie Dong97222cc2007-09-12 10:58:04 +03001310 val = apic_get_tmcct(apic);
1311 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +03001312 case APIC_PROCPRI:
1313 apic_update_ppr(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001314 val = kvm_lapic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +03001315 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02001316 case APIC_TASKPRI:
1317 report_tpr_access(apic, false);
1318 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +03001319 default:
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001320 val = kvm_lapic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +03001321 break;
1322 }
1323
1324 return val;
1325}
1326
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001327static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1328{
1329 return container_of(dev, struct kvm_lapic, dev);
1330}
1331
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001332#define APIC_REG_MASK(reg) (1ull << ((reg) >> 4))
1333#define APIC_REGS_MASK(first, count) \
1334 (APIC_REG_MASK(first) * ((1ull << (count)) - 1))
1335
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001336int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001337 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001338{
Eddie Dong97222cc2007-09-12 10:58:04 +03001339 unsigned char alignment = offset & 0xf;
1340 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +08001341 /* this bitmask has a bit cleared for each reserved register */
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001342 u64 valid_reg_mask =
1343 APIC_REG_MASK(APIC_ID) |
1344 APIC_REG_MASK(APIC_LVR) |
1345 APIC_REG_MASK(APIC_TASKPRI) |
1346 APIC_REG_MASK(APIC_PROCPRI) |
1347 APIC_REG_MASK(APIC_LDR) |
1348 APIC_REG_MASK(APIC_DFR) |
1349 APIC_REG_MASK(APIC_SPIV) |
1350 APIC_REGS_MASK(APIC_ISR, APIC_ISR_NR) |
1351 APIC_REGS_MASK(APIC_TMR, APIC_ISR_NR) |
1352 APIC_REGS_MASK(APIC_IRR, APIC_ISR_NR) |
1353 APIC_REG_MASK(APIC_ESR) |
1354 APIC_REG_MASK(APIC_ICR) |
1355 APIC_REG_MASK(APIC_ICR2) |
1356 APIC_REG_MASK(APIC_LVTT) |
1357 APIC_REG_MASK(APIC_LVTTHMR) |
1358 APIC_REG_MASK(APIC_LVTPC) |
1359 APIC_REG_MASK(APIC_LVT0) |
1360 APIC_REG_MASK(APIC_LVT1) |
1361 APIC_REG_MASK(APIC_LVTERR) |
1362 APIC_REG_MASK(APIC_TMICT) |
1363 APIC_REG_MASK(APIC_TMCCT) |
1364 APIC_REG_MASK(APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001365
Paolo Bonzini01402cf2019-07-05 14:57:58 +02001366 /* ARBPRI is not valid on x2APIC */
1367 if (!apic_x2apic_mode(apic))
1368 valid_reg_mask |= APIC_REG_MASK(APIC_ARBPRI);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001369
Yi Wang0d888002019-07-06 01:08:48 +08001370 if (offset > 0x3f0 || !(valid_reg_mask & APIC_REG_MASK(offset)))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001371 return 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001372
Eddie Dong97222cc2007-09-12 10:58:04 +03001373 result = __apic_read(apic, offset & ~0xf);
1374
Marcelo Tosatti229456f2009-06-17 09:22:14 -03001375 trace_kvm_apic_read(offset, result);
1376
Eddie Dong97222cc2007-09-12 10:58:04 +03001377 switch (len) {
1378 case 1:
1379 case 2:
1380 case 4:
1381 memcpy(data, (char *)&result + alignment, len);
1382 break;
1383 default:
1384 printk(KERN_ERR "Local APIC read with len = %x, "
1385 "should be 1,2, or 4 instead\n", len);
1386 break;
1387 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001388 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001389}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001390EXPORT_SYMBOL_GPL(kvm_lapic_reg_read);
Eddie Dong97222cc2007-09-12 10:58:04 +03001391
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001392static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1393{
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001394 return addr >= apic->base_address &&
1395 addr < apic->base_address + LAPIC_MMIO_LENGTH;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001396}
1397
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001398static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001399 gpa_t address, int len, void *data)
1400{
1401 struct kvm_lapic *apic = to_lapic(this);
1402 u32 offset = address - apic->base_address;
1403
1404 if (!apic_mmio_in_range(apic, address))
1405 return -EOPNOTSUPP;
1406
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02001407 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1408 if (!kvm_check_has_quirk(vcpu->kvm,
1409 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1410 return -EOPNOTSUPP;
1411
1412 memset(data, 0xff, len);
1413 return 0;
1414 }
1415
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001416 kvm_lapic_reg_read(apic, offset, len, data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001417
1418 return 0;
1419}
1420
Eddie Dong97222cc2007-09-12 10:58:04 +03001421static void update_divide_count(struct kvm_lapic *apic)
1422{
1423 u32 tmp1, tmp2, tdcr;
1424
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001425 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001426 tmp1 = tdcr & 0xf;
1427 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001428 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +03001429}
1430
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001431static void limit_periodic_timer_frequency(struct kvm_lapic *apic)
1432{
1433 /*
1434 * Do not allow the guest to program periodic timers with small
1435 * interval, since the hrtimers are not throttled by the host
1436 * scheduler.
1437 */
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001438 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001439 s64 min_period = min_timer_period_us * 1000LL;
1440
1441 if (apic->lapic_timer.period < min_period) {
1442 pr_info_ratelimited(
1443 "kvm: vcpu %i: requested %lld ns "
1444 "lapic timer period limited to %lld ns\n",
1445 apic->vcpu->vcpu_id,
1446 apic->lapic_timer.period, min_period);
1447 apic->lapic_timer.period = min_period;
1448 }
1449 }
1450}
1451
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001452static void apic_update_lvtt(struct kvm_lapic *apic)
1453{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001454 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001455 apic->lapic_timer.timer_mode_mask;
1456
1457 if (apic->lapic_timer.timer_mode != timer_mode) {
Wanpeng Lic69518c2017-10-05 03:53:51 -07001458 if (apic_lvtt_tscdeadline(apic) != (timer_mode ==
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001459 APIC_LVT_TIMER_TSCDEADLINE)) {
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001460 hrtimer_cancel(&apic->lapic_timer.timer);
Radim Krčmář44275932017-10-06 19:25:55 +02001461 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
1462 apic->lapic_timer.period = 0;
1463 apic->lapic_timer.tscdeadline = 0;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001464 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001465 apic->lapic_timer.timer_mode = timer_mode;
Wanpeng Lidedf9c52017-10-05 18:54:25 -07001466 limit_periodic_timer_frequency(apic);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001467 }
1468}
1469
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001470/*
1471 * On APICv, this test will cause a busy wait
1472 * during a higher-priority task.
1473 */
1474
1475static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1476{
1477 struct kvm_lapic *apic = vcpu->arch.apic;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001478 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001479
1480 if (kvm_apic_hw_enabled(apic)) {
1481 int vec = reg & APIC_VECTOR_MASK;
Marcelo Tosattif9339862015-02-02 15:26:08 -02001482 void *bitmap = apic->regs + APIC_ISR;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001483
Andrey Smetanind62caab2015-11-10 15:36:33 +03001484 if (vcpu->arch.apicv_active)
Marcelo Tosattif9339862015-02-02 15:26:08 -02001485 bitmap = apic->regs + APIC_IRR;
1486
1487 if (apic_test_vector(vec, bitmap))
1488 return true;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001489 }
1490 return false;
1491}
1492
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001493static inline void __wait_lapic_expire(struct kvm_vcpu *vcpu, u64 guest_cycles)
1494{
1495 u64 timer_advance_ns = vcpu->arch.apic->lapic_timer.timer_advance_ns;
1496
1497 /*
1498 * If the guest TSC is running at a different ratio than the host, then
1499 * convert the delay to nanoseconds to achieve an accurate delay. Note
1500 * that __delay() uses delay_tsc whenever the hardware has TSC, thus
1501 * always for VMX enabled hardware.
1502 */
1503 if (vcpu->arch.tsc_scaling_ratio == kvm_default_tsc_scaling_ratio) {
1504 __delay(min(guest_cycles,
1505 nsec_to_cycles(vcpu, timer_advance_ns)));
1506 } else {
1507 u64 delay_ns = guest_cycles * 1000000ULL;
1508 do_div(delay_ns, vcpu->arch.virtual_tsc_khz);
1509 ndelay(min_t(u32, delay_ns, timer_advance_ns));
1510 }
1511}
1512
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001513static inline void adjust_lapic_timer_advance(struct kvm_vcpu *vcpu,
Wanpeng Liec0671d2019-05-20 16:18:08 +08001514 s64 advance_expire_delta)
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001515{
1516 struct kvm_lapic *apic = vcpu->arch.apic;
Sean Christopherson39497d72019-04-17 10:15:32 -07001517 u32 timer_advance_ns = apic->lapic_timer.timer_advance_ns;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001518 u64 ns;
1519
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001520 /* Do not adjust for tiny fluctuations or large random spikes. */
1521 if (abs(advance_expire_delta) > LAPIC_TIMER_ADVANCE_ADJUST_MAX ||
1522 abs(advance_expire_delta) < LAPIC_TIMER_ADVANCE_ADJUST_MIN)
1523 return;
1524
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001525 /* too early */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001526 if (advance_expire_delta < 0) {
1527 ns = -advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001528 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001529 timer_advance_ns -= ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001530 } else {
1531 /* too late */
Wanpeng Liec0671d2019-05-20 16:18:08 +08001532 ns = advance_expire_delta * 1000000ULL;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001533 do_div(ns, vcpu->arch.virtual_tsc_khz);
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001534 timer_advance_ns += ns/LAPIC_TIMER_ADVANCE_ADJUST_STEP;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001535 }
1536
Wanpeng Lia0f00372019-09-26 08:54:03 +08001537 if (unlikely(timer_advance_ns > LAPIC_TIMER_ADVANCE_NS_MAX))
1538 timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001539 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
1540}
1541
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001542static void __kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
Wanpeng Li84ea3ac2019-05-20 16:18:05 +08001543{
1544 struct kvm_lapic *apic = vcpu->arch.apic;
1545 u64 guest_tsc, tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001546
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001547 if (apic->lapic_timer.expired_tscdeadline == 0)
1548 return;
1549
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001550 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1551 apic->lapic_timer.expired_tscdeadline = 0;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001552 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Wanpeng Liec0671d2019-05-20 16:18:08 +08001553 apic->lapic_timer.advance_expire_delta = guest_tsc - tsc_deadline;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001554
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001555 if (guest_tsc < tsc_deadline)
Sean Christophersonb6aa57c2019-04-17 10:15:34 -07001556 __wait_lapic_expire(vcpu, tsc_deadline - guest_tsc);
Wanpeng Li3b8a5df2018-10-09 09:02:08 +08001557
Wanpeng Lid0f5a862019-09-17 16:16:26 +08001558 if (lapic_timer_advance_dynamic)
Wanpeng Liec0671d2019-05-20 16:18:08 +08001559 adjust_lapic_timer_advance(vcpu, apic->lapic_timer.advance_expire_delta);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001560}
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001561
1562void kvm_wait_lapic_expire(struct kvm_vcpu *vcpu)
1563{
1564 if (lapic_timer_int_injected(vcpu))
1565 __kvm_wait_lapic_expire(vcpu);
1566}
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08001567EXPORT_SYMBOL_GPL(kvm_wait_lapic_expire);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001568
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001569static void kvm_apic_inject_pending_timer_irqs(struct kvm_lapic *apic)
1570{
1571 struct kvm_timer *ktimer = &apic->lapic_timer;
1572
1573 kvm_apic_local_deliver(apic, APIC_LVTT);
1574 if (apic_lvtt_tscdeadline(apic))
1575 ktimer->tscdeadline = 0;
1576 if (apic_lvtt_oneshot(apic)) {
1577 ktimer->tscdeadline = 0;
1578 ktimer->target_expiration = 0;
1579 }
1580}
1581
1582static void apic_timer_expired(struct kvm_lapic *apic)
1583{
1584 struct kvm_vcpu *vcpu = apic->vcpu;
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001585 struct kvm_timer *ktimer = &apic->lapic_timer;
1586
1587 if (atomic_read(&apic->lapic_timer.pending))
1588 return;
1589
1590 if (apic_lvtt_tscdeadline(apic) || ktimer->hv_timer_in_use)
1591 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1592
1593 if (kvm_use_posted_timer_interrupt(apic->vcpu)) {
1594 if (apic->lapic_timer.timer_advance_ns)
1595 __kvm_wait_lapic_expire(vcpu);
1596 kvm_apic_inject_pending_timer_irqs(apic);
1597 return;
1598 }
1599
1600 atomic_inc(&apic->lapic_timer.pending);
1601 kvm_set_pending_timer(vcpu);
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08001602}
1603
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001604static void start_sw_tscdeadline(struct kvm_lapic *apic)
1605{
Sean Christopherson39497d72019-04-17 10:15:32 -07001606 struct kvm_timer *ktimer = &apic->lapic_timer;
1607 u64 guest_tsc, tscdeadline = ktimer->tscdeadline;
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001608 u64 ns = 0;
1609 ktime_t expire;
1610 struct kvm_vcpu *vcpu = apic->vcpu;
1611 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
1612 unsigned long flags;
1613 ktime_t now;
1614
1615 if (unlikely(!tscdeadline || !this_tsc_khz))
1616 return;
1617
1618 local_irq_save(flags);
1619
Paolo Bonzini55878592016-10-25 15:23:49 +02001620 now = ktime_get();
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001621 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Liran Alonc09d65d2019-04-16 20:36:34 +03001622
1623 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1624 do_div(ns, this_tsc_khz);
1625
1626 if (likely(tscdeadline > guest_tsc) &&
Sean Christopherson39497d72019-04-17 10:15:32 -07001627 likely(ns > apic->lapic_timer.timer_advance_ns)) {
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001628 expire = ktime_add_ns(now, ns);
Sean Christopherson39497d72019-04-17 10:15:32 -07001629 expire = ktime_sub_ns(expire, ktimer->timer_advance_ns);
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02001630 hrtimer_start(&ktimer->timer, expire, HRTIMER_MODE_ABS_HARD);
Yunhong Jiang53f9eed2016-06-13 14:20:00 -07001631 } else
1632 apic_timer_expired(apic);
1633
1634 local_irq_restore(flags);
1635}
1636
Wanpeng Lic301b902017-10-06 07:38:32 -07001637static void update_target_expiration(struct kvm_lapic *apic, uint32_t old_divisor)
1638{
1639 ktime_t now, remaining;
1640 u64 ns_remaining_old, ns_remaining_new;
1641
1642 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
1643 * APIC_BUS_CYCLE_NS * apic->divide_count;
1644 limit_periodic_timer_frequency(apic);
1645
1646 now = ktime_get();
1647 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1648 if (ktime_to_ns(remaining) < 0)
1649 remaining = 0;
1650
1651 ns_remaining_old = ktime_to_ns(remaining);
1652 ns_remaining_new = mul_u64_u32_div(ns_remaining_old,
1653 apic->divide_count, old_divisor);
1654
1655 apic->lapic_timer.tscdeadline +=
1656 nsec_to_cycles(apic->vcpu, ns_remaining_new) -
1657 nsec_to_cycles(apic->vcpu, ns_remaining_old);
1658 apic->lapic_timer.target_expiration = ktime_add_ns(now, ns_remaining_new);
1659}
1660
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001661static bool set_target_expiration(struct kvm_lapic *apic)
1662{
1663 ktime_t now;
1664 u64 tscl = rdtsc();
1665
Paolo Bonzini55878592016-10-25 15:23:49 +02001666 now = ktime_get();
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001667 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
1668 * APIC_BUS_CYCLE_NS * apic->divide_count;
1669
Radim Krčmář5d74a692017-10-06 19:25:54 +02001670 if (!apic->lapic_timer.period) {
1671 apic->lapic_timer.tscdeadline = 0;
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001672 return false;
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001673 }
1674
Wanpeng Liccbfa1d2017-10-05 18:54:24 -07001675 limit_periodic_timer_frequency(apic);
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001676
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001677 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1678 nsec_to_cycles(apic->vcpu, apic->lapic_timer.period);
1679 apic->lapic_timer.target_expiration = ktime_add_ns(now, apic->lapic_timer.period);
1680
1681 return true;
1682}
1683
1684static void advance_periodic_target_expiration(struct kvm_lapic *apic)
1685{
David Vrabeld8f2f492018-05-18 16:55:46 +01001686 ktime_t now = ktime_get();
1687 u64 tscl = rdtsc();
1688 ktime_t delta;
1689
1690 /*
1691 * Synchronize both deadlines to the same time source or
1692 * differences in the periods (caused by differences in the
1693 * underlying clocks or numerical approximation errors) will
1694 * cause the two to drift apart over time as the errors
1695 * accumulate.
1696 */
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001697 apic->lapic_timer.target_expiration =
1698 ktime_add_ns(apic->lapic_timer.target_expiration,
1699 apic->lapic_timer.period);
David Vrabeld8f2f492018-05-18 16:55:46 +01001700 delta = ktime_sub(apic->lapic_timer.target_expiration, now);
1701 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1702 nsec_to_cycles(apic->vcpu, delta);
Wanpeng Li7d7f7da2016-10-24 18:23:09 +08001703}
1704
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001705static void start_sw_period(struct kvm_lapic *apic)
1706{
1707 if (!apic->lapic_timer.period)
1708 return;
1709
1710 if (ktime_after(ktime_get(),
1711 apic->lapic_timer.target_expiration)) {
1712 apic_timer_expired(apic);
1713
1714 if (apic_lvtt_oneshot(apic))
1715 return;
1716
1717 advance_periodic_target_expiration(apic);
1718 }
1719
1720 hrtimer_start(&apic->lapic_timer.timer,
1721 apic->lapic_timer.target_expiration,
Wanpeng Li4d151bf2019-07-06 09:26:50 +08001722 HRTIMER_MODE_ABS);
Anthoine Bourgeoisecf08da2018-04-29 22:05:58 +00001723}
1724
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001725bool kvm_lapic_hv_timer_in_use(struct kvm_vcpu *vcpu)
1726{
Wanpeng Li91005302016-08-03 12:04:12 +08001727 if (!lapic_in_kernel(vcpu))
1728 return false;
1729
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001730 return vcpu->arch.apic->lapic_timer.hv_timer_in_use;
1731}
1732EXPORT_SYMBOL_GPL(kvm_lapic_hv_timer_in_use);
1733
Wanpeng Li7e810a32016-10-24 18:23:12 +08001734static void cancel_hv_timer(struct kvm_lapic *apic)
Wanpeng Libd97ad02016-06-30 08:52:49 +08001735{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001736 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001737 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
Wanpeng Libd97ad02016-06-30 08:52:49 +08001738 kvm_x86_ops->cancel_hv_timer(apic->vcpu);
1739 apic->lapic_timer.hv_timer_in_use = false;
1740}
1741
Paolo Bonzinia749e242017-06-29 17:14:50 +02001742static bool start_hv_timer(struct kvm_lapic *apic)
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001743{
1744 struct kvm_timer *ktimer = &apic->lapic_timer;
Sean Christophersonf9927982019-04-16 13:32:46 -07001745 struct kvm_vcpu *vcpu = apic->vcpu;
1746 bool expired;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001747
Wanpeng Li1d518c62017-07-25 00:43:15 -07001748 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001749 if (!kvm_x86_ops->set_hv_timer)
1750 return false;
1751
Radim Krčmář86bbc1e2017-10-06 19:25:53 +02001752 if (!ktimer->tscdeadline)
1753 return false;
1754
Sean Christophersonf9927982019-04-16 13:32:46 -07001755 if (kvm_x86_ops->set_hv_timer(vcpu, ktimer->tscdeadline, &expired))
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001756 return false;
1757
1758 ktimer->hv_timer_in_use = true;
1759 hrtimer_cancel(&ktimer->timer);
1760
1761 /*
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001762 * To simplify handling the periodic timer, leave the hv timer running
1763 * even if the deadline timer has expired, i.e. rely on the resulting
1764 * VM-Exit to recompute the periodic timer's target expiration.
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001765 */
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001766 if (!apic_lvtt_period(apic)) {
1767 /*
1768 * Cancel the hv timer if the sw timer fired while the hv timer
1769 * was being programmed, or if the hv timer itself expired.
1770 */
1771 if (atomic_read(&ktimer->pending)) {
1772 cancel_hv_timer(apic);
Sean Christophersonf9927982019-04-16 13:32:46 -07001773 } else if (expired) {
Wanpeng Lic8533542017-06-29 06:28:09 -07001774 apic_timer_expired(apic);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001775 cancel_hv_timer(apic);
1776 }
Wanpeng Lic8533542017-06-29 06:28:09 -07001777 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02001778
Sean Christophersonf9927982019-04-16 13:32:46 -07001779 trace_kvm_hv_timer_state(vcpu->vcpu_id, ktimer->hv_timer_in_use);
Sean Christophersonf1ba5cf2019-04-16 13:32:45 -07001780
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001781 return true;
1782}
1783
Paolo Bonzinia749e242017-06-29 17:14:50 +02001784static void start_sw_timer(struct kvm_lapic *apic)
Wanpeng Li196f20c2016-06-28 14:54:19 +08001785{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001786 struct kvm_timer *ktimer = &apic->lapic_timer;
Wanpeng Li1d518c62017-07-25 00:43:15 -07001787
1788 WARN_ON(preemptible());
Paolo Bonzinia749e242017-06-29 17:14:50 +02001789 if (apic->lapic_timer.hv_timer_in_use)
1790 cancel_hv_timer(apic);
1791 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
1792 return;
Paolo Bonzini35ee9e42017-06-29 17:14:50 +02001793
Paolo Bonzinia749e242017-06-29 17:14:50 +02001794 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1795 start_sw_period(apic);
1796 else if (apic_lvtt_tscdeadline(apic))
1797 start_sw_tscdeadline(apic);
1798 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, false);
1799}
1800
1801static void restart_apic_timer(struct kvm_lapic *apic)
1802{
Wanpeng Li1d518c62017-07-25 00:43:15 -07001803 preempt_disable();
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001804
1805 if (!apic_lvtt_period(apic) && atomic_read(&apic->lapic_timer.pending))
1806 goto out;
1807
Paolo Bonzinia749e242017-06-29 17:14:50 +02001808 if (!start_hv_timer(apic))
1809 start_sw_timer(apic);
Sean Christopherson4ca88b32019-04-16 13:32:47 -07001810out:
Wanpeng Li1d518c62017-07-25 00:43:15 -07001811 preempt_enable();
Wanpeng Li196f20c2016-06-28 14:54:19 +08001812}
1813
Eddie Dong97222cc2007-09-12 10:58:04 +03001814void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
1815{
1816 struct kvm_lapic *apic = vcpu->arch.apic;
1817
Wanpeng Li1d518c62017-07-25 00:43:15 -07001818 preempt_disable();
1819 /* If the preempt notifier has already run, it also called apic_timer_expired */
1820 if (!apic->lapic_timer.hv_timer_in_use)
1821 goto out;
Eddie Dong97222cc2007-09-12 10:58:04 +03001822 WARN_ON(swait_active(&vcpu->wq));
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001823 cancel_hv_timer(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001824 apic_timer_expired(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001825
1826 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1827 advance_periodic_target_expiration(apic);
Paolo Bonzinia749e242017-06-29 17:14:50 +02001828 restart_apic_timer(apic);
Wanpeng Li8003c9a2016-10-24 18:23:13 +08001829 }
Wanpeng Li1d518c62017-07-25 00:43:15 -07001830out:
1831 preempt_enable();
Eddie Dong97222cc2007-09-12 10:58:04 +03001832}
1833EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
1834
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001835void kvm_lapic_switch_to_hv_timer(struct kvm_vcpu *vcpu)
1836{
Paolo Bonzinia749e242017-06-29 17:14:50 +02001837 restart_apic_timer(vcpu->arch.apic);
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001838}
1839EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_hv_timer);
1840
1841void kvm_lapic_switch_to_sw_timer(struct kvm_vcpu *vcpu)
1842{
1843 struct kvm_lapic *apic = vcpu->arch.apic;
1844
Wanpeng Li1d518c62017-07-25 00:43:15 -07001845 preempt_disable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001846 /* Possibly the TSC deadline timer is not enabled yet */
Paolo Bonzinia749e242017-06-29 17:14:50 +02001847 if (apic->lapic_timer.hv_timer_in_use)
1848 start_sw_timer(apic);
Wanpeng Li1d518c62017-07-25 00:43:15 -07001849 preempt_enable();
Yunhong Jiangce7a0582016-06-13 14:20:01 -07001850}
1851EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_sw_timer);
1852
Paolo Bonzinia749e242017-06-29 17:14:50 +02001853void kvm_lapic_restart_hv_timer(struct kvm_vcpu *vcpu)
1854{
1855 struct kvm_lapic *apic = vcpu->arch.apic;
1856
1857 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1858 restart_apic_timer(apic);
1859}
1860
Eddie Dong97222cc2007-09-12 10:58:04 +03001861static void start_apic_timer(struct kvm_lapic *apic)
1862{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001863 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +02001864
Paolo Bonzinia749e242017-06-29 17:14:50 +02001865 if ((apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1866 && !set_target_expiration(apic))
1867 return;
1868
1869 restart_apic_timer(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001870}
1871
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001872static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1873{
Radim Krčmář59fd1322015-06-30 22:19:16 +02001874 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001875
Radim Krčmář59fd1322015-06-30 22:19:16 +02001876 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
1877 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
1878 if (lvt0_in_nmi_mode) {
Radim Krčmář42720132015-07-01 15:31:49 +02001879 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
Radim Krčmář59fd1322015-06-30 22:19:16 +02001880 } else
1881 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1882 }
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001883}
1884
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001885int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03001886{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001887 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001888
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001889 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001890
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001891 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001892 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001893 if (!apic_x2apic_mode(apic))
Radim Krčmářa92e2542016-07-12 22:09:22 +02001894 kvm_apic_set_xapic_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001895 else
1896 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001897 break;
1898
1899 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02001900 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03001901 apic_set_tpr(apic, val & 0xff);
1902 break;
1903
1904 case APIC_EOI:
1905 apic_set_eoi(apic);
1906 break;
1907
1908 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001909 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001910 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001911 else
1912 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001913 break;
1914
1915 case APIC_DFR:
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001916 if (!apic_x2apic_mode(apic)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001917 kvm_lapic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001918 recalculate_apic_map(apic->vcpu->kvm);
1919 } else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001920 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001921 break;
1922
Gleb Natapovfc61b802009-07-05 17:39:35 +03001923 case APIC_SPIV: {
1924 u32 mask = 0x3ff;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001925 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03001926 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001927 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03001928 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1929 int i;
1930 u32 lvt_val;
1931
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001932 for (i = 0; i < KVM_APIC_LVT_NUM; i++) {
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001933 lvt_val = kvm_lapic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03001934 APIC_LVTT + 0x10 * i);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001935 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i,
Eddie Dong97222cc2007-09-12 10:58:04 +03001936 lvt_val | APIC_LVT_MASKED);
1937 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001938 apic_update_lvtt(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001939 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001940
1941 }
1942 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03001943 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001944 case APIC_ICR:
1945 /* No delay here, so we always clear the pending bit */
Wanpeng Li2b0911d2019-09-05 14:26:27 +08001946 val &= ~(1 << 12);
1947 apic_send_ipi(apic, val, kvm_lapic_get_reg(apic, APIC_ICR2));
1948 kvm_lapic_set_reg(apic, APIC_ICR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001949 break;
1950
1951 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001952 if (!apic_x2apic_mode(apic))
1953 val &= 0xff000000;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001954 kvm_lapic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001955 break;
1956
Jan Kiszka23930f92008-09-26 09:30:52 +02001957 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001958 apic_manage_nmi_watchdog(apic, val);
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06001959 /* fall through */
Eddie Dong97222cc2007-09-12 10:58:04 +03001960 case APIC_LVTTHMR:
1961 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03001962 case APIC_LVT1:
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08001963 case APIC_LVTERR: {
Eddie Dong97222cc2007-09-12 10:58:04 +03001964 /* TODO: Check vector */
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08001965 size_t size;
1966 u32 index;
1967
Gleb Natapovc48f1492012-08-05 15:58:33 +03001968 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001969 val |= APIC_LVT_MASKED;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08001970 size = ARRAY_SIZE(apic_lvt_mask);
1971 index = array_index_nospec(
1972 (reg - APIC_LVTT) >> 4, size);
1973 val &= apic_lvt_mask[index];
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001974 kvm_lapic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001975 break;
Marios Pomonis4bf79cb2019-12-11 12:47:46 -08001976 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001977
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001978 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03001979 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001980 val |= APIC_LVT_MASKED;
1981 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001982 kvm_lapic_set_reg(apic, APIC_LVTT, val);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001983 apic_update_lvtt(apic);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001984 break;
1985
Eddie Dong97222cc2007-09-12 10:58:04 +03001986 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001987 if (apic_lvtt_tscdeadline(apic))
1988 break;
1989
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001990 hrtimer_cancel(&apic->lapic_timer.timer);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001991 kvm_lapic_set_reg(apic, APIC_TMICT, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001992 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001993 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001994
Wanpeng Lic301b902017-10-06 07:38:32 -07001995 case APIC_TDCR: {
1996 uint32_t old_divisor = apic->divide_count;
1997
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001998 kvm_lapic_set_reg(apic, APIC_TDCR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001999 update_divide_count(apic);
Wanpeng Lic301b902017-10-06 07:38:32 -07002000 if (apic->divide_count != old_divisor &&
2001 apic->lapic_timer.period) {
2002 hrtimer_cancel(&apic->lapic_timer.timer);
2003 update_target_expiration(apic, old_divisor);
2004 restart_apic_timer(apic);
2005 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002006 break;
Wanpeng Lic301b902017-10-06 07:38:32 -07002007 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002008 case APIC_ESR:
Yi Wang0d888002019-07-06 01:08:48 +08002009 if (apic_x2apic_mode(apic) && val != 0)
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002010 ret = 1;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002011 break;
2012
2013 case APIC_SELF_IPI:
2014 if (apic_x2apic_mode(apic)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002015 kvm_lapic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002016 } else
2017 ret = 1;
2018 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03002019 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002020 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03002021 break;
2022 }
Yi Wang0d888002019-07-06 01:08:48 +08002023
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002024 return ret;
2025}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002026EXPORT_SYMBOL_GPL(kvm_lapic_reg_write);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002027
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002028static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002029 gpa_t address, int len, const void *data)
2030{
2031 struct kvm_lapic *apic = to_lapic(this);
2032 unsigned int offset = address - apic->base_address;
2033 u32 val;
2034
2035 if (!apic_mmio_in_range(apic, address))
2036 return -EOPNOTSUPP;
2037
Vitaly Kuznetsovd1766202018-08-02 17:08:16 +02002038 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
2039 if (!kvm_check_has_quirk(vcpu->kvm,
2040 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
2041 return -EOPNOTSUPP;
2042
2043 return 0;
2044 }
2045
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002046 /*
2047 * APIC register must be aligned on 128-bits boundary.
2048 * 32/64/128 bits registers must be accessed thru 32 bits.
2049 * Refer SDM 8.4.1
2050 */
Yi Wang0d888002019-07-06 01:08:48 +08002051 if (len != 4 || (offset & 0xf))
Sheng Yang756975b2009-07-06 11:05:39 +08002052 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002053
2054 val = *(u32*)data;
2055
Yi Wang0d888002019-07-06 01:08:48 +08002056 kvm_lapic_reg_write(apic, offset & 0xff0, val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002057
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002058 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002059}
2060
Kevin Tian58fbbf22011-08-30 13:56:17 +03002061void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
2062{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002063 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
Kevin Tian58fbbf22011-08-30 13:56:17 +03002064}
2065EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
2066
Yang Zhang83d4c282013-01-25 10:18:49 +08002067/* emulate APIC access in a trap manner */
2068void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
2069{
2070 u32 val = 0;
2071
2072 /* hw has done the conditional check and inst decode */
2073 offset &= 0xff0;
2074
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002075 kvm_lapic_reg_read(vcpu->arch.apic, offset, 4, &val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002076
2077 /* TODO: optimize to just emulate side effect w/o one more write */
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002078 kvm_lapic_reg_write(vcpu->arch.apic, offset, val);
Yang Zhang83d4c282013-01-25 10:18:49 +08002079}
2080EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
2081
Rusty Russelld5894442007-10-08 10:48:30 +10002082void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03002083{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002084 struct kvm_lapic *apic = vcpu->arch.apic;
2085
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002086 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002087 return;
2088
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002089 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002090
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002091 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
2092 static_key_slow_dec_deferred(&apic_hw_disabled);
2093
Radim Krčmáře4627552014-10-30 15:06:45 +01002094 if (!apic->sw_enabled)
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002095 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03002096
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002097 if (apic->regs)
2098 free_page((unsigned long)apic->regs);
2099
2100 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002101}
2102
2103/*
2104 *----------------------------------------------------------------------
2105 * LAPIC interface
2106 *----------------------------------------------------------------------
2107 */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002108u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
2109{
2110 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002111
Wanpeng Lia10388e2016-10-24 18:23:10 +08002112 if (!lapic_in_kernel(vcpu) ||
2113 !apic_lvtt_tscdeadline(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002114 return 0;
2115
2116 return apic->lapic_timer.tscdeadline;
2117}
2118
2119void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
2120{
2121 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002122
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002123 if (!lapic_in_kernel(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03002124 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002125 return;
2126
2127 hrtimer_cancel(&apic->lapic_timer.timer);
2128 apic->lapic_timer.tscdeadline = data;
2129 start_apic_timer(apic);
2130}
2131
Eddie Dong97222cc2007-09-12 10:58:04 +03002132void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
2133{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002134 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002135
Avi Kivityb93463a2007-10-25 16:52:32 +02002136 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002137 | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03002138}
2139
2140u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
2141{
Eddie Dong97222cc2007-09-12 10:58:04 +03002142 u64 tpr;
2143
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002144 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03002145
2146 return (tpr & 0xf0) >> 4;
2147}
2148
2149void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
2150{
Yang Zhang8d146952013-01-25 10:18:50 +08002151 u64 old_value = vcpu->arch.apic_base;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002152 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002153
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002154 if (!apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002155 value |= MSR_IA32_APICBASE_BSP;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002156
Jan Kiszkae66d2ae2013-12-29 02:29:30 +01002157 vcpu->arch.apic_base = value;
2158
Jim Mattsonc7dd15b2016-11-09 09:50:11 -08002159 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE)
2160 kvm_update_cpuid(vcpu);
2161
2162 if (!apic)
2163 return;
2164
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002165 /* update jump label if enable bit changes */
Andrew Jones0dce7cd2014-01-15 13:39:59 +01002166 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
Radim Krčmář49bd29b2016-07-12 22:09:23 +02002167 if (value & MSR_IA32_APICBASE_ENABLE) {
2168 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002169 static_key_slow_dec_deferred(&apic_hw_disabled);
Wanpeng Li187ca842016-08-03 12:04:13 +08002170 } else {
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002171 static_key_slow_inc(&apic_hw_disabled.key);
Wanpeng Li187ca842016-08-03 12:04:13 +08002172 recalculate_apic_map(vcpu->kvm);
2173 }
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002174 }
2175
Jim Mattson8d860bb2018-05-09 16:56:05 -04002176 if (((old_value ^ value) & X2APIC_ENABLE) && (value & X2APIC_ENABLE))
2177 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
2178
2179 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE))
2180 kvm_x86_ops->set_virtual_apic_mode(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08002181
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002182 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03002183 MSR_IA32_APICBASE_BASE;
2184
Nadav Amitdb324fe2014-11-02 11:54:59 +02002185 if ((value & MSR_IA32_APICBASE_ENABLE) &&
2186 apic->base_address != APIC_DEFAULT_PHYS_BASE)
2187 pr_warn_once("APIC base relocation is unsupported by KVM");
Eddie Dong97222cc2007-09-12 10:58:04 +03002188}
2189
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002190void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
Eddie Dong97222cc2007-09-12 10:58:04 +03002191{
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002192 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002193 int i;
2194
Radim Krčmářb7e31be2018-03-01 15:24:25 +01002195 if (!apic)
2196 return;
Eddie Dong97222cc2007-09-12 10:58:04 +03002197
Eddie Dong97222cc2007-09-12 10:58:04 +03002198 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002199 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03002200
Radim Krčmář4d8e7722016-07-12 22:09:25 +02002201 if (!init_event) {
2202 kvm_lapic_set_base(vcpu, APIC_DEFAULT_PHYS_BASE |
2203 MSR_IA32_APICBASE_ENABLE);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002204 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
Radim Krčmář4d8e7722016-07-12 22:09:25 +02002205 }
Gleb Natapovfc61b802009-07-05 17:39:35 +03002206 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03002207
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002208 for (i = 0; i < KVM_APIC_LVT_NUM; i++)
2209 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002210 apic_update_lvtt(apic);
Jan H. Schönherr52b54192017-05-20 13:24:32 +02002211 if (kvm_vcpu_is_reset_bsp(vcpu) &&
2212 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002213 kvm_lapic_set_reg(apic, APIC_LVT0,
Nadav Amit90de4a12015-04-13 01:53:41 +03002214 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002215 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong97222cc2007-09-12 10:58:04 +03002216
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002217 kvm_lapic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002218 apic_set_spiv(apic, 0xff);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002219 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
Radim Krčmářc028dd62015-05-22 19:22:10 +02002220 if (!apic_x2apic_mode(apic))
2221 kvm_apic_set_ldr(apic, 0);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002222 kvm_lapic_set_reg(apic, APIC_ESR, 0);
2223 kvm_lapic_set_reg(apic, APIC_ICR, 0);
2224 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
2225 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
2226 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002227 for (i = 0; i < 8; i++) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002228 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
2229 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
2230 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03002231 }
Andrey Smetanind62caab2015-11-10 15:36:33 +03002232 apic->irr_pending = vcpu->arch.apicv_active;
2233 apic->isr_count = vcpu->arch.apicv_active ? 1 : 0;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002234 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02002235 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002236 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002237 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03002238 kvm_lapic_set_base(vcpu,
2239 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002240 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002241 apic_update_ppr(apic);
Jan H. Schönherr4191db22017-10-25 16:43:27 +02002242 if (vcpu->arch.apicv_active) {
2243 kvm_x86_ops->apicv_post_state_restore(vcpu);
2244 kvm_x86_ops->hwapic_irr_update(vcpu, -1);
2245 kvm_x86_ops->hwapic_isr_update(vcpu, -1);
2246 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002247
Gleb Natapove1035712009-03-05 16:34:59 +02002248 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03002249 vcpu->arch.apic_attention = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03002250}
2251
Eddie Dong97222cc2007-09-12 10:58:04 +03002252/*
2253 *----------------------------------------------------------------------
2254 * timer interface
2255 *----------------------------------------------------------------------
2256 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03002257
Avi Kivity2a6eac92012-07-26 18:01:51 +03002258static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03002259{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002260 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03002261}
2262
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002263int apic_has_pending_timer(struct kvm_vcpu *vcpu)
2264{
Gleb Natapov54e98182012-08-05 15:58:32 +03002265 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002266
Paolo Bonzini1e3161b42016-01-08 13:41:16 +01002267 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
Gleb Natapov54e98182012-08-05 15:58:32 +03002268 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03002269
2270 return 0;
2271}
2272
Avi Kivity89342082011-11-10 14:57:21 +02002273int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03002274{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002275 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02002276 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002277
Gleb Natapovc48f1492012-08-05 15:58:33 +03002278 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02002279 vector = reg & APIC_VECTOR_MASK;
2280 mode = reg & APIC_MODE_MASK;
2281 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
Yang Zhangb4f22252013-04-11 19:21:37 +08002282 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
2283 NULL);
Jan Kiszka23930f92008-09-26 09:30:52 +02002284 }
2285 return 0;
2286}
2287
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002288void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02002289{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02002290 struct kvm_lapic *apic = vcpu->arch.apic;
2291
2292 if (apic)
2293 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002294}
2295
Gregory Haskinsd76685c2009-06-01 12:54:50 -04002296static const struct kvm_io_device_ops apic_mmio_ops = {
2297 .read = apic_mmio_read,
2298 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -04002299};
2300
Avi Kivitye9d90d42012-07-26 18:01:50 +03002301static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
2302{
2303 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03002304 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002305
Radim Krčmář5d87db72014-10-10 19:15:08 +02002306 apic_timer_expired(apic);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002307
Avi Kivity2a6eac92012-07-26 18:01:51 +03002308 if (lapic_is_periodic(apic)) {
Wanpeng Li8003c9a2016-10-24 18:23:13 +08002309 advance_periodic_target_expiration(apic);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002310 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
2311 return HRTIMER_RESTART;
2312 } else
2313 return HRTIMER_NORESTART;
2314}
2315
Sean Christophersonc3941d92019-04-17 10:15:33 -07002316int kvm_create_lapic(struct kvm_vcpu *vcpu, int timer_advance_ns)
Eddie Dong97222cc2007-09-12 10:58:04 +03002317{
2318 struct kvm_lapic *apic;
2319
2320 ASSERT(vcpu != NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03002321
Ben Gardon254272c2019-02-11 11:02:50 -08002322 apic = kzalloc(sizeof(*apic), GFP_KERNEL_ACCOUNT);
Eddie Dong97222cc2007-09-12 10:58:04 +03002323 if (!apic)
2324 goto nomem;
2325
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002326 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002327
Ben Gardon254272c2019-02-11 11:02:50 -08002328 apic->regs = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT);
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09002329 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03002330 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
2331 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10002332 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03002333 }
Eddie Dong97222cc2007-09-12 10:58:04 +03002334 apic->vcpu = vcpu;
2335
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002336 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002337 HRTIMER_MODE_ABS_HARD);
Avi Kivitye9d90d42012-07-26 18:01:50 +03002338 apic->lapic_timer.timer.function = apic_timer_fn;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002339 if (timer_advance_ns == -1) {
Wanpeng Lia0f00372019-09-26 08:54:03 +08002340 apic->lapic_timer.timer_advance_ns = LAPIC_TIMER_ADVANCE_NS_INIT;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002341 lapic_timer_advance_dynamic = true;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002342 } else {
2343 apic->lapic_timer.timer_advance_ns = timer_advance_ns;
Wanpeng Lid0f5a862019-09-17 16:16:26 +08002344 lapic_timer_advance_dynamic = false;
Sean Christophersonc3941d92019-04-17 10:15:33 -07002345 }
2346
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002347 /*
2348 * APIC is created enabled. This will prevent kvm_lapic_set_base from
Wei Yangee171d22019-03-31 19:17:22 -07002349 * thinking that APIC state has changed.
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002350 */
2351 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002352 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
Gregory Haskinsd76685c2009-06-01 12:54:50 -04002353 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03002354
2355 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10002356nomem_free_apic:
2357 kfree(apic);
Saar Amara251fb902019-05-06 11:29:16 +03002358 vcpu->arch.apic = NULL;
Eddie Dong97222cc2007-09-12 10:58:04 +03002359nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03002360 return -ENOMEM;
2361}
Eddie Dong97222cc2007-09-12 10:58:04 +03002362
2363int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
2364{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002365 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002366 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002367
Wanpeng Libb34e692019-07-02 17:25:02 +08002368 if (!kvm_apic_hw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03002369 return -1;
2370
Paolo Bonzinib3c045d2016-12-18 21:47:54 +01002371 __apic_update_ppr(apic, &ppr);
2372 return apic_has_interrupt_for_ppr(apic, ppr);
Eddie Dong97222cc2007-09-12 10:58:04 +03002373}
2374
Qing He40487c62007-09-17 14:47:13 +08002375int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
2376{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002377 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08002378 int r = 0;
2379
Gleb Natapovc48f1492012-08-05 15:58:33 +03002380 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04002381 r = 1;
2382 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
2383 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
2384 r = 1;
Qing He40487c62007-09-17 14:47:13 +08002385 return r;
2386}
2387
Eddie Dong1b9778d2007-09-03 16:56:58 +03002388void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
2389{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002390 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002391
Gleb Natapov54e98182012-08-05 15:58:32 +03002392 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002393 kvm_apic_inject_pending_timer_irqs(apic);
Jan Kiszkaf1ed0452013-04-28 14:00:41 +02002394 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002395 }
2396}
2397
Eddie Dong97222cc2007-09-12 10:58:04 +03002398int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
2399{
2400 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002401 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002402 u32 ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +03002403
2404 if (vector == -1)
2405 return -1;
2406
Wanpeng Li56cc2402014-08-05 12:42:24 +08002407 /*
2408 * We get here even with APIC virtualization enabled, if doing
2409 * nested virtualization and L1 runs with the "acknowledge interrupt
2410 * on exit" mode. Then we cannot inject the interrupt via RVI,
2411 * because the process would deliver it through the IDT.
2412 */
2413
Eddie Dong97222cc2007-09-12 10:58:04 +03002414 apic_clear_irr(vector, apic);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002415 if (test_bit(vector, vcpu_to_synic(vcpu)->auto_eoi_bitmap)) {
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002416 /*
2417 * For auto-EOI interrupts, there might be another pending
2418 * interrupt above PPR, so check whether to raise another
2419 * KVM_REQ_EVENT.
2420 */
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002421 apic_update_ppr(apic);
Paolo Bonzini4d82d122016-12-18 21:43:41 +01002422 } else {
2423 /*
2424 * For normal interrupts, PPR has been raised and there cannot
2425 * be a higher-priority pending interrupt---except if there was
2426 * a concurrent interrupt injection, but that would have
2427 * triggered KVM_REQ_EVENT already.
2428 */
2429 apic_set_isr(vector, apic);
2430 __apic_update_ppr(apic, &ppr);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002431 }
2432
Eddie Dong97222cc2007-09-12 10:58:04 +03002433 return vector;
2434}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002435
Radim Krčmářa92e2542016-07-12 22:09:22 +02002436static int kvm_apic_state_fixup(struct kvm_vcpu *vcpu,
2437 struct kvm_lapic_state *s, bool set)
2438{
2439 if (apic_x2apic_mode(vcpu->arch.apic)) {
2440 u32 *id = (u32 *)(s->regs + APIC_ID);
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002441 u32 *ldr = (u32 *)(s->regs + APIC_LDR);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002442
Radim Krčmář371313132016-07-12 22:09:27 +02002443 if (vcpu->kvm->arch.x2apic_format) {
2444 if (*id != vcpu->vcpu_id)
2445 return -EINVAL;
2446 } else {
2447 if (set)
2448 *id >>= 24;
2449 else
2450 *id <<= 24;
2451 }
Dr. David Alan Gilbert12806ba2017-11-17 11:52:50 +00002452
2453 /* In x2APIC mode, the LDR is fixed and based on the id */
2454 if (set)
2455 *ldr = kvm_apic_calc_x2apic_ldr(*id);
Radim Krčmářa92e2542016-07-12 22:09:22 +02002456 }
2457
2458 return 0;
2459}
2460
2461int kvm_apic_get_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2462{
2463 memcpy(s->regs, vcpu->arch.apic->regs, sizeof(*s));
2464 return kvm_apic_state_fixup(vcpu, s, false);
2465}
2466
2467int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002468{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002469 struct kvm_lapic *apic = vcpu->arch.apic;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002470 int r;
2471
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002472
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03002473 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03002474 /* set SPIV separately to get count of SW disabled APICs right */
2475 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002476
2477 r = kvm_apic_state_fixup(vcpu, s, true);
2478 if (r)
2479 return r;
Jordan Borgner0e96f312018-10-28 12:58:28 +00002480 memcpy(vcpu->arch.apic->regs, s->regs, sizeof(*s));
Radim Krčmářa92e2542016-07-12 22:09:22 +02002481
2482 recalculate_apic_map(vcpu->kvm);
Gleb Natapovfc61b802009-07-05 17:39:35 +03002483 kvm_apic_set_version(vcpu);
2484
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002485 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03002486 hrtimer_cancel(&apic->lapic_timer.timer);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02002487 apic_update_lvtt(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002488 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002489 update_divide_count(apic);
2490 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02002491 apic->irr_pending = true;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002492 apic->isr_count = vcpu->arch.apicv_active ?
Yang Zhangc7c9c562013-01-25 10:18:51 +08002493 1 : count_vectors(apic->regs + APIC_ISR);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03002494 apic->highest_isr_cache = -1;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002495 if (vcpu->arch.apicv_active) {
Paolo Bonzini967235d2016-12-19 14:03:45 +01002496 kvm_x86_ops->apicv_post_state_restore(vcpu);
Wei Wang4114c272014-11-05 10:53:43 +08002497 kvm_x86_ops->hwapic_irr_update(vcpu,
2498 apic_find_highest_irr(apic));
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02002499 kvm_x86_ops->hwapic_isr_update(vcpu,
Tiejun Chenb4eef9b2014-12-22 10:32:57 +01002500 apic_find_highest_isr(apic));
Andrey Smetanind62caab2015-11-10 15:36:33 +03002501 }
Avi Kivity3842d132010-07-27 12:30:24 +03002502 kvm_make_request(KVM_REQ_EVENT, vcpu);
Steve Rutherford49df6392015-07-29 23:21:40 -07002503 if (ioapic_in_kernel(vcpu->kvm))
2504 kvm_rtc_eoi_tracking_restore_one(vcpu);
Radim Krčmář0669a512015-10-30 15:48:20 +01002505
2506 vcpu->arch.apic_arb_prio = 0;
Radim Krčmářa92e2542016-07-12 22:09:22 +02002507
2508 return 0;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002509}
Eddie Donga3d7f852007-09-03 16:15:12 +03002510
Avi Kivity2f52d582008-01-16 12:49:30 +02002511void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03002512{
Eddie Donga3d7f852007-09-03 16:15:12 +03002513 struct hrtimer *timer;
2514
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08002515 if (!lapic_in_kernel(vcpu) ||
2516 kvm_can_post_timer_interrupt(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03002517 return;
2518
Gleb Natapov54e98182012-08-05 15:58:32 +03002519 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03002520 if (hrtimer_cancel(timer))
Sebastian Andrzej Siewior2c0d2782019-07-26 20:30:55 +02002521 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_HARD);
Eddie Donga3d7f852007-09-03 16:15:12 +03002522}
Avi Kivityb93463a2007-10-25 16:52:32 +02002523
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002524/*
2525 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
2526 *
2527 * Detect whether guest triggered PV EOI since the
2528 * last entry. If yes, set EOI on guests's behalf.
2529 * Clear PV EOI in guest memory in any case.
2530 */
2531static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
2532 struct kvm_lapic *apic)
2533{
2534 bool pending;
2535 int vector;
2536 /*
2537 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
2538 * and KVM_PV_EOI_ENABLED in guest memory as follows:
2539 *
2540 * KVM_APIC_PV_EOI_PENDING is unset:
2541 * -> host disabled PV EOI.
2542 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
2543 * -> host enabled PV EOI, guest did not execute EOI yet.
2544 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
2545 * -> host enabled PV EOI, guest executed EOI.
2546 */
2547 BUG_ON(!pv_eoi_enabled(vcpu));
2548 pending = pv_eoi_get_pending(vcpu);
2549 /*
2550 * Clear pending bit in any case: it will be set again on vmentry.
2551 * While this might not be ideal from performance point of view,
2552 * this makes sure pv eoi is only enabled when we know it's safe.
2553 */
2554 pv_eoi_clr_pending(vcpu);
2555 if (pending)
2556 return;
2557 vector = apic_set_eoi(apic);
2558 trace_kvm_pv_eoi(apic, vector);
2559}
2560
Avi Kivityb93463a2007-10-25 16:52:32 +02002561void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
2562{
2563 u32 data;
Avi Kivityb93463a2007-10-25 16:52:32 +02002564
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002565 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
2566 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
2567
Gleb Natapov41383772012-04-19 14:06:29 +03002568 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002569 return;
2570
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002571 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2572 sizeof(u32)))
Nicholas Krause603242a2015-08-05 10:44:40 -04002573 return;
Avi Kivityb93463a2007-10-25 16:52:32 +02002574
2575 apic_set_tpr(vcpu->arch.apic, data & 0xff);
2576}
2577
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002578/*
2579 * apic_sync_pv_eoi_to_guest - called before vmentry
2580 *
2581 * Detect whether it's safe to enable PV EOI and
2582 * if yes do so.
2583 */
2584static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
2585 struct kvm_lapic *apic)
2586{
2587 if (!pv_eoi_enabled(vcpu) ||
2588 /* IRR set or many bits in ISR: could be nested. */
2589 apic->irr_pending ||
2590 /* Cache not set: could be safe but we don't bother. */
2591 apic->highest_isr_cache == -1 ||
2592 /* Need EOI to update ioapic. */
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02002593 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002594 /*
2595 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
2596 * so we need not do anything here.
2597 */
2598 return;
2599 }
2600
2601 pv_eoi_set_pending(apic->vcpu);
2602}
2603
Avi Kivityb93463a2007-10-25 16:52:32 +02002604void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
2605{
2606 u32 data, tpr;
2607 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002608 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02002609
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002610 apic_sync_pv_eoi_to_guest(vcpu, apic);
2611
Gleb Natapov41383772012-04-19 14:06:29 +03002612 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002613 return;
2614
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002615 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02002616 max_irr = apic_find_highest_irr(apic);
2617 if (max_irr < 0)
2618 max_irr = 0;
2619 max_isr = apic_find_highest_isr(apic);
2620 if (max_isr < 0)
2621 max_isr = 0;
2622 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
2623
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002624 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2625 sizeof(u32));
Avi Kivityb93463a2007-10-25 16:52:32 +02002626}
2627
Andy Honigfda4e2e2013-11-20 10:23:22 -08002628int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
Avi Kivityb93463a2007-10-25 16:52:32 +02002629{
Andy Honigfda4e2e2013-11-20 10:23:22 -08002630 if (vapic_addr) {
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002631 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andy Honigfda4e2e2013-11-20 10:23:22 -08002632 &vcpu->arch.apic->vapic_cache,
2633 vapic_addr, sizeof(u32)))
2634 return -EINVAL;
Gleb Natapov41383772012-04-19 14:06:29 +03002635 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002636 } else {
Gleb Natapov41383772012-04-19 14:06:29 +03002637 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e2013-11-20 10:23:22 -08002638 }
2639
2640 vcpu->arch.apic->vapic_addr = vapic_addr;
2641 return 0;
Avi Kivityb93463a2007-10-25 16:52:32 +02002642}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002643
2644int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2645{
2646 struct kvm_lapic *apic = vcpu->arch.apic;
2647 u32 reg = (msr - APIC_BASE_MSR) << 4;
2648
Paolo Bonzini35754c92015-07-29 12:05:37 +02002649 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002650 return 1;
2651
Nadav Amitc69d3d92014-11-26 17:56:25 +02002652 if (reg == APIC_ICR2)
2653 return 1;
2654
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002655 /* if this is ICR write vector before command */
Radim Krčmářdecdc282014-11-26 17:07:05 +01002656 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002657 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2658 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002659}
2660
2661int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
2662{
2663 struct kvm_lapic *apic = vcpu->arch.apic;
2664 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
2665
Paolo Bonzini35754c92015-07-29 12:05:37 +02002666 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002667 return 1;
2668
Yi Wang0d888002019-07-06 01:08:48 +08002669 if (reg == APIC_DFR || reg == APIC_ICR2)
Nadav Amitc69d3d92014-11-26 17:56:25 +02002670 return 1;
Nadav Amitc69d3d92014-11-26 17:56:25 +02002671
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002672 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002673 return 1;
Radim Krčmářdecdc282014-11-26 17:07:05 +01002674 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002675 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002676
2677 *data = (((u64)high) << 32) | low;
2678
2679 return 0;
2680}
Gleb Natapov10388a02010-01-17 15:51:23 +02002681
2682int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
2683{
2684 struct kvm_lapic *apic = vcpu->arch.apic;
2685
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002686 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002687 return 1;
2688
2689 /* if this is ICR write vector before command */
2690 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002691 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2692 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov10388a02010-01-17 15:51:23 +02002693}
2694
2695int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
2696{
2697 struct kvm_lapic *apic = vcpu->arch.apic;
2698 u32 low, high = 0;
2699
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002700 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002701 return 1;
2702
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002703 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov10388a02010-01-17 15:51:23 +02002704 return 1;
2705 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002706 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov10388a02010-01-17 15:51:23 +02002707
2708 *data = (((u64)high) << 32) | low;
2709
2710 return 0;
2711}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002712
Ladi Prosek72bbf932018-10-16 18:49:59 +02002713int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002714{
2715 u64 addr = data & ~KVM_MSR_ENABLED;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002716 struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
2717 unsigned long new_len;
2718
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002719 if (!IS_ALIGNED(addr, 4))
2720 return 1;
2721
2722 vcpu->arch.pv_eoi.msr_val = data;
2723 if (!pv_eoi_enabled(vcpu))
2724 return 0;
Vitaly Kuznetsova7c42bb2018-10-16 18:50:06 +02002725
2726 if (addr == ghc->gpa && len <= ghc->len)
2727 new_len = ghc->len;
2728 else
2729 new_len = len;
2730
2731 return kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002732}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002733
Jan Kiszka66450a22013-03-13 12:42:34 +01002734void kvm_apic_accept_events(struct kvm_vcpu *vcpu)
2735{
2736 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01002737 u8 sipi_vector;
Gleb Natapov299018f2013-06-03 11:30:02 +03002738 unsigned long pe;
Jan Kiszka66450a22013-03-13 12:42:34 +01002739
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002740 if (!lapic_in_kernel(vcpu) || !apic->pending_events)
Jan Kiszka66450a22013-03-13 12:42:34 +01002741 return;
2742
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002743 /*
Liran Alon4b9852f2019-08-26 13:24:49 +03002744 * INITs are latched while CPU is in specific states
2745 * (SMM, VMX non-root mode, SVM with GIF=0).
2746 * Because a CPU cannot be in these states immediately
2747 * after it has processed an INIT signal (and thus in
2748 * KVM_MP_STATE_INIT_RECEIVED state), just eat SIPIs
2749 * and leave the INIT pending.
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002750 */
Liran Alon27cbe7d2019-11-11 11:16:40 +02002751 if (kvm_vcpu_latch_init(vcpu)) {
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002752 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
2753 if (test_bit(KVM_APIC_SIPI, &apic->pending_events))
2754 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
2755 return;
2756 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002757
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002758 pe = xchg(&apic->pending_events, 0);
Gleb Natapov299018f2013-06-03 11:30:02 +03002759 if (test_bit(KVM_APIC_INIT, &pe)) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002760 kvm_vcpu_reset(vcpu, true);
Jan Kiszka66450a22013-03-13 12:42:34 +01002761 if (kvm_vcpu_is_bsp(apic->vcpu))
2762 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2763 else
2764 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
2765 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002766 if (test_bit(KVM_APIC_SIPI, &pe) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01002767 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
2768 /* evaluate pending_events before reading the vector */
2769 smp_rmb();
2770 sipi_vector = apic->sipi_vector;
Jan Kiszka66450a22013-03-13 12:42:34 +01002771 kvm_vcpu_deliver_sipi_vector(vcpu, sipi_vector);
2772 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2773 }
2774}
2775
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002776void kvm_lapic_init(void)
2777{
2778 /* do not patch jump label more than once per second */
2779 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002780 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002781}
David Matlackcef84c32016-12-16 14:30:36 -08002782
2783void kvm_lapic_exit(void)
2784{
2785 static_key_deferred_flush(&apic_hw_disabled);
2786 static_key_deferred_flush(&apic_sw_disabled);
2787}