2 * Copyright (C) 2001 MandrakeSoft S.A.
3 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
8 * http://www.linux-mandrake.com/
9 * http://www.mandrakesoft.com/
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 * Yunhong Jiang <yunhong.jiang@intel.com>
26 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
27 * Based on Xen 3.1 code.
30 #include <linux/kvm_host.h>
31 #include <linux/kvm.h>
33 #include <linux/highmem.h>
34 #include <linux/smp.h>
35 #include <linux/hrtimer.h>
37 #include <linux/slab.h>
38 #include <linux/export.h>
39 #include <asm/processor.h>
41 #include <asm/current.h>
42 #include <trace/events/kvm.h>
49 #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
51 #define ioapic_debug(fmt, arg...)
53 static int ioapic_service(struct kvm_ioapic *vioapic, int irq,
56 static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
60 unsigned long result = 0;
62 switch (ioapic->ioregsel) {
63 case IOAPIC_REG_VERSION:
64 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
65 | (IOAPIC_VERSION_ID & 0xff));
68 case IOAPIC_REG_APIC_ID:
69 case IOAPIC_REG_ARB_ID:
70 result = ((ioapic->id & 0xf) << 24);
75 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
78 if (redir_index < IOAPIC_NUM_PINS)
80 ioapic->redirtbl[redir_index].bits;
82 redir_content = ~0ULL;
84 result = (ioapic->ioregsel & 0x1) ?
85 (redir_content >> 32) & 0xffffffff :
86 redir_content & 0xffffffff;
94 static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic)
96 ioapic->rtc_status.pending_eoi = 0;
97 bitmap_zero(ioapic->rtc_status.dest_map.map, KVM_MAX_VCPUS);
100 static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic);
102 static void rtc_status_pending_eoi_check_valid(struct kvm_ioapic *ioapic)
104 if (WARN_ON(ioapic->rtc_status.pending_eoi < 0))
105 kvm_rtc_eoi_tracking_restore_all(ioapic);
108 static void __rtc_irq_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
110 bool new_val, old_val;
111 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
112 union kvm_ioapic_redirect_entry *e;
114 e = &ioapic->redirtbl[RTC_GSI];
115 if (!kvm_apic_match_dest(vcpu, NULL, 0, e->fields.dest_id,
116 e->fields.dest_mode))
119 new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
120 old_val = test_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map.map);
122 if (new_val == old_val)
126 __set_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map.map);
127 ioapic->rtc_status.pending_eoi++;
129 __clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map.map);
130 ioapic->rtc_status.pending_eoi--;
131 rtc_status_pending_eoi_check_valid(ioapic);
135 void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
137 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
139 spin_lock(&ioapic->lock);
140 __rtc_irq_eoi_tracking_restore_one(vcpu);
141 spin_unlock(&ioapic->lock);
144 static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
146 struct kvm_vcpu *vcpu;
149 if (RTC_GSI >= IOAPIC_NUM_PINS)
152 rtc_irq_eoi_tracking_reset(ioapic);
153 kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
154 __rtc_irq_eoi_tracking_restore_one(vcpu);
157 static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu)
159 if (test_and_clear_bit(vcpu->vcpu_id,
160 ioapic->rtc_status.dest_map.map)) {
161 --ioapic->rtc_status.pending_eoi;
162 rtc_status_pending_eoi_check_valid(ioapic);
166 static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
168 if (ioapic->rtc_status.pending_eoi > 0)
169 return true; /* coalesced */
174 static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
175 int irq_level, bool line_status)
177 union kvm_ioapic_redirect_entry entry;
182 entry = ioapic->redirtbl[irq];
183 edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
186 ioapic->irr &= ~mask;
192 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
193 * this only happens if a previous edge has not been delivered due
194 * do masking. For level interrupts, the remote_irr field tells
195 * us if the interrupt is waiting for an EOI.
197 * RTC is special: it is edge-triggered, but userspace likes to know
198 * if it has been already ack-ed via EOI because coalesced RTC
199 * interrupts lead to time drift in Windows guests. So we track
200 * EOI manually for the RTC interrupt.
202 if (irq == RTC_GSI && line_status &&
203 rtc_irq_check_coalesced(ioapic)) {
208 old_irr = ioapic->irr;
211 ioapic->irr_delivered &= ~mask;
212 if ((edge && old_irr == ioapic->irr) ||
213 (!edge && entry.fields.remote_irr)) {
218 ret = ioapic_service(ioapic, irq, line_status);
221 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
225 static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
229 rtc_irq_eoi_tracking_reset(ioapic);
230 for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
231 ioapic_set_irq(ioapic, idx, 1, true);
233 kvm_rtc_eoi_tracking_restore_all(ioapic);
237 void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, ulong *ioapic_handled_vectors)
239 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
240 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
241 union kvm_ioapic_redirect_entry *e;
244 spin_lock(&ioapic->lock);
246 /* Make sure we see any missing RTC EOI */
247 if (test_bit(vcpu->vcpu_id, dest_map->map))
248 __set_bit(dest_map->vectors[vcpu->vcpu_id],
249 ioapic_handled_vectors);
251 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
252 e = &ioapic->redirtbl[index];
253 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
254 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
256 if (kvm_apic_match_dest(vcpu, NULL, 0,
257 e->fields.dest_id, e->fields.dest_mode) ||
258 (e->fields.trig_mode == IOAPIC_EDGE_TRIG &&
259 kvm_apic_pending_eoi(vcpu, e->fields.vector)))
260 __set_bit(e->fields.vector,
261 ioapic_handled_vectors);
264 spin_unlock(&ioapic->lock);
267 void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
269 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
273 kvm_make_scan_ioapic_request(kvm);
276 static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
279 bool mask_before, mask_after;
280 union kvm_ioapic_redirect_entry *e;
282 switch (ioapic->ioregsel) {
283 case IOAPIC_REG_VERSION:
284 /* Writes are ignored. */
287 case IOAPIC_REG_APIC_ID:
288 ioapic->id = (val >> 24) & 0xf;
291 case IOAPIC_REG_ARB_ID:
295 index = (ioapic->ioregsel - 0x10) >> 1;
297 ioapic_debug("change redir index %x val %x\n", index, val);
298 if (index >= IOAPIC_NUM_PINS)
300 e = &ioapic->redirtbl[index];
301 mask_before = e->fields.mask;
302 if (ioapic->ioregsel & 1) {
303 e->bits &= 0xffffffff;
304 e->bits |= (u64) val << 32;
306 e->bits &= ~0xffffffffULL;
307 e->bits |= (u32) val;
308 e->fields.remote_irr = 0;
310 mask_after = e->fields.mask;
311 if (mask_before != mask_after)
312 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
313 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
314 && ioapic->irr & (1 << index))
315 ioapic_service(ioapic, index, false);
316 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
321 static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
323 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
324 struct kvm_lapic_irq irqe;
327 if (entry->fields.mask)
330 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
331 "vector=%x trig_mode=%x\n",
332 entry->fields.dest_id, entry->fields.dest_mode,
333 entry->fields.delivery_mode, entry->fields.vector,
334 entry->fields.trig_mode);
336 irqe.dest_id = entry->fields.dest_id;
337 irqe.vector = entry->fields.vector;
338 irqe.dest_mode = entry->fields.dest_mode;
339 irqe.trig_mode = entry->fields.trig_mode;
340 irqe.delivery_mode = entry->fields.delivery_mode << 8;
343 irqe.msi_redir_hint = false;
345 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
346 ioapic->irr_delivered |= 1 << irq;
348 if (irq == RTC_GSI && line_status) {
350 * pending_eoi cannot ever become negative (see
351 * rtc_status_pending_eoi_check_valid) and the caller
352 * ensures that it is only called if it is >= zero, namely
353 * if rtc_irq_check_coalesced returns false).
355 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
356 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
357 &ioapic->rtc_status.dest_map);
358 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
360 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
362 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
363 entry->fields.remote_irr = 1;
368 int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
369 int level, bool line_status)
373 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
375 spin_lock(&ioapic->lock);
376 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
377 irq_source_id, level);
378 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
380 spin_unlock(&ioapic->lock);
385 void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
389 spin_lock(&ioapic->lock);
390 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
391 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
392 spin_unlock(&ioapic->lock);
395 static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
398 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
400 spin_lock(&ioapic->lock);
401 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
402 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
404 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
407 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
408 ioapic_service(ioapic, i, false);
410 spin_unlock(&ioapic->lock);
413 #define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
415 static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
416 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
418 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
419 struct kvm_lapic *apic = vcpu->arch.apic;
422 /* RTC special handling */
423 if (test_bit(vcpu->vcpu_id, dest_map->map) &&
424 vector == dest_map->vectors[vcpu->vcpu_id])
425 rtc_irq_eoi(ioapic, vcpu);
427 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
428 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
430 if (ent->fields.vector != vector)
434 * We are dropping lock while calling ack notifiers because ack
435 * notifier callbacks for assigned devices call into IOAPIC
436 * recursively. Since remote_irr is cleared only after call
437 * to notifiers if the same vector will be delivered while lock
438 * is dropped it will be put into irr and will be delivered
439 * after ack notifier returns.
441 spin_unlock(&ioapic->lock);
442 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
443 spin_lock(&ioapic->lock);
445 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
446 kvm_lapic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
449 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
450 ent->fields.remote_irr = 0;
451 if (!ent->fields.mask && (ioapic->irr & (1 << i))) {
452 ++ioapic->irq_eoi[i];
453 if (ioapic->irq_eoi[i] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
455 * Real hardware does not deliver the interrupt
456 * immediately during eoi broadcast, and this
457 * lets a buggy guest make slow progress
458 * even if it does not correctly handle a
459 * level-triggered interrupt. Emulate this
460 * behavior if we detect an interrupt storm.
462 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
463 ioapic->irq_eoi[i] = 0;
464 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
466 ioapic_service(ioapic, i, false);
469 ioapic->irq_eoi[i] = 0;
474 void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
476 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
478 spin_lock(&ioapic->lock);
479 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
480 spin_unlock(&ioapic->lock);
483 static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
485 return container_of(dev, struct kvm_ioapic, dev);
488 static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
490 return ((addr >= ioapic->base_address &&
491 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
494 static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
495 gpa_t addr, int len, void *val)
497 struct kvm_ioapic *ioapic = to_ioapic(this);
499 if (!ioapic_in_range(ioapic, addr))
502 ioapic_debug("addr %lx\n", (unsigned long)addr);
503 ASSERT(!(addr & 0xf)); /* check alignment */
506 spin_lock(&ioapic->lock);
508 case IOAPIC_REG_SELECT:
509 result = ioapic->ioregsel;
512 case IOAPIC_REG_WINDOW:
513 result = ioapic_read_indirect(ioapic, addr, len);
520 spin_unlock(&ioapic->lock);
524 *(u64 *) val = result;
529 memcpy(val, (char *)&result, len);
532 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
537 static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
538 gpa_t addr, int len, const void *val)
540 struct kvm_ioapic *ioapic = to_ioapic(this);
542 if (!ioapic_in_range(ioapic, addr))
545 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
546 (void*)addr, len, val);
547 ASSERT(!(addr & 0xf)); /* check alignment */
561 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
566 spin_lock(&ioapic->lock);
568 case IOAPIC_REG_SELECT:
569 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
572 case IOAPIC_REG_WINDOW:
573 ioapic_write_indirect(ioapic, data);
579 spin_unlock(&ioapic->lock);
583 static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
587 cancel_delayed_work_sync(&ioapic->eoi_inject);
588 for (i = 0; i < IOAPIC_NUM_PINS; i++)
589 ioapic->redirtbl[i].fields.mask = 1;
590 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
591 ioapic->ioregsel = 0;
593 ioapic->irr_delivered = 0;
595 memset(ioapic->irq_eoi, 0x00, IOAPIC_NUM_PINS);
596 rtc_irq_eoi_tracking_reset(ioapic);
599 static const struct kvm_io_device_ops ioapic_mmio_ops = {
600 .read = ioapic_mmio_read,
601 .write = ioapic_mmio_write,
604 int kvm_ioapic_init(struct kvm *kvm)
606 struct kvm_ioapic *ioapic;
609 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
612 spin_lock_init(&ioapic->lock);
613 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
614 kvm->arch.vioapic = ioapic;
615 kvm_ioapic_reset(ioapic);
616 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
618 mutex_lock(&kvm->slots_lock);
619 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
620 IOAPIC_MEM_LENGTH, &ioapic->dev);
621 mutex_unlock(&kvm->slots_lock);
623 kvm->arch.vioapic = NULL;
628 kvm_vcpu_request_scan_ioapic(kvm);
632 void kvm_ioapic_destroy(struct kvm *kvm)
634 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
636 cancel_delayed_work_sync(&ioapic->eoi_inject);
637 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
638 kvm->arch.vioapic = NULL;
642 int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
644 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
648 spin_lock(&ioapic->lock);
649 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
650 state->irr &= ~ioapic->irr_delivered;
651 spin_unlock(&ioapic->lock);
655 int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
657 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
661 spin_lock(&ioapic->lock);
662 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
664 ioapic->irr_delivered = 0;
665 kvm_vcpu_request_scan_ioapic(kvm);
666 kvm_ioapic_inject_all(ioapic, state->irr);
667 spin_unlock(&ioapic->lock);