blob: 7f77e96ac5e8d4701158e8f04e0dfdb45f3992cd [file] [log] [blame]
Eddie Dong97222cc2007-09-12 10:58:04 +03001
2/*
3 * Local APIC virtualization
4 *
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
Eddie Dong97222cc2007-09-12 10:58:04 +03009 *
10 * Authors:
11 * Dor Laor <dor.laor@qumranet.com>
12 * Gregory Haskins <ghaskins@novell.com>
13 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
14 *
15 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
16 *
17 * This work is licensed under the terms of the GNU GPL, version 2. See
18 * the COPYING file in the top-level directory.
19 */
20
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030022#include <linux/kvm.h>
23#include <linux/mm.h>
24#include <linux/highmem.h>
25#include <linux/smp.h>
26#include <linux/hrtimer.h>
27#include <linux/io.h>
28#include <linux/module.h>
Roman Zippel6f6d6a12008-05-01 04:34:28 -070029#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030031#include <asm/processor.h>
32#include <asm/msr.h>
33#include <asm/page.h>
34#include <asm/current.h>
35#include <asm/apicdef.h>
Arun Sharma600634972011-07-26 16:09:06 -070036#include <linux/atomic.h>
Gleb Natapovc5cc4212012-08-05 15:58:30 +030037#include <linux/jump_label.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030038#include "kvm_cache_regs.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030039#include "irq.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030040#include "trace.h"
Gleb Natapovfc61b802009-07-05 17:39:35 +030041#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020042#include "cpuid.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030043
Marcelo Tosattib682b812009-02-10 20:41:41 -020044#ifndef CONFIG_X86_64
45#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
46#else
47#define mod_64(x, y) ((x) % (y))
48#endif
49
Eddie Dong97222cc2007-09-12 10:58:04 +030050#define PRId64 "d"
51#define PRIx64 "llx"
52#define PRIu64 "u"
53#define PRIo64 "o"
54
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)
Zhang Xiantaoad312c72007-12-13 23:50:52 +080072
Jan Kiszka9bc57912011-09-12 14:10:22 +020073static unsigned int min_timer_period_us = 500;
74module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
75
Eddie Dong97222cc2007-09-12 10:58:04 +030076static inline u32 apic_get_reg(struct kvm_lapic *apic, int reg_off)
77{
78 return *((u32 *) (apic->regs + reg_off));
79}
80
81static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
82{
83 *((u32 *) (apic->regs + reg_off)) = val;
84}
85
86static inline int apic_test_and_set_vector(int vec, void *bitmap)
87{
88 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
89}
90
91static inline int apic_test_and_clear_vector(int vec, void *bitmap)
92{
93 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
94}
95
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +030096static inline int apic_test_vector(int vec, void *bitmap)
97{
98 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
99}
100
Eddie Dong97222cc2007-09-12 10:58:04 +0300101static inline void apic_set_vector(int vec, void *bitmap)
102{
103 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
104}
105
106static inline void apic_clear_vector(int vec, void *bitmap)
107{
108 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
109}
110
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300111static inline int __apic_test_and_set_vector(int vec, void *bitmap)
112{
113 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
114}
115
116static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
117{
118 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
119}
120
Gleb Natapovc5cc4212012-08-05 15:58:30 +0300121struct static_key_deferred apic_hw_disabled __read_mostly;
122
Eddie Dong97222cc2007-09-12 10:58:04 +0300123static inline int apic_hw_enabled(struct kvm_lapic *apic)
124{
Gleb Natapovc5cc4212012-08-05 15:58:30 +0300125 if (static_key_false(&apic_hw_disabled.key))
126 return apic->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE;
127 return MSR_IA32_APICBASE_ENABLE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300128}
129
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300130struct static_key_deferred apic_sw_disabled __read_mostly;
131
132static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300133{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300134 if ((apic_get_reg(apic, APIC_SPIV) ^ val) & APIC_SPIV_APIC_ENABLED) {
135 if (val & APIC_SPIV_APIC_ENABLED)
136 static_key_slow_dec_deferred(&apic_sw_disabled);
137 else
138 static_key_slow_inc(&apic_sw_disabled.key);
139 }
140 apic_set_reg(apic, APIC_SPIV, val);
141}
142
143static inline int apic_sw_enabled(struct kvm_lapic *apic)
144{
145 if (static_key_false(&apic_sw_disabled.key))
146 return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED;
147 return APIC_SPIV_APIC_ENABLED;
Eddie Dong97222cc2007-09-12 10:58:04 +0300148}
149
150static inline int apic_enabled(struct kvm_lapic *apic)
151{
152 return apic_sw_enabled(apic) && apic_hw_enabled(apic);
153}
154
155#define LVT_MASK \
156 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
157
158#define LINT_MASK \
159 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
160 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
161
162static inline int kvm_apic_id(struct kvm_lapic *apic)
163{
164 return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
165}
166
167static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
168{
169 return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
170}
171
172static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
173{
174 return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
175}
176
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800177static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
178{
179 return ((apic_get_reg(apic, APIC_LVTT) &
180 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
181}
182
Eddie Dong97222cc2007-09-12 10:58:04 +0300183static inline int apic_lvtt_period(struct kvm_lapic *apic)
184{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800185 return ((apic_get_reg(apic, APIC_LVTT) &
186 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
187}
188
189static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
190{
191 return ((apic_get_reg(apic, APIC_LVTT) &
192 apic->lapic_timer.timer_mode_mask) ==
193 APIC_LVT_TIMER_TSCDEADLINE);
Eddie Dong97222cc2007-09-12 10:58:04 +0300194}
195
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200196static inline int apic_lvt_nmi_mode(u32 lvt_val)
197{
198 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
199}
200
Gleb Natapovfc61b802009-07-05 17:39:35 +0300201void kvm_apic_set_version(struct kvm_vcpu *vcpu)
202{
203 struct kvm_lapic *apic = vcpu->arch.apic;
204 struct kvm_cpuid_entry2 *feat;
205 u32 v = APIC_VERSION;
206
207 if (!irqchip_in_kernel(vcpu->kvm))
208 return;
209
210 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
211 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
212 v |= APIC_LVR_DIRECTED_EOI;
213 apic_set_reg(apic, APIC_LVR, v);
214}
215
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300216static inline int apic_x2apic_mode(struct kvm_lapic *apic)
217{
218 return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
219}
220
Eddie Dong97222cc2007-09-12 10:58:04 +0300221static unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800222 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300223 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
224 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
225 LINT_MASK, LINT_MASK, /* LVT0-1 */
226 LVT_MASK /* LVTERR */
227};
228
229static int find_highest_vector(void *bitmap)
230{
231 u32 *word = bitmap;
232 int word_offset = MAX_APIC_VECTOR >> 5;
233
234 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
235 continue;
236
237 if (likely(!word_offset && !word[0]))
238 return -1;
239 else
240 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
241}
242
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300243static u8 count_vectors(void *bitmap)
244{
245 u32 *word = bitmap;
246 int word_offset;
247 u8 count = 0;
248 for (word_offset = 0; word_offset < MAX_APIC_VECTOR >> 5; ++word_offset)
249 count += hweight32(word[word_offset << 2]);
250 return count;
251}
252
Eddie Dong97222cc2007-09-12 10:58:04 +0300253static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
254{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300255 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300256 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
257}
258
Gleb Natapov33e4c682009-06-11 11:06:51 +0300259static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300260{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300261 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300262}
263
264static inline int apic_find_highest_irr(struct kvm_lapic *apic)
265{
266 int result;
267
Gleb Natapov33e4c682009-06-11 11:06:51 +0300268 if (!apic->irr_pending)
269 return -1;
270
271 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300272 ASSERT(result == -1 || result >= 16);
273
274 return result;
275}
276
Gleb Natapov33e4c682009-06-11 11:06:51 +0300277static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
278{
279 apic->irr_pending = false;
280 apic_clear_vector(vec, apic->regs + APIC_IRR);
281 if (apic_search_irr(apic) != -1)
282 apic->irr_pending = true;
283}
284
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300285static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
286{
287 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
288 ++apic->isr_count;
289 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
290 /*
291 * ISR (in service register) bit is set when injecting an interrupt.
292 * The highest vector is injected. Thus the latest bit set matches
293 * the highest bit in ISR.
294 */
295 apic->highest_isr_cache = vec;
296}
297
298static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
299{
300 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
301 --apic->isr_count;
302 BUG_ON(apic->isr_count < 0);
303 apic->highest_isr_cache = -1;
304}
305
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800306int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
307{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800308 struct kvm_lapic *apic = vcpu->arch.apic;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800309 int highest_irr;
310
Gleb Natapov33e4c682009-06-11 11:06:51 +0300311 /* This may race with setting of irr in __apic_accept_irq() and
312 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
313 * will cause vmexit immediately and the value will be recalculated
314 * on the next vmentry.
315 */
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800316 if (!apic)
317 return 0;
318 highest_irr = apic_find_highest_irr(apic);
319
320 return highest_irr;
321}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800322
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200323static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
324 int vector, int level, int trig_mode);
325
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200326int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300327{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800328 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800329
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200330 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
331 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300332}
333
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300334static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
335{
336
337 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
338 sizeof(val));
339}
340
341static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
342{
343
344 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
345 sizeof(*val));
346}
347
348static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
349{
350 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
351}
352
353static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
354{
355 u8 val;
356 if (pv_eoi_get_user(vcpu, &val) < 0)
357 apic_debug("Can't read EOI MSR value: 0x%llx\n",
358 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
359 return val & 0x1;
360}
361
362static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
363{
364 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
365 apic_debug("Can't set EOI MSR value: 0x%llx\n",
366 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
367 return;
368 }
369 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
370}
371
372static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
373{
374 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
375 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
376 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
377 return;
378 }
379 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
380}
381
Eddie Dong97222cc2007-09-12 10:58:04 +0300382static inline int apic_find_highest_isr(struct kvm_lapic *apic)
383{
384 int result;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300385 if (!apic->isr_count)
386 return -1;
387 if (likely(apic->highest_isr_cache != -1))
388 return apic->highest_isr_cache;
Eddie Dong97222cc2007-09-12 10:58:04 +0300389
390 result = find_highest_vector(apic->regs + APIC_ISR);
391 ASSERT(result == -1 || result >= 16);
392
393 return result;
394}
395
396static void apic_update_ppr(struct kvm_lapic *apic)
397{
Avi Kivity3842d132010-07-27 12:30:24 +0300398 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300399 int isr;
400
Avi Kivity3842d132010-07-27 12:30:24 +0300401 old_ppr = apic_get_reg(apic, APIC_PROCPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300402 tpr = apic_get_reg(apic, APIC_TASKPRI);
403 isr = apic_find_highest_isr(apic);
404 isrv = (isr != -1) ? isr : 0;
405
406 if ((tpr & 0xf0) >= (isrv & 0xf0))
407 ppr = tpr & 0xff;
408 else
409 ppr = isrv & 0xf0;
410
411 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
412 apic, ppr, isr, isrv);
413
Avi Kivity3842d132010-07-27 12:30:24 +0300414 if (old_ppr != ppr) {
415 apic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200416 if (ppr < old_ppr)
417 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300418 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300419}
420
421static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
422{
423 apic_set_reg(apic, APIC_TASKPRI, tpr);
424 apic_update_ppr(apic);
425}
426
427int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
428{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200429 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300430}
431
432int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
433{
434 int result = 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300435 u32 logical_id;
436
437 if (apic_x2apic_mode(apic)) {
438 logical_id = apic_get_reg(apic, APIC_LDR);
439 return logical_id & mda;
440 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300441
442 logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR));
443
444 switch (apic_get_reg(apic, APIC_DFR)) {
445 case APIC_DFR_FLAT:
446 if (logical_id & mda)
447 result = 1;
448 break;
449 case APIC_DFR_CLUSTER:
450 if (((logical_id >> 4) == (mda >> 0x4))
451 && (logical_id & mda & 0xf))
452 result = 1;
453 break;
454 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200455 apic_debug("Bad DFR vcpu %d: %08x\n",
456 apic->vcpu->vcpu_id, apic_get_reg(apic, APIC_DFR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300457 break;
458 }
459
460 return result;
461}
462
Gleb Natapov343f94f2009-03-05 16:34:54 +0200463int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300464 int short_hand, int dest, int dest_mode)
465{
466 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800467 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300468
469 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200470 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300471 target, source, dest, dest_mode, short_hand);
472
Zachary Amsdenbd371392010-06-14 11:42:15 -1000473 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300474 switch (short_hand) {
475 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200476 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300477 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200478 result = kvm_apic_match_physical_addr(target, dest);
479 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300480 /* Logical mode. */
481 result = kvm_apic_match_logical_addr(target, dest);
482 break;
483 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200484 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300485 break;
486 case APIC_DEST_ALLINC:
487 result = 1;
488 break;
489 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200490 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300491 break;
492 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200493 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
494 short_hand);
Eddie Dong97222cc2007-09-12 10:58:04 +0300495 break;
496 }
497
498 return result;
499}
500
501/*
502 * Add a pending IRQ into lapic.
503 * Return 1 if successfully added and 0 if discarded.
504 */
505static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
506 int vector, int level, int trig_mode)
507{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200508 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300509 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300510
511 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300512 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200513 vcpu->arch.apic_arb_prio++;
514 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300515 /* FIXME add logic for vcpu on reset */
516 if (unlikely(!apic_enabled(apic)))
517 break;
518
Avi Kivitya5d36f82009-12-29 12:42:16 +0200519 if (trig_mode) {
520 apic_debug("level trig mode for vector %d", vector);
521 apic_set_vector(vector, apic->regs + APIC_TMR);
522 } else
523 apic_clear_vector(vector, apic->regs + APIC_TMR);
524
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200525 result = !apic_test_and_set_irr(vector, apic);
Gleb Natapov1000ff82009-07-07 16:00:57 +0300526 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
Gleb Natapov4da74892009-08-27 16:25:04 +0300527 trig_mode, vector, !result);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200528 if (!result) {
529 if (trig_mode)
530 apic_debug("level trig mode repeatedly for "
531 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300532 break;
533 }
534
Avi Kivity3842d132010-07-27 12:30:24 +0300535 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300536 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300537 break;
538
539 case APIC_DM_REMRD:
Jan Kiszka7712de82011-09-12 11:25:51 +0200540 apic_debug("Ignoring delivery mode 3\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300541 break;
542
543 case APIC_DM_SMI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200544 apic_debug("Ignoring guest SMI\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300545 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800546
Eddie Dong97222cc2007-09-12 10:58:04 +0300547 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200548 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800549 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200550 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300551 break;
552
553 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +0100554 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200555 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300556 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300557 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300558 kvm_vcpu_kick(vcpu);
559 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200560 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
561 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300562 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300563 break;
564
565 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200566 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
567 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300568 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200569 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800570 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300571 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300572 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300573 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300574 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300575 break;
576
Jan Kiszka23930f92008-09-26 09:30:52 +0200577 case APIC_DM_EXTINT:
578 /*
579 * Should only be called by kvm_apic_local_deliver() with LVT0,
580 * before NMI watchdog was enabled. Already handled by
581 * kvm_apic_accept_pic_intr().
582 */
583 break;
584
Eddie Dong97222cc2007-09-12 10:58:04 +0300585 default:
586 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
587 delivery_mode);
588 break;
589 }
590 return result;
591}
592
Gleb Natapove1035712009-03-05 16:34:59 +0200593int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300594{
Gleb Natapove1035712009-03-05 16:34:59 +0200595 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800596}
597
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300598static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300599{
600 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300601
602 trace_kvm_eoi(apic, vector);
603
Eddie Dong97222cc2007-09-12 10:58:04 +0300604 /*
605 * Not every write EOI will has corresponding ISR,
606 * one example is when Kernel check timer on setup_IO_APIC
607 */
608 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300609 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300610
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300611 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300612 apic_update_ppr(apic);
613
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300614 if (!(apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
615 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
616 int trigger_mode;
617 if (apic_test_vector(vector, apic->regs + APIC_TMR))
618 trigger_mode = IOAPIC_LEVEL_TRIG;
619 else
620 trigger_mode = IOAPIC_EDGE_TRIG;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300621 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300622 }
Avi Kivity3842d132010-07-27 12:30:24 +0300623 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300624 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300625}
626
627static void apic_send_ipi(struct kvm_lapic *apic)
628{
629 u32 icr_low = apic_get_reg(apic, APIC_ICR);
630 u32 icr_high = apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200631 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300632
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200633 irq.vector = icr_low & APIC_VECTOR_MASK;
634 irq.delivery_mode = icr_low & APIC_MODE_MASK;
635 irq.dest_mode = icr_low & APIC_DEST_MASK;
636 irq.level = icr_low & APIC_INT_ASSERT;
637 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
638 irq.shorthand = icr_low & APIC_SHORT_MASK;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300639 if (apic_x2apic_mode(apic))
640 irq.dest_id = icr_high;
641 else
642 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300643
Gleb Natapov1000ff82009-07-07 16:00:57 +0300644 trace_kvm_apic_ipi(icr_low, irq.dest_id);
645
Eddie Dong97222cc2007-09-12 10:58:04 +0300646 apic_debug("icr_high 0x%x, icr_low 0x%x, "
647 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
648 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400649 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200650 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
651 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300652
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200653 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Eddie Dong97222cc2007-09-12 10:58:04 +0300654}
655
656static u32 apic_get_tmcct(struct kvm_lapic *apic)
657{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200658 ktime_t remaining;
659 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200660 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300661
662 ASSERT(apic != NULL);
663
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200664 /* if initial count is 0, current count should also be 0 */
Marcelo Tosattib682b812009-02-10 20:41:41 -0200665 if (apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200666 return 0;
667
Marcelo Tosattiace15462009-10-08 10:55:03 -0300668 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200669 if (ktime_to_ns(remaining) < 0)
670 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300671
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300672 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
673 tmcct = div64_u64(ns,
674 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300675
676 return tmcct;
677}
678
Avi Kivityb209749f2007-10-22 16:50:39 +0200679static void __report_tpr_access(struct kvm_lapic *apic, bool write)
680{
681 struct kvm_vcpu *vcpu = apic->vcpu;
682 struct kvm_run *run = vcpu->run;
683
Avi Kivitya8eeb042010-05-10 12:34:53 +0300684 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300685 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200686 run->tpr_access.is_write = write;
687}
688
689static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
690{
691 if (apic->vcpu->arch.tpr_access_reporting)
692 __report_tpr_access(apic, write);
693}
694
Eddie Dong97222cc2007-09-12 10:58:04 +0300695static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
696{
697 u32 val = 0;
698
699 if (offset >= LAPIC_MMIO_LENGTH)
700 return 0;
701
702 switch (offset) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300703 case APIC_ID:
704 if (apic_x2apic_mode(apic))
705 val = kvm_apic_id(apic);
706 else
707 val = kvm_apic_id(apic) << 24;
708 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300709 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200710 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300711 break;
712
713 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800714 if (apic_lvtt_tscdeadline(apic))
715 return 0;
716
Eddie Dong97222cc2007-09-12 10:58:04 +0300717 val = apic_get_tmcct(apic);
718 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +0300719 case APIC_PROCPRI:
720 apic_update_ppr(apic);
721 val = apic_get_reg(apic, offset);
722 break;
Avi Kivityb209749f2007-10-22 16:50:39 +0200723 case APIC_TASKPRI:
724 report_tpr_access(apic, false);
725 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300726 default:
727 val = apic_get_reg(apic, offset);
728 break;
729 }
730
731 return val;
732}
733
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400734static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
735{
736 return container_of(dev, struct kvm_lapic, dev);
737}
738
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300739static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
740 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300741{
Eddie Dong97222cc2007-09-12 10:58:04 +0300742 unsigned char alignment = offset & 0xf;
743 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800744 /* this bitmask has a bit cleared for each reserved register */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300745 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300746
747 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300748 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
749 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300750 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300751 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300752
753 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300754 apic_debug("KVM_APIC_READ: read reserved register %x\n",
755 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300756 return 1;
757 }
758
Eddie Dong97222cc2007-09-12 10:58:04 +0300759 result = __apic_read(apic, offset & ~0xf);
760
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300761 trace_kvm_apic_read(offset, result);
762
Eddie Dong97222cc2007-09-12 10:58:04 +0300763 switch (len) {
764 case 1:
765 case 2:
766 case 4:
767 memcpy(data, (char *)&result + alignment, len);
768 break;
769 default:
770 printk(KERN_ERR "Local APIC read with len = %x, "
771 "should be 1,2, or 4 instead\n", len);
772 break;
773 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300774 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300775}
776
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300777static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
778{
779 return apic_hw_enabled(apic) &&
780 addr >= apic->base_address &&
781 addr < apic->base_address + LAPIC_MMIO_LENGTH;
782}
783
784static int apic_mmio_read(struct kvm_io_device *this,
785 gpa_t address, int len, void *data)
786{
787 struct kvm_lapic *apic = to_lapic(this);
788 u32 offset = address - apic->base_address;
789
790 if (!apic_mmio_in_range(apic, address))
791 return -EOPNOTSUPP;
792
793 apic_reg_read(apic, offset, len, data);
794
795 return 0;
796}
797
Eddie Dong97222cc2007-09-12 10:58:04 +0300798static void update_divide_count(struct kvm_lapic *apic)
799{
800 u32 tmp1, tmp2, tdcr;
801
802 tdcr = apic_get_reg(apic, APIC_TDCR);
803 tmp1 = tdcr & 0xf;
804 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300805 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300806
807 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400808 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300809}
810
811static void start_apic_timer(struct kvm_lapic *apic)
812{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800813 ktime_t now;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300814 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200815
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800816 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800817 /* lapic timer in oneshot or periodic mode */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800818 now = apic->lapic_timer.timer.base->get_time();
819 apic->lapic_timer.period = (u64)apic_get_reg(apic, APIC_TMICT)
820 * APIC_BUS_CYCLE_NS * apic->divide_count;
Jan Kiszka9bc57912011-09-12 14:10:22 +0200821
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800822 if (!apic->lapic_timer.period)
823 return;
824 /*
825 * Do not allow the guest to program periodic timers with small
826 * interval, since the hrtimers are not throttled by the host
827 * scheduler.
828 */
829 if (apic_lvtt_period(apic)) {
830 s64 min_period = min_timer_period_us * 1000LL;
831
832 if (apic->lapic_timer.period < min_period) {
833 pr_info_ratelimited(
834 "kvm: vcpu %i: requested %lld ns "
835 "lapic timer period limited to %lld ns\n",
836 apic->vcpu->vcpu_id,
837 apic->lapic_timer.period, min_period);
838 apic->lapic_timer.period = min_period;
839 }
Jan Kiszka9bc57912011-09-12 14:10:22 +0200840 }
Avi Kivity0b975a32008-02-24 14:37:50 +0200841
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800842 hrtimer_start(&apic->lapic_timer.timer,
843 ktime_add_ns(now, apic->lapic_timer.period),
844 HRTIMER_MODE_ABS);
Eddie Dong97222cc2007-09-12 10:58:04 +0300845
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800846 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
Eddie Dong97222cc2007-09-12 10:58:04 +0300847 PRIx64 ", "
848 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800849 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300850 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
851 apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300852 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300853 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300854 apic->lapic_timer.period)));
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800855 } else if (apic_lvtt_tscdeadline(apic)) {
856 /* lapic timer in tsc deadline mode */
857 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
858 u64 ns = 0;
859 struct kvm_vcpu *vcpu = apic->vcpu;
Zachary Amsdencc578282012-02-03 15:43:50 -0200860 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800861 unsigned long flags;
862
863 if (unlikely(!tscdeadline || !this_tsc_khz))
864 return;
865
866 local_irq_save(flags);
867
868 now = apic->lapic_timer.timer.base->get_time();
869 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu);
870 if (likely(tscdeadline > guest_tsc)) {
871 ns = (tscdeadline - guest_tsc) * 1000000ULL;
872 do_div(ns, this_tsc_khz);
873 }
874 hrtimer_start(&apic->lapic_timer.timer,
875 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
876
877 local_irq_restore(flags);
878 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300879}
880
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200881static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
882{
883 int nmi_wd_enabled = apic_lvt_nmi_mode(apic_get_reg(apic, APIC_LVT0));
884
885 if (apic_lvt_nmi_mode(lvt0_val)) {
886 if (!nmi_wd_enabled) {
887 apic_debug("Receive NMI setting on APIC_LVT0 "
888 "for cpu %d\n", apic->vcpu->vcpu_id);
889 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
890 }
891 } else if (nmi_wd_enabled)
892 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
893}
894
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300895static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300896{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300897 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300898
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300899 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300900
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300901 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300902 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300903 if (!apic_x2apic_mode(apic))
904 apic_set_reg(apic, APIC_ID, val);
905 else
906 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300907 break;
908
909 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +0200910 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +0300911 apic_set_tpr(apic, val & 0xff);
912 break;
913
914 case APIC_EOI:
915 apic_set_eoi(apic);
916 break;
917
918 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300919 if (!apic_x2apic_mode(apic))
920 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
921 else
922 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300923 break;
924
925 case APIC_DFR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300926 if (!apic_x2apic_mode(apic))
927 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
928 else
929 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300930 break;
931
Gleb Natapovfc61b802009-07-05 17:39:35 +0300932 case APIC_SPIV: {
933 u32 mask = 0x3ff;
934 if (apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
935 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300936 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +0300937 if (!(val & APIC_SPIV_APIC_ENABLED)) {
938 int i;
939 u32 lvt_val;
940
941 for (i = 0; i < APIC_LVT_NUM; i++) {
942 lvt_val = apic_get_reg(apic,
943 APIC_LVTT + 0x10 * i);
944 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
945 lvt_val | APIC_LVT_MASKED);
946 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300947 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300948
949 }
950 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300951 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300952 case APIC_ICR:
953 /* No delay here, so we always clear the pending bit */
954 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
955 apic_send_ipi(apic);
956 break;
957
958 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300959 if (!apic_x2apic_mode(apic))
960 val &= 0xff000000;
961 apic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300962 break;
963
Jan Kiszka23930f92008-09-26 09:30:52 +0200964 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200965 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300966 case APIC_LVTTHMR:
967 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +0300968 case APIC_LVT1:
969 case APIC_LVTERR:
970 /* TODO: Check vector */
971 if (!apic_sw_enabled(apic))
972 val |= APIC_LVT_MASKED;
973
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300974 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
975 apic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300976
977 break;
978
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800979 case APIC_LVTT:
980 if ((apic_get_reg(apic, APIC_LVTT) &
981 apic->lapic_timer.timer_mode_mask) !=
982 (val & apic->lapic_timer.timer_mode_mask))
983 hrtimer_cancel(&apic->lapic_timer.timer);
984
985 if (!apic_sw_enabled(apic))
986 val |= APIC_LVT_MASKED;
987 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
988 apic_set_reg(apic, APIC_LVTT, val);
989 break;
990
Eddie Dong97222cc2007-09-12 10:58:04 +0300991 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800992 if (apic_lvtt_tscdeadline(apic))
993 break;
994
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300995 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300996 apic_set_reg(apic, APIC_TMICT, val);
997 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300998 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300999
1000 case APIC_TDCR:
1001 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +02001002 apic_debug("KVM_WRITE:TDCR %x\n", val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001003 apic_set_reg(apic, APIC_TDCR, val);
1004 update_divide_count(apic);
1005 break;
1006
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001007 case APIC_ESR:
1008 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +02001009 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001010 ret = 1;
1011 }
1012 break;
1013
1014 case APIC_SELF_IPI:
1015 if (apic_x2apic_mode(apic)) {
1016 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1017 } else
1018 ret = 1;
1019 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001020 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001021 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001022 break;
1023 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001024 if (ret)
1025 apic_debug("Local APIC Write to read-only register %x\n", reg);
1026 return ret;
1027}
1028
1029static int apic_mmio_write(struct kvm_io_device *this,
1030 gpa_t address, int len, const void *data)
1031{
1032 struct kvm_lapic *apic = to_lapic(this);
1033 unsigned int offset = address - apic->base_address;
1034 u32 val;
1035
1036 if (!apic_mmio_in_range(apic, address))
1037 return -EOPNOTSUPP;
1038
1039 /*
1040 * APIC register must be aligned on 128-bits boundary.
1041 * 32/64/128 bits registers must be accessed thru 32 bits.
1042 * Refer SDM 8.4.1
1043 */
1044 if (len != 4 || (offset & 0xf)) {
1045 /* Don't shout loud, $infamous_os would cause only noise. */
1046 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
Sheng Yang756975b2009-07-06 11:05:39 +08001047 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001048 }
1049
1050 val = *(u32*)data;
1051
1052 /* too common printing */
1053 if (offset != APIC_EOI)
1054 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1055 "0x%x\n", __func__, offset, len, val);
1056
1057 apic_reg_write(apic, offset & 0xff0, val);
1058
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001059 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001060}
1061
Kevin Tian58fbbf22011-08-30 13:56:17 +03001062void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1063{
1064 struct kvm_lapic *apic = vcpu->arch.apic;
1065
1066 if (apic)
1067 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1068}
1069EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1070
Rusty Russelld5894442007-10-08 10:48:30 +10001071void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001072{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001073 struct kvm_lapic *apic = vcpu->arch.apic;
1074
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001075 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001076 return;
1077
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001078 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001079
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001080 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1081 static_key_slow_dec_deferred(&apic_hw_disabled);
1082
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001083 if (!(apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED))
1084 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03001085
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001086 if (apic->regs)
1087 free_page((unsigned long)apic->regs);
1088
1089 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001090}
1091
1092/*
1093 *----------------------------------------------------------------------
1094 * LAPIC interface
1095 *----------------------------------------------------------------------
1096 */
1097
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001098u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1099{
1100 struct kvm_lapic *apic = vcpu->arch.apic;
1101 if (!apic)
1102 return 0;
1103
1104 if (apic_lvtt_oneshot(apic) || apic_lvtt_period(apic))
1105 return 0;
1106
1107 return apic->lapic_timer.tscdeadline;
1108}
1109
1110void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1111{
1112 struct kvm_lapic *apic = vcpu->arch.apic;
1113 if (!apic)
1114 return;
1115
1116 if (apic_lvtt_oneshot(apic) || apic_lvtt_period(apic))
1117 return;
1118
1119 hrtimer_cancel(&apic->lapic_timer.timer);
1120 apic->lapic_timer.tscdeadline = data;
1121 start_apic_timer(apic);
1122}
1123
Eddie Dong97222cc2007-09-12 10:58:04 +03001124void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1125{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001126 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001127
1128 if (!apic)
1129 return;
Avi Kivityb93463a2007-10-25 16:52:32 +02001130 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
1131 | (apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03001132}
1133
1134u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1135{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001136 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001137 u64 tpr;
1138
1139 if (!apic)
1140 return 0;
1141 tpr = (u64) apic_get_reg(apic, APIC_TASKPRI);
1142
1143 return (tpr & 0xf0) >> 4;
1144}
1145
1146void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1147{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001148 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001149
1150 if (!apic) {
1151 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001152 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +03001153 return;
1154 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001155
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001156 /* update jump label if enable bit changes */
1157 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1158 if (value & MSR_IA32_APICBASE_ENABLE)
1159 static_key_slow_dec_deferred(&apic_hw_disabled);
1160 else
1161 static_key_slow_inc(&apic_hw_disabled.key);
1162 }
1163
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001164 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001165 value &= ~MSR_IA32_APICBASE_BSP;
1166
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001167 vcpu->arch.apic_base = value;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001168 if (apic_x2apic_mode(apic)) {
1169 u32 id = kvm_apic_id(apic);
1170 u32 ldr = ((id & ~0xf) << 16) | (1 << (id & 0xf));
1171 apic_set_reg(apic, APIC_LDR, ldr);
1172 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001173 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03001174 MSR_IA32_APICBASE_BASE;
1175
1176 /* with FSB delivery interrupt, we can restart APIC functionality */
1177 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001178 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001179
1180}
1181
He, Qingc5ec1532007-09-03 17:07:41 +03001182void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001183{
1184 struct kvm_lapic *apic;
1185 int i;
1186
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001187 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +03001188
1189 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001190 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001191 ASSERT(apic != NULL);
1192
1193 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001194 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001195
1196 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001197 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001198
1199 for (i = 0; i < APIC_LVT_NUM; i++)
1200 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +08001201 apic_set_reg(apic, APIC_LVT0,
1202 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +03001203
1204 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001205 apic_set_spiv(apic, 0xff);
Eddie Dong97222cc2007-09-12 10:58:04 +03001206 apic_set_reg(apic, APIC_TASKPRI, 0);
1207 apic_set_reg(apic, APIC_LDR, 0);
1208 apic_set_reg(apic, APIC_ESR, 0);
1209 apic_set_reg(apic, APIC_ICR, 0);
1210 apic_set_reg(apic, APIC_ICR2, 0);
1211 apic_set_reg(apic, APIC_TDCR, 0);
1212 apic_set_reg(apic, APIC_TMICT, 0);
1213 for (i = 0; i < 8; i++) {
1214 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1215 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1216 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1217 }
Gleb Natapov33e4c682009-06-11 11:06:51 +03001218 apic->irr_pending = false;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001219 apic->isr_count = 0;
1220 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02001221 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001222 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001223 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001224 kvm_lapic_set_base(vcpu,
1225 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001226 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001227 apic_update_ppr(apic);
1228
Gleb Natapove1035712009-03-05 16:34:59 +02001229 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03001230 vcpu->arch.apic_attention = 0;
Gleb Natapove1035712009-03-05 16:34:59 +02001231
Eddie Dong97222cc2007-09-12 10:58:04 +03001232 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001233 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001234 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001235 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001236}
1237
Gleb Natapov343f94f2009-03-05 16:34:54 +02001238bool kvm_apic_present(struct kvm_vcpu *vcpu)
1239{
1240 return vcpu->arch.apic && apic_hw_enabled(vcpu->arch.apic);
1241}
1242
Eddie Dong97222cc2007-09-12 10:58:04 +03001243int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
1244{
Gleb Natapov343f94f2009-03-05 16:34:54 +02001245 return kvm_apic_present(vcpu) && apic_sw_enabled(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001246}
1247
1248/*
1249 *----------------------------------------------------------------------
1250 * timer interface
1251 *----------------------------------------------------------------------
1252 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001253
Avi Kivity2a6eac92012-07-26 18:01:51 +03001254static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001255{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001256 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001257}
1258
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001259int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1260{
1261 struct kvm_lapic *lapic = vcpu->arch.apic;
1262
Marcelo Tosatti54aaace2008-05-14 02:29:06 -03001263 if (lapic && apic_enabled(lapic) && apic_lvt_enabled(lapic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001264 return atomic_read(&lapic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001265
1266 return 0;
1267}
1268
Avi Kivity89342082011-11-10 14:57:21 +02001269int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001270{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001271 u32 reg = apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001272 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001273
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001274 if (apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001275 vector = reg & APIC_VECTOR_MASK;
1276 mode = reg & APIC_MODE_MASK;
1277 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1278 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1279 }
1280 return 0;
1281}
1282
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001283void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001284{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001285 struct kvm_lapic *apic = vcpu->arch.apic;
1286
1287 if (apic)
1288 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001289}
1290
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001291static const struct kvm_io_device_ops apic_mmio_ops = {
1292 .read = apic_mmio_read,
1293 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001294};
1295
Avi Kivitye9d90d42012-07-26 18:01:50 +03001296static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1297{
1298 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03001299 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1300 struct kvm_vcpu *vcpu = apic->vcpu;
Avi Kivitye9d90d42012-07-26 18:01:50 +03001301 wait_queue_head_t *q = &vcpu->wq;
1302
1303 /*
1304 * There is a race window between reading and incrementing, but we do
1305 * not care about potentially losing timer events in the !reinject
1306 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1307 * in vcpu_enter_guest.
1308 */
Avi Kivity2a6eac92012-07-26 18:01:51 +03001309 if (!atomic_read(&ktimer->pending)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001310 atomic_inc(&ktimer->pending);
1311 /* FIXME: this code should not know anything about vcpus */
1312 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1313 }
1314
1315 if (waitqueue_active(q))
1316 wake_up_interruptible(q);
1317
Avi Kivity2a6eac92012-07-26 18:01:51 +03001318 if (lapic_is_periodic(apic)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001319 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1320 return HRTIMER_RESTART;
1321 } else
1322 return HRTIMER_NORESTART;
1323}
1324
Eddie Dong97222cc2007-09-12 10:58:04 +03001325int kvm_create_lapic(struct kvm_vcpu *vcpu)
1326{
1327 struct kvm_lapic *apic;
1328
1329 ASSERT(vcpu != NULL);
1330 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1331
1332 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1333 if (!apic)
1334 goto nomem;
1335
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001336 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001337
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001338 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1339 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001340 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1341 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001342 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001343 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001344 apic->vcpu = vcpu;
1345
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001346 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1347 HRTIMER_MODE_ABS);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001348 apic->lapic_timer.timer.function = apic_timer_fn;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001349
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001350 /*
1351 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1352 * thinking that APIC satet has changed.
1353 */
1354 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapov6aed64a2012-08-05 15:58:28 +03001355 kvm_lapic_set_base(vcpu,
1356 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
Eddie Dong97222cc2007-09-12 10:58:04 +03001357
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001358 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
He, Qingc5ec1532007-09-03 17:07:41 +03001359 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001360 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001361
1362 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001363nomem_free_apic:
1364 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001365nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001366 return -ENOMEM;
1367}
Eddie Dong97222cc2007-09-12 10:58:04 +03001368
1369int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1370{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001371 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001372 int highest_irr;
1373
1374 if (!apic || !apic_enabled(apic))
1375 return -1;
1376
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001377 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001378 highest_irr = apic_find_highest_irr(apic);
1379 if ((highest_irr == -1) ||
1380 ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI)))
1381 return -1;
1382 return highest_irr;
1383}
1384
Qing He40487c62007-09-17 14:47:13 +08001385int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1386{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001387 u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001388 int r = 0;
1389
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001390 if (!apic_hw_enabled(vcpu->arch.apic))
1391 r = 1;
1392 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1393 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1394 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001395 return r;
1396}
1397
Eddie Dong1b9778d2007-09-03 16:56:58 +03001398void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1399{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001400 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001401
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001402 if (apic && atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001403 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001404 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001405 }
1406}
1407
Eddie Dong97222cc2007-09-12 10:58:04 +03001408int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1409{
1410 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001411 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001412
1413 if (vector == -1)
1414 return -1;
1415
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001416 apic_set_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001417 apic_update_ppr(apic);
1418 apic_clear_irr(vector, apic);
1419 return vector;
1420}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001421
1422void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1423{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001424 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001425
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001426 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001427 kvm_apic_set_version(vcpu);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001428 apic_set_spiv(apic, apic_get_reg(apic, APIC_SPIV));
Gleb Natapovfc61b802009-07-05 17:39:35 +03001429
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001430 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001431 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001432 update_divide_count(apic);
1433 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001434 apic->irr_pending = true;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001435 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
1436 apic->highest_isr_cache = -1;
Avi Kivity3842d132010-07-27 12:30:24 +03001437 kvm_make_request(KVM_REQ_EVENT, vcpu);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001438}
Eddie Donga3d7f852007-09-03 16:15:12 +03001439
Avi Kivity2f52d582008-01-16 12:49:30 +02001440void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001441{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001442 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Donga3d7f852007-09-03 16:15:12 +03001443 struct hrtimer *timer;
1444
1445 if (!apic)
1446 return;
1447
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001448 timer = &apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001449 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d522008-09-01 14:55:57 -07001450 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001451}
Avi Kivityb93463a2007-10-25 16:52:32 +02001452
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001453/*
1454 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1455 *
1456 * Detect whether guest triggered PV EOI since the
1457 * last entry. If yes, set EOI on guests's behalf.
1458 * Clear PV EOI in guest memory in any case.
1459 */
1460static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1461 struct kvm_lapic *apic)
1462{
1463 bool pending;
1464 int vector;
1465 /*
1466 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1467 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1468 *
1469 * KVM_APIC_PV_EOI_PENDING is unset:
1470 * -> host disabled PV EOI.
1471 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1472 * -> host enabled PV EOI, guest did not execute EOI yet.
1473 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1474 * -> host enabled PV EOI, guest executed EOI.
1475 */
1476 BUG_ON(!pv_eoi_enabled(vcpu));
1477 pending = pv_eoi_get_pending(vcpu);
1478 /*
1479 * Clear pending bit in any case: it will be set again on vmentry.
1480 * While this might not be ideal from performance point of view,
1481 * this makes sure pv eoi is only enabled when we know it's safe.
1482 */
1483 pv_eoi_clr_pending(vcpu);
1484 if (pending)
1485 return;
1486 vector = apic_set_eoi(apic);
1487 trace_kvm_pv_eoi(apic, vector);
1488}
1489
Avi Kivityb93463a2007-10-25 16:52:32 +02001490void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1491{
1492 u32 data;
1493 void *vapic;
1494
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001495 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1496 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1497
Gleb Natapov41383772012-04-19 14:06:29 +03001498 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001499 return;
1500
Cong Wang8fd75e12011-11-25 23:14:17 +08001501 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001502 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
Cong Wang8fd75e12011-11-25 23:14:17 +08001503 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001504
1505 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1506}
1507
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001508/*
1509 * apic_sync_pv_eoi_to_guest - called before vmentry
1510 *
1511 * Detect whether it's safe to enable PV EOI and
1512 * if yes do so.
1513 */
1514static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1515 struct kvm_lapic *apic)
1516{
1517 if (!pv_eoi_enabled(vcpu) ||
1518 /* IRR set or many bits in ISR: could be nested. */
1519 apic->irr_pending ||
1520 /* Cache not set: could be safe but we don't bother. */
1521 apic->highest_isr_cache == -1 ||
1522 /* Need EOI to update ioapic. */
1523 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1524 /*
1525 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1526 * so we need not do anything here.
1527 */
1528 return;
1529 }
1530
1531 pv_eoi_set_pending(apic->vcpu);
1532}
1533
Avi Kivityb93463a2007-10-25 16:52:32 +02001534void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1535{
1536 u32 data, tpr;
1537 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001538 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02001539 void *vapic;
1540
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001541 apic_sync_pv_eoi_to_guest(vcpu, apic);
1542
Gleb Natapov41383772012-04-19 14:06:29 +03001543 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001544 return;
1545
Avi Kivityb93463a2007-10-25 16:52:32 +02001546 tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff;
1547 max_irr = apic_find_highest_irr(apic);
1548 if (max_irr < 0)
1549 max_irr = 0;
1550 max_isr = apic_find_highest_isr(apic);
1551 if (max_isr < 0)
1552 max_isr = 0;
1553 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1554
Cong Wang8fd75e12011-11-25 23:14:17 +08001555 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001556 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
Cong Wang8fd75e12011-11-25 23:14:17 +08001557 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001558}
1559
1560void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1561{
Avi Kivityb93463a2007-10-25 16:52:32 +02001562 vcpu->arch.apic->vapic_addr = vapic_addr;
Gleb Natapov41383772012-04-19 14:06:29 +03001563 if (vapic_addr)
1564 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1565 else
1566 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Avi Kivityb93463a2007-10-25 16:52:32 +02001567}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001568
1569int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1570{
1571 struct kvm_lapic *apic = vcpu->arch.apic;
1572 u32 reg = (msr - APIC_BASE_MSR) << 4;
1573
1574 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1575 return 1;
1576
1577 /* if this is ICR write vector before command */
1578 if (msr == 0x830)
1579 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1580 return apic_reg_write(apic, reg, (u32)data);
1581}
1582
1583int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1584{
1585 struct kvm_lapic *apic = vcpu->arch.apic;
1586 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1587
1588 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1589 return 1;
1590
1591 if (apic_reg_read(apic, reg, 4, &low))
1592 return 1;
1593 if (msr == 0x830)
1594 apic_reg_read(apic, APIC_ICR2, 4, &high);
1595
1596 *data = (((u64)high) << 32) | low;
1597
1598 return 0;
1599}
Gleb Natapov10388a02010-01-17 15:51:23 +02001600
1601int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1602{
1603 struct kvm_lapic *apic = vcpu->arch.apic;
1604
1605 if (!irqchip_in_kernel(vcpu->kvm))
1606 return 1;
1607
1608 /* if this is ICR write vector before command */
1609 if (reg == APIC_ICR)
1610 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1611 return apic_reg_write(apic, reg, (u32)data);
1612}
1613
1614int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1615{
1616 struct kvm_lapic *apic = vcpu->arch.apic;
1617 u32 low, high = 0;
1618
1619 if (!irqchip_in_kernel(vcpu->kvm))
1620 return 1;
1621
1622 if (apic_reg_read(apic, reg, 4, &low))
1623 return 1;
1624 if (reg == APIC_ICR)
1625 apic_reg_read(apic, APIC_ICR2, 4, &high);
1626
1627 *data = (((u64)high) << 32) | low;
1628
1629 return 0;
1630}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001631
1632int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1633{
1634 u64 addr = data & ~KVM_MSR_ENABLED;
1635 if (!IS_ALIGNED(addr, 4))
1636 return 1;
1637
1638 vcpu->arch.pv_eoi.msr_val = data;
1639 if (!pv_eoi_enabled(vcpu))
1640 return 0;
1641 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
1642 addr);
1643}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001644
1645void kvm_lapic_init(void)
1646{
1647 /* do not patch jump label more than once per second */
1648 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001649 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001650}