blob: d0c668c6959e2fc055b1869a88ce44bee2878c9a [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>
Zhang Xiantao82470192007-12-17 13:59:56 +080039
40#include "ioapic.h"
41#include "lapic.h"
42
Laurent Viviere25e3ed2007-10-12 11:01:59 +020043#if 0
44#define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
45#else
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030046#define ioapic_debug(fmt, arg...)
Laurent Viviere25e3ed2007-10-12 11:01:59 +020047#endif
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -030048static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030049
50static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
51 unsigned long addr,
52 unsigned long length)
53{
54 unsigned long result = 0;
55
56 switch (ioapic->ioregsel) {
57 case IOAPIC_REG_VERSION:
58 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
59 | (IOAPIC_VERSION_ID & 0xff));
60 break;
61
62 case IOAPIC_REG_APIC_ID:
63 case IOAPIC_REG_ARB_ID:
64 result = ((ioapic->id & 0xf) << 24);
65 break;
66
67 default:
68 {
69 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
70 u64 redir_content;
71
72 ASSERT(redir_index < IOAPIC_NUM_PINS);
73
74 redir_content = ioapic->redirtbl[redir_index].bits;
75 result = (ioapic->ioregsel & 0x1) ?
76 (redir_content >> 32) & 0xffffffff :
77 redir_content & 0xffffffff;
78 break;
79 }
80 }
81
82 return result;
83}
84
85static void ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx)
86{
87 union ioapic_redir_entry *pent;
88
89 pent = &ioapic->redirtbl[idx];
90
91 if (!pent->fields.mask) {
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -030092 int injected = ioapic_deliver(ioapic, idx);
93 if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030094 pent->fields.remote_irr = 1;
95 }
96 if (!pent->fields.trig_mode)
97 ioapic->irr &= ~(1 << idx);
98}
99
100static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
101{
102 unsigned index;
103
104 switch (ioapic->ioregsel) {
105 case IOAPIC_REG_VERSION:
106 /* Writes are ignored. */
107 break;
108
109 case IOAPIC_REG_APIC_ID:
110 ioapic->id = (val >> 24) & 0xf;
111 break;
112
113 case IOAPIC_REG_ARB_ID:
114 break;
115
116 default:
117 index = (ioapic->ioregsel - 0x10) >> 1;
118
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200119 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300120 if (index >= IOAPIC_NUM_PINS)
121 return;
122 if (ioapic->ioregsel & 1) {
123 ioapic->redirtbl[index].bits &= 0xffffffff;
124 ioapic->redirtbl[index].bits |= (u64) val << 32;
125 } else {
126 ioapic->redirtbl[index].bits &= ~0xffffffffULL;
127 ioapic->redirtbl[index].bits |= (u32) val;
128 ioapic->redirtbl[index].fields.remote_irr = 0;
129 }
130 if (ioapic->irr & (1 << index))
131 ioapic_service(ioapic, index);
132 break;
133 }
134}
135
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300136static int ioapic_inj_irq(struct kvm_ioapic *ioapic,
Zhang Xiantao8be54532007-12-02 22:35:57 +0800137 struct kvm_vcpu *vcpu,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300138 u8 vector, u8 trig_mode, u8 delivery_mode)
139{
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200140 ioapic_debug("irq %d trig %d deliv %d\n", vector, trig_mode,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300141 delivery_mode);
142
Zhang Xiantao0c7ac282007-12-02 22:49:09 +0800143 ASSERT((delivery_mode == IOAPIC_FIXED) ||
144 (delivery_mode == IOAPIC_LOWEST_PRIORITY));
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300145
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300146 return kvm_apic_set_irq(vcpu, vector, trig_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300147}
148
Sheng Yang3419ffc2008-05-15 09:52:48 +0800149static void ioapic_inj_nmi(struct kvm_vcpu *vcpu)
150{
151 kvm_inject_nmi(vcpu);
152}
153
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300154static u32 ioapic_get_delivery_bitmask(struct kvm_ioapic *ioapic, u8 dest,
155 u8 dest_mode)
156{
157 u32 mask = 0;
158 int i;
159 struct kvm *kvm = ioapic->kvm;
160 struct kvm_vcpu *vcpu;
161
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200162 ioapic_debug("dest %d dest_mode %d\n", dest, dest_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300163
164 if (dest_mode == 0) { /* Physical mode. */
165 if (dest == 0xFF) { /* Broadcast. */
166 for (i = 0; i < KVM_MAX_VCPUS; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800167 if (kvm->vcpus[i] && kvm->vcpus[i]->arch.apic)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300168 mask |= 1 << i;
169 return mask;
170 }
171 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
172 vcpu = kvm->vcpus[i];
173 if (!vcpu)
174 continue;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800175 if (kvm_apic_match_physical_addr(vcpu->arch.apic, dest)) {
176 if (vcpu->arch.apic)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300177 mask = 1 << i;
178 break;
179 }
180 }
181 } else if (dest != 0) /* Logical mode, MDA non-zero. */
182 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
183 vcpu = kvm->vcpus[i];
184 if (!vcpu)
185 continue;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800186 if (vcpu->arch.apic &&
187 kvm_apic_match_logical_addr(vcpu->arch.apic, dest))
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300188 mask |= 1 << vcpu->vcpu_id;
189 }
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200190 ioapic_debug("mask %x\n", mask);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300191 return mask;
192}
193
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300194static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300195{
196 u8 dest = ioapic->redirtbl[irq].fields.dest_id;
197 u8 dest_mode = ioapic->redirtbl[irq].fields.dest_mode;
198 u8 delivery_mode = ioapic->redirtbl[irq].fields.delivery_mode;
199 u8 vector = ioapic->redirtbl[irq].fields.vector;
200 u8 trig_mode = ioapic->redirtbl[irq].fields.trig_mode;
201 u32 deliver_bitmask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300202 struct kvm_vcpu *vcpu;
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300203 int vcpu_id, r = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300204
205 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200206 "vector=%x trig_mode=%x\n",
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300207 dest, dest_mode, delivery_mode, vector, trig_mode);
208
209 deliver_bitmask = ioapic_get_delivery_bitmask(ioapic, dest, dest_mode);
210 if (!deliver_bitmask) {
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200211 ioapic_debug("no target on destination\n");
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300212 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300213 }
214
215 switch (delivery_mode) {
Zhang Xiantao0c7ac282007-12-02 22:49:09 +0800216 case IOAPIC_LOWEST_PRIORITY:
Zhang Xiantao8be54532007-12-02 22:35:57 +0800217 vcpu = kvm_get_lowest_prio_vcpu(ioapic->kvm, vector,
218 deliver_bitmask);
Avi Kivity8c35f232008-02-25 10:28:31 +0200219#ifdef CONFIG_X86
220 if (irq == 0)
221 vcpu = ioapic->kvm->vcpus[0];
222#endif
Zhang Xiantao8be54532007-12-02 22:35:57 +0800223 if (vcpu != NULL)
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300224 r = ioapic_inj_irq(ioapic, vcpu, vector,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300225 trig_mode, delivery_mode);
226 else
Zhang Xiantao8be54532007-12-02 22:35:57 +0800227 ioapic_debug("null lowest prio vcpu: "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200228 "mask=%x vector=%x delivery_mode=%x\n",
Zhang Xiantao0c7ac282007-12-02 22:49:09 +0800229 deliver_bitmask, vector, IOAPIC_LOWEST_PRIORITY);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300230 break;
Zhang Xiantao0c7ac282007-12-02 22:49:09 +0800231 case IOAPIC_FIXED:
Avi Kivity8c35f232008-02-25 10:28:31 +0200232#ifdef CONFIG_X86
233 if (irq == 0)
234 deliver_bitmask = 1;
235#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300236 for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) {
237 if (!(deliver_bitmask & (1 << vcpu_id)))
238 continue;
239 deliver_bitmask &= ~(1 << vcpu_id);
240 vcpu = ioapic->kvm->vcpus[vcpu_id];
241 if (vcpu) {
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300242 r = ioapic_inj_irq(ioapic, vcpu, vector,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300243 trig_mode, delivery_mode);
244 }
245 }
246 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800247 case IOAPIC_NMI:
248 for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) {
249 if (!(deliver_bitmask & (1 << vcpu_id)))
250 continue;
251 deliver_bitmask &= ~(1 << vcpu_id);
252 vcpu = ioapic->kvm->vcpus[vcpu_id];
253 if (vcpu)
254 ioapic_inj_nmi(vcpu);
255 else
256 ioapic_debug("NMI to vcpu %d failed\n",
257 vcpu->vcpu_id);
258 }
259 break;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300260 default:
261 printk(KERN_WARNING "Unsupported delivery mode %d\n",
262 delivery_mode);
263 break;
264 }
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300265 return r;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300266}
267
268void kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
269{
270 u32 old_irr = ioapic->irr;
271 u32 mask = 1 << irq;
272 union ioapic_redir_entry entry;
273
274 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
275 entry = ioapic->redirtbl[irq];
276 level ^= entry.fields.polarity;
277 if (!level)
278 ioapic->irr &= ~mask;
279 else {
280 ioapic->irr |= mask;
281 if ((!entry.fields.trig_mode && old_irr != ioapic->irr)
282 || !entry.fields.remote_irr)
283 ioapic_service(ioapic, irq);
284 }
285 }
286}
287
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700288static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int gsi)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300289{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300290 union ioapic_redir_entry *ent;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300291
292 ent = &ioapic->redirtbl[gsi];
293 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
294
295 ent->fields.remote_irr = 0;
296 if (!ent->fields.mask && (ioapic->irr & (1 << gsi)))
Mark McLoughlin35baff22008-07-04 18:23:15 +0100297 ioapic_service(ioapic, gsi);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300298}
299
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700300void kvm_ioapic_update_eoi(struct kvm *kvm, int vector)
301{
302 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
303 int i;
304
305 for (i = 0; i < IOAPIC_NUM_PINS; i++)
306 if (ioapic->redirtbl[i].fields.vector == vector)
307 __kvm_ioapic_update_eoi(ioapic, i);
308}
309
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300310static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr)
311{
312 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
313
314 return ((addr >= ioapic->base_address &&
315 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
316}
317
318static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
319 void *val)
320{
321 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
322 u32 result;
323
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200324 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300325 ASSERT(!(addr & 0xf)); /* check alignment */
326
327 addr &= 0xff;
328 switch (addr) {
329 case IOAPIC_REG_SELECT:
330 result = ioapic->ioregsel;
331 break;
332
333 case IOAPIC_REG_WINDOW:
334 result = ioapic_read_indirect(ioapic, addr, len);
335 break;
336
337 default:
338 result = 0;
339 break;
340 }
341 switch (len) {
342 case 8:
343 *(u64 *) val = result;
344 break;
345 case 1:
346 case 2:
347 case 4:
348 memcpy(val, (char *)&result, len);
349 break;
350 default:
351 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
352 }
353}
354
355static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
356 const void *val)
357{
358 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
359 u32 data;
360
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200361 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
362 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300363 ASSERT(!(addr & 0xf)); /* check alignment */
364 if (len == 4 || len == 8)
365 data = *(u32 *) val;
366 else {
367 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
368 return;
369 }
370
371 addr &= 0xff;
372 switch (addr) {
373 case IOAPIC_REG_SELECT:
374 ioapic->ioregsel = data;
375 break;
376
377 case IOAPIC_REG_WINDOW:
378 ioapic_write_indirect(ioapic, data);
379 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800380#ifdef CONFIG_IA64
381 case IOAPIC_REG_EOI:
Zhang Xiantao0eb8f492007-12-17 14:16:14 +0800382 kvm_ioapic_update_eoi(ioapic->kvm, data);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800383 break;
384#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300385
386 default:
387 break;
388 }
389}
390
Eddie Dong8c392692007-10-10 12:15:54 +0200391void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
392{
393 int i;
394
395 for (i = 0; i < IOAPIC_NUM_PINS; i++)
396 ioapic->redirtbl[i].fields.mask = 1;
397 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
398 ioapic->ioregsel = 0;
399 ioapic->irr = 0;
400 ioapic->id = 0;
401}
402
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300403int kvm_ioapic_init(struct kvm *kvm)
404{
405 struct kvm_ioapic *ioapic;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300406
407 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
408 if (!ioapic)
409 return -ENOMEM;
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800410 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200411 kvm_ioapic_reset(ioapic);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300412 ioapic->dev.read = ioapic_mmio_read;
413 ioapic->dev.write = ioapic_mmio_write;
414 ioapic->dev.in_range = ioapic_in_range;
415 ioapic->dev.private = ioapic;
416 ioapic->kvm = kvm;
417 kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev);
418 return 0;
419}