KVM: x86: Software disabled APIC should still deliver NMIs
[deliverable/linux.git] / arch / x86 / kvm / lapic.c
CommitLineData
97222cc8
ED
1
2/*
3 * Local APIC virtualization
4 *
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
9611c187 8 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
97222cc8
ED
9 *
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
edf88417 21#include <linux/kvm_host.h>
97222cc8
ED
22#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>
6f6d6a1a 29#include <linux/math64.h>
5a0e3ad6 30#include <linux/slab.h>
97222cc8
ED
31#include <asm/processor.h>
32#include <asm/msr.h>
33#include <asm/page.h>
34#include <asm/current.h>
35#include <asm/apicdef.h>
60063497 36#include <linux/atomic.h>
c5cc421b 37#include <linux/jump_label.h>
5fdbf976 38#include "kvm_cache_regs.h"
97222cc8 39#include "irq.h"
229456fc 40#include "trace.h"
fc61b800 41#include "x86.h"
00b27a3e 42#include "cpuid.h"
97222cc8 43
b682b814
MT
44#ifndef CONFIG_X86_64
45#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
46#else
47#define mod_64(x, y) ((x) % (y))
48#endif
49
97222cc8
ED
50#define PRId64 "d"
51#define PRIx64 "llx"
52#define PRIu64 "u"
53#define PRIo64 "o"
54
55#define APIC_BUS_CYCLE_NS 1
56
57/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
58#define apic_debug(fmt, arg...)
59
60#define APIC_LVT_NUM 6
61/* 14 is the version for Xeon and Pentium 8.4.8*/
62#define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
63#define LAPIC_MMIO_LENGTH (1 << 12)
64/* followed define is not in apicdef.h */
65#define APIC_SHORT_MASK 0xc0000
66#define APIC_DEST_NOSHORT 0x0
67#define APIC_DEST_MASK 0x800
68#define MAX_APIC_VECTOR 256
ecba9a52 69#define APIC_VECTORS_PER_REG 32
97222cc8 70
394457a9
NA
71#define APIC_BROADCAST 0xFF
72#define X2APIC_BROADCAST 0xFFFFFFFFul
73
97222cc8
ED
74#define VEC_POS(v) ((v) & (32 - 1))
75#define REG_POS(v) (((v) >> 5) << 4)
ad312c7c 76
97222cc8
ED
77static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
78{
79 *((u32 *) (apic->regs + reg_off)) = val;
80}
81
a0c9a822
MT
82static inline int apic_test_vector(int vec, void *bitmap)
83{
84 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
85}
86
10606919
YZ
87bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector)
88{
89 struct kvm_lapic *apic = vcpu->arch.apic;
90
91 return apic_test_vector(vector, apic->regs + APIC_ISR) ||
92 apic_test_vector(vector, apic->regs + APIC_IRR);
93}
94
97222cc8
ED
95static inline void apic_set_vector(int vec, void *bitmap)
96{
97 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
98}
99
100static inline void apic_clear_vector(int vec, void *bitmap)
101{
102 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
103}
104
8680b94b
MT
105static inline int __apic_test_and_set_vector(int vec, void *bitmap)
106{
107 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
108}
109
110static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
111{
112 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
113}
114
c5cc421b 115struct static_key_deferred apic_hw_disabled __read_mostly;
f8c1ea10
GN
116struct static_key_deferred apic_sw_disabled __read_mostly;
117
97222cc8
ED
118static inline int apic_enabled(struct kvm_lapic *apic)
119{
c48f1496 120 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
54e9818f
GN
121}
122
97222cc8
ED
123#define LVT_MASK \
124 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
125
126#define LINT_MASK \
127 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
128 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
129
130static inline int kvm_apic_id(struct kvm_lapic *apic)
131{
c48f1496 132 return (kvm_apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
97222cc8
ED
133}
134
17d68b76
GN
135#define KVM_X2APIC_CID_BITS 0
136
1e08ec4a
GN
137static void recalculate_apic_map(struct kvm *kvm)
138{
139 struct kvm_apic_map *new, *old = NULL;
140 struct kvm_vcpu *vcpu;
141 int i;
142
143 new = kzalloc(sizeof(struct kvm_apic_map), GFP_KERNEL);
144
145 mutex_lock(&kvm->arch.apic_map_lock);
146
147 if (!new)
148 goto out;
149
150 new->ldr_bits = 8;
151 /* flat mode is default */
152 new->cid_shift = 8;
153 new->cid_mask = 0;
154 new->lid_mask = 0xff;
394457a9 155 new->broadcast = APIC_BROADCAST;
1e08ec4a
GN
156
157 kvm_for_each_vcpu(i, vcpu, kvm) {
158 struct kvm_lapic *apic = vcpu->arch.apic;
1e08ec4a
GN
159
160 if (!kvm_apic_present(vcpu))
161 continue;
162
163 /*
164 * All APICs have to be configured in the same mode by an OS.
165 * We take advatage of this while building logical id loockup
166 * table. After reset APICs are in xapic/flat mode, so if we
167 * find apic with different setting we assume this is the mode
168 * OS wants all apics to be in; build lookup table accordingly.
169 */
170 if (apic_x2apic_mode(apic)) {
171 new->ldr_bits = 32;
172 new->cid_shift = 16;
17d68b76
GN
173 new->cid_mask = (1 << KVM_X2APIC_CID_BITS) - 1;
174 new->lid_mask = 0xffff;
394457a9 175 new->broadcast = X2APIC_BROADCAST;
173beedc
NA
176 break;
177 } else if (kvm_apic_sw_enabled(apic)) {
178 if (kvm_apic_get_reg(apic, APIC_DFR) ==
179 APIC_DFR_CLUSTER) {
180 new->cid_shift = 4;
181 new->cid_mask = 0xf;
182 new->lid_mask = 0xf;
183 }
184 break;
1e08ec4a 185 }
173beedc
NA
186 }
187
188 kvm_for_each_vcpu(i, vcpu, kvm) {
189 struct kvm_lapic *apic = vcpu->arch.apic;
190 u16 cid, lid;
191 u32 ldr;
1e08ec4a
GN
192
193 new->phys_map[kvm_apic_id(apic)] = apic;
194
195 ldr = kvm_apic_get_reg(apic, APIC_LDR);
196 cid = apic_cluster_id(new, ldr);
197 lid = apic_logical_id(new, ldr);
198
199 if (lid)
200 new->logical_map[cid][ffs(lid) - 1] = apic;
201 }
202out:
203 old = rcu_dereference_protected(kvm->arch.apic_map,
204 lockdep_is_held(&kvm->arch.apic_map_lock));
205 rcu_assign_pointer(kvm->arch.apic_map, new);
206 mutex_unlock(&kvm->arch.apic_map_lock);
207
208 if (old)
209 kfree_rcu(old, rcu);
c7c9c56c 210
3d81bc7e 211 kvm_vcpu_request_scan_ioapic(kvm);
1e08ec4a
GN
212}
213
1e1b6c26
NA
214static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
215{
e462755c 216 bool enabled = val & APIC_SPIV_APIC_ENABLED;
1e1b6c26
NA
217
218 apic_set_reg(apic, APIC_SPIV, val);
e462755c
RK
219
220 if (enabled != apic->sw_enabled) {
221 apic->sw_enabled = enabled;
222 if (enabled) {
1e1b6c26
NA
223 static_key_slow_dec_deferred(&apic_sw_disabled);
224 recalculate_apic_map(apic->vcpu->kvm);
225 } else
226 static_key_slow_inc(&apic_sw_disabled.key);
227 }
228}
229
1e08ec4a
GN
230static inline void kvm_apic_set_id(struct kvm_lapic *apic, u8 id)
231{
232 apic_set_reg(apic, APIC_ID, id << 24);
233 recalculate_apic_map(apic->vcpu->kvm);
234}
235
236static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
237{
238 apic_set_reg(apic, APIC_LDR, id);
239 recalculate_apic_map(apic->vcpu->kvm);
240}
241
97222cc8
ED
242static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
243{
c48f1496 244 return !(kvm_apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
97222cc8
ED
245}
246
247static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
248{
c48f1496 249 return kvm_apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
97222cc8
ED
250}
251
a3e06bbe
LJ
252static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
253{
f30ebc31 254 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
a3e06bbe
LJ
255}
256
97222cc8
ED
257static inline int apic_lvtt_period(struct kvm_lapic *apic)
258{
f30ebc31 259 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
a3e06bbe
LJ
260}
261
262static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
263{
f30ebc31 264 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
97222cc8
ED
265}
266
cc6e462c
JK
267static inline int apic_lvt_nmi_mode(u32 lvt_val)
268{
269 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
270}
271
fc61b800
GN
272void kvm_apic_set_version(struct kvm_vcpu *vcpu)
273{
274 struct kvm_lapic *apic = vcpu->arch.apic;
275 struct kvm_cpuid_entry2 *feat;
276 u32 v = APIC_VERSION;
277
c48f1496 278 if (!kvm_vcpu_has_lapic(vcpu))
fc61b800
GN
279 return;
280
281 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
282 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
283 v |= APIC_LVR_DIRECTED_EOI;
284 apic_set_reg(apic, APIC_LVR, v);
285}
286
f1d24831 287static const unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
a3e06bbe 288 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
97222cc8
ED
289 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
290 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
291 LINT_MASK, LINT_MASK, /* LVT0-1 */
292 LVT_MASK /* LVTERR */
293};
294
295static int find_highest_vector(void *bitmap)
296{
ecba9a52
TY
297 int vec;
298 u32 *reg;
97222cc8 299
ecba9a52
TY
300 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
301 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
302 reg = bitmap + REG_POS(vec);
303 if (*reg)
304 return fls(*reg) - 1 + vec;
305 }
97222cc8 306
ecba9a52 307 return -1;
97222cc8
ED
308}
309
8680b94b
MT
310static u8 count_vectors(void *bitmap)
311{
ecba9a52
TY
312 int vec;
313 u32 *reg;
8680b94b 314 u8 count = 0;
ecba9a52
TY
315
316 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
317 reg = bitmap + REG_POS(vec);
318 count += hweight32(*reg);
319 }
320
8680b94b
MT
321 return count;
322}
323
a20ed54d
YZ
324void kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir)
325{
326 u32 i, pir_val;
327 struct kvm_lapic *apic = vcpu->arch.apic;
328
329 for (i = 0; i <= 7; i++) {
330 pir_val = xchg(&pir[i], 0);
331 if (pir_val)
332 *((u32 *)(apic->regs + APIC_IRR + i * 0x10)) |= pir_val;
333 }
334}
335EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
336
11f5cc05 337static inline void apic_set_irr(int vec, struct kvm_lapic *apic)
97222cc8 338{
33e4c686 339 apic->irr_pending = true;
11f5cc05 340 apic_set_vector(vec, apic->regs + APIC_IRR);
97222cc8
ED
341}
342
33e4c686 343static inline int apic_search_irr(struct kvm_lapic *apic)
97222cc8 344{
33e4c686 345 return find_highest_vector(apic->regs + APIC_IRR);
97222cc8
ED
346}
347
348static inline int apic_find_highest_irr(struct kvm_lapic *apic)
349{
350 int result;
351
c7c9c56c
YZ
352 /*
353 * Note that irr_pending is just a hint. It will be always
354 * true with virtual interrupt delivery enabled.
355 */
33e4c686
GN
356 if (!apic->irr_pending)
357 return -1;
358
5a71785d 359 kvm_x86_ops->sync_pir_to_irr(apic->vcpu);
33e4c686 360 result = apic_search_irr(apic);
97222cc8
ED
361 ASSERT(result == -1 || result >= 16);
362
363 return result;
364}
365
33e4c686
GN
366static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
367{
56cc2406
WL
368 struct kvm_vcpu *vcpu;
369
370 vcpu = apic->vcpu;
371
33e4c686 372 apic_clear_vector(vec, apic->regs + APIC_IRR);
56cc2406
WL
373 if (unlikely(kvm_apic_vid_enabled(vcpu->kvm)))
374 /* try to update RVI */
375 kvm_make_request(KVM_REQ_EVENT, vcpu);
376 else {
377 vec = apic_search_irr(apic);
378 apic->irr_pending = (vec != -1);
379 }
33e4c686
GN
380}
381
8680b94b
MT
382static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
383{
56cc2406
WL
384 struct kvm_vcpu *vcpu;
385
386 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
387 return;
388
389 vcpu = apic->vcpu;
fc57ac2c 390
8680b94b 391 /*
56cc2406
WL
392 * With APIC virtualization enabled, all caching is disabled
393 * because the processor can modify ISR under the hood. Instead
394 * just set SVI.
8680b94b 395 */
56cc2406
WL
396 if (unlikely(kvm_apic_vid_enabled(vcpu->kvm)))
397 kvm_x86_ops->hwapic_isr_update(vcpu->kvm, vec);
398 else {
399 ++apic->isr_count;
400 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
401 /*
402 * ISR (in service register) bit is set when injecting an interrupt.
403 * The highest vector is injected. Thus the latest bit set matches
404 * the highest bit in ISR.
405 */
406 apic->highest_isr_cache = vec;
407 }
8680b94b
MT
408}
409
fc57ac2c
PB
410static inline int apic_find_highest_isr(struct kvm_lapic *apic)
411{
412 int result;
413
414 /*
415 * Note that isr_count is always 1, and highest_isr_cache
416 * is always -1, with APIC virtualization enabled.
417 */
418 if (!apic->isr_count)
419 return -1;
420 if (likely(apic->highest_isr_cache != -1))
421 return apic->highest_isr_cache;
422
423 result = find_highest_vector(apic->regs + APIC_ISR);
424 ASSERT(result == -1 || result >= 16);
425
426 return result;
427}
428
8680b94b
MT
429static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
430{
fc57ac2c
PB
431 struct kvm_vcpu *vcpu;
432 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
433 return;
434
435 vcpu = apic->vcpu;
436
437 /*
438 * We do get here for APIC virtualization enabled if the guest
439 * uses the Hyper-V APIC enlightenment. In this case we may need
440 * to trigger a new interrupt delivery by writing the SVI field;
441 * on the other hand isr_count and highest_isr_cache are unused
442 * and must be left alone.
443 */
444 if (unlikely(kvm_apic_vid_enabled(vcpu->kvm)))
445 kvm_x86_ops->hwapic_isr_update(vcpu->kvm,
446 apic_find_highest_isr(apic));
447 else {
8680b94b 448 --apic->isr_count;
fc57ac2c
PB
449 BUG_ON(apic->isr_count < 0);
450 apic->highest_isr_cache = -1;
451 }
8680b94b
MT
452}
453
6e5d865c
YS
454int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
455{
6e5d865c
YS
456 int highest_irr;
457
33e4c686
GN
458 /* This may race with setting of irr in __apic_accept_irq() and
459 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
460 * will cause vmexit immediately and the value will be recalculated
461 * on the next vmentry.
462 */
c48f1496 463 if (!kvm_vcpu_has_lapic(vcpu))
6e5d865c 464 return 0;
54e9818f 465 highest_irr = apic_find_highest_irr(vcpu->arch.apic);
6e5d865c
YS
466
467 return highest_irr;
468}
6e5d865c 469
6da7e3f6 470static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
b4f2225c
YZ
471 int vector, int level, int trig_mode,
472 unsigned long *dest_map);
6da7e3f6 473
b4f2225c
YZ
474int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
475 unsigned long *dest_map)
97222cc8 476{
ad312c7c 477 struct kvm_lapic *apic = vcpu->arch.apic;
8be5453f 478
58c2dde1 479 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
b4f2225c 480 irq->level, irq->trig_mode, dest_map);
97222cc8
ED
481}
482
ae7a2a3f
MT
483static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
484{
485
486 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
487 sizeof(val));
488}
489
490static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
491{
492
493 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
494 sizeof(*val));
495}
496
497static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
498{
499 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
500}
501
502static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
503{
504 u8 val;
505 if (pv_eoi_get_user(vcpu, &val) < 0)
506 apic_debug("Can't read EOI MSR value: 0x%llx\n",
96893977 507 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
ae7a2a3f
MT
508 return val & 0x1;
509}
510
511static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
512{
513 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
514 apic_debug("Can't set EOI MSR value: 0x%llx\n",
96893977 515 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
ae7a2a3f
MT
516 return;
517 }
518 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
519}
520
521static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
522{
523 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
524 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
96893977 525 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
ae7a2a3f
MT
526 return;
527 }
528 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
529}
530
cf9e65b7
YZ
531void kvm_apic_update_tmr(struct kvm_vcpu *vcpu, u32 *tmr)
532{
533 struct kvm_lapic *apic = vcpu->arch.apic;
534 int i;
535
536 for (i = 0; i < 8; i++)
537 apic_set_reg(apic, APIC_TMR + 0x10 * i, tmr[i]);
538}
539
97222cc8
ED
540static void apic_update_ppr(struct kvm_lapic *apic)
541{
3842d135 542 u32 tpr, isrv, ppr, old_ppr;
97222cc8
ED
543 int isr;
544
c48f1496
GN
545 old_ppr = kvm_apic_get_reg(apic, APIC_PROCPRI);
546 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI);
97222cc8
ED
547 isr = apic_find_highest_isr(apic);
548 isrv = (isr != -1) ? isr : 0;
549
550 if ((tpr & 0xf0) >= (isrv & 0xf0))
551 ppr = tpr & 0xff;
552 else
553 ppr = isrv & 0xf0;
554
555 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
556 apic, ppr, isr, isrv);
557
3842d135
AK
558 if (old_ppr != ppr) {
559 apic_set_reg(apic, APIC_PROCPRI, ppr);
83bcacb1
AK
560 if (ppr < old_ppr)
561 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
3842d135 562 }
97222cc8
ED
563}
564
565static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
566{
567 apic_set_reg(apic, APIC_TASKPRI, tpr);
568 apic_update_ppr(apic);
569}
570
394457a9
NA
571static int kvm_apic_broadcast(struct kvm_lapic *apic, u32 dest)
572{
573 return dest == (apic_x2apic_mode(apic) ?
574 X2APIC_BROADCAST : APIC_BROADCAST);
575}
576
577int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 dest)
97222cc8 578{
394457a9 579 return kvm_apic_id(apic) == dest || kvm_apic_broadcast(apic, dest);
97222cc8
ED
580}
581
394457a9 582int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
97222cc8
ED
583{
584 int result = 0;
0105d1a5
GN
585 u32 logical_id;
586
394457a9
NA
587 if (kvm_apic_broadcast(apic, mda))
588 return 1;
589
0105d1a5 590 if (apic_x2apic_mode(apic)) {
c48f1496 591 logical_id = kvm_apic_get_reg(apic, APIC_LDR);
0105d1a5
GN
592 return logical_id & mda;
593 }
97222cc8 594
c48f1496 595 logical_id = GET_APIC_LOGICAL_ID(kvm_apic_get_reg(apic, APIC_LDR));
97222cc8 596
c48f1496 597 switch (kvm_apic_get_reg(apic, APIC_DFR)) {
97222cc8
ED
598 case APIC_DFR_FLAT:
599 if (logical_id & mda)
600 result = 1;
601 break;
602 case APIC_DFR_CLUSTER:
603 if (((logical_id >> 4) == (mda >> 0x4))
604 && (logical_id & mda & 0xf))
605 result = 1;
606 break;
607 default:
7712de87 608 apic_debug("Bad DFR vcpu %d: %08x\n",
c48f1496 609 apic->vcpu->vcpu_id, kvm_apic_get_reg(apic, APIC_DFR));
97222cc8
ED
610 break;
611 }
612
613 return result;
614}
615
343f94fe 616int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
394457a9 617 int short_hand, unsigned int dest, int dest_mode)
97222cc8
ED
618{
619 int result = 0;
ad312c7c 620 struct kvm_lapic *target = vcpu->arch.apic;
97222cc8
ED
621
622 apic_debug("target %p, source %p, dest 0x%x, "
343f94fe 623 "dest_mode 0x%x, short_hand 0x%x\n",
97222cc8
ED
624 target, source, dest, dest_mode, short_hand);
625
bd371396 626 ASSERT(target);
97222cc8
ED
627 switch (short_hand) {
628 case APIC_DEST_NOSHORT:
343f94fe 629 if (dest_mode == 0)
97222cc8 630 /* Physical mode. */
343f94fe
GN
631 result = kvm_apic_match_physical_addr(target, dest);
632 else
97222cc8
ED
633 /* Logical mode. */
634 result = kvm_apic_match_logical_addr(target, dest);
635 break;
636 case APIC_DEST_SELF:
343f94fe 637 result = (target == source);
97222cc8
ED
638 break;
639 case APIC_DEST_ALLINC:
640 result = 1;
641 break;
642 case APIC_DEST_ALLBUT:
343f94fe 643 result = (target != source);
97222cc8
ED
644 break;
645 default:
7712de87
JK
646 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
647 short_hand);
97222cc8
ED
648 break;
649 }
650
651 return result;
652}
653
1e08ec4a 654bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
b4f2225c 655 struct kvm_lapic_irq *irq, int *r, unsigned long *dest_map)
1e08ec4a
GN
656{
657 struct kvm_apic_map *map;
658 unsigned long bitmap = 1;
659 struct kvm_lapic **dst;
660 int i;
661 bool ret = false;
662
663 *r = -1;
664
665 if (irq->shorthand == APIC_DEST_SELF) {
b4f2225c 666 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
1e08ec4a
GN
667 return true;
668 }
669
670 if (irq->shorthand)
671 return false;
672
673 rcu_read_lock();
674 map = rcu_dereference(kvm->arch.apic_map);
675
676 if (!map)
677 goto out;
678
394457a9
NA
679 if (irq->dest_id == map->broadcast)
680 goto out;
681
1e08ec4a 682 if (irq->dest_mode == 0) { /* physical mode */
394457a9 683 if (irq->delivery_mode == APIC_DM_LOWEST)
1e08ec4a
GN
684 goto out;
685 dst = &map->phys_map[irq->dest_id & 0xff];
686 } else {
687 u32 mda = irq->dest_id << (32 - map->ldr_bits);
688
689 dst = map->logical_map[apic_cluster_id(map, mda)];
690
691 bitmap = apic_logical_id(map, mda);
692
693 if (irq->delivery_mode == APIC_DM_LOWEST) {
694 int l = -1;
695 for_each_set_bit(i, &bitmap, 16) {
696 if (!dst[i])
697 continue;
698 if (l < 0)
699 l = i;
700 else if (kvm_apic_compare_prio(dst[i]->vcpu, dst[l]->vcpu) < 0)
701 l = i;
702 }
703
704 bitmap = (l >= 0) ? 1 << l : 0;
705 }
706 }
707
708 for_each_set_bit(i, &bitmap, 16) {
709 if (!dst[i])
710 continue;
711 if (*r < 0)
712 *r = 0;
b4f2225c 713 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
1e08ec4a
GN
714 }
715
716 ret = true;
717out:
718 rcu_read_unlock();
719 return ret;
720}
721
97222cc8
ED
722/*
723 * Add a pending IRQ into lapic.
724 * Return 1 if successfully added and 0 if discarded.
725 */
726static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
b4f2225c
YZ
727 int vector, int level, int trig_mode,
728 unsigned long *dest_map)
97222cc8 729{
6da7e3f6 730 int result = 0;
c5ec1534 731 struct kvm_vcpu *vcpu = apic->vcpu;
97222cc8 732
a183b638
PB
733 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
734 trig_mode, vector);
97222cc8 735 switch (delivery_mode) {
97222cc8 736 case APIC_DM_LOWEST:
e1035715
GN
737 vcpu->arch.apic_arb_prio++;
738 case APIC_DM_FIXED:
97222cc8
ED
739 /* FIXME add logic for vcpu on reset */
740 if (unlikely(!apic_enabled(apic)))
741 break;
742
11f5cc05
JK
743 result = 1;
744
b4f2225c
YZ
745 if (dest_map)
746 __set_bit(vcpu->vcpu_id, dest_map);
a5d36f82 747
11f5cc05 748 if (kvm_x86_ops->deliver_posted_interrupt)
5a71785d 749 kvm_x86_ops->deliver_posted_interrupt(vcpu, vector);
11f5cc05
JK
750 else {
751 apic_set_irr(vector, apic);
5a71785d
YZ
752
753 kvm_make_request(KVM_REQ_EVENT, vcpu);
754 kvm_vcpu_kick(vcpu);
755 }
97222cc8
ED
756 break;
757
758 case APIC_DM_REMRD:
24d2166b
R
759 result = 1;
760 vcpu->arch.pv.pv_unhalted = 1;
761 kvm_make_request(KVM_REQ_EVENT, vcpu);
762 kvm_vcpu_kick(vcpu);
97222cc8
ED
763 break;
764
765 case APIC_DM_SMI:
7712de87 766 apic_debug("Ignoring guest SMI\n");
97222cc8 767 break;
3419ffc8 768
97222cc8 769 case APIC_DM_NMI:
6da7e3f6 770 result = 1;
3419ffc8 771 kvm_inject_nmi(vcpu);
26df99c6 772 kvm_vcpu_kick(vcpu);
97222cc8
ED
773 break;
774
775 case APIC_DM_INIT:
a52315e1 776 if (!trig_mode || level) {
6da7e3f6 777 result = 1;
66450a21
JK
778 /* assumes that there are only KVM_APIC_INIT/SIPI */
779 apic->pending_events = (1UL << KVM_APIC_INIT);
780 /* make sure pending_events is visible before sending
781 * the request */
782 smp_wmb();
3842d135 783 kvm_make_request(KVM_REQ_EVENT, vcpu);
c5ec1534
HQ
784 kvm_vcpu_kick(vcpu);
785 } else {
1b10bf31
JK
786 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
787 vcpu->vcpu_id);
c5ec1534 788 }
97222cc8
ED
789 break;
790
791 case APIC_DM_STARTUP:
1b10bf31
JK
792 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
793 vcpu->vcpu_id, vector);
66450a21
JK
794 result = 1;
795 apic->sipi_vector = vector;
796 /* make sure sipi_vector is visible for the receiver */
797 smp_wmb();
798 set_bit(KVM_APIC_SIPI, &apic->pending_events);
799 kvm_make_request(KVM_REQ_EVENT, vcpu);
800 kvm_vcpu_kick(vcpu);
97222cc8
ED
801 break;
802
23930f95
JK
803 case APIC_DM_EXTINT:
804 /*
805 * Should only be called by kvm_apic_local_deliver() with LVT0,
806 * before NMI watchdog was enabled. Already handled by
807 * kvm_apic_accept_pic_intr().
808 */
809 break;
810
97222cc8
ED
811 default:
812 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
813 delivery_mode);
814 break;
815 }
816 return result;
817}
818
e1035715 819int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
8be5453f 820{
e1035715 821 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
8be5453f
ZX
822}
823
c7c9c56c
YZ
824static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
825{
826 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
827 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
828 int trigger_mode;
829 if (apic_test_vector(vector, apic->regs + APIC_TMR))
830 trigger_mode = IOAPIC_LEVEL_TRIG;
831 else
832 trigger_mode = IOAPIC_EDGE_TRIG;
1fcc7890 833 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
c7c9c56c
YZ
834 }
835}
836
ae7a2a3f 837static int apic_set_eoi(struct kvm_lapic *apic)
97222cc8
ED
838{
839 int vector = apic_find_highest_isr(apic);
ae7a2a3f
MT
840
841 trace_kvm_eoi(apic, vector);
842
97222cc8
ED
843 /*
844 * Not every write EOI will has corresponding ISR,
845 * one example is when Kernel check timer on setup_IO_APIC
846 */
847 if (vector == -1)
ae7a2a3f 848 return vector;
97222cc8 849
8680b94b 850 apic_clear_isr(vector, apic);
97222cc8
ED
851 apic_update_ppr(apic);
852
c7c9c56c 853 kvm_ioapic_send_eoi(apic, vector);
3842d135 854 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
ae7a2a3f 855 return vector;
97222cc8
ED
856}
857
c7c9c56c
YZ
858/*
859 * this interface assumes a trap-like exit, which has already finished
860 * desired side effect including vISR and vPPR update.
861 */
862void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
863{
864 struct kvm_lapic *apic = vcpu->arch.apic;
865
866 trace_kvm_eoi(apic, vector);
867
868 kvm_ioapic_send_eoi(apic, vector);
869 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
870}
871EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
872
97222cc8
ED
873static void apic_send_ipi(struct kvm_lapic *apic)
874{
c48f1496
GN
875 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR);
876 u32 icr_high = kvm_apic_get_reg(apic, APIC_ICR2);
58c2dde1 877 struct kvm_lapic_irq irq;
97222cc8 878
58c2dde1
GN
879 irq.vector = icr_low & APIC_VECTOR_MASK;
880 irq.delivery_mode = icr_low & APIC_MODE_MASK;
881 irq.dest_mode = icr_low & APIC_DEST_MASK;
882 irq.level = icr_low & APIC_INT_ASSERT;
883 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
884 irq.shorthand = icr_low & APIC_SHORT_MASK;
0105d1a5
GN
885 if (apic_x2apic_mode(apic))
886 irq.dest_id = icr_high;
887 else
888 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
97222cc8 889
1000ff8d
GN
890 trace_kvm_apic_ipi(icr_low, irq.dest_id);
891
97222cc8
ED
892 apic_debug("icr_high 0x%x, icr_low 0x%x, "
893 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
894 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
9b5843dd 895 icr_high, icr_low, irq.shorthand, irq.dest_id,
58c2dde1
GN
896 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
897 irq.vector);
898
b4f2225c 899 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
97222cc8
ED
900}
901
902static u32 apic_get_tmcct(struct kvm_lapic *apic)
903{
b682b814
MT
904 ktime_t remaining;
905 s64 ns;
9da8f4e8 906 u32 tmcct;
97222cc8
ED
907
908 ASSERT(apic != NULL);
909
9da8f4e8 910 /* if initial count is 0, current count should also be 0 */
b963a22e
AH
911 if (kvm_apic_get_reg(apic, APIC_TMICT) == 0 ||
912 apic->lapic_timer.period == 0)
9da8f4e8
KP
913 return 0;
914
ace15464 915 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
b682b814
MT
916 if (ktime_to_ns(remaining) < 0)
917 remaining = ktime_set(0, 0);
918
d3c7b77d
MT
919 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
920 tmcct = div64_u64(ns,
921 (APIC_BUS_CYCLE_NS * apic->divide_count));
97222cc8
ED
922
923 return tmcct;
924}
925
b209749f
AK
926static void __report_tpr_access(struct kvm_lapic *apic, bool write)
927{
928 struct kvm_vcpu *vcpu = apic->vcpu;
929 struct kvm_run *run = vcpu->run;
930
a8eeb04a 931 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
5fdbf976 932 run->tpr_access.rip = kvm_rip_read(vcpu);
b209749f
AK
933 run->tpr_access.is_write = write;
934}
935
936static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
937{
938 if (apic->vcpu->arch.tpr_access_reporting)
939 __report_tpr_access(apic, write);
940}
941
97222cc8
ED
942static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
943{
944 u32 val = 0;
945
946 if (offset >= LAPIC_MMIO_LENGTH)
947 return 0;
948
949 switch (offset) {
0105d1a5
GN
950 case APIC_ID:
951 if (apic_x2apic_mode(apic))
952 val = kvm_apic_id(apic);
953 else
954 val = kvm_apic_id(apic) << 24;
955 break;
97222cc8 956 case APIC_ARBPRI:
7712de87 957 apic_debug("Access APIC ARBPRI register which is for P6\n");
97222cc8
ED
958 break;
959
960 case APIC_TMCCT: /* Timer CCR */
a3e06bbe
LJ
961 if (apic_lvtt_tscdeadline(apic))
962 return 0;
963
97222cc8
ED
964 val = apic_get_tmcct(apic);
965 break;
4a4541a4
AK
966 case APIC_PROCPRI:
967 apic_update_ppr(apic);
c48f1496 968 val = kvm_apic_get_reg(apic, offset);
4a4541a4 969 break;
b209749f
AK
970 case APIC_TASKPRI:
971 report_tpr_access(apic, false);
972 /* fall thru */
97222cc8 973 default:
c48f1496 974 val = kvm_apic_get_reg(apic, offset);
97222cc8
ED
975 break;
976 }
977
978 return val;
979}
980
d76685c4
GH
981static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
982{
983 return container_of(dev, struct kvm_lapic, dev);
984}
985
0105d1a5
GN
986static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
987 void *data)
97222cc8 988{
97222cc8
ED
989 unsigned char alignment = offset & 0xf;
990 u32 result;
d5b0b5b1 991 /* this bitmask has a bit cleared for each reserved register */
0105d1a5 992 static const u64 rmask = 0x43ff01ffffffe70cULL;
97222cc8
ED
993
994 if ((alignment + len) > 4) {
4088bb3c
GN
995 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
996 offset, len);
0105d1a5 997 return 1;
97222cc8 998 }
0105d1a5
GN
999
1000 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
4088bb3c
GN
1001 apic_debug("KVM_APIC_READ: read reserved register %x\n",
1002 offset);
0105d1a5
GN
1003 return 1;
1004 }
1005
97222cc8
ED
1006 result = __apic_read(apic, offset & ~0xf);
1007
229456fc
MT
1008 trace_kvm_apic_read(offset, result);
1009
97222cc8
ED
1010 switch (len) {
1011 case 1:
1012 case 2:
1013 case 4:
1014 memcpy(data, (char *)&result + alignment, len);
1015 break;
1016 default:
1017 printk(KERN_ERR "Local APIC read with len = %x, "
1018 "should be 1,2, or 4 instead\n", len);
1019 break;
1020 }
bda9020e 1021 return 0;
97222cc8
ED
1022}
1023
0105d1a5
GN
1024static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1025{
c48f1496 1026 return kvm_apic_hw_enabled(apic) &&
0105d1a5
GN
1027 addr >= apic->base_address &&
1028 addr < apic->base_address + LAPIC_MMIO_LENGTH;
1029}
1030
1031static int apic_mmio_read(struct kvm_io_device *this,
1032 gpa_t address, int len, void *data)
1033{
1034 struct kvm_lapic *apic = to_lapic(this);
1035 u32 offset = address - apic->base_address;
1036
1037 if (!apic_mmio_in_range(apic, address))
1038 return -EOPNOTSUPP;
1039
1040 apic_reg_read(apic, offset, len, data);
1041
1042 return 0;
1043}
1044
97222cc8
ED
1045static void update_divide_count(struct kvm_lapic *apic)
1046{
1047 u32 tmp1, tmp2, tdcr;
1048
c48f1496 1049 tdcr = kvm_apic_get_reg(apic, APIC_TDCR);
97222cc8
ED
1050 tmp1 = tdcr & 0xf;
1051 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
d3c7b77d 1052 apic->divide_count = 0x1 << (tmp2 & 0x7);
97222cc8
ED
1053
1054 apic_debug("timer divide count is 0x%x\n",
9b5843dd 1055 apic->divide_count);
97222cc8
ED
1056}
1057
5d87db71
RK
1058static void apic_timer_expired(struct kvm_lapic *apic)
1059{
1060 struct kvm_vcpu *vcpu = apic->vcpu;
1061 wait_queue_head_t *q = &vcpu->wq;
1062
1063 /*
1064 * Note: KVM_REQ_PENDING_TIMER is implicitly checked in
1065 * vcpu_enter_guest.
1066 */
1067 if (atomic_read(&apic->lapic_timer.pending))
1068 return;
1069
1070 atomic_inc(&apic->lapic_timer.pending);
1071 /* FIXME: this code should not know anything about vcpus */
1072 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1073
1074 if (waitqueue_active(q))
1075 wake_up_interruptible(q);
1076}
1077
97222cc8
ED
1078static void start_apic_timer(struct kvm_lapic *apic)
1079{
a3e06bbe 1080 ktime_t now;
d3c7b77d 1081 atomic_set(&apic->lapic_timer.pending, 0);
0b975a3c 1082
a3e06bbe 1083 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
d5b0b5b1 1084 /* lapic timer in oneshot or periodic mode */
a3e06bbe 1085 now = apic->lapic_timer.timer.base->get_time();
c48f1496 1086 apic->lapic_timer.period = (u64)kvm_apic_get_reg(apic, APIC_TMICT)
a3e06bbe
LJ
1087 * APIC_BUS_CYCLE_NS * apic->divide_count;
1088
1089 if (!apic->lapic_timer.period)
1090 return;
1091 /*
1092 * Do not allow the guest to program periodic timers with small
1093 * interval, since the hrtimers are not throttled by the host
1094 * scheduler.
1095 */
1096 if (apic_lvtt_period(apic)) {
1097 s64 min_period = min_timer_period_us * 1000LL;
1098
1099 if (apic->lapic_timer.period < min_period) {
1100 pr_info_ratelimited(
1101 "kvm: vcpu %i: requested %lld ns "
1102 "lapic timer period limited to %lld ns\n",
1103 apic->vcpu->vcpu_id,
1104 apic->lapic_timer.period, min_period);
1105 apic->lapic_timer.period = min_period;
1106 }
9bc5791d 1107 }
0b975a3c 1108
a3e06bbe
LJ
1109 hrtimer_start(&apic->lapic_timer.timer,
1110 ktime_add_ns(now, apic->lapic_timer.period),
1111 HRTIMER_MODE_ABS);
97222cc8 1112
a3e06bbe 1113 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
97222cc8
ED
1114 PRIx64 ", "
1115 "timer initial count 0x%x, period %lldns, "
b8688d51 1116 "expire @ 0x%016" PRIx64 ".\n", __func__,
97222cc8 1117 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
c48f1496 1118 kvm_apic_get_reg(apic, APIC_TMICT),
d3c7b77d 1119 apic->lapic_timer.period,
97222cc8 1120 ktime_to_ns(ktime_add_ns(now,
d3c7b77d 1121 apic->lapic_timer.period)));
a3e06bbe
LJ
1122 } else if (apic_lvtt_tscdeadline(apic)) {
1123 /* lapic timer in tsc deadline mode */
1124 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
1125 u64 ns = 0;
1126 struct kvm_vcpu *vcpu = apic->vcpu;
cc578287 1127 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
a3e06bbe
LJ
1128 unsigned long flags;
1129
1130 if (unlikely(!tscdeadline || !this_tsc_khz))
1131 return;
1132
1133 local_irq_save(flags);
1134
1135 now = apic->lapic_timer.timer.base->get_time();
886b470c 1136 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu, native_read_tsc());
a3e06bbe
LJ
1137 if (likely(tscdeadline > guest_tsc)) {
1138 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1139 do_div(ns, this_tsc_khz);
1e0ad70c
RK
1140 hrtimer_start(&apic->lapic_timer.timer,
1141 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
1142 } else
1143 apic_timer_expired(apic);
a3e06bbe
LJ
1144
1145 local_irq_restore(flags);
1146 }
97222cc8
ED
1147}
1148
cc6e462c
JK
1149static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1150{
c48f1496 1151 int nmi_wd_enabled = apic_lvt_nmi_mode(kvm_apic_get_reg(apic, APIC_LVT0));
cc6e462c
JK
1152
1153 if (apic_lvt_nmi_mode(lvt0_val)) {
1154 if (!nmi_wd_enabled) {
1155 apic_debug("Receive NMI setting on APIC_LVT0 "
1156 "for cpu %d\n", apic->vcpu->vcpu_id);
1157 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
1158 }
1159 } else if (nmi_wd_enabled)
1160 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
1161}
1162
0105d1a5 1163static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
97222cc8 1164{
0105d1a5 1165 int ret = 0;
97222cc8 1166
0105d1a5 1167 trace_kvm_apic_write(reg, val);
97222cc8 1168
0105d1a5 1169 switch (reg) {
97222cc8 1170 case APIC_ID: /* Local APIC ID */
0105d1a5 1171 if (!apic_x2apic_mode(apic))
1e08ec4a 1172 kvm_apic_set_id(apic, val >> 24);
0105d1a5
GN
1173 else
1174 ret = 1;
97222cc8
ED
1175 break;
1176
1177 case APIC_TASKPRI:
b209749f 1178 report_tpr_access(apic, true);
97222cc8
ED
1179 apic_set_tpr(apic, val & 0xff);
1180 break;
1181
1182 case APIC_EOI:
1183 apic_set_eoi(apic);
1184 break;
1185
1186 case APIC_LDR:
0105d1a5 1187 if (!apic_x2apic_mode(apic))
1e08ec4a 1188 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
0105d1a5
GN
1189 else
1190 ret = 1;
97222cc8
ED
1191 break;
1192
1193 case APIC_DFR:
1e08ec4a 1194 if (!apic_x2apic_mode(apic)) {
0105d1a5 1195 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
1e08ec4a
GN
1196 recalculate_apic_map(apic->vcpu->kvm);
1197 } else
0105d1a5 1198 ret = 1;
97222cc8
ED
1199 break;
1200
fc61b800
GN
1201 case APIC_SPIV: {
1202 u32 mask = 0x3ff;
c48f1496 1203 if (kvm_apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
fc61b800 1204 mask |= APIC_SPIV_DIRECTED_EOI;
f8c1ea10 1205 apic_set_spiv(apic, val & mask);
97222cc8
ED
1206 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1207 int i;
1208 u32 lvt_val;
1209
1210 for (i = 0; i < APIC_LVT_NUM; i++) {
c48f1496 1211 lvt_val = kvm_apic_get_reg(apic,
97222cc8
ED
1212 APIC_LVTT + 0x10 * i);
1213 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
1214 lvt_val | APIC_LVT_MASKED);
1215 }
d3c7b77d 1216 atomic_set(&apic->lapic_timer.pending, 0);
97222cc8
ED
1217
1218 }
1219 break;
fc61b800 1220 }
97222cc8
ED
1221 case APIC_ICR:
1222 /* No delay here, so we always clear the pending bit */
1223 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
1224 apic_send_ipi(apic);
1225 break;
1226
1227 case APIC_ICR2:
0105d1a5
GN
1228 if (!apic_x2apic_mode(apic))
1229 val &= 0xff000000;
1230 apic_set_reg(apic, APIC_ICR2, val);
97222cc8
ED
1231 break;
1232
23930f95 1233 case APIC_LVT0:
cc6e462c 1234 apic_manage_nmi_watchdog(apic, val);
97222cc8
ED
1235 case APIC_LVTTHMR:
1236 case APIC_LVTPC:
97222cc8
ED
1237 case APIC_LVT1:
1238 case APIC_LVTERR:
1239 /* TODO: Check vector */
c48f1496 1240 if (!kvm_apic_sw_enabled(apic))
97222cc8
ED
1241 val |= APIC_LVT_MASKED;
1242
0105d1a5
GN
1243 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
1244 apic_set_reg(apic, reg, val);
97222cc8
ED
1245
1246 break;
1247
a323b409
RK
1248 case APIC_LVTT: {
1249 u32 timer_mode = val & apic->lapic_timer.timer_mode_mask;
1250
1251 if (apic->lapic_timer.timer_mode != timer_mode) {
1252 apic->lapic_timer.timer_mode = timer_mode;
a3e06bbe 1253 hrtimer_cancel(&apic->lapic_timer.timer);
a323b409 1254 }
a3e06bbe 1255
c48f1496 1256 if (!kvm_apic_sw_enabled(apic))
a3e06bbe
LJ
1257 val |= APIC_LVT_MASKED;
1258 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
1259 apic_set_reg(apic, APIC_LVTT, val);
1260 break;
a323b409 1261 }
a3e06bbe 1262
97222cc8 1263 case APIC_TMICT:
a3e06bbe
LJ
1264 if (apic_lvtt_tscdeadline(apic))
1265 break;
1266
d3c7b77d 1267 hrtimer_cancel(&apic->lapic_timer.timer);
97222cc8
ED
1268 apic_set_reg(apic, APIC_TMICT, val);
1269 start_apic_timer(apic);
0105d1a5 1270 break;
97222cc8
ED
1271
1272 case APIC_TDCR:
1273 if (val & 4)
7712de87 1274 apic_debug("KVM_WRITE:TDCR %x\n", val);
97222cc8
ED
1275 apic_set_reg(apic, APIC_TDCR, val);
1276 update_divide_count(apic);
1277 break;
1278
0105d1a5
GN
1279 case APIC_ESR:
1280 if (apic_x2apic_mode(apic) && val != 0) {
7712de87 1281 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
0105d1a5
GN
1282 ret = 1;
1283 }
1284 break;
1285
1286 case APIC_SELF_IPI:
1287 if (apic_x2apic_mode(apic)) {
1288 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1289 } else
1290 ret = 1;
1291 break;
97222cc8 1292 default:
0105d1a5 1293 ret = 1;
97222cc8
ED
1294 break;
1295 }
0105d1a5
GN
1296 if (ret)
1297 apic_debug("Local APIC Write to read-only register %x\n", reg);
1298 return ret;
1299}
1300
1301static int apic_mmio_write(struct kvm_io_device *this,
1302 gpa_t address, int len, const void *data)
1303{
1304 struct kvm_lapic *apic = to_lapic(this);
1305 unsigned int offset = address - apic->base_address;
1306 u32 val;
1307
1308 if (!apic_mmio_in_range(apic, address))
1309 return -EOPNOTSUPP;
1310
1311 /*
1312 * APIC register must be aligned on 128-bits boundary.
1313 * 32/64/128 bits registers must be accessed thru 32 bits.
1314 * Refer SDM 8.4.1
1315 */
1316 if (len != 4 || (offset & 0xf)) {
1317 /* Don't shout loud, $infamous_os would cause only noise. */
1318 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
756975bb 1319 return 0;
0105d1a5
GN
1320 }
1321
1322 val = *(u32*)data;
1323
1324 /* too common printing */
1325 if (offset != APIC_EOI)
1326 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1327 "0x%x\n", __func__, offset, len, val);
1328
1329 apic_reg_write(apic, offset & 0xff0, val);
1330
bda9020e 1331 return 0;
97222cc8
ED
1332}
1333
58fbbf26
KT
1334void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1335{
c48f1496 1336 if (kvm_vcpu_has_lapic(vcpu))
58fbbf26
KT
1337 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1338}
1339EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1340
83d4c286
YZ
1341/* emulate APIC access in a trap manner */
1342void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
1343{
1344 u32 val = 0;
1345
1346 /* hw has done the conditional check and inst decode */
1347 offset &= 0xff0;
1348
1349 apic_reg_read(vcpu->arch.apic, offset, 4, &val);
1350
1351 /* TODO: optimize to just emulate side effect w/o one more write */
1352 apic_reg_write(vcpu->arch.apic, offset, val);
1353}
1354EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
1355
d589444e 1356void kvm_free_lapic(struct kvm_vcpu *vcpu)
97222cc8 1357{
f8c1ea10
GN
1358 struct kvm_lapic *apic = vcpu->arch.apic;
1359
ad312c7c 1360 if (!vcpu->arch.apic)
97222cc8
ED
1361 return;
1362
f8c1ea10 1363 hrtimer_cancel(&apic->lapic_timer.timer);
97222cc8 1364
c5cc421b
GN
1365 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1366 static_key_slow_dec_deferred(&apic_hw_disabled);
1367
e462755c 1368 if (!apic->sw_enabled)
f8c1ea10 1369 static_key_slow_dec_deferred(&apic_sw_disabled);
97222cc8 1370
f8c1ea10
GN
1371 if (apic->regs)
1372 free_page((unsigned long)apic->regs);
1373
1374 kfree(apic);
97222cc8
ED
1375}
1376
1377/*
1378 *----------------------------------------------------------------------
1379 * LAPIC interface
1380 *----------------------------------------------------------------------
1381 */
1382
a3e06bbe
LJ
1383u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1384{
1385 struct kvm_lapic *apic = vcpu->arch.apic;
a3e06bbe 1386
c48f1496 1387 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
54e9818f 1388 apic_lvtt_period(apic))
a3e06bbe
LJ
1389 return 0;
1390
1391 return apic->lapic_timer.tscdeadline;
1392}
1393
1394void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1395{
1396 struct kvm_lapic *apic = vcpu->arch.apic;
a3e06bbe 1397
c48f1496 1398 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
54e9818f 1399 apic_lvtt_period(apic))
a3e06bbe
LJ
1400 return;
1401
1402 hrtimer_cancel(&apic->lapic_timer.timer);
1403 apic->lapic_timer.tscdeadline = data;
1404 start_apic_timer(apic);
1405}
1406
97222cc8
ED
1407void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1408{
ad312c7c 1409 struct kvm_lapic *apic = vcpu->arch.apic;
97222cc8 1410
c48f1496 1411 if (!kvm_vcpu_has_lapic(vcpu))
97222cc8 1412 return;
54e9818f 1413
b93463aa 1414 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
c48f1496 1415 | (kvm_apic_get_reg(apic, APIC_TASKPRI) & 4));
97222cc8
ED
1416}
1417
1418u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1419{
97222cc8
ED
1420 u64 tpr;
1421
c48f1496 1422 if (!kvm_vcpu_has_lapic(vcpu))
97222cc8 1423 return 0;
54e9818f 1424
c48f1496 1425 tpr = (u64) kvm_apic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
97222cc8
ED
1426
1427 return (tpr & 0xf0) >> 4;
1428}
1429
1430void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1431{
8d14695f 1432 u64 old_value = vcpu->arch.apic_base;
ad312c7c 1433 struct kvm_lapic *apic = vcpu->arch.apic;
97222cc8
ED
1434
1435 if (!apic) {
1436 value |= MSR_IA32_APICBASE_BSP;
ad312c7c 1437 vcpu->arch.apic_base = value;
97222cc8
ED
1438 return;
1439 }
c5af89b6 1440
e66d2ae7
JK
1441 if (!kvm_vcpu_is_bsp(apic->vcpu))
1442 value &= ~MSR_IA32_APICBASE_BSP;
1443 vcpu->arch.apic_base = value;
1444
c5cc421b 1445 /* update jump label if enable bit changes */
0dce7cd6 1446 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
c5cc421b
GN
1447 if (value & MSR_IA32_APICBASE_ENABLE)
1448 static_key_slow_dec_deferred(&apic_hw_disabled);
1449 else
1450 static_key_slow_inc(&apic_hw_disabled.key);
1e08ec4a 1451 recalculate_apic_map(vcpu->kvm);
c5cc421b
GN
1452 }
1453
8d14695f
YZ
1454 if ((old_value ^ value) & X2APIC_ENABLE) {
1455 if (value & X2APIC_ENABLE) {
1456 u32 id = kvm_apic_id(apic);
1457 u32 ldr = ((id >> 4) << 16) | (1 << (id & 0xf));
1458 kvm_apic_set_ldr(apic, ldr);
1459 kvm_x86_ops->set_virtual_x2apic_mode(vcpu, true);
1460 } else
1461 kvm_x86_ops->set_virtual_x2apic_mode(vcpu, false);
0105d1a5 1462 }
8d14695f 1463
ad312c7c 1464 apic->base_address = apic->vcpu->arch.apic_base &
97222cc8
ED
1465 MSR_IA32_APICBASE_BASE;
1466
db324fe6
NA
1467 if ((value & MSR_IA32_APICBASE_ENABLE) &&
1468 apic->base_address != APIC_DEFAULT_PHYS_BASE)
1469 pr_warn_once("APIC base relocation is unsupported by KVM");
1470
97222cc8
ED
1471 /* with FSB delivery interrupt, we can restart APIC functionality */
1472 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
ad312c7c 1473 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
97222cc8
ED
1474
1475}
1476
c5ec1534 1477void kvm_lapic_reset(struct kvm_vcpu *vcpu)
97222cc8
ED
1478{
1479 struct kvm_lapic *apic;
1480 int i;
1481
b8688d51 1482 apic_debug("%s\n", __func__);
97222cc8
ED
1483
1484 ASSERT(vcpu);
ad312c7c 1485 apic = vcpu->arch.apic;
97222cc8
ED
1486 ASSERT(apic != NULL);
1487
1488 /* Stop the timer in case it's a reset to an active apic */
d3c7b77d 1489 hrtimer_cancel(&apic->lapic_timer.timer);
97222cc8 1490
1e08ec4a 1491 kvm_apic_set_id(apic, vcpu->vcpu_id);
fc61b800 1492 kvm_apic_set_version(apic->vcpu);
97222cc8
ED
1493
1494 for (i = 0; i < APIC_LVT_NUM; i++)
1495 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
a323b409 1496 apic->lapic_timer.timer_mode = 0;
40487c68
QH
1497 apic_set_reg(apic, APIC_LVT0,
1498 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
97222cc8
ED
1499
1500 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
f8c1ea10 1501 apic_set_spiv(apic, 0xff);
97222cc8 1502 apic_set_reg(apic, APIC_TASKPRI, 0);
1e08ec4a 1503 kvm_apic_set_ldr(apic, 0);
97222cc8
ED
1504 apic_set_reg(apic, APIC_ESR, 0);
1505 apic_set_reg(apic, APIC_ICR, 0);
1506 apic_set_reg(apic, APIC_ICR2, 0);
1507 apic_set_reg(apic, APIC_TDCR, 0);
1508 apic_set_reg(apic, APIC_TMICT, 0);
1509 for (i = 0; i < 8; i++) {
1510 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1511 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1512 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1513 }
c7c9c56c
YZ
1514 apic->irr_pending = kvm_apic_vid_enabled(vcpu->kvm);
1515 apic->isr_count = kvm_apic_vid_enabled(vcpu->kvm);
8680b94b 1516 apic->highest_isr_cache = -1;
b33ac88b 1517 update_divide_count(apic);
d3c7b77d 1518 atomic_set(&apic->lapic_timer.pending, 0);
c5af89b6 1519 if (kvm_vcpu_is_bsp(vcpu))
5dbc8f3f
GN
1520 kvm_lapic_set_base(vcpu,
1521 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
ae7a2a3f 1522 vcpu->arch.pv_eoi.msr_val = 0;
97222cc8
ED
1523 apic_update_ppr(apic);
1524
e1035715 1525 vcpu->arch.apic_arb_prio = 0;
41383771 1526 vcpu->arch.apic_attention = 0;
e1035715 1527
98eff52a 1528 apic_debug("%s: vcpu=%p, id=%d, base_msr="
b8688d51 1529 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
97222cc8 1530 vcpu, kvm_apic_id(apic),
ad312c7c 1531 vcpu->arch.apic_base, apic->base_address);
97222cc8
ED
1532}
1533
97222cc8
ED
1534/*
1535 *----------------------------------------------------------------------
1536 * timer interface
1537 *----------------------------------------------------------------------
1538 */
1b9778da 1539
2a6eac96 1540static bool lapic_is_periodic(struct kvm_lapic *apic)
97222cc8 1541{
d3c7b77d 1542 return apic_lvtt_period(apic);
97222cc8
ED
1543}
1544
3d80840d
MT
1545int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1546{
54e9818f 1547 struct kvm_lapic *apic = vcpu->arch.apic;
3d80840d 1548
c48f1496 1549 if (kvm_vcpu_has_lapic(vcpu) && apic_enabled(apic) &&
54e9818f
GN
1550 apic_lvt_enabled(apic, APIC_LVTT))
1551 return atomic_read(&apic->lapic_timer.pending);
3d80840d
MT
1552
1553 return 0;
1554}
1555
89342082 1556int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
1b9778da 1557{
c48f1496 1558 u32 reg = kvm_apic_get_reg(apic, lvt_type);
23930f95 1559 int vector, mode, trig_mode;
23930f95 1560
c48f1496 1561 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
23930f95
JK
1562 vector = reg & APIC_VECTOR_MASK;
1563 mode = reg & APIC_MODE_MASK;
1564 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
b4f2225c
YZ
1565 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
1566 NULL);
23930f95
JK
1567 }
1568 return 0;
1569}
1b9778da 1570
8fdb2351 1571void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
23930f95 1572{
8fdb2351
JK
1573 struct kvm_lapic *apic = vcpu->arch.apic;
1574
1575 if (apic)
1576 kvm_apic_local_deliver(apic, APIC_LVT0);
1b9778da
ED
1577}
1578
d76685c4
GH
1579static const struct kvm_io_device_ops apic_mmio_ops = {
1580 .read = apic_mmio_read,
1581 .write = apic_mmio_write,
d76685c4
GH
1582};
1583
e9d90d47
AK
1584static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1585{
1586 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
2a6eac96 1587 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
e9d90d47 1588
5d87db71 1589 apic_timer_expired(apic);
e9d90d47 1590
2a6eac96 1591 if (lapic_is_periodic(apic)) {
e9d90d47
AK
1592 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1593 return HRTIMER_RESTART;
1594 } else
1595 return HRTIMER_NORESTART;
1596}
1597
97222cc8
ED
1598int kvm_create_lapic(struct kvm_vcpu *vcpu)
1599{
1600 struct kvm_lapic *apic;
1601
1602 ASSERT(vcpu != NULL);
1603 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1604
1605 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1606 if (!apic)
1607 goto nomem;
1608
ad312c7c 1609 vcpu->arch.apic = apic;
97222cc8 1610
afc20184
TY
1611 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1612 if (!apic->regs) {
97222cc8
ED
1613 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1614 vcpu->vcpu_id);
d589444e 1615 goto nomem_free_apic;
97222cc8 1616 }
97222cc8
ED
1617 apic->vcpu = vcpu;
1618
d3c7b77d
MT
1619 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1620 HRTIMER_MODE_ABS);
e9d90d47 1621 apic->lapic_timer.timer.function = apic_timer_fn;
d3c7b77d 1622
c5cc421b
GN
1623 /*
1624 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1625 * thinking that APIC satet has changed.
1626 */
1627 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
6aed64a8
GN
1628 kvm_lapic_set_base(vcpu,
1629 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
97222cc8 1630
f8c1ea10 1631 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
c5ec1534 1632 kvm_lapic_reset(vcpu);
d76685c4 1633 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
97222cc8
ED
1634
1635 return 0;
d589444e
RR
1636nomem_free_apic:
1637 kfree(apic);
97222cc8 1638nomem:
97222cc8
ED
1639 return -ENOMEM;
1640}
97222cc8
ED
1641
1642int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1643{
ad312c7c 1644 struct kvm_lapic *apic = vcpu->arch.apic;
97222cc8
ED
1645 int highest_irr;
1646
c48f1496 1647 if (!kvm_vcpu_has_lapic(vcpu) || !apic_enabled(apic))
97222cc8
ED
1648 return -1;
1649
6e5d865c 1650 apic_update_ppr(apic);
97222cc8
ED
1651 highest_irr = apic_find_highest_irr(apic);
1652 if ((highest_irr == -1) ||
c48f1496 1653 ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI)))
97222cc8
ED
1654 return -1;
1655 return highest_irr;
1656}
1657
40487c68
QH
1658int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1659{
c48f1496 1660 u32 lvt0 = kvm_apic_get_reg(vcpu->arch.apic, APIC_LVT0);
40487c68
QH
1661 int r = 0;
1662
c48f1496 1663 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
e7dca5c0
CL
1664 r = 1;
1665 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1666 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1667 r = 1;
40487c68
QH
1668 return r;
1669}
1670
1b9778da
ED
1671void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1672{
ad312c7c 1673 struct kvm_lapic *apic = vcpu->arch.apic;
1b9778da 1674
c48f1496 1675 if (!kvm_vcpu_has_lapic(vcpu))
54e9818f
GN
1676 return;
1677
1678 if (atomic_read(&apic->lapic_timer.pending) > 0) {
f1ed0450 1679 kvm_apic_local_deliver(apic, APIC_LVTT);
fae0ba21
NA
1680 if (apic_lvtt_tscdeadline(apic))
1681 apic->lapic_timer.tscdeadline = 0;
f1ed0450 1682 atomic_set(&apic->lapic_timer.pending, 0);
1b9778da
ED
1683 }
1684}
1685
97222cc8
ED
1686int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1687{
1688 int vector = kvm_apic_has_interrupt(vcpu);
ad312c7c 1689 struct kvm_lapic *apic = vcpu->arch.apic;
97222cc8
ED
1690
1691 if (vector == -1)
1692 return -1;
1693
56cc2406
WL
1694 /*
1695 * We get here even with APIC virtualization enabled, if doing
1696 * nested virtualization and L1 runs with the "acknowledge interrupt
1697 * on exit" mode. Then we cannot inject the interrupt via RVI,
1698 * because the process would deliver it through the IDT.
1699 */
1700
8680b94b 1701 apic_set_isr(vector, apic);
97222cc8
ED
1702 apic_update_ppr(apic);
1703 apic_clear_irr(vector, apic);
1704 return vector;
1705}
96ad2cc6 1706
64eb0620
GN
1707void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
1708 struct kvm_lapic_state *s)
96ad2cc6 1709{
ad312c7c 1710 struct kvm_lapic *apic = vcpu->arch.apic;
96ad2cc6 1711
5dbc8f3f 1712 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
64eb0620
GN
1713 /* set SPIV separately to get count of SW disabled APICs right */
1714 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
1715 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
1e08ec4a
GN
1716 /* call kvm_apic_set_id() to put apic into apic_map */
1717 kvm_apic_set_id(apic, kvm_apic_id(apic));
fc61b800
GN
1718 kvm_apic_set_version(vcpu);
1719
96ad2cc6 1720 apic_update_ppr(apic);
d3c7b77d 1721 hrtimer_cancel(&apic->lapic_timer.timer);
96ad2cc6
ED
1722 update_divide_count(apic);
1723 start_apic_timer(apic);
6e24a6ef 1724 apic->irr_pending = true;
c7c9c56c
YZ
1725 apic->isr_count = kvm_apic_vid_enabled(vcpu->kvm) ?
1726 1 : count_vectors(apic->regs + APIC_ISR);
8680b94b 1727 apic->highest_isr_cache = -1;
4114c27d
WW
1728 if (kvm_x86_ops->hwapic_irr_update)
1729 kvm_x86_ops->hwapic_irr_update(vcpu,
1730 apic_find_highest_irr(apic));
c7c9c56c 1731 kvm_x86_ops->hwapic_isr_update(vcpu->kvm, apic_find_highest_isr(apic));
3842d135 1732 kvm_make_request(KVM_REQ_EVENT, vcpu);
10606919 1733 kvm_rtc_eoi_tracking_restore_one(vcpu);
96ad2cc6 1734}
a3d7f85f 1735
2f52d58c 1736void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
a3d7f85f 1737{
a3d7f85f
ED
1738 struct hrtimer *timer;
1739
c48f1496 1740 if (!kvm_vcpu_has_lapic(vcpu))
a3d7f85f
ED
1741 return;
1742
54e9818f 1743 timer = &vcpu->arch.apic->lapic_timer.timer;
a3d7f85f 1744 if (hrtimer_cancel(timer))
beb20d52 1745 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
a3d7f85f 1746}
b93463aa 1747
ae7a2a3f
MT
1748/*
1749 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1750 *
1751 * Detect whether guest triggered PV EOI since the
1752 * last entry. If yes, set EOI on guests's behalf.
1753 * Clear PV EOI in guest memory in any case.
1754 */
1755static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1756 struct kvm_lapic *apic)
1757{
1758 bool pending;
1759 int vector;
1760 /*
1761 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1762 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1763 *
1764 * KVM_APIC_PV_EOI_PENDING is unset:
1765 * -> host disabled PV EOI.
1766 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1767 * -> host enabled PV EOI, guest did not execute EOI yet.
1768 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1769 * -> host enabled PV EOI, guest executed EOI.
1770 */
1771 BUG_ON(!pv_eoi_enabled(vcpu));
1772 pending = pv_eoi_get_pending(vcpu);
1773 /*
1774 * Clear pending bit in any case: it will be set again on vmentry.
1775 * While this might not be ideal from performance point of view,
1776 * this makes sure pv eoi is only enabled when we know it's safe.
1777 */
1778 pv_eoi_clr_pending(vcpu);
1779 if (pending)
1780 return;
1781 vector = apic_set_eoi(apic);
1782 trace_kvm_pv_eoi(apic, vector);
1783}
1784
b93463aa
AK
1785void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1786{
1787 u32 data;
b93463aa 1788
ae7a2a3f
MT
1789 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1790 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1791
41383771 1792 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
b93463aa
AK
1793 return;
1794
fda4e2e8
AH
1795 kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
1796 sizeof(u32));
b93463aa
AK
1797
1798 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1799}
1800
ae7a2a3f
MT
1801/*
1802 * apic_sync_pv_eoi_to_guest - called before vmentry
1803 *
1804 * Detect whether it's safe to enable PV EOI and
1805 * if yes do so.
1806 */
1807static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1808 struct kvm_lapic *apic)
1809{
1810 if (!pv_eoi_enabled(vcpu) ||
1811 /* IRR set or many bits in ISR: could be nested. */
1812 apic->irr_pending ||
1813 /* Cache not set: could be safe but we don't bother. */
1814 apic->highest_isr_cache == -1 ||
1815 /* Need EOI to update ioapic. */
1816 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1817 /*
1818 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1819 * so we need not do anything here.
1820 */
1821 return;
1822 }
1823
1824 pv_eoi_set_pending(apic->vcpu);
1825}
1826
b93463aa
AK
1827void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1828{
1829 u32 data, tpr;
1830 int max_irr, max_isr;
ae7a2a3f 1831 struct kvm_lapic *apic = vcpu->arch.apic;
b93463aa 1832
ae7a2a3f
MT
1833 apic_sync_pv_eoi_to_guest(vcpu, apic);
1834
41383771 1835 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
b93463aa
AK
1836 return;
1837
c48f1496 1838 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI) & 0xff;
b93463aa
AK
1839 max_irr = apic_find_highest_irr(apic);
1840 if (max_irr < 0)
1841 max_irr = 0;
1842 max_isr = apic_find_highest_isr(apic);
1843 if (max_isr < 0)
1844 max_isr = 0;
1845 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1846
fda4e2e8
AH
1847 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
1848 sizeof(u32));
b93463aa
AK
1849}
1850
fda4e2e8 1851int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
b93463aa 1852{
fda4e2e8
AH
1853 if (vapic_addr) {
1854 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
1855 &vcpu->arch.apic->vapic_cache,
1856 vapic_addr, sizeof(u32)))
1857 return -EINVAL;
41383771 1858 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
fda4e2e8 1859 } else {
41383771 1860 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
fda4e2e8
AH
1861 }
1862
1863 vcpu->arch.apic->vapic_addr = vapic_addr;
1864 return 0;
b93463aa 1865}
0105d1a5
GN
1866
1867int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1868{
1869 struct kvm_lapic *apic = vcpu->arch.apic;
1870 u32 reg = (msr - APIC_BASE_MSR) << 4;
1871
1872 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1873 return 1;
1874
1875 /* if this is ICR write vector before command */
1876 if (msr == 0x830)
1877 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1878 return apic_reg_write(apic, reg, (u32)data);
1879}
1880
1881int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1882{
1883 struct kvm_lapic *apic = vcpu->arch.apic;
1884 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1885
1886 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1887 return 1;
1888
1889 if (apic_reg_read(apic, reg, 4, &low))
1890 return 1;
1891 if (msr == 0x830)
1892 apic_reg_read(apic, APIC_ICR2, 4, &high);
1893
1894 *data = (((u64)high) << 32) | low;
1895
1896 return 0;
1897}
10388a07
GN
1898
1899int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1900{
1901 struct kvm_lapic *apic = vcpu->arch.apic;
1902
c48f1496 1903 if (!kvm_vcpu_has_lapic(vcpu))
10388a07
GN
1904 return 1;
1905
1906 /* if this is ICR write vector before command */
1907 if (reg == APIC_ICR)
1908 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1909 return apic_reg_write(apic, reg, (u32)data);
1910}
1911
1912int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1913{
1914 struct kvm_lapic *apic = vcpu->arch.apic;
1915 u32 low, high = 0;
1916
c48f1496 1917 if (!kvm_vcpu_has_lapic(vcpu))
10388a07
GN
1918 return 1;
1919
1920 if (apic_reg_read(apic, reg, 4, &low))
1921 return 1;
1922 if (reg == APIC_ICR)
1923 apic_reg_read(apic, APIC_ICR2, 4, &high);
1924
1925 *data = (((u64)high) << 32) | low;
1926
1927 return 0;
1928}
ae7a2a3f
MT
1929
1930int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1931{
1932 u64 addr = data & ~KVM_MSR_ENABLED;
1933 if (!IS_ALIGNED(addr, 4))
1934 return 1;
1935
1936 vcpu->arch.pv_eoi.msr_val = data;
1937 if (!pv_eoi_enabled(vcpu))
1938 return 0;
1939 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
8f964525 1940 addr, sizeof(u8));
ae7a2a3f 1941}
c5cc421b 1942
66450a21
JK
1943void kvm_apic_accept_events(struct kvm_vcpu *vcpu)
1944{
1945 struct kvm_lapic *apic = vcpu->arch.apic;
1946 unsigned int sipi_vector;
299018f4 1947 unsigned long pe;
66450a21 1948
299018f4 1949 if (!kvm_vcpu_has_lapic(vcpu) || !apic->pending_events)
66450a21
JK
1950 return;
1951
299018f4
GN
1952 pe = xchg(&apic->pending_events, 0);
1953
1954 if (test_bit(KVM_APIC_INIT, &pe)) {
66450a21
JK
1955 kvm_lapic_reset(vcpu);
1956 kvm_vcpu_reset(vcpu);
1957 if (kvm_vcpu_is_bsp(apic->vcpu))
1958 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
1959 else
1960 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
1961 }
299018f4 1962 if (test_bit(KVM_APIC_SIPI, &pe) &&
66450a21
JK
1963 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
1964 /* evaluate pending_events before reading the vector */
1965 smp_rmb();
1966 sipi_vector = apic->sipi_vector;
98eff52a 1967 apic_debug("vcpu %d received sipi with vector # %x\n",
66450a21
JK
1968 vcpu->vcpu_id, sipi_vector);
1969 kvm_vcpu_deliver_sipi_vector(vcpu, sipi_vector);
1970 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
1971 }
1972}
1973
c5cc421b
GN
1974void kvm_lapic_init(void)
1975{
1976 /* do not patch jump label more than once per second */
1977 jump_label_rate_limit(&apic_hw_disabled, HZ);
f8c1ea10 1978 jump_label_rate_limit(&apic_sw_disabled, HZ);
c5cc421b 1979}
This page took 0.721645 seconds and 5 git commands to generate.