blob: 998862a3c267e07a91688747b23b14bdd121f0b0 [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"
37
Marcelo Tosattib682b812009-02-10 20:41:41 -020038#ifndef CONFIG_X86_64
39#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
40#else
41#define mod_64(x, y) ((x) % (y))
42#endif
43
Eddie Dong97222cc2007-09-12 10:58:04 +030044#define PRId64 "d"
45#define PRIx64 "llx"
46#define PRIu64 "u"
47#define PRIo64 "o"
48
49#define APIC_BUS_CYCLE_NS 1
50
51/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
52#define apic_debug(fmt, arg...)
53
54#define APIC_LVT_NUM 6
55/* 14 is the version for Xeon and Pentium 8.4.8*/
56#define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
57#define LAPIC_MMIO_LENGTH (1 << 12)
58/* followed define is not in apicdef.h */
59#define APIC_SHORT_MASK 0xc0000
60#define APIC_DEST_NOSHORT 0x0
61#define APIC_DEST_MASK 0x800
62#define MAX_APIC_VECTOR 256
63
64#define VEC_POS(v) ((v) & (32 - 1))
65#define REG_POS(v) (((v) >> 5) << 4)
Zhang Xiantaoad312c72007-12-13 23:50:52 +080066
Eddie Dong97222cc2007-09-12 10:58:04 +030067static inline u32 apic_get_reg(struct kvm_lapic *apic, int reg_off)
68{
69 return *((u32 *) (apic->regs + reg_off));
70}
71
72static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
73{
74 *((u32 *) (apic->regs + reg_off)) = val;
75}
76
77static inline int apic_test_and_set_vector(int vec, void *bitmap)
78{
79 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
80}
81
82static inline int apic_test_and_clear_vector(int vec, void *bitmap)
83{
84 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
85}
86
87static inline void apic_set_vector(int vec, void *bitmap)
88{
89 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
90}
91
92static inline void apic_clear_vector(int vec, void *bitmap)
93{
94 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
95}
96
97static inline int apic_hw_enabled(struct kvm_lapic *apic)
98{
Zhang Xiantaoad312c72007-12-13 23:50:52 +080099 return (apic)->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300100}
101
102static inline int apic_sw_enabled(struct kvm_lapic *apic)
103{
104 return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED;
105}
106
107static inline int apic_enabled(struct kvm_lapic *apic)
108{
109 return apic_sw_enabled(apic) && apic_hw_enabled(apic);
110}
111
112#define LVT_MASK \
113 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
114
115#define LINT_MASK \
116 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
117 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
118
119static inline int kvm_apic_id(struct kvm_lapic *apic)
120{
121 return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
122}
123
124static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
125{
126 return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
127}
128
129static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
130{
131 return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
132}
133
134static inline int apic_lvtt_period(struct kvm_lapic *apic)
135{
136 return apic_get_reg(apic, APIC_LVTT) & APIC_LVT_TIMER_PERIODIC;
137}
138
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200139static inline int apic_lvt_nmi_mode(u32 lvt_val)
140{
141 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
142}
143
Eddie Dong97222cc2007-09-12 10:58:04 +0300144static unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
145 LVT_MASK | APIC_LVT_TIMER_PERIODIC, /* LVTT */
146 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
147 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
148 LINT_MASK, LINT_MASK, /* LVT0-1 */
149 LVT_MASK /* LVTERR */
150};
151
152static int find_highest_vector(void *bitmap)
153{
154 u32 *word = bitmap;
155 int word_offset = MAX_APIC_VECTOR >> 5;
156
157 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
158 continue;
159
160 if (likely(!word_offset && !word[0]))
161 return -1;
162 else
163 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
164}
165
166static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
167{
168 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
169}
170
171static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
172{
173 apic_clear_vector(vec, apic->regs + APIC_IRR);
174}
175
176static inline int apic_find_highest_irr(struct kvm_lapic *apic)
177{
178 int result;
179
180 result = find_highest_vector(apic->regs + APIC_IRR);
181 ASSERT(result == -1 || result >= 16);
182
183 return result;
184}
185
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800186int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
187{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800188 struct kvm_lapic *apic = vcpu->arch.apic;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800189 int highest_irr;
190
191 if (!apic)
192 return 0;
193 highest_irr = apic_find_highest_irr(apic);
194
195 return highest_irr;
196}
197EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
198
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200199static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
200 int vector, int level, int trig_mode);
201
202int kvm_apic_set_irq(struct kvm_vcpu *vcpu, u8 vec, u8 dmode, u8 trig)
Eddie Dong97222cc2007-09-12 10:58:04 +0300203{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800204 struct kvm_lapic *apic = vcpu->arch.apic;
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200205 int lapic_dmode;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800206
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200207 switch (dmode) {
208 case IOAPIC_LOWEST_PRIORITY:
209 lapic_dmode = APIC_DM_LOWEST;
210 break;
211 case IOAPIC_FIXED:
212 lapic_dmode = APIC_DM_FIXED;
213 break;
214 case IOAPIC_NMI:
215 lapic_dmode = APIC_DM_NMI;
216 break;
217 default:
218 printk(KERN_DEBUG"Ignoring delivery mode %d\n", dmode);
219 return 0;
220 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300221 }
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200222 return __apic_accept_irq(apic, lapic_dmode, vec, 1, trig);
Eddie Dong97222cc2007-09-12 10:58:04 +0300223}
224
225static inline int apic_find_highest_isr(struct kvm_lapic *apic)
226{
227 int result;
228
229 result = find_highest_vector(apic->regs + APIC_ISR);
230 ASSERT(result == -1 || result >= 16);
231
232 return result;
233}
234
235static void apic_update_ppr(struct kvm_lapic *apic)
236{
237 u32 tpr, isrv, ppr;
238 int isr;
239
240 tpr = apic_get_reg(apic, APIC_TASKPRI);
241 isr = apic_find_highest_isr(apic);
242 isrv = (isr != -1) ? isr : 0;
243
244 if ((tpr & 0xf0) >= (isrv & 0xf0))
245 ppr = tpr & 0xff;
246 else
247 ppr = isrv & 0xf0;
248
249 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
250 apic, ppr, isr, isrv);
251
252 apic_set_reg(apic, APIC_PROCPRI, ppr);
253}
254
255static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
256{
257 apic_set_reg(apic, APIC_TASKPRI, tpr);
258 apic_update_ppr(apic);
259}
260
261int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
262{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200263 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300264}
265
266int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
267{
268 int result = 0;
269 u8 logical_id;
270
271 logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR));
272
273 switch (apic_get_reg(apic, APIC_DFR)) {
274 case APIC_DFR_FLAT:
275 if (logical_id & mda)
276 result = 1;
277 break;
278 case APIC_DFR_CLUSTER:
279 if (((logical_id >> 4) == (mda >> 0x4))
280 && (logical_id & mda & 0xf))
281 result = 1;
282 break;
283 default:
284 printk(KERN_WARNING "Bad DFR vcpu %d: %08x\n",
285 apic->vcpu->vcpu_id, apic_get_reg(apic, APIC_DFR));
286 break;
287 }
288
289 return result;
290}
291
Gleb Natapov343f94f2009-03-05 16:34:54 +0200292int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300293 int short_hand, int dest, int dest_mode)
294{
295 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800296 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300297
298 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200299 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300300 target, source, dest, dest_mode, short_hand);
301
302 ASSERT(!target);
303 switch (short_hand) {
304 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200305 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300306 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200307 result = kvm_apic_match_physical_addr(target, dest);
308 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300309 /* Logical mode. */
310 result = kvm_apic_match_logical_addr(target, dest);
311 break;
312 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200313 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300314 break;
315 case APIC_DEST_ALLINC:
316 result = 1;
317 break;
318 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200319 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300320 break;
321 default:
322 printk(KERN_WARNING "Bad dest shorthand value %x\n",
323 short_hand);
324 break;
325 }
326
327 return result;
328}
329
330/*
331 * Add a pending IRQ into lapic.
332 * Return 1 if successfully added and 0 if discarded.
333 */
334static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
335 int vector, int level, int trig_mode)
336{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200337 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300338 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300339
340 switch (delivery_mode) {
341 case APIC_DM_FIXED:
342 case APIC_DM_LOWEST:
343 /* FIXME add logic for vcpu on reset */
344 if (unlikely(!apic_enabled(apic)))
345 break;
346
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200347 result = !apic_test_and_set_irr(vector, apic);
348 if (!result) {
349 if (trig_mode)
350 apic_debug("level trig mode repeatedly for "
351 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300352 break;
353 }
354
355 if (trig_mode) {
356 apic_debug("level trig mode for vector %d", vector);
357 apic_set_vector(vector, apic->regs + APIC_TMR);
358 } else
359 apic_clear_vector(vector, apic->regs + APIC_TMR);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300360 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300361 break;
362
363 case APIC_DM_REMRD:
364 printk(KERN_DEBUG "Ignoring delivery mode 3\n");
365 break;
366
367 case APIC_DM_SMI:
368 printk(KERN_DEBUG "Ignoring guest SMI\n");
369 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800370
Eddie Dong97222cc2007-09-12 10:58:04 +0300371 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200372 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800373 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200374 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300375 break;
376
377 case APIC_DM_INIT:
He, Qingc5ec1532007-09-03 17:07:41 +0300378 if (level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200379 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300380 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE)
He, Qingc5ec1532007-09-03 17:07:41 +0300381 printk(KERN_DEBUG
382 "INIT on a runnable vcpu %d\n",
383 vcpu->vcpu_id);
Avi Kivitya4535292008-04-13 17:54:35 +0300384 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
He, Qingc5ec1532007-09-03 17:07:41 +0300385 kvm_vcpu_kick(vcpu);
386 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200387 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
388 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300389 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300390 break;
391
392 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200393 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
394 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300395 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200396 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800397 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300398 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Marcelo Tosattid7690172008-09-08 15:23:48 -0300399 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300400 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300401 break;
402
Jan Kiszka23930f92008-09-26 09:30:52 +0200403 case APIC_DM_EXTINT:
404 /*
405 * Should only be called by kvm_apic_local_deliver() with LVT0,
406 * before NMI watchdog was enabled. Already handled by
407 * kvm_apic_accept_pic_intr().
408 */
409 break;
410
Eddie Dong97222cc2007-09-12 10:58:04 +0300411 default:
412 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
413 delivery_mode);
414 break;
415 }
416 return result;
417}
418
Zhang Xiantao8be54532007-12-02 22:35:57 +0800419static struct kvm_lapic *kvm_apic_round_robin(struct kvm *kvm, u8 vector,
Sheng Yang110c2fa2009-02-11 16:03:39 +0800420 unsigned long *bitmap)
Eddie Dong97222cc2007-09-12 10:58:04 +0300421{
He, Qing932f72a2007-09-03 17:01:36 +0300422 int last;
423 int next;
Qing Hee4d47f42007-09-24 17:39:41 +0800424 struct kvm_lapic *apic = NULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300425
Zhang Xiantaobfc6d222007-12-14 10:20:16 +0800426 last = kvm->arch.round_robin_prev_vcpu;
He, Qing932f72a2007-09-03 17:01:36 +0300427 next = last;
428
429 do {
430 if (++next == KVM_MAX_VCPUS)
431 next = 0;
Sheng Yang110c2fa2009-02-11 16:03:39 +0800432 if (kvm->vcpus[next] == NULL || !test_bit(next, bitmap))
He, Qing932f72a2007-09-03 17:01:36 +0300433 continue;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800434 apic = kvm->vcpus[next]->arch.apic;
He, Qing932f72a2007-09-03 17:01:36 +0300435 if (apic && apic_enabled(apic))
436 break;
437 apic = NULL;
438 } while (next != last);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +0800439 kvm->arch.round_robin_prev_vcpu = next;
He, Qing932f72a2007-09-03 17:01:36 +0300440
Qing Hee4d47f42007-09-24 17:39:41 +0800441 if (!apic)
442 printk(KERN_DEBUG "vcpu not ready for apic_round_robin\n");
He, Qing932f72a2007-09-03 17:01:36 +0300443
444 return apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300445}
446
Zhang Xiantao8be54532007-12-02 22:35:57 +0800447struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
Sheng Yang110c2fa2009-02-11 16:03:39 +0800448 unsigned long *bitmap)
Zhang Xiantao8be54532007-12-02 22:35:57 +0800449{
450 struct kvm_lapic *apic;
451
452 apic = kvm_apic_round_robin(kvm, vector, bitmap);
453 if (apic)
454 return apic->vcpu;
455 return NULL;
456}
457
Eddie Dong97222cc2007-09-12 10:58:04 +0300458static void apic_set_eoi(struct kvm_lapic *apic)
459{
460 int vector = apic_find_highest_isr(apic);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300461 int trigger_mode;
Eddie Dong97222cc2007-09-12 10:58:04 +0300462 /*
463 * Not every write EOI will has corresponding ISR,
464 * one example is when Kernel check timer on setup_IO_APIC
465 */
466 if (vector == -1)
467 return;
468
469 apic_clear_vector(vector, apic->regs + APIC_ISR);
470 apic_update_ppr(apic);
471
472 if (apic_test_and_clear_vector(vector, apic->regs + APIC_TMR))
Marcelo Tosattif5244722008-07-26 17:01:00 -0300473 trigger_mode = IOAPIC_LEVEL_TRIG;
474 else
475 trigger_mode = IOAPIC_EDGE_TRIG;
476 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300477}
478
479static void apic_send_ipi(struct kvm_lapic *apic)
480{
481 u32 icr_low = apic_get_reg(apic, APIC_ICR);
482 u32 icr_high = apic_get_reg(apic, APIC_ICR2);
483
484 unsigned int dest = GET_APIC_DEST_FIELD(icr_high);
485 unsigned int short_hand = icr_low & APIC_SHORT_MASK;
486 unsigned int trig_mode = icr_low & APIC_INT_LEVELTRIG;
487 unsigned int level = icr_low & APIC_INT_ASSERT;
488 unsigned int dest_mode = icr_low & APIC_DEST_MASK;
489 unsigned int delivery_mode = icr_low & APIC_MODE_MASK;
490 unsigned int vector = icr_low & APIC_VECTOR_MASK;
491
Gleb Natapov343f94f2009-03-05 16:34:54 +0200492 DECLARE_BITMAP(deliver_bitmask, KVM_MAX_VCPUS);
Eddie Dong97222cc2007-09-12 10:58:04 +0300493 int i;
494
495 apic_debug("icr_high 0x%x, icr_low 0x%x, "
496 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
497 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
498 icr_high, icr_low, short_hand, dest,
499 trig_mode, level, dest_mode, delivery_mode, vector);
500
Gleb Natapov343f94f2009-03-05 16:34:54 +0200501 kvm_get_intr_delivery_bitmask(apic->vcpu->kvm, apic, dest, dest_mode,
502 delivery_mode == APIC_DM_LOWEST, short_hand,
503 deliver_bitmask);
Eddie Dong97222cc2007-09-12 10:58:04 +0300504
Gleb Natapov343f94f2009-03-05 16:34:54 +0200505 while ((i = find_first_bit(deliver_bitmask, KVM_MAX_VCPUS))
506 < KVM_MAX_VCPUS) {
507 struct kvm_vcpu *vcpu = apic->vcpu->kvm->vcpus[i];
508 __clear_bit(i, deliver_bitmask);
509 if (vcpu)
510 __apic_accept_irq(vcpu->arch.apic, delivery_mode,
511 vector, level, trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300512 }
513}
514
515static u32 apic_get_tmcct(struct kvm_lapic *apic)
516{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200517 ktime_t remaining;
518 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200519 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300520
521 ASSERT(apic != NULL);
522
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200523 /* if initial count is 0, current count should also be 0 */
Marcelo Tosattib682b812009-02-10 20:41:41 -0200524 if (apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200525 return 0;
526
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300527 remaining = hrtimer_expires_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200528 if (ktime_to_ns(remaining) < 0)
529 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300530
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300531 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
532 tmcct = div64_u64(ns,
533 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300534
535 return tmcct;
536}
537
Avi Kivityb209749f2007-10-22 16:50:39 +0200538static void __report_tpr_access(struct kvm_lapic *apic, bool write)
539{
540 struct kvm_vcpu *vcpu = apic->vcpu;
541 struct kvm_run *run = vcpu->run;
542
543 set_bit(KVM_REQ_REPORT_TPR_ACCESS, &vcpu->requests);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300544 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200545 run->tpr_access.is_write = write;
546}
547
548static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
549{
550 if (apic->vcpu->arch.tpr_access_reporting)
551 __report_tpr_access(apic, write);
552}
553
Eddie Dong97222cc2007-09-12 10:58:04 +0300554static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
555{
556 u32 val = 0;
557
Joerg Roedelc7bf23b2008-04-30 17:55:59 +0200558 KVMTRACE_1D(APIC_ACCESS, apic->vcpu, (u32)offset, handler);
559
Eddie Dong97222cc2007-09-12 10:58:04 +0300560 if (offset >= LAPIC_MMIO_LENGTH)
561 return 0;
562
563 switch (offset) {
564 case APIC_ARBPRI:
565 printk(KERN_WARNING "Access APIC ARBPRI register "
566 "which is for P6\n");
567 break;
568
569 case APIC_TMCCT: /* Timer CCR */
570 val = apic_get_tmcct(apic);
571 break;
572
Avi Kivityb209749f2007-10-22 16:50:39 +0200573 case APIC_TASKPRI:
574 report_tpr_access(apic, false);
575 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300576 default:
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800577 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300578 val = apic_get_reg(apic, offset);
579 break;
580 }
581
582 return val;
583}
584
585static void apic_mmio_read(struct kvm_io_device *this,
586 gpa_t address, int len, void *data)
587{
588 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
589 unsigned int offset = address - apic->base_address;
590 unsigned char alignment = offset & 0xf;
591 u32 result;
592
593 if ((alignment + len) > 4) {
594 printk(KERN_ERR "KVM_APIC_READ: alignment error %lx %d",
595 (unsigned long)address, len);
596 return;
597 }
598 result = __apic_read(apic, offset & ~0xf);
599
600 switch (len) {
601 case 1:
602 case 2:
603 case 4:
604 memcpy(data, (char *)&result + alignment, len);
605 break;
606 default:
607 printk(KERN_ERR "Local APIC read with len = %x, "
608 "should be 1,2, or 4 instead\n", len);
609 break;
610 }
611}
612
613static void update_divide_count(struct kvm_lapic *apic)
614{
615 u32 tmp1, tmp2, tdcr;
616
617 tdcr = apic_get_reg(apic, APIC_TDCR);
618 tmp1 = tdcr & 0xf;
619 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300620 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300621
622 apic_debug("timer divide count is 0x%x\n",
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300623 apic->lapic_timer.divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300624}
625
626static void start_apic_timer(struct kvm_lapic *apic)
627{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300628 ktime_t now = apic->lapic_timer.timer.base->get_time();
Eddie Dong97222cc2007-09-12 10:58:04 +0300629
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300630 apic->lapic_timer.period = apic_get_reg(apic, APIC_TMICT) *
631 APIC_BUS_CYCLE_NS * apic->divide_count;
632 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200633
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300634 if (!apic->lapic_timer.period)
Avi Kivity0b975a32008-02-24 14:37:50 +0200635 return;
636
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300637 hrtimer_start(&apic->lapic_timer.timer,
638 ktime_add_ns(now, apic->lapic_timer.period),
Eddie Dong97222cc2007-09-12 10:58:04 +0300639 HRTIMER_MODE_ABS);
640
641 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
642 PRIx64 ", "
643 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800644 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300645 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
646 apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300647 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300648 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300649 apic->lapic_timer.period)));
Eddie Dong97222cc2007-09-12 10:58:04 +0300650}
651
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200652static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
653{
654 int nmi_wd_enabled = apic_lvt_nmi_mode(apic_get_reg(apic, APIC_LVT0));
655
656 if (apic_lvt_nmi_mode(lvt0_val)) {
657 if (!nmi_wd_enabled) {
658 apic_debug("Receive NMI setting on APIC_LVT0 "
659 "for cpu %d\n", apic->vcpu->vcpu_id);
660 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
661 }
662 } else if (nmi_wd_enabled)
663 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
664}
665
Eddie Dong97222cc2007-09-12 10:58:04 +0300666static void apic_mmio_write(struct kvm_io_device *this,
667 gpa_t address, int len, const void *data)
668{
669 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
670 unsigned int offset = address - apic->base_address;
671 unsigned char alignment = offset & 0xf;
672 u32 val;
673
674 /*
675 * APIC register must be aligned on 128-bits boundary.
676 * 32/64/128 bits registers must be accessed thru 32 bits.
677 * Refer SDM 8.4.1
678 */
679 if (len != 4 || alignment) {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200680 /* Don't shout loud, $infamous_os would cause only noise. */
681 apic_debug("apic write: bad size=%d %lx\n",
682 len, (long)address);
Eddie Dong97222cc2007-09-12 10:58:04 +0300683 return;
684 }
685
686 val = *(u32 *) data;
687
688 /* too common printing */
689 if (offset != APIC_EOI)
690 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800691 "0x%x\n", __func__, offset, len, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300692
693 offset &= 0xff0;
694
Joerg Roedelc7bf23b2008-04-30 17:55:59 +0200695 KVMTRACE_1D(APIC_ACCESS, apic->vcpu, (u32)offset, handler);
696
Eddie Dong97222cc2007-09-12 10:58:04 +0300697 switch (offset) {
698 case APIC_ID: /* Local APIC ID */
699 apic_set_reg(apic, APIC_ID, val);
700 break;
701
702 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +0200703 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +0300704 apic_set_tpr(apic, val & 0xff);
705 break;
706
707 case APIC_EOI:
708 apic_set_eoi(apic);
709 break;
710
711 case APIC_LDR:
712 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
713 break;
714
715 case APIC_DFR:
716 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
717 break;
718
719 case APIC_SPIV:
720 apic_set_reg(apic, APIC_SPIV, val & 0x3ff);
721 if (!(val & APIC_SPIV_APIC_ENABLED)) {
722 int i;
723 u32 lvt_val;
724
725 for (i = 0; i < APIC_LVT_NUM; i++) {
726 lvt_val = apic_get_reg(apic,
727 APIC_LVTT + 0x10 * i);
728 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
729 lvt_val | APIC_LVT_MASKED);
730 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300731 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300732
733 }
734 break;
735
736 case APIC_ICR:
737 /* No delay here, so we always clear the pending bit */
738 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
739 apic_send_ipi(apic);
740 break;
741
742 case APIC_ICR2:
743 apic_set_reg(apic, APIC_ICR2, val & 0xff000000);
744 break;
745
Jan Kiszka23930f92008-09-26 09:30:52 +0200746 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200747 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300748 case APIC_LVTT:
749 case APIC_LVTTHMR:
750 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +0300751 case APIC_LVT1:
752 case APIC_LVTERR:
753 /* TODO: Check vector */
754 if (!apic_sw_enabled(apic))
755 val |= APIC_LVT_MASKED;
756
757 val &= apic_lvt_mask[(offset - APIC_LVTT) >> 4];
758 apic_set_reg(apic, offset, val);
759
760 break;
761
762 case APIC_TMICT:
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300763 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300764 apic_set_reg(apic, APIC_TMICT, val);
765 start_apic_timer(apic);
766 return;
767
768 case APIC_TDCR:
769 if (val & 4)
770 printk(KERN_ERR "KVM_WRITE:TDCR %x\n", val);
771 apic_set_reg(apic, APIC_TDCR, val);
772 update_divide_count(apic);
773 break;
774
775 default:
776 apic_debug("Local APIC Write to read-only register %x\n",
777 offset);
778 break;
779 }
780
781}
782
Laurent Vivier92760492008-05-30 16:05:53 +0200783static int apic_mmio_range(struct kvm_io_device *this, gpa_t addr,
784 int len, int size)
Eddie Dong97222cc2007-09-12 10:58:04 +0300785{
786 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
787 int ret = 0;
788
789
790 if (apic_hw_enabled(apic) &&
791 (addr >= apic->base_address) &&
792 (addr < (apic->base_address + LAPIC_MMIO_LENGTH)))
793 ret = 1;
794
795 return ret;
796}
797
Rusty Russelld5894442007-10-08 10:48:30 +1000798void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +0300799{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800800 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300801 return;
802
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300803 hrtimer_cancel(&vcpu->arch.apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300804
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800805 if (vcpu->arch.apic->regs_page)
806 __free_page(vcpu->arch.apic->regs_page);
Eddie Dong97222cc2007-09-12 10:58:04 +0300807
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800808 kfree(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300809}
810
811/*
812 *----------------------------------------------------------------------
813 * LAPIC interface
814 *----------------------------------------------------------------------
815 */
816
817void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
818{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800819 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300820
821 if (!apic)
822 return;
Avi Kivityb93463a2007-10-25 16:52:32 +0200823 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
824 | (apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +0300825}
Joerg Roedelec7cf692008-04-16 16:51:16 +0200826EXPORT_SYMBOL_GPL(kvm_lapic_set_tpr);
Eddie Dong97222cc2007-09-12 10:58:04 +0300827
828u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
829{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800830 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300831 u64 tpr;
832
833 if (!apic)
834 return 0;
835 tpr = (u64) apic_get_reg(apic, APIC_TASKPRI);
836
837 return (tpr & 0xf0) >> 4;
838}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800839EXPORT_SYMBOL_GPL(kvm_lapic_get_cr8);
Eddie Dong97222cc2007-09-12 10:58:04 +0300840
841void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
842{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800843 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300844
845 if (!apic) {
846 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800847 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +0300848 return;
849 }
850 if (apic->vcpu->vcpu_id)
851 value &= ~MSR_IA32_APICBASE_BSP;
852
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800853 vcpu->arch.apic_base = value;
854 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +0300855 MSR_IA32_APICBASE_BASE;
856
857 /* with FSB delivery interrupt, we can restart APIC functionality */
858 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800859 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +0300860
861}
862
863u64 kvm_lapic_get_base(struct kvm_vcpu *vcpu)
864{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800865 return vcpu->arch.apic_base;
Eddie Dong97222cc2007-09-12 10:58:04 +0300866}
867EXPORT_SYMBOL_GPL(kvm_lapic_get_base);
868
He, Qingc5ec1532007-09-03 17:07:41 +0300869void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +0300870{
871 struct kvm_lapic *apic;
872 int i;
873
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800874 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +0300875
876 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800877 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300878 ASSERT(apic != NULL);
879
880 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300881 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300882
883 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
884 apic_set_reg(apic, APIC_LVR, APIC_VERSION);
885
886 for (i = 0; i < APIC_LVT_NUM; i++)
887 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +0800888 apic_set_reg(apic, APIC_LVT0,
889 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +0300890
891 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
892 apic_set_reg(apic, APIC_SPIV, 0xff);
893 apic_set_reg(apic, APIC_TASKPRI, 0);
894 apic_set_reg(apic, APIC_LDR, 0);
895 apic_set_reg(apic, APIC_ESR, 0);
896 apic_set_reg(apic, APIC_ICR, 0);
897 apic_set_reg(apic, APIC_ICR2, 0);
898 apic_set_reg(apic, APIC_TDCR, 0);
899 apic_set_reg(apic, APIC_TMICT, 0);
900 for (i = 0; i < 8; i++) {
901 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
902 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
903 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
904 }
Kevin Pedrettib33ac882007-10-21 08:54:53 +0200905 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300906 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300907 if (vcpu->vcpu_id == 0)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800908 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
Eddie Dong97222cc2007-09-12 10:58:04 +0300909 apic_update_ppr(apic);
910
911 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800912 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300913 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800914 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +0300915}
He, Qingc5ec1532007-09-03 17:07:41 +0300916EXPORT_SYMBOL_GPL(kvm_lapic_reset);
Eddie Dong97222cc2007-09-12 10:58:04 +0300917
Gleb Natapov343f94f2009-03-05 16:34:54 +0200918bool kvm_apic_present(struct kvm_vcpu *vcpu)
919{
920 return vcpu->arch.apic && apic_hw_enabled(vcpu->arch.apic);
921}
922
Eddie Dong97222cc2007-09-12 10:58:04 +0300923int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
924{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200925 return kvm_apic_present(vcpu) && apic_sw_enabled(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300926}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800927EXPORT_SYMBOL_GPL(kvm_lapic_enabled);
Eddie Dong97222cc2007-09-12 10:58:04 +0300928
929/*
930 *----------------------------------------------------------------------
931 * timer interface
932 *----------------------------------------------------------------------
933 */
Eddie Dong1b9778d2007-09-03 16:56:58 +0300934
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300935static bool lapic_is_periodic(struct kvm_timer *ktimer)
Eddie Dong97222cc2007-09-12 10:58:04 +0300936{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300937 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic,
938 lapic_timer);
939 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300940}
941
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300942int apic_has_pending_timer(struct kvm_vcpu *vcpu)
943{
944 struct kvm_lapic *lapic = vcpu->arch.apic;
945
Marcelo Tosatti54aaace2008-05-14 02:29:06 -0300946 if (lapic && apic_enabled(lapic) && apic_lvt_enabled(lapic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300947 return atomic_read(&lapic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300948
949 return 0;
950}
951
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200952static int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +0300953{
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200954 u32 reg = apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +0200955 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +0300956
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200957 if (apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +0200958 vector = reg & APIC_VECTOR_MASK;
959 mode = reg & APIC_MODE_MASK;
960 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
961 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
962 }
963 return 0;
964}
965
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200966void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +0200967{
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200968 struct kvm_lapic *apic = vcpu->arch.apic;
969
970 if (apic)
971 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +0300972}
973
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300974struct kvm_timer_ops lapic_timer_ops = {
975 .is_periodic = lapic_is_periodic,
976};
Eddie Dong97222cc2007-09-12 10:58:04 +0300977
978int kvm_create_lapic(struct kvm_vcpu *vcpu)
979{
980 struct kvm_lapic *apic;
981
982 ASSERT(vcpu != NULL);
983 apic_debug("apic_init %d\n", vcpu->vcpu_id);
984
985 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
986 if (!apic)
987 goto nomem;
988
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800989 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300990
991 apic->regs_page = alloc_page(GFP_KERNEL);
992 if (apic->regs_page == NULL) {
993 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
994 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +1000995 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300996 }
997 apic->regs = page_address(apic->regs_page);
998 memset(apic->regs, 0, PAGE_SIZE);
999 apic->vcpu = vcpu;
1000
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001001 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1002 HRTIMER_MODE_ABS);
1003 apic->lapic_timer.timer.function = kvm_timer_fn;
1004 apic->lapic_timer.t_ops = &lapic_timer_ops;
1005 apic->lapic_timer.kvm = vcpu->kvm;
1006 apic->lapic_timer.vcpu_id = vcpu->vcpu_id;
1007
Eddie Dong97222cc2007-09-12 10:58:04 +03001008 apic->base_address = APIC_DEFAULT_PHYS_BASE;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001009 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE;
Eddie Dong97222cc2007-09-12 10:58:04 +03001010
He, Qingc5ec1532007-09-03 17:07:41 +03001011 kvm_lapic_reset(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001012 apic->dev.read = apic_mmio_read;
1013 apic->dev.write = apic_mmio_write;
1014 apic->dev.in_range = apic_mmio_range;
1015 apic->dev.private = apic;
1016
1017 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001018nomem_free_apic:
1019 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001020nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001021 return -ENOMEM;
1022}
1023EXPORT_SYMBOL_GPL(kvm_create_lapic);
1024
1025int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1026{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001027 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001028 int highest_irr;
1029
1030 if (!apic || !apic_enabled(apic))
1031 return -1;
1032
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001033 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001034 highest_irr = apic_find_highest_irr(apic);
1035 if ((highest_irr == -1) ||
1036 ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI)))
1037 return -1;
1038 return highest_irr;
1039}
1040
Qing He40487c62007-09-17 14:47:13 +08001041int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1042{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001043 u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001044 int r = 0;
1045
1046 if (vcpu->vcpu_id == 0) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001047 if (!apic_hw_enabled(vcpu->arch.apic))
Qing He40487c62007-09-17 14:47:13 +08001048 r = 1;
1049 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1050 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1051 r = 1;
1052 }
1053 return r;
1054}
1055
Eddie Dong1b9778d2007-09-03 16:56:58 +03001056void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1057{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001058 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001059
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001060 if (apic && atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001061 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001062 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001063 }
1064}
1065
Eddie Dong97222cc2007-09-12 10:58:04 +03001066int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1067{
1068 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001069 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001070
1071 if (vector == -1)
1072 return -1;
1073
1074 apic_set_vector(vector, apic->regs + APIC_ISR);
1075 apic_update_ppr(apic);
1076 apic_clear_irr(vector, apic);
1077 return vector;
1078}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001079
1080void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1081{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001082 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001083
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001084 apic->base_address = vcpu->arch.apic_base &
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001085 MSR_IA32_APICBASE_BASE;
1086 apic_set_reg(apic, APIC_LVR, APIC_VERSION);
1087 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001088 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001089 update_divide_count(apic);
1090 start_apic_timer(apic);
1091}
Eddie Donga3d7f852007-09-03 16:15:12 +03001092
Avi Kivity2f52d582008-01-16 12:49:30 +02001093void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001094{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001095 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Donga3d7f852007-09-03 16:15:12 +03001096 struct hrtimer *timer;
1097
1098 if (!apic)
1099 return;
1100
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001101 timer = &apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001102 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d52008-09-01 14:55:57 -07001103 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001104}
Avi Kivityb93463a2007-10-25 16:52:32 +02001105
1106void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1107{
1108 u32 data;
1109 void *vapic;
1110
1111 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1112 return;
1113
1114 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1115 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
1116 kunmap_atomic(vapic, KM_USER0);
1117
1118 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1119}
1120
1121void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1122{
1123 u32 data, tpr;
1124 int max_irr, max_isr;
1125 struct kvm_lapic *apic;
1126 void *vapic;
1127
1128 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1129 return;
1130
1131 apic = vcpu->arch.apic;
1132 tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff;
1133 max_irr = apic_find_highest_irr(apic);
1134 if (max_irr < 0)
1135 max_irr = 0;
1136 max_isr = apic_find_highest_isr(apic);
1137 if (max_isr < 0)
1138 max_isr = 0;
1139 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1140
1141 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1142 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
1143 kunmap_atomic(vapic, KM_USER0);
1144}
1145
1146void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1147{
1148 if (!irqchip_in_kernel(vcpu->kvm))
1149 return;
1150
1151 vcpu->arch.apic->vapic_addr = vapic_addr;
1152}