blob: a397200281c119aabb283fce45c4a921f3f4cd24 [file] [log] [blame]
Eddie Dong97222cc2007-09-12 10:58:04 +03001
2/*
3 * Local APIC virtualization
4 *
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
Eddie Dong97222cc2007-09-12 10:58:04 +03009 *
10 * Authors:
11 * Dor Laor <dor.laor@qumranet.com>
12 * Gregory Haskins <ghaskins@novell.com>
13 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
14 *
15 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
16 *
17 * This work is licensed under the terms of the GNU GPL, version 2. See
18 * the COPYING file in the top-level directory.
19 */
20
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030022#include <linux/kvm.h>
23#include <linux/mm.h>
24#include <linux/highmem.h>
25#include <linux/smp.h>
26#include <linux/hrtimer.h>
27#include <linux/io.h>
28#include <linux/module.h>
Roman Zippel6f6d6a12008-05-01 04:34:28 -070029#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030031#include <asm/processor.h>
32#include <asm/msr.h>
33#include <asm/page.h>
34#include <asm/current.h>
35#include <asm/apicdef.h>
Marcelo Tosattid0659d92014-12-16 09:08:15 -050036#include <asm/delay.h>
Arun Sharma600634972011-07-26 16:09:06 -070037#include <linux/atomic.h>
Gleb Natapovc5cc4212012-08-05 15:58:30 +030038#include <linux/jump_label.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030039#include "kvm_cache_regs.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030040#include "irq.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030041#include "trace.h"
Gleb Natapovfc61b802009-07-05 17:39:35 +030042#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020043#include "cpuid.h"
Andrey Smetanin5c9194122015-11-10 15:36:34 +030044#include "hyperv.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030045
Marcelo Tosattib682b812009-02-10 20:41:41 -020046#ifndef CONFIG_X86_64
47#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
48#else
49#define mod_64(x, y) ((x) % (y))
50#endif
51
Eddie Dong97222cc2007-09-12 10:58:04 +030052#define PRId64 "d"
53#define PRIx64 "llx"
54#define PRIu64 "u"
55#define PRIo64 "o"
56
57#define APIC_BUS_CYCLE_NS 1
58
59/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
60#define apic_debug(fmt, arg...)
61
Eddie Dong97222cc2007-09-12 10:58:04 +030062/* 14 is the version for Xeon and Pentium 8.4.8*/
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -050063#define APIC_VERSION (0x14UL | ((KVM_APIC_LVT_NUM - 1) << 16))
Eddie Dong97222cc2007-09-12 10:58:04 +030064#define LAPIC_MMIO_LENGTH (1 << 12)
65/* followed define is not in apicdef.h */
66#define APIC_SHORT_MASK 0xc0000
67#define APIC_DEST_NOSHORT 0x0
68#define APIC_DEST_MASK 0x800
69#define MAX_APIC_VECTOR 256
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +090070#define APIC_VECTORS_PER_REG 32
Eddie Dong97222cc2007-09-12 10:58:04 +030071
Nadav Amit394457a2014-10-03 00:30:52 +030072#define APIC_BROADCAST 0xFF
73#define X2APIC_BROADCAST 0xFFFFFFFFul
74
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +030075static inline int apic_test_vector(int vec, void *bitmap)
76{
77 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
78}
79
Yang Zhang10606912013-04-11 19:21:38 +080080bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector)
81{
82 struct kvm_lapic *apic = vcpu->arch.apic;
83
84 return apic_test_vector(vector, apic->regs + APIC_ISR) ||
85 apic_test_vector(vector, apic->regs + APIC_IRR);
86}
87
Eddie Dong97222cc2007-09-12 10:58:04 +030088static inline void apic_clear_vector(int vec, void *bitmap)
89{
90 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
91}
92
Michael S. Tsirkin8680b942012-06-24 19:24:26 +030093static inline int __apic_test_and_set_vector(int vec, void *bitmap)
94{
95 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
96}
97
98static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
99{
100 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
101}
102
Gleb Natapovc5cc4212012-08-05 15:58:30 +0300103struct static_key_deferred apic_hw_disabled __read_mostly;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300104struct static_key_deferred apic_sw_disabled __read_mostly;
105
Eddie Dong97222cc2007-09-12 10:58:04 +0300106static inline int apic_enabled(struct kvm_lapic *apic)
107{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300108 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
Gleb Natapov54e98182012-08-05 15:58:32 +0300109}
110
Eddie Dong97222cc2007-09-12 10:58:04 +0300111#define LVT_MASK \
112 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
113
114#define LINT_MASK \
115 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
116 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
117
Radim Krčmář3548a252015-02-12 19:41:33 +0100118/* The logical map is definitely wrong if we have multiple
119 * modes at the same time. (Physical map is always right.)
120 */
121static inline bool kvm_apic_logical_map_valid(struct kvm_apic_map *map)
122{
123 return !(map->mode & (map->mode - 1));
124}
125
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100126static inline void
127apic_logical_id(struct kvm_apic_map *map, u32 dest_id, u16 *cid, u16 *lid)
128{
129 unsigned lid_bits;
130
131 BUILD_BUG_ON(KVM_APIC_MODE_XAPIC_CLUSTER != 4);
132 BUILD_BUG_ON(KVM_APIC_MODE_XAPIC_FLAT != 8);
133 BUILD_BUG_ON(KVM_APIC_MODE_X2APIC != 16);
134 lid_bits = map->mode;
135
136 *cid = dest_id >> lid_bits;
137 *lid = dest_id & ((1 << lid_bits) - 1);
138}
139
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300140static void recalculate_apic_map(struct kvm *kvm)
141{
142 struct kvm_apic_map *new, *old = NULL;
143 struct kvm_vcpu *vcpu;
144 int i;
145
146 new = kzalloc(sizeof(struct kvm_apic_map), GFP_KERNEL);
147
148 mutex_lock(&kvm->arch.apic_map_lock);
149
150 if (!new)
151 goto out;
152
Nadav Amit173beed2014-11-02 11:54:54 +0200153 kvm_for_each_vcpu(i, vcpu, kvm) {
154 struct kvm_lapic *apic = vcpu->arch.apic;
155 u16 cid, lid;
Radim Krčmář25995e52014-11-27 23:30:19 +0100156 u32 ldr, aid;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300157
Radim Krčmářdf04d1d2015-01-29 22:33:35 +0100158 if (!kvm_apic_present(vcpu))
159 continue;
160
Radim Krčmář25995e52014-11-27 23:30:19 +0100161 aid = kvm_apic_id(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500162 ldr = kvm_lapic_get_reg(apic, APIC_LDR);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300163
Radim Krčmář25995e52014-11-27 23:30:19 +0100164 if (aid < ARRAY_SIZE(new->phys_map))
165 new->phys_map[aid] = apic;
Radim Krčmář3548a252015-02-12 19:41:33 +0100166
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100167 if (apic_x2apic_mode(apic)) {
168 new->mode |= KVM_APIC_MODE_X2APIC;
169 } else if (ldr) {
170 ldr = GET_APIC_LOGICAL_ID(ldr);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500171 if (kvm_lapic_get_reg(apic, APIC_DFR) == APIC_DFR_FLAT)
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100172 new->mode |= KVM_APIC_MODE_XAPIC_FLAT;
173 else
174 new->mode |= KVM_APIC_MODE_XAPIC_CLUSTER;
175 }
176
177 if (!kvm_apic_logical_map_valid(new))
Radim Krčmář3548a252015-02-12 19:41:33 +0100178 continue;
179
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100180 apic_logical_id(new, ldr, &cid, &lid);
181
Radim Krčmář25995e52014-11-27 23:30:19 +0100182 if (lid && cid < ARRAY_SIZE(new->logical_map))
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300183 new->logical_map[cid][ffs(lid) - 1] = apic;
184 }
185out:
186 old = rcu_dereference_protected(kvm->arch.apic_map,
187 lockdep_is_held(&kvm->arch.apic_map_lock));
188 rcu_assign_pointer(kvm->arch.apic_map, new);
189 mutex_unlock(&kvm->arch.apic_map_lock);
190
191 if (old)
192 kfree_rcu(old, rcu);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800193
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700194 kvm_make_scan_ioapic_request(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300195}
196
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300197static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
198{
Radim Krčmáře4627552014-10-30 15:06:45 +0100199 bool enabled = val & APIC_SPIV_APIC_ENABLED;
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300200
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500201 kvm_lapic_set_reg(apic, APIC_SPIV, val);
Radim Krčmáře4627552014-10-30 15:06:45 +0100202
203 if (enabled != apic->sw_enabled) {
204 apic->sw_enabled = enabled;
205 if (enabled) {
Nadav Amit1e1b6c22014-08-19 00:03:00 +0300206 static_key_slow_dec_deferred(&apic_sw_disabled);
207 recalculate_apic_map(apic->vcpu->kvm);
208 } else
209 static_key_slow_inc(&apic_sw_disabled.key);
210 }
211}
212
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300213static inline void kvm_apic_set_id(struct kvm_lapic *apic, u8 id)
214{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500215 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300216 recalculate_apic_map(apic->vcpu->kvm);
217}
218
219static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
220{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500221 kvm_lapic_set_reg(apic, APIC_LDR, id);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300222 recalculate_apic_map(apic->vcpu->kvm);
223}
224
Radim Krčmář257b9a52015-05-22 18:45:11 +0200225static inline void kvm_apic_set_x2apic_id(struct kvm_lapic *apic, u8 id)
226{
227 u32 ldr = ((id >> 4) << 16) | (1 << (id & 0xf));
228
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500229 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
230 kvm_lapic_set_reg(apic, APIC_LDR, ldr);
Radim Krčmář257b9a52015-05-22 18:45:11 +0200231 recalculate_apic_map(apic->vcpu->kvm);
232}
233
Eddie Dong97222cc2007-09-12 10:58:04 +0300234static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
235{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500236 return !(kvm_lapic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300237}
238
239static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
240{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500241 return kvm_lapic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
Eddie Dong97222cc2007-09-12 10:58:04 +0300242}
243
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800244static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
245{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100246 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800247}
248
Eddie Dong97222cc2007-09-12 10:58:04 +0300249static inline int apic_lvtt_period(struct kvm_lapic *apic)
250{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100251 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800252}
253
254static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
255{
Radim Krčmářf30ebc32014-10-30 15:06:47 +0100256 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300257}
258
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200259static inline int apic_lvt_nmi_mode(u32 lvt_val)
260{
261 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
262}
263
Gleb Natapovfc61b802009-07-05 17:39:35 +0300264void kvm_apic_set_version(struct kvm_vcpu *vcpu)
265{
266 struct kvm_lapic *apic = vcpu->arch.apic;
267 struct kvm_cpuid_entry2 *feat;
268 u32 v = APIC_VERSION;
269
Paolo Bonzinibce87cc2016-01-08 13:48:51 +0100270 if (!lapic_in_kernel(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300271 return;
272
273 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
274 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
275 v |= APIC_LVR_DIRECTED_EOI;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500276 kvm_lapic_set_reg(apic, APIC_LVR, v);
Gleb Natapovfc61b802009-07-05 17:39:35 +0300277}
278
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500279static const unsigned int apic_lvt_mask[KVM_APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800280 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300281 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
282 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
283 LINT_MASK, LINT_MASK, /* LVT0-1 */
284 LVT_MASK /* LVTERR */
285};
286
287static int find_highest_vector(void *bitmap)
288{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900289 int vec;
290 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300291
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900292 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
293 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
294 reg = bitmap + REG_POS(vec);
295 if (*reg)
296 return fls(*reg) - 1 + vec;
297 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300298
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900299 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300300}
301
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300302static u8 count_vectors(void *bitmap)
303{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900304 int vec;
305 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300306 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900307
308 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
309 reg = bitmap + REG_POS(vec);
310 count += hweight32(*reg);
311 }
312
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300313 return count;
314}
315
Wincy Van705699a2015-02-03 23:58:17 +0800316void __kvm_apic_update_irr(u32 *pir, void *regs)
Yang Zhanga20ed542013-04-11 19:25:15 +0800317{
318 u32 i, pir_val;
Yang Zhanga20ed542013-04-11 19:25:15 +0800319
320 for (i = 0; i <= 7; i++) {
321 pir_val = xchg(&pir[i], 0);
322 if (pir_val)
Wincy Van705699a2015-02-03 23:58:17 +0800323 *((u32 *)(regs + APIC_IRR + i * 0x10)) |= pir_val;
Yang Zhanga20ed542013-04-11 19:25:15 +0800324 }
325}
Wincy Van705699a2015-02-03 23:58:17 +0800326EXPORT_SYMBOL_GPL(__kvm_apic_update_irr);
327
328void kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir)
329{
330 struct kvm_lapic *apic = vcpu->arch.apic;
331
332 __kvm_apic_update_irr(pir, apic->regs);
Radim Krčmářc77f3fa2015-10-08 20:23:33 +0200333
334 kvm_make_request(KVM_REQ_EVENT, vcpu);
Wincy Van705699a2015-02-03 23:58:17 +0800335}
Yang Zhanga20ed542013-04-11 19:25:15 +0800336EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
337
Gleb Natapov33e4c682009-06-11 11:06:51 +0300338static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300339{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300340 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300341}
342
343static inline int apic_find_highest_irr(struct kvm_lapic *apic)
344{
345 int result;
346
Yang Zhangc7c9c562013-01-25 10:18:51 +0800347 /*
348 * Note that irr_pending is just a hint. It will be always
349 * true with virtual interrupt delivery enabled.
350 */
Gleb Natapov33e4c682009-06-11 11:06:51 +0300351 if (!apic->irr_pending)
352 return -1;
353
Andrey Smetanind62caab2015-11-10 15:36:33 +0300354 if (apic->vcpu->arch.apicv_active)
355 kvm_x86_ops->sync_pir_to_irr(apic->vcpu);
Gleb Natapov33e4c682009-06-11 11:06:51 +0300356 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300357 ASSERT(result == -1 || result >= 16);
358
359 return result;
360}
361
Gleb Natapov33e4c682009-06-11 11:06:51 +0300362static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
363{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800364 struct kvm_vcpu *vcpu;
365
366 vcpu = apic->vcpu;
367
Andrey Smetanind62caab2015-11-10 15:36:33 +0300368 if (unlikely(vcpu->arch.apicv_active)) {
Wanpeng Li56cc2402014-08-05 12:42:24 +0800369 /* try to update RVI */
Nadav Amitf210f752014-11-16 23:49:07 +0200370 apic_clear_vector(vec, apic->regs + APIC_IRR);
Wanpeng Li56cc2402014-08-05 12:42:24 +0800371 kvm_make_request(KVM_REQ_EVENT, vcpu);
Nadav Amitf210f752014-11-16 23:49:07 +0200372 } else {
373 apic->irr_pending = false;
374 apic_clear_vector(vec, apic->regs + APIC_IRR);
375 if (apic_search_irr(apic) != -1)
376 apic->irr_pending = true;
Wanpeng Li56cc2402014-08-05 12:42:24 +0800377 }
Gleb Natapov33e4c682009-06-11 11:06:51 +0300378}
379
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300380static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
381{
Wanpeng Li56cc2402014-08-05 12:42:24 +0800382 struct kvm_vcpu *vcpu;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200383
Wanpeng Li56cc2402014-08-05 12:42:24 +0800384 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
385 return;
386
387 vcpu = apic->vcpu;
388
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300389 /*
Wanpeng Li56cc2402014-08-05 12:42:24 +0800390 * With APIC virtualization enabled, all caching is disabled
391 * because the processor can modify ISR under the hood. Instead
392 * just set SVI.
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300393 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300394 if (unlikely(vcpu->arch.apicv_active))
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +0200395 kvm_x86_ops->hwapic_isr_update(vcpu, vec);
Wanpeng Li56cc2402014-08-05 12:42:24 +0800396 else {
397 ++apic->isr_count;
398 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
399 /*
400 * ISR (in service register) bit is set when injecting an interrupt.
401 * The highest vector is injected. Thus the latest bit set matches
402 * the highest bit in ISR.
403 */
404 apic->highest_isr_cache = vec;
405 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300406}
407
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200408static inline int apic_find_highest_isr(struct kvm_lapic *apic)
409{
410 int result;
411
412 /*
413 * Note that isr_count is always 1, and highest_isr_cache
414 * is always -1, with APIC virtualization enabled.
415 */
416 if (!apic->isr_count)
417 return -1;
418 if (likely(apic->highest_isr_cache != -1))
419 return apic->highest_isr_cache;
420
421 result = find_highest_vector(apic->regs + APIC_ISR);
422 ASSERT(result == -1 || result >= 16);
423
424 return result;
425}
426
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300427static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
428{
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200429 struct kvm_vcpu *vcpu;
430 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
431 return;
432
433 vcpu = apic->vcpu;
434
435 /*
436 * We do get here for APIC virtualization enabled if the guest
437 * uses the Hyper-V APIC enlightenment. In this case we may need
438 * to trigger a new interrupt delivery by writing the SVI field;
439 * on the other hand isr_count and highest_isr_cache are unused
440 * and must be left alone.
441 */
Andrey Smetanind62caab2015-11-10 15:36:33 +0300442 if (unlikely(vcpu->arch.apicv_active))
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +0200443 kvm_x86_ops->hwapic_isr_update(vcpu,
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200444 apic_find_highest_isr(apic));
445 else {
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300446 --apic->isr_count;
Paolo Bonzinifc57ac22014-05-14 17:40:58 +0200447 BUG_ON(apic->isr_count < 0);
448 apic->highest_isr_cache = -1;
449 }
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300450}
451
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800452int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
453{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300454 /* This may race with setting of irr in __apic_accept_irq() and
455 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
456 * will cause vmexit immediately and the value will be recalculated
457 * on the next vmentry.
458 */
Paolo Bonzinif8543d62016-01-08 13:42:24 +0100459 return apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800460}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800461
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200462static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +0800463 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100464 struct dest_map *dest_map);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200465
Yang Zhangb4f22252013-04-11 19:21:37 +0800466int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100467 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +0300468{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800469 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800470
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200471 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
Yang Zhangb4f22252013-04-11 19:21:37 +0800472 irq->level, irq->trig_mode, dest_map);
Eddie Dong97222cc2007-09-12 10:58:04 +0300473}
474
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300475static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
476{
477
478 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
479 sizeof(val));
480}
481
482static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
483{
484
485 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
486 sizeof(*val));
487}
488
489static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
490{
491 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
492}
493
494static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
495{
496 u8 val;
497 if (pv_eoi_get_user(vcpu, &val) < 0)
498 apic_debug("Can't read EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800499 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300500 return val & 0x1;
501}
502
503static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
504{
505 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
506 apic_debug("Can't set EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800507 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300508 return;
509 }
510 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
511}
512
513static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
514{
515 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
516 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
Chen Fan96893972014-01-02 17:14:11 +0800517 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300518 return;
519 }
520 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
521}
522
Eddie Dong97222cc2007-09-12 10:58:04 +0300523static void apic_update_ppr(struct kvm_lapic *apic)
524{
Avi Kivity3842d132010-07-27 12:30:24 +0300525 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300526 int isr;
527
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500528 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
529 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300530 isr = apic_find_highest_isr(apic);
531 isrv = (isr != -1) ? isr : 0;
532
533 if ((tpr & 0xf0) >= (isrv & 0xf0))
534 ppr = tpr & 0xff;
535 else
536 ppr = isrv & 0xf0;
537
538 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
539 apic, ppr, isr, isrv);
540
Avi Kivity3842d132010-07-27 12:30:24 +0300541 if (old_ppr != ppr) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500542 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200543 if (ppr < old_ppr)
544 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300545 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300546}
547
548static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
549{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500550 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
Eddie Dong97222cc2007-09-12 10:58:04 +0300551 apic_update_ppr(apic);
552}
553
Radim Krčmář03d22492015-02-12 19:41:31 +0100554static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300555{
Radim Krčmář03d22492015-02-12 19:41:31 +0100556 if (apic_x2apic_mode(apic))
557 return mda == X2APIC_BROADCAST;
558
559 return GET_APIC_DEST_FIELD(mda) == APIC_BROADCAST;
Eddie Dong97222cc2007-09-12 10:58:04 +0300560}
561
Radim Krčmář03d22492015-02-12 19:41:31 +0100562static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
Nadav Amit394457a2014-10-03 00:30:52 +0300563{
Radim Krčmář03d22492015-02-12 19:41:31 +0100564 if (kvm_apic_broadcast(apic, mda))
565 return true;
566
567 if (apic_x2apic_mode(apic))
568 return mda == kvm_apic_id(apic);
569
570 return mda == SET_APIC_DEST_FIELD(kvm_apic_id(apic));
Nadav Amit394457a2014-10-03 00:30:52 +0300571}
572
Radim Krčmář52c233a2015-01-29 22:48:48 +0100573static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
Eddie Dong97222cc2007-09-12 10:58:04 +0300574{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300575 u32 logical_id;
576
Nadav Amit394457a2014-10-03 00:30:52 +0300577 if (kvm_apic_broadcast(apic, mda))
Radim Krčmář9368b562015-01-29 22:48:49 +0100578 return true;
Nadav Amit394457a2014-10-03 00:30:52 +0300579
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500580 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300581
Radim Krčmář9368b562015-01-29 22:48:49 +0100582 if (apic_x2apic_mode(apic))
Radim Krčmář8a395362015-01-29 22:48:51 +0100583 return ((logical_id >> 16) == (mda >> 16))
584 && (logical_id & mda & 0xffff) != 0;
Radim Krčmář9368b562015-01-29 22:48:49 +0100585
586 logical_id = GET_APIC_LOGICAL_ID(logical_id);
Radim Krčmář03d22492015-02-12 19:41:31 +0100587 mda = GET_APIC_DEST_FIELD(mda);
Eddie Dong97222cc2007-09-12 10:58:04 +0300588
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500589 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300590 case APIC_DFR_FLAT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100591 return (logical_id & mda) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300592 case APIC_DFR_CLUSTER:
Radim Krčmář9368b562015-01-29 22:48:49 +0100593 return ((logical_id >> 4) == (mda >> 4))
594 && (logical_id & mda & 0xf) != 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300595 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200596 apic_debug("Bad DFR vcpu %d: %08x\n",
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500597 apic->vcpu->vcpu_id, kvm_lapic_get_reg(apic, APIC_DFR));
Radim Krčmář9368b562015-01-29 22:48:49 +0100598 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300599 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300600}
601
Radim Krčmář03d22492015-02-12 19:41:31 +0100602/* KVM APIC implementation has two quirks
603 * - dest always begins at 0 while xAPIC MDA has offset 24,
604 * - IOxAPIC messages have to be delivered (directly) to x2APIC.
605 */
606static u32 kvm_apic_mda(unsigned int dest_id, struct kvm_lapic *source,
607 struct kvm_lapic *target)
608{
609 bool ipi = source != NULL;
610 bool x2apic_mda = apic_x2apic_mode(ipi ? source : target);
611
612 if (!ipi && dest_id == APIC_BROADCAST && x2apic_mda)
613 return X2APIC_BROADCAST;
614
615 return x2apic_mda ? dest_id : SET_APIC_DEST_FIELD(dest_id);
616}
617
Radim Krčmář52c233a2015-01-29 22:48:48 +0100618bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Nadav Amit394457a2014-10-03 00:30:52 +0300619 int short_hand, unsigned int dest, int dest_mode)
Eddie Dong97222cc2007-09-12 10:58:04 +0300620{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800621 struct kvm_lapic *target = vcpu->arch.apic;
Radim Krčmář03d22492015-02-12 19:41:31 +0100622 u32 mda = kvm_apic_mda(dest, source, target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300623
624 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200625 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300626 target, source, dest, dest_mode, short_hand);
627
Zachary Amsdenbd371392010-06-14 11:42:15 -1000628 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300629 switch (short_hand) {
630 case APIC_DEST_NOSHORT:
Radim Krčmář3697f302015-01-29 22:48:50 +0100631 if (dest_mode == APIC_DEST_PHYSICAL)
Radim Krčmář03d22492015-02-12 19:41:31 +0100632 return kvm_apic_match_physical_addr(target, mda);
Gleb Natapov343f94f2009-03-05 16:34:54 +0200633 else
Radim Krčmář03d22492015-02-12 19:41:31 +0100634 return kvm_apic_match_logical_addr(target, mda);
Eddie Dong97222cc2007-09-12 10:58:04 +0300635 case APIC_DEST_SELF:
Radim Krčmář9368b562015-01-29 22:48:49 +0100636 return target == source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300637 case APIC_DEST_ALLINC:
Radim Krčmář9368b562015-01-29 22:48:49 +0100638 return true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300639 case APIC_DEST_ALLBUT:
Radim Krčmář9368b562015-01-29 22:48:49 +0100640 return target != source;
Eddie Dong97222cc2007-09-12 10:58:04 +0300641 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200642 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
643 short_hand);
Radim Krčmář9368b562015-01-29 22:48:49 +0100644 return false;
Eddie Dong97222cc2007-09-12 10:58:04 +0300645 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300646}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500647EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
Eddie Dong97222cc2007-09-12 10:58:04 +0300648
Feng Wu520040142016-01-25 16:53:33 +0800649int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
650 const unsigned long *bitmap, u32 bitmap_size)
651{
652 u32 mod;
653 int i, idx = -1;
654
655 mod = vector % dest_vcpus;
656
657 for (i = 0; i <= mod; i++) {
658 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
659 BUG_ON(idx == bitmap_size);
660 }
661
662 return idx;
663}
664
Radim Krčmář4efd8052016-02-12 15:00:15 +0100665static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
666{
667 if (!kvm->arch.disabled_lapic_found) {
668 kvm->arch.disabled_lapic_found = true;
669 printk(KERN_INFO
670 "Disabled LAPIC found during irq injection\n");
671 }
672}
673
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300674bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100675 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300676{
677 struct kvm_apic_map *map;
678 unsigned long bitmap = 1;
679 struct kvm_lapic **dst;
680 int i;
Paolo Bonzinibea15422015-04-13 15:40:02 +0200681 bool ret, x2apic_ipi;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300682
683 *r = -1;
684
685 if (irq->shorthand == APIC_DEST_SELF) {
Yang Zhangb4f22252013-04-11 19:21:37 +0800686 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300687 return true;
688 }
689
690 if (irq->shorthand)
691 return false;
692
Paolo Bonzinibea15422015-04-13 15:40:02 +0200693 x2apic_ipi = src && apic_x2apic_mode(src);
Radim Krčmář9ea369b2015-02-12 19:41:32 +0100694 if (irq->dest_id == (x2apic_ipi ? X2APIC_BROADCAST : APIC_BROADCAST))
695 return false;
696
Paolo Bonzinibea15422015-04-13 15:40:02 +0200697 ret = true;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300698 rcu_read_lock();
699 map = rcu_dereference(kvm->arch.apic_map);
700
Paolo Bonzinibea15422015-04-13 15:40:02 +0200701 if (!map) {
702 ret = false;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300703 goto out;
Paolo Bonzinibea15422015-04-13 15:40:02 +0200704 }
Radim Krčmář698f9752014-11-27 20:03:14 +0100705
Radim Krčmář3697f302015-01-29 22:48:50 +0100706 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
Radim Krčmářfa834e92014-11-27 20:03:12 +0100707 if (irq->dest_id >= ARRAY_SIZE(map->phys_map))
708 goto out;
709
710 dst = &map->phys_map[irq->dest_id];
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300711 } else {
Radim Krčmář3548a252015-02-12 19:41:33 +0100712 u16 cid;
713
714 if (!kvm_apic_logical_map_valid(map)) {
715 ret = false;
716 goto out;
717 }
718
Radim Krčmář3b5a5ff2015-02-12 19:41:34 +0100719 apic_logical_id(map, irq->dest_id, &cid, (u16 *)&bitmap);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300720
Radim Krčmář45c30942014-11-27 20:03:13 +0100721 if (cid >= ARRAY_SIZE(map->logical_map))
722 goto out;
723
724 dst = map->logical_map[cid];
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300725
Feng Wu520040142016-01-25 16:53:33 +0800726 if (!kvm_lowest_prio_delivery(irq))
727 goto set_irq;
728
729 if (!kvm_vector_hashing_enabled()) {
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300730 int l = -1;
731 for_each_set_bit(i, &bitmap, 16) {
732 if (!dst[i])
733 continue;
734 if (l < 0)
735 l = i;
Feng Wu520040142016-01-25 16:53:33 +0800736 else if (kvm_apic_compare_prio(dst[i]->vcpu,
737 dst[l]->vcpu) < 0)
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300738 l = i;
739 }
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300740 bitmap = (l >= 0) ? 1 << l : 0;
Feng Wu520040142016-01-25 16:53:33 +0800741 } else {
742 int idx;
743 unsigned int dest_vcpus;
744
745 dest_vcpus = hweight16(bitmap);
746 if (dest_vcpus == 0)
747 goto out;
748
749 idx = kvm_vector_to_index(irq->vector,
750 dest_vcpus, &bitmap, 16);
751
Radim Krčmář4efd8052016-02-12 15:00:15 +0100752 if (!dst[idx]) {
753 kvm_apic_disabled_lapic_found(kvm);
Feng Wu520040142016-01-25 16:53:33 +0800754 goto out;
755 }
756
757 bitmap = (idx >= 0) ? 1 << idx : 0;
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300758 }
759 }
760
Feng Wu520040142016-01-25 16:53:33 +0800761set_irq:
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300762 for_each_set_bit(i, &bitmap, 16) {
763 if (!dst[i])
764 continue;
765 if (*r < 0)
766 *r = 0;
Yang Zhangb4f22252013-04-11 19:21:37 +0800767 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300768 }
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300769out:
770 rcu_read_unlock();
771 return ret;
772}
773
Feng Wu6228a0d2016-01-25 16:53:34 +0800774/*
775 * This routine tries to handler interrupts in posted mode, here is how
776 * it deals with different cases:
777 * - For single-destination interrupts, handle it in posted mode
778 * - Else if vector hashing is enabled and it is a lowest-priority
779 * interrupt, handle it in posted mode and use the following mechanism
780 * to find the destinaiton vCPU.
781 * 1. For lowest-priority interrupts, store all the possible
782 * destination vCPUs in an array.
783 * 2. Use "guest vector % max number of destination vCPUs" to find
784 * the right destination vCPU in the array for the lowest-priority
785 * interrupt.
786 * - Otherwise, use remapped mode to inject the interrupt.
787 */
Feng Wu8feb4a02015-09-18 22:29:47 +0800788bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
789 struct kvm_vcpu **dest_vcpu)
790{
791 struct kvm_apic_map *map;
792 bool ret = false;
793 struct kvm_lapic *dst = NULL;
794
795 if (irq->shorthand)
796 return false;
797
798 rcu_read_lock();
799 map = rcu_dereference(kvm->arch.apic_map);
800
801 if (!map)
802 goto out;
803
804 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
805 if (irq->dest_id == 0xFF)
806 goto out;
807
808 if (irq->dest_id >= ARRAY_SIZE(map->phys_map))
809 goto out;
810
811 dst = map->phys_map[irq->dest_id];
812 if (dst && kvm_apic_present(dst->vcpu))
813 *dest_vcpu = dst->vcpu;
814 else
815 goto out;
816 } else {
817 u16 cid;
818 unsigned long bitmap = 1;
819 int i, r = 0;
820
821 if (!kvm_apic_logical_map_valid(map))
822 goto out;
823
824 apic_logical_id(map, irq->dest_id, &cid, (u16 *)&bitmap);
825
826 if (cid >= ARRAY_SIZE(map->logical_map))
827 goto out;
828
Feng Wu6228a0d2016-01-25 16:53:34 +0800829 if (kvm_vector_hashing_enabled() &&
830 kvm_lowest_prio_delivery(irq)) {
831 int idx;
832 unsigned int dest_vcpus;
833
834 dest_vcpus = hweight16(bitmap);
835 if (dest_vcpus == 0)
836 goto out;
837
838 idx = kvm_vector_to_index(irq->vector, dest_vcpus,
839 &bitmap, 16);
840
Feng Wu6228a0d2016-01-25 16:53:34 +0800841 dst = map->logical_map[cid][idx];
Radim Krčmář4efd8052016-02-12 15:00:15 +0100842 if (!dst) {
843 kvm_apic_disabled_lapic_found(kvm);
Feng Wu6228a0d2016-01-25 16:53:34 +0800844 goto out;
845 }
846
847 *dest_vcpu = dst->vcpu;
848 } else {
849 for_each_set_bit(i, &bitmap, 16) {
850 dst = map->logical_map[cid][i];
851 if (++r == 2)
852 goto out;
853 }
854
855 if (dst && kvm_apic_present(dst->vcpu))
856 *dest_vcpu = dst->vcpu;
857 else
Feng Wu8feb4a02015-09-18 22:29:47 +0800858 goto out;
859 }
Feng Wu8feb4a02015-09-18 22:29:47 +0800860 }
861
862 ret = true;
863out:
864 rcu_read_unlock();
865 return ret;
866}
867
Eddie Dong97222cc2007-09-12 10:58:04 +0300868/*
869 * Add a pending IRQ into lapic.
870 * Return 1 if successfully added and 0 if discarded.
871 */
872static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
Yang Zhangb4f22252013-04-11 19:21:37 +0800873 int vector, int level, int trig_mode,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100874 struct dest_map *dest_map)
Eddie Dong97222cc2007-09-12 10:58:04 +0300875{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200876 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300877 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300878
Paolo Bonzinia183b632014-09-11 11:51:02 +0200879 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
880 trig_mode, vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300881 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300882 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200883 vcpu->arch.apic_arb_prio++;
884 case APIC_DM_FIXED:
Paolo Bonzinibdaffe12015-07-29 15:03:06 +0200885 if (unlikely(trig_mode && !level))
886 break;
887
Eddie Dong97222cc2007-09-12 10:58:04 +0300888 /* FIXME add logic for vcpu on reset */
889 if (unlikely(!apic_enabled(apic)))
890 break;
891
Jan Kiszka11f5cc02013-07-25 09:58:45 +0200892 result = 1;
893
Joerg Roedel9daa5002016-02-29 16:04:44 +0100894 if (dest_map) {
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100895 __set_bit(vcpu->vcpu_id, dest_map->map);
Joerg Roedel9daa5002016-02-29 16:04:44 +0100896 dest_map->vectors[vcpu->vcpu_id] = vector;
897 }
Avi Kivitya5d36f82009-12-29 12:42:16 +0200898
Paolo Bonzinibdaffe12015-07-29 15:03:06 +0200899 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
900 if (trig_mode)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500901 kvm_lapic_set_vector(vector, apic->regs + APIC_TMR);
Paolo Bonzinibdaffe12015-07-29 15:03:06 +0200902 else
903 apic_clear_vector(vector, apic->regs + APIC_TMR);
904 }
905
Andrey Smetanind62caab2015-11-10 15:36:33 +0300906 if (vcpu->arch.apicv_active)
Yang Zhang5a717852013-04-11 19:25:16 +0800907 kvm_x86_ops->deliver_posted_interrupt(vcpu, vector);
Jan Kiszka11f5cc02013-07-25 09:58:45 +0200908 else {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -0500909 kvm_lapic_set_irr(vector, apic);
Yang Zhang5a717852013-04-11 19:25:16 +0800910
911 kvm_make_request(KVM_REQ_EVENT, vcpu);
912 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300913 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300914 break;
915
916 case APIC_DM_REMRD:
Raghavendra K T24d21662013-08-26 14:18:35 +0530917 result = 1;
918 vcpu->arch.pv.pv_unhalted = 1;
919 kvm_make_request(KVM_REQ_EVENT, vcpu);
920 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300921 break;
922
923 case APIC_DM_SMI:
Paolo Bonzini64d60672015-05-07 11:36:11 +0200924 result = 1;
925 kvm_make_request(KVM_REQ_SMI, vcpu);
926 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300927 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800928
Eddie Dong97222cc2007-09-12 10:58:04 +0300929 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200930 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800931 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200932 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300933 break;
934
935 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +0100936 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200937 result = 1;
Jan Kiszka66450a22013-03-13 12:42:34 +0100938 /* assumes that there are only KVM_APIC_INIT/SIPI */
939 apic->pending_events = (1UL << KVM_APIC_INIT);
940 /* make sure pending_events is visible before sending
941 * the request */
942 smp_wmb();
Avi Kivity3842d132010-07-27 12:30:24 +0300943 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300944 kvm_vcpu_kick(vcpu);
945 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200946 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
947 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300948 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300949 break;
950
951 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200952 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
953 vcpu->vcpu_id, vector);
Jan Kiszka66450a22013-03-13 12:42:34 +0100954 result = 1;
955 apic->sipi_vector = vector;
956 /* make sure sipi_vector is visible for the receiver */
957 smp_wmb();
958 set_bit(KVM_APIC_SIPI, &apic->pending_events);
959 kvm_make_request(KVM_REQ_EVENT, vcpu);
960 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300961 break;
962
Jan Kiszka23930f92008-09-26 09:30:52 +0200963 case APIC_DM_EXTINT:
964 /*
965 * Should only be called by kvm_apic_local_deliver() with LVT0,
966 * before NMI watchdog was enabled. Already handled by
967 * kvm_apic_accept_pic_intr().
968 */
969 break;
970
Eddie Dong97222cc2007-09-12 10:58:04 +0300971 default:
972 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
973 delivery_mode);
974 break;
975 }
976 return result;
977}
978
Gleb Natapove1035712009-03-05 16:34:59 +0200979int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300980{
Gleb Natapove1035712009-03-05 16:34:59 +0200981 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800982}
983
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200984static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
985{
Andrey Smetanin63086302015-11-10 15:36:32 +0300986 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200987}
988
Yang Zhangc7c9c562013-01-25 10:18:51 +0800989static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
990{
Steve Rutherford7543a632015-07-29 23:21:41 -0700991 int trigger_mode;
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200992
Steve Rutherford7543a632015-07-29 23:21:41 -0700993 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
994 if (!kvm_ioapic_handles_vector(apic, vector))
995 return;
996
997 /* Request a KVM exit to inform the userspace IOAPIC. */
998 if (irqchip_split(apic->vcpu->kvm)) {
999 apic->vcpu->arch.pending_ioapic_eoi = vector;
1000 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1001 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08001002 }
Steve Rutherford7543a632015-07-29 23:21:41 -07001003
1004 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1005 trigger_mode = IOAPIC_LEVEL_TRIG;
1006 else
1007 trigger_mode = IOAPIC_EDGE_TRIG;
1008
1009 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
Yang Zhangc7c9c562013-01-25 10:18:51 +08001010}
1011
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001012static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001013{
1014 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001015
1016 trace_kvm_eoi(apic, vector);
1017
Eddie Dong97222cc2007-09-12 10:58:04 +03001018 /*
1019 * Not every write EOI will has corresponding ISR,
1020 * one example is when Kernel check timer on setup_IO_APIC
1021 */
1022 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001023 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001024
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001025 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001026 apic_update_ppr(apic);
1027
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001028 if (test_bit(vector, vcpu_to_synic(apic->vcpu)->vec_bitmap))
1029 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1030
Yang Zhangc7c9c562013-01-25 10:18:51 +08001031 kvm_ioapic_send_eoi(apic, vector);
Avi Kivity3842d132010-07-27 12:30:24 +03001032 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001033 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +03001034}
1035
Yang Zhangc7c9c562013-01-25 10:18:51 +08001036/*
1037 * this interface assumes a trap-like exit, which has already finished
1038 * desired side effect including vISR and vPPR update.
1039 */
1040void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1041{
1042 struct kvm_lapic *apic = vcpu->arch.apic;
1043
1044 trace_kvm_eoi(apic, vector);
1045
1046 kvm_ioapic_send_eoi(apic, vector);
1047 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1048}
1049EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1050
Eddie Dong97222cc2007-09-12 10:58:04 +03001051static void apic_send_ipi(struct kvm_lapic *apic)
1052{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001053 u32 icr_low = kvm_lapic_get_reg(apic, APIC_ICR);
1054 u32 icr_high = kvm_lapic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001055 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +03001056
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001057 irq.vector = icr_low & APIC_VECTOR_MASK;
1058 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1059 irq.dest_mode = icr_low & APIC_DEST_MASK;
Paolo Bonzinib7cb2232015-04-21 14:57:05 +02001060 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001061 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1062 irq.shorthand = icr_low & APIC_SHORT_MASK;
James Sullivan93bbf0b2015-03-18 19:26:03 -06001063 irq.msi_redir_hint = false;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001064 if (apic_x2apic_mode(apic))
1065 irq.dest_id = icr_high;
1066 else
1067 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +03001068
Gleb Natapov1000ff82009-07-07 16:00:57 +03001069 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1070
Eddie Dong97222cc2007-09-12 10:58:04 +03001071 apic_debug("icr_high 0x%x, icr_low 0x%x, "
1072 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
James Sullivan93bbf0b2015-03-18 19:26:03 -06001073 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x, "
1074 "msi_redir_hint 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -04001075 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +02001076 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
James Sullivan93bbf0b2015-03-18 19:26:03 -06001077 irq.vector, irq.msi_redir_hint);
Eddie Dong97222cc2007-09-12 10:58:04 +03001078
Yang Zhangb4f22252013-04-11 19:21:37 +08001079 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
Eddie Dong97222cc2007-09-12 10:58:04 +03001080}
1081
1082static u32 apic_get_tmcct(struct kvm_lapic *apic)
1083{
Marcelo Tosattib682b812009-02-10 20:41:41 -02001084 ktime_t remaining;
1085 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001086 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +03001087
1088 ASSERT(apic != NULL);
1089
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001090 /* if initial count is 0, current count should also be 0 */
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001091 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
Andy Honigb963a222013-11-19 14:12:18 -08001092 apic->lapic_timer.period == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +02001093 return 0;
1094
Marcelo Tosattiace15462009-10-08 10:55:03 -03001095 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -02001096 if (ktime_to_ns(remaining) < 0)
1097 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001098
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001099 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1100 tmcct = div64_u64(ns,
1101 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +03001102
1103 return tmcct;
1104}
1105
Avi Kivityb209749f2007-10-22 16:50:39 +02001106static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1107{
1108 struct kvm_vcpu *vcpu = apic->vcpu;
1109 struct kvm_run *run = vcpu->run;
1110
Avi Kivitya8eeb042010-05-10 12:34:53 +03001111 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001112 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +02001113 run->tpr_access.is_write = write;
1114}
1115
1116static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1117{
1118 if (apic->vcpu->arch.tpr_access_reporting)
1119 __report_tpr_access(apic, write);
1120}
1121
Eddie Dong97222cc2007-09-12 10:58:04 +03001122static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1123{
1124 u32 val = 0;
1125
1126 if (offset >= LAPIC_MMIO_LENGTH)
1127 return 0;
1128
1129 switch (offset) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001130 case APIC_ID:
1131 if (apic_x2apic_mode(apic))
1132 val = kvm_apic_id(apic);
1133 else
1134 val = kvm_apic_id(apic) << 24;
1135 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001136 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +02001137 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +03001138 break;
1139
1140 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001141 if (apic_lvtt_tscdeadline(apic))
1142 return 0;
1143
Eddie Dong97222cc2007-09-12 10:58:04 +03001144 val = apic_get_tmcct(apic);
1145 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +03001146 case APIC_PROCPRI:
1147 apic_update_ppr(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001148 val = kvm_lapic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +03001149 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02001150 case APIC_TASKPRI:
1151 report_tpr_access(apic, false);
1152 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +03001153 default:
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001154 val = kvm_lapic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +03001155 break;
1156 }
1157
1158 return val;
1159}
1160
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001161static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1162{
1163 return container_of(dev, struct kvm_lapic, dev);
1164}
1165
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001166int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001167 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001168{
Eddie Dong97222cc2007-09-12 10:58:04 +03001169 unsigned char alignment = offset & 0xf;
1170 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +08001171 /* this bitmask has a bit cleared for each reserved register */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001172 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +03001173
1174 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +03001175 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
1176 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001177 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001178 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001179
1180 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +03001181 apic_debug("KVM_APIC_READ: read reserved register %x\n",
1182 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001183 return 1;
1184 }
1185
Eddie Dong97222cc2007-09-12 10:58:04 +03001186 result = __apic_read(apic, offset & ~0xf);
1187
Marcelo Tosatti229456f2009-06-17 09:22:14 -03001188 trace_kvm_apic_read(offset, result);
1189
Eddie Dong97222cc2007-09-12 10:58:04 +03001190 switch (len) {
1191 case 1:
1192 case 2:
1193 case 4:
1194 memcpy(data, (char *)&result + alignment, len);
1195 break;
1196 default:
1197 printk(KERN_ERR "Local APIC read with len = %x, "
1198 "should be 1,2, or 4 instead\n", len);
1199 break;
1200 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001201 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001202}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001203EXPORT_SYMBOL_GPL(kvm_lapic_reg_read);
Eddie Dong97222cc2007-09-12 10:58:04 +03001204
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001205static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1206{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001207 return kvm_apic_hw_enabled(apic) &&
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001208 addr >= apic->base_address &&
1209 addr < apic->base_address + LAPIC_MMIO_LENGTH;
1210}
1211
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001212static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001213 gpa_t address, int len, void *data)
1214{
1215 struct kvm_lapic *apic = to_lapic(this);
1216 u32 offset = address - apic->base_address;
1217
1218 if (!apic_mmio_in_range(apic, address))
1219 return -EOPNOTSUPP;
1220
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001221 kvm_lapic_reg_read(apic, offset, len, data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001222
1223 return 0;
1224}
1225
Eddie Dong97222cc2007-09-12 10:58:04 +03001226static void update_divide_count(struct kvm_lapic *apic)
1227{
1228 u32 tmp1, tmp2, tdcr;
1229
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001230 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +03001231 tmp1 = tdcr & 0xf;
1232 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001233 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +03001234
1235 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -04001236 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +03001237}
1238
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001239static void apic_update_lvtt(struct kvm_lapic *apic)
1240{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001241 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001242 apic->lapic_timer.timer_mode_mask;
1243
1244 if (apic->lapic_timer.timer_mode != timer_mode) {
1245 apic->lapic_timer.timer_mode = timer_mode;
1246 hrtimer_cancel(&apic->lapic_timer.timer);
1247 }
1248}
1249
Radim Krčmář5d87db72014-10-10 19:15:08 +02001250static void apic_timer_expired(struct kvm_lapic *apic)
1251{
1252 struct kvm_vcpu *vcpu = apic->vcpu;
Marcelo Tosatti85773702016-02-19 09:46:39 +01001253 struct swait_queue_head *q = &vcpu->wq;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001254 struct kvm_timer *ktimer = &apic->lapic_timer;
Radim Krčmář5d87db72014-10-10 19:15:08 +02001255
Radim Krčmář5d87db72014-10-10 19:15:08 +02001256 if (atomic_read(&apic->lapic_timer.pending))
1257 return;
1258
1259 atomic_inc(&apic->lapic_timer.pending);
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001260 kvm_set_pending_timer(vcpu);
Radim Krčmář5d87db72014-10-10 19:15:08 +02001261
Marcelo Tosatti85773702016-02-19 09:46:39 +01001262 if (swait_active(q))
1263 swake_up(q);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001264
1265 if (apic_lvtt_tscdeadline(apic))
1266 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1267}
1268
1269/*
1270 * On APICv, this test will cause a busy wait
1271 * during a higher-priority task.
1272 */
1273
1274static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1275{
1276 struct kvm_lapic *apic = vcpu->arch.apic;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001277 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001278
1279 if (kvm_apic_hw_enabled(apic)) {
1280 int vec = reg & APIC_VECTOR_MASK;
Marcelo Tosattif9339862015-02-02 15:26:08 -02001281 void *bitmap = apic->regs + APIC_ISR;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001282
Andrey Smetanind62caab2015-11-10 15:36:33 +03001283 if (vcpu->arch.apicv_active)
Marcelo Tosattif9339862015-02-02 15:26:08 -02001284 bitmap = apic->regs + APIC_IRR;
1285
1286 if (apic_test_vector(vec, bitmap))
1287 return true;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001288 }
1289 return false;
1290}
1291
1292void wait_lapic_expire(struct kvm_vcpu *vcpu)
1293{
1294 struct kvm_lapic *apic = vcpu->arch.apic;
1295 u64 guest_tsc, tsc_deadline;
1296
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01001297 if (!lapic_in_kernel(vcpu))
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001298 return;
1299
1300 if (apic->lapic_timer.expired_tscdeadline == 0)
1301 return;
1302
1303 if (!lapic_timer_int_injected(vcpu))
1304 return;
1305
1306 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1307 apic->lapic_timer.expired_tscdeadline = 0;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001308 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Marcelo Tosatti6c19b752014-12-16 09:08:16 -05001309 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, guest_tsc - tsc_deadline);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001310
1311 /* __delay is delay_tsc whenever the hardware has TSC, thus always. */
1312 if (guest_tsc < tsc_deadline)
Marcelo Tosattib606f182016-06-20 22:33:48 -03001313 __delay(min(tsc_deadline - guest_tsc,
1314 nsec_to_cycles(vcpu, lapic_timer_advance_ns)));
Radim Krčmář5d87db72014-10-10 19:15:08 +02001315}
1316
Eddie Dong97222cc2007-09-12 10:58:04 +03001317static void start_apic_timer(struct kvm_lapic *apic)
1318{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001319 ktime_t now;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001320
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001321 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +02001322
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001323 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
Guo Chaod5b0b5b2012-06-28 15:22:57 +08001324 /* lapic timer in oneshot or periodic mode */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001325 now = apic->lapic_timer.timer.base->get_time();
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001326 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001327 * APIC_BUS_CYCLE_NS * apic->divide_count;
Jan Kiszka9bc57912011-09-12 14:10:22 +02001328
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001329 if (!apic->lapic_timer.period)
1330 return;
1331 /*
1332 * Do not allow the guest to program periodic timers with small
1333 * interval, since the hrtimers are not throttled by the host
1334 * scheduler.
1335 */
1336 if (apic_lvtt_period(apic)) {
1337 s64 min_period = min_timer_period_us * 1000LL;
1338
1339 if (apic->lapic_timer.period < min_period) {
1340 pr_info_ratelimited(
1341 "kvm: vcpu %i: requested %lld ns "
1342 "lapic timer period limited to %lld ns\n",
1343 apic->vcpu->vcpu_id,
1344 apic->lapic_timer.period, min_period);
1345 apic->lapic_timer.period = min_period;
1346 }
Jan Kiszka9bc57912011-09-12 14:10:22 +02001347 }
Avi Kivity0b975a32008-02-24 14:37:50 +02001348
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001349 hrtimer_start(&apic->lapic_timer.timer,
1350 ktime_add_ns(now, apic->lapic_timer.period),
Luiz Capitulino61abdbe2016-04-04 16:46:07 -04001351 HRTIMER_MODE_ABS_PINNED);
Eddie Dong97222cc2007-09-12 10:58:04 +03001352
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001353 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
Eddie Dong97222cc2007-09-12 10:58:04 +03001354 PRIx64 ", "
1355 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001356 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001357 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001358 kvm_lapic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001359 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +03001360 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001361 apic->lapic_timer.period)));
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001362 } else if (apic_lvtt_tscdeadline(apic)) {
1363 /* lapic timer in tsc deadline mode */
1364 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
1365 u64 ns = 0;
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001366 ktime_t expire;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001367 struct kvm_vcpu *vcpu = apic->vcpu;
Zachary Amsdencc578282012-02-03 15:43:50 -02001368 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001369 unsigned long flags;
1370
1371 if (unlikely(!tscdeadline || !this_tsc_khz))
1372 return;
1373
1374 local_irq_save(flags);
1375
1376 now = apic->lapic_timer.timer.base->get_time();
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001377 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001378 if (likely(tscdeadline > guest_tsc)) {
1379 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1380 do_div(ns, this_tsc_khz);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05001381 expire = ktime_add_ns(now, ns);
1382 expire = ktime_sub_ns(expire, lapic_timer_advance_ns);
Radim Krčmář1e0ad702014-10-10 19:15:09 +02001383 hrtimer_start(&apic->lapic_timer.timer,
Luiz Capitulino61abdbe2016-04-04 16:46:07 -04001384 expire, HRTIMER_MODE_ABS_PINNED);
Radim Krčmář1e0ad702014-10-10 19:15:09 +02001385 } else
1386 apic_timer_expired(apic);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001387
1388 local_irq_restore(flags);
1389 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001390}
1391
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001392static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1393{
Radim Krčmář59fd1322015-06-30 22:19:16 +02001394 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001395
Radim Krčmář59fd1322015-06-30 22:19:16 +02001396 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
1397 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
1398 if (lvt0_in_nmi_mode) {
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001399 apic_debug("Receive NMI setting on APIC_LVT0 "
1400 "for cpu %d\n", apic->vcpu->vcpu_id);
Radim Krčmář42720132015-07-01 15:31:49 +02001401 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
Radim Krčmář59fd1322015-06-30 22:19:16 +02001402 } else
1403 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1404 }
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001405}
1406
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001407int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03001408{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001409 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001410
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001411 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001412
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001413 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001414 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001415 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001416 kvm_apic_set_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001417 else
1418 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001419 break;
1420
1421 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02001422 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03001423 apic_set_tpr(apic, val & 0xff);
1424 break;
1425
1426 case APIC_EOI:
1427 apic_set_eoi(apic);
1428 break;
1429
1430 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001431 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001432 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001433 else
1434 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001435 break;
1436
1437 case APIC_DFR:
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001438 if (!apic_x2apic_mode(apic)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001439 kvm_lapic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001440 recalculate_apic_map(apic->vcpu->kvm);
1441 } else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001442 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001443 break;
1444
Gleb Natapovfc61b802009-07-05 17:39:35 +03001445 case APIC_SPIV: {
1446 u32 mask = 0x3ff;
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001447 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03001448 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001449 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03001450 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1451 int i;
1452 u32 lvt_val;
1453
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001454 for (i = 0; i < KVM_APIC_LVT_NUM; i++) {
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001455 lvt_val = kvm_lapic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03001456 APIC_LVTT + 0x10 * i);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001457 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i,
Eddie Dong97222cc2007-09-12 10:58:04 +03001458 lvt_val | APIC_LVT_MASKED);
1459 }
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001460 apic_update_lvtt(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001461 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001462
1463 }
1464 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03001465 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001466 case APIC_ICR:
1467 /* No delay here, so we always clear the pending bit */
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001468 kvm_lapic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
Eddie Dong97222cc2007-09-12 10:58:04 +03001469 apic_send_ipi(apic);
1470 break;
1471
1472 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001473 if (!apic_x2apic_mode(apic))
1474 val &= 0xff000000;
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001475 kvm_lapic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001476 break;
1477
Jan Kiszka23930f92008-09-26 09:30:52 +02001478 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001479 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001480 case APIC_LVTTHMR:
1481 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03001482 case APIC_LVT1:
1483 case APIC_LVTERR:
1484 /* TODO: Check vector */
Gleb Natapovc48f1492012-08-05 15:58:33 +03001485 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001486 val |= APIC_LVT_MASKED;
1487
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001488 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001489 kvm_lapic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001490
1491 break;
1492
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001493 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03001494 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001495 val |= APIC_LVT_MASKED;
1496 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001497 kvm_lapic_set_reg(apic, APIC_LVTT, val);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001498 apic_update_lvtt(apic);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001499 break;
1500
Eddie Dong97222cc2007-09-12 10:58:04 +03001501 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001502 if (apic_lvtt_tscdeadline(apic))
1503 break;
1504
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001505 hrtimer_cancel(&apic->lapic_timer.timer);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001506 kvm_lapic_set_reg(apic, APIC_TMICT, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001507 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001508 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001509
1510 case APIC_TDCR:
1511 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +02001512 apic_debug("KVM_WRITE:TDCR %x\n", val);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001513 kvm_lapic_set_reg(apic, APIC_TDCR, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001514 update_divide_count(apic);
1515 break;
1516
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001517 case APIC_ESR:
1518 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +02001519 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001520 ret = 1;
1521 }
1522 break;
1523
1524 case APIC_SELF_IPI:
1525 if (apic_x2apic_mode(apic)) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001526 kvm_lapic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001527 } else
1528 ret = 1;
1529 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001530 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001531 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001532 break;
1533 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001534 if (ret)
1535 apic_debug("Local APIC Write to read-only register %x\n", reg);
1536 return ret;
1537}
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001538EXPORT_SYMBOL_GPL(kvm_lapic_reg_write);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001539
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001540static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001541 gpa_t address, int len, const void *data)
1542{
1543 struct kvm_lapic *apic = to_lapic(this);
1544 unsigned int offset = address - apic->base_address;
1545 u32 val;
1546
1547 if (!apic_mmio_in_range(apic, address))
1548 return -EOPNOTSUPP;
1549
1550 /*
1551 * APIC register must be aligned on 128-bits boundary.
1552 * 32/64/128 bits registers must be accessed thru 32 bits.
1553 * Refer SDM 8.4.1
1554 */
1555 if (len != 4 || (offset & 0xf)) {
1556 /* Don't shout loud, $infamous_os would cause only noise. */
1557 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
Sheng Yang756975b2009-07-06 11:05:39 +08001558 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001559 }
1560
1561 val = *(u32*)data;
1562
1563 /* too common printing */
1564 if (offset != APIC_EOI)
1565 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1566 "0x%x\n", __func__, offset, len, val);
1567
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001568 kvm_lapic_reg_write(apic, offset & 0xff0, val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001569
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001570 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001571}
1572
Kevin Tian58fbbf22011-08-30 13:56:17 +03001573void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1574{
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001575 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
Kevin Tian58fbbf22011-08-30 13:56:17 +03001576}
1577EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1578
Yang Zhang83d4c282013-01-25 10:18:49 +08001579/* emulate APIC access in a trap manner */
1580void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
1581{
1582 u32 val = 0;
1583
1584 /* hw has done the conditional check and inst decode */
1585 offset &= 0xff0;
1586
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001587 kvm_lapic_reg_read(vcpu->arch.apic, offset, 4, &val);
Yang Zhang83d4c282013-01-25 10:18:49 +08001588
1589 /* TODO: optimize to just emulate side effect w/o one more write */
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001590 kvm_lapic_reg_write(vcpu->arch.apic, offset, val);
Yang Zhang83d4c282013-01-25 10:18:49 +08001591}
1592EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
1593
Rusty Russelld5894442007-10-08 10:48:30 +10001594void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001595{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001596 struct kvm_lapic *apic = vcpu->arch.apic;
1597
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001598 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001599 return;
1600
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001601 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001602
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001603 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1604 static_key_slow_dec_deferred(&apic_hw_disabled);
1605
Radim Krčmáře4627552014-10-30 15:06:45 +01001606 if (!apic->sw_enabled)
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001607 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03001608
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001609 if (apic->regs)
1610 free_page((unsigned long)apic->regs);
1611
1612 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001613}
1614
1615/*
1616 *----------------------------------------------------------------------
1617 * LAPIC interface
1618 *----------------------------------------------------------------------
1619 */
1620
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001621u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1622{
1623 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001624
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01001625 if (!lapic_in_kernel(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001626 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001627 return 0;
1628
1629 return apic->lapic_timer.tscdeadline;
1630}
1631
1632void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1633{
1634 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001635
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01001636 if (!lapic_in_kernel(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001637 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001638 return;
1639
1640 hrtimer_cancel(&apic->lapic_timer.timer);
1641 apic->lapic_timer.tscdeadline = data;
1642 start_apic_timer(apic);
1643}
1644
Eddie Dong97222cc2007-09-12 10:58:04 +03001645void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1646{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001647 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001648
Avi Kivityb93463a2007-10-25 16:52:32 +02001649 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001650 | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03001651}
1652
1653u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1654{
Eddie Dong97222cc2007-09-12 10:58:04 +03001655 u64 tpr;
1656
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001657 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03001658
1659 return (tpr & 0xf0) >> 4;
1660}
1661
1662void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1663{
Yang Zhang8d146952013-01-25 10:18:50 +08001664 u64 old_value = vcpu->arch.apic_base;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001665 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001666
1667 if (!apic) {
1668 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001669 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +03001670 return;
1671 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001672
Jan Kiszkae66d2ae2013-12-29 02:29:30 +01001673 vcpu->arch.apic_base = value;
1674
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001675 /* update jump label if enable bit changes */
Andrew Jones0dce7cd2014-01-15 13:39:59 +01001676 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001677 if (value & MSR_IA32_APICBASE_ENABLE)
1678 static_key_slow_dec_deferred(&apic_hw_disabled);
1679 else
1680 static_key_slow_inc(&apic_hw_disabled.key);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001681 recalculate_apic_map(vcpu->kvm);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001682 }
1683
Yang Zhang8d146952013-01-25 10:18:50 +08001684 if ((old_value ^ value) & X2APIC_ENABLE) {
1685 if (value & X2APIC_ENABLE) {
Radim Krčmář257b9a52015-05-22 18:45:11 +02001686 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
Yang Zhang8d146952013-01-25 10:18:50 +08001687 kvm_x86_ops->set_virtual_x2apic_mode(vcpu, true);
1688 } else
1689 kvm_x86_ops->set_virtual_x2apic_mode(vcpu, false);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001690 }
Yang Zhang8d146952013-01-25 10:18:50 +08001691
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001692 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03001693 MSR_IA32_APICBASE_BASE;
1694
Nadav Amitdb324fe2014-11-02 11:54:59 +02001695 if ((value & MSR_IA32_APICBASE_ENABLE) &&
1696 apic->base_address != APIC_DEFAULT_PHYS_BASE)
1697 pr_warn_once("APIC base relocation is unsupported by KVM");
1698
Eddie Dong97222cc2007-09-12 10:58:04 +03001699 /* with FSB delivery interrupt, we can restart APIC functionality */
1700 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001701 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001702
1703}
1704
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001705void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
Eddie Dong97222cc2007-09-12 10:58:04 +03001706{
1707 struct kvm_lapic *apic;
1708 int i;
1709
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001710 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +03001711
1712 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001713 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001714 ASSERT(apic != NULL);
1715
1716 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001717 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001718
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001719 if (!init_event)
1720 kvm_apic_set_id(apic, vcpu->vcpu_id);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001721 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001722
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001723 for (i = 0; i < KVM_APIC_LVT_NUM; i++)
1724 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001725 apic_update_lvtt(apic);
Paolo Bonzini0da029e2015-07-23 08:24:42 +02001726 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001727 kvm_lapic_set_reg(apic, APIC_LVT0,
Nadav Amit90de4a12015-04-13 01:53:41 +03001728 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001729 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong97222cc2007-09-12 10:58:04 +03001730
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001731 kvm_lapic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001732 apic_set_spiv(apic, 0xff);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001733 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
Radim Krčmářc028dd62015-05-22 19:22:10 +02001734 if (!apic_x2apic_mode(apic))
1735 kvm_apic_set_ldr(apic, 0);
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001736 kvm_lapic_set_reg(apic, APIC_ESR, 0);
1737 kvm_lapic_set_reg(apic, APIC_ICR, 0);
1738 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
1739 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
1740 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001741 for (i = 0; i < 8; i++) {
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05001742 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1743 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1744 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001745 }
Andrey Smetanind62caab2015-11-10 15:36:33 +03001746 apic->irr_pending = vcpu->arch.apicv_active;
1747 apic->isr_count = vcpu->arch.apicv_active ? 1 : 0;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001748 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02001749 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001750 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001751 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001752 kvm_lapic_set_base(vcpu,
1753 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001754 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001755 apic_update_ppr(apic);
1756
Gleb Natapove1035712009-03-05 16:34:59 +02001757 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03001758 vcpu->arch.apic_attention = 0;
Gleb Natapove1035712009-03-05 16:34:59 +02001759
Nadav Amit98eff522014-06-29 12:28:51 +03001760 apic_debug("%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001761 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001762 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001763 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001764}
1765
Eddie Dong97222cc2007-09-12 10:58:04 +03001766/*
1767 *----------------------------------------------------------------------
1768 * timer interface
1769 *----------------------------------------------------------------------
1770 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001771
Avi Kivity2a6eac92012-07-26 18:01:51 +03001772static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001773{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001774 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001775}
1776
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001777int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1778{
Gleb Natapov54e98182012-08-05 15:58:32 +03001779 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001780
Paolo Bonzini1e3161b42016-01-08 13:41:16 +01001781 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
Gleb Natapov54e98182012-08-05 15:58:32 +03001782 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001783
1784 return 0;
1785}
1786
Avi Kivity89342082011-11-10 14:57:21 +02001787int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001788{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001789 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001790 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001791
Gleb Natapovc48f1492012-08-05 15:58:33 +03001792 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001793 vector = reg & APIC_VECTOR_MASK;
1794 mode = reg & APIC_MODE_MASK;
1795 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
Yang Zhangb4f22252013-04-11 19:21:37 +08001796 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
1797 NULL);
Jan Kiszka23930f92008-09-26 09:30:52 +02001798 }
1799 return 0;
1800}
1801
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001802void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001803{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001804 struct kvm_lapic *apic = vcpu->arch.apic;
1805
1806 if (apic)
1807 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001808}
1809
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001810static const struct kvm_io_device_ops apic_mmio_ops = {
1811 .read = apic_mmio_read,
1812 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001813};
1814
Avi Kivitye9d90d42012-07-26 18:01:50 +03001815static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1816{
1817 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03001818 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001819
Radim Krčmář5d87db72014-10-10 19:15:08 +02001820 apic_timer_expired(apic);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001821
Avi Kivity2a6eac92012-07-26 18:01:51 +03001822 if (lapic_is_periodic(apic)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001823 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1824 return HRTIMER_RESTART;
1825 } else
1826 return HRTIMER_NORESTART;
1827}
1828
Eddie Dong97222cc2007-09-12 10:58:04 +03001829int kvm_create_lapic(struct kvm_vcpu *vcpu)
1830{
1831 struct kvm_lapic *apic;
1832
1833 ASSERT(vcpu != NULL);
1834 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1835
1836 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1837 if (!apic)
1838 goto nomem;
1839
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001840 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001841
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001842 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1843 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001844 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1845 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001846 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001847 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001848 apic->vcpu = vcpu;
1849
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001850 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
Luiz Capitulino61abdbe2016-04-04 16:46:07 -04001851 HRTIMER_MODE_ABS_PINNED);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001852 apic->lapic_timer.timer.function = apic_timer_fn;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001853
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001854 /*
1855 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1856 * thinking that APIC satet has changed.
1857 */
1858 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapov6aed64a2012-08-05 15:58:28 +03001859 kvm_lapic_set_base(vcpu,
1860 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
Eddie Dong97222cc2007-09-12 10:58:04 +03001861
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001862 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03001863 kvm_lapic_reset(vcpu, false);
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001864 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001865
1866 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001867nomem_free_apic:
1868 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001869nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001870 return -ENOMEM;
1871}
Eddie Dong97222cc2007-09-12 10:58:04 +03001872
1873int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1874{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001875 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001876 int highest_irr;
1877
Paolo Bonzinif8543d62016-01-08 13:42:24 +01001878 if (!apic_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001879 return -1;
1880
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001881 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001882 highest_irr = apic_find_highest_irr(apic);
1883 if ((highest_irr == -1) ||
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001884 ((highest_irr & 0xF0) <= kvm_lapic_get_reg(apic, APIC_PROCPRI)))
Eddie Dong97222cc2007-09-12 10:58:04 +03001885 return -1;
1886 return highest_irr;
1887}
1888
Qing He40487c62007-09-17 14:47:13 +08001889int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1890{
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001891 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001892 int r = 0;
1893
Gleb Natapovc48f1492012-08-05 15:58:33 +03001894 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001895 r = 1;
1896 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1897 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1898 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001899 return r;
1900}
1901
Eddie Dong1b9778d2007-09-03 16:56:58 +03001902void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1903{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001904 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001905
Gleb Natapov54e98182012-08-05 15:58:32 +03001906 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszkaf1ed0452013-04-28 14:00:41 +02001907 kvm_apic_local_deliver(apic, APIC_LVTT);
Nadav Amitfae0ba22014-08-18 22:42:13 +03001908 if (apic_lvtt_tscdeadline(apic))
1909 apic->lapic_timer.tscdeadline = 0;
Jan Kiszkaf1ed0452013-04-28 14:00:41 +02001910 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001911 }
1912}
1913
Eddie Dong97222cc2007-09-12 10:58:04 +03001914int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1915{
1916 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001917 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001918
1919 if (vector == -1)
1920 return -1;
1921
Wanpeng Li56cc2402014-08-05 12:42:24 +08001922 /*
1923 * We get here even with APIC virtualization enabled, if doing
1924 * nested virtualization and L1 runs with the "acknowledge interrupt
1925 * on exit" mode. Then we cannot inject the interrupt via RVI,
1926 * because the process would deliver it through the IDT.
1927 */
1928
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001929 apic_set_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001930 apic_update_ppr(apic);
1931 apic_clear_irr(vector, apic);
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001932
1933 if (test_bit(vector, vcpu_to_synic(vcpu)->auto_eoi_bitmap)) {
1934 apic_clear_isr(vector, apic);
1935 apic_update_ppr(apic);
1936 }
1937
Eddie Dong97222cc2007-09-12 10:58:04 +03001938 return vector;
1939}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001940
Gleb Natapov64eb0622012-08-08 15:24:36 +03001941void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
1942 struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001943{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001944 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001945
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001946 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03001947 /* set SPIV separately to get count of SW disabled APICs right */
1948 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
1949 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001950 /* call kvm_apic_set_id() to put apic into apic_map */
1951 kvm_apic_set_id(apic, kvm_apic_id(apic));
Gleb Natapovfc61b802009-07-05 17:39:35 +03001952 kvm_apic_set_version(vcpu);
1953
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001954 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001955 hrtimer_cancel(&apic->lapic_timer.timer);
Radim Krčmářb6ac0692015-06-05 20:57:41 +02001956 apic_update_lvtt(apic);
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05001957 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001958 update_divide_count(apic);
1959 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001960 apic->irr_pending = true;
Andrey Smetanind62caab2015-11-10 15:36:33 +03001961 apic->isr_count = vcpu->arch.apicv_active ?
Yang Zhangc7c9c562013-01-25 10:18:51 +08001962 1 : count_vectors(apic->regs + APIC_ISR);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001963 apic->highest_isr_cache = -1;
Andrey Smetanind62caab2015-11-10 15:36:33 +03001964 if (vcpu->arch.apicv_active) {
Suravee Suthikulpanitbe8ca172016-05-04 14:09:49 -05001965 if (kvm_x86_ops->apicv_post_state_restore)
1966 kvm_x86_ops->apicv_post_state_restore(vcpu);
Wei Wang4114c272014-11-05 10:53:43 +08001967 kvm_x86_ops->hwapic_irr_update(vcpu,
1968 apic_find_highest_irr(apic));
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02001969 kvm_x86_ops->hwapic_isr_update(vcpu,
Tiejun Chenb4eef9b2014-12-22 10:32:57 +01001970 apic_find_highest_isr(apic));
Andrey Smetanind62caab2015-11-10 15:36:33 +03001971 }
Avi Kivity3842d132010-07-27 12:30:24 +03001972 kvm_make_request(KVM_REQ_EVENT, vcpu);
Steve Rutherford49df6392015-07-29 23:21:40 -07001973 if (ioapic_in_kernel(vcpu->kvm))
1974 kvm_rtc_eoi_tracking_restore_one(vcpu);
Radim Krčmář0669a512015-10-30 15:48:20 +01001975
1976 vcpu->arch.apic_arb_prio = 0;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001977}
Eddie Donga3d7f852007-09-03 16:15:12 +03001978
Avi Kivity2f52d582008-01-16 12:49:30 +02001979void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001980{
Eddie Donga3d7f852007-09-03 16:15:12 +03001981 struct hrtimer *timer;
1982
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01001983 if (!lapic_in_kernel(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03001984 return;
1985
Gleb Natapov54e98182012-08-05 15:58:32 +03001986 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001987 if (hrtimer_cancel(timer))
Luiz Capitulino61abdbe2016-04-04 16:46:07 -04001988 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
Eddie Donga3d7f852007-09-03 16:15:12 +03001989}
Avi Kivityb93463a2007-10-25 16:52:32 +02001990
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001991/*
1992 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1993 *
1994 * Detect whether guest triggered PV EOI since the
1995 * last entry. If yes, set EOI on guests's behalf.
1996 * Clear PV EOI in guest memory in any case.
1997 */
1998static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1999 struct kvm_lapic *apic)
2000{
2001 bool pending;
2002 int vector;
2003 /*
2004 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
2005 * and KVM_PV_EOI_ENABLED in guest memory as follows:
2006 *
2007 * KVM_APIC_PV_EOI_PENDING is unset:
2008 * -> host disabled PV EOI.
2009 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
2010 * -> host enabled PV EOI, guest did not execute EOI yet.
2011 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
2012 * -> host enabled PV EOI, guest executed EOI.
2013 */
2014 BUG_ON(!pv_eoi_enabled(vcpu));
2015 pending = pv_eoi_get_pending(vcpu);
2016 /*
2017 * Clear pending bit in any case: it will be set again on vmentry.
2018 * While this might not be ideal from performance point of view,
2019 * this makes sure pv eoi is only enabled when we know it's safe.
2020 */
2021 pv_eoi_clr_pending(vcpu);
2022 if (pending)
2023 return;
2024 vector = apic_set_eoi(apic);
2025 trace_kvm_pv_eoi(apic, vector);
2026}
2027
Avi Kivityb93463a2007-10-25 16:52:32 +02002028void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
2029{
2030 u32 data;
Avi Kivityb93463a2007-10-25 16:52:32 +02002031
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002032 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
2033 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
2034
Gleb Natapov41383772012-04-19 14:06:29 +03002035 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002036 return;
2037
Nicholas Krause603242a2015-08-05 10:44:40 -04002038 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2039 sizeof(u32)))
2040 return;
Avi Kivityb93463a2007-10-25 16:52:32 +02002041
2042 apic_set_tpr(vcpu->arch.apic, data & 0xff);
2043}
2044
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002045/*
2046 * apic_sync_pv_eoi_to_guest - called before vmentry
2047 *
2048 * Detect whether it's safe to enable PV EOI and
2049 * if yes do so.
2050 */
2051static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
2052 struct kvm_lapic *apic)
2053{
2054 if (!pv_eoi_enabled(vcpu) ||
2055 /* IRR set or many bits in ISR: could be nested. */
2056 apic->irr_pending ||
2057 /* Cache not set: could be safe but we don't bother. */
2058 apic->highest_isr_cache == -1 ||
2059 /* Need EOI to update ioapic. */
Paolo Bonzini3bb345f2015-07-29 10:43:18 +02002060 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002061 /*
2062 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
2063 * so we need not do anything here.
2064 */
2065 return;
2066 }
2067
2068 pv_eoi_set_pending(apic->vcpu);
2069}
2070
Avi Kivityb93463a2007-10-25 16:52:32 +02002071void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
2072{
2073 u32 data, tpr;
2074 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002075 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02002076
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002077 apic_sync_pv_eoi_to_guest(vcpu, apic);
2078
Gleb Natapov41383772012-04-19 14:06:29 +03002079 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02002080 return;
2081
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -05002082 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02002083 max_irr = apic_find_highest_irr(apic);
2084 if (max_irr < 0)
2085 max_irr = 0;
2086 max_isr = apic_find_highest_isr(apic);
2087 if (max_isr < 0)
2088 max_isr = 0;
2089 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
2090
Andy Honigfda4e2e82013-11-20 10:23:22 -08002091 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2092 sizeof(u32));
Avi Kivityb93463a2007-10-25 16:52:32 +02002093}
2094
Andy Honigfda4e2e82013-11-20 10:23:22 -08002095int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
Avi Kivityb93463a2007-10-25 16:52:32 +02002096{
Andy Honigfda4e2e82013-11-20 10:23:22 -08002097 if (vapic_addr) {
2098 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
2099 &vcpu->arch.apic->vapic_cache,
2100 vapic_addr, sizeof(u32)))
2101 return -EINVAL;
Gleb Natapov41383772012-04-19 14:06:29 +03002102 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e82013-11-20 10:23:22 -08002103 } else {
Gleb Natapov41383772012-04-19 14:06:29 +03002104 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Andy Honigfda4e2e82013-11-20 10:23:22 -08002105 }
2106
2107 vcpu->arch.apic->vapic_addr = vapic_addr;
2108 return 0;
Avi Kivityb93463a2007-10-25 16:52:32 +02002109}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002110
2111int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2112{
2113 struct kvm_lapic *apic = vcpu->arch.apic;
2114 u32 reg = (msr - APIC_BASE_MSR) << 4;
2115
Paolo Bonzini35754c92015-07-29 12:05:37 +02002116 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002117 return 1;
2118
Nadav Amitc69d3d92014-11-26 17:56:25 +02002119 if (reg == APIC_ICR2)
2120 return 1;
2121
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002122 /* if this is ICR write vector before command */
Radim Krčmářdecdc282014-11-26 17:07:05 +01002123 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002124 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2125 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002126}
2127
2128int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
2129{
2130 struct kvm_lapic *apic = vcpu->arch.apic;
2131 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
2132
Paolo Bonzini35754c92015-07-29 12:05:37 +02002133 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002134 return 1;
2135
Nadav Amitc69d3d92014-11-26 17:56:25 +02002136 if (reg == APIC_DFR || reg == APIC_ICR2) {
2137 apic_debug("KVM_APIC_READ: read x2apic reserved register %x\n",
2138 reg);
2139 return 1;
2140 }
2141
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002142 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002143 return 1;
Radim Krčmářdecdc282014-11-26 17:07:05 +01002144 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002145 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002146
2147 *data = (((u64)high) << 32) | low;
2148
2149 return 0;
2150}
Gleb Natapov10388a02010-01-17 15:51:23 +02002151
2152int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
2153{
2154 struct kvm_lapic *apic = vcpu->arch.apic;
2155
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002156 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002157 return 1;
2158
2159 /* if this is ICR write vector before command */
2160 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002161 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2162 return kvm_lapic_reg_write(apic, reg, (u32)data);
Gleb Natapov10388a02010-01-17 15:51:23 +02002163}
2164
2165int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
2166{
2167 struct kvm_lapic *apic = vcpu->arch.apic;
2168 u32 low, high = 0;
2169
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002170 if (!lapic_in_kernel(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02002171 return 1;
2172
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002173 if (kvm_lapic_reg_read(apic, reg, 4, &low))
Gleb Natapov10388a02010-01-17 15:51:23 +02002174 return 1;
2175 if (reg == APIC_ICR)
Suravee Suthikulpanit1e6e2752016-05-04 14:09:40 -05002176 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
Gleb Natapov10388a02010-01-17 15:51:23 +02002177
2178 *data = (((u64)high) << 32) | low;
2179
2180 return 0;
2181}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002182
2183int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
2184{
2185 u64 addr = data & ~KVM_MSR_ENABLED;
2186 if (!IS_ALIGNED(addr, 4))
2187 return 1;
2188
2189 vcpu->arch.pv_eoi.msr_val = data;
2190 if (!pv_eoi_enabled(vcpu))
2191 return 0;
2192 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
Andrew Honig8f964522013-03-29 09:35:21 -07002193 addr, sizeof(u8));
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002194}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002195
Jan Kiszka66450a22013-03-13 12:42:34 +01002196void kvm_apic_accept_events(struct kvm_vcpu *vcpu)
2197{
2198 struct kvm_lapic *apic = vcpu->arch.apic;
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01002199 u8 sipi_vector;
Gleb Natapov299018f2013-06-03 11:30:02 +03002200 unsigned long pe;
Jan Kiszka66450a22013-03-13 12:42:34 +01002201
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002202 if (!lapic_in_kernel(vcpu) || !apic->pending_events)
Jan Kiszka66450a22013-03-13 12:42:34 +01002203 return;
2204
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002205 /*
2206 * INITs are latched while in SMM. Because an SMM CPU cannot
2207 * be in KVM_MP_STATE_INIT_RECEIVED state, just eat SIPIs
2208 * and delay processing of INIT until the next RSM.
2209 */
2210 if (is_smm(vcpu)) {
2211 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
2212 if (test_bit(KVM_APIC_SIPI, &apic->pending_events))
2213 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
2214 return;
2215 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002216
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02002217 pe = xchg(&apic->pending_events, 0);
Gleb Natapov299018f2013-06-03 11:30:02 +03002218 if (test_bit(KVM_APIC_INIT, &pe)) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03002219 kvm_lapic_reset(vcpu, true);
2220 kvm_vcpu_reset(vcpu, true);
Jan Kiszka66450a22013-03-13 12:42:34 +01002221 if (kvm_vcpu_is_bsp(apic->vcpu))
2222 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2223 else
2224 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
2225 }
Gleb Natapov299018f2013-06-03 11:30:02 +03002226 if (test_bit(KVM_APIC_SIPI, &pe) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01002227 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
2228 /* evaluate pending_events before reading the vector */
2229 smp_rmb();
2230 sipi_vector = apic->sipi_vector;
Nadav Amit98eff522014-06-29 12:28:51 +03002231 apic_debug("vcpu %d received sipi with vector # %x\n",
Jan Kiszka66450a22013-03-13 12:42:34 +01002232 vcpu->vcpu_id, sipi_vector);
2233 kvm_vcpu_deliver_sipi_vector(vcpu, sipi_vector);
2234 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2235 }
2236}
2237
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002238void kvm_lapic_init(void)
2239{
2240 /* do not patch jump label more than once per second */
2241 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03002242 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03002243}