blob: 7e06ba1618bd73168226a4a299895778e4a00065 [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
Eddie Dong97222cc2007-09-12 10:58:04 +030051 if (kvm_apic_has_interrupt(v) == -1) { /* LAPIC */
Qing He40487c62007-09-17 14:47:13 +080052 if (kvm_apic_accept_pic_intr(v)) {
53 s = pic_irqchip(v->kvm); /* PIC */
54 return s->output;
55 } else
56 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +030057 }
58 return 1;
Eddie Dong85f455f2007-07-06 12:20:49 +030059}
60EXPORT_SYMBOL_GPL(kvm_cpu_has_interrupt);
61
62/*
63 * Read pending interrupt vector and intack.
64 */
65int kvm_cpu_get_interrupt(struct kvm_vcpu *v)
66{
Eddie Dong97222cc2007-09-12 10:58:04 +030067 struct kvm_pic *s;
Eddie Dong85f455f2007-07-06 12:20:49 +030068 int vector;
69
Gleb Natapov80618232009-04-21 17:44:56 +030070 if (!irqchip_in_kernel(v->kvm))
Gleb Natapov923c61b2009-05-11 13:35:48 +030071 return v->arch.interrupt.nr;
Gleb Natapov80618232009-04-21 17:44:56 +030072
Eddie Dong97222cc2007-09-12 10:58:04 +030073 vector = kvm_get_apic_interrupt(v); /* APIC */
74 if (vector == -1) {
Qing He40487c62007-09-17 14:47:13 +080075 if (kvm_apic_accept_pic_intr(v)) {
76 s = pic_irqchip(v->kvm);
77 s->output = 0; /* PIC */
Marcelo Tosattif5244722008-07-26 17:01:00 -030078 vector = kvm_pic_read_irq(v->kvm);
Qing He40487c62007-09-17 14:47:13 +080079 }
Eddie Dong97222cc2007-09-12 10:58:04 +030080 }
81 return vector;
Eddie Dong85f455f2007-07-06 12:20:49 +030082}
83EXPORT_SYMBOL_GPL(kvm_cpu_get_interrupt);
Eddie Dong97222cc2007-09-12 10:58:04 +030084
Eddie Dong1b9778d2007-09-03 16:56:58 +030085void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu)
86{
87 kvm_inject_apic_timer_irqs(vcpu);
88 /* TODO: PIT, RTC etc. */
89}
90EXPORT_SYMBOL_GPL(kvm_inject_pending_timer_irqs);
91
Marcelo Tosatti2f599712008-05-27 12:10:20 -030092void __kvm_migrate_timers(struct kvm_vcpu *vcpu)
93{
94 __kvm_migrate_apic_timer(vcpu);
95 __kvm_migrate_pit_timer(vcpu);
96}