KVM: MMU: remove unnecessary check
[linux-2.6-block.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
69
70#define VEC_POS(v) ((v) & (32 - 1))
71#define REG_POS(v) (((v) >> 5) << 4)
ad312c7c 72
9bc5791d
JK
73static unsigned int min_timer_period_us = 500;
74module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
75
97222cc8
ED
76static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
77{
78 *((u32 *) (apic->regs + reg_off)) = val;
79}
80
81static inline int apic_test_and_set_vector(int vec, void *bitmap)
82{
83 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
84}
85
86static inline int apic_test_and_clear_vector(int vec, void *bitmap)
87{
88 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
89}
90
a0c9a822
MT
91static inline int apic_test_vector(int vec, void *bitmap)
92{
93 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
94}
95
97222cc8
ED
96static inline void apic_set_vector(int vec, void *bitmap)
97{
98 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
99}
100
101static inline void apic_clear_vector(int vec, void *bitmap)
102{
103 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
104}
105
8680b94b
MT
106static inline int __apic_test_and_set_vector(int vec, void *bitmap)
107{
108 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
109}
110
111static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
112{
113 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
114}
115
c5cc421b 116struct static_key_deferred apic_hw_disabled __read_mostly;
f8c1ea10
GN
117struct static_key_deferred apic_sw_disabled __read_mostly;
118
119static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
120{
c48f1496 121 if ((kvm_apic_get_reg(apic, APIC_SPIV) ^ val) & APIC_SPIV_APIC_ENABLED) {
f8c1ea10
GN
122 if (val & APIC_SPIV_APIC_ENABLED)
123 static_key_slow_dec_deferred(&apic_sw_disabled);
124 else
125 static_key_slow_inc(&apic_sw_disabled.key);
126 }
127 apic_set_reg(apic, APIC_SPIV, val);
128}
129
97222cc8
ED
130static inline int apic_enabled(struct kvm_lapic *apic)
131{
c48f1496 132 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
54e9818f
GN
133}
134
97222cc8
ED
135#define LVT_MASK \
136 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
137
138#define LINT_MASK \
139 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
140 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
141
142static inline int kvm_apic_id(struct kvm_lapic *apic)
143{
c48f1496 144 return (kvm_apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
97222cc8
ED
145}
146
147static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
148{
c48f1496 149 return !(kvm_apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
97222cc8
ED
150}
151
152static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
153{
c48f1496 154 return kvm_apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
97222cc8
ED
155}
156
a3e06bbe
LJ
157static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
158{
c48f1496 159 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
a3e06bbe
LJ
160 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
161}
162
97222cc8
ED
163static inline int apic_lvtt_period(struct kvm_lapic *apic)
164{
c48f1496 165 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
a3e06bbe
LJ
166 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
167}
168
169static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
170{
c48f1496 171 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
a3e06bbe
LJ
172 apic->lapic_timer.timer_mode_mask) ==
173 APIC_LVT_TIMER_TSCDEADLINE);
97222cc8
ED
174}
175
cc6e462c
JK
176static inline int apic_lvt_nmi_mode(u32 lvt_val)
177{
178 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
179}
180
fc61b800
GN
181void kvm_apic_set_version(struct kvm_vcpu *vcpu)
182{
183 struct kvm_lapic *apic = vcpu->arch.apic;
184 struct kvm_cpuid_entry2 *feat;
185 u32 v = APIC_VERSION;
186
c48f1496 187 if (!kvm_vcpu_has_lapic(vcpu))
fc61b800
GN
188 return;
189
190 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
191 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
192 v |= APIC_LVR_DIRECTED_EOI;
193 apic_set_reg(apic, APIC_LVR, v);
194}
195
0105d1a5
GN
196static inline int apic_x2apic_mode(struct kvm_lapic *apic)
197{
198 return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
199}
200
f1d24831 201static const unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
a3e06bbe 202 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
97222cc8
ED
203 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
204 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
205 LINT_MASK, LINT_MASK, /* LVT0-1 */
206 LVT_MASK /* LVTERR */
207};
208
209static int find_highest_vector(void *bitmap)
210{
211 u32 *word = bitmap;
212 int word_offset = MAX_APIC_VECTOR >> 5;
213
214 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
215 continue;
216
217 if (likely(!word_offset && !word[0]))
218 return -1;
219 else
220 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
221}
222
8680b94b
MT
223static u8 count_vectors(void *bitmap)
224{
225 u32 *word = bitmap;
226 int word_offset;
227 u8 count = 0;
228 for (word_offset = 0; word_offset < MAX_APIC_VECTOR >> 5; ++word_offset)
229 count += hweight32(word[word_offset << 2]);
230 return count;
231}
232
97222cc8
ED
233static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
234{
33e4c686 235 apic->irr_pending = true;
97222cc8
ED
236 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
237}
238
33e4c686 239static inline int apic_search_irr(struct kvm_lapic *apic)
97222cc8 240{
33e4c686 241 return find_highest_vector(apic->regs + APIC_IRR);
97222cc8
ED
242}
243
244static inline int apic_find_highest_irr(struct kvm_lapic *apic)
245{
246 int result;
247
33e4c686
GN
248 if (!apic->irr_pending)
249 return -1;
250
251 result = apic_search_irr(apic);
97222cc8
ED
252 ASSERT(result == -1 || result >= 16);
253
254 return result;
255}
256
33e4c686
GN
257static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
258{
259 apic->irr_pending = false;
260 apic_clear_vector(vec, apic->regs + APIC_IRR);
261 if (apic_search_irr(apic) != -1)
262 apic->irr_pending = true;
263}
264
8680b94b
MT
265static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
266{
267 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
268 ++apic->isr_count;
269 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
270 /*
271 * ISR (in service register) bit is set when injecting an interrupt.
272 * The highest vector is injected. Thus the latest bit set matches
273 * the highest bit in ISR.
274 */
275 apic->highest_isr_cache = vec;
276}
277
278static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
279{
280 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
281 --apic->isr_count;
282 BUG_ON(apic->isr_count < 0);
283 apic->highest_isr_cache = -1;
284}
285
6e5d865c
YS
286int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
287{
6e5d865c
YS
288 int highest_irr;
289
33e4c686
GN
290 /* This may race with setting of irr in __apic_accept_irq() and
291 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
292 * will cause vmexit immediately and the value will be recalculated
293 * on the next vmentry.
294 */
c48f1496 295 if (!kvm_vcpu_has_lapic(vcpu))
6e5d865c 296 return 0;
54e9818f 297 highest_irr = apic_find_highest_irr(vcpu->arch.apic);
6e5d865c
YS
298
299 return highest_irr;
300}
6e5d865c 301
6da7e3f6
GN
302static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
303 int vector, int level, int trig_mode);
304
58c2dde1 305int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
97222cc8 306{
ad312c7c 307 struct kvm_lapic *apic = vcpu->arch.apic;
8be5453f 308
58c2dde1
GN
309 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
310 irq->level, irq->trig_mode);
97222cc8
ED
311}
312
ae7a2a3f
MT
313static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
314{
315
316 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
317 sizeof(val));
318}
319
320static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
321{
322
323 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
324 sizeof(*val));
325}
326
327static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
328{
329 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
330}
331
332static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
333{
334 u8 val;
335 if (pv_eoi_get_user(vcpu, &val) < 0)
336 apic_debug("Can't read EOI MSR value: 0x%llx\n",
337 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
338 return val & 0x1;
339}
340
341static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
342{
343 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
344 apic_debug("Can't set EOI MSR value: 0x%llx\n",
345 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
346 return;
347 }
348 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
349}
350
351static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
352{
353 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
354 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
355 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
356 return;
357 }
358 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
359}
360
97222cc8
ED
361static inline int apic_find_highest_isr(struct kvm_lapic *apic)
362{
363 int result;
8680b94b
MT
364 if (!apic->isr_count)
365 return -1;
366 if (likely(apic->highest_isr_cache != -1))
367 return apic->highest_isr_cache;
97222cc8
ED
368
369 result = find_highest_vector(apic->regs + APIC_ISR);
370 ASSERT(result == -1 || result >= 16);
371
372 return result;
373}
374
375static void apic_update_ppr(struct kvm_lapic *apic)
376{
3842d135 377 u32 tpr, isrv, ppr, old_ppr;
97222cc8
ED
378 int isr;
379
c48f1496
GN
380 old_ppr = kvm_apic_get_reg(apic, APIC_PROCPRI);
381 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI);
97222cc8
ED
382 isr = apic_find_highest_isr(apic);
383 isrv = (isr != -1) ? isr : 0;
384
385 if ((tpr & 0xf0) >= (isrv & 0xf0))
386 ppr = tpr & 0xff;
387 else
388 ppr = isrv & 0xf0;
389
390 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
391 apic, ppr, isr, isrv);
392
3842d135
AK
393 if (old_ppr != ppr) {
394 apic_set_reg(apic, APIC_PROCPRI, ppr);
83bcacb1
AK
395 if (ppr < old_ppr)
396 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
3842d135 397 }
97222cc8
ED
398}
399
400static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
401{
402 apic_set_reg(apic, APIC_TASKPRI, tpr);
403 apic_update_ppr(apic);
404}
405
406int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
407{
343f94fe 408 return dest == 0xff || kvm_apic_id(apic) == dest;
97222cc8
ED
409}
410
411int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
412{
413 int result = 0;
0105d1a5
GN
414 u32 logical_id;
415
416 if (apic_x2apic_mode(apic)) {
c48f1496 417 logical_id = kvm_apic_get_reg(apic, APIC_LDR);
0105d1a5
GN
418 return logical_id & mda;
419 }
97222cc8 420
c48f1496 421 logical_id = GET_APIC_LOGICAL_ID(kvm_apic_get_reg(apic, APIC_LDR));
97222cc8 422
c48f1496 423 switch (kvm_apic_get_reg(apic, APIC_DFR)) {
97222cc8
ED
424 case APIC_DFR_FLAT:
425 if (logical_id & mda)
426 result = 1;
427 break;
428 case APIC_DFR_CLUSTER:
429 if (((logical_id >> 4) == (mda >> 0x4))
430 && (logical_id & mda & 0xf))
431 result = 1;
432 break;
433 default:
7712de87 434 apic_debug("Bad DFR vcpu %d: %08x\n",
c48f1496 435 apic->vcpu->vcpu_id, kvm_apic_get_reg(apic, APIC_DFR));
97222cc8
ED
436 break;
437 }
438
439 return result;
440}
441
343f94fe 442int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
97222cc8
ED
443 int short_hand, int dest, int dest_mode)
444{
445 int result = 0;
ad312c7c 446 struct kvm_lapic *target = vcpu->arch.apic;
97222cc8
ED
447
448 apic_debug("target %p, source %p, dest 0x%x, "
343f94fe 449 "dest_mode 0x%x, short_hand 0x%x\n",
97222cc8
ED
450 target, source, dest, dest_mode, short_hand);
451
bd371396 452 ASSERT(target);
97222cc8
ED
453 switch (short_hand) {
454 case APIC_DEST_NOSHORT:
343f94fe 455 if (dest_mode == 0)
97222cc8 456 /* Physical mode. */
343f94fe
GN
457 result = kvm_apic_match_physical_addr(target, dest);
458 else
97222cc8
ED
459 /* Logical mode. */
460 result = kvm_apic_match_logical_addr(target, dest);
461 break;
462 case APIC_DEST_SELF:
343f94fe 463 result = (target == source);
97222cc8
ED
464 break;
465 case APIC_DEST_ALLINC:
466 result = 1;
467 break;
468 case APIC_DEST_ALLBUT:
343f94fe 469 result = (target != source);
97222cc8
ED
470 break;
471 default:
7712de87
JK
472 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
473 short_hand);
97222cc8
ED
474 break;
475 }
476
477 return result;
478}
479
480/*
481 * Add a pending IRQ into lapic.
482 * Return 1 if successfully added and 0 if discarded.
483 */
484static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
485 int vector, int level, int trig_mode)
486{
6da7e3f6 487 int result = 0;
c5ec1534 488 struct kvm_vcpu *vcpu = apic->vcpu;
97222cc8
ED
489
490 switch (delivery_mode) {
97222cc8 491 case APIC_DM_LOWEST:
e1035715
GN
492 vcpu->arch.apic_arb_prio++;
493 case APIC_DM_FIXED:
97222cc8
ED
494 /* FIXME add logic for vcpu on reset */
495 if (unlikely(!apic_enabled(apic)))
496 break;
497
a5d36f82
AK
498 if (trig_mode) {
499 apic_debug("level trig mode for vector %d", vector);
500 apic_set_vector(vector, apic->regs + APIC_TMR);
501 } else
502 apic_clear_vector(vector, apic->regs + APIC_TMR);
503
6da7e3f6 504 result = !apic_test_and_set_irr(vector, apic);
1000ff8d 505 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
4da74896 506 trig_mode, vector, !result);
6da7e3f6
GN
507 if (!result) {
508 if (trig_mode)
509 apic_debug("level trig mode repeatedly for "
510 "vector %d", vector);
97222cc8
ED
511 break;
512 }
513
3842d135 514 kvm_make_request(KVM_REQ_EVENT, vcpu);
d7690175 515 kvm_vcpu_kick(vcpu);
97222cc8
ED
516 break;
517
518 case APIC_DM_REMRD:
7712de87 519 apic_debug("Ignoring delivery mode 3\n");
97222cc8
ED
520 break;
521
522 case APIC_DM_SMI:
7712de87 523 apic_debug("Ignoring guest SMI\n");
97222cc8 524 break;
3419ffc8 525
97222cc8 526 case APIC_DM_NMI:
6da7e3f6 527 result = 1;
3419ffc8 528 kvm_inject_nmi(vcpu);
26df99c6 529 kvm_vcpu_kick(vcpu);
97222cc8
ED
530 break;
531
532 case APIC_DM_INIT:
a52315e1 533 if (!trig_mode || level) {
6da7e3f6 534 result = 1;
a4535290 535 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
3842d135 536 kvm_make_request(KVM_REQ_EVENT, vcpu);
c5ec1534
HQ
537 kvm_vcpu_kick(vcpu);
538 } else {
1b10bf31
JK
539 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
540 vcpu->vcpu_id);
c5ec1534 541 }
97222cc8
ED
542 break;
543
544 case APIC_DM_STARTUP:
1b10bf31
JK
545 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
546 vcpu->vcpu_id, vector);
a4535290 547 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
6da7e3f6 548 result = 1;
ad312c7c 549 vcpu->arch.sipi_vector = vector;
a4535290 550 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
3842d135 551 kvm_make_request(KVM_REQ_EVENT, vcpu);
d7690175 552 kvm_vcpu_kick(vcpu);
c5ec1534 553 }
97222cc8
ED
554 break;
555
23930f95
JK
556 case APIC_DM_EXTINT:
557 /*
558 * Should only be called by kvm_apic_local_deliver() with LVT0,
559 * before NMI watchdog was enabled. Already handled by
560 * kvm_apic_accept_pic_intr().
561 */
562 break;
563
97222cc8
ED
564 default:
565 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
566 delivery_mode);
567 break;
568 }
569 return result;
570}
571
e1035715 572int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
8be5453f 573{
e1035715 574 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
8be5453f
ZX
575}
576
ae7a2a3f 577static int apic_set_eoi(struct kvm_lapic *apic)
97222cc8
ED
578{
579 int vector = apic_find_highest_isr(apic);
ae7a2a3f
MT
580
581 trace_kvm_eoi(apic, vector);
582
97222cc8
ED
583 /*
584 * Not every write EOI will has corresponding ISR,
585 * one example is when Kernel check timer on setup_IO_APIC
586 */
587 if (vector == -1)
ae7a2a3f 588 return vector;
97222cc8 589
8680b94b 590 apic_clear_isr(vector, apic);
97222cc8
ED
591 apic_update_ppr(apic);
592
c48f1496 593 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
a0c9a822
MT
594 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
595 int trigger_mode;
596 if (apic_test_vector(vector, apic->regs + APIC_TMR))
597 trigger_mode = IOAPIC_LEVEL_TRIG;
598 else
599 trigger_mode = IOAPIC_EDGE_TRIG;
fc61b800 600 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
a0c9a822 601 }
3842d135 602 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
ae7a2a3f 603 return vector;
97222cc8
ED
604}
605
606static void apic_send_ipi(struct kvm_lapic *apic)
607{
c48f1496
GN
608 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR);
609 u32 icr_high = kvm_apic_get_reg(apic, APIC_ICR2);
58c2dde1 610 struct kvm_lapic_irq irq;
97222cc8 611
58c2dde1
GN
612 irq.vector = icr_low & APIC_VECTOR_MASK;
613 irq.delivery_mode = icr_low & APIC_MODE_MASK;
614 irq.dest_mode = icr_low & APIC_DEST_MASK;
615 irq.level = icr_low & APIC_INT_ASSERT;
616 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
617 irq.shorthand = icr_low & APIC_SHORT_MASK;
0105d1a5
GN
618 if (apic_x2apic_mode(apic))
619 irq.dest_id = icr_high;
620 else
621 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
97222cc8 622
1000ff8d
GN
623 trace_kvm_apic_ipi(icr_low, irq.dest_id);
624
97222cc8
ED
625 apic_debug("icr_high 0x%x, icr_low 0x%x, "
626 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
627 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
9b5843dd 628 icr_high, icr_low, irq.shorthand, irq.dest_id,
58c2dde1
GN
629 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
630 irq.vector);
631
632 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
97222cc8
ED
633}
634
635static u32 apic_get_tmcct(struct kvm_lapic *apic)
636{
b682b814
MT
637 ktime_t remaining;
638 s64 ns;
9da8f4e8 639 u32 tmcct;
97222cc8
ED
640
641 ASSERT(apic != NULL);
642
9da8f4e8 643 /* if initial count is 0, current count should also be 0 */
c48f1496 644 if (kvm_apic_get_reg(apic, APIC_TMICT) == 0)
9da8f4e8
KP
645 return 0;
646
ace15464 647 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
b682b814
MT
648 if (ktime_to_ns(remaining) < 0)
649 remaining = ktime_set(0, 0);
650
d3c7b77d
MT
651 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
652 tmcct = div64_u64(ns,
653 (APIC_BUS_CYCLE_NS * apic->divide_count));
97222cc8
ED
654
655 return tmcct;
656}
657
b209749f
AK
658static void __report_tpr_access(struct kvm_lapic *apic, bool write)
659{
660 struct kvm_vcpu *vcpu = apic->vcpu;
661 struct kvm_run *run = vcpu->run;
662
a8eeb04a 663 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
5fdbf976 664 run->tpr_access.rip = kvm_rip_read(vcpu);
b209749f
AK
665 run->tpr_access.is_write = write;
666}
667
668static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
669{
670 if (apic->vcpu->arch.tpr_access_reporting)
671 __report_tpr_access(apic, write);
672}
673
97222cc8
ED
674static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
675{
676 u32 val = 0;
677
678 if (offset >= LAPIC_MMIO_LENGTH)
679 return 0;
680
681 switch (offset) {
0105d1a5
GN
682 case APIC_ID:
683 if (apic_x2apic_mode(apic))
684 val = kvm_apic_id(apic);
685 else
686 val = kvm_apic_id(apic) << 24;
687 break;
97222cc8 688 case APIC_ARBPRI:
7712de87 689 apic_debug("Access APIC ARBPRI register which is for P6\n");
97222cc8
ED
690 break;
691
692 case APIC_TMCCT: /* Timer CCR */
a3e06bbe
LJ
693 if (apic_lvtt_tscdeadline(apic))
694 return 0;
695
97222cc8
ED
696 val = apic_get_tmcct(apic);
697 break;
4a4541a4
AK
698 case APIC_PROCPRI:
699 apic_update_ppr(apic);
c48f1496 700 val = kvm_apic_get_reg(apic, offset);
4a4541a4 701 break;
b209749f
AK
702 case APIC_TASKPRI:
703 report_tpr_access(apic, false);
704 /* fall thru */
97222cc8 705 default:
c48f1496 706 val = kvm_apic_get_reg(apic, offset);
97222cc8
ED
707 break;
708 }
709
710 return val;
711}
712
d76685c4
GH
713static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
714{
715 return container_of(dev, struct kvm_lapic, dev);
716}
717
0105d1a5
GN
718static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
719 void *data)
97222cc8 720{
97222cc8
ED
721 unsigned char alignment = offset & 0xf;
722 u32 result;
d5b0b5b1 723 /* this bitmask has a bit cleared for each reserved register */
0105d1a5 724 static const u64 rmask = 0x43ff01ffffffe70cULL;
97222cc8
ED
725
726 if ((alignment + len) > 4) {
4088bb3c
GN
727 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
728 offset, len);
0105d1a5 729 return 1;
97222cc8 730 }
0105d1a5
GN
731
732 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
4088bb3c
GN
733 apic_debug("KVM_APIC_READ: read reserved register %x\n",
734 offset);
0105d1a5
GN
735 return 1;
736 }
737
97222cc8
ED
738 result = __apic_read(apic, offset & ~0xf);
739
229456fc
MT
740 trace_kvm_apic_read(offset, result);
741
97222cc8
ED
742 switch (len) {
743 case 1:
744 case 2:
745 case 4:
746 memcpy(data, (char *)&result + alignment, len);
747 break;
748 default:
749 printk(KERN_ERR "Local APIC read with len = %x, "
750 "should be 1,2, or 4 instead\n", len);
751 break;
752 }
bda9020e 753 return 0;
97222cc8
ED
754}
755
0105d1a5
GN
756static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
757{
c48f1496 758 return kvm_apic_hw_enabled(apic) &&
0105d1a5
GN
759 addr >= apic->base_address &&
760 addr < apic->base_address + LAPIC_MMIO_LENGTH;
761}
762
763static int apic_mmio_read(struct kvm_io_device *this,
764 gpa_t address, int len, void *data)
765{
766 struct kvm_lapic *apic = to_lapic(this);
767 u32 offset = address - apic->base_address;
768
769 if (!apic_mmio_in_range(apic, address))
770 return -EOPNOTSUPP;
771
772 apic_reg_read(apic, offset, len, data);
773
774 return 0;
775}
776
97222cc8
ED
777static void update_divide_count(struct kvm_lapic *apic)
778{
779 u32 tmp1, tmp2, tdcr;
780
c48f1496 781 tdcr = kvm_apic_get_reg(apic, APIC_TDCR);
97222cc8
ED
782 tmp1 = tdcr & 0xf;
783 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
d3c7b77d 784 apic->divide_count = 0x1 << (tmp2 & 0x7);
97222cc8
ED
785
786 apic_debug("timer divide count is 0x%x\n",
9b5843dd 787 apic->divide_count);
97222cc8
ED
788}
789
790static void start_apic_timer(struct kvm_lapic *apic)
791{
a3e06bbe 792 ktime_t now;
d3c7b77d 793 atomic_set(&apic->lapic_timer.pending, 0);
0b975a3c 794
a3e06bbe 795 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
d5b0b5b1 796 /* lapic timer in oneshot or periodic mode */
a3e06bbe 797 now = apic->lapic_timer.timer.base->get_time();
c48f1496 798 apic->lapic_timer.period = (u64)kvm_apic_get_reg(apic, APIC_TMICT)
a3e06bbe
LJ
799 * APIC_BUS_CYCLE_NS * apic->divide_count;
800
801 if (!apic->lapic_timer.period)
802 return;
803 /*
804 * Do not allow the guest to program periodic timers with small
805 * interval, since the hrtimers are not throttled by the host
806 * scheduler.
807 */
808 if (apic_lvtt_period(apic)) {
809 s64 min_period = min_timer_period_us * 1000LL;
810
811 if (apic->lapic_timer.period < min_period) {
812 pr_info_ratelimited(
813 "kvm: vcpu %i: requested %lld ns "
814 "lapic timer period limited to %lld ns\n",
815 apic->vcpu->vcpu_id,
816 apic->lapic_timer.period, min_period);
817 apic->lapic_timer.period = min_period;
818 }
9bc5791d 819 }
0b975a3c 820
a3e06bbe
LJ
821 hrtimer_start(&apic->lapic_timer.timer,
822 ktime_add_ns(now, apic->lapic_timer.period),
823 HRTIMER_MODE_ABS);
97222cc8 824
a3e06bbe 825 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
97222cc8
ED
826 PRIx64 ", "
827 "timer initial count 0x%x, period %lldns, "
b8688d51 828 "expire @ 0x%016" PRIx64 ".\n", __func__,
97222cc8 829 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
c48f1496 830 kvm_apic_get_reg(apic, APIC_TMICT),
d3c7b77d 831 apic->lapic_timer.period,
97222cc8 832 ktime_to_ns(ktime_add_ns(now,
d3c7b77d 833 apic->lapic_timer.period)));
a3e06bbe
LJ
834 } else if (apic_lvtt_tscdeadline(apic)) {
835 /* lapic timer in tsc deadline mode */
836 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
837 u64 ns = 0;
838 struct kvm_vcpu *vcpu = apic->vcpu;
cc578287 839 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
a3e06bbe
LJ
840 unsigned long flags;
841
842 if (unlikely(!tscdeadline || !this_tsc_khz))
843 return;
844
845 local_irq_save(flags);
846
847 now = apic->lapic_timer.timer.base->get_time();
848 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu);
849 if (likely(tscdeadline > guest_tsc)) {
850 ns = (tscdeadline - guest_tsc) * 1000000ULL;
851 do_div(ns, this_tsc_khz);
852 }
853 hrtimer_start(&apic->lapic_timer.timer,
854 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
855
856 local_irq_restore(flags);
857 }
97222cc8
ED
858}
859
cc6e462c
JK
860static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
861{
c48f1496 862 int nmi_wd_enabled = apic_lvt_nmi_mode(kvm_apic_get_reg(apic, APIC_LVT0));
cc6e462c
JK
863
864 if (apic_lvt_nmi_mode(lvt0_val)) {
865 if (!nmi_wd_enabled) {
866 apic_debug("Receive NMI setting on APIC_LVT0 "
867 "for cpu %d\n", apic->vcpu->vcpu_id);
868 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
869 }
870 } else if (nmi_wd_enabled)
871 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
872}
873
0105d1a5 874static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
97222cc8 875{
0105d1a5 876 int ret = 0;
97222cc8 877
0105d1a5 878 trace_kvm_apic_write(reg, val);
97222cc8 879
0105d1a5 880 switch (reg) {
97222cc8 881 case APIC_ID: /* Local APIC ID */
0105d1a5
GN
882 if (!apic_x2apic_mode(apic))
883 apic_set_reg(apic, APIC_ID, val);
884 else
885 ret = 1;
97222cc8
ED
886 break;
887
888 case APIC_TASKPRI:
b209749f 889 report_tpr_access(apic, true);
97222cc8
ED
890 apic_set_tpr(apic, val & 0xff);
891 break;
892
893 case APIC_EOI:
894 apic_set_eoi(apic);
895 break;
896
897 case APIC_LDR:
0105d1a5
GN
898 if (!apic_x2apic_mode(apic))
899 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
900 else
901 ret = 1;
97222cc8
ED
902 break;
903
904 case APIC_DFR:
0105d1a5
GN
905 if (!apic_x2apic_mode(apic))
906 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
907 else
908 ret = 1;
97222cc8
ED
909 break;
910
fc61b800
GN
911 case APIC_SPIV: {
912 u32 mask = 0x3ff;
c48f1496 913 if (kvm_apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
fc61b800 914 mask |= APIC_SPIV_DIRECTED_EOI;
f8c1ea10 915 apic_set_spiv(apic, val & mask);
97222cc8
ED
916 if (!(val & APIC_SPIV_APIC_ENABLED)) {
917 int i;
918 u32 lvt_val;
919
920 for (i = 0; i < APIC_LVT_NUM; i++) {
c48f1496 921 lvt_val = kvm_apic_get_reg(apic,
97222cc8
ED
922 APIC_LVTT + 0x10 * i);
923 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
924 lvt_val | APIC_LVT_MASKED);
925 }
d3c7b77d 926 atomic_set(&apic->lapic_timer.pending, 0);
97222cc8
ED
927
928 }
929 break;
fc61b800 930 }
97222cc8
ED
931 case APIC_ICR:
932 /* No delay here, so we always clear the pending bit */
933 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
934 apic_send_ipi(apic);
935 break;
936
937 case APIC_ICR2:
0105d1a5
GN
938 if (!apic_x2apic_mode(apic))
939 val &= 0xff000000;
940 apic_set_reg(apic, APIC_ICR2, val);
97222cc8
ED
941 break;
942
23930f95 943 case APIC_LVT0:
cc6e462c 944 apic_manage_nmi_watchdog(apic, val);
97222cc8
ED
945 case APIC_LVTTHMR:
946 case APIC_LVTPC:
97222cc8
ED
947 case APIC_LVT1:
948 case APIC_LVTERR:
949 /* TODO: Check vector */
c48f1496 950 if (!kvm_apic_sw_enabled(apic))
97222cc8
ED
951 val |= APIC_LVT_MASKED;
952
0105d1a5
GN
953 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
954 apic_set_reg(apic, reg, val);
97222cc8
ED
955
956 break;
957
a3e06bbe 958 case APIC_LVTT:
c48f1496 959 if ((kvm_apic_get_reg(apic, APIC_LVTT) &
a3e06bbe
LJ
960 apic->lapic_timer.timer_mode_mask) !=
961 (val & apic->lapic_timer.timer_mode_mask))
962 hrtimer_cancel(&apic->lapic_timer.timer);
963
c48f1496 964 if (!kvm_apic_sw_enabled(apic))
a3e06bbe
LJ
965 val |= APIC_LVT_MASKED;
966 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
967 apic_set_reg(apic, APIC_LVTT, val);
968 break;
969
97222cc8 970 case APIC_TMICT:
a3e06bbe
LJ
971 if (apic_lvtt_tscdeadline(apic))
972 break;
973
d3c7b77d 974 hrtimer_cancel(&apic->lapic_timer.timer);
97222cc8
ED
975 apic_set_reg(apic, APIC_TMICT, val);
976 start_apic_timer(apic);
0105d1a5 977 break;
97222cc8
ED
978
979 case APIC_TDCR:
980 if (val & 4)
7712de87 981 apic_debug("KVM_WRITE:TDCR %x\n", val);
97222cc8
ED
982 apic_set_reg(apic, APIC_TDCR, val);
983 update_divide_count(apic);
984 break;
985
0105d1a5
GN
986 case APIC_ESR:
987 if (apic_x2apic_mode(apic) && val != 0) {
7712de87 988 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
0105d1a5
GN
989 ret = 1;
990 }
991 break;
992
993 case APIC_SELF_IPI:
994 if (apic_x2apic_mode(apic)) {
995 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
996 } else
997 ret = 1;
998 break;
97222cc8 999 default:
0105d1a5 1000 ret = 1;
97222cc8
ED
1001 break;
1002 }
0105d1a5
GN
1003 if (ret)
1004 apic_debug("Local APIC Write to read-only register %x\n", reg);
1005 return ret;
1006}
1007
1008static int apic_mmio_write(struct kvm_io_device *this,
1009 gpa_t address, int len, const void *data)
1010{
1011 struct kvm_lapic *apic = to_lapic(this);
1012 unsigned int offset = address - apic->base_address;
1013 u32 val;
1014
1015 if (!apic_mmio_in_range(apic, address))
1016 return -EOPNOTSUPP;
1017
1018 /*
1019 * APIC register must be aligned on 128-bits boundary.
1020 * 32/64/128 bits registers must be accessed thru 32 bits.
1021 * Refer SDM 8.4.1
1022 */
1023 if (len != 4 || (offset & 0xf)) {
1024 /* Don't shout loud, $infamous_os would cause only noise. */
1025 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
756975bb 1026 return 0;
0105d1a5
GN
1027 }
1028
1029 val = *(u32*)data;
1030
1031 /* too common printing */
1032 if (offset != APIC_EOI)
1033 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1034 "0x%x\n", __func__, offset, len, val);
1035
1036 apic_reg_write(apic, offset & 0xff0, val);
1037
bda9020e 1038 return 0;
97222cc8
ED
1039}
1040
58fbbf26
KT
1041void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1042{
c48f1496 1043 if (kvm_vcpu_has_lapic(vcpu))
58fbbf26
KT
1044 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1045}
1046EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1047
d589444e 1048void kvm_free_lapic(struct kvm_vcpu *vcpu)
97222cc8 1049{
f8c1ea10
GN
1050 struct kvm_lapic *apic = vcpu->arch.apic;
1051
ad312c7c 1052 if (!vcpu->arch.apic)
97222cc8
ED
1053 return;
1054
f8c1ea10 1055 hrtimer_cancel(&apic->lapic_timer.timer);
97222cc8 1056
c5cc421b
GN
1057 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1058 static_key_slow_dec_deferred(&apic_hw_disabled);
1059
c48f1496 1060 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED))
f8c1ea10 1061 static_key_slow_dec_deferred(&apic_sw_disabled);
97222cc8 1062
f8c1ea10
GN
1063 if (apic->regs)
1064 free_page((unsigned long)apic->regs);
1065
1066 kfree(apic);
97222cc8
ED
1067}
1068
1069/*
1070 *----------------------------------------------------------------------
1071 * LAPIC interface
1072 *----------------------------------------------------------------------
1073 */
1074
a3e06bbe
LJ
1075u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1076{
1077 struct kvm_lapic *apic = vcpu->arch.apic;
a3e06bbe 1078
c48f1496 1079 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
54e9818f 1080 apic_lvtt_period(apic))
a3e06bbe
LJ
1081 return 0;
1082
1083 return apic->lapic_timer.tscdeadline;
1084}
1085
1086void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1087{
1088 struct kvm_lapic *apic = vcpu->arch.apic;
a3e06bbe 1089
c48f1496 1090 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
54e9818f 1091 apic_lvtt_period(apic))
a3e06bbe
LJ
1092 return;
1093
1094 hrtimer_cancel(&apic->lapic_timer.timer);
1095 apic->lapic_timer.tscdeadline = data;
1096 start_apic_timer(apic);
1097}
1098
97222cc8
ED
1099void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1100{
ad312c7c 1101 struct kvm_lapic *apic = vcpu->arch.apic;
97222cc8 1102
c48f1496 1103 if (!kvm_vcpu_has_lapic(vcpu))
97222cc8 1104 return;
54e9818f 1105
b93463aa 1106 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
c48f1496 1107 | (kvm_apic_get_reg(apic, APIC_TASKPRI) & 4));
97222cc8
ED
1108}
1109
1110u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1111{
97222cc8
ED
1112 u64 tpr;
1113
c48f1496 1114 if (!kvm_vcpu_has_lapic(vcpu))
97222cc8 1115 return 0;
54e9818f 1116
c48f1496 1117 tpr = (u64) kvm_apic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
97222cc8
ED
1118
1119 return (tpr & 0xf0) >> 4;
1120}
1121
1122void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1123{
ad312c7c 1124 struct kvm_lapic *apic = vcpu->arch.apic;
97222cc8
ED
1125
1126 if (!apic) {
1127 value |= MSR_IA32_APICBASE_BSP;
ad312c7c 1128 vcpu->arch.apic_base = value;
97222cc8
ED
1129 return;
1130 }
c5af89b6 1131
c5cc421b
GN
1132 /* update jump label if enable bit changes */
1133 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1134 if (value & MSR_IA32_APICBASE_ENABLE)
1135 static_key_slow_dec_deferred(&apic_hw_disabled);
1136 else
1137 static_key_slow_inc(&apic_hw_disabled.key);
1138 }
1139
c5af89b6 1140 if (!kvm_vcpu_is_bsp(apic->vcpu))
97222cc8
ED
1141 value &= ~MSR_IA32_APICBASE_BSP;
1142
ad312c7c 1143 vcpu->arch.apic_base = value;
0105d1a5
GN
1144 if (apic_x2apic_mode(apic)) {
1145 u32 id = kvm_apic_id(apic);
1146 u32 ldr = ((id & ~0xf) << 16) | (1 << (id & 0xf));
1147 apic_set_reg(apic, APIC_LDR, ldr);
1148 }
ad312c7c 1149 apic->base_address = apic->vcpu->arch.apic_base &
97222cc8
ED
1150 MSR_IA32_APICBASE_BASE;
1151
1152 /* with FSB delivery interrupt, we can restart APIC functionality */
1153 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
ad312c7c 1154 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
97222cc8
ED
1155
1156}
1157
c5ec1534 1158void kvm_lapic_reset(struct kvm_vcpu *vcpu)
97222cc8
ED
1159{
1160 struct kvm_lapic *apic;
1161 int i;
1162
b8688d51 1163 apic_debug("%s\n", __func__);
97222cc8
ED
1164
1165 ASSERT(vcpu);
ad312c7c 1166 apic = vcpu->arch.apic;
97222cc8
ED
1167 ASSERT(apic != NULL);
1168
1169 /* Stop the timer in case it's a reset to an active apic */
d3c7b77d 1170 hrtimer_cancel(&apic->lapic_timer.timer);
97222cc8
ED
1171
1172 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
fc61b800 1173 kvm_apic_set_version(apic->vcpu);
97222cc8
ED
1174
1175 for (i = 0; i < APIC_LVT_NUM; i++)
1176 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
40487c68
QH
1177 apic_set_reg(apic, APIC_LVT0,
1178 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
97222cc8
ED
1179
1180 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
f8c1ea10 1181 apic_set_spiv(apic, 0xff);
97222cc8
ED
1182 apic_set_reg(apic, APIC_TASKPRI, 0);
1183 apic_set_reg(apic, APIC_LDR, 0);
1184 apic_set_reg(apic, APIC_ESR, 0);
1185 apic_set_reg(apic, APIC_ICR, 0);
1186 apic_set_reg(apic, APIC_ICR2, 0);
1187 apic_set_reg(apic, APIC_TDCR, 0);
1188 apic_set_reg(apic, APIC_TMICT, 0);
1189 for (i = 0; i < 8; i++) {
1190 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1191 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1192 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1193 }
33e4c686 1194 apic->irr_pending = false;
8680b94b
MT
1195 apic->isr_count = 0;
1196 apic->highest_isr_cache = -1;
b33ac88b 1197 update_divide_count(apic);
d3c7b77d 1198 atomic_set(&apic->lapic_timer.pending, 0);
c5af89b6 1199 if (kvm_vcpu_is_bsp(vcpu))
5dbc8f3f
GN
1200 kvm_lapic_set_base(vcpu,
1201 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
ae7a2a3f 1202 vcpu->arch.pv_eoi.msr_val = 0;
97222cc8
ED
1203 apic_update_ppr(apic);
1204
e1035715 1205 vcpu->arch.apic_arb_prio = 0;
41383771 1206 vcpu->arch.apic_attention = 0;
e1035715 1207
97222cc8 1208 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
b8688d51 1209 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
97222cc8 1210 vcpu, kvm_apic_id(apic),
ad312c7c 1211 vcpu->arch.apic_base, apic->base_address);
97222cc8
ED
1212}
1213
97222cc8
ED
1214/*
1215 *----------------------------------------------------------------------
1216 * timer interface
1217 *----------------------------------------------------------------------
1218 */
1b9778da 1219
2a6eac96 1220static bool lapic_is_periodic(struct kvm_lapic *apic)
97222cc8 1221{
d3c7b77d 1222 return apic_lvtt_period(apic);
97222cc8
ED
1223}
1224
3d80840d
MT
1225int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1226{
54e9818f 1227 struct kvm_lapic *apic = vcpu->arch.apic;
3d80840d 1228
c48f1496 1229 if (kvm_vcpu_has_lapic(vcpu) && apic_enabled(apic) &&
54e9818f
GN
1230 apic_lvt_enabled(apic, APIC_LVTT))
1231 return atomic_read(&apic->lapic_timer.pending);
3d80840d
MT
1232
1233 return 0;
1234}
1235
89342082 1236int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
1b9778da 1237{
c48f1496 1238 u32 reg = kvm_apic_get_reg(apic, lvt_type);
23930f95 1239 int vector, mode, trig_mode;
23930f95 1240
c48f1496 1241 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
23930f95
JK
1242 vector = reg & APIC_VECTOR_MASK;
1243 mode = reg & APIC_MODE_MASK;
1244 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1245 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1246 }
1247 return 0;
1248}
1b9778da 1249
8fdb2351 1250void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
23930f95 1251{
8fdb2351
JK
1252 struct kvm_lapic *apic = vcpu->arch.apic;
1253
1254 if (apic)
1255 kvm_apic_local_deliver(apic, APIC_LVT0);
1b9778da
ED
1256}
1257
d76685c4
GH
1258static const struct kvm_io_device_ops apic_mmio_ops = {
1259 .read = apic_mmio_read,
1260 .write = apic_mmio_write,
d76685c4
GH
1261};
1262
e9d90d47
AK
1263static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1264{
1265 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
2a6eac96
AK
1266 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1267 struct kvm_vcpu *vcpu = apic->vcpu;
e9d90d47
AK
1268 wait_queue_head_t *q = &vcpu->wq;
1269
1270 /*
1271 * There is a race window between reading and incrementing, but we do
1272 * not care about potentially losing timer events in the !reinject
1273 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1274 * in vcpu_enter_guest.
1275 */
2a6eac96 1276 if (!atomic_read(&ktimer->pending)) {
e9d90d47
AK
1277 atomic_inc(&ktimer->pending);
1278 /* FIXME: this code should not know anything about vcpus */
1279 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1280 }
1281
1282 if (waitqueue_active(q))
1283 wake_up_interruptible(q);
1284
2a6eac96 1285 if (lapic_is_periodic(apic)) {
e9d90d47
AK
1286 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1287 return HRTIMER_RESTART;
1288 } else
1289 return HRTIMER_NORESTART;
1290}
1291
97222cc8
ED
1292int kvm_create_lapic(struct kvm_vcpu *vcpu)
1293{
1294 struct kvm_lapic *apic;
1295
1296 ASSERT(vcpu != NULL);
1297 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1298
1299 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1300 if (!apic)
1301 goto nomem;
1302
ad312c7c 1303 vcpu->arch.apic = apic;
97222cc8 1304
afc20184
TY
1305 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1306 if (!apic->regs) {
97222cc8
ED
1307 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1308 vcpu->vcpu_id);
d589444e 1309 goto nomem_free_apic;
97222cc8 1310 }
97222cc8
ED
1311 apic->vcpu = vcpu;
1312
d3c7b77d
MT
1313 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1314 HRTIMER_MODE_ABS);
e9d90d47 1315 apic->lapic_timer.timer.function = apic_timer_fn;
d3c7b77d 1316
c5cc421b
GN
1317 /*
1318 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1319 * thinking that APIC satet has changed.
1320 */
1321 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
6aed64a8
GN
1322 kvm_lapic_set_base(vcpu,
1323 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
97222cc8 1324
f8c1ea10 1325 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
c5ec1534 1326 kvm_lapic_reset(vcpu);
d76685c4 1327 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
97222cc8
ED
1328
1329 return 0;
d589444e
RR
1330nomem_free_apic:
1331 kfree(apic);
97222cc8 1332nomem:
97222cc8
ED
1333 return -ENOMEM;
1334}
97222cc8
ED
1335
1336int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1337{
ad312c7c 1338 struct kvm_lapic *apic = vcpu->arch.apic;
97222cc8
ED
1339 int highest_irr;
1340
c48f1496 1341 if (!kvm_vcpu_has_lapic(vcpu) || !apic_enabled(apic))
97222cc8
ED
1342 return -1;
1343
6e5d865c 1344 apic_update_ppr(apic);
97222cc8
ED
1345 highest_irr = apic_find_highest_irr(apic);
1346 if ((highest_irr == -1) ||
c48f1496 1347 ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI)))
97222cc8
ED
1348 return -1;
1349 return highest_irr;
1350}
1351
40487c68
QH
1352int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1353{
c48f1496 1354 u32 lvt0 = kvm_apic_get_reg(vcpu->arch.apic, APIC_LVT0);
40487c68
QH
1355 int r = 0;
1356
c48f1496 1357 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
e7dca5c0
CL
1358 r = 1;
1359 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1360 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1361 r = 1;
40487c68
QH
1362 return r;
1363}
1364
1b9778da
ED
1365void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1366{
ad312c7c 1367 struct kvm_lapic *apic = vcpu->arch.apic;
1b9778da 1368
c48f1496 1369 if (!kvm_vcpu_has_lapic(vcpu))
54e9818f
GN
1370 return;
1371
1372 if (atomic_read(&apic->lapic_timer.pending) > 0) {
8fdb2351 1373 if (kvm_apic_local_deliver(apic, APIC_LVTT))
d3c7b77d 1374 atomic_dec(&apic->lapic_timer.pending);
1b9778da
ED
1375 }
1376}
1377
97222cc8
ED
1378int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1379{
1380 int vector = kvm_apic_has_interrupt(vcpu);
ad312c7c 1381 struct kvm_lapic *apic = vcpu->arch.apic;
97222cc8
ED
1382
1383 if (vector == -1)
1384 return -1;
1385
8680b94b 1386 apic_set_isr(vector, apic);
97222cc8
ED
1387 apic_update_ppr(apic);
1388 apic_clear_irr(vector, apic);
1389 return vector;
1390}
96ad2cc6 1391
64eb0620
GN
1392void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
1393 struct kvm_lapic_state *s)
96ad2cc6 1394{
ad312c7c 1395 struct kvm_lapic *apic = vcpu->arch.apic;
96ad2cc6 1396
5dbc8f3f 1397 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
64eb0620
GN
1398 /* set SPIV separately to get count of SW disabled APICs right */
1399 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
1400 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
fc61b800
GN
1401 kvm_apic_set_version(vcpu);
1402
96ad2cc6 1403 apic_update_ppr(apic);
d3c7b77d 1404 hrtimer_cancel(&apic->lapic_timer.timer);
96ad2cc6
ED
1405 update_divide_count(apic);
1406 start_apic_timer(apic);
6e24a6ef 1407 apic->irr_pending = true;
8680b94b
MT
1408 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
1409 apic->highest_isr_cache = -1;
3842d135 1410 kvm_make_request(KVM_REQ_EVENT, vcpu);
96ad2cc6 1411}
a3d7f85f 1412
2f52d58c 1413void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
a3d7f85f 1414{
a3d7f85f
ED
1415 struct hrtimer *timer;
1416
c48f1496 1417 if (!kvm_vcpu_has_lapic(vcpu))
a3d7f85f
ED
1418 return;
1419
54e9818f 1420 timer = &vcpu->arch.apic->lapic_timer.timer;
a3d7f85f 1421 if (hrtimer_cancel(timer))
beb20d52 1422 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
a3d7f85f 1423}
b93463aa 1424
ae7a2a3f
MT
1425/*
1426 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1427 *
1428 * Detect whether guest triggered PV EOI since the
1429 * last entry. If yes, set EOI on guests's behalf.
1430 * Clear PV EOI in guest memory in any case.
1431 */
1432static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1433 struct kvm_lapic *apic)
1434{
1435 bool pending;
1436 int vector;
1437 /*
1438 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1439 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1440 *
1441 * KVM_APIC_PV_EOI_PENDING is unset:
1442 * -> host disabled PV EOI.
1443 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1444 * -> host enabled PV EOI, guest did not execute EOI yet.
1445 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1446 * -> host enabled PV EOI, guest executed EOI.
1447 */
1448 BUG_ON(!pv_eoi_enabled(vcpu));
1449 pending = pv_eoi_get_pending(vcpu);
1450 /*
1451 * Clear pending bit in any case: it will be set again on vmentry.
1452 * While this might not be ideal from performance point of view,
1453 * this makes sure pv eoi is only enabled when we know it's safe.
1454 */
1455 pv_eoi_clr_pending(vcpu);
1456 if (pending)
1457 return;
1458 vector = apic_set_eoi(apic);
1459 trace_kvm_pv_eoi(apic, vector);
1460}
1461
b93463aa
AK
1462void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1463{
1464 u32 data;
1465 void *vapic;
1466
ae7a2a3f
MT
1467 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1468 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1469
41383771 1470 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
b93463aa
AK
1471 return;
1472
8fd75e12 1473 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
b93463aa 1474 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
8fd75e12 1475 kunmap_atomic(vapic);
b93463aa
AK
1476
1477 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1478}
1479
ae7a2a3f
MT
1480/*
1481 * apic_sync_pv_eoi_to_guest - called before vmentry
1482 *
1483 * Detect whether it's safe to enable PV EOI and
1484 * if yes do so.
1485 */
1486static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1487 struct kvm_lapic *apic)
1488{
1489 if (!pv_eoi_enabled(vcpu) ||
1490 /* IRR set or many bits in ISR: could be nested. */
1491 apic->irr_pending ||
1492 /* Cache not set: could be safe but we don't bother. */
1493 apic->highest_isr_cache == -1 ||
1494 /* Need EOI to update ioapic. */
1495 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1496 /*
1497 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1498 * so we need not do anything here.
1499 */
1500 return;
1501 }
1502
1503 pv_eoi_set_pending(apic->vcpu);
1504}
1505
b93463aa
AK
1506void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1507{
1508 u32 data, tpr;
1509 int max_irr, max_isr;
ae7a2a3f 1510 struct kvm_lapic *apic = vcpu->arch.apic;
b93463aa
AK
1511 void *vapic;
1512
ae7a2a3f
MT
1513 apic_sync_pv_eoi_to_guest(vcpu, apic);
1514
41383771 1515 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
b93463aa
AK
1516 return;
1517
c48f1496 1518 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI) & 0xff;
b93463aa
AK
1519 max_irr = apic_find_highest_irr(apic);
1520 if (max_irr < 0)
1521 max_irr = 0;
1522 max_isr = apic_find_highest_isr(apic);
1523 if (max_isr < 0)
1524 max_isr = 0;
1525 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1526
8fd75e12 1527 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
b93463aa 1528 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
8fd75e12 1529 kunmap_atomic(vapic);
b93463aa
AK
1530}
1531
1532void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1533{
b93463aa 1534 vcpu->arch.apic->vapic_addr = vapic_addr;
41383771
GN
1535 if (vapic_addr)
1536 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1537 else
1538 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
b93463aa 1539}
0105d1a5
GN
1540
1541int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1542{
1543 struct kvm_lapic *apic = vcpu->arch.apic;
1544 u32 reg = (msr - APIC_BASE_MSR) << 4;
1545
1546 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1547 return 1;
1548
1549 /* if this is ICR write vector before command */
1550 if (msr == 0x830)
1551 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1552 return apic_reg_write(apic, reg, (u32)data);
1553}
1554
1555int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1556{
1557 struct kvm_lapic *apic = vcpu->arch.apic;
1558 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1559
1560 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1561 return 1;
1562
1563 if (apic_reg_read(apic, reg, 4, &low))
1564 return 1;
1565 if (msr == 0x830)
1566 apic_reg_read(apic, APIC_ICR2, 4, &high);
1567
1568 *data = (((u64)high) << 32) | low;
1569
1570 return 0;
1571}
10388a07
GN
1572
1573int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1574{
1575 struct kvm_lapic *apic = vcpu->arch.apic;
1576
c48f1496 1577 if (!kvm_vcpu_has_lapic(vcpu))
10388a07
GN
1578 return 1;
1579
1580 /* if this is ICR write vector before command */
1581 if (reg == APIC_ICR)
1582 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1583 return apic_reg_write(apic, reg, (u32)data);
1584}
1585
1586int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1587{
1588 struct kvm_lapic *apic = vcpu->arch.apic;
1589 u32 low, high = 0;
1590
c48f1496 1591 if (!kvm_vcpu_has_lapic(vcpu))
10388a07
GN
1592 return 1;
1593
1594 if (apic_reg_read(apic, reg, 4, &low))
1595 return 1;
1596 if (reg == APIC_ICR)
1597 apic_reg_read(apic, APIC_ICR2, 4, &high);
1598
1599 *data = (((u64)high) << 32) | low;
1600
1601 return 0;
1602}
ae7a2a3f
MT
1603
1604int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1605{
1606 u64 addr = data & ~KVM_MSR_ENABLED;
1607 if (!IS_ALIGNED(addr, 4))
1608 return 1;
1609
1610 vcpu->arch.pv_eoi.msr_val = data;
1611 if (!pv_eoi_enabled(vcpu))
1612 return 0;
1613 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
1614 addr);
1615}
c5cc421b
GN
1616
1617void kvm_lapic_init(void)
1618{
1619 /* do not patch jump label more than once per second */
1620 jump_label_rate_limit(&apic_hw_disabled, HZ);
f8c1ea10 1621 jump_label_rate_limit(&apic_sw_disabled, HZ);
c5cc421b 1622}