blob: 62ea2abfd96107930a9301d54f2f8992c9272116 [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
8 *
9 * Authors:
10 * Dor Laor <dor.laor@qumranet.com>
11 * Gregory Haskins <ghaskins@novell.com>
12 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
13 *
14 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
15 *
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
18 */
19
Avi Kivityedf88412007-12-16 11:02:48 +020020#include <linux/kvm_host.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030021#include <linux/kvm.h>
22#include <linux/mm.h>
23#include <linux/highmem.h>
24#include <linux/smp.h>
25#include <linux/hrtimer.h>
26#include <linux/io.h>
27#include <linux/module.h>
Roman Zippel6f6d6a12008-05-01 04:34:28 -070028#include <linux/math64.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030029#include <asm/processor.h>
30#include <asm/msr.h>
31#include <asm/page.h>
32#include <asm/current.h>
33#include <asm/apicdef.h>
34#include <asm/atomic.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030035#include "kvm_cache_regs.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030036#include "irq.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030037#include "trace.h"
Gleb Natapovfc61b802009-07-05 17:39:35 +030038#include "x86.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030039
Marcelo Tosattib682b812009-02-10 20:41:41 -020040#ifndef CONFIG_X86_64
41#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
42#else
43#define mod_64(x, y) ((x) % (y))
44#endif
45
Eddie Dong97222cc2007-09-12 10:58:04 +030046#define PRId64 "d"
47#define PRIx64 "llx"
48#define PRIu64 "u"
49#define PRIo64 "o"
50
51#define APIC_BUS_CYCLE_NS 1
52
53/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
54#define apic_debug(fmt, arg...)
55
56#define APIC_LVT_NUM 6
57/* 14 is the version for Xeon and Pentium 8.4.8*/
58#define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
59#define LAPIC_MMIO_LENGTH (1 << 12)
60/* followed define is not in apicdef.h */
61#define APIC_SHORT_MASK 0xc0000
62#define APIC_DEST_NOSHORT 0x0
63#define APIC_DEST_MASK 0x800
64#define MAX_APIC_VECTOR 256
65
66#define VEC_POS(v) ((v) & (32 - 1))
67#define REG_POS(v) (((v) >> 5) << 4)
Zhang Xiantaoad312c72007-12-13 23:50:52 +080068
Eddie Dong97222cc2007-09-12 10:58:04 +030069static inline u32 apic_get_reg(struct kvm_lapic *apic, int reg_off)
70{
71 return *((u32 *) (apic->regs + reg_off));
72}
73
74static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
75{
76 *((u32 *) (apic->regs + reg_off)) = val;
77}
78
79static inline int apic_test_and_set_vector(int vec, void *bitmap)
80{
81 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
82}
83
84static inline int apic_test_and_clear_vector(int vec, void *bitmap)
85{
86 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
87}
88
89static inline void apic_set_vector(int vec, void *bitmap)
90{
91 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
92}
93
94static inline void apic_clear_vector(int vec, void *bitmap)
95{
96 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
97}
98
99static inline int apic_hw_enabled(struct kvm_lapic *apic)
100{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800101 return (apic)->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300102}
103
104static inline int apic_sw_enabled(struct kvm_lapic *apic)
105{
106 return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED;
107}
108
109static inline int apic_enabled(struct kvm_lapic *apic)
110{
111 return apic_sw_enabled(apic) && apic_hw_enabled(apic);
112}
113
114#define LVT_MASK \
115 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
116
117#define LINT_MASK \
118 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
119 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
120
121static inline int kvm_apic_id(struct kvm_lapic *apic)
122{
123 return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
124}
125
126static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
127{
128 return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
129}
130
131static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
132{
133 return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
134}
135
136static inline int apic_lvtt_period(struct kvm_lapic *apic)
137{
138 return apic_get_reg(apic, APIC_LVTT) & APIC_LVT_TIMER_PERIODIC;
139}
140
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200141static inline int apic_lvt_nmi_mode(u32 lvt_val)
142{
143 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
144}
145
Gleb Natapovfc61b802009-07-05 17:39:35 +0300146void kvm_apic_set_version(struct kvm_vcpu *vcpu)
147{
148 struct kvm_lapic *apic = vcpu->arch.apic;
149 struct kvm_cpuid_entry2 *feat;
150 u32 v = APIC_VERSION;
151
152 if (!irqchip_in_kernel(vcpu->kvm))
153 return;
154
155 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
156 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
157 v |= APIC_LVR_DIRECTED_EOI;
158 apic_set_reg(apic, APIC_LVR, v);
159}
160
Eddie Dong97222cc2007-09-12 10:58:04 +0300161static unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
162 LVT_MASK | APIC_LVT_TIMER_PERIODIC, /* LVTT */
163 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
164 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
165 LINT_MASK, LINT_MASK, /* LVT0-1 */
166 LVT_MASK /* LVTERR */
167};
168
169static int find_highest_vector(void *bitmap)
170{
171 u32 *word = bitmap;
172 int word_offset = MAX_APIC_VECTOR >> 5;
173
174 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
175 continue;
176
177 if (likely(!word_offset && !word[0]))
178 return -1;
179 else
180 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
181}
182
183static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
184{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300185 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300186 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
187}
188
Gleb Natapov33e4c682009-06-11 11:06:51 +0300189static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300190{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300191 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300192}
193
194static inline int apic_find_highest_irr(struct kvm_lapic *apic)
195{
196 int result;
197
Gleb Natapov33e4c682009-06-11 11:06:51 +0300198 if (!apic->irr_pending)
199 return -1;
200
201 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300202 ASSERT(result == -1 || result >= 16);
203
204 return result;
205}
206
Gleb Natapov33e4c682009-06-11 11:06:51 +0300207static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
208{
209 apic->irr_pending = false;
210 apic_clear_vector(vec, apic->regs + APIC_IRR);
211 if (apic_search_irr(apic) != -1)
212 apic->irr_pending = true;
213}
214
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800215int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
216{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800217 struct kvm_lapic *apic = vcpu->arch.apic;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800218 int highest_irr;
219
Gleb Natapov33e4c682009-06-11 11:06:51 +0300220 /* This may race with setting of irr in __apic_accept_irq() and
221 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
222 * will cause vmexit immediately and the value will be recalculated
223 * on the next vmentry.
224 */
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800225 if (!apic)
226 return 0;
227 highest_irr = apic_find_highest_irr(apic);
228
229 return highest_irr;
230}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800231
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200232static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
233 int vector, int level, int trig_mode);
234
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200235int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300236{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800237 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800238
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200239 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
240 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300241}
242
243static inline int apic_find_highest_isr(struct kvm_lapic *apic)
244{
245 int result;
246
247 result = find_highest_vector(apic->regs + APIC_ISR);
248 ASSERT(result == -1 || result >= 16);
249
250 return result;
251}
252
253static void apic_update_ppr(struct kvm_lapic *apic)
254{
255 u32 tpr, isrv, ppr;
256 int isr;
257
258 tpr = apic_get_reg(apic, APIC_TASKPRI);
259 isr = apic_find_highest_isr(apic);
260 isrv = (isr != -1) ? isr : 0;
261
262 if ((tpr & 0xf0) >= (isrv & 0xf0))
263 ppr = tpr & 0xff;
264 else
265 ppr = isrv & 0xf0;
266
267 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
268 apic, ppr, isr, isrv);
269
270 apic_set_reg(apic, APIC_PROCPRI, ppr);
271}
272
273static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
274{
275 apic_set_reg(apic, APIC_TASKPRI, tpr);
276 apic_update_ppr(apic);
277}
278
279int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
280{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200281 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300282}
283
284int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
285{
286 int result = 0;
287 u8 logical_id;
288
289 logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR));
290
291 switch (apic_get_reg(apic, APIC_DFR)) {
292 case APIC_DFR_FLAT:
293 if (logical_id & mda)
294 result = 1;
295 break;
296 case APIC_DFR_CLUSTER:
297 if (((logical_id >> 4) == (mda >> 0x4))
298 && (logical_id & mda & 0xf))
299 result = 1;
300 break;
301 default:
302 printk(KERN_WARNING "Bad DFR vcpu %d: %08x\n",
303 apic->vcpu->vcpu_id, apic_get_reg(apic, APIC_DFR));
304 break;
305 }
306
307 return result;
308}
309
Gleb Natapov343f94f2009-03-05 16:34:54 +0200310int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300311 int short_hand, int dest, int dest_mode)
312{
313 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800314 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300315
316 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200317 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300318 target, source, dest, dest_mode, short_hand);
319
320 ASSERT(!target);
321 switch (short_hand) {
322 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200323 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300324 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200325 result = kvm_apic_match_physical_addr(target, dest);
326 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300327 /* Logical mode. */
328 result = kvm_apic_match_logical_addr(target, dest);
329 break;
330 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200331 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300332 break;
333 case APIC_DEST_ALLINC:
334 result = 1;
335 break;
336 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200337 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300338 break;
339 default:
340 printk(KERN_WARNING "Bad dest shorthand value %x\n",
341 short_hand);
342 break;
343 }
344
345 return result;
346}
347
348/*
349 * Add a pending IRQ into lapic.
350 * Return 1 if successfully added and 0 if discarded.
351 */
352static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
353 int vector, int level, int trig_mode)
354{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200355 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300356 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300357
358 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300359 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200360 vcpu->arch.apic_arb_prio++;
361 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300362 /* FIXME add logic for vcpu on reset */
363 if (unlikely(!apic_enabled(apic)))
364 break;
365
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200366 result = !apic_test_and_set_irr(vector, apic);
367 if (!result) {
368 if (trig_mode)
369 apic_debug("level trig mode repeatedly for "
370 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300371 break;
372 }
373
374 if (trig_mode) {
375 apic_debug("level trig mode for vector %d", vector);
376 apic_set_vector(vector, apic->regs + APIC_TMR);
377 } else
378 apic_clear_vector(vector, apic->regs + APIC_TMR);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300379 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300380 break;
381
382 case APIC_DM_REMRD:
383 printk(KERN_DEBUG "Ignoring delivery mode 3\n");
384 break;
385
386 case APIC_DM_SMI:
387 printk(KERN_DEBUG "Ignoring guest SMI\n");
388 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800389
Eddie Dong97222cc2007-09-12 10:58:04 +0300390 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200391 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800392 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200393 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300394 break;
395
396 case APIC_DM_INIT:
He, Qingc5ec1532007-09-03 17:07:41 +0300397 if (level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200398 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300399 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE)
He, Qingc5ec1532007-09-03 17:07:41 +0300400 printk(KERN_DEBUG
401 "INIT on a runnable vcpu %d\n",
402 vcpu->vcpu_id);
Avi Kivitya4535292008-04-13 17:54:35 +0300403 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
He, Qingc5ec1532007-09-03 17:07:41 +0300404 kvm_vcpu_kick(vcpu);
405 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200406 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
407 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300408 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300409 break;
410
411 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200412 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
413 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300414 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200415 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800416 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300417 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Marcelo Tosattid7690172008-09-08 15:23:48 -0300418 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300419 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300420 break;
421
Jan Kiszka23930f92008-09-26 09:30:52 +0200422 case APIC_DM_EXTINT:
423 /*
424 * Should only be called by kvm_apic_local_deliver() with LVT0,
425 * before NMI watchdog was enabled. Already handled by
426 * kvm_apic_accept_pic_intr().
427 */
428 break;
429
Eddie Dong97222cc2007-09-12 10:58:04 +0300430 default:
431 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
432 delivery_mode);
433 break;
434 }
435 return result;
436}
437
Gleb Natapove1035712009-03-05 16:34:59 +0200438int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300439{
Gleb Natapove1035712009-03-05 16:34:59 +0200440 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800441}
442
Eddie Dong97222cc2007-09-12 10:58:04 +0300443static void apic_set_eoi(struct kvm_lapic *apic)
444{
445 int vector = apic_find_highest_isr(apic);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300446 int trigger_mode;
Eddie Dong97222cc2007-09-12 10:58:04 +0300447 /*
448 * Not every write EOI will has corresponding ISR,
449 * one example is when Kernel check timer on setup_IO_APIC
450 */
451 if (vector == -1)
452 return;
453
454 apic_clear_vector(vector, apic->regs + APIC_ISR);
455 apic_update_ppr(apic);
456
457 if (apic_test_and_clear_vector(vector, apic->regs + APIC_TMR))
Marcelo Tosattif5244722008-07-26 17:01:00 -0300458 trigger_mode = IOAPIC_LEVEL_TRIG;
459 else
460 trigger_mode = IOAPIC_EDGE_TRIG;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300461 if (!(apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)) {
462 mutex_lock(&apic->vcpu->kvm->irq_lock);
463 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
464 mutex_unlock(&apic->vcpu->kvm->irq_lock);
465 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300466}
467
468static void apic_send_ipi(struct kvm_lapic *apic)
469{
470 u32 icr_low = apic_get_reg(apic, APIC_ICR);
471 u32 icr_high = apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200472 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300473
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200474 irq.vector = icr_low & APIC_VECTOR_MASK;
475 irq.delivery_mode = icr_low & APIC_MODE_MASK;
476 irq.dest_mode = icr_low & APIC_DEST_MASK;
477 irq.level = icr_low & APIC_INT_ASSERT;
478 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
479 irq.shorthand = icr_low & APIC_SHORT_MASK;
480 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300481
482 apic_debug("icr_high 0x%x, icr_low 0x%x, "
483 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
484 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400485 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200486 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
487 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300488
Marcelo Tosattifa40a822009-06-04 15:08:24 -0300489 mutex_lock(&apic->vcpu->kvm->irq_lock);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200490 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Marcelo Tosattifa40a822009-06-04 15:08:24 -0300491 mutex_unlock(&apic->vcpu->kvm->irq_lock);
Eddie Dong97222cc2007-09-12 10:58:04 +0300492}
493
494static u32 apic_get_tmcct(struct kvm_lapic *apic)
495{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200496 ktime_t remaining;
497 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200498 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300499
500 ASSERT(apic != NULL);
501
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200502 /* if initial count is 0, current count should also be 0 */
Marcelo Tosattib682b812009-02-10 20:41:41 -0200503 if (apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200504 return 0;
505
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300506 remaining = hrtimer_expires_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200507 if (ktime_to_ns(remaining) < 0)
508 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300509
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300510 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
511 tmcct = div64_u64(ns,
512 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300513
514 return tmcct;
515}
516
Avi Kivityb209749f2007-10-22 16:50:39 +0200517static void __report_tpr_access(struct kvm_lapic *apic, bool write)
518{
519 struct kvm_vcpu *vcpu = apic->vcpu;
520 struct kvm_run *run = vcpu->run;
521
522 set_bit(KVM_REQ_REPORT_TPR_ACCESS, &vcpu->requests);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300523 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200524 run->tpr_access.is_write = write;
525}
526
527static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
528{
529 if (apic->vcpu->arch.tpr_access_reporting)
530 __report_tpr_access(apic, write);
531}
532
Eddie Dong97222cc2007-09-12 10:58:04 +0300533static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
534{
535 u32 val = 0;
536
537 if (offset >= LAPIC_MMIO_LENGTH)
538 return 0;
539
540 switch (offset) {
541 case APIC_ARBPRI:
542 printk(KERN_WARNING "Access APIC ARBPRI register "
543 "which is for P6\n");
544 break;
545
546 case APIC_TMCCT: /* Timer CCR */
547 val = apic_get_tmcct(apic);
548 break;
549
Avi Kivityb209749f2007-10-22 16:50:39 +0200550 case APIC_TASKPRI:
551 report_tpr_access(apic, false);
552 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300553 default:
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800554 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300555 val = apic_get_reg(apic, offset);
556 break;
557 }
558
559 return val;
560}
561
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400562static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
563{
564 return container_of(dev, struct kvm_lapic, dev);
565}
566
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300567static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
568{
569 return apic_hw_enabled(apic) &&
570 addr >= apic->base_address &&
571 addr < apic->base_address + LAPIC_MMIO_LENGTH;
572}
573
574static int apic_mmio_read(struct kvm_io_device *this,
575 gpa_t address, int len, void *data)
Eddie Dong97222cc2007-09-12 10:58:04 +0300576{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400577 struct kvm_lapic *apic = to_lapic(this);
Eddie Dong97222cc2007-09-12 10:58:04 +0300578 unsigned int offset = address - apic->base_address;
579 unsigned char alignment = offset & 0xf;
580 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300581 if (!apic_mmio_in_range(apic, address))
582 return -EOPNOTSUPP;
Eddie Dong97222cc2007-09-12 10:58:04 +0300583
584 if ((alignment + len) > 4) {
585 printk(KERN_ERR "KVM_APIC_READ: alignment error %lx %d",
586 (unsigned long)address, len);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300587 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300588 }
589 result = __apic_read(apic, offset & ~0xf);
590
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300591 trace_kvm_apic_read(offset, result);
592
Eddie Dong97222cc2007-09-12 10:58:04 +0300593 switch (len) {
594 case 1:
595 case 2:
596 case 4:
597 memcpy(data, (char *)&result + alignment, len);
598 break;
599 default:
600 printk(KERN_ERR "Local APIC read with len = %x, "
601 "should be 1,2, or 4 instead\n", len);
602 break;
603 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300604 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300605}
606
607static void update_divide_count(struct kvm_lapic *apic)
608{
609 u32 tmp1, tmp2, tdcr;
610
611 tdcr = apic_get_reg(apic, APIC_TDCR);
612 tmp1 = tdcr & 0xf;
613 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300614 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300615
616 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400617 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300618}
619
620static void start_apic_timer(struct kvm_lapic *apic)
621{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300622 ktime_t now = apic->lapic_timer.timer.base->get_time();
Eddie Dong97222cc2007-09-12 10:58:04 +0300623
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300624 apic->lapic_timer.period = apic_get_reg(apic, APIC_TMICT) *
625 APIC_BUS_CYCLE_NS * apic->divide_count;
626 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200627
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300628 if (!apic->lapic_timer.period)
Avi Kivity0b975a32008-02-24 14:37:50 +0200629 return;
630
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300631 hrtimer_start(&apic->lapic_timer.timer,
632 ktime_add_ns(now, apic->lapic_timer.period),
Eddie Dong97222cc2007-09-12 10:58:04 +0300633 HRTIMER_MODE_ABS);
634
635 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
636 PRIx64 ", "
637 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800638 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300639 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
640 apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300641 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300642 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300643 apic->lapic_timer.period)));
Eddie Dong97222cc2007-09-12 10:58:04 +0300644}
645
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200646static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
647{
648 int nmi_wd_enabled = apic_lvt_nmi_mode(apic_get_reg(apic, APIC_LVT0));
649
650 if (apic_lvt_nmi_mode(lvt0_val)) {
651 if (!nmi_wd_enabled) {
652 apic_debug("Receive NMI setting on APIC_LVT0 "
653 "for cpu %d\n", apic->vcpu->vcpu_id);
654 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
655 }
656 } else if (nmi_wd_enabled)
657 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
658}
659
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300660static int apic_mmio_write(struct kvm_io_device *this,
661 gpa_t address, int len, const void *data)
Eddie Dong97222cc2007-09-12 10:58:04 +0300662{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400663 struct kvm_lapic *apic = to_lapic(this);
Eddie Dong97222cc2007-09-12 10:58:04 +0300664 unsigned int offset = address - apic->base_address;
665 unsigned char alignment = offset & 0xf;
666 u32 val;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300667 if (!apic_mmio_in_range(apic, address))
668 return -EOPNOTSUPP;
Eddie Dong97222cc2007-09-12 10:58:04 +0300669
670 /*
671 * APIC register must be aligned on 128-bits boundary.
672 * 32/64/128 bits registers must be accessed thru 32 bits.
673 * Refer SDM 8.4.1
674 */
675 if (len != 4 || alignment) {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200676 /* Don't shout loud, $infamous_os would cause only noise. */
677 apic_debug("apic write: bad size=%d %lx\n",
678 len, (long)address);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300679 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300680 }
681
682 val = *(u32 *) data;
683
684 /* too common printing */
685 if (offset != APIC_EOI)
686 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800687 "0x%x\n", __func__, offset, len, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300688
689 offset &= 0xff0;
690
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300691 trace_kvm_apic_write(offset, val);
Joerg Roedelc7bf23b2008-04-30 17:55:59 +0200692
Eddie Dong97222cc2007-09-12 10:58:04 +0300693 switch (offset) {
694 case APIC_ID: /* Local APIC ID */
695 apic_set_reg(apic, APIC_ID, val);
696 break;
697
698 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +0200699 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +0300700 apic_set_tpr(apic, val & 0xff);
701 break;
702
703 case APIC_EOI:
704 apic_set_eoi(apic);
705 break;
706
707 case APIC_LDR:
708 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
709 break;
710
711 case APIC_DFR:
712 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
713 break;
714
Gleb Natapovfc61b802009-07-05 17:39:35 +0300715 case APIC_SPIV: {
716 u32 mask = 0x3ff;
717 if (apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
718 mask |= APIC_SPIV_DIRECTED_EOI;
719 apic_set_reg(apic, APIC_SPIV, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +0300720 if (!(val & APIC_SPIV_APIC_ENABLED)) {
721 int i;
722 u32 lvt_val;
723
724 for (i = 0; i < APIC_LVT_NUM; i++) {
725 lvt_val = apic_get_reg(apic,
726 APIC_LVTT + 0x10 * i);
727 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
728 lvt_val | APIC_LVT_MASKED);
729 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300730 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300731
732 }
733 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300734 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300735 case APIC_ICR:
736 /* No delay here, so we always clear the pending bit */
737 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
738 apic_send_ipi(apic);
739 break;
740
741 case APIC_ICR2:
742 apic_set_reg(apic, APIC_ICR2, val & 0xff000000);
743 break;
744
Jan Kiszka23930f92008-09-26 09:30:52 +0200745 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200746 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300747 case APIC_LVTT:
748 case APIC_LVTTHMR:
749 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +0300750 case APIC_LVT1:
751 case APIC_LVTERR:
752 /* TODO: Check vector */
753 if (!apic_sw_enabled(apic))
754 val |= APIC_LVT_MASKED;
755
756 val &= apic_lvt_mask[(offset - APIC_LVTT) >> 4];
757 apic_set_reg(apic, offset, val);
758
759 break;
760
761 case APIC_TMICT:
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300762 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300763 apic_set_reg(apic, APIC_TMICT, val);
764 start_apic_timer(apic);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300765 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300766
767 case APIC_TDCR:
768 if (val & 4)
769 printk(KERN_ERR "KVM_WRITE:TDCR %x\n", val);
770 apic_set_reg(apic, APIC_TDCR, val);
771 update_divide_count(apic);
772 break;
773
774 default:
775 apic_debug("Local APIC Write to read-only register %x\n",
776 offset);
777 break;
778 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300779 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300780}
781
Rusty Russelld5894442007-10-08 10:48:30 +1000782void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +0300783{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800784 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300785 return;
786
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300787 hrtimer_cancel(&vcpu->arch.apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300788
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800789 if (vcpu->arch.apic->regs_page)
790 __free_page(vcpu->arch.apic->regs_page);
Eddie Dong97222cc2007-09-12 10:58:04 +0300791
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800792 kfree(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300793}
794
795/*
796 *----------------------------------------------------------------------
797 * LAPIC interface
798 *----------------------------------------------------------------------
799 */
800
801void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
802{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800803 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300804
805 if (!apic)
806 return;
Avi Kivityb93463a2007-10-25 16:52:32 +0200807 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
808 | (apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +0300809}
810
811u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
812{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800813 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300814 u64 tpr;
815
816 if (!apic)
817 return 0;
818 tpr = (u64) apic_get_reg(apic, APIC_TASKPRI);
819
820 return (tpr & 0xf0) >> 4;
821}
822
823void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
824{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800825 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300826
827 if (!apic) {
828 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800829 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +0300830 return;
831 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300832
833 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +0300834 value &= ~MSR_IA32_APICBASE_BSP;
835
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800836 vcpu->arch.apic_base = value;
837 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +0300838 MSR_IA32_APICBASE_BASE;
839
840 /* with FSB delivery interrupt, we can restart APIC functionality */
841 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800842 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +0300843
844}
845
He, Qingc5ec1532007-09-03 17:07:41 +0300846void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +0300847{
848 struct kvm_lapic *apic;
849 int i;
850
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800851 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +0300852
853 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800854 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300855 ASSERT(apic != NULL);
856
857 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300858 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300859
860 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
Gleb Natapovfc61b802009-07-05 17:39:35 +0300861 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300862
863 for (i = 0; i < APIC_LVT_NUM; i++)
864 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +0800865 apic_set_reg(apic, APIC_LVT0,
866 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +0300867
868 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
869 apic_set_reg(apic, APIC_SPIV, 0xff);
870 apic_set_reg(apic, APIC_TASKPRI, 0);
871 apic_set_reg(apic, APIC_LDR, 0);
872 apic_set_reg(apic, APIC_ESR, 0);
873 apic_set_reg(apic, APIC_ICR, 0);
874 apic_set_reg(apic, APIC_ICR2, 0);
875 apic_set_reg(apic, APIC_TDCR, 0);
876 apic_set_reg(apic, APIC_TMICT, 0);
877 for (i = 0; i < 8; i++) {
878 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
879 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
880 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
881 }
Gleb Natapov33e4c682009-06-11 11:06:51 +0300882 apic->irr_pending = false;
Kevin Pedrettib33ac882007-10-21 08:54:53 +0200883 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300884 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300885 if (kvm_vcpu_is_bsp(vcpu))
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800886 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
Eddie Dong97222cc2007-09-12 10:58:04 +0300887 apic_update_ppr(apic);
888
Gleb Natapove1035712009-03-05 16:34:59 +0200889 vcpu->arch.apic_arb_prio = 0;
890
Eddie Dong97222cc2007-09-12 10:58:04 +0300891 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800892 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300893 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800894 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +0300895}
896
Gleb Natapov343f94f2009-03-05 16:34:54 +0200897bool kvm_apic_present(struct kvm_vcpu *vcpu)
898{
899 return vcpu->arch.apic && apic_hw_enabled(vcpu->arch.apic);
900}
901
Eddie Dong97222cc2007-09-12 10:58:04 +0300902int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
903{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200904 return kvm_apic_present(vcpu) && apic_sw_enabled(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300905}
906
907/*
908 *----------------------------------------------------------------------
909 * timer interface
910 *----------------------------------------------------------------------
911 */
Eddie Dong1b9778d2007-09-03 16:56:58 +0300912
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300913static bool lapic_is_periodic(struct kvm_timer *ktimer)
Eddie Dong97222cc2007-09-12 10:58:04 +0300914{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300915 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic,
916 lapic_timer);
917 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300918}
919
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300920int apic_has_pending_timer(struct kvm_vcpu *vcpu)
921{
922 struct kvm_lapic *lapic = vcpu->arch.apic;
923
Marcelo Tosatti54aaace2008-05-14 02:29:06 -0300924 if (lapic && apic_enabled(lapic) && apic_lvt_enabled(lapic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300925 return atomic_read(&lapic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300926
927 return 0;
928}
929
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200930static int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +0300931{
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200932 u32 reg = apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +0200933 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +0300934
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200935 if (apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +0200936 vector = reg & APIC_VECTOR_MASK;
937 mode = reg & APIC_MODE_MASK;
938 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
939 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
940 }
941 return 0;
942}
943
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200944void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +0200945{
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200946 struct kvm_lapic *apic = vcpu->arch.apic;
947
948 if (apic)
949 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +0300950}
951
Hannes Eder386eb6e2009-03-10 22:51:09 +0100952static struct kvm_timer_ops lapic_timer_ops = {
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300953 .is_periodic = lapic_is_periodic,
954};
Eddie Dong97222cc2007-09-12 10:58:04 +0300955
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400956static const struct kvm_io_device_ops apic_mmio_ops = {
957 .read = apic_mmio_read,
958 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400959};
960
Eddie Dong97222cc2007-09-12 10:58:04 +0300961int kvm_create_lapic(struct kvm_vcpu *vcpu)
962{
963 struct kvm_lapic *apic;
964
965 ASSERT(vcpu != NULL);
966 apic_debug("apic_init %d\n", vcpu->vcpu_id);
967
968 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
969 if (!apic)
970 goto nomem;
971
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800972 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300973
974 apic->regs_page = alloc_page(GFP_KERNEL);
975 if (apic->regs_page == NULL) {
976 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
977 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +1000978 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300979 }
980 apic->regs = page_address(apic->regs_page);
981 memset(apic->regs, 0, PAGE_SIZE);
982 apic->vcpu = vcpu;
983
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300984 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
985 HRTIMER_MODE_ABS);
986 apic->lapic_timer.timer.function = kvm_timer_fn;
987 apic->lapic_timer.t_ops = &lapic_timer_ops;
988 apic->lapic_timer.kvm = vcpu->kvm;
Gleb Natapov1ed0ce02009-06-09 15:56:27 +0300989 apic->lapic_timer.vcpu = vcpu;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300990
Eddie Dong97222cc2007-09-12 10:58:04 +0300991 apic->base_address = APIC_DEFAULT_PHYS_BASE;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800992 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300993
He, Qingc5ec1532007-09-03 17:07:41 +0300994 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400995 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +0300996
997 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +1000998nomem_free_apic:
999 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001000nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001001 return -ENOMEM;
1002}
Eddie Dong97222cc2007-09-12 10:58:04 +03001003
1004int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1005{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001006 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001007 int highest_irr;
1008
1009 if (!apic || !apic_enabled(apic))
1010 return -1;
1011
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001012 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001013 highest_irr = apic_find_highest_irr(apic);
1014 if ((highest_irr == -1) ||
1015 ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI)))
1016 return -1;
1017 return highest_irr;
1018}
1019
Qing He40487c62007-09-17 14:47:13 +08001020int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1021{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001022 u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001023 int r = 0;
1024
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001025 if (kvm_vcpu_is_bsp(vcpu)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001026 if (!apic_hw_enabled(vcpu->arch.apic))
Qing He40487c62007-09-17 14:47:13 +08001027 r = 1;
1028 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1029 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1030 r = 1;
1031 }
1032 return r;
1033}
1034
Eddie Dong1b9778d2007-09-03 16:56:58 +03001035void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1036{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001037 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001038
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001039 if (apic && atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001040 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001041 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001042 }
1043}
1044
Eddie Dong97222cc2007-09-12 10:58:04 +03001045int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1046{
1047 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001048 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001049
1050 if (vector == -1)
1051 return -1;
1052
1053 apic_set_vector(vector, apic->regs + APIC_ISR);
1054 apic_update_ppr(apic);
1055 apic_clear_irr(vector, apic);
1056 return vector;
1057}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001058
1059void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1060{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001061 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001062
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001063 apic->base_address = vcpu->arch.apic_base &
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001064 MSR_IA32_APICBASE_BASE;
Gleb Natapovfc61b802009-07-05 17:39:35 +03001065 kvm_apic_set_version(vcpu);
1066
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001067 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001068 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001069 update_divide_count(apic);
1070 start_apic_timer(apic);
1071}
Eddie Donga3d7f852007-09-03 16:15:12 +03001072
Avi Kivity2f52d582008-01-16 12:49:30 +02001073void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001074{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001075 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Donga3d7f852007-09-03 16:15:12 +03001076 struct hrtimer *timer;
1077
1078 if (!apic)
1079 return;
1080
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001081 timer = &apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001082 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d52008-09-01 14:55:57 -07001083 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001084}
Avi Kivityb93463a2007-10-25 16:52:32 +02001085
1086void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1087{
1088 u32 data;
1089 void *vapic;
1090
1091 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1092 return;
1093
1094 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1095 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
1096 kunmap_atomic(vapic, KM_USER0);
1097
1098 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1099}
1100
1101void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1102{
1103 u32 data, tpr;
1104 int max_irr, max_isr;
1105 struct kvm_lapic *apic;
1106 void *vapic;
1107
1108 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1109 return;
1110
1111 apic = vcpu->arch.apic;
1112 tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff;
1113 max_irr = apic_find_highest_irr(apic);
1114 if (max_irr < 0)
1115 max_irr = 0;
1116 max_isr = apic_find_highest_isr(apic);
1117 if (max_isr < 0)
1118 max_isr = 0;
1119 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1120
1121 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1122 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
1123 kunmap_atomic(vapic, KM_USER0);
1124}
1125
1126void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1127{
1128 if (!irqchip_in_kernel(vcpu->kvm))
1129 return;
1130
1131 vcpu->arch.apic->vapic_addr = vapic_addr;
1132}