blob: b71c0442cecf64b17f0d3f2c2034236a27782e7e [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
Gleb Natapova53c17d2009-03-05 16:34:49 +0200145int ioapic_deliver_entry(struct kvm *kvm, union kvm_ioapic_redirect_entry *e)
146{
147 DECLARE_BITMAP(deliver_bitmask, KVM_MAX_VCPUS);
148 int i, r = -1;
149
150 kvm_get_intr_delivery_bitmask(kvm, e, deliver_bitmask);
151
152 if (find_first_bit(deliver_bitmask, KVM_MAX_VCPUS) >= KVM_MAX_VCPUS) {
153 ioapic_debug("no target on destination\n");
154 return r;
155 }
156
157 while ((i = find_first_bit(deliver_bitmask, KVM_MAX_VCPUS))
158 < KVM_MAX_VCPUS) {
159 struct kvm_vcpu *vcpu = kvm->vcpus[i];
160 __clear_bit(i, deliver_bitmask);
161 if (vcpu) {
162 if (r < 0)
163 r = 0;
164 r += kvm_apic_set_irq(vcpu, e->fields.vector,
165 e->fields.delivery_mode,
166 e->fields.trig_mode);
167 } else
168 ioapic_debug("null destination vcpu: "
169 "mask=%x vector=%x delivery_mode=%x\n",
170 e->fields.deliver_bitmask,
171 e->fields.vector, e->fields.delivery_mode);
172 }
173 return r;
174}
175
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300176static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300177{
Sheng Yang116191b2009-02-11 16:03:37 +0800178 union kvm_ioapic_redirect_entry entry = ioapic->redirtbl[irq];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300179
180 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200181 "vector=%x trig_mode=%x\n",
Sheng Yang116191b2009-02-11 16:03:37 +0800182 entry.fields.dest, entry.fields.dest_mode,
183 entry.fields.delivery_mode, entry.fields.vector,
184 entry.fields.trig_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300185
Avi Kivity8c35f232008-02-25 10:28:31 +0200186#ifdef CONFIG_X86
Gleb Natapova53c17d2009-03-05 16:34:49 +0200187 /* Always delivery PIT interrupt to vcpu 0 */
Sheng Yang74a3a8f2009-03-04 13:33:02 +0800188 if (irq == 0) {
Gleb Natapova53c17d2009-03-05 16:34:49 +0200189 entry.fields.dest_mode = 0; /* Physical mode. */
190 entry.fields.dest_id = ioapic->kvm->vcpus[0]->vcpu_id;
191 }
Avi Kivity8c35f232008-02-25 10:28:31 +0200192#endif
Gleb Natapova53c17d2009-03-05 16:34:49 +0200193 return ioapic_deliver_entry(ioapic->kvm, &entry);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300194}
195
Gleb Natapov49256632009-02-04 17:28:14 +0200196int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300197{
198 u32 old_irr = ioapic->irr;
199 u32 mask = 1 << irq;
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800200 union kvm_ioapic_redirect_entry entry;
Gleb Natapov49256632009-02-04 17:28:14 +0200201 int ret = 1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300202
203 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
204 entry = ioapic->redirtbl[irq];
205 level ^= entry.fields.polarity;
206 if (!level)
207 ioapic->irr &= ~mask;
208 else {
209 ioapic->irr |= mask;
210 if ((!entry.fields.trig_mode && old_irr != ioapic->irr)
211 || !entry.fields.remote_irr)
Gleb Natapov49256632009-02-04 17:28:14 +0200212 ret = ioapic_service(ioapic, irq);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300213 }
214 }
Gleb Natapov49256632009-02-04 17:28:14 +0200215 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300216}
217
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200218static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin,
Marcelo Tosattif5244722008-07-26 17:01:00 -0300219 int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300220{
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800221 union kvm_ioapic_redirect_entry *ent;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300222
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200223 ent = &ioapic->redirtbl[pin];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300224
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200225 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300226
227 if (trigger_mode == IOAPIC_LEVEL_TRIG) {
228 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
229 ent->fields.remote_irr = 0;
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200230 if (!ent->fields.mask && (ioapic->irr & (1 << pin)))
231 ioapic_service(ioapic, pin);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300232 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300233}
234
Marcelo Tosattif5244722008-07-26 17:01:00 -0300235void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700236{
237 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
238 int i;
239
240 for (i = 0; i < IOAPIC_NUM_PINS; i++)
241 if (ioapic->redirtbl[i].fields.vector == vector)
Marcelo Tosattif5244722008-07-26 17:01:00 -0300242 __kvm_ioapic_update_eoi(ioapic, i, trigger_mode);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700243}
244
Laurent Vivier92760492008-05-30 16:05:53 +0200245static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr,
246 int len, int is_write)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300247{
248 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
249
250 return ((addr >= ioapic->base_address &&
251 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
252}
253
254static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
255 void *val)
256{
257 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
258 u32 result;
259
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200260 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300261 ASSERT(!(addr & 0xf)); /* check alignment */
262
263 addr &= 0xff;
264 switch (addr) {
265 case IOAPIC_REG_SELECT:
266 result = ioapic->ioregsel;
267 break;
268
269 case IOAPIC_REG_WINDOW:
270 result = ioapic_read_indirect(ioapic, addr, len);
271 break;
272
273 default:
274 result = 0;
275 break;
276 }
277 switch (len) {
278 case 8:
279 *(u64 *) val = result;
280 break;
281 case 1:
282 case 2:
283 case 4:
284 memcpy(val, (char *)&result, len);
285 break;
286 default:
287 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
288 }
289}
290
291static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
292 const void *val)
293{
294 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
295 u32 data;
296
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200297 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
298 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300299 ASSERT(!(addr & 0xf)); /* check alignment */
300 if (len == 4 || len == 8)
301 data = *(u32 *) val;
302 else {
303 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
304 return;
305 }
306
307 addr &= 0xff;
308 switch (addr) {
309 case IOAPIC_REG_SELECT:
310 ioapic->ioregsel = data;
311 break;
312
313 case IOAPIC_REG_WINDOW:
314 ioapic_write_indirect(ioapic, data);
315 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800316#ifdef CONFIG_IA64
317 case IOAPIC_REG_EOI:
Xiantao Zhang26815a62008-08-19 20:48:03 +0800318 kvm_ioapic_update_eoi(ioapic->kvm, data, IOAPIC_LEVEL_TRIG);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800319 break;
320#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300321
322 default:
323 break;
324 }
325}
326
Eddie Dong8c392692007-10-10 12:15:54 +0200327void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
328{
329 int i;
330
331 for (i = 0; i < IOAPIC_NUM_PINS; i++)
332 ioapic->redirtbl[i].fields.mask = 1;
333 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
334 ioapic->ioregsel = 0;
335 ioapic->irr = 0;
336 ioapic->id = 0;
337}
338
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300339int kvm_ioapic_init(struct kvm *kvm)
340{
341 struct kvm_ioapic *ioapic;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300342
343 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
344 if (!ioapic)
345 return -ENOMEM;
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800346 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200347 kvm_ioapic_reset(ioapic);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300348 ioapic->dev.read = ioapic_mmio_read;
349 ioapic->dev.write = ioapic_mmio_write;
350 ioapic->dev.in_range = ioapic_in_range;
351 ioapic->dev.private = ioapic;
352 ioapic->kvm = kvm;
353 kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev);
354 return 0;
355}
Avi Kivity75858a82009-01-04 17:10:50 +0200356