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