blob: e48d19394031ebfe48657ca1e84cf9a6af7d008c [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>
Eddie Dong97222cc2007-09-12 10:58:04 +030035#include "irq.h"
36
37#define PRId64 "d"
38#define PRIx64 "llx"
39#define PRIu64 "u"
40#define PRIo64 "o"
41
42#define APIC_BUS_CYCLE_NS 1
43
44/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
45#define apic_debug(fmt, arg...)
46
47#define APIC_LVT_NUM 6
48/* 14 is the version for Xeon and Pentium 8.4.8*/
49#define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
50#define LAPIC_MMIO_LENGTH (1 << 12)
51/* followed define is not in apicdef.h */
52#define APIC_SHORT_MASK 0xc0000
53#define APIC_DEST_NOSHORT 0x0
54#define APIC_DEST_MASK 0x800
55#define MAX_APIC_VECTOR 256
56
57#define VEC_POS(v) ((v) & (32 - 1))
58#define REG_POS(v) (((v) >> 5) << 4)
Zhang Xiantaoad312c72007-12-13 23:50:52 +080059
Eddie Dong97222cc2007-09-12 10:58:04 +030060static inline u32 apic_get_reg(struct kvm_lapic *apic, int reg_off)
61{
62 return *((u32 *) (apic->regs + reg_off));
63}
64
65static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
66{
67 *((u32 *) (apic->regs + reg_off)) = val;
68}
69
70static inline int apic_test_and_set_vector(int vec, void *bitmap)
71{
72 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
73}
74
75static inline int apic_test_and_clear_vector(int vec, void *bitmap)
76{
77 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
78}
79
80static inline void apic_set_vector(int vec, void *bitmap)
81{
82 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
83}
84
85static inline void apic_clear_vector(int vec, void *bitmap)
86{
87 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
88}
89
90static inline int apic_hw_enabled(struct kvm_lapic *apic)
91{
Zhang Xiantaoad312c72007-12-13 23:50:52 +080092 return (apic)->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE;
Eddie Dong97222cc2007-09-12 10:58:04 +030093}
94
95static inline int apic_sw_enabled(struct kvm_lapic *apic)
96{
97 return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED;
98}
99
100static inline int apic_enabled(struct kvm_lapic *apic)
101{
102 return apic_sw_enabled(apic) && apic_hw_enabled(apic);
103}
104
105#define LVT_MASK \
106 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
107
108#define LINT_MASK \
109 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
110 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
111
112static inline int kvm_apic_id(struct kvm_lapic *apic)
113{
114 return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
115}
116
117static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
118{
119 return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
120}
121
122static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
123{
124 return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
125}
126
127static inline int apic_lvtt_period(struct kvm_lapic *apic)
128{
129 return apic_get_reg(apic, APIC_LVTT) & APIC_LVT_TIMER_PERIODIC;
130}
131
132static unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
133 LVT_MASK | APIC_LVT_TIMER_PERIODIC, /* LVTT */
134 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
135 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
136 LINT_MASK, LINT_MASK, /* LVT0-1 */
137 LVT_MASK /* LVTERR */
138};
139
140static int find_highest_vector(void *bitmap)
141{
142 u32 *word = bitmap;
143 int word_offset = MAX_APIC_VECTOR >> 5;
144
145 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
146 continue;
147
148 if (likely(!word_offset && !word[0]))
149 return -1;
150 else
151 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
152}
153
154static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
155{
156 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
157}
158
159static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
160{
161 apic_clear_vector(vec, apic->regs + APIC_IRR);
162}
163
164static inline int apic_find_highest_irr(struct kvm_lapic *apic)
165{
166 int result;
167
168 result = find_highest_vector(apic->regs + APIC_IRR);
169 ASSERT(result == -1 || result >= 16);
170
171 return result;
172}
173
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800174int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
175{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800176 struct kvm_lapic *apic = vcpu->arch.apic;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800177 int highest_irr;
178
179 if (!apic)
180 return 0;
181 highest_irr = apic_find_highest_irr(apic);
182
183 return highest_irr;
184}
185EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
186
Zhang Xiantao8be54532007-12-02 22:35:57 +0800187int kvm_apic_set_irq(struct kvm_vcpu *vcpu, u8 vec, u8 trig)
Eddie Dong97222cc2007-09-12 10:58:04 +0300188{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800189 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800190
Eddie Dong97222cc2007-09-12 10:58:04 +0300191 if (!apic_test_and_set_irr(vec, apic)) {
192 /* a new pending irq is set in IRR */
193 if (trig)
194 apic_set_vector(vec, apic->regs + APIC_TMR);
195 else
196 apic_clear_vector(vec, apic->regs + APIC_TMR);
197 kvm_vcpu_kick(apic->vcpu);
198 return 1;
199 }
200 return 0;
201}
202
203static inline int apic_find_highest_isr(struct kvm_lapic *apic)
204{
205 int result;
206
207 result = find_highest_vector(apic->regs + APIC_ISR);
208 ASSERT(result == -1 || result >= 16);
209
210 return result;
211}
212
213static void apic_update_ppr(struct kvm_lapic *apic)
214{
215 u32 tpr, isrv, ppr;
216 int isr;
217
218 tpr = apic_get_reg(apic, APIC_TASKPRI);
219 isr = apic_find_highest_isr(apic);
220 isrv = (isr != -1) ? isr : 0;
221
222 if ((tpr & 0xf0) >= (isrv & 0xf0))
223 ppr = tpr & 0xff;
224 else
225 ppr = isrv & 0xf0;
226
227 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
228 apic, ppr, isr, isrv);
229
230 apic_set_reg(apic, APIC_PROCPRI, ppr);
231}
232
233static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
234{
235 apic_set_reg(apic, APIC_TASKPRI, tpr);
236 apic_update_ppr(apic);
237}
238
239int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
240{
241 return kvm_apic_id(apic) == dest;
242}
243
244int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
245{
246 int result = 0;
247 u8 logical_id;
248
249 logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR));
250
251 switch (apic_get_reg(apic, APIC_DFR)) {
252 case APIC_DFR_FLAT:
253 if (logical_id & mda)
254 result = 1;
255 break;
256 case APIC_DFR_CLUSTER:
257 if (((logical_id >> 4) == (mda >> 0x4))
258 && (logical_id & mda & 0xf))
259 result = 1;
260 break;
261 default:
262 printk(KERN_WARNING "Bad DFR vcpu %d: %08x\n",
263 apic->vcpu->vcpu_id, apic_get_reg(apic, APIC_DFR));
264 break;
265 }
266
267 return result;
268}
269
270static int apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
271 int short_hand, int dest, int dest_mode)
272{
273 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800274 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300275
276 apic_debug("target %p, source %p, dest 0x%x, "
277 "dest_mode 0x%x, short_hand 0x%x",
278 target, source, dest, dest_mode, short_hand);
279
280 ASSERT(!target);
281 switch (short_hand) {
282 case APIC_DEST_NOSHORT:
283 if (dest_mode == 0) {
284 /* Physical mode. */
285 if ((dest == 0xFF) || (dest == kvm_apic_id(target)))
286 result = 1;
287 } else
288 /* Logical mode. */
289 result = kvm_apic_match_logical_addr(target, dest);
290 break;
291 case APIC_DEST_SELF:
292 if (target == source)
293 result = 1;
294 break;
295 case APIC_DEST_ALLINC:
296 result = 1;
297 break;
298 case APIC_DEST_ALLBUT:
299 if (target != source)
300 result = 1;
301 break;
302 default:
303 printk(KERN_WARNING "Bad dest shorthand value %x\n",
304 short_hand);
305 break;
306 }
307
308 return result;
309}
310
311/*
312 * Add a pending IRQ into lapic.
313 * Return 1 if successfully added and 0 if discarded.
314 */
315static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
316 int vector, int level, int trig_mode)
317{
He, Qingc5ec1532007-09-03 17:07:41 +0300318 int orig_irr, result = 0;
319 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300320
321 switch (delivery_mode) {
322 case APIC_DM_FIXED:
323 case APIC_DM_LOWEST:
324 /* FIXME add logic for vcpu on reset */
325 if (unlikely(!apic_enabled(apic)))
326 break;
327
Eddie Dong1b9778d2007-09-03 16:56:58 +0300328 orig_irr = apic_test_and_set_irr(vector, apic);
329 if (orig_irr && trig_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300330 apic_debug("level trig mode repeatedly for vector %d",
331 vector);
332 break;
333 }
334
335 if (trig_mode) {
336 apic_debug("level trig mode for vector %d", vector);
337 apic_set_vector(vector, apic->regs + APIC_TMR);
338 } else
339 apic_clear_vector(vector, apic->regs + APIC_TMR);
340
Avi Kivitya4535292008-04-13 17:54:35 +0300341 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE)
He, Qingc5ec1532007-09-03 17:07:41 +0300342 kvm_vcpu_kick(vcpu);
Avi Kivitya4535292008-04-13 17:54:35 +0300343 else if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED) {
344 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
He, Qingc5ec1532007-09-03 17:07:41 +0300345 if (waitqueue_active(&vcpu->wq))
346 wake_up_interruptible(&vcpu->wq);
347 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300348
Eddie Dong1b9778d2007-09-03 16:56:58 +0300349 result = (orig_irr == 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300350 break;
351
352 case APIC_DM_REMRD:
353 printk(KERN_DEBUG "Ignoring delivery mode 3\n");
354 break;
355
356 case APIC_DM_SMI:
357 printk(KERN_DEBUG "Ignoring guest SMI\n");
358 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800359
Eddie Dong97222cc2007-09-12 10:58:04 +0300360 case APIC_DM_NMI:
Sheng Yang3419ffc2008-05-15 09:52:48 +0800361 kvm_inject_nmi(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300362 break;
363
364 case APIC_DM_INIT:
He, Qingc5ec1532007-09-03 17:07:41 +0300365 if (level) {
Avi Kivitya4535292008-04-13 17:54:35 +0300366 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE)
He, Qingc5ec1532007-09-03 17:07:41 +0300367 printk(KERN_DEBUG
368 "INIT on a runnable vcpu %d\n",
369 vcpu->vcpu_id);
Avi Kivitya4535292008-04-13 17:54:35 +0300370 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
He, Qingc5ec1532007-09-03 17:07:41 +0300371 kvm_vcpu_kick(vcpu);
372 } else {
373 printk(KERN_DEBUG
374 "Ignoring de-assert INIT to vcpu %d\n",
375 vcpu->vcpu_id);
376 }
377
Eddie Dong97222cc2007-09-12 10:58:04 +0300378 break;
379
380 case APIC_DM_STARTUP:
He, Qingc5ec1532007-09-03 17:07:41 +0300381 printk(KERN_DEBUG "SIPI to vcpu %d vector 0x%02x\n",
382 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300383 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800384 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300385 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
He, Qingc5ec1532007-09-03 17:07:41 +0300386 if (waitqueue_active(&vcpu->wq))
387 wake_up_interruptible(&vcpu->wq);
388 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300389 break;
390
391 default:
392 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
393 delivery_mode);
394 break;
395 }
396 return result;
397}
398
Zhang Xiantao8be54532007-12-02 22:35:57 +0800399static struct kvm_lapic *kvm_apic_round_robin(struct kvm *kvm, u8 vector,
Eddie Dong97222cc2007-09-12 10:58:04 +0300400 unsigned long bitmap)
401{
He, Qing932f72a2007-09-03 17:01:36 +0300402 int last;
403 int next;
Qing Hee4d47f42007-09-24 17:39:41 +0800404 struct kvm_lapic *apic = NULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300405
Zhang Xiantaobfc6d222007-12-14 10:20:16 +0800406 last = kvm->arch.round_robin_prev_vcpu;
He, Qing932f72a2007-09-03 17:01:36 +0300407 next = last;
408
409 do {
410 if (++next == KVM_MAX_VCPUS)
411 next = 0;
412 if (kvm->vcpus[next] == NULL || !test_bit(next, &bitmap))
413 continue;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800414 apic = kvm->vcpus[next]->arch.apic;
He, Qing932f72a2007-09-03 17:01:36 +0300415 if (apic && apic_enabled(apic))
416 break;
417 apic = NULL;
418 } while (next != last);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +0800419 kvm->arch.round_robin_prev_vcpu = next;
He, Qing932f72a2007-09-03 17:01:36 +0300420
Qing Hee4d47f42007-09-24 17:39:41 +0800421 if (!apic)
422 printk(KERN_DEBUG "vcpu not ready for apic_round_robin\n");
He, Qing932f72a2007-09-03 17:01:36 +0300423
424 return apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300425}
426
Zhang Xiantao8be54532007-12-02 22:35:57 +0800427struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
428 unsigned long bitmap)
429{
430 struct kvm_lapic *apic;
431
432 apic = kvm_apic_round_robin(kvm, vector, bitmap);
433 if (apic)
434 return apic->vcpu;
435 return NULL;
436}
437
Eddie Dong97222cc2007-09-12 10:58:04 +0300438static void apic_set_eoi(struct kvm_lapic *apic)
439{
440 int vector = apic_find_highest_isr(apic);
441
442 /*
443 * Not every write EOI will has corresponding ISR,
444 * one example is when Kernel check timer on setup_IO_APIC
445 */
446 if (vector == -1)
447 return;
448
449 apic_clear_vector(vector, apic->regs + APIC_ISR);
450 apic_update_ppr(apic);
451
452 if (apic_test_and_clear_vector(vector, apic->regs + APIC_TMR))
453 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector);
454}
455
456static void apic_send_ipi(struct kvm_lapic *apic)
457{
458 u32 icr_low = apic_get_reg(apic, APIC_ICR);
459 u32 icr_high = apic_get_reg(apic, APIC_ICR2);
460
461 unsigned int dest = GET_APIC_DEST_FIELD(icr_high);
462 unsigned int short_hand = icr_low & APIC_SHORT_MASK;
463 unsigned int trig_mode = icr_low & APIC_INT_LEVELTRIG;
464 unsigned int level = icr_low & APIC_INT_ASSERT;
465 unsigned int dest_mode = icr_low & APIC_DEST_MASK;
466 unsigned int delivery_mode = icr_low & APIC_MODE_MASK;
467 unsigned int vector = icr_low & APIC_VECTOR_MASK;
468
Zhang Xiantao8be54532007-12-02 22:35:57 +0800469 struct kvm_vcpu *target;
Eddie Dong97222cc2007-09-12 10:58:04 +0300470 struct kvm_vcpu *vcpu;
471 unsigned long lpr_map = 0;
472 int i;
473
474 apic_debug("icr_high 0x%x, icr_low 0x%x, "
475 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
476 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
477 icr_high, icr_low, short_hand, dest,
478 trig_mode, level, dest_mode, delivery_mode, vector);
479
480 for (i = 0; i < KVM_MAX_VCPUS; i++) {
481 vcpu = apic->vcpu->kvm->vcpus[i];
482 if (!vcpu)
483 continue;
484
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800485 if (vcpu->arch.apic &&
Eddie Dong97222cc2007-09-12 10:58:04 +0300486 apic_match_dest(vcpu, apic, short_hand, dest, dest_mode)) {
487 if (delivery_mode == APIC_DM_LOWEST)
488 set_bit(vcpu->vcpu_id, &lpr_map);
489 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800490 __apic_accept_irq(vcpu->arch.apic, delivery_mode,
Eddie Dong97222cc2007-09-12 10:58:04 +0300491 vector, level, trig_mode);
492 }
493 }
494
495 if (delivery_mode == APIC_DM_LOWEST) {
Zhang Xiantao8be54532007-12-02 22:35:57 +0800496 target = kvm_get_lowest_prio_vcpu(vcpu->kvm, vector, lpr_map);
Eddie Dong97222cc2007-09-12 10:58:04 +0300497 if (target != NULL)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800498 __apic_accept_irq(target->arch.apic, delivery_mode,
Eddie Dong97222cc2007-09-12 10:58:04 +0300499 vector, level, trig_mode);
500 }
501}
502
503static u32 apic_get_tmcct(struct kvm_lapic *apic)
504{
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200505 u64 counter_passed;
506 ktime_t passed, now;
507 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300508
509 ASSERT(apic != NULL);
510
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200511 now = apic->timer.dev.base->get_time();
512 tmcct = apic_get_reg(apic, APIC_TMICT);
513
514 /* if initial count is 0, current count should also be 0 */
515 if (tmcct == 0)
516 return 0;
517
Eddie Dong97222cc2007-09-12 10:58:04 +0300518 if (unlikely(ktime_to_ns(now) <=
519 ktime_to_ns(apic->timer.last_update))) {
520 /* Wrap around */
521 passed = ktime_add(( {
522 (ktime_t) {
523 .tv64 = KTIME_MAX -
524 (apic->timer.last_update).tv64}; }
525 ), now);
526 apic_debug("time elapsed\n");
527 } else
528 passed = ktime_sub(now, apic->timer.last_update);
529
Roman Zippel6f6d6a12008-05-01 04:34:28 -0700530 counter_passed = div64_u64(ktime_to_ns(passed),
531 (APIC_BUS_CYCLE_NS * apic->timer.divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300532
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200533 if (counter_passed > tmcct) {
534 if (unlikely(!apic_lvtt_period(apic))) {
535 /* one-shot timers stick at 0 until reset */
Eddie Dong97222cc2007-09-12 10:58:04 +0300536 tmcct = 0;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200537 } else {
538 /*
539 * periodic timers reset to APIC_TMICT when they
540 * hit 0. The while loop simulates this happening N
541 * times. (counter_passed %= tmcct) would also work,
542 * but might be slower or not work on 32-bit??
543 */
544 while (counter_passed > tmcct)
545 counter_passed -= tmcct;
546 tmcct -= counter_passed;
547 }
548 } else {
549 tmcct -= counter_passed;
Eddie Dong97222cc2007-09-12 10:58:04 +0300550 }
551
552 return tmcct;
553}
554
Avi Kivityb209749f2007-10-22 16:50:39 +0200555static void __report_tpr_access(struct kvm_lapic *apic, bool write)
556{
557 struct kvm_vcpu *vcpu = apic->vcpu;
558 struct kvm_run *run = vcpu->run;
559
560 set_bit(KVM_REQ_REPORT_TPR_ACCESS, &vcpu->requests);
561 kvm_x86_ops->cache_regs(vcpu);
562 run->tpr_access.rip = vcpu->arch.rip;
563 run->tpr_access.is_write = write;
564}
565
566static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
567{
568 if (apic->vcpu->arch.tpr_access_reporting)
569 __report_tpr_access(apic, write);
570}
571
Eddie Dong97222cc2007-09-12 10:58:04 +0300572static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
573{
574 u32 val = 0;
575
Joerg Roedelc7bf23b2008-04-30 17:55:59 +0200576 KVMTRACE_1D(APIC_ACCESS, apic->vcpu, (u32)offset, handler);
577
Eddie Dong97222cc2007-09-12 10:58:04 +0300578 if (offset >= LAPIC_MMIO_LENGTH)
579 return 0;
580
581 switch (offset) {
582 case APIC_ARBPRI:
583 printk(KERN_WARNING "Access APIC ARBPRI register "
584 "which is for P6\n");
585 break;
586
587 case APIC_TMCCT: /* Timer CCR */
588 val = apic_get_tmcct(apic);
589 break;
590
Avi Kivityb209749f2007-10-22 16:50:39 +0200591 case APIC_TASKPRI:
592 report_tpr_access(apic, false);
593 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300594 default:
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800595 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300596 val = apic_get_reg(apic, offset);
597 break;
598 }
599
600 return val;
601}
602
603static void apic_mmio_read(struct kvm_io_device *this,
604 gpa_t address, int len, void *data)
605{
606 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
607 unsigned int offset = address - apic->base_address;
608 unsigned char alignment = offset & 0xf;
609 u32 result;
610
611 if ((alignment + len) > 4) {
612 printk(KERN_ERR "KVM_APIC_READ: alignment error %lx %d",
613 (unsigned long)address, len);
614 return;
615 }
616 result = __apic_read(apic, offset & ~0xf);
617
618 switch (len) {
619 case 1:
620 case 2:
621 case 4:
622 memcpy(data, (char *)&result + alignment, len);
623 break;
624 default:
625 printk(KERN_ERR "Local APIC read with len = %x, "
626 "should be 1,2, or 4 instead\n", len);
627 break;
628 }
629}
630
631static void update_divide_count(struct kvm_lapic *apic)
632{
633 u32 tmp1, tmp2, tdcr;
634
635 tdcr = apic_get_reg(apic, APIC_TDCR);
636 tmp1 = tdcr & 0xf;
637 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
638 apic->timer.divide_count = 0x1 << (tmp2 & 0x7);
639
640 apic_debug("timer divide count is 0x%x\n",
641 apic->timer.divide_count);
642}
643
644static void start_apic_timer(struct kvm_lapic *apic)
645{
646 ktime_t now = apic->timer.dev.base->get_time();
647
648 apic->timer.last_update = now;
649
650 apic->timer.period = apic_get_reg(apic, APIC_TMICT) *
651 APIC_BUS_CYCLE_NS * apic->timer.divide_count;
652 atomic_set(&apic->timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200653
654 if (!apic->timer.period)
655 return;
656
Eddie Dong97222cc2007-09-12 10:58:04 +0300657 hrtimer_start(&apic->timer.dev,
658 ktime_add_ns(now, apic->timer.period),
659 HRTIMER_MODE_ABS);
660
661 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
662 PRIx64 ", "
663 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800664 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300665 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
666 apic_get_reg(apic, APIC_TMICT),
667 apic->timer.period,
668 ktime_to_ns(ktime_add_ns(now,
669 apic->timer.period)));
670}
671
672static void apic_mmio_write(struct kvm_io_device *this,
673 gpa_t address, int len, const void *data)
674{
675 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
676 unsigned int offset = address - apic->base_address;
677 unsigned char alignment = offset & 0xf;
678 u32 val;
679
680 /*
681 * APIC register must be aligned on 128-bits boundary.
682 * 32/64/128 bits registers must be accessed thru 32 bits.
683 * Refer SDM 8.4.1
684 */
685 if (len != 4 || alignment) {
686 if (printk_ratelimit())
687 printk(KERN_ERR "apic write: bad size=%d %lx\n",
688 len, (long)address);
689 return;
690 }
691
692 val = *(u32 *) data;
693
694 /* too common printing */
695 if (offset != APIC_EOI)
696 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800697 "0x%x\n", __func__, offset, len, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300698
699 offset &= 0xff0;
700
Joerg Roedelc7bf23b2008-04-30 17:55:59 +0200701 KVMTRACE_1D(APIC_ACCESS, apic->vcpu, (u32)offset, handler);
702
Eddie Dong97222cc2007-09-12 10:58:04 +0300703 switch (offset) {
704 case APIC_ID: /* Local APIC ID */
705 apic_set_reg(apic, APIC_ID, val);
706 break;
707
708 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +0200709 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +0300710 apic_set_tpr(apic, val & 0xff);
711 break;
712
713 case APIC_EOI:
714 apic_set_eoi(apic);
715 break;
716
717 case APIC_LDR:
718 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
719 break;
720
721 case APIC_DFR:
722 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
723 break;
724
725 case APIC_SPIV:
726 apic_set_reg(apic, APIC_SPIV, val & 0x3ff);
727 if (!(val & APIC_SPIV_APIC_ENABLED)) {
728 int i;
729 u32 lvt_val;
730
731 for (i = 0; i < APIC_LVT_NUM; i++) {
732 lvt_val = apic_get_reg(apic,
733 APIC_LVTT + 0x10 * i);
734 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
735 lvt_val | APIC_LVT_MASKED);
736 }
737 atomic_set(&apic->timer.pending, 0);
738
739 }
740 break;
741
742 case APIC_ICR:
743 /* No delay here, so we always clear the pending bit */
744 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
745 apic_send_ipi(apic);
746 break;
747
748 case APIC_ICR2:
749 apic_set_reg(apic, APIC_ICR2, val & 0xff000000);
750 break;
751
752 case APIC_LVTT:
753 case APIC_LVTTHMR:
754 case APIC_LVTPC:
755 case APIC_LVT0:
756 case APIC_LVT1:
757 case APIC_LVTERR:
758 /* TODO: Check vector */
759 if (!apic_sw_enabled(apic))
760 val |= APIC_LVT_MASKED;
761
762 val &= apic_lvt_mask[(offset - APIC_LVTT) >> 4];
763 apic_set_reg(apic, offset, val);
764
765 break;
766
767 case APIC_TMICT:
768 hrtimer_cancel(&apic->timer.dev);
769 apic_set_reg(apic, APIC_TMICT, val);
770 start_apic_timer(apic);
771 return;
772
773 case APIC_TDCR:
774 if (val & 4)
775 printk(KERN_ERR "KVM_WRITE:TDCR %x\n", val);
776 apic_set_reg(apic, APIC_TDCR, val);
777 update_divide_count(apic);
778 break;
779
780 default:
781 apic_debug("Local APIC Write to read-only register %x\n",
782 offset);
783 break;
784 }
785
786}
787
788static int apic_mmio_range(struct kvm_io_device *this, gpa_t addr)
789{
790 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
791 int ret = 0;
792
793
794 if (apic_hw_enabled(apic) &&
795 (addr >= apic->base_address) &&
796 (addr < (apic->base_address + LAPIC_MMIO_LENGTH)))
797 ret = 1;
798
799 return ret;
800}
801
Rusty Russelld5894442007-10-08 10:48:30 +1000802void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +0300803{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800804 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300805 return;
806
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800807 hrtimer_cancel(&vcpu->arch.apic->timer.dev);
Eddie Dong97222cc2007-09-12 10:58:04 +0300808
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800809 if (vcpu->arch.apic->regs_page)
810 __free_page(vcpu->arch.apic->regs_page);
Eddie Dong97222cc2007-09-12 10:58:04 +0300811
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800812 kfree(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300813}
814
815/*
816 *----------------------------------------------------------------------
817 * LAPIC interface
818 *----------------------------------------------------------------------
819 */
820
821void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
822{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800823 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300824
825 if (!apic)
826 return;
Avi Kivityb93463a2007-10-25 16:52:32 +0200827 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
828 | (apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +0300829}
Joerg Roedelec7cf692008-04-16 16:51:16 +0200830EXPORT_SYMBOL_GPL(kvm_lapic_set_tpr);
Eddie Dong97222cc2007-09-12 10:58:04 +0300831
832u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
833{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800834 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300835 u64 tpr;
836
837 if (!apic)
838 return 0;
839 tpr = (u64) apic_get_reg(apic, APIC_TASKPRI);
840
841 return (tpr & 0xf0) >> 4;
842}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800843EXPORT_SYMBOL_GPL(kvm_lapic_get_cr8);
Eddie Dong97222cc2007-09-12 10:58:04 +0300844
845void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
846{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800847 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300848
849 if (!apic) {
850 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800851 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +0300852 return;
853 }
854 if (apic->vcpu->vcpu_id)
855 value &= ~MSR_IA32_APICBASE_BSP;
856
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800857 vcpu->arch.apic_base = value;
858 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +0300859 MSR_IA32_APICBASE_BASE;
860
861 /* with FSB delivery interrupt, we can restart APIC functionality */
862 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800863 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +0300864
865}
866
867u64 kvm_lapic_get_base(struct kvm_vcpu *vcpu)
868{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800869 return vcpu->arch.apic_base;
Eddie Dong97222cc2007-09-12 10:58:04 +0300870}
871EXPORT_SYMBOL_GPL(kvm_lapic_get_base);
872
He, Qingc5ec1532007-09-03 17:07:41 +0300873void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +0300874{
875 struct kvm_lapic *apic;
876 int i;
877
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800878 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +0300879
880 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800881 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300882 ASSERT(apic != NULL);
883
884 /* Stop the timer in case it's a reset to an active apic */
885 hrtimer_cancel(&apic->timer.dev);
886
887 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
888 apic_set_reg(apic, APIC_LVR, APIC_VERSION);
889
890 for (i = 0; i < APIC_LVT_NUM; i++)
891 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +0800892 apic_set_reg(apic, APIC_LVT0,
893 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +0300894
895 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
896 apic_set_reg(apic, APIC_SPIV, 0xff);
897 apic_set_reg(apic, APIC_TASKPRI, 0);
898 apic_set_reg(apic, APIC_LDR, 0);
899 apic_set_reg(apic, APIC_ESR, 0);
900 apic_set_reg(apic, APIC_ICR, 0);
901 apic_set_reg(apic, APIC_ICR2, 0);
902 apic_set_reg(apic, APIC_TDCR, 0);
903 apic_set_reg(apic, APIC_TMICT, 0);
904 for (i = 0; i < 8; i++) {
905 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
906 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
907 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
908 }
Kevin Pedrettib33ac882007-10-21 08:54:53 +0200909 update_divide_count(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300910 atomic_set(&apic->timer.pending, 0);
911 if (vcpu->vcpu_id == 0)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800912 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
Eddie Dong97222cc2007-09-12 10:58:04 +0300913 apic_update_ppr(apic);
914
915 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800916 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300917 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800918 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +0300919}
He, Qingc5ec1532007-09-03 17:07:41 +0300920EXPORT_SYMBOL_GPL(kvm_lapic_reset);
Eddie Dong97222cc2007-09-12 10:58:04 +0300921
922int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
923{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800924 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300925 int ret = 0;
926
927 if (!apic)
928 return 0;
929 ret = apic_enabled(apic);
930
931 return ret;
932}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800933EXPORT_SYMBOL_GPL(kvm_lapic_enabled);
Eddie Dong97222cc2007-09-12 10:58:04 +0300934
935/*
936 *----------------------------------------------------------------------
937 * timer interface
938 *----------------------------------------------------------------------
939 */
Eddie Dong1b9778d2007-09-03 16:56:58 +0300940
941/* TODO: make sure __apic_timer_fn runs in current pCPU */
Eddie Dong97222cc2007-09-12 10:58:04 +0300942static int __apic_timer_fn(struct kvm_lapic *apic)
943{
Eddie Dong97222cc2007-09-12 10:58:04 +0300944 int result = 0;
Eddie Dong1b9778d2007-09-03 16:56:58 +0300945 wait_queue_head_t *q = &apic->vcpu->wq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300946
Eddie Dong97222cc2007-09-12 10:58:04 +0300947 atomic_inc(&apic->timer.pending);
Marcelo Tosatti06e05642008-06-06 16:37:36 -0300948 set_bit(KVM_REQ_PENDING_TIMER, &apic->vcpu->requests);
Mike Dayd77c26f2007-10-08 09:02:08 -0400949 if (waitqueue_active(q)) {
Avi Kivitya4535292008-04-13 17:54:35 +0300950 apic->vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Eddie Dong1b9778d2007-09-03 16:56:58 +0300951 wake_up_interruptible(q);
He, Qingc5ec1532007-09-03 17:07:41 +0300952 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300953 if (apic_lvtt_period(apic)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300954 result = 1;
955 apic->timer.dev.expires = ktime_add_ns(
956 apic->timer.dev.expires,
957 apic->timer.period);
958 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300959 return result;
960}
961
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300962int apic_has_pending_timer(struct kvm_vcpu *vcpu)
963{
964 struct kvm_lapic *lapic = vcpu->arch.apic;
965
Marcelo Tosatti54aaace2008-05-14 02:29:06 -0300966 if (lapic && apic_enabled(lapic) && apic_lvt_enabled(lapic, APIC_LVTT))
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300967 return atomic_read(&lapic->timer.pending);
968
969 return 0;
970}
971
Eddie Dong1b9778d2007-09-03 16:56:58 +0300972static int __inject_apic_timer_irq(struct kvm_lapic *apic)
973{
974 int vector;
975
976 vector = apic_lvt_vector(apic, APIC_LVTT);
977 return __apic_accept_irq(apic, APIC_DM_FIXED, vector, 1, 0);
978}
979
Eddie Dong97222cc2007-09-12 10:58:04 +0300980static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
981{
982 struct kvm_lapic *apic;
983 int restart_timer = 0;
984
985 apic = container_of(data, struct kvm_lapic, timer.dev);
986
987 restart_timer = __apic_timer_fn(apic);
988
989 if (restart_timer)
990 return HRTIMER_RESTART;
991 else
992 return HRTIMER_NORESTART;
993}
994
995int kvm_create_lapic(struct kvm_vcpu *vcpu)
996{
997 struct kvm_lapic *apic;
998
999 ASSERT(vcpu != NULL);
1000 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1001
1002 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1003 if (!apic)
1004 goto nomem;
1005
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001006 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001007
1008 apic->regs_page = alloc_page(GFP_KERNEL);
1009 if (apic->regs_page == NULL) {
1010 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1011 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001012 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001013 }
1014 apic->regs = page_address(apic->regs_page);
1015 memset(apic->regs, 0, PAGE_SIZE);
1016 apic->vcpu = vcpu;
1017
1018 hrtimer_init(&apic->timer.dev, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1019 apic->timer.dev.function = apic_timer_fn;
1020 apic->base_address = APIC_DEFAULT_PHYS_BASE;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001021 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE;
Eddie Dong97222cc2007-09-12 10:58:04 +03001022
He, Qingc5ec1532007-09-03 17:07:41 +03001023 kvm_lapic_reset(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001024 apic->dev.read = apic_mmio_read;
1025 apic->dev.write = apic_mmio_write;
1026 apic->dev.in_range = apic_mmio_range;
1027 apic->dev.private = apic;
1028
1029 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001030nomem_free_apic:
1031 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001032nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001033 return -ENOMEM;
1034}
1035EXPORT_SYMBOL_GPL(kvm_create_lapic);
1036
1037int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1038{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001039 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001040 int highest_irr;
1041
1042 if (!apic || !apic_enabled(apic))
1043 return -1;
1044
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001045 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001046 highest_irr = apic_find_highest_irr(apic);
1047 if ((highest_irr == -1) ||
1048 ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI)))
1049 return -1;
1050 return highest_irr;
1051}
1052
Qing He40487c62007-09-17 14:47:13 +08001053int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1054{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001055 u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001056 int r = 0;
1057
1058 if (vcpu->vcpu_id == 0) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001059 if (!apic_hw_enabled(vcpu->arch.apic))
Qing He40487c62007-09-17 14:47:13 +08001060 r = 1;
1061 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1062 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1063 r = 1;
1064 }
1065 return r;
1066}
1067
Eddie Dong1b9778d2007-09-03 16:56:58 +03001068void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1069{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001070 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001071
1072 if (apic && apic_lvt_enabled(apic, APIC_LVTT) &&
1073 atomic_read(&apic->timer.pending) > 0) {
1074 if (__inject_apic_timer_irq(apic))
1075 atomic_dec(&apic->timer.pending);
1076 }
1077}
1078
1079void kvm_apic_timer_intr_post(struct kvm_vcpu *vcpu, int vec)
1080{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001081 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001082
1083 if (apic && apic_lvt_vector(apic, APIC_LVTT) == vec)
1084 apic->timer.last_update = ktime_add_ns(
1085 apic->timer.last_update,
1086 apic->timer.period);
1087}
1088
Eddie Dong97222cc2007-09-12 10:58:04 +03001089int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1090{
1091 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001092 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001093
1094 if (vector == -1)
1095 return -1;
1096
1097 apic_set_vector(vector, apic->regs + APIC_ISR);
1098 apic_update_ppr(apic);
1099 apic_clear_irr(vector, apic);
1100 return vector;
1101}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001102
1103void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1104{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001105 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001106
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001107 apic->base_address = vcpu->arch.apic_base &
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001108 MSR_IA32_APICBASE_BASE;
1109 apic_set_reg(apic, APIC_LVR, APIC_VERSION);
1110 apic_update_ppr(apic);
1111 hrtimer_cancel(&apic->timer.dev);
1112 update_divide_count(apic);
1113 start_apic_timer(apic);
1114}
Eddie Donga3d7f852007-09-03 16:15:12 +03001115
Avi Kivity2f52d582008-01-16 12:49:30 +02001116void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001117{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001118 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Donga3d7f852007-09-03 16:15:12 +03001119 struct hrtimer *timer;
1120
1121 if (!apic)
1122 return;
1123
1124 timer = &apic->timer.dev;
1125 if (hrtimer_cancel(timer))
1126 hrtimer_start(timer, timer->expires, HRTIMER_MODE_ABS);
1127}
Avi Kivityb93463a2007-10-25 16:52:32 +02001128
1129void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1130{
1131 u32 data;
1132 void *vapic;
1133
1134 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1135 return;
1136
1137 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1138 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
1139 kunmap_atomic(vapic, KM_USER0);
1140
1141 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1142}
1143
1144void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1145{
1146 u32 data, tpr;
1147 int max_irr, max_isr;
1148 struct kvm_lapic *apic;
1149 void *vapic;
1150
1151 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1152 return;
1153
1154 apic = vcpu->arch.apic;
1155 tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff;
1156 max_irr = apic_find_highest_irr(apic);
1157 if (max_irr < 0)
1158 max_irr = 0;
1159 max_isr = apic_find_highest_isr(apic);
1160 if (max_isr < 0)
1161 max_isr = 0;
1162 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1163
1164 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1165 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
1166 kunmap_atomic(vapic, KM_USER0);
1167}
1168
1169void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1170{
1171 if (!irqchip_in_kernel(vcpu->kvm))
1172 return;
1173
1174 vcpu->arch.apic->vapic_addr = vapic_addr;
1175}