blob: 5b46cab044a50a8425f4cf8f4d10a5c84e109eaa [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
130static inline int apic_sw_enabled(struct kvm_lapic *apic)
131{
132 return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED;
133}
134
135static inline int apic_enabled(struct kvm_lapic *apic)
136{
137 return apic_sw_enabled(apic) && apic_hw_enabled(apic);
138}
139
140#define LVT_MASK \
141 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
142
143#define LINT_MASK \
144 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
145 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
146
147static inline int kvm_apic_id(struct kvm_lapic *apic)
148{
149 return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
150}
151
152static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
153{
154 return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
155}
156
157static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
158{
159 return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
160}
161
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800162static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
163{
164 return ((apic_get_reg(apic, APIC_LVTT) &
165 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
166}
167
Eddie Dong97222cc2007-09-12 10:58:04 +0300168static inline int apic_lvtt_period(struct kvm_lapic *apic)
169{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800170 return ((apic_get_reg(apic, APIC_LVTT) &
171 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
172}
173
174static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
175{
176 return ((apic_get_reg(apic, APIC_LVTT) &
177 apic->lapic_timer.timer_mode_mask) ==
178 APIC_LVT_TIMER_TSCDEADLINE);
Eddie Dong97222cc2007-09-12 10:58:04 +0300179}
180
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200181static inline int apic_lvt_nmi_mode(u32 lvt_val)
182{
183 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
184}
185
Gleb Natapovfc61b802009-07-05 17:39:35 +0300186void kvm_apic_set_version(struct kvm_vcpu *vcpu)
187{
188 struct kvm_lapic *apic = vcpu->arch.apic;
189 struct kvm_cpuid_entry2 *feat;
190 u32 v = APIC_VERSION;
191
192 if (!irqchip_in_kernel(vcpu->kvm))
193 return;
194
195 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
196 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
197 v |= APIC_LVR_DIRECTED_EOI;
198 apic_set_reg(apic, APIC_LVR, v);
199}
200
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300201static inline int apic_x2apic_mode(struct kvm_lapic *apic)
202{
203 return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
204}
205
Eddie Dong97222cc2007-09-12 10:58:04 +0300206static unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800207 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300208 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
209 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
210 LINT_MASK, LINT_MASK, /* LVT0-1 */
211 LVT_MASK /* LVTERR */
212};
213
214static int find_highest_vector(void *bitmap)
215{
216 u32 *word = bitmap;
217 int word_offset = MAX_APIC_VECTOR >> 5;
218
219 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
220 continue;
221
222 if (likely(!word_offset && !word[0]))
223 return -1;
224 else
225 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
226}
227
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300228static u8 count_vectors(void *bitmap)
229{
230 u32 *word = bitmap;
231 int word_offset;
232 u8 count = 0;
233 for (word_offset = 0; word_offset < MAX_APIC_VECTOR >> 5; ++word_offset)
234 count += hweight32(word[word_offset << 2]);
235 return count;
236}
237
Eddie Dong97222cc2007-09-12 10:58:04 +0300238static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
239{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300240 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300241 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
242}
243
Gleb Natapov33e4c682009-06-11 11:06:51 +0300244static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300245{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300246 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300247}
248
249static inline int apic_find_highest_irr(struct kvm_lapic *apic)
250{
251 int result;
252
Gleb Natapov33e4c682009-06-11 11:06:51 +0300253 if (!apic->irr_pending)
254 return -1;
255
256 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300257 ASSERT(result == -1 || result >= 16);
258
259 return result;
260}
261
Gleb Natapov33e4c682009-06-11 11:06:51 +0300262static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
263{
264 apic->irr_pending = false;
265 apic_clear_vector(vec, apic->regs + APIC_IRR);
266 if (apic_search_irr(apic) != -1)
267 apic->irr_pending = true;
268}
269
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300270static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
271{
272 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
273 ++apic->isr_count;
274 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
275 /*
276 * ISR (in service register) bit is set when injecting an interrupt.
277 * The highest vector is injected. Thus the latest bit set matches
278 * the highest bit in ISR.
279 */
280 apic->highest_isr_cache = vec;
281}
282
283static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
284{
285 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
286 --apic->isr_count;
287 BUG_ON(apic->isr_count < 0);
288 apic->highest_isr_cache = -1;
289}
290
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800291int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
292{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800293 struct kvm_lapic *apic = vcpu->arch.apic;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800294 int highest_irr;
295
Gleb Natapov33e4c682009-06-11 11:06:51 +0300296 /* 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 */
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800301 if (!apic)
302 return 0;
303 highest_irr = apic_find_highest_irr(apic);
304
305 return highest_irr;
306}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800307
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200308static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
309 int vector, int level, int trig_mode);
310
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200311int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300312{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800313 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800314
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200315 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
316 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300317}
318
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300319static 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
Eddie Dong97222cc2007-09-12 10:58:04 +0300367static inline int apic_find_highest_isr(struct kvm_lapic *apic)
368{
369 int result;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300370 if (!apic->isr_count)
371 return -1;
372 if (likely(apic->highest_isr_cache != -1))
373 return apic->highest_isr_cache;
Eddie Dong97222cc2007-09-12 10:58:04 +0300374
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{
Avi Kivity3842d132010-07-27 12:30:24 +0300383 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300384 int isr;
385
Avi Kivity3842d132010-07-27 12:30:24 +0300386 old_ppr = apic_get_reg(apic, APIC_PROCPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300387 tpr = apic_get_reg(apic, APIC_TASKPRI);
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
Avi Kivity3842d132010-07-27 12:30:24 +0300399 if (old_ppr != ppr) {
400 apic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200401 if (ppr < old_ppr)
402 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300403 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300404}
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{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200414 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300415}
416
417int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
418{
419 int result = 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300420 u32 logical_id;
421
422 if (apic_x2apic_mode(apic)) {
423 logical_id = apic_get_reg(apic, APIC_LDR);
424 return logical_id & mda;
425 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300426
427 logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR));
428
429 switch (apic_get_reg(apic, APIC_DFR)) {
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:
Jan Kiszka7712de82011-09-12 11:25:51 +0200440 apic_debug("Bad DFR vcpu %d: %08x\n",
441 apic->vcpu->vcpu_id, apic_get_reg(apic, APIC_DFR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300442 break;
443 }
444
445 return result;
446}
447
Gleb Natapov343f94f2009-03-05 16:34:54 +0200448int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300449 int short_hand, int dest, int dest_mode)
450{
451 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800452 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300453
454 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200455 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300456 target, source, dest, dest_mode, short_hand);
457
Zachary Amsdenbd371392010-06-14 11:42:15 -1000458 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300459 switch (short_hand) {
460 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200461 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300462 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200463 result = kvm_apic_match_physical_addr(target, dest);
464 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300465 /* Logical mode. */
466 result = kvm_apic_match_logical_addr(target, dest);
467 break;
468 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200469 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300470 break;
471 case APIC_DEST_ALLINC:
472 result = 1;
473 break;
474 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200475 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300476 break;
477 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200478 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
479 short_hand);
Eddie Dong97222cc2007-09-12 10:58:04 +0300480 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{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200493 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300494 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300495
496 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300497 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200498 vcpu->arch.apic_arb_prio++;
499 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300500 /* FIXME add logic for vcpu on reset */
501 if (unlikely(!apic_enabled(apic)))
502 break;
503
Avi Kivitya5d36f82009-12-29 12:42:16 +0200504 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
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200510 result = !apic_test_and_set_irr(vector, apic);
Gleb Natapov1000ff82009-07-07 16:00:57 +0300511 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
Gleb Natapov4da74892009-08-27 16:25:04 +0300512 trig_mode, vector, !result);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200513 if (!result) {
514 if (trig_mode)
515 apic_debug("level trig mode repeatedly for "
516 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300517 break;
518 }
519
Avi Kivity3842d132010-07-27 12:30:24 +0300520 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300521 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300522 break;
523
524 case APIC_DM_REMRD:
Jan Kiszka7712de82011-09-12 11:25:51 +0200525 apic_debug("Ignoring delivery mode 3\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300526 break;
527
528 case APIC_DM_SMI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200529 apic_debug("Ignoring guest SMI\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300530 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800531
Eddie Dong97222cc2007-09-12 10:58:04 +0300532 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200533 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800534 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200535 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300536 break;
537
538 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +0100539 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200540 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300541 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300542 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300543 kvm_vcpu_kick(vcpu);
544 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200545 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
546 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300547 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300548 break;
549
550 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200551 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
552 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300553 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200554 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800555 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300556 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300557 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300558 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300559 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300560 break;
561
Jan Kiszka23930f92008-09-26 09:30:52 +0200562 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
Eddie Dong97222cc2007-09-12 10:58:04 +0300570 default:
571 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
572 delivery_mode);
573 break;
574 }
575 return result;
576}
577
Gleb Natapove1035712009-03-05 16:34:59 +0200578int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300579{
Gleb Natapove1035712009-03-05 16:34:59 +0200580 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800581}
582
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300583static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300584{
585 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300586
587 trace_kvm_eoi(apic, vector);
588
Eddie Dong97222cc2007-09-12 10:58:04 +0300589 /*
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)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300594 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300595
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300596 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300597 apic_update_ppr(apic);
598
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300599 if (!(apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
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;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300606 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300607 }
Avi Kivity3842d132010-07-27 12:30:24 +0300608 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300609 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300610}
611
612static void apic_send_ipi(struct kvm_lapic *apic)
613{
614 u32 icr_low = apic_get_reg(apic, APIC_ICR);
615 u32 icr_high = apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200616 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300617
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200618 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;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300624 if (apic_x2apic_mode(apic))
625 irq.dest_id = icr_high;
626 else
627 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300628
Gleb Natapov1000ff82009-07-07 16:00:57 +0300629 trace_kvm_apic_ipi(icr_low, irq.dest_id);
630
Eddie Dong97222cc2007-09-12 10:58:04 +0300631 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",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400634 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200635 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
636 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300637
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200638 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Eddie Dong97222cc2007-09-12 10:58:04 +0300639}
640
641static u32 apic_get_tmcct(struct kvm_lapic *apic)
642{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200643 ktime_t remaining;
644 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200645 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300646
647 ASSERT(apic != NULL);
648
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200649 /* if initial count is 0, current count should also be 0 */
Marcelo Tosattib682b812009-02-10 20:41:41 -0200650 if (apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200651 return 0;
652
Marcelo Tosattiace15462009-10-08 10:55:03 -0300653 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200654 if (ktime_to_ns(remaining) < 0)
655 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300656
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300657 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
658 tmcct = div64_u64(ns,
659 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300660
661 return tmcct;
662}
663
Avi Kivityb209749f2007-10-22 16:50:39 +0200664static 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
Avi Kivitya8eeb042010-05-10 12:34:53 +0300669 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300670 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200671 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
Eddie Dong97222cc2007-09-12 10:58:04 +0300680static 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) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300688 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;
Eddie Dong97222cc2007-09-12 10:58:04 +0300694 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200695 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300696 break;
697
698 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800699 if (apic_lvtt_tscdeadline(apic))
700 return 0;
701
Eddie Dong97222cc2007-09-12 10:58:04 +0300702 val = apic_get_tmcct(apic);
703 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +0300704 case APIC_PROCPRI:
705 apic_update_ppr(apic);
706 val = apic_get_reg(apic, offset);
707 break;
Avi Kivityb209749f2007-10-22 16:50:39 +0200708 case APIC_TASKPRI:
709 report_tpr_access(apic, false);
710 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300711 default:
712 val = apic_get_reg(apic, offset);
713 break;
714 }
715
716 return val;
717}
718
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400719static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
720{
721 return container_of(dev, struct kvm_lapic, dev);
722}
723
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300724static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
725 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300726{
Eddie Dong97222cc2007-09-12 10:58:04 +0300727 unsigned char alignment = offset & 0xf;
728 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800729 /* this bitmask has a bit cleared for each reserved register */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300730 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300731
732 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300733 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
734 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300735 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300736 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300737
738 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300739 apic_debug("KVM_APIC_READ: read reserved register %x\n",
740 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300741 return 1;
742 }
743
Eddie Dong97222cc2007-09-12 10:58:04 +0300744 result = __apic_read(apic, offset & ~0xf);
745
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300746 trace_kvm_apic_read(offset, result);
747
Eddie Dong97222cc2007-09-12 10:58:04 +0300748 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 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300759 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300760}
761
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300762static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
763{
764 return apic_hw_enabled(apic) &&
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
Eddie Dong97222cc2007-09-12 10:58:04 +0300783static void update_divide_count(struct kvm_lapic *apic)
784{
785 u32 tmp1, tmp2, tdcr;
786
787 tdcr = apic_get_reg(apic, APIC_TDCR);
788 tmp1 = tdcr & 0xf;
789 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300790 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300791
792 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400793 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300794}
795
796static void start_apic_timer(struct kvm_lapic *apic)
797{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800798 ktime_t now;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300799 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200800
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800801 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800802 /* lapic timer in oneshot or periodic mode */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800803 now = apic->lapic_timer.timer.base->get_time();
804 apic->lapic_timer.period = (u64)apic_get_reg(apic, APIC_TMICT)
805 * APIC_BUS_CYCLE_NS * apic->divide_count;
Jan Kiszka9bc57912011-09-12 14:10:22 +0200806
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800807 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 }
Jan Kiszka9bc57912011-09-12 14:10:22 +0200825 }
Avi Kivity0b975a32008-02-24 14:37:50 +0200826
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800827 hrtimer_start(&apic->lapic_timer.timer,
828 ktime_add_ns(now, apic->lapic_timer.period),
829 HRTIMER_MODE_ABS);
Eddie Dong97222cc2007-09-12 10:58:04 +0300830
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800831 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
Eddie Dong97222cc2007-09-12 10:58:04 +0300832 PRIx64 ", "
833 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800834 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300835 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
836 apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300837 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300838 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300839 apic->lapic_timer.period)));
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800840 } 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;
Zachary Amsdencc578282012-02-03 15:43:50 -0200845 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800846 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 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300864}
865
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200866static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
867{
868 int nmi_wd_enabled = apic_lvt_nmi_mode(apic_get_reg(apic, APIC_LVT0));
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
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300880static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300881{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300882 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300883
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300884 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300885
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300886 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300887 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300888 if (!apic_x2apic_mode(apic))
889 apic_set_reg(apic, APIC_ID, val);
890 else
891 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300892 break;
893
894 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +0200895 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +0300896 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:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300904 if (!apic_x2apic_mode(apic))
905 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
906 else
907 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300908 break;
909
910 case APIC_DFR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300911 if (!apic_x2apic_mode(apic))
912 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
913 else
914 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300915 break;
916
Gleb Natapovfc61b802009-07-05 17:39:35 +0300917 case APIC_SPIV: {
918 u32 mask = 0x3ff;
919 if (apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
920 mask |= APIC_SPIV_DIRECTED_EOI;
921 apic_set_reg(apic, APIC_SPIV, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +0300922 if (!(val & APIC_SPIV_APIC_ENABLED)) {
923 int i;
924 u32 lvt_val;
925
926 for (i = 0; i < APIC_LVT_NUM; i++) {
927 lvt_val = apic_get_reg(apic,
928 APIC_LVTT + 0x10 * i);
929 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
930 lvt_val | APIC_LVT_MASKED);
931 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300932 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300933
934 }
935 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300936 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300937 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:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300944 if (!apic_x2apic_mode(apic))
945 val &= 0xff000000;
946 apic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300947 break;
948
Jan Kiszka23930f92008-09-26 09:30:52 +0200949 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200950 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300951 case APIC_LVTTHMR:
952 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +0300953 case APIC_LVT1:
954 case APIC_LVTERR:
955 /* TODO: Check vector */
956 if (!apic_sw_enabled(apic))
957 val |= APIC_LVT_MASKED;
958
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300959 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
960 apic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300961
962 break;
963
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800964 case APIC_LVTT:
965 if ((apic_get_reg(apic, APIC_LVTT) &
966 apic->lapic_timer.timer_mode_mask) !=
967 (val & apic->lapic_timer.timer_mode_mask))
968 hrtimer_cancel(&apic->lapic_timer.timer);
969
970 if (!apic_sw_enabled(apic))
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
Eddie Dong97222cc2007-09-12 10:58:04 +0300976 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800977 if (apic_lvtt_tscdeadline(apic))
978 break;
979
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300980 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300981 apic_set_reg(apic, APIC_TMICT, val);
982 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300983 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300984
985 case APIC_TDCR:
986 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +0200987 apic_debug("KVM_WRITE:TDCR %x\n", val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300988 apic_set_reg(apic, APIC_TDCR, val);
989 update_divide_count(apic);
990 break;
991
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300992 case APIC_ESR:
993 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +0200994 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300995 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;
Eddie Dong97222cc2007-09-12 10:58:04 +03001005 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001006 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001007 break;
1008 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001009 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);
Sheng Yang756975b2009-07-06 11:05:39 +08001032 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001033 }
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
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001044 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001045}
1046
Kevin Tian58fbbf22011-08-30 13:56:17 +03001047void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1048{
1049 struct kvm_lapic *apic = vcpu->arch.apic;
1050
1051 if (apic)
1052 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1053}
1054EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1055
Rusty Russelld5894442007-10-08 10:48:30 +10001056void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001057{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001058 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001059 return;
1060
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001061 hrtimer_cancel(&vcpu->arch.apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001062
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001063 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1064 static_key_slow_dec_deferred(&apic_hw_disabled);
1065
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001066 if (vcpu->arch.apic->regs)
1067 free_page((unsigned long)vcpu->arch.apic->regs);
Eddie Dong97222cc2007-09-12 10:58:04 +03001068
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001069 kfree(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001070}
1071
1072/*
1073 *----------------------------------------------------------------------
1074 * LAPIC interface
1075 *----------------------------------------------------------------------
1076 */
1077
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001078u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1079{
1080 struct kvm_lapic *apic = vcpu->arch.apic;
1081 if (!apic)
1082 return 0;
1083
1084 if (apic_lvtt_oneshot(apic) || apic_lvtt_period(apic))
1085 return 0;
1086
1087 return apic->lapic_timer.tscdeadline;
1088}
1089
1090void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1091{
1092 struct kvm_lapic *apic = vcpu->arch.apic;
1093 if (!apic)
1094 return;
1095
1096 if (apic_lvtt_oneshot(apic) || apic_lvtt_period(apic))
1097 return;
1098
1099 hrtimer_cancel(&apic->lapic_timer.timer);
1100 apic->lapic_timer.tscdeadline = data;
1101 start_apic_timer(apic);
1102}
1103
Eddie Dong97222cc2007-09-12 10:58:04 +03001104void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1105{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001106 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001107
1108 if (!apic)
1109 return;
Avi Kivityb93463a2007-10-25 16:52:32 +02001110 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
1111 | (apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03001112}
1113
1114u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1115{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001116 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001117 u64 tpr;
1118
1119 if (!apic)
1120 return 0;
1121 tpr = (u64) apic_get_reg(apic, APIC_TASKPRI);
1122
1123 return (tpr & 0xf0) >> 4;
1124}
1125
1126void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1127{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001128 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001129
1130 if (!apic) {
1131 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001132 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +03001133 return;
1134 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001135
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001136 /* update jump label if enable bit changes */
1137 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1138 if (value & MSR_IA32_APICBASE_ENABLE)
1139 static_key_slow_dec_deferred(&apic_hw_disabled);
1140 else
1141 static_key_slow_inc(&apic_hw_disabled.key);
1142 }
1143
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001144 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001145 value &= ~MSR_IA32_APICBASE_BSP;
1146
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001147 vcpu->arch.apic_base = value;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001148 if (apic_x2apic_mode(apic)) {
1149 u32 id = kvm_apic_id(apic);
1150 u32 ldr = ((id & ~0xf) << 16) | (1 << (id & 0xf));
1151 apic_set_reg(apic, APIC_LDR, ldr);
1152 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001153 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03001154 MSR_IA32_APICBASE_BASE;
1155
1156 /* with FSB delivery interrupt, we can restart APIC functionality */
1157 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001158 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001159
1160}
1161
He, Qingc5ec1532007-09-03 17:07:41 +03001162void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001163{
1164 struct kvm_lapic *apic;
1165 int i;
1166
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001167 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +03001168
1169 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001170 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001171 ASSERT(apic != NULL);
1172
1173 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001174 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001175
1176 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001177 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001178
1179 for (i = 0; i < APIC_LVT_NUM; i++)
1180 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +08001181 apic_set_reg(apic, APIC_LVT0,
1182 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +03001183
1184 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
1185 apic_set_reg(apic, APIC_SPIV, 0xff);
1186 apic_set_reg(apic, APIC_TASKPRI, 0);
1187 apic_set_reg(apic, APIC_LDR, 0);
1188 apic_set_reg(apic, APIC_ESR, 0);
1189 apic_set_reg(apic, APIC_ICR, 0);
1190 apic_set_reg(apic, APIC_ICR2, 0);
1191 apic_set_reg(apic, APIC_TDCR, 0);
1192 apic_set_reg(apic, APIC_TMICT, 0);
1193 for (i = 0; i < 8; i++) {
1194 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1195 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1196 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1197 }
Gleb Natapov33e4c682009-06-11 11:06:51 +03001198 apic->irr_pending = false;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001199 apic->isr_count = 0;
1200 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02001201 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001202 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001203 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001204 kvm_lapic_set_base(vcpu,
1205 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001206 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001207 apic_update_ppr(apic);
1208
Gleb Natapove1035712009-03-05 16:34:59 +02001209 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03001210 vcpu->arch.apic_attention = 0;
Gleb Natapove1035712009-03-05 16:34:59 +02001211
Eddie Dong97222cc2007-09-12 10:58:04 +03001212 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001213 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001214 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001215 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001216}
1217
Gleb Natapov343f94f2009-03-05 16:34:54 +02001218bool kvm_apic_present(struct kvm_vcpu *vcpu)
1219{
1220 return vcpu->arch.apic && apic_hw_enabled(vcpu->arch.apic);
1221}
1222
Eddie Dong97222cc2007-09-12 10:58:04 +03001223int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
1224{
Gleb Natapov343f94f2009-03-05 16:34:54 +02001225 return kvm_apic_present(vcpu) && apic_sw_enabled(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001226}
1227
1228/*
1229 *----------------------------------------------------------------------
1230 * timer interface
1231 *----------------------------------------------------------------------
1232 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001233
Avi Kivity2a6eac92012-07-26 18:01:51 +03001234static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001235{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001236 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001237}
1238
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001239int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1240{
1241 struct kvm_lapic *lapic = vcpu->arch.apic;
1242
Marcelo Tosatti54aaace2008-05-14 02:29:06 -03001243 if (lapic && apic_enabled(lapic) && apic_lvt_enabled(lapic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001244 return atomic_read(&lapic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001245
1246 return 0;
1247}
1248
Avi Kivity89342082011-11-10 14:57:21 +02001249int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001250{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001251 u32 reg = apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001252 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001253
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001254 if (apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001255 vector = reg & APIC_VECTOR_MASK;
1256 mode = reg & APIC_MODE_MASK;
1257 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1258 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1259 }
1260 return 0;
1261}
1262
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001263void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001264{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001265 struct kvm_lapic *apic = vcpu->arch.apic;
1266
1267 if (apic)
1268 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001269}
1270
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001271static const struct kvm_io_device_ops apic_mmio_ops = {
1272 .read = apic_mmio_read,
1273 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001274};
1275
Avi Kivitye9d90d42012-07-26 18:01:50 +03001276static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1277{
1278 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03001279 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1280 struct kvm_vcpu *vcpu = apic->vcpu;
Avi Kivitye9d90d42012-07-26 18:01:50 +03001281 wait_queue_head_t *q = &vcpu->wq;
1282
1283 /*
1284 * There is a race window between reading and incrementing, but we do
1285 * not care about potentially losing timer events in the !reinject
1286 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1287 * in vcpu_enter_guest.
1288 */
Avi Kivity2a6eac92012-07-26 18:01:51 +03001289 if (!atomic_read(&ktimer->pending)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001290 atomic_inc(&ktimer->pending);
1291 /* FIXME: this code should not know anything about vcpus */
1292 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1293 }
1294
1295 if (waitqueue_active(q))
1296 wake_up_interruptible(q);
1297
Avi Kivity2a6eac92012-07-26 18:01:51 +03001298 if (lapic_is_periodic(apic)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001299 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1300 return HRTIMER_RESTART;
1301 } else
1302 return HRTIMER_NORESTART;
1303}
1304
Eddie Dong97222cc2007-09-12 10:58:04 +03001305int kvm_create_lapic(struct kvm_vcpu *vcpu)
1306{
1307 struct kvm_lapic *apic;
1308
1309 ASSERT(vcpu != NULL);
1310 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1311
1312 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1313 if (!apic)
1314 goto nomem;
1315
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001316 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001317
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001318 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1319 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001320 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1321 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001322 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001323 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001324 apic->vcpu = vcpu;
1325
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001326 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1327 HRTIMER_MODE_ABS);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001328 apic->lapic_timer.timer.function = apic_timer_fn;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001329
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001330 /*
1331 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1332 * thinking that APIC satet has changed.
1333 */
1334 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapov6aed64a2012-08-05 15:58:28 +03001335 kvm_lapic_set_base(vcpu,
1336 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
Eddie Dong97222cc2007-09-12 10:58:04 +03001337
He, Qingc5ec1532007-09-03 17:07:41 +03001338 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001339 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001340
1341 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001342nomem_free_apic:
1343 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001344nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001345 return -ENOMEM;
1346}
Eddie Dong97222cc2007-09-12 10:58:04 +03001347
1348int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1349{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001350 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001351 int highest_irr;
1352
1353 if (!apic || !apic_enabled(apic))
1354 return -1;
1355
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001356 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001357 highest_irr = apic_find_highest_irr(apic);
1358 if ((highest_irr == -1) ||
1359 ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI)))
1360 return -1;
1361 return highest_irr;
1362}
1363
Qing He40487c62007-09-17 14:47:13 +08001364int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1365{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001366 u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001367 int r = 0;
1368
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001369 if (!apic_hw_enabled(vcpu->arch.apic))
1370 r = 1;
1371 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1372 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1373 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001374 return r;
1375}
1376
Eddie Dong1b9778d2007-09-03 16:56:58 +03001377void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1378{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001379 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001380
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001381 if (apic && atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001382 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001383 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001384 }
1385}
1386
Eddie Dong97222cc2007-09-12 10:58:04 +03001387int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1388{
1389 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001390 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001391
1392 if (vector == -1)
1393 return -1;
1394
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001395 apic_set_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001396 apic_update_ppr(apic);
1397 apic_clear_irr(vector, apic);
1398 return vector;
1399}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001400
1401void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1402{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001403 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001404
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001405 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001406 kvm_apic_set_version(vcpu);
1407
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001408 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001409 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001410 update_divide_count(apic);
1411 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001412 apic->irr_pending = true;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001413 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
1414 apic->highest_isr_cache = -1;
Avi Kivity3842d132010-07-27 12:30:24 +03001415 kvm_make_request(KVM_REQ_EVENT, vcpu);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001416}
Eddie Donga3d7f852007-09-03 16:15:12 +03001417
Avi Kivity2f52d582008-01-16 12:49:30 +02001418void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001419{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001420 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Donga3d7f852007-09-03 16:15:12 +03001421 struct hrtimer *timer;
1422
1423 if (!apic)
1424 return;
1425
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001426 timer = &apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001427 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d522008-09-01 14:55:57 -07001428 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001429}
Avi Kivityb93463a2007-10-25 16:52:32 +02001430
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001431/*
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
Avi Kivityb93463a2007-10-25 16:52:32 +02001468void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1469{
1470 u32 data;
1471 void *vapic;
1472
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001473 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1474 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1475
Gleb Natapov41383772012-04-19 14:06:29 +03001476 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001477 return;
1478
Cong Wang8fd75e12011-11-25 23:14:17 +08001479 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001480 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
Cong Wang8fd75e12011-11-25 23:14:17 +08001481 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001482
1483 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1484}
1485
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001486/*
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
Avi Kivityb93463a2007-10-25 16:52:32 +02001512void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1513{
1514 u32 data, tpr;
1515 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001516 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02001517 void *vapic;
1518
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001519 apic_sync_pv_eoi_to_guest(vcpu, apic);
1520
Gleb Natapov41383772012-04-19 14:06:29 +03001521 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001522 return;
1523
Avi Kivityb93463a2007-10-25 16:52:32 +02001524 tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff;
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
Cong Wang8fd75e12011-11-25 23:14:17 +08001533 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001534 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
Cong Wang8fd75e12011-11-25 23:14:17 +08001535 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001536}
1537
1538void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1539{
Avi Kivityb93463a2007-10-25 16:52:32 +02001540 vcpu->arch.apic->vapic_addr = vapic_addr;
Gleb Natapov41383772012-04-19 14:06:29 +03001541 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);
Avi Kivityb93463a2007-10-25 16:52:32 +02001545}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001546
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}
Gleb Natapov10388a02010-01-17 15:51:23 +02001578
1579int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1580{
1581 struct kvm_lapic *apic = vcpu->arch.apic;
1582
1583 if (!irqchip_in_kernel(vcpu->kvm))
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
1597 if (!irqchip_in_kernel(vcpu->kvm))
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}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001609
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}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001622
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);
1627}