blob: 3629867a76bc135966766824b1e0ba0d5a7517ad [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
29#include "kvm.h"
Zhang Xiantao34c16ee2007-10-20 15:34:38 +080030#include "x86.h"
31
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030032#include <linux/kvm.h>
33#include <linux/mm.h>
34#include <linux/highmem.h>
35#include <linux/smp.h>
36#include <linux/hrtimer.h>
37#include <linux/io.h>
38#include <asm/processor.h>
39#include <asm/msr.h>
40#include <asm/page.h>
41#include <asm/current.h>
42#include <asm/apicdef.h>
43#include <asm/io_apic.h>
44#include "irq.h"
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
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030050static void ioapic_deliver(struct kvm_ioapic *vioapic, int irq);
51
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
87static void ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx)
88{
89 union ioapic_redir_entry *pent;
90
91 pent = &ioapic->redirtbl[idx];
92
93 if (!pent->fields.mask) {
94 ioapic_deliver(ioapic, idx);
95 if (pent->fields.trig_mode == IOAPIC_LEVEL_TRIG)
96 pent->fields.remote_irr = 1;
97 }
98 if (!pent->fields.trig_mode)
99 ioapic->irr &= ~(1 << idx);
100}
101
102static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
103{
104 unsigned index;
105
106 switch (ioapic->ioregsel) {
107 case IOAPIC_REG_VERSION:
108 /* Writes are ignored. */
109 break;
110
111 case IOAPIC_REG_APIC_ID:
112 ioapic->id = (val >> 24) & 0xf;
113 break;
114
115 case IOAPIC_REG_ARB_ID:
116 break;
117
118 default:
119 index = (ioapic->ioregsel - 0x10) >> 1;
120
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200121 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300122 if (index >= IOAPIC_NUM_PINS)
123 return;
124 if (ioapic->ioregsel & 1) {
125 ioapic->redirtbl[index].bits &= 0xffffffff;
126 ioapic->redirtbl[index].bits |= (u64) val << 32;
127 } else {
128 ioapic->redirtbl[index].bits &= ~0xffffffffULL;
129 ioapic->redirtbl[index].bits |= (u32) val;
130 ioapic->redirtbl[index].fields.remote_irr = 0;
131 }
132 if (ioapic->irr & (1 << index))
133 ioapic_service(ioapic, index);
134 break;
135 }
136}
137
138static void ioapic_inj_irq(struct kvm_ioapic *ioapic,
Zhang Xiantao8be54532007-12-02 22:35:57 +0800139 struct kvm_vcpu *vcpu,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300140 u8 vector, u8 trig_mode, u8 delivery_mode)
141{
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200142 ioapic_debug("irq %d trig %d deliv %d\n", vector, trig_mode,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300143 delivery_mode);
144
145 ASSERT((delivery_mode == dest_Fixed) ||
146 (delivery_mode == dest_LowestPrio));
147
Zhang Xiantao8be54532007-12-02 22:35:57 +0800148 kvm_apic_set_irq(vcpu, vector, trig_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300149}
150
151static u32 ioapic_get_delivery_bitmask(struct kvm_ioapic *ioapic, u8 dest,
152 u8 dest_mode)
153{
154 u32 mask = 0;
155 int i;
156 struct kvm *kvm = ioapic->kvm;
157 struct kvm_vcpu *vcpu;
158
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200159 ioapic_debug("dest %d dest_mode %d\n", dest, dest_mode);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300160
161 if (dest_mode == 0) { /* Physical mode. */
162 if (dest == 0xFF) { /* Broadcast. */
163 for (i = 0; i < KVM_MAX_VCPUS; ++i)
164 if (kvm->vcpus[i] && kvm->vcpus[i]->apic)
165 mask |= 1 << i;
166 return mask;
167 }
168 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
169 vcpu = kvm->vcpus[i];
170 if (!vcpu)
171 continue;
172 if (kvm_apic_match_physical_addr(vcpu->apic, dest)) {
173 if (vcpu->apic)
174 mask = 1 << i;
175 break;
176 }
177 }
178 } else if (dest != 0) /* Logical mode, MDA non-zero. */
179 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
180 vcpu = kvm->vcpus[i];
181 if (!vcpu)
182 continue;
183 if (vcpu->apic &&
184 kvm_apic_match_logical_addr(vcpu->apic, dest))
185 mask |= 1 << vcpu->vcpu_id;
186 }
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200187 ioapic_debug("mask %x\n", mask);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300188 return mask;
189}
190
191static void ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
192{
193 u8 dest = ioapic->redirtbl[irq].fields.dest_id;
194 u8 dest_mode = ioapic->redirtbl[irq].fields.dest_mode;
195 u8 delivery_mode = ioapic->redirtbl[irq].fields.delivery_mode;
196 u8 vector = ioapic->redirtbl[irq].fields.vector;
197 u8 trig_mode = ioapic->redirtbl[irq].fields.trig_mode;
198 u32 deliver_bitmask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300199 struct kvm_vcpu *vcpu;
200 int vcpu_id;
201
202 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200203 "vector=%x trig_mode=%x\n",
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300204 dest, dest_mode, delivery_mode, vector, trig_mode);
205
206 deliver_bitmask = ioapic_get_delivery_bitmask(ioapic, dest, dest_mode);
207 if (!deliver_bitmask) {
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200208 ioapic_debug("no target on destination\n");
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300209 return;
210 }
211
212 switch (delivery_mode) {
213 case dest_LowestPrio:
Zhang Xiantao8be54532007-12-02 22:35:57 +0800214 vcpu = kvm_get_lowest_prio_vcpu(ioapic->kvm, vector,
215 deliver_bitmask);
216 if (vcpu != NULL)
217 ioapic_inj_irq(ioapic, vcpu, vector,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300218 trig_mode, delivery_mode);
219 else
Zhang Xiantao8be54532007-12-02 22:35:57 +0800220 ioapic_debug("null lowest prio vcpu: "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200221 "mask=%x vector=%x delivery_mode=%x\n",
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300222 deliver_bitmask, vector, dest_LowestPrio);
223 break;
224 case dest_Fixed:
225 for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) {
226 if (!(deliver_bitmask & (1 << vcpu_id)))
227 continue;
228 deliver_bitmask &= ~(1 << vcpu_id);
229 vcpu = ioapic->kvm->vcpus[vcpu_id];
230 if (vcpu) {
Zhang Xiantao8be54532007-12-02 22:35:57 +0800231 ioapic_inj_irq(ioapic, vcpu, vector,
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300232 trig_mode, delivery_mode);
233 }
234 }
235 break;
236
237 /* TODO: NMI */
238 default:
239 printk(KERN_WARNING "Unsupported delivery mode %d\n",
240 delivery_mode);
241 break;
242 }
243}
244
245void kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
246{
247 u32 old_irr = ioapic->irr;
248 u32 mask = 1 << irq;
249 union ioapic_redir_entry entry;
250
251 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
252 entry = ioapic->redirtbl[irq];
253 level ^= entry.fields.polarity;
254 if (!level)
255 ioapic->irr &= ~mask;
256 else {
257 ioapic->irr |= mask;
258 if ((!entry.fields.trig_mode && old_irr != ioapic->irr)
259 || !entry.fields.remote_irr)
260 ioapic_service(ioapic, irq);
261 }
262 }
263}
264
265static int get_eoi_gsi(struct kvm_ioapic *ioapic, int vector)
266{
267 int i;
268
269 for (i = 0; i < IOAPIC_NUM_PINS; i++)
270 if (ioapic->redirtbl[i].fields.vector == vector)
271 return i;
272 return -1;
273}
274
275void kvm_ioapic_update_eoi(struct kvm *kvm, int vector)
276{
277 struct kvm_ioapic *ioapic = kvm->vioapic;
278 union ioapic_redir_entry *ent;
279 int gsi;
280
281 gsi = get_eoi_gsi(ioapic, vector);
282 if (gsi == -1) {
283 printk(KERN_WARNING "Can't find redir item for %d EOI\n",
284 vector);
285 return;
286 }
287
288 ent = &ioapic->redirtbl[gsi];
289 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
290
291 ent->fields.remote_irr = 0;
292 if (!ent->fields.mask && (ioapic->irr & (1 << gsi)))
293 ioapic_deliver(ioapic, gsi);
294}
295
296static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr)
297{
298 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
299
300 return ((addr >= ioapic->base_address &&
301 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
302}
303
304static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
305 void *val)
306{
307 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
308 u32 result;
309
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200310 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300311 ASSERT(!(addr & 0xf)); /* check alignment */
312
313 addr &= 0xff;
314 switch (addr) {
315 case IOAPIC_REG_SELECT:
316 result = ioapic->ioregsel;
317 break;
318
319 case IOAPIC_REG_WINDOW:
320 result = ioapic_read_indirect(ioapic, addr, len);
321 break;
322
323 default:
324 result = 0;
325 break;
326 }
327 switch (len) {
328 case 8:
329 *(u64 *) val = result;
330 break;
331 case 1:
332 case 2:
333 case 4:
334 memcpy(val, (char *)&result, len);
335 break;
336 default:
337 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
338 }
339}
340
341static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
342 const void *val)
343{
344 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
345 u32 data;
346
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200347 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
348 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300349 ASSERT(!(addr & 0xf)); /* check alignment */
350 if (len == 4 || len == 8)
351 data = *(u32 *) val;
352 else {
353 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
354 return;
355 }
356
357 addr &= 0xff;
358 switch (addr) {
359 case IOAPIC_REG_SELECT:
360 ioapic->ioregsel = data;
361 break;
362
363 case IOAPIC_REG_WINDOW:
364 ioapic_write_indirect(ioapic, data);
365 break;
366
367 default:
368 break;
369 }
370}
371
Eddie Dong8c392692007-10-10 12:15:54 +0200372void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
373{
374 int i;
375
376 for (i = 0; i < IOAPIC_NUM_PINS; i++)
377 ioapic->redirtbl[i].fields.mask = 1;
378 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
379 ioapic->ioregsel = 0;
380 ioapic->irr = 0;
381 ioapic->id = 0;
382}
383
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300384int kvm_ioapic_init(struct kvm *kvm)
385{
386 struct kvm_ioapic *ioapic;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300387
388 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
389 if (!ioapic)
390 return -ENOMEM;
391 kvm->vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200392 kvm_ioapic_reset(ioapic);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300393 ioapic->dev.read = ioapic_mmio_read;
394 ioapic->dev.write = ioapic_mmio_write;
395 ioapic->dev.in_range = ioapic_in_range;
396 ioapic->dev.private = ioapic;
397 ioapic->kvm = kvm;
398 kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev);
399 return 0;
400}