blob: fa05f67423ab6c703846068a3f19e41125ad4dbf [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
103static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
104{
105 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200106 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300107 union kvm_ioapic_redirect_entry *e;
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;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300127 e = &ioapic->redirtbl[index];
128 mask_before = e->fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300129 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300130 e->bits &= 0xffffffff;
131 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300132 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300133 e->bits &= ~0xffffffffULL;
134 e->bits |= (u32) val;
135 e->fields.remote_irr = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300136 }
Gleb Natapov70f93da2009-07-05 18:48:12 +0300137 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200138 if (mask_before != mask_after)
139 kvm_fire_mask_notifiers(ioapic->kvm, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300140 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300141 && ioapic->irr & (1 << index))
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300142 ioapic_service(ioapic, index);
143 break;
144 }
145}
146
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300147static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300148{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200149 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
150 struct kvm_lapic_irq irqe;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300151
152 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200153 "vector=%x trig_mode=%x\n",
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200154 entry->fields.dest, entry->fields.dest_mode,
155 entry->fields.delivery_mode, entry->fields.vector,
156 entry->fields.trig_mode);
157
158 irqe.dest_id = entry->fields.dest_id;
159 irqe.vector = entry->fields.vector;
160 irqe.dest_mode = entry->fields.dest_mode;
161 irqe.trig_mode = entry->fields.trig_mode;
162 irqe.delivery_mode = entry->fields.delivery_mode << 8;
163 irqe.level = 1;
164 irqe.shorthand = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300165
Avi Kivity8c35f232008-02-25 10:28:31 +0200166#ifdef CONFIG_X86
Gleb Natapova53c17d2009-03-05 16:34:49 +0200167 /* Always delivery PIT interrupt to vcpu 0 */
Sheng Yang74a3a8f2009-03-04 13:33:02 +0800168 if (irq == 0) {
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200169 irqe.dest_mode = 0; /* Physical mode. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300170 /* need to read apic_id from apic regiest since
171 * it can be rewritten */
172 irqe.dest_id = ioapic->kvm->bsp_vcpu->vcpu_id;
Gleb Natapova53c17d2009-03-05 16:34:49 +0200173 }
Avi Kivity8c35f232008-02-25 10:28:31 +0200174#endif
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200175 return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300176}
177
Gleb Natapov49256632009-02-04 17:28:14 +0200178int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300179{
180 u32 old_irr = ioapic->irr;
181 u32 mask = 1 << irq;
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800182 union kvm_ioapic_redirect_entry entry;
Gleb Natapov49256632009-02-04 17:28:14 +0200183 int ret = 1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300184
185 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
186 entry = ioapic->redirtbl[irq];
187 level ^= entry.fields.polarity;
188 if (!level)
189 ioapic->irr &= ~mask;
190 else {
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300191 int edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300192 ioapic->irr |= mask;
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300193 if ((edge && old_irr != ioapic->irr) ||
194 (!edge && !entry.fields.remote_irr))
Gleb Natapov49256632009-02-04 17:28:14 +0200195 ret = ioapic_service(ioapic, irq);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300196 }
Gleb Natapov1000ff82009-07-07 16:00:57 +0300197 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300198 }
Gleb Natapov49256632009-02-04 17:28:14 +0200199 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300200}
201
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200202static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin,
Marcelo Tosattif5244722008-07-26 17:01:00 -0300203 int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300204{
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800205 union kvm_ioapic_redirect_entry *ent;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300206
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200207 ent = &ioapic->redirtbl[pin];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300208
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200209 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300210
211 if (trigger_mode == IOAPIC_LEVEL_TRIG) {
212 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
213 ent->fields.remote_irr = 0;
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200214 if (!ent->fields.mask && (ioapic->irr & (1 << pin)))
215 ioapic_service(ioapic, pin);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300216 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300217}
218
Marcelo Tosattif5244722008-07-26 17:01:00 -0300219void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700220{
221 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
222 int i;
223
224 for (i = 0; i < IOAPIC_NUM_PINS; i++)
225 if (ioapic->redirtbl[i].fields.vector == vector)
Marcelo Tosattif5244722008-07-26 17:01:00 -0300226 __kvm_ioapic_update_eoi(ioapic, i, trigger_mode);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700227}
228
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400229static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
230{
231 return container_of(dev, struct kvm_ioapic, dev);
232}
233
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300234static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300235{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300236 return ((addr >= ioapic->base_address &&
237 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
238}
239
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300240static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
241 void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300242{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400243 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300244 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300245 if (!ioapic_in_range(ioapic, addr))
246 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300247
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200248 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300249 ASSERT(!(addr & 0xf)); /* check alignment */
250
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300251 mutex_lock(&ioapic->kvm->irq_lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300252 addr &= 0xff;
253 switch (addr) {
254 case IOAPIC_REG_SELECT:
255 result = ioapic->ioregsel;
256 break;
257
258 case IOAPIC_REG_WINDOW:
259 result = ioapic_read_indirect(ioapic, addr, len);
260 break;
261
262 default:
263 result = 0;
264 break;
265 }
266 switch (len) {
267 case 8:
268 *(u64 *) val = result;
269 break;
270 case 1:
271 case 2:
272 case 4:
273 memcpy(val, (char *)&result, len);
274 break;
275 default:
276 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
277 }
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300278 mutex_unlock(&ioapic->kvm->irq_lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300279 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300280}
281
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300282static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
283 const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300284{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400285 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300286 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300287 if (!ioapic_in_range(ioapic, addr))
288 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300289
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200290 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
291 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300292 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300293
294 mutex_lock(&ioapic->kvm->irq_lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300295 if (len == 4 || len == 8)
296 data = *(u32 *) val;
297 else {
298 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Jiri Slaby27c4ba62009-06-29 18:05:10 +0200299 goto unlock;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300300 }
301
302 addr &= 0xff;
303 switch (addr) {
304 case IOAPIC_REG_SELECT:
305 ioapic->ioregsel = data;
306 break;
307
308 case IOAPIC_REG_WINDOW:
309 ioapic_write_indirect(ioapic, data);
310 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800311#ifdef CONFIG_IA64
312 case IOAPIC_REG_EOI:
Xiantao Zhang26815a62008-08-19 20:48:03 +0800313 kvm_ioapic_update_eoi(ioapic->kvm, data, IOAPIC_LEVEL_TRIG);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800314 break;
315#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300316
317 default:
318 break;
319 }
Jiri Slaby27c4ba62009-06-29 18:05:10 +0200320unlock:
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300321 mutex_unlock(&ioapic->kvm->irq_lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300322 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300323}
324
Eddie Dong8c392692007-10-10 12:15:54 +0200325void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
326{
327 int i;
328
329 for (i = 0; i < IOAPIC_NUM_PINS; i++)
330 ioapic->redirtbl[i].fields.mask = 1;
331 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
332 ioapic->ioregsel = 0;
333 ioapic->irr = 0;
334 ioapic->id = 0;
335}
336
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400337static const struct kvm_io_device_ops ioapic_mmio_ops = {
338 .read = ioapic_mmio_read,
339 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400340};
341
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300342int kvm_ioapic_init(struct kvm *kvm)
343{
344 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400345 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300346
347 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
348 if (!ioapic)
349 return -ENOMEM;
Zhang Xiantaod7deeeb2007-12-14 10:17:34 +0800350 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200351 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400352 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300353 ioapic->kvm = kvm;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400354 ret = kvm_io_bus_register_dev(kvm, &kvm->mmio_bus, &ioapic->dev);
355 if (ret < 0)
356 kfree(ioapic);
357
358 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300359}
Avi Kivity75858a82009-01-04 17:10:50 +0200360