KVM: Add some \n in ioapic_debug()
[deliverable/linux.git] / drivers / kvm / ioapic.c
1 /*
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"
30 #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>
37 #include <asm/msr.h>
38 #include <asm/page.h>
39 #include <asm/current.h>
40 #include <asm/apicdef.h>
41 #include <asm/io_apic.h>
42 #include "irq.h"
43 #if 0
44 #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
45 #else
46 #define ioapic_debug(fmt, arg...)
47 #endif
48 static void ioapic_deliver(struct kvm_ioapic *vioapic, int irq);
49
50 static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
51 unsigned long addr,
52 unsigned long length)
53 {
54 unsigned long result = 0;
55
56 switch (ioapic->ioregsel) {
57 case IOAPIC_REG_VERSION:
58 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
59 | (IOAPIC_VERSION_ID & 0xff));
60 break;
61
62 case IOAPIC_REG_APIC_ID:
63 case IOAPIC_REG_ARB_ID:
64 result = ((ioapic->id & 0xf) << 24);
65 break;
66
67 default:
68 {
69 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
70 u64 redir_content;
71
72 ASSERT(redir_index < IOAPIC_NUM_PINS);
73
74 redir_content = ioapic->redirtbl[redir_index].bits;
75 result = (ioapic->ioregsel & 0x1) ?
76 (redir_content >> 32) & 0xffffffff :
77 redir_content & 0xffffffff;
78 break;
79 }
80 }
81
82 return result;
83 }
84
85 static void ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx)
86 {
87 union ioapic_redir_entry *pent;
88
89 pent = &ioapic->redirtbl[idx];
90
91 if (!pent->fields.mask) {
92 ioapic_deliver(ioapic, idx);
93 if (pent->fields.trig_mode == IOAPIC_LEVEL_TRIG)
94 pent->fields.remote_irr = 1;
95 }
96 if (!pent->fields.trig_mode)
97 ioapic->irr &= ~(1 << idx);
98 }
99
100 static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
101 {
102 unsigned index;
103
104 switch (ioapic->ioregsel) {
105 case IOAPIC_REG_VERSION:
106 /* Writes are ignored. */
107 break;
108
109 case IOAPIC_REG_APIC_ID:
110 ioapic->id = (val >> 24) & 0xf;
111 break;
112
113 case IOAPIC_REG_ARB_ID:
114 break;
115
116 default:
117 index = (ioapic->ioregsel - 0x10) >> 1;
118
119 ioapic_debug("change redir index %x val %x\n", index, val);
120 if (index >= IOAPIC_NUM_PINS)
121 return;
122 if (ioapic->ioregsel & 1) {
123 ioapic->redirtbl[index].bits &= 0xffffffff;
124 ioapic->redirtbl[index].bits |= (u64) val << 32;
125 } else {
126 ioapic->redirtbl[index].bits &= ~0xffffffffULL;
127 ioapic->redirtbl[index].bits |= (u32) val;
128 ioapic->redirtbl[index].fields.remote_irr = 0;
129 }
130 if (ioapic->irr & (1 << index))
131 ioapic_service(ioapic, index);
132 break;
133 }
134 }
135
136 static void ioapic_inj_irq(struct kvm_ioapic *ioapic,
137 struct kvm_lapic *target,
138 u8 vector, u8 trig_mode, u8 delivery_mode)
139 {
140 ioapic_debug("irq %d trig %d deliv %d\n", vector, trig_mode,
141 delivery_mode);
142
143 ASSERT((delivery_mode == dest_Fixed) ||
144 (delivery_mode == dest_LowestPrio));
145
146 kvm_apic_set_irq(target, vector, trig_mode);
147 }
148
149 static u32 ioapic_get_delivery_bitmask(struct kvm_ioapic *ioapic, u8 dest,
150 u8 dest_mode)
151 {
152 u32 mask = 0;
153 int i;
154 struct kvm *kvm = ioapic->kvm;
155 struct kvm_vcpu *vcpu;
156
157 ioapic_debug("dest %d dest_mode %d\n", dest, dest_mode);
158
159 if (dest_mode == 0) { /* Physical mode. */
160 if (dest == 0xFF) { /* Broadcast. */
161 for (i = 0; i < KVM_MAX_VCPUS; ++i)
162 if (kvm->vcpus[i] && kvm->vcpus[i]->apic)
163 mask |= 1 << i;
164 return mask;
165 }
166 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
167 vcpu = kvm->vcpus[i];
168 if (!vcpu)
169 continue;
170 if (kvm_apic_match_physical_addr(vcpu->apic, dest)) {
171 if (vcpu->apic)
172 mask = 1 << i;
173 break;
174 }
175 }
176 } else if (dest != 0) /* Logical mode, MDA non-zero. */
177 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
178 vcpu = kvm->vcpus[i];
179 if (!vcpu)
180 continue;
181 if (vcpu->apic &&
182 kvm_apic_match_logical_addr(vcpu->apic, dest))
183 mask |= 1 << vcpu->vcpu_id;
184 }
185 ioapic_debug("mask %x\n", mask);
186 return mask;
187 }
188
189 static void ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
190 {
191 u8 dest = ioapic->redirtbl[irq].fields.dest_id;
192 u8 dest_mode = ioapic->redirtbl[irq].fields.dest_mode;
193 u8 delivery_mode = ioapic->redirtbl[irq].fields.delivery_mode;
194 u8 vector = ioapic->redirtbl[irq].fields.vector;
195 u8 trig_mode = ioapic->redirtbl[irq].fields.trig_mode;
196 u32 deliver_bitmask;
197 struct kvm_lapic *target;
198 struct kvm_vcpu *vcpu;
199 int vcpu_id;
200
201 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
202 "vector=%x trig_mode=%x\n",
203 dest, dest_mode, delivery_mode, vector, trig_mode);
204
205 deliver_bitmask = ioapic_get_delivery_bitmask(ioapic, dest, dest_mode);
206 if (!deliver_bitmask) {
207 ioapic_debug("no target on destination\n");
208 return;
209 }
210
211 switch (delivery_mode) {
212 case dest_LowestPrio:
213 target =
214 kvm_apic_round_robin(ioapic->kvm, vector, deliver_bitmask);
215 if (target != NULL)
216 ioapic_inj_irq(ioapic, target, vector,
217 trig_mode, delivery_mode);
218 else
219 ioapic_debug("null round robin: "
220 "mask=%x vector=%x delivery_mode=%x\n",
221 deliver_bitmask, vector, dest_LowestPrio);
222 break;
223 case dest_Fixed:
224 for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) {
225 if (!(deliver_bitmask & (1 << vcpu_id)))
226 continue;
227 deliver_bitmask &= ~(1 << vcpu_id);
228 vcpu = ioapic->kvm->vcpus[vcpu_id];
229 if (vcpu) {
230 target = vcpu->apic;
231 ioapic_inj_irq(ioapic, target, vector,
232 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
245 void 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
265 static 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
275 void 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
296 static 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
304 static 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
310 ioapic_debug("addr %lx\n", (unsigned long)addr);
311 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
341 static 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
347 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
348 (void*)addr, len, val);
349 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
372 int kvm_ioapic_init(struct kvm *kvm)
373 {
374 struct kvm_ioapic *ioapic;
375 int i;
376
377 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
378 if (!ioapic)
379 return -ENOMEM;
380 kvm->vioapic = ioapic;
381 for (i = 0; i < IOAPIC_NUM_PINS; i++)
382 ioapic->redirtbl[i].fields.mask = 1;
383 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
384 ioapic->dev.read = ioapic_mmio_read;
385 ioapic->dev.write = ioapic_mmio_write;
386 ioapic->dev.in_range = ioapic_in_range;
387 ioapic->dev.private = ioapic;
388 ioapic->kvm = kvm;
389 kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev);
390 return 0;
391 }
This page took 0.038381 seconds and 6 git commands to generate.