blob: 3db15a807f8064149a8b3bf5f4fcdd349697cdc5 [file] [log] [blame]
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03001/*
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 Kivityedf88412007-12-16 11:02:48 +020029#include <linux/kvm_host.h>
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030030#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 Dong1fd4f2a2007-07-18 12:03:39 +030037#include <asm/page.h>
38#include <asm/current.h>
Gleb Natapov1000ff82009-07-07 16:00:57 +030039#include <trace/events/kvm.h>
Zhang Xiantao82470192007-12-17 13:59:56 +080040
41#include "ioapic.h"
42#include "lapic.h"
Marcelo Tosattif5244722008-07-26 17:01:00 -030043#include "irq.h"
Zhang Xiantao82470192007-12-17 13:59:56 +080044
Laurent Viviere25e3ed2007-10-12 11:01:59 +020045#if 0
46#define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
47#else
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030048#define ioapic_debug(fmt, arg...)
Laurent Viviere25e3ed2007-10-12 11:01:59 +020049#endif
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -030050static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030051
52static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
53 unsigned long addr,
54 unsigned long length)
55{
56 unsigned long result = 0;
57
58 switch (ioapic->ioregsel) {
59 case IOAPIC_REG_VERSION:
60 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
61 | (IOAPIC_VERSION_ID & 0xff));
62 break;
63
64 case IOAPIC_REG_APIC_ID:
65 case IOAPIC_REG_ARB_ID:
66 result = ((ioapic->id & 0xf) << 24);
67 break;
68
69 default:
70 {
71 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
72 u64 redir_content;
73
74 ASSERT(redir_index < IOAPIC_NUM_PINS);
75
76 redir_content = ioapic->redirtbl[redir_index].bits;
77 result = (ioapic->ioregsel & 0x1) ?
78 (redir_content >> 32) & 0xffffffff :
79 redir_content & 0xffffffff;
80 break;
81 }
82 }
83
84 return result;
85}
86
Gleb Natapov49256632009-02-04 17:28:14 +020087static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030088{
Sheng Yangcf9e4e12009-02-11 16:03:36 +080089 union kvm_ioapic_redirect_entry *pent;
Gleb Natapov49256632009-02-04 17:28:14 +020090 int injected = -1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030091
92 pent = &ioapic->redirtbl[idx];
93
94 if (!pent->fields.mask) {
Gleb Natapov49256632009-02-04 17:28:14 +020095 injected = ioapic_deliver(ioapic, idx);
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -030096 if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030097 pent->fields.remote_irr = 1;
98 }
Gleb Natapov49256632009-02-04 17:28:14 +020099
100 return injected;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300101}
102
Avi Kivity46a929b2009-12-28 14:08:30 +0200103static void update_handled_vectors(struct kvm_ioapic *ioapic)
104{
105 DECLARE_BITMAP(handled_vectors, 256);
106 int i;
107
108 memset(handled_vectors, 0, sizeof(handled_vectors));
109 for (i = 0; i < IOAPIC_NUM_PINS; ++i)
110 __set_bit(ioapic->redirtbl[i].fields.vector, handled_vectors);
111 memcpy(ioapic->handled_vectors, handled_vectors,
112 sizeof(handled_vectors));
113 smp_wmb();
114}
115
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300116static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
117{
118 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200119 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300120 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300121
122 switch (ioapic->ioregsel) {
123 case IOAPIC_REG_VERSION:
124 /* Writes are ignored. */
125 break;
126
127 case IOAPIC_REG_APIC_ID:
128 ioapic->id = (val >> 24) & 0xf;
129 break;
130
131 case IOAPIC_REG_ARB_ID:
132 break;
133
134 default:
135 index = (ioapic->ioregsel - 0x10) >> 1;
136
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200137 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300138 if (index >= IOAPIC_NUM_PINS)
139 return;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300140 e = &ioapic->redirtbl[index];
141 mask_before = e->fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300142 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300143 e->bits &= 0xffffffff;
144 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300145 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300146 e->bits &= ~0xffffffffULL;
147 e->bits |= (u32) val;
148 e->fields.remote_irr = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300149 }
Avi Kivity46a929b2009-12-28 14:08:30 +0200150 update_handled_vectors(ioapic);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300151 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200152 if (mask_before != mask_after)
153 kvm_fire_mask_notifiers(ioapic->kvm, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300154 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300155 && ioapic->irr & (1 << index))
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300156 ioapic_service(ioapic, index);
157 break;
158 }
159}
160
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300161static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300162{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200163 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
164 struct kvm_lapic_irq irqe;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300165
166 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200167 "vector=%x trig_mode=%x\n",
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200168 entry->fields.dest, entry->fields.dest_mode,
169 entry->fields.delivery_mode, entry->fields.vector,
170 entry->fields.trig_mode);
171
172 irqe.dest_id = entry->fields.dest_id;
173 irqe.vector = entry->fields.vector;
174 irqe.dest_mode = entry->fields.dest_mode;
175 irqe.trig_mode = entry->fields.trig_mode;
176 irqe.delivery_mode = entry->fields.delivery_mode << 8;
177 irqe.level = 1;
178 irqe.shorthand = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300179
Avi Kivity8c35f232008-02-25 10:28:31 +0200180#ifdef CONFIG_X86
Gleb Natapova53c17d2009-03-05 16:34:49 +0200181 /* Always delivery PIT interrupt to vcpu 0 */
Sheng Yang74a3a8f2009-03-04 13:33:02 +0800182 if (irq == 0) {
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200183 irqe.dest_mode = 0; /* Physical mode. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300184 /* need to read apic_id from apic regiest since
185 * it can be rewritten */
186 irqe.dest_id = ioapic->kvm->bsp_vcpu->vcpu_id;
Gleb Natapova53c17d2009-03-05 16:34:49 +0200187 }
Avi Kivity8c35f232008-02-25 10:28:31 +0200188#endif
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200189 return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300190}
191
Gleb Natapov49256632009-02-04 17:28:14 +0200192int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300193{
194 u32 old_irr = ioapic->irr;
195 u32 mask = 1 << irq;
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800196 union kvm_ioapic_redirect_entry entry;
Gleb Natapov49256632009-02-04 17:28:14 +0200197 int ret = 1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300198
Gleb Natapoveba02262009-08-24 11:54:25 +0300199 mutex_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300200 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 {
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300206 int edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300207 ioapic->irr |= mask;
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300208 if ((edge && old_irr != ioapic->irr) ||
209 (!edge && !entry.fields.remote_irr))
Gleb Natapov49256632009-02-04 17:28:14 +0200210 ret = ioapic_service(ioapic, irq);
Gleb Natapov65a82212009-09-03 12:10:34 +0300211 else
212 ret = 0; /* report coalesced interrupt */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300213 }
Gleb Natapov1000ff82009-07-07 16:00:57 +0300214 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300215 }
Gleb Natapoveba02262009-08-24 11:54:25 +0300216 mutex_unlock(&ioapic->lock);
217
Gleb Natapov49256632009-02-04 17:28:14 +0200218 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300219}
220
Gleb Natapoveba02262009-08-24 11:54:25 +0300221static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int vector,
222 int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300223{
Gleb Natapoveba02262009-08-24 11:54:25 +0300224 int i;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300225
Gleb Natapoveba02262009-08-24 11:54:25 +0300226 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
227 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300228
Gleb Natapoveba02262009-08-24 11:54:25 +0300229 if (ent->fields.vector != vector)
230 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300231
Gleb Natapoveba02262009-08-24 11:54:25 +0300232 /*
233 * We are dropping lock while calling ack notifiers because ack
234 * notifier callbacks for assigned devices call into IOAPIC
235 * recursively. Since remote_irr is cleared only after call
236 * to notifiers if the same vector will be delivered while lock
237 * is dropped it will be put into irr and will be delivered
238 * after ack notifier returns.
239 */
240 mutex_unlock(&ioapic->lock);
241 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
242 mutex_lock(&ioapic->lock);
243
244 if (trigger_mode != IOAPIC_LEVEL_TRIG)
245 continue;
246
Marcelo Tosattif5244722008-07-26 17:01:00 -0300247 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
248 ent->fields.remote_irr = 0;
Gleb Natapoveba02262009-08-24 11:54:25 +0300249 if (!ent->fields.mask && (ioapic->irr & (1 << i)))
250 ioapic_service(ioapic, i);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300251 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300252}
253
Marcelo Tosattif5244722008-07-26 17:01:00 -0300254void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700255{
256 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700257
Avi Kivity46a929b2009-12-28 14:08:30 +0200258 smp_rmb();
259 if (!test_bit(vector, ioapic->handled_vectors))
260 return;
Gleb Natapoveba02262009-08-24 11:54:25 +0300261 mutex_lock(&ioapic->lock);
262 __kvm_ioapic_update_eoi(ioapic, vector, trigger_mode);
263 mutex_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700264}
265
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400266static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
267{
268 return container_of(dev, struct kvm_ioapic, dev);
269}
270
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300271static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300272{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300273 return ((addr >= ioapic->base_address &&
274 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
275}
276
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300277static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
278 void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300279{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400280 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300281 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300282 if (!ioapic_in_range(ioapic, addr))
283 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300284
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200285 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300286 ASSERT(!(addr & 0xf)); /* check alignment */
287
288 addr &= 0xff;
Gleb Natapoveba02262009-08-24 11:54:25 +0300289 mutex_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300290 switch (addr) {
291 case IOAPIC_REG_SELECT:
292 result = ioapic->ioregsel;
293 break;
294
295 case IOAPIC_REG_WINDOW:
296 result = ioapic_read_indirect(ioapic, addr, len);
297 break;
298
299 default:
300 result = 0;
301 break;
302 }
Gleb Natapoveba02262009-08-24 11:54:25 +0300303 mutex_unlock(&ioapic->lock);
304
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300305 switch (len) {
306 case 8:
307 *(u64 *) val = result;
308 break;
309 case 1:
310 case 2:
311 case 4:
312 memcpy(val, (char *)&result, len);
313 break;
314 default:
315 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
316 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300317 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300318}
319
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300320static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
321 const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300322{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400323 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300324 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300325 if (!ioapic_in_range(ioapic, addr))
326 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300327
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200328 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
329 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300330 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300331
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300332 if (len == 4 || len == 8)
333 data = *(u32 *) val;
334 else {
335 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300336 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300337 }
338
339 addr &= 0xff;
Gleb Natapoveba02262009-08-24 11:54:25 +0300340 mutex_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300341 switch (addr) {
342 case IOAPIC_REG_SELECT:
343 ioapic->ioregsel = data;
344 break;
345
346 case IOAPIC_REG_WINDOW:
347 ioapic_write_indirect(ioapic, data);
348 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800349#ifdef CONFIG_IA64
350 case IOAPIC_REG_EOI:
Gleb Natapoveba02262009-08-24 11:54:25 +0300351 __kvm_ioapic_update_eoi(ioapic, data, IOAPIC_LEVEL_TRIG);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800352 break;
353#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300354
355 default:
356 break;
357 }
Gleb Natapoveba02262009-08-24 11:54:25 +0300358 mutex_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300359 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300360}
361
Eddie Dong8c392692007-10-10 12:15:54 +0200362void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
363{
364 int i;
365
366 for (i = 0; i < IOAPIC_NUM_PINS; i++)
367 ioapic->redirtbl[i].fields.mask = 1;
368 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
369 ioapic->ioregsel = 0;
370 ioapic->irr = 0;
371 ioapic->id = 0;
Avi Kivity46a929b2009-12-28 14:08:30 +0200372 update_handled_vectors(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200373}
374
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400375static const struct kvm_io_device_ops ioapic_mmio_ops = {
376 .read = ioapic_mmio_read,
377 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400378};
379
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300380int kvm_ioapic_init(struct kvm *kvm)
381{
382 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400383 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300384
385 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
386 if (!ioapic)
387 return -ENOMEM;
Gleb Natapoveba02262009-08-24 11:54:25 +0300388 mutex_init(&ioapic->lock);
Zhang Xiantaod7deeeb2007-12-14 10:17:34 +0800389 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200390 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400391 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300392 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200393 mutex_lock(&kvm->slots_lock);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200394 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200395 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800396 if (ret < 0) {
397 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400398 kfree(ioapic);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800399 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400400
401 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300402}
Avi Kivity75858a82009-01-04 17:10:50 +0200403
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800404void kvm_ioapic_destroy(struct kvm *kvm)
405{
406 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
407
408 if (ioapic) {
409 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
410 kvm->arch.vioapic = NULL;
411 kfree(ioapic);
412 }
413}
414
Gleb Natapoveba02262009-08-24 11:54:25 +0300415int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
416{
417 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
418 if (!ioapic)
419 return -EINVAL;
420
421 mutex_lock(&ioapic->lock);
422 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
423 mutex_unlock(&ioapic->lock);
424 return 0;
425}
426
427int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
428{
429 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
430 if (!ioapic)
431 return -EINVAL;
432
433 mutex_lock(&ioapic->lock);
434 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Avi Kivity46a929b2009-12-28 14:08:30 +0200435 update_handled_vectors(ioapic);
Gleb Natapoveba02262009-08-24 11:54:25 +0300436 mutex_unlock(&ioapic->lock);
437 return 0;
438}