[CPUFREQ] document the currently undocumented parts of the sysfs interface
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kvm / lapic.c
blob57ac4e4c556a5a3ca5bc79a8acbd1e35f3f33d9d
2 /*
3 * Local APIC virtualization
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
9 * Authors:
10 * Dor Laor <dor.laor@qumranet.com>
11 * Gregory Haskins <ghaskins@novell.com>
12 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
14 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
20 #include <linux/kvm_host.h>
21 #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>
28 #include <asm/processor.h>
29 #include <asm/msr.h>
30 #include <asm/page.h>
31 #include <asm/current.h>
32 #include <asm/apicdef.h>
33 #include <asm/atomic.h>
34 #include <asm/div64.h>
35 #include "irq.h"
37 #define PRId64 "d"
38 #define PRIx64 "llx"
39 #define PRIu64 "u"
40 #define PRIo64 "o"
42 #define APIC_BUS_CYCLE_NS 1
44 /* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
45 #define apic_debug(fmt, arg...)
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
57 #define VEC_POS(v) ((v) & (32 - 1))
58 #define REG_POS(v) (((v) >> 5) << 4)
60 static inline u32 apic_get_reg(struct kvm_lapic *apic, int reg_off)
62 return *((u32 *) (apic->regs + reg_off));
65 static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
67 *((u32 *) (apic->regs + reg_off)) = val;
70 static inline int apic_test_and_set_vector(int vec, void *bitmap)
72 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
75 static inline int apic_test_and_clear_vector(int vec, void *bitmap)
77 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
80 static inline void apic_set_vector(int vec, void *bitmap)
82 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
85 static inline void apic_clear_vector(int vec, void *bitmap)
87 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
90 static inline int apic_hw_enabled(struct kvm_lapic *apic)
92 return (apic)->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE;
95 static inline int apic_sw_enabled(struct kvm_lapic *apic)
97 return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED;
100 static inline int apic_enabled(struct kvm_lapic *apic)
102 return apic_sw_enabled(apic) && apic_hw_enabled(apic);
105 #define LVT_MASK \
106 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
108 #define LINT_MASK \
109 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
110 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
112 static inline int kvm_apic_id(struct kvm_lapic *apic)
114 return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
117 static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
119 return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
122 static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
124 return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
127 static inline int apic_lvtt_period(struct kvm_lapic *apic)
129 return apic_get_reg(apic, APIC_LVTT) & APIC_LVT_TIMER_PERIODIC;
132 static 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 */
140 static int find_highest_vector(void *bitmap)
142 u32 *word = bitmap;
143 int word_offset = MAX_APIC_VECTOR >> 5;
145 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
146 continue;
148 if (likely(!word_offset && !word[0]))
149 return -1;
150 else
151 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
154 static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
156 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
159 static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
161 apic_clear_vector(vec, apic->regs + APIC_IRR);
164 static inline int apic_find_highest_irr(struct kvm_lapic *apic)
166 int result;
168 result = find_highest_vector(apic->regs + APIC_IRR);
169 ASSERT(result == -1 || result >= 16);
171 return result;
174 int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
176 struct kvm_lapic *apic = vcpu->arch.apic;
177 int highest_irr;
179 if (!apic)
180 return 0;
181 highest_irr = apic_find_highest_irr(apic);
183 return highest_irr;
185 EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
187 int kvm_apic_set_irq(struct kvm_vcpu *vcpu, u8 vec, u8 trig)
189 struct kvm_lapic *apic = vcpu->arch.apic;
191 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;
200 return 0;
203 static inline int apic_find_highest_isr(struct kvm_lapic *apic)
205 int result;
207 result = find_highest_vector(apic->regs + APIC_ISR);
208 ASSERT(result == -1 || result >= 16);
210 return result;
213 static void apic_update_ppr(struct kvm_lapic *apic)
215 u32 tpr, isrv, ppr;
216 int isr;
218 tpr = apic_get_reg(apic, APIC_TASKPRI);
219 isr = apic_find_highest_isr(apic);
220 isrv = (isr != -1) ? isr : 0;
222 if ((tpr & 0xf0) >= (isrv & 0xf0))
223 ppr = tpr & 0xff;
224 else
225 ppr = isrv & 0xf0;
227 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
228 apic, ppr, isr, isrv);
230 apic_set_reg(apic, APIC_PROCPRI, ppr);
233 static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
235 apic_set_reg(apic, APIC_TASKPRI, tpr);
236 apic_update_ppr(apic);
239 int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
241 return kvm_apic_id(apic) == dest;
244 int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
246 int result = 0;
247 u8 logical_id;
249 logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR));
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;
267 return result;
270 static int apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
271 int short_hand, int dest, int dest_mode)
273 int result = 0;
274 struct kvm_lapic *target = vcpu->arch.apic;
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);
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;
308 return result;
312 * Add a pending IRQ into lapic.
313 * Return 1 if successfully added and 0 if discarded.
315 static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
316 int vector, int level, int trig_mode)
318 int orig_irr, result = 0;
319 struct kvm_vcpu *vcpu = apic->vcpu;
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;
328 orig_irr = apic_test_and_set_irr(vector, apic);
329 if (orig_irr && trig_mode) {
330 apic_debug("level trig mode repeatedly for vector %d",
331 vector);
332 break;
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);
341 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE)
342 kvm_vcpu_kick(vcpu);
343 else if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED) {
344 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
345 if (waitqueue_active(&vcpu->wq))
346 wake_up_interruptible(&vcpu->wq);
349 result = (orig_irr == 0);
350 break;
352 case APIC_DM_REMRD:
353 printk(KERN_DEBUG "Ignoring delivery mode 3\n");
354 break;
356 case APIC_DM_SMI:
357 printk(KERN_DEBUG "Ignoring guest SMI\n");
358 break;
359 case APIC_DM_NMI:
360 printk(KERN_DEBUG "Ignoring guest NMI\n");
361 break;
363 case APIC_DM_INIT:
364 if (level) {
365 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE)
366 printk(KERN_DEBUG
367 "INIT on a runnable vcpu %d\n",
368 vcpu->vcpu_id);
369 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
370 kvm_vcpu_kick(vcpu);
371 } else {
372 printk(KERN_DEBUG
373 "Ignoring de-assert INIT to vcpu %d\n",
374 vcpu->vcpu_id);
377 break;
379 case APIC_DM_STARTUP:
380 printk(KERN_DEBUG "SIPI to vcpu %d vector 0x%02x\n",
381 vcpu->vcpu_id, vector);
382 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
383 vcpu->arch.sipi_vector = vector;
384 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
385 if (waitqueue_active(&vcpu->wq))
386 wake_up_interruptible(&vcpu->wq);
388 break;
390 default:
391 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
392 delivery_mode);
393 break;
395 return result;
398 static struct kvm_lapic *kvm_apic_round_robin(struct kvm *kvm, u8 vector,
399 unsigned long bitmap)
401 int last;
402 int next;
403 struct kvm_lapic *apic = NULL;
405 last = kvm->arch.round_robin_prev_vcpu;
406 next = last;
408 do {
409 if (++next == KVM_MAX_VCPUS)
410 next = 0;
411 if (kvm->vcpus[next] == NULL || !test_bit(next, &bitmap))
412 continue;
413 apic = kvm->vcpus[next]->arch.apic;
414 if (apic && apic_enabled(apic))
415 break;
416 apic = NULL;
417 } while (next != last);
418 kvm->arch.round_robin_prev_vcpu = next;
420 if (!apic)
421 printk(KERN_DEBUG "vcpu not ready for apic_round_robin\n");
423 return apic;
426 struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
427 unsigned long bitmap)
429 struct kvm_lapic *apic;
431 apic = kvm_apic_round_robin(kvm, vector, bitmap);
432 if (apic)
433 return apic->vcpu;
434 return NULL;
437 static void apic_set_eoi(struct kvm_lapic *apic)
439 int vector = apic_find_highest_isr(apic);
442 * Not every write EOI will has corresponding ISR,
443 * one example is when Kernel check timer on setup_IO_APIC
445 if (vector == -1)
446 return;
448 apic_clear_vector(vector, apic->regs + APIC_ISR);
449 apic_update_ppr(apic);
451 if (apic_test_and_clear_vector(vector, apic->regs + APIC_TMR))
452 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector);
455 static void apic_send_ipi(struct kvm_lapic *apic)
457 u32 icr_low = apic_get_reg(apic, APIC_ICR);
458 u32 icr_high = apic_get_reg(apic, APIC_ICR2);
460 unsigned int dest = GET_APIC_DEST_FIELD(icr_high);
461 unsigned int short_hand = icr_low & APIC_SHORT_MASK;
462 unsigned int trig_mode = icr_low & APIC_INT_LEVELTRIG;
463 unsigned int level = icr_low & APIC_INT_ASSERT;
464 unsigned int dest_mode = icr_low & APIC_DEST_MASK;
465 unsigned int delivery_mode = icr_low & APIC_MODE_MASK;
466 unsigned int vector = icr_low & APIC_VECTOR_MASK;
468 struct kvm_vcpu *target;
469 struct kvm_vcpu *vcpu;
470 unsigned long lpr_map = 0;
471 int i;
473 apic_debug("icr_high 0x%x, icr_low 0x%x, "
474 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
475 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
476 icr_high, icr_low, short_hand, dest,
477 trig_mode, level, dest_mode, delivery_mode, vector);
479 for (i = 0; i < KVM_MAX_VCPUS; i++) {
480 vcpu = apic->vcpu->kvm->vcpus[i];
481 if (!vcpu)
482 continue;
484 if (vcpu->arch.apic &&
485 apic_match_dest(vcpu, apic, short_hand, dest, dest_mode)) {
486 if (delivery_mode == APIC_DM_LOWEST)
487 set_bit(vcpu->vcpu_id, &lpr_map);
488 else
489 __apic_accept_irq(vcpu->arch.apic, delivery_mode,
490 vector, level, trig_mode);
494 if (delivery_mode == APIC_DM_LOWEST) {
495 target = kvm_get_lowest_prio_vcpu(vcpu->kvm, vector, lpr_map);
496 if (target != NULL)
497 __apic_accept_irq(target->arch.apic, delivery_mode,
498 vector, level, trig_mode);
502 static u32 apic_get_tmcct(struct kvm_lapic *apic)
504 u64 counter_passed;
505 ktime_t passed, now;
506 u32 tmcct;
508 ASSERT(apic != NULL);
510 now = apic->timer.dev.base->get_time();
511 tmcct = apic_get_reg(apic, APIC_TMICT);
513 /* if initial count is 0, current count should also be 0 */
514 if (tmcct == 0)
515 return 0;
517 if (unlikely(ktime_to_ns(now) <=
518 ktime_to_ns(apic->timer.last_update))) {
519 /* Wrap around */
520 passed = ktime_add(( {
521 (ktime_t) {
522 .tv64 = KTIME_MAX -
523 (apic->timer.last_update).tv64}; }
524 ), now);
525 apic_debug("time elapsed\n");
526 } else
527 passed = ktime_sub(now, apic->timer.last_update);
529 counter_passed = div64_64(ktime_to_ns(passed),
530 (APIC_BUS_CYCLE_NS * apic->timer.divide_count));
532 if (counter_passed > tmcct) {
533 if (unlikely(!apic_lvtt_period(apic))) {
534 /* one-shot timers stick at 0 until reset */
535 tmcct = 0;
536 } else {
538 * periodic timers reset to APIC_TMICT when they
539 * hit 0. The while loop simulates this happening N
540 * times. (counter_passed %= tmcct) would also work,
541 * but might be slower or not work on 32-bit??
543 while (counter_passed > tmcct)
544 counter_passed -= tmcct;
545 tmcct -= counter_passed;
547 } else {
548 tmcct -= counter_passed;
551 return tmcct;
554 static void __report_tpr_access(struct kvm_lapic *apic, bool write)
556 struct kvm_vcpu *vcpu = apic->vcpu;
557 struct kvm_run *run = vcpu->run;
559 set_bit(KVM_REQ_REPORT_TPR_ACCESS, &vcpu->requests);
560 kvm_x86_ops->cache_regs(vcpu);
561 run->tpr_access.rip = vcpu->arch.rip;
562 run->tpr_access.is_write = write;
565 static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
567 if (apic->vcpu->arch.tpr_access_reporting)
568 __report_tpr_access(apic, write);
571 static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
573 u32 val = 0;
575 if (offset >= LAPIC_MMIO_LENGTH)
576 return 0;
578 switch (offset) {
579 case APIC_ARBPRI:
580 printk(KERN_WARNING "Access APIC ARBPRI register "
581 "which is for P6\n");
582 break;
584 case APIC_TMCCT: /* Timer CCR */
585 val = apic_get_tmcct(apic);
586 break;
588 case APIC_TASKPRI:
589 report_tpr_access(apic, false);
590 /* fall thru */
591 default:
592 apic_update_ppr(apic);
593 val = apic_get_reg(apic, offset);
594 break;
597 return val;
600 static void apic_mmio_read(struct kvm_io_device *this,
601 gpa_t address, int len, void *data)
603 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
604 unsigned int offset = address - apic->base_address;
605 unsigned char alignment = offset & 0xf;
606 u32 result;
608 if ((alignment + len) > 4) {
609 printk(KERN_ERR "KVM_APIC_READ: alignment error %lx %d",
610 (unsigned long)address, len);
611 return;
613 result = __apic_read(apic, offset & ~0xf);
615 switch (len) {
616 case 1:
617 case 2:
618 case 4:
619 memcpy(data, (char *)&result + alignment, len);
620 break;
621 default:
622 printk(KERN_ERR "Local APIC read with len = %x, "
623 "should be 1,2, or 4 instead\n", len);
624 break;
628 static void update_divide_count(struct kvm_lapic *apic)
630 u32 tmp1, tmp2, tdcr;
632 tdcr = apic_get_reg(apic, APIC_TDCR);
633 tmp1 = tdcr & 0xf;
634 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
635 apic->timer.divide_count = 0x1 << (tmp2 & 0x7);
637 apic_debug("timer divide count is 0x%x\n",
638 apic->timer.divide_count);
641 static void start_apic_timer(struct kvm_lapic *apic)
643 ktime_t now = apic->timer.dev.base->get_time();
645 apic->timer.last_update = now;
647 apic->timer.period = apic_get_reg(apic, APIC_TMICT) *
648 APIC_BUS_CYCLE_NS * apic->timer.divide_count;
649 atomic_set(&apic->timer.pending, 0);
651 if (!apic->timer.period)
652 return;
654 hrtimer_start(&apic->timer.dev,
655 ktime_add_ns(now, apic->timer.period),
656 HRTIMER_MODE_ABS);
658 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
659 PRIx64 ", "
660 "timer initial count 0x%x, period %lldns, "
661 "expire @ 0x%016" PRIx64 ".\n", __func__,
662 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
663 apic_get_reg(apic, APIC_TMICT),
664 apic->timer.period,
665 ktime_to_ns(ktime_add_ns(now,
666 apic->timer.period)));
669 static void apic_mmio_write(struct kvm_io_device *this,
670 gpa_t address, int len, const void *data)
672 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
673 unsigned int offset = address - apic->base_address;
674 unsigned char alignment = offset & 0xf;
675 u32 val;
678 * APIC register must be aligned on 128-bits boundary.
679 * 32/64/128 bits registers must be accessed thru 32 bits.
680 * Refer SDM 8.4.1
682 if (len != 4 || alignment) {
683 if (printk_ratelimit())
684 printk(KERN_ERR "apic write: bad size=%d %lx\n",
685 len, (long)address);
686 return;
689 val = *(u32 *) data;
691 /* too common printing */
692 if (offset != APIC_EOI)
693 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
694 "0x%x\n", __func__, offset, len, val);
696 offset &= 0xff0;
698 switch (offset) {
699 case APIC_ID: /* Local APIC ID */
700 apic_set_reg(apic, APIC_ID, val);
701 break;
703 case APIC_TASKPRI:
704 report_tpr_access(apic, true);
705 apic_set_tpr(apic, val & 0xff);
706 break;
708 case APIC_EOI:
709 apic_set_eoi(apic);
710 break;
712 case APIC_LDR:
713 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
714 break;
716 case APIC_DFR:
717 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
718 break;
720 case APIC_SPIV:
721 apic_set_reg(apic, APIC_SPIV, val & 0x3ff);
722 if (!(val & APIC_SPIV_APIC_ENABLED)) {
723 int i;
724 u32 lvt_val;
726 for (i = 0; i < APIC_LVT_NUM; i++) {
727 lvt_val = apic_get_reg(apic,
728 APIC_LVTT + 0x10 * i);
729 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
730 lvt_val | APIC_LVT_MASKED);
732 atomic_set(&apic->timer.pending, 0);
735 break;
737 case APIC_ICR:
738 /* No delay here, so we always clear the pending bit */
739 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
740 apic_send_ipi(apic);
741 break;
743 case APIC_ICR2:
744 apic_set_reg(apic, APIC_ICR2, val & 0xff000000);
745 break;
747 case APIC_LVTT:
748 case APIC_LVTTHMR:
749 case APIC_LVTPC:
750 case APIC_LVT0:
751 case APIC_LVT1:
752 case APIC_LVTERR:
753 /* TODO: Check vector */
754 if (!apic_sw_enabled(apic))
755 val |= APIC_LVT_MASKED;
757 val &= apic_lvt_mask[(offset - APIC_LVTT) >> 4];
758 apic_set_reg(apic, offset, val);
760 break;
762 case APIC_TMICT:
763 hrtimer_cancel(&apic->timer.dev);
764 apic_set_reg(apic, APIC_TMICT, val);
765 start_apic_timer(apic);
766 return;
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;
775 default:
776 apic_debug("Local APIC Write to read-only register %x\n",
777 offset);
778 break;
783 static int apic_mmio_range(struct kvm_io_device *this, gpa_t addr)
785 struct kvm_lapic *apic = (struct kvm_lapic *)this->private;
786 int ret = 0;
789 if (apic_hw_enabled(apic) &&
790 (addr >= apic->base_address) &&
791 (addr < (apic->base_address + LAPIC_MMIO_LENGTH)))
792 ret = 1;
794 return ret;
797 void kvm_free_lapic(struct kvm_vcpu *vcpu)
799 if (!vcpu->arch.apic)
800 return;
802 hrtimer_cancel(&vcpu->arch.apic->timer.dev);
804 if (vcpu->arch.apic->regs_page)
805 __free_page(vcpu->arch.apic->regs_page);
807 kfree(vcpu->arch.apic);
811 *----------------------------------------------------------------------
812 * LAPIC interface
813 *----------------------------------------------------------------------
816 void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
818 struct kvm_lapic *apic = vcpu->arch.apic;
820 if (!apic)
821 return;
822 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
823 | (apic_get_reg(apic, APIC_TASKPRI) & 4));
825 EXPORT_SYMBOL_GPL(kvm_lapic_set_tpr);
827 u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
829 struct kvm_lapic *apic = vcpu->arch.apic;
830 u64 tpr;
832 if (!apic)
833 return 0;
834 tpr = (u64) apic_get_reg(apic, APIC_TASKPRI);
836 return (tpr & 0xf0) >> 4;
838 EXPORT_SYMBOL_GPL(kvm_lapic_get_cr8);
840 void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
842 struct kvm_lapic *apic = vcpu->arch.apic;
844 if (!apic) {
845 value |= MSR_IA32_APICBASE_BSP;
846 vcpu->arch.apic_base = value;
847 return;
849 if (apic->vcpu->vcpu_id)
850 value &= ~MSR_IA32_APICBASE_BSP;
852 vcpu->arch.apic_base = value;
853 apic->base_address = apic->vcpu->arch.apic_base &
854 MSR_IA32_APICBASE_BASE;
856 /* with FSB delivery interrupt, we can restart APIC functionality */
857 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
858 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
862 u64 kvm_lapic_get_base(struct kvm_vcpu *vcpu)
864 return vcpu->arch.apic_base;
866 EXPORT_SYMBOL_GPL(kvm_lapic_get_base);
868 void kvm_lapic_reset(struct kvm_vcpu *vcpu)
870 struct kvm_lapic *apic;
871 int i;
873 apic_debug("%s\n", __func__);
875 ASSERT(vcpu);
876 apic = vcpu->arch.apic;
877 ASSERT(apic != NULL);
879 /* Stop the timer in case it's a reset to an active apic */
880 hrtimer_cancel(&apic->timer.dev);
882 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
883 apic_set_reg(apic, APIC_LVR, APIC_VERSION);
885 for (i = 0; i < APIC_LVT_NUM; i++)
886 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
887 apic_set_reg(apic, APIC_LVT0,
888 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
890 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
891 apic_set_reg(apic, APIC_SPIV, 0xff);
892 apic_set_reg(apic, APIC_TASKPRI, 0);
893 apic_set_reg(apic, APIC_LDR, 0);
894 apic_set_reg(apic, APIC_ESR, 0);
895 apic_set_reg(apic, APIC_ICR, 0);
896 apic_set_reg(apic, APIC_ICR2, 0);
897 apic_set_reg(apic, APIC_TDCR, 0);
898 apic_set_reg(apic, APIC_TMICT, 0);
899 for (i = 0; i < 8; i++) {
900 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
901 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
902 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
904 update_divide_count(apic);
905 atomic_set(&apic->timer.pending, 0);
906 if (vcpu->vcpu_id == 0)
907 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
908 apic_update_ppr(apic);
910 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
911 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
912 vcpu, kvm_apic_id(apic),
913 vcpu->arch.apic_base, apic->base_address);
915 EXPORT_SYMBOL_GPL(kvm_lapic_reset);
917 int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
919 struct kvm_lapic *apic = vcpu->arch.apic;
920 int ret = 0;
922 if (!apic)
923 return 0;
924 ret = apic_enabled(apic);
926 return ret;
928 EXPORT_SYMBOL_GPL(kvm_lapic_enabled);
931 *----------------------------------------------------------------------
932 * timer interface
933 *----------------------------------------------------------------------
936 /* TODO: make sure __apic_timer_fn runs in current pCPU */
937 static int __apic_timer_fn(struct kvm_lapic *apic)
939 int result = 0;
940 wait_queue_head_t *q = &apic->vcpu->wq;
942 atomic_inc(&apic->timer.pending);
943 if (waitqueue_active(q)) {
944 apic->vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
945 wake_up_interruptible(q);
947 if (apic_lvtt_period(apic)) {
948 result = 1;
949 apic->timer.dev.expires = ktime_add_ns(
950 apic->timer.dev.expires,
951 apic->timer.period);
953 return result;
956 int apic_has_pending_timer(struct kvm_vcpu *vcpu)
958 struct kvm_lapic *lapic = vcpu->arch.apic;
960 if (lapic)
961 return atomic_read(&lapic->timer.pending);
963 return 0;
966 static int __inject_apic_timer_irq(struct kvm_lapic *apic)
968 int vector;
970 vector = apic_lvt_vector(apic, APIC_LVTT);
971 return __apic_accept_irq(apic, APIC_DM_FIXED, vector, 1, 0);
974 static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
976 struct kvm_lapic *apic;
977 int restart_timer = 0;
979 apic = container_of(data, struct kvm_lapic, timer.dev);
981 restart_timer = __apic_timer_fn(apic);
983 if (restart_timer)
984 return HRTIMER_RESTART;
985 else
986 return HRTIMER_NORESTART;
989 int kvm_create_lapic(struct kvm_vcpu *vcpu)
991 struct kvm_lapic *apic;
993 ASSERT(vcpu != NULL);
994 apic_debug("apic_init %d\n", vcpu->vcpu_id);
996 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
997 if (!apic)
998 goto nomem;
1000 vcpu->arch.apic = apic;
1002 apic->regs_page = alloc_page(GFP_KERNEL);
1003 if (apic->regs_page == NULL) {
1004 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1005 vcpu->vcpu_id);
1006 goto nomem_free_apic;
1008 apic->regs = page_address(apic->regs_page);
1009 memset(apic->regs, 0, PAGE_SIZE);
1010 apic->vcpu = vcpu;
1012 hrtimer_init(&apic->timer.dev, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1013 apic->timer.dev.function = apic_timer_fn;
1014 apic->base_address = APIC_DEFAULT_PHYS_BASE;
1015 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE;
1017 kvm_lapic_reset(vcpu);
1018 apic->dev.read = apic_mmio_read;
1019 apic->dev.write = apic_mmio_write;
1020 apic->dev.in_range = apic_mmio_range;
1021 apic->dev.private = apic;
1023 return 0;
1024 nomem_free_apic:
1025 kfree(apic);
1026 nomem:
1027 return -ENOMEM;
1029 EXPORT_SYMBOL_GPL(kvm_create_lapic);
1031 int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1033 struct kvm_lapic *apic = vcpu->arch.apic;
1034 int highest_irr;
1036 if (!apic || !apic_enabled(apic))
1037 return -1;
1039 apic_update_ppr(apic);
1040 highest_irr = apic_find_highest_irr(apic);
1041 if ((highest_irr == -1) ||
1042 ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI)))
1043 return -1;
1044 return highest_irr;
1047 int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1049 u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0);
1050 int r = 0;
1052 if (vcpu->vcpu_id == 0) {
1053 if (!apic_hw_enabled(vcpu->arch.apic))
1054 r = 1;
1055 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1056 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1057 r = 1;
1059 return r;
1062 void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1064 struct kvm_lapic *apic = vcpu->arch.apic;
1066 if (apic && apic_lvt_enabled(apic, APIC_LVTT) &&
1067 atomic_read(&apic->timer.pending) > 0) {
1068 if (__inject_apic_timer_irq(apic))
1069 atomic_dec(&apic->timer.pending);
1073 void kvm_apic_timer_intr_post(struct kvm_vcpu *vcpu, int vec)
1075 struct kvm_lapic *apic = vcpu->arch.apic;
1077 if (apic && apic_lvt_vector(apic, APIC_LVTT) == vec)
1078 apic->timer.last_update = ktime_add_ns(
1079 apic->timer.last_update,
1080 apic->timer.period);
1083 int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1085 int vector = kvm_apic_has_interrupt(vcpu);
1086 struct kvm_lapic *apic = vcpu->arch.apic;
1088 if (vector == -1)
1089 return -1;
1091 apic_set_vector(vector, apic->regs + APIC_ISR);
1092 apic_update_ppr(apic);
1093 apic_clear_irr(vector, apic);
1094 return vector;
1097 void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1099 struct kvm_lapic *apic = vcpu->arch.apic;
1101 apic->base_address = vcpu->arch.apic_base &
1102 MSR_IA32_APICBASE_BASE;
1103 apic_set_reg(apic, APIC_LVR, APIC_VERSION);
1104 apic_update_ppr(apic);
1105 hrtimer_cancel(&apic->timer.dev);
1106 update_divide_count(apic);
1107 start_apic_timer(apic);
1110 void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
1112 struct kvm_lapic *apic = vcpu->arch.apic;
1113 struct hrtimer *timer;
1115 if (!apic)
1116 return;
1118 timer = &apic->timer.dev;
1119 if (hrtimer_cancel(timer))
1120 hrtimer_start(timer, timer->expires, HRTIMER_MODE_ABS);
1123 void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1125 u32 data;
1126 void *vapic;
1128 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1129 return;
1131 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1132 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
1133 kunmap_atomic(vapic, KM_USER0);
1135 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1138 void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1140 u32 data, tpr;
1141 int max_irr, max_isr;
1142 struct kvm_lapic *apic;
1143 void *vapic;
1145 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1146 return;
1148 apic = vcpu->arch.apic;
1149 tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff;
1150 max_irr = apic_find_highest_irr(apic);
1151 if (max_irr < 0)
1152 max_irr = 0;
1153 max_isr = apic_find_highest_isr(apic);
1154 if (max_isr < 0)
1155 max_isr = 0;
1156 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1158 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1159 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
1160 kunmap_atomic(vapic, KM_USER0);
1163 void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1165 if (!irqchip_in_kernel(vcpu->kvm))
1166 return;
1168 vcpu->arch.apic->vapic_addr = vapic_addr;