Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2001 MandrakeSoft S.A. |
| 3 | * |
| 4 | * MandrakeSoft S.A. |
| 5 | * 43, rue d'Aboukir |
| 6 | * 75002 Paris - France |
| 7 | * http://www.linux-mandrake.com/ |
| 8 | * http://www.mandrakesoft.com/ |
| 9 | * |
| 10 | * This library is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU Lesser General Public |
| 12 | * License as published by the Free Software Foundation; either |
| 13 | * version 2 of the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This library is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * Lesser General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU Lesser General Public |
| 21 | * License along with this library; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | * |
| 24 | * Yunhong Jiang <yunhong.jiang@intel.com> |
| 25 | * Yaozu (Eddie) Dong <eddie.dong@intel.com> |
| 26 | * Based on Xen 3.1 code. |
| 27 | */ |
| 28 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 29 | #include <linux/kvm_host.h> |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 30 | #include <linux/kvm.h> |
| 31 | #include <linux/mm.h> |
| 32 | #include <linux/highmem.h> |
| 33 | #include <linux/smp.h> |
| 34 | #include <linux/hrtimer.h> |
| 35 | #include <linux/io.h> |
| 36 | #include <asm/processor.h> |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 37 | #include <asm/page.h> |
| 38 | #include <asm/current.h> |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 39 | |
| 40 | #include "ioapic.h" |
| 41 | #include "lapic.h" |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 42 | #include "irq.h" |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 43 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 44 | #if 0 |
| 45 | #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) |
| 46 | #else |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 47 | #define ioapic_debug(fmt, arg...) |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 48 | #endif |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 49 | static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 50 | |
| 51 | static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic, |
| 52 | unsigned long addr, |
| 53 | unsigned long length) |
| 54 | { |
| 55 | unsigned long result = 0; |
| 56 | |
| 57 | switch (ioapic->ioregsel) { |
| 58 | case IOAPIC_REG_VERSION: |
| 59 | result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16) |
| 60 | | (IOAPIC_VERSION_ID & 0xff)); |
| 61 | break; |
| 62 | |
| 63 | case IOAPIC_REG_APIC_ID: |
| 64 | case IOAPIC_REG_ARB_ID: |
| 65 | result = ((ioapic->id & 0xf) << 24); |
| 66 | break; |
| 67 | |
| 68 | default: |
| 69 | { |
| 70 | u32 redir_index = (ioapic->ioregsel - 0x10) >> 1; |
| 71 | u64 redir_content; |
| 72 | |
| 73 | ASSERT(redir_index < IOAPIC_NUM_PINS); |
| 74 | |
| 75 | redir_content = ioapic->redirtbl[redir_index].bits; |
| 76 | result = (ioapic->ioregsel & 0x1) ? |
| 77 | (redir_content >> 32) & 0xffffffff : |
| 78 | redir_content & 0xffffffff; |
| 79 | break; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | return result; |
| 84 | } |
| 85 | |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 86 | static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 87 | { |
Sheng Yang | cf9e4e1 | 2009-02-11 16:03:36 +0800 | [diff] [blame] | 88 | union kvm_ioapic_redirect_entry *pent; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 89 | int injected = -1; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 90 | |
| 91 | pent = &ioapic->redirtbl[idx]; |
| 92 | |
| 93 | if (!pent->fields.mask) { |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 94 | injected = ioapic_deliver(ioapic, idx); |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 95 | if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 96 | pent->fields.remote_irr = 1; |
| 97 | } |
| 98 | if (!pent->fields.trig_mode) |
| 99 | ioapic->irr &= ~(1 << idx); |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 100 | |
| 101 | return injected; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val) |
| 105 | { |
| 106 | unsigned index; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 107 | bool mask_before, mask_after; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 108 | |
| 109 | switch (ioapic->ioregsel) { |
| 110 | case IOAPIC_REG_VERSION: |
| 111 | /* Writes are ignored. */ |
| 112 | break; |
| 113 | |
| 114 | case IOAPIC_REG_APIC_ID: |
| 115 | ioapic->id = (val >> 24) & 0xf; |
| 116 | break; |
| 117 | |
| 118 | case IOAPIC_REG_ARB_ID: |
| 119 | break; |
| 120 | |
| 121 | default: |
| 122 | index = (ioapic->ioregsel - 0x10) >> 1; |
| 123 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 124 | ioapic_debug("change redir index %x val %x\n", index, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 125 | if (index >= IOAPIC_NUM_PINS) |
| 126 | return; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 127 | mask_before = ioapic->redirtbl[index].fields.mask; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 128 | if (ioapic->ioregsel & 1) { |
| 129 | ioapic->redirtbl[index].bits &= 0xffffffff; |
| 130 | ioapic->redirtbl[index].bits |= (u64) val << 32; |
| 131 | } else { |
| 132 | ioapic->redirtbl[index].bits &= ~0xffffffffULL; |
| 133 | ioapic->redirtbl[index].bits |= (u32) val; |
| 134 | ioapic->redirtbl[index].fields.remote_irr = 0; |
| 135 | } |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 136 | mask_after = ioapic->redirtbl[index].fields.mask; |
| 137 | if (mask_before != mask_after) |
| 138 | kvm_fire_mask_notifiers(ioapic->kvm, index, mask_after); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 139 | if (ioapic->irr & (1 << index)) |
| 140 | ioapic_service(ioapic, index); |
| 141 | break; |
| 142 | } |
| 143 | } |
| 144 | |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 145 | static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 146 | { |
Sheng Yang | 116191b | 2009-02-11 16:03:37 +0800 | [diff] [blame] | 147 | union kvm_ioapic_redirect_entry entry = ioapic->redirtbl[irq]; |
Sheng Yang | bfd349d | 2009-02-11 16:03:40 +0800 | [diff] [blame] | 148 | DECLARE_BITMAP(deliver_bitmask, KVM_MAX_VCPUS); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 149 | struct kvm_vcpu *vcpu; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 150 | int vcpu_id, r = -1; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 151 | |
| 152 | ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x " |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 153 | "vector=%x trig_mode=%x\n", |
Sheng Yang | 116191b | 2009-02-11 16:03:37 +0800 | [diff] [blame] | 154 | entry.fields.dest, entry.fields.dest_mode, |
| 155 | entry.fields.delivery_mode, entry.fields.vector, |
| 156 | entry.fields.trig_mode); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 157 | |
Sheng Yang | 116191b | 2009-02-11 16:03:37 +0800 | [diff] [blame] | 158 | /* Always delivery PIT interrupt to vcpu 0 */ |
Avi Kivity | 8c35f23 | 2008-02-25 10:28:31 +0200 | [diff] [blame] | 159 | #ifdef CONFIG_X86 |
Sheng Yang | 74a3a8f | 2009-03-04 13:33:02 +0800 | [diff] [blame] | 160 | if (irq == 0) { |
| 161 | bitmap_zero(deliver_bitmask, KVM_MAX_VCPUS); |
Sheng Yang | bfd349d | 2009-02-11 16:03:40 +0800 | [diff] [blame] | 162 | __set_bit(0, deliver_bitmask); |
Sheng Yang | 74a3a8f | 2009-03-04 13:33:02 +0800 | [diff] [blame] | 163 | } else |
Avi Kivity | 8c35f23 | 2008-02-25 10:28:31 +0200 | [diff] [blame] | 164 | #endif |
Sheng Yang | bfd349d | 2009-02-11 16:03:40 +0800 | [diff] [blame] | 165 | kvm_get_intr_delivery_bitmask(ioapic, &entry, deliver_bitmask); |
Sheng Yang | 116191b | 2009-02-11 16:03:37 +0800 | [diff] [blame] | 166 | |
Sheng Yang | bfd349d | 2009-02-11 16:03:40 +0800 | [diff] [blame] | 167 | if (find_first_bit(deliver_bitmask, KVM_MAX_VCPUS) >= KVM_MAX_VCPUS) { |
| 168 | ioapic_debug("no target on destination\n"); |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | while ((vcpu_id = find_first_bit(deliver_bitmask, KVM_MAX_VCPUS)) |
| 173 | < KVM_MAX_VCPUS) { |
| 174 | __clear_bit(vcpu_id, deliver_bitmask); |
Sheng Yang | 116191b | 2009-02-11 16:03:37 +0800 | [diff] [blame] | 175 | vcpu = ioapic->kvm->vcpus[vcpu_id]; |
| 176 | if (vcpu) { |
Gleb Natapov | 6da7e3f | 2009-03-05 16:34:44 +0200 | [diff] [blame^] | 177 | if (r < 0) |
| 178 | r = 0; |
| 179 | r += kvm_apic_set_irq(vcpu, |
| 180 | entry.fields.vector, |
| 181 | entry.fields.trig_mode, |
| 182 | entry.fields.delivery_mode); |
Sheng Yang | 116191b | 2009-02-11 16:03:37 +0800 | [diff] [blame] | 183 | } else |
| 184 | ioapic_debug("null destination vcpu: " |
| 185 | "mask=%x vector=%x delivery_mode=%x\n", |
| 186 | entry.fields.deliver_bitmask, |
| 187 | entry.fields.vector, |
| 188 | entry.fields.delivery_mode); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 189 | } |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 190 | return r; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 191 | } |
| 192 | |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 193 | int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 194 | { |
| 195 | u32 old_irr = ioapic->irr; |
| 196 | u32 mask = 1 << irq; |
Sheng Yang | cf9e4e1 | 2009-02-11 16:03:36 +0800 | [diff] [blame] | 197 | union kvm_ioapic_redirect_entry entry; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 198 | int ret = 1; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 199 | |
| 200 | if (irq >= 0 && irq < IOAPIC_NUM_PINS) { |
| 201 | entry = ioapic->redirtbl[irq]; |
| 202 | level ^= entry.fields.polarity; |
| 203 | if (!level) |
| 204 | ioapic->irr &= ~mask; |
| 205 | else { |
| 206 | ioapic->irr |= mask; |
| 207 | if ((!entry.fields.trig_mode && old_irr != ioapic->irr) |
| 208 | || !entry.fields.remote_irr) |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 209 | ret = ioapic_service(ioapic, irq); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 210 | } |
| 211 | } |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 212 | return ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 213 | } |
| 214 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 215 | static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin, |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 216 | int trigger_mode) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 217 | { |
Sheng Yang | cf9e4e1 | 2009-02-11 16:03:36 +0800 | [diff] [blame] | 218 | union kvm_ioapic_redirect_entry *ent; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 219 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 220 | ent = &ioapic->redirtbl[pin]; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 221 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 222 | kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 223 | |
| 224 | if (trigger_mode == IOAPIC_LEVEL_TRIG) { |
| 225 | ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG); |
| 226 | ent->fields.remote_irr = 0; |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 227 | if (!ent->fields.mask && (ioapic->irr & (1 << pin))) |
| 228 | ioapic_service(ioapic, pin); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 229 | } |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 230 | } |
| 231 | |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 232 | void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode) |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 233 | { |
| 234 | struct kvm_ioapic *ioapic = kvm->arch.vioapic; |
| 235 | int i; |
| 236 | |
| 237 | for (i = 0; i < IOAPIC_NUM_PINS; i++) |
| 238 | if (ioapic->redirtbl[i].fields.vector == vector) |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 239 | __kvm_ioapic_update_eoi(ioapic, i, trigger_mode); |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 240 | } |
| 241 | |
Laurent Vivier | 9276049 | 2008-05-30 16:05:53 +0200 | [diff] [blame] | 242 | static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr, |
| 243 | int len, int is_write) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 244 | { |
| 245 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; |
| 246 | |
| 247 | return ((addr >= ioapic->base_address && |
| 248 | (addr < ioapic->base_address + IOAPIC_MEM_LENGTH))); |
| 249 | } |
| 250 | |
| 251 | static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len, |
| 252 | void *val) |
| 253 | { |
| 254 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; |
| 255 | u32 result; |
| 256 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 257 | ioapic_debug("addr %lx\n", (unsigned long)addr); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 258 | ASSERT(!(addr & 0xf)); /* check alignment */ |
| 259 | |
| 260 | addr &= 0xff; |
| 261 | switch (addr) { |
| 262 | case IOAPIC_REG_SELECT: |
| 263 | result = ioapic->ioregsel; |
| 264 | break; |
| 265 | |
| 266 | case IOAPIC_REG_WINDOW: |
| 267 | result = ioapic_read_indirect(ioapic, addr, len); |
| 268 | break; |
| 269 | |
| 270 | default: |
| 271 | result = 0; |
| 272 | break; |
| 273 | } |
| 274 | switch (len) { |
| 275 | case 8: |
| 276 | *(u64 *) val = result; |
| 277 | break; |
| 278 | case 1: |
| 279 | case 2: |
| 280 | case 4: |
| 281 | memcpy(val, (char *)&result, len); |
| 282 | break; |
| 283 | default: |
| 284 | printk(KERN_WARNING "ioapic: wrong length %d\n", len); |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len, |
| 289 | const void *val) |
| 290 | { |
| 291 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; |
| 292 | u32 data; |
| 293 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 294 | ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n", |
| 295 | (void*)addr, len, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 296 | ASSERT(!(addr & 0xf)); /* check alignment */ |
| 297 | if (len == 4 || len == 8) |
| 298 | data = *(u32 *) val; |
| 299 | else { |
| 300 | printk(KERN_WARNING "ioapic: Unsupported size %d\n", len); |
| 301 | return; |
| 302 | } |
| 303 | |
| 304 | addr &= 0xff; |
| 305 | switch (addr) { |
| 306 | case IOAPIC_REG_SELECT: |
| 307 | ioapic->ioregsel = data; |
| 308 | break; |
| 309 | |
| 310 | case IOAPIC_REG_WINDOW: |
| 311 | ioapic_write_indirect(ioapic, data); |
| 312 | break; |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 313 | #ifdef CONFIG_IA64 |
| 314 | case IOAPIC_REG_EOI: |
Xiantao Zhang | 26815a6 | 2008-08-19 20:48:03 +0800 | [diff] [blame] | 315 | kvm_ioapic_update_eoi(ioapic->kvm, data, IOAPIC_LEVEL_TRIG); |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 316 | break; |
| 317 | #endif |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 318 | |
| 319 | default: |
| 320 | break; |
| 321 | } |
| 322 | } |
| 323 | |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 324 | void kvm_ioapic_reset(struct kvm_ioapic *ioapic) |
| 325 | { |
| 326 | int i; |
| 327 | |
| 328 | for (i = 0; i < IOAPIC_NUM_PINS; i++) |
| 329 | ioapic->redirtbl[i].fields.mask = 1; |
| 330 | ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS; |
| 331 | ioapic->ioregsel = 0; |
| 332 | ioapic->irr = 0; |
| 333 | ioapic->id = 0; |
| 334 | } |
| 335 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 336 | int kvm_ioapic_init(struct kvm *kvm) |
| 337 | { |
| 338 | struct kvm_ioapic *ioapic; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 339 | |
| 340 | ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL); |
| 341 | if (!ioapic) |
| 342 | return -ENOMEM; |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 343 | kvm->arch.vioapic = ioapic; |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 344 | kvm_ioapic_reset(ioapic); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 345 | ioapic->dev.read = ioapic_mmio_read; |
| 346 | ioapic->dev.write = ioapic_mmio_write; |
| 347 | ioapic->dev.in_range = ioapic_in_range; |
| 348 | ioapic->dev.private = ioapic; |
| 349 | ioapic->kvm = kvm; |
| 350 | kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev); |
| 351 | return 0; |
| 352 | } |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 353 | |