blob: ebd98d0c4f6efbb2b749d1b2e8546a73b54eaf8b [file] [log] [blame]
Eddie Dong85f455f2007-07-06 12:20:49 +03001/*
2 * irq.c: API for in kernel interrupt controller
3 * Copyright (c) 2007, Intel Corporation.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02004 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
Eddie Dong85f455f2007-07-06 12:20:49 +03005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17 * Place - Suite 330, Boston, MA 02111-1307 USA.
18 * Authors:
19 * Yaozu (Eddie) Dong <Eddie.dong@intel.com>
20 *
21 */
22
23#include <linux/module.h>
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Eddie Dong85f455f2007-07-06 12:20:49 +030025
Eddie Dong85f455f2007-07-06 12:20:49 +030026#include "irq.h"
Sheng Yang78376992008-01-28 05:10:22 +080027#include "i8254.h"
Gleb Natapov80618232009-04-21 17:44:56 +030028#include "x86.h"
Eddie Dong85f455f2007-07-06 12:20:49 +030029
30/*
Marcelo Tosatti3d808402008-04-11 14:53:26 -030031 * check if there are pending timer events
32 * to be processed.
33 */
34int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
35{
Jason Wang23e7a792010-08-27 17:15:06 +080036 return apic_has_pending_timer(vcpu);
Marcelo Tosatti3d808402008-04-11 14:53:26 -030037}
38EXPORT_SYMBOL(kvm_cpu_has_pending_timer);
39
40/*
Eddie Dong85f455f2007-07-06 12:20:49 +030041 * check if there is pending interrupt without
42 * intack.
43 */
44int kvm_cpu_has_interrupt(struct kvm_vcpu *v)
45{
Eddie Dong97222cc2007-09-12 10:58:04 +030046 struct kvm_pic *s;
Eddie Dong85f455f2007-07-06 12:20:49 +030047
Gleb Natapov80618232009-04-21 17:44:56 +030048 if (!irqchip_in_kernel(v->kvm))
Gleb Natapov923c61b2009-05-11 13:35:48 +030049 return v->arch.interrupt.pending;
Gleb Natapov80618232009-04-21 17:44:56 +030050
Gleb Natapovf3200d02012-12-10 14:05:55 +020051 if (kvm_apic_accept_pic_intr(v) && pic_irqchip(v->kvm)->output)
52 return pic_irqchip(v->kvm)->output; /* PIC */
53
54 return kvm_apic_has_interrupt(v) != -1; /* LAPIC */
Eddie Dong85f455f2007-07-06 12:20:49 +030055}
56EXPORT_SYMBOL_GPL(kvm_cpu_has_interrupt);
57
58/*
59 * Read pending interrupt vector and intack.
60 */
61int kvm_cpu_get_interrupt(struct kvm_vcpu *v)
62{
Eddie Dong97222cc2007-09-12 10:58:04 +030063 struct kvm_pic *s;
Eddie Dong85f455f2007-07-06 12:20:49 +030064
Gleb Natapov80618232009-04-21 17:44:56 +030065 if (!irqchip_in_kernel(v->kvm))
Gleb Natapov923c61b2009-05-11 13:35:48 +030066 return v->arch.interrupt.nr;
Gleb Natapov80618232009-04-21 17:44:56 +030067
Gleb Natapovf3200d02012-12-10 14:05:55 +020068 if (kvm_apic_accept_pic_intr(v) && pic_irqchip(v->kvm)->output)
69 return kvm_pic_read_irq(v->kvm); /* PIC */
70
71 return kvm_get_apic_interrupt(v); /* APIC */
Eddie Dong85f455f2007-07-06 12:20:49 +030072}
73EXPORT_SYMBOL_GPL(kvm_cpu_get_interrupt);
Eddie Dong97222cc2007-09-12 10:58:04 +030074
Eddie Dong1b9778d2007-09-03 16:56:58 +030075void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu)
76{
77 kvm_inject_apic_timer_irqs(vcpu);
78 /* TODO: PIT, RTC etc. */
79}
80EXPORT_SYMBOL_GPL(kvm_inject_pending_timer_irqs);
81
Marcelo Tosatti2f599712008-05-27 12:10:20 -030082void __kvm_migrate_timers(struct kvm_vcpu *vcpu)
83{
84 __kvm_migrate_apic_timer(vcpu);
85 __kvm_migrate_pit_timer(vcpu);
86}