blob: 803b9c7db57b5c352fc2ae9268a0c003a5109c5b [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
25#include "kvm.h"
Hollis Blancharde2174022007-12-03 15:30:24 -060026#include "iodev.h"
Eddie Dong85f455f2007-07-06 12:20:49 +030027
28typedef void irq_request_func(void *opaque, int level);
29
Eddie Dong85f455f2007-07-06 12:20:49 +030030struct kvm_kpic_state {
31 u8 last_irr; /* edge detection */
32 u8 irr; /* interrupt request register */
33 u8 imr; /* interrupt mask register */
34 u8 isr; /* interrupt service register */
35 u8 priority_add; /* highest irq priority */
36 u8 irq_base;
37 u8 read_reg_select;
38 u8 poll;
39 u8 special_mask;
40 u8 init_state;
41 u8 auto_eoi;
42 u8 rotate_on_auto_eoi;
43 u8 special_fully_nested_mode;
44 u8 init4; /* true if 4 byte init */
45 u8 elcr; /* PIIX edge/trigger selection */
46 u8 elcr_mask;
47 struct kvm_pic *pics_state;
48};
49
50struct kvm_pic {
51 struct kvm_kpic_state pics[2]; /* 0 is master pic, 1 is slave pic */
52 irq_request_func *irq_request;
53 void *irq_request_opaque;
54 int output; /* intr from master PIC */
55 struct kvm_io_device dev;
56};
57
58struct kvm_pic *kvm_create_pic(struct kvm *kvm);
59void kvm_pic_set_irq(void *opaque, int irq, int level);
60int kvm_pic_read_irq(struct kvm_pic *s);
61int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
62int kvm_cpu_has_interrupt(struct kvm_vcpu *v);
He, Qing6ceb9d72007-07-26 11:05:18 +030063void kvm_pic_update_irq(struct kvm_pic *s);
Eddie Dong85f455f2007-07-06 12:20:49 +030064
He, Qing6bf9e962007-08-05 10:49:16 +030065#define IOAPIC_NUM_PINS KVM_IOAPIC_NUM_PINS
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030066#define IOAPIC_VERSION_ID 0x11 /* IOAPIC version */
67#define IOAPIC_EDGE_TRIG 0
68#define IOAPIC_LEVEL_TRIG 1
69
70#define IOAPIC_DEFAULT_BASE_ADDRESS 0xfec00000
71#define IOAPIC_MEM_LENGTH 0x100
72
73/* Direct registers. */
74#define IOAPIC_REG_SELECT 0x00
75#define IOAPIC_REG_WINDOW 0x10
76#define IOAPIC_REG_EOI 0x40 /* IA64 IOSAPIC only */
77
78/* Indirect registers. */
79#define IOAPIC_REG_APIC_ID 0x00 /* x86 IOAPIC only */
80#define IOAPIC_REG_VERSION 0x01
81#define IOAPIC_REG_ARB_ID 0x02 /* x86 IOAPIC only */
82
Zhang Xiantao0c7ac282007-12-02 22:49:09 +080083/*ioapic delivery mode*/
84#define IOAPIC_FIXED 0x0
85#define IOAPIC_LOWEST_PRIORITY 0x1
86#define IOAPIC_PMI 0x2
87#define IOAPIC_NMI 0x4
88#define IOAPIC_INIT 0x5
89#define IOAPIC_EXTINT 0x7
90
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030091struct kvm_ioapic {
92 u64 base_address;
93 u32 ioregsel;
94 u32 id;
95 u32 irr;
96 u32 pad;
97 union ioapic_redir_entry {
98 u64 bits;
99 struct {
100 u8 vector;
101 u8 delivery_mode:3;
102 u8 dest_mode:1;
103 u8 delivery_status:1;
104 u8 polarity:1;
105 u8 remote_irr:1;
106 u8 trig_mode:1;
107 u8 mask:1;
108 u8 reserve:7;
109 u8 reserved[4];
110 u8 dest_id;
111 } fields;
112 } redirtbl[IOAPIC_NUM_PINS];
113 struct kvm_io_device dev;
114 struct kvm *kvm;
115};
116
Eddie Dong97222cc2007-09-12 10:58:04 +0300117struct kvm_lapic {
118 unsigned long base_address;
119 struct kvm_io_device dev;
120 struct {
121 atomic_t pending;
122 s64 period; /* unit: ns */
123 u32 divide_count;
124 ktime_t last_update;
125 struct hrtimer dev;
126 } timer;
127 struct kvm_vcpu *vcpu;
128 struct page *regs_page;
129 void *regs;
130};
131
132#ifdef DEBUG
133#define ASSERT(x) \
134do { \
135 if (!(x)) { \
136 printk(KERN_EMERG "assertion failed %s: %d: %s\n", \
137 __FILE__, __LINE__, #x); \
138 BUG(); \
139 } \
140} while (0)
141#else
142#define ASSERT(x) do { } while (0)
143#endif
144
145void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
146int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu);
Qing He40487c62007-09-17 14:47:13 +0800147int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300148int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu);
149int kvm_create_lapic(struct kvm_vcpu *vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300150void kvm_lapic_reset(struct kvm_vcpu *vcpu);
Eddie Dong2fcceae2007-10-10 12:14:25 +0200151void kvm_pic_reset(struct kvm_kpic_state *s);
Eddie Dong8c392692007-10-10 12:15:54 +0200152void kvm_ioapic_reset(struct kvm_ioapic *ioapic);
Rusty Russelld5894442007-10-08 10:48:30 +1000153void kvm_free_lapic(struct kvm_vcpu *vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300154u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu);
155void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8);
156void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value);
Zhang Xiantao8be54532007-12-02 22:35:57 +0800157
158struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300159 unsigned long bitmap);
Eddie Dong97222cc2007-09-12 10:58:04 +0300160u64 kvm_get_apic_base(struct kvm_vcpu *vcpu);
161void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300162int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest);
Eddie Dong97222cc2007-09-12 10:58:04 +0300163void kvm_ioapic_update_eoi(struct kvm *kvm, int vector);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300164int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda);
Zhang Xiantao8be54532007-12-02 22:35:57 +0800165int kvm_apic_set_irq(struct kvm_vcpu *vcpu, u8 vec, u8 trig);
Eddie Dong96ad2cc2007-09-06 12:22:56 +0300166void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300167int kvm_ioapic_init(struct kvm *kvm);
168void kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800169int kvm_lapic_enabled(struct kvm_vcpu *vcpu);
170int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu);
Eddie Dong1b9778d2007-09-03 16:56:58 +0300171void kvm_apic_timer_intr_post(struct kvm_vcpu *vcpu, int vec);
172void kvm_timer_intr_post(struct kvm_vcpu *vcpu, int vec);
173void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu);
174void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu);
Eddie Donga3d7f852007-09-03 16:15:12 +0300175void kvm_migrate_apic_timer(struct kvm_vcpu *vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300176
Eddie Dong85f455f2007-07-06 12:20:49 +0300177#endif