blob: ddf6aa998b1835aacb2482db2099fd0f22fa2309 [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 }
Gleb Natapov49256632009-02-04 17:28:14 +020098
99 return injected;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300100}
101
102static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
103{
104 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200105 bool mask_before, mask_after;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300106
107 switch (ioapic->ioregsel) {
108 case IOAPIC_REG_VERSION:
109 /* Writes are ignored. */
110 break;
111
112 case IOAPIC_REG_APIC_ID:
113 ioapic->id = (val >> 24) & 0xf;
114 break;
115
116 case IOAPIC_REG_ARB_ID:
117 break;
118
119 default:
120 index = (ioapic->ioregsel - 0x10) >> 1;
121
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200122 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300123 if (index >= IOAPIC_NUM_PINS)
124 return;
Avi Kivity75858a82009-01-04 17:10:50 +0200125 mask_before = ioapic->redirtbl[index].fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300126 if (ioapic->ioregsel & 1) {
127 ioapic->redirtbl[index].bits &= 0xffffffff;
128 ioapic->redirtbl[index].bits |= (u64) val << 32;
129 } else {
130 ioapic->redirtbl[index].bits &= ~0xffffffffULL;
131 ioapic->redirtbl[index].bits |= (u32) val;
132 ioapic->redirtbl[index].fields.remote_irr = 0;
133 }
Avi Kivity75858a82009-01-04 17:10:50 +0200134 mask_after = ioapic->redirtbl[index].fields.mask;
135 if (mask_before != mask_after)
136 kvm_fire_mask_notifiers(ioapic->kvm, index, mask_after);
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300137 if (ioapic->redirtbl[index].fields.trig_mode == IOAPIC_LEVEL_TRIG
138 && ioapic->irr & (1 << index))
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300139 ioapic_service(ioapic, index);
140 break;
141 }
142}
143
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300144static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300145{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200146 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
147 struct kvm_lapic_irq irqe;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300148
149 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200150 "vector=%x trig_mode=%x\n",
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200151 entry->fields.dest, entry->fields.dest_mode,
152 entry->fields.delivery_mode, entry->fields.vector,
153 entry->fields.trig_mode);
154
155 irqe.dest_id = entry->fields.dest_id;
156 irqe.vector = entry->fields.vector;
157 irqe.dest_mode = entry->fields.dest_mode;
158 irqe.trig_mode = entry->fields.trig_mode;
159 irqe.delivery_mode = entry->fields.delivery_mode << 8;
160 irqe.level = 1;
161 irqe.shorthand = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300162
Avi Kivity8c35f232008-02-25 10:28:31 +0200163#ifdef CONFIG_X86
Gleb Natapova53c17d2009-03-05 16:34:49 +0200164 /* Always delivery PIT interrupt to vcpu 0 */
Sheng Yang74a3a8f2009-03-04 13:33:02 +0800165 if (irq == 0) {
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200166 irqe.dest_mode = 0; /* Physical mode. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300167 /* need to read apic_id from apic regiest since
168 * it can be rewritten */
169 irqe.dest_id = ioapic->kvm->bsp_vcpu->vcpu_id;
Gleb Natapova53c17d2009-03-05 16:34:49 +0200170 }
Avi Kivity8c35f232008-02-25 10:28:31 +0200171#endif
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200172 return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300173}
174
Gleb Natapov49256632009-02-04 17:28:14 +0200175int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300176{
177 u32 old_irr = ioapic->irr;
178 u32 mask = 1 << irq;
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800179 union kvm_ioapic_redirect_entry entry;
Gleb Natapov49256632009-02-04 17:28:14 +0200180 int ret = 1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300181
182 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
183 entry = ioapic->redirtbl[irq];
184 level ^= entry.fields.polarity;
185 if (!level)
186 ioapic->irr &= ~mask;
187 else {
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300188 int edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300189 ioapic->irr |= mask;
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300190 if ((edge && old_irr != ioapic->irr) ||
191 (!edge && !entry.fields.remote_irr))
Gleb Natapov49256632009-02-04 17:28:14 +0200192 ret = ioapic_service(ioapic, irq);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300193 }
194 }
Gleb Natapov49256632009-02-04 17:28:14 +0200195 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300196}
197
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200198static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin,
Marcelo Tosattif5244722008-07-26 17:01:00 -0300199 int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300200{
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800201 union kvm_ioapic_redirect_entry *ent;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300202
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200203 ent = &ioapic->redirtbl[pin];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300204
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200205 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300206
207 if (trigger_mode == IOAPIC_LEVEL_TRIG) {
208 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
209 ent->fields.remote_irr = 0;
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200210 if (!ent->fields.mask && (ioapic->irr & (1 << pin)))
211 ioapic_service(ioapic, pin);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300212 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300213}
214
Marcelo Tosattif5244722008-07-26 17:01:00 -0300215void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700216{
217 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
218 int i;
219
220 for (i = 0; i < IOAPIC_NUM_PINS; i++)
221 if (ioapic->redirtbl[i].fields.vector == vector)
Marcelo Tosattif5244722008-07-26 17:01:00 -0300222 __kvm_ioapic_update_eoi(ioapic, i, trigger_mode);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700223}
224
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400225static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
226{
227 return container_of(dev, struct kvm_ioapic, dev);
228}
229
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300230static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300231{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300232 return ((addr >= ioapic->base_address &&
233 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
234}
235
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300236static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
237 void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300238{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400239 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300240 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300241 if (!ioapic_in_range(ioapic, addr))
242 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300243
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200244 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300245 ASSERT(!(addr & 0xf)); /* check alignment */
246
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300247 mutex_lock(&ioapic->kvm->irq_lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300248 addr &= 0xff;
249 switch (addr) {
250 case IOAPIC_REG_SELECT:
251 result = ioapic->ioregsel;
252 break;
253
254 case IOAPIC_REG_WINDOW:
255 result = ioapic_read_indirect(ioapic, addr, len);
256 break;
257
258 default:
259 result = 0;
260 break;
261 }
262 switch (len) {
263 case 8:
264 *(u64 *) val = result;
265 break;
266 case 1:
267 case 2:
268 case 4:
269 memcpy(val, (char *)&result, len);
270 break;
271 default:
272 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
273 }
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300274 mutex_unlock(&ioapic->kvm->irq_lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300275 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300276}
277
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300278static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
279 const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300280{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400281 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300282 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300283 if (!ioapic_in_range(ioapic, addr))
284 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300285
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200286 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
287 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300288 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300289
290 mutex_lock(&ioapic->kvm->irq_lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300291 if (len == 4 || len == 8)
292 data = *(u32 *) val;
293 else {
294 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300295 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300296 }
297
298 addr &= 0xff;
299 switch (addr) {
300 case IOAPIC_REG_SELECT:
301 ioapic->ioregsel = data;
302 break;
303
304 case IOAPIC_REG_WINDOW:
305 ioapic_write_indirect(ioapic, data);
306 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800307#ifdef CONFIG_IA64
308 case IOAPIC_REG_EOI:
Xiantao Zhang26815a62008-08-19 20:48:03 +0800309 kvm_ioapic_update_eoi(ioapic->kvm, data, IOAPIC_LEVEL_TRIG);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800310 break;
311#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300312
313 default:
314 break;
315 }
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300316 mutex_unlock(&ioapic->kvm->irq_lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300317 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300318}
319
Eddie Dong8c392692007-10-10 12:15:54 +0200320void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
321{
322 int i;
323
324 for (i = 0; i < IOAPIC_NUM_PINS; i++)
325 ioapic->redirtbl[i].fields.mask = 1;
326 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
327 ioapic->ioregsel = 0;
328 ioapic->irr = 0;
329 ioapic->id = 0;
330}
331
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400332static const struct kvm_io_device_ops ioapic_mmio_ops = {
333 .read = ioapic_mmio_read,
334 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400335};
336
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300337int kvm_ioapic_init(struct kvm *kvm)
338{
339 struct kvm_ioapic *ioapic;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300340
341 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
342 if (!ioapic)
343 return -ENOMEM;
Zhang Xiantaod7deeeb2007-12-14 10:17:34 +0800344 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200345 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400346 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300347 ioapic->kvm = kvm;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +0300348 kvm_io_bus_register_dev(kvm, &kvm->mmio_bus, &ioapic->dev);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300349 return 0;
350}
Avi Kivity75858a82009-01-04 17:10:50 +0200351