Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 1 | /* |
| 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 Blanchard | e01a1b5 | 2007-12-03 15:30:25 -0600 | [diff] [blame] | 25 | #include <linux/mm_types.h> |
| 26 | #include <linux/hrtimer.h> |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame^] | 27 | #include <linux/kvm_host.h> |
Hollis Blanchard | e217402 | 2007-12-03 15:30:24 -0600 | [diff] [blame] | 28 | #include "iodev.h" |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 29 | |
Hollis Blanchard | e01a1b5 | 2007-12-03 15:30:25 -0600 | [diff] [blame] | 30 | struct kvm; |
| 31 | struct kvm_vcpu; |
| 32 | |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 33 | typedef void irq_request_func(void *opaque, int level); |
| 34 | |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 35 | struct kvm_kpic_state { |
| 36 | u8 last_irr; /* edge detection */ |
| 37 | u8 irr; /* interrupt request register */ |
| 38 | u8 imr; /* interrupt mask register */ |
| 39 | u8 isr; /* interrupt service register */ |
| 40 | u8 priority_add; /* highest irq priority */ |
| 41 | u8 irq_base; |
| 42 | u8 read_reg_select; |
| 43 | u8 poll; |
| 44 | u8 special_mask; |
| 45 | u8 init_state; |
| 46 | u8 auto_eoi; |
| 47 | u8 rotate_on_auto_eoi; |
| 48 | u8 special_fully_nested_mode; |
| 49 | u8 init4; /* true if 4 byte init */ |
| 50 | u8 elcr; /* PIIX edge/trigger selection */ |
| 51 | u8 elcr_mask; |
| 52 | struct kvm_pic *pics_state; |
| 53 | }; |
| 54 | |
| 55 | struct kvm_pic { |
| 56 | struct kvm_kpic_state pics[2]; /* 0 is master pic, 1 is slave pic */ |
| 57 | irq_request_func *irq_request; |
| 58 | void *irq_request_opaque; |
| 59 | int output; /* intr from master PIC */ |
| 60 | struct kvm_io_device dev; |
| 61 | }; |
| 62 | |
| 63 | struct kvm_pic *kvm_create_pic(struct kvm *kvm); |
| 64 | void kvm_pic_set_irq(void *opaque, int irq, int level); |
| 65 | int kvm_pic_read_irq(struct kvm_pic *s); |
He, Qing | 6ceb9d7 | 2007-07-26 11:05:18 +0300 | [diff] [blame] | 66 | void kvm_pic_update_irq(struct kvm_pic *s); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 67 | |
He, Qing | 6bf9e96 | 2007-08-05 10:49:16 +0300 | [diff] [blame] | 68 | #define IOAPIC_NUM_PINS KVM_IOAPIC_NUM_PINS |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 69 | #define IOAPIC_VERSION_ID 0x11 /* IOAPIC version */ |
| 70 | #define IOAPIC_EDGE_TRIG 0 |
| 71 | #define IOAPIC_LEVEL_TRIG 1 |
| 72 | |
| 73 | #define IOAPIC_DEFAULT_BASE_ADDRESS 0xfec00000 |
| 74 | #define IOAPIC_MEM_LENGTH 0x100 |
| 75 | |
| 76 | /* Direct registers. */ |
| 77 | #define IOAPIC_REG_SELECT 0x00 |
| 78 | #define IOAPIC_REG_WINDOW 0x10 |
| 79 | #define IOAPIC_REG_EOI 0x40 /* IA64 IOSAPIC only */ |
| 80 | |
| 81 | /* Indirect registers. */ |
| 82 | #define IOAPIC_REG_APIC_ID 0x00 /* x86 IOAPIC only */ |
| 83 | #define IOAPIC_REG_VERSION 0x01 |
| 84 | #define IOAPIC_REG_ARB_ID 0x02 /* x86 IOAPIC only */ |
| 85 | |
Zhang Xiantao | 0c7ac28 | 2007-12-02 22:49:09 +0800 | [diff] [blame] | 86 | /*ioapic delivery mode*/ |
| 87 | #define IOAPIC_FIXED 0x0 |
| 88 | #define IOAPIC_LOWEST_PRIORITY 0x1 |
| 89 | #define IOAPIC_PMI 0x2 |
| 90 | #define IOAPIC_NMI 0x4 |
| 91 | #define IOAPIC_INIT 0x5 |
| 92 | #define IOAPIC_EXTINT 0x7 |
| 93 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 94 | struct kvm_ioapic { |
| 95 | u64 base_address; |
| 96 | u32 ioregsel; |
| 97 | u32 id; |
| 98 | u32 irr; |
| 99 | u32 pad; |
| 100 | union ioapic_redir_entry { |
| 101 | u64 bits; |
| 102 | struct { |
| 103 | u8 vector; |
| 104 | u8 delivery_mode:3; |
| 105 | u8 dest_mode:1; |
| 106 | u8 delivery_status:1; |
| 107 | u8 polarity:1; |
| 108 | u8 remote_irr:1; |
| 109 | u8 trig_mode:1; |
| 110 | u8 mask:1; |
| 111 | u8 reserve:7; |
| 112 | u8 reserved[4]; |
| 113 | u8 dest_id; |
| 114 | } fields; |
| 115 | } redirtbl[IOAPIC_NUM_PINS]; |
| 116 | struct kvm_io_device dev; |
| 117 | struct kvm *kvm; |
| 118 | }; |
| 119 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 120 | struct kvm_lapic { |
| 121 | unsigned long base_address; |
| 122 | struct kvm_io_device dev; |
| 123 | struct { |
| 124 | atomic_t pending; |
| 125 | s64 period; /* unit: ns */ |
| 126 | u32 divide_count; |
| 127 | ktime_t last_update; |
| 128 | struct hrtimer dev; |
| 129 | } timer; |
| 130 | struct kvm_vcpu *vcpu; |
| 131 | struct page *regs_page; |
| 132 | void *regs; |
| 133 | }; |
| 134 | |
| 135 | #ifdef DEBUG |
| 136 | #define ASSERT(x) \ |
| 137 | do { \ |
| 138 | if (!(x)) { \ |
| 139 | printk(KERN_EMERG "assertion failed %s: %d: %s\n", \ |
| 140 | __FILE__, __LINE__, #x); \ |
| 141 | BUG(); \ |
| 142 | } \ |
| 143 | } while (0) |
| 144 | #else |
| 145 | #define ASSERT(x) do { } while (0) |
| 146 | #endif |
| 147 | |
Zhang Xiantao | 682c59a | 2007-12-11 20:36:00 +0800 | [diff] [blame] | 148 | static inline struct kvm_pic *pic_irqchip(struct kvm *kvm) |
| 149 | { |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 150 | return kvm->arch.vpic; |
Zhang Xiantao | 682c59a | 2007-12-11 20:36:00 +0800 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm) |
| 154 | { |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 155 | return kvm->arch.vioapic; |
Zhang Xiantao | 682c59a | 2007-12-11 20:36:00 +0800 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | static inline int irqchip_in_kernel(struct kvm *kvm) |
| 159 | { |
| 160 | return pic_irqchip(kvm) != NULL; |
| 161 | } |
| 162 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 163 | void kvm_vcpu_kick(struct kvm_vcpu *vcpu); |
| 164 | int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu); |
Qing He | 40487c6 | 2007-09-17 14:47:13 +0800 | [diff] [blame] | 165 | int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 166 | int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu); |
| 167 | int kvm_create_lapic(struct kvm_vcpu *vcpu); |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 168 | void kvm_lapic_reset(struct kvm_vcpu *vcpu); |
Eddie Dong | 2fcceae | 2007-10-10 12:14:25 +0200 | [diff] [blame] | 169 | void kvm_pic_reset(struct kvm_kpic_state *s); |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 170 | void kvm_ioapic_reset(struct kvm_ioapic *ioapic); |
Rusty Russell | d589444 | 2007-10-08 10:48:30 +1000 | [diff] [blame] | 171 | void kvm_free_lapic(struct kvm_vcpu *vcpu); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 172 | u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu); |
| 173 | void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8); |
| 174 | void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value); |
Zhang Xiantao | 8be5453 | 2007-12-02 22:35:57 +0800 | [diff] [blame] | 175 | |
| 176 | struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector, |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 177 | unsigned long bitmap); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 178 | u64 kvm_get_apic_base(struct kvm_vcpu *vcpu); |
| 179 | void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 180 | int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 181 | void kvm_ioapic_update_eoi(struct kvm *kvm, int vector); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 182 | int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda); |
Zhang Xiantao | 8be5453 | 2007-12-02 22:35:57 +0800 | [diff] [blame] | 183 | int kvm_apic_set_irq(struct kvm_vcpu *vcpu, u8 vec, u8 trig); |
Eddie Dong | 96ad2cc | 2007-09-06 12:22:56 +0300 | [diff] [blame] | 184 | void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 185 | int kvm_ioapic_init(struct kvm *kvm); |
| 186 | void kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 187 | int kvm_lapic_enabled(struct kvm_vcpu *vcpu); |
| 188 | int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu); |
Eddie Dong | 1b9778d | 2007-09-03 16:56:58 +0300 | [diff] [blame] | 189 | void kvm_apic_timer_intr_post(struct kvm_vcpu *vcpu, int vec); |
| 190 | void kvm_timer_intr_post(struct kvm_vcpu *vcpu, int vec); |
| 191 | void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu); |
| 192 | void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu); |
Eddie Dong | a3d7f85 | 2007-09-03 16:15:12 +0300 | [diff] [blame] | 193 | void kvm_migrate_apic_timer(struct kvm_vcpu *vcpu); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 194 | |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 195 | #endif |