blob: 2bf32a03ceecf5837f6e30ef99b80067423632da [file] [log] [blame]
Eddie Dong85f455f2007-07-06 12:20:49 +03001/*
2 * irq.h: in kernel interrupt controller related definitions
3 * Copyright (c) 2007, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 * Authors:
18 * Yaozu (Eddie) Dong <Eddie.dong@intel.com>
19 *
20 */
21
22#ifndef __IRQ_H
23#define __IRQ_H
24
Hollis Blancharde01a1b52007-12-03 15:30:25 -060025#include <linux/mm_types.h>
26#include <linux/hrtimer.h>
Avi Kivityedf88412007-12-16 11:02:48 +020027#include <linux/kvm_host.h>
Avi Kivity3f353852008-12-21 22:48:32 +020028#include <linux/spinlock.h>
Zhang Xiantao82470192007-12-17 13:59:56 +080029
Hollis Blancharde2174022007-12-03 15:30:24 -060030#include "iodev.h"
Zhang Xiantao82470192007-12-17 13:59:56 +080031#include "ioapic.h"
32#include "lapic.h"
Eddie Dong85f455f2007-07-06 12:20:49 +030033
Ben-Ami Yassourc65bbfa2008-07-06 17:15:07 +030034#define PIC_NUM_PINS 16
35
Hollis Blancharde01a1b52007-12-03 15:30:25 -060036struct kvm;
37struct kvm_vcpu;
38
Eddie Dong85f455f2007-07-06 12:20:49 +030039typedef void irq_request_func(void *opaque, int level);
40
Eddie Dong85f455f2007-07-06 12:20:49 +030041struct kvm_kpic_state {
42 u8 last_irr; /* edge detection */
43 u8 irr; /* interrupt request register */
44 u8 imr; /* interrupt mask register */
45 u8 isr; /* interrupt service register */
Marcelo Tosattie4825802008-09-24 20:28:34 -030046 u8 isr_ack; /* interrupt ack detection */
Eddie Dong85f455f2007-07-06 12:20:49 +030047 u8 priority_add; /* highest irq priority */
48 u8 irq_base;
49 u8 read_reg_select;
50 u8 poll;
51 u8 special_mask;
52 u8 init_state;
53 u8 auto_eoi;
54 u8 rotate_on_auto_eoi;
55 u8 special_fully_nested_mode;
56 u8 init4; /* true if 4 byte init */
57 u8 elcr; /* PIIX edge/trigger selection */
58 u8 elcr_mask;
59 struct kvm_pic *pics_state;
60};
61
62struct kvm_pic {
Avi Kivity3f353852008-12-21 22:48:32 +020063 spinlock_t lock;
64 bool wakeup_needed;
65 unsigned pending_acks;
66 struct kvm *kvm;
Eddie Dong85f455f2007-07-06 12:20:49 +030067 struct kvm_kpic_state pics[2]; /* 0 is master pic, 1 is slave pic */
68 irq_request_func *irq_request;
69 void *irq_request_opaque;
70 int output; /* intr from master PIC */
71 struct kvm_io_device dev;
Marcelo Tosattif5244722008-07-26 17:01:00 -030072 void (*ack_notifier)(void *opaque, int irq);
Eddie Dong85f455f2007-07-06 12:20:49 +030073};
74
75struct kvm_pic *kvm_create_pic(struct kvm *kvm);
Marcelo Tosattif5244722008-07-26 17:01:00 -030076int kvm_pic_read_irq(struct kvm *kvm);
He, Qing6ceb9d72007-07-26 11:05:18 +030077void kvm_pic_update_irq(struct kvm_pic *s);
Marcelo Tosattie4825802008-09-24 20:28:34 -030078void kvm_pic_clear_isr_ack(struct kvm *kvm);
Eddie Dong85f455f2007-07-06 12:20:49 +030079
Zhang Xiantao682c59a2007-12-11 20:36:00 +080080static inline struct kvm_pic *pic_irqchip(struct kvm *kvm)
81{
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +080082 return kvm->arch.vpic;
Zhang Xiantao682c59a2007-12-11 20:36:00 +080083}
84
Zhang Xiantao682c59a2007-12-11 20:36:00 +080085static inline int irqchip_in_kernel(struct kvm *kvm)
86{
87 return pic_irqchip(kvm) != NULL;
88}
89
Eddie Dong2fcceae2007-10-10 12:14:25 +020090void kvm_pic_reset(struct kvm_kpic_state *s);
Zhang Xiantao8be54532007-12-02 22:35:57 +080091
Eddie Dong1b9778d2007-09-03 16:56:58 +030092void kvm_timer_intr_post(struct kvm_vcpu *vcpu, int vec);
93void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu);
94void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu);
Jan Kiszka8fdb2352008-10-20 10:20:02 +020095void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +020096void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu);
Marcelo Tosatti2f599712008-05-27 12:10:20 -030097void __kvm_migrate_pit_timer(struct kvm_vcpu *vcpu);
98void __kvm_migrate_timers(struct kvm_vcpu *vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +030099
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300100int pit_has_pending_timer(struct kvm_vcpu *vcpu);
101int apic_has_pending_timer(struct kvm_vcpu *vcpu);
102
Eddie Dong85f455f2007-07-06 12:20:49 +0300103#endif