irq.c 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * irq.c: API for in kernel interrupt controller
 * Copyright (c) 2007, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 * Place - Suite 330, Boston, MA 02111-1307 USA.
 * Authors:
 *   Yaozu (Eddie) Dong <Eddie.dong@intel.com>
 *
 */

#include <linux/module.h>
23
#include <linux/kvm_host.h>
24 25

#include "irq.h"
S
Sheng Yang 已提交
26
#include "i8254.h"
27
#include "x86.h"
28

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/*
 * check if there are pending timer events
 * to be processed.
 */
int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
{
	int ret;

	ret = pit_has_pending_timer(vcpu);
	ret |= apic_has_pending_timer(vcpu);

	return ret;
}
EXPORT_SYMBOL(kvm_cpu_has_pending_timer);

44 45 46 47 48 49
/*
 * check if there is pending interrupt without
 * intack.
 */
int kvm_cpu_has_interrupt(struct kvm_vcpu *v)
{
E
Eddie Dong 已提交
50 51
	struct kvm_pic *s;

52 53 54
	if (!irqchip_in_kernel(v->kvm))
		return v->arch.irq_summary;

E
Eddie Dong 已提交
55
	if (kvm_apic_has_interrupt(v) == -1) {	/* LAPIC */
Q
Qing He 已提交
56 57 58 59 60
		if (kvm_apic_accept_pic_intr(v)) {
			s = pic_irqchip(v->kvm);	/* PIC */
			return s->output;
		} else
			return 0;
E
Eddie Dong 已提交
61 62
	}
	return 1;
63 64 65 66 67 68 69 70
}
EXPORT_SYMBOL_GPL(kvm_cpu_has_interrupt);

/*
 * Read pending interrupt vector and intack.
 */
int kvm_cpu_get_interrupt(struct kvm_vcpu *v)
{
E
Eddie Dong 已提交
71
	struct kvm_pic *s;
72 73
	int vector;

74 75 76
	if (!irqchip_in_kernel(v->kvm))
		return kvm_pop_irq(v);

E
Eddie Dong 已提交
77 78
	vector = kvm_get_apic_interrupt(v);	/* APIC */
	if (vector == -1) {
Q
Qing He 已提交
79 80 81
		if (kvm_apic_accept_pic_intr(v)) {
			s = pic_irqchip(v->kvm);
			s->output = 0;		/* PIC */
M
Marcelo Tosatti 已提交
82
			vector = kvm_pic_read_irq(v->kvm);
Q
Qing He 已提交
83
		}
E
Eddie Dong 已提交
84 85
	}
	return vector;
86 87
}
EXPORT_SYMBOL_GPL(kvm_cpu_get_interrupt);
E
Eddie Dong 已提交
88

89 90 91
void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu)
{
	kvm_inject_apic_timer_irqs(vcpu);
S
Sheng Yang 已提交
92
	kvm_inject_pit_timer_irqs(vcpu);
93 94 95 96
	/* TODO: PIT, RTC etc. */
}
EXPORT_SYMBOL_GPL(kvm_inject_pending_timer_irqs);

M
Marcelo Tosatti 已提交
97 98 99 100 101
void __kvm_migrate_timers(struct kvm_vcpu *vcpu)
{
	__kvm_migrate_apic_timer(vcpu);
	__kvm_migrate_pit_timer(vcpu);
}