blob: 3b5371299dd10107e2779e556a340b7c4fe35363 [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"
Marcelo Tosattif5244722008-07-26 17:01:00 -030042#include "irq.h"
Zhang Xiantao82470192007-12-17 13:59:56 +080043
Laurent Viviere25e3ed2007-10-12 11:01:59 +020044#if 0
45#define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
46#else
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030047#define ioapic_debug(fmt, arg...)
Laurent Viviere25e3ed2007-10-12 11:01:59 +020048#endif
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -030049static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030050
51static 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 Natapov49256632009-02-04 17:28:14 +020086static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030087{
Sheng Yangcf9e4e12009-02-11 16:03:36 +080088 union kvm_ioapic_redirect_entry *pent;
Gleb Natapov49256632009-02-04 17:28:14 +020089 int injected = -1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030090
91 pent = &ioapic->redirtbl[idx];
92
93 if (!pent->fields.mask) {
Gleb Natapov49256632009-02-04 17:28:14 +020094 injected = ioapic_deliver(ioapic, idx);
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -030095 if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030096 pent->fields.remote_irr = 1;
97 }
98 if (!pent->fields.trig_mode)
99 ioapic->irr &= ~(1 << idx);
Gleb Natapov49256632009-02-04 17:28:14 +0200100
101 return injected;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300102}
103
104static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
105{
106 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200107 bool mask_before, mask_after;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300108
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 Viviere25e3ed2007-10-12 11:01:59 +0200124 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300125 if (index >= IOAPIC_NUM_PINS)
126 return;
Avi Kivity75858a82009-01-04 17:10:50 +0200127 mask_before = ioapic->redirtbl[index].fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300128 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 Kivity75858a82009-01-04 17:10:50 +0200136 mask_after = ioapic->redirtbl[index].fields.mask;
137 if (mask_before != mask_after)
138 kvm_fire_mask_notifiers(ioapic->kvm, index, mask_after);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300139 if (ioapic->irr & (1 << index))
140 ioapic_service(ioapic, index);
141 break;
142 }
143}
144
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300145static int ioapic_inj_irq(struct kvm_ioapic *ioapic,
Zhang Xiantao8be54532007-12-02 22:35:57 +0800146 struct kvm_vcpu *vcpu,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300147 u8 vector, u8 trig_mode, u8 delivery_mode)
148{
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200149 ioapic_debug("irq %d trig %d deliv %d\n", vector, trig_mode,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300150 delivery_mode);
151
Zhang Xiantao0c7ac282007-12-02 22:49:09 +0800152 ASSERT((delivery_mode == IOAPIC_FIXED) ||
153 (delivery_mode == IOAPIC_LOWEST_PRIORITY));
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300154
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300155 return kvm_apic_set_irq(vcpu, vector, trig_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300156}
157
Sheng Yang3419ffc2008-05-15 09:52:48 +0800158static void ioapic_inj_nmi(struct kvm_vcpu *vcpu)
159{
160 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200161 kvm_vcpu_kick(vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800162}
163
Sheng Yange5871be2009-02-11 16:03:38 +0800164void kvm_ioapic_get_delivery_bitmask(struct kvm_ioapic *ioapic, u8 dest,
165 u8 dest_mode, unsigned long *mask)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300166{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300167 int i;
168 struct kvm *kvm = ioapic->kvm;
169 struct kvm_vcpu *vcpu;
170
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200171 ioapic_debug("dest %d dest_mode %d\n", dest, dest_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300172
Sheng Yange5871be2009-02-11 16:03:38 +0800173 *mask = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300174 if (dest_mode == 0) { /* Physical mode. */
175 if (dest == 0xFF) { /* Broadcast. */
176 for (i = 0; i < KVM_MAX_VCPUS; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800177 if (kvm->vcpus[i] && kvm->vcpus[i]->arch.apic)
Sheng Yange5871be2009-02-11 16:03:38 +0800178 *mask |= 1 << i;
179 return;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300180 }
181 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
182 vcpu = kvm->vcpus[i];
183 if (!vcpu)
184 continue;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800185 if (kvm_apic_match_physical_addr(vcpu->arch.apic, dest)) {
186 if (vcpu->arch.apic)
Sheng Yange5871be2009-02-11 16:03:38 +0800187 *mask = 1 << i;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300188 break;
189 }
190 }
191 } else if (dest != 0) /* Logical mode, MDA non-zero. */
192 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
193 vcpu = kvm->vcpus[i];
194 if (!vcpu)
195 continue;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800196 if (vcpu->arch.apic &&
197 kvm_apic_match_logical_addr(vcpu->arch.apic, dest))
Sheng Yange5871be2009-02-11 16:03:38 +0800198 *mask |= 1 << vcpu->vcpu_id;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300199 }
Sheng Yange5871be2009-02-11 16:03:38 +0800200 ioapic_debug("mask %x\n", *mask);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300201}
202
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300203static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300204{
Sheng Yang116191b2009-02-11 16:03:37 +0800205 union kvm_ioapic_redirect_entry entry = ioapic->redirtbl[irq];
206 unsigned long deliver_bitmask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300207 struct kvm_vcpu *vcpu;
Gleb Natapov49256632009-02-04 17:28:14 +0200208 int vcpu_id, r = -1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300209
210 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200211 "vector=%x trig_mode=%x\n",
Sheng Yang116191b2009-02-11 16:03:37 +0800212 entry.fields.dest, entry.fields.dest_mode,
213 entry.fields.delivery_mode, entry.fields.vector,
214 entry.fields.trig_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300215
Sheng Yang116191b2009-02-11 16:03:37 +0800216 kvm_get_intr_delivery_bitmask(ioapic, &entry, &deliver_bitmask);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300217 if (!deliver_bitmask) {
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200218 ioapic_debug("no target on destination\n");
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300219 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300220 }
221
Sheng Yang116191b2009-02-11 16:03:37 +0800222 /* Always delivery PIT interrupt to vcpu 0 */
Avi Kivity8c35f232008-02-25 10:28:31 +0200223#ifdef CONFIG_X86
Sheng Yang116191b2009-02-11 16:03:37 +0800224 if (irq == 0)
225 deliver_bitmask = 1;
Avi Kivity8c35f232008-02-25 10:28:31 +0200226#endif
Sheng Yang116191b2009-02-11 16:03:37 +0800227
228 for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) {
229 if (!(deliver_bitmask & (1 << vcpu_id)))
230 continue;
231 deliver_bitmask &= ~(1 << vcpu_id);
232 vcpu = ioapic->kvm->vcpus[vcpu_id];
233 if (vcpu) {
234 if (entry.fields.delivery_mode ==
235 IOAPIC_LOWEST_PRIORITY ||
236 entry.fields.delivery_mode == IOAPIC_FIXED) {
Gleb Natapov49256632009-02-04 17:28:14 +0200237 if (r < 0)
238 r = 0;
Sheng Yang116191b2009-02-11 16:03:37 +0800239 r += ioapic_inj_irq(ioapic, vcpu,
240 entry.fields.vector,
241 entry.fields.trig_mode,
242 entry.fields.delivery_mode);
243 } else if (entry.fields.delivery_mode == IOAPIC_NMI) {
Gleb Natapov49256632009-02-04 17:28:14 +0200244 r = 1;
Sheng Yang116191b2009-02-11 16:03:37 +0800245 ioapic_inj_nmi(vcpu);
246 } else
247 ioapic_debug("unsupported delivery mode %x!\n",
248 entry.fields.delivery_mode);
249 } else
250 ioapic_debug("null destination vcpu: "
251 "mask=%x vector=%x delivery_mode=%x\n",
252 entry.fields.deliver_bitmask,
253 entry.fields.vector,
254 entry.fields.delivery_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300255 }
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300256 return r;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300257}
258
Gleb Natapov49256632009-02-04 17:28:14 +0200259int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300260{
261 u32 old_irr = ioapic->irr;
262 u32 mask = 1 << irq;
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800263 union kvm_ioapic_redirect_entry entry;
Gleb Natapov49256632009-02-04 17:28:14 +0200264 int ret = 1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300265
266 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
267 entry = ioapic->redirtbl[irq];
268 level ^= entry.fields.polarity;
269 if (!level)
270 ioapic->irr &= ~mask;
271 else {
272 ioapic->irr |= mask;
273 if ((!entry.fields.trig_mode && old_irr != ioapic->irr)
274 || !entry.fields.remote_irr)
Gleb Natapov49256632009-02-04 17:28:14 +0200275 ret = ioapic_service(ioapic, irq);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300276 }
277 }
Gleb Natapov49256632009-02-04 17:28:14 +0200278 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300279}
280
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200281static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin,
Marcelo Tosattif5244722008-07-26 17:01:00 -0300282 int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300283{
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800284 union kvm_ioapic_redirect_entry *ent;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300285
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200286 ent = &ioapic->redirtbl[pin];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300287
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200288 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300289
290 if (trigger_mode == IOAPIC_LEVEL_TRIG) {
291 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
292 ent->fields.remote_irr = 0;
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200293 if (!ent->fields.mask && (ioapic->irr & (1 << pin)))
294 ioapic_service(ioapic, pin);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300295 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300296}
297
Marcelo Tosattif5244722008-07-26 17:01:00 -0300298void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700299{
300 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
301 int i;
302
303 for (i = 0; i < IOAPIC_NUM_PINS; i++)
304 if (ioapic->redirtbl[i].fields.vector == vector)
Marcelo Tosattif5244722008-07-26 17:01:00 -0300305 __kvm_ioapic_update_eoi(ioapic, i, trigger_mode);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700306}
307
Laurent Vivier92760492008-05-30 16:05:53 +0200308static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr,
309 int len, int is_write)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300310{
311 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
312
313 return ((addr >= ioapic->base_address &&
314 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
315}
316
317static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
318 void *val)
319{
320 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
321 u32 result;
322
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200323 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300324 ASSERT(!(addr & 0xf)); /* check alignment */
325
326 addr &= 0xff;
327 switch (addr) {
328 case IOAPIC_REG_SELECT:
329 result = ioapic->ioregsel;
330 break;
331
332 case IOAPIC_REG_WINDOW:
333 result = ioapic_read_indirect(ioapic, addr, len);
334 break;
335
336 default:
337 result = 0;
338 break;
339 }
340 switch (len) {
341 case 8:
342 *(u64 *) val = result;
343 break;
344 case 1:
345 case 2:
346 case 4:
347 memcpy(val, (char *)&result, len);
348 break;
349 default:
350 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
351 }
352}
353
354static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
355 const void *val)
356{
357 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
358 u32 data;
359
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200360 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
361 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300362 ASSERT(!(addr & 0xf)); /* check alignment */
363 if (len == 4 || len == 8)
364 data = *(u32 *) val;
365 else {
366 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
367 return;
368 }
369
370 addr &= 0xff;
371 switch (addr) {
372 case IOAPIC_REG_SELECT:
373 ioapic->ioregsel = data;
374 break;
375
376 case IOAPIC_REG_WINDOW:
377 ioapic_write_indirect(ioapic, data);
378 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800379#ifdef CONFIG_IA64
380 case IOAPIC_REG_EOI:
Xiantao Zhang26815a62008-08-19 20:48:03 +0800381 kvm_ioapic_update_eoi(ioapic->kvm, data, IOAPIC_LEVEL_TRIG);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800382 break;
383#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300384
385 default:
386 break;
387 }
388}
389
Eddie Dong8c392692007-10-10 12:15:54 +0200390void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
391{
392 int i;
393
394 for (i = 0; i < IOAPIC_NUM_PINS; i++)
395 ioapic->redirtbl[i].fields.mask = 1;
396 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
397 ioapic->ioregsel = 0;
398 ioapic->irr = 0;
399 ioapic->id = 0;
400}
401
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300402int kvm_ioapic_init(struct kvm *kvm)
403{
404 struct kvm_ioapic *ioapic;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300405
406 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
407 if (!ioapic)
408 return -ENOMEM;
Zhang Xiantaod7deeeb2007-12-14 10:17:34 +0800409 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200410 kvm_ioapic_reset(ioapic);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300411 ioapic->dev.read = ioapic_mmio_read;
412 ioapic->dev.write = ioapic_mmio_write;
413 ioapic->dev.in_range = ioapic_in_range;
414 ioapic->dev.private = ioapic;
415 ioapic->kvm = kvm;
416 kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev);
417 return 0;
418}
Avi Kivity75858a82009-01-04 17:10:50 +0200419