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 | } |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 98 | |
| 99 | return injected; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val) |
| 103 | { |
| 104 | unsigned index; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 105 | bool mask_before, mask_after; |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame^] | 106 | union kvm_ioapic_redirect_entry *e; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 107 | |
| 108 | switch (ioapic->ioregsel) { |
| 109 | case IOAPIC_REG_VERSION: |
| 110 | /* Writes are ignored. */ |
| 111 | break; |
| 112 | |
| 113 | case IOAPIC_REG_APIC_ID: |
| 114 | ioapic->id = (val >> 24) & 0xf; |
| 115 | break; |
| 116 | |
| 117 | case IOAPIC_REG_ARB_ID: |
| 118 | break; |
| 119 | |
| 120 | default: |
| 121 | index = (ioapic->ioregsel - 0x10) >> 1; |
| 122 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 123 | ioapic_debug("change redir index %x val %x\n", index, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 124 | if (index >= IOAPIC_NUM_PINS) |
| 125 | return; |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame^] | 126 | e = &ioapic->redirtbl[index]; |
| 127 | mask_before = e->fields.mask; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 128 | if (ioapic->ioregsel & 1) { |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame^] | 129 | e->bits &= 0xffffffff; |
| 130 | e->bits |= (u64) val << 32; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 131 | } else { |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame^] | 132 | e->bits &= ~0xffffffffULL; |
| 133 | e->bits |= (u32) val; |
| 134 | e->fields.remote_irr = 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 135 | } |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame^] | 136 | mask_after = e->fields.mask; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 137 | if (mask_before != mask_after) |
| 138 | kvm_fire_mask_notifiers(ioapic->kvm, index, mask_after); |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame^] | 139 | if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG |
Gleb Natapov | b4a2f5e | 2009-07-05 18:48:11 +0300 | [diff] [blame] | 140 | && ioapic->irr & (1 << index)) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 141 | ioapic_service(ioapic, index); |
| 142 | break; |
| 143 | } |
| 144 | } |
| 145 | |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 146 | static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 147 | { |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 148 | union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq]; |
| 149 | struct kvm_lapic_irq irqe; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 150 | |
| 151 | ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x " |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 152 | "vector=%x trig_mode=%x\n", |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 153 | entry->fields.dest, entry->fields.dest_mode, |
| 154 | entry->fields.delivery_mode, entry->fields.vector, |
| 155 | entry->fields.trig_mode); |
| 156 | |
| 157 | irqe.dest_id = entry->fields.dest_id; |
| 158 | irqe.vector = entry->fields.vector; |
| 159 | irqe.dest_mode = entry->fields.dest_mode; |
| 160 | irqe.trig_mode = entry->fields.trig_mode; |
| 161 | irqe.delivery_mode = entry->fields.delivery_mode << 8; |
| 162 | irqe.level = 1; |
| 163 | irqe.shorthand = 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 164 | |
Avi Kivity | 8c35f23 | 2008-02-25 10:28:31 +0200 | [diff] [blame] | 165 | #ifdef CONFIG_X86 |
Gleb Natapov | a53c17d | 2009-03-05 16:34:49 +0200 | [diff] [blame] | 166 | /* Always delivery PIT interrupt to vcpu 0 */ |
Sheng Yang | 74a3a8f | 2009-03-04 13:33:02 +0800 | [diff] [blame] | 167 | if (irq == 0) { |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 168 | irqe.dest_mode = 0; /* Physical mode. */ |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 169 | /* need to read apic_id from apic regiest since |
| 170 | * it can be rewritten */ |
| 171 | irqe.dest_id = ioapic->kvm->bsp_vcpu->vcpu_id; |
Gleb Natapov | a53c17d | 2009-03-05 16:34:49 +0200 | [diff] [blame] | 172 | } |
Avi Kivity | 8c35f23 | 2008-02-25 10:28:31 +0200 | [diff] [blame] | 173 | #endif |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 174 | return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 175 | } |
| 176 | |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 177 | 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] | 178 | { |
| 179 | u32 old_irr = ioapic->irr; |
| 180 | u32 mask = 1 << irq; |
Sheng Yang | cf9e4e1 | 2009-02-11 16:03:36 +0800 | [diff] [blame] | 181 | union kvm_ioapic_redirect_entry entry; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 182 | int ret = 1; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 183 | |
| 184 | if (irq >= 0 && irq < IOAPIC_NUM_PINS) { |
| 185 | entry = ioapic->redirtbl[irq]; |
| 186 | level ^= entry.fields.polarity; |
| 187 | if (!level) |
| 188 | ioapic->irr &= ~mask; |
| 189 | else { |
Gleb Natapov | b4a2f5e | 2009-07-05 18:48:11 +0300 | [diff] [blame] | 190 | int edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 191 | ioapic->irr |= mask; |
Gleb Natapov | b4a2f5e | 2009-07-05 18:48:11 +0300 | [diff] [blame] | 192 | if ((edge && old_irr != ioapic->irr) || |
| 193 | (!edge && !entry.fields.remote_irr)) |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 194 | ret = ioapic_service(ioapic, irq); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 195 | } |
| 196 | } |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 197 | return ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 198 | } |
| 199 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 200 | static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin, |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 201 | int trigger_mode) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 202 | { |
Sheng Yang | cf9e4e1 | 2009-02-11 16:03:36 +0800 | [diff] [blame] | 203 | union kvm_ioapic_redirect_entry *ent; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 204 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 205 | ent = &ioapic->redirtbl[pin]; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 206 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 207 | kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 208 | |
| 209 | if (trigger_mode == IOAPIC_LEVEL_TRIG) { |
| 210 | ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG); |
| 211 | ent->fields.remote_irr = 0; |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 212 | if (!ent->fields.mask && (ioapic->irr & (1 << pin))) |
| 213 | ioapic_service(ioapic, pin); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 214 | } |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 215 | } |
| 216 | |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 217 | 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] | 218 | { |
| 219 | struct kvm_ioapic *ioapic = kvm->arch.vioapic; |
| 220 | int i; |
| 221 | |
| 222 | for (i = 0; i < IOAPIC_NUM_PINS; i++) |
| 223 | if (ioapic->redirtbl[i].fields.vector == vector) |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 224 | __kvm_ioapic_update_eoi(ioapic, i, trigger_mode); |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 227 | static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev) |
| 228 | { |
| 229 | return container_of(dev, struct kvm_ioapic, dev); |
| 230 | } |
| 231 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 232 | static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 233 | { |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 234 | return ((addr >= ioapic->base_address && |
| 235 | (addr < ioapic->base_address + IOAPIC_MEM_LENGTH))); |
| 236 | } |
| 237 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 238 | static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len, |
| 239 | void *val) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 240 | { |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 241 | struct kvm_ioapic *ioapic = to_ioapic(this); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 242 | u32 result; |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 243 | if (!ioapic_in_range(ioapic, addr)) |
| 244 | return -EOPNOTSUPP; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 245 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 246 | ioapic_debug("addr %lx\n", (unsigned long)addr); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 247 | ASSERT(!(addr & 0xf)); /* check alignment */ |
| 248 | |
Marcelo Tosatti | 60eead7 | 2009-06-04 15:08:23 -0300 | [diff] [blame] | 249 | mutex_lock(&ioapic->kvm->irq_lock); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 250 | addr &= 0xff; |
| 251 | switch (addr) { |
| 252 | case IOAPIC_REG_SELECT: |
| 253 | result = ioapic->ioregsel; |
| 254 | break; |
| 255 | |
| 256 | case IOAPIC_REG_WINDOW: |
| 257 | result = ioapic_read_indirect(ioapic, addr, len); |
| 258 | break; |
| 259 | |
| 260 | default: |
| 261 | result = 0; |
| 262 | break; |
| 263 | } |
| 264 | switch (len) { |
| 265 | case 8: |
| 266 | *(u64 *) val = result; |
| 267 | break; |
| 268 | case 1: |
| 269 | case 2: |
| 270 | case 4: |
| 271 | memcpy(val, (char *)&result, len); |
| 272 | break; |
| 273 | default: |
| 274 | printk(KERN_WARNING "ioapic: wrong length %d\n", len); |
| 275 | } |
Marcelo Tosatti | 60eead7 | 2009-06-04 15:08:23 -0300 | [diff] [blame] | 276 | mutex_unlock(&ioapic->kvm->irq_lock); |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 277 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 278 | } |
| 279 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 280 | static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len, |
| 281 | const void *val) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 282 | { |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 283 | struct kvm_ioapic *ioapic = to_ioapic(this); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 284 | u32 data; |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 285 | if (!ioapic_in_range(ioapic, addr)) |
| 286 | return -EOPNOTSUPP; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 287 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 288 | ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n", |
| 289 | (void*)addr, len, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 290 | ASSERT(!(addr & 0xf)); /* check alignment */ |
Marcelo Tosatti | 60eead7 | 2009-06-04 15:08:23 -0300 | [diff] [blame] | 291 | |
| 292 | mutex_lock(&ioapic->kvm->irq_lock); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 293 | if (len == 4 || len == 8) |
| 294 | data = *(u32 *) val; |
| 295 | else { |
| 296 | printk(KERN_WARNING "ioapic: Unsupported size %d\n", len); |
Jiri Slaby | 27c4ba6 | 2009-06-29 18:05:10 +0200 | [diff] [blame] | 297 | goto unlock; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | addr &= 0xff; |
| 301 | switch (addr) { |
| 302 | case IOAPIC_REG_SELECT: |
| 303 | ioapic->ioregsel = data; |
| 304 | break; |
| 305 | |
| 306 | case IOAPIC_REG_WINDOW: |
| 307 | ioapic_write_indirect(ioapic, data); |
| 308 | break; |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 309 | #ifdef CONFIG_IA64 |
| 310 | case IOAPIC_REG_EOI: |
Xiantao Zhang | 26815a6 | 2008-08-19 20:48:03 +0800 | [diff] [blame] | 311 | kvm_ioapic_update_eoi(ioapic->kvm, data, IOAPIC_LEVEL_TRIG); |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 312 | break; |
| 313 | #endif |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 314 | |
| 315 | default: |
| 316 | break; |
| 317 | } |
Jiri Slaby | 27c4ba6 | 2009-06-29 18:05:10 +0200 | [diff] [blame] | 318 | unlock: |
Marcelo Tosatti | 60eead7 | 2009-06-04 15:08:23 -0300 | [diff] [blame] | 319 | mutex_unlock(&ioapic->kvm->irq_lock); |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 320 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 321 | } |
| 322 | |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 323 | void kvm_ioapic_reset(struct kvm_ioapic *ioapic) |
| 324 | { |
| 325 | int i; |
| 326 | |
| 327 | for (i = 0; i < IOAPIC_NUM_PINS; i++) |
| 328 | ioapic->redirtbl[i].fields.mask = 1; |
| 329 | ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS; |
| 330 | ioapic->ioregsel = 0; |
| 331 | ioapic->irr = 0; |
| 332 | ioapic->id = 0; |
| 333 | } |
| 334 | |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 335 | static const struct kvm_io_device_ops ioapic_mmio_ops = { |
| 336 | .read = ioapic_mmio_read, |
| 337 | .write = ioapic_mmio_write, |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 338 | }; |
| 339 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 340 | int kvm_ioapic_init(struct kvm *kvm) |
| 341 | { |
| 342 | struct kvm_ioapic *ioapic; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 343 | |
| 344 | ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL); |
| 345 | if (!ioapic) |
| 346 | return -ENOMEM; |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 347 | kvm->arch.vioapic = ioapic; |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 348 | kvm_ioapic_reset(ioapic); |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 349 | kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 350 | ioapic->kvm = kvm; |
Michael S. Tsirkin | 6c47469 | 2009-06-29 22:24:26 +0300 | [diff] [blame] | 351 | kvm_io_bus_register_dev(kvm, &kvm->mmio_bus, &ioapic->dev); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 352 | return 0; |
| 353 | } |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 354 | |