1 /*
2 * Copyright (C) 2001 MandrakeSoft S.A.
3 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
4 *
5 * MandrakeSoft S.A.
6 * 43, rue d'Aboukir
7 * 75002 Paris - France
8 * http://www.linux-mandrake.com/
9 * http://www.mandrakesoft.com/
10 *
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 * Yunhong Jiang <yunhong.jiang@intel.com>
26 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
27 * Based on Xen 3.1 code.
28 */
29
30 #include <linux/kvm_host.h>
31 #include <linux/kvm.h>
32 #include <linux/mm.h>
33 #include <linux/highmem.h>
34 #include <linux/smp.h>
35 #include <linux/hrtimer.h>
36 #include <linux/io.h>
37 #include <linux/slab.h>
38 #include <linux/export.h>
39 #include <linux/nospec.h>
40 #include <asm/processor.h>
41 #include <asm/page.h>
42 #include <asm/current.h>
43 #include <trace/events/kvm.h>
44
45 #include "ioapic.h"
46 #include "lapic.h"
47 #include "irq.h"
48
49 #if 0
50 #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
51 #else
52 #define ioapic_debug(fmt, arg...)
53 #endif
54 static int ioapic_service(struct kvm_ioapic *vioapic, int irq,
55 bool line_status);
56
ioapic_read_indirect(struct kvm_ioapic * ioapic,unsigned long addr,unsigned long length)57 static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
58 unsigned long addr,
59 unsigned long length)
60 {
61 unsigned long result = 0;
62
63 switch (ioapic->ioregsel) {
64 case IOAPIC_REG_VERSION:
65 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
66 | (IOAPIC_VERSION_ID & 0xff));
67 break;
68
69 case IOAPIC_REG_APIC_ID:
70 case IOAPIC_REG_ARB_ID:
71 result = ((ioapic->id & 0xf) << 24);
72 break;
73
74 default:
75 {
76 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
77 u64 redir_content = ~0ULL;
78
79 if (redir_index < IOAPIC_NUM_PINS) {
80 u32 index = array_index_nospec(
81 redir_index, IOAPIC_NUM_PINS);
82
83 redir_content = ioapic->redirtbl[index].bits;
84 }
85
86 result = (ioapic->ioregsel & 0x1) ?
87 (redir_content >> 32) & 0xffffffff :
88 redir_content & 0xffffffff;
89 break;
90 }
91 }
92
93 return result;
94 }
95
rtc_irq_eoi_tracking_reset(struct kvm_ioapic * ioapic)96 static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic)
97 {
98 ioapic->rtc_status.pending_eoi = 0;
99 bitmap_zero(ioapic->rtc_status.dest_map, KVM_MAX_VCPUS);
100 }
101
102 static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic);
103
rtc_status_pending_eoi_check_valid(struct kvm_ioapic * ioapic)104 static void rtc_status_pending_eoi_check_valid(struct kvm_ioapic *ioapic)
105 {
106 if (WARN_ON(ioapic->rtc_status.pending_eoi < 0))
107 kvm_rtc_eoi_tracking_restore_all(ioapic);
108 }
109
__rtc_irq_eoi_tracking_restore_one(struct kvm_vcpu * vcpu)110 static void __rtc_irq_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
111 {
112 bool new_val, old_val;
113 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
114 union kvm_ioapic_redirect_entry *e;
115
116 e = &ioapic->redirtbl[RTC_GSI];
117 if (!kvm_apic_match_dest(vcpu, NULL, 0, e->fields.dest_id,
118 e->fields.dest_mode))
119 return;
120
121 new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
122 old_val = test_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
123
124 if (new_val == old_val)
125 return;
126
127 if (new_val) {
128 __set_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
129 ioapic->rtc_status.pending_eoi++;
130 } else {
131 __clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
132 ioapic->rtc_status.pending_eoi--;
133 rtc_status_pending_eoi_check_valid(ioapic);
134 }
135 }
136
kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu * vcpu)137 void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
138 {
139 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
140
141 spin_lock(&ioapic->lock);
142 __rtc_irq_eoi_tracking_restore_one(vcpu);
143 spin_unlock(&ioapic->lock);
144 }
145
kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic * ioapic)146 static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
147 {
148 struct kvm_vcpu *vcpu;
149 int i;
150
151 if (RTC_GSI >= IOAPIC_NUM_PINS)
152 return;
153
154 rtc_irq_eoi_tracking_reset(ioapic);
155 kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
156 __rtc_irq_eoi_tracking_restore_one(vcpu);
157 }
158
rtc_irq_eoi(struct kvm_ioapic * ioapic,struct kvm_vcpu * vcpu)159 static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu)
160 {
161 if (test_and_clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map)) {
162 --ioapic->rtc_status.pending_eoi;
163 rtc_status_pending_eoi_check_valid(ioapic);
164 }
165 }
166
rtc_irq_check_coalesced(struct kvm_ioapic * ioapic)167 static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
168 {
169 if (ioapic->rtc_status.pending_eoi > 0)
170 return true; /* coalesced */
171
172 return false;
173 }
174
ioapic_set_irq(struct kvm_ioapic * ioapic,unsigned int irq,int irq_level,bool line_status)175 static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
176 int irq_level, bool line_status)
177 {
178 union kvm_ioapic_redirect_entry entry;
179 u32 mask = 1 << irq;
180 u32 old_irr;
181 int edge, ret;
182
183 entry = ioapic->redirtbl[irq];
184 edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
185
186 if (!irq_level) {
187 ioapic->irr &= ~mask;
188 ret = 1;
189 goto out;
190 }
191
192 /*
193 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
194 * this only happens if a previous edge has not been delivered due
195 * do masking. For level interrupts, the remote_irr field tells
196 * us if the interrupt is waiting for an EOI.
197 *
198 * RTC is special: it is edge-triggered, but userspace likes to know
199 * if it has been already ack-ed via EOI because coalesced RTC
200 * interrupts lead to time drift in Windows guests. So we track
201 * EOI manually for the RTC interrupt.
202 */
203 if (irq == RTC_GSI && line_status &&
204 rtc_irq_check_coalesced(ioapic)) {
205 ret = 0;
206 goto out;
207 }
208
209 old_irr = ioapic->irr;
210 ioapic->irr |= mask;
211 if (edge)
212 ioapic->irr_delivered &= ~mask;
213 if ((edge && old_irr == ioapic->irr) ||
214 (!edge && entry.fields.remote_irr)) {
215 ret = 0;
216 goto out;
217 }
218
219 ret = ioapic_service(ioapic, irq, line_status);
220
221 out:
222 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
223 return ret;
224 }
225
kvm_ioapic_inject_all(struct kvm_ioapic * ioapic,unsigned long irr)226 static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
227 {
228 u32 idx;
229
230 rtc_irq_eoi_tracking_reset(ioapic);
231 for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
232 ioapic_set_irq(ioapic, idx, 1, true);
233
234 kvm_rtc_eoi_tracking_restore_all(ioapic);
235 }
236
237
kvm_ioapic_scan_entry(struct kvm_vcpu * vcpu,u64 * eoi_exit_bitmap)238 void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
239 {
240 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
241 union kvm_ioapic_redirect_entry *e;
242 int index;
243
244 spin_lock(&ioapic->lock);
245 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
246 e = &ioapic->redirtbl[index];
247 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
248 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
249 index == RTC_GSI) {
250 if (kvm_apic_match_dest(vcpu, NULL, 0,
251 e->fields.dest_id, e->fields.dest_mode) ||
252 kvm_apic_pending_eoi(vcpu, e->fields.vector))
253 __set_bit(e->fields.vector,
254 (unsigned long *)eoi_exit_bitmap);
255 }
256 }
257 spin_unlock(&ioapic->lock);
258 }
259
kvm_vcpu_request_scan_ioapic(struct kvm * kvm)260 void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
261 {
262 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
263
264 if (!ioapic)
265 return;
266 kvm_make_scan_ioapic_request(kvm);
267 }
268
ioapic_write_indirect(struct kvm_ioapic * ioapic,u32 val)269 static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
270 {
271 unsigned index;
272 bool mask_before, mask_after;
273 int old_remote_irr, old_delivery_status;
274 union kvm_ioapic_redirect_entry *e;
275
276 switch (ioapic->ioregsel) {
277 case IOAPIC_REG_VERSION:
278 /* Writes are ignored. */
279 break;
280
281 case IOAPIC_REG_APIC_ID:
282 ioapic->id = (val >> 24) & 0xf;
283 break;
284
285 case IOAPIC_REG_ARB_ID:
286 break;
287
288 default:
289 index = (ioapic->ioregsel - 0x10) >> 1;
290
291 ioapic_debug("change redir index %x val %x\n", index, val);
292 if (index >= IOAPIC_NUM_PINS)
293 return;
294 index = array_index_nospec(index, IOAPIC_NUM_PINS);
295 e = &ioapic->redirtbl[index];
296 mask_before = e->fields.mask;
297 /* Preserve read-only fields */
298 old_remote_irr = e->fields.remote_irr;
299 old_delivery_status = e->fields.delivery_status;
300 if (ioapic->ioregsel & 1) {
301 e->bits &= 0xffffffff;
302 e->bits |= (u64) val << 32;
303 } else {
304 e->bits &= ~0xffffffffULL;
305 e->bits |= (u32) val;
306 }
307 e->fields.remote_irr = old_remote_irr;
308 e->fields.delivery_status = old_delivery_status;
309
310 /*
311 * Some OSes (Linux, Xen) assume that Remote IRR bit will
312 * be cleared by IOAPIC hardware when the entry is configured
313 * as edge-triggered. This behavior is used to simulate an
314 * explicit EOI on IOAPICs that don't have the EOI register.
315 */
316 if (e->fields.trig_mode == IOAPIC_EDGE_TRIG)
317 e->fields.remote_irr = 0;
318
319 mask_after = e->fields.mask;
320 if (mask_before != mask_after)
321 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
322 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
323 && ioapic->irr & (1 << index))
324 ioapic_service(ioapic, index, false);
325 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
326 break;
327 }
328 }
329
ioapic_service(struct kvm_ioapic * ioapic,int irq,bool line_status)330 static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
331 {
332 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
333 struct kvm_lapic_irq irqe;
334 int ret;
335
336 if (entry->fields.mask)
337 return -1;
338
339 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
340 "vector=%x trig_mode=%x\n",
341 entry->fields.dest_id, entry->fields.dest_mode,
342 entry->fields.delivery_mode, entry->fields.vector,
343 entry->fields.trig_mode);
344
345 irqe.dest_id = entry->fields.dest_id;
346 irqe.vector = entry->fields.vector;
347 irqe.dest_mode = entry->fields.dest_mode;
348 irqe.trig_mode = entry->fields.trig_mode;
349 irqe.delivery_mode = entry->fields.delivery_mode << 8;
350 irqe.level = 1;
351 irqe.shorthand = 0;
352 irqe.msi_redir_hint = false;
353
354 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
355 ioapic->irr_delivered |= 1 << irq;
356
357 if (irq == RTC_GSI && line_status) {
358 /*
359 * pending_eoi cannot ever become negative (see
360 * rtc_status_pending_eoi_check_valid) and the caller
361 * ensures that it is only called if it is >= zero, namely
362 * if rtc_irq_check_coalesced returns false).
363 */
364 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
365 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
366 ioapic->rtc_status.dest_map);
367 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
368 } else
369 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
370
371 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
372 entry->fields.remote_irr = 1;
373
374 return ret;
375 }
376
kvm_ioapic_set_irq(struct kvm_ioapic * ioapic,int irq,int irq_source_id,int level,bool line_status)377 int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
378 int level, bool line_status)
379 {
380 int ret, irq_level;
381
382 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
383
384 spin_lock(&ioapic->lock);
385 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
386 irq_source_id, level);
387 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
388
389 spin_unlock(&ioapic->lock);
390
391 return ret;
392 }
393
kvm_ioapic_clear_all(struct kvm_ioapic * ioapic,int irq_source_id)394 void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
395 {
396 int i;
397
398 spin_lock(&ioapic->lock);
399 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
400 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
401 spin_unlock(&ioapic->lock);
402 }
403
kvm_ioapic_eoi_inject_work(struct work_struct * work)404 static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
405 {
406 int i;
407 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
408 eoi_inject.work);
409 spin_lock(&ioapic->lock);
410 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
411 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
412
413 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
414 continue;
415
416 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
417 ioapic_service(ioapic, i, false);
418 }
419 spin_unlock(&ioapic->lock);
420 }
421
422 #define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
423
__kvm_ioapic_update_eoi(struct kvm_vcpu * vcpu,struct kvm_ioapic * ioapic,int vector,int trigger_mode)424 static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
425 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
426 {
427 int i;
428 struct kvm_lapic *apic = vcpu->arch.apic;
429
430 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
431 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
432
433 if (ent->fields.vector != vector)
434 continue;
435
436 if (i == RTC_GSI)
437 rtc_irq_eoi(ioapic, vcpu);
438 /*
439 * We are dropping lock while calling ack notifiers because ack
440 * notifier callbacks for assigned devices call into IOAPIC
441 * recursively. Since remote_irr is cleared only after call
442 * to notifiers if the same vector will be delivered while lock
443 * is dropped it will be put into irr and will be delivered
444 * after ack notifier returns.
445 */
446 spin_unlock(&ioapic->lock);
447 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
448 spin_lock(&ioapic->lock);
449
450 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
451 kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
452 continue;
453
454 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
455 ent->fields.remote_irr = 0;
456 if (!ent->fields.mask && (ioapic->irr & (1 << i))) {
457 ++ioapic->irq_eoi[i];
458 if (ioapic->irq_eoi[i] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
459 /*
460 * Real hardware does not deliver the interrupt
461 * immediately during eoi broadcast, and this
462 * lets a buggy guest make slow progress
463 * even if it does not correctly handle a
464 * level-triggered interrupt. Emulate this
465 * behavior if we detect an interrupt storm.
466 */
467 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
468 ioapic->irq_eoi[i] = 0;
469 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
470 } else {
471 ioapic_service(ioapic, i, false);
472 }
473 } else {
474 ioapic->irq_eoi[i] = 0;
475 }
476 }
477 }
478
kvm_ioapic_update_eoi(struct kvm_vcpu * vcpu,int vector,int trigger_mode)479 void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
480 {
481 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
482
483 spin_lock(&ioapic->lock);
484 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
485 spin_unlock(&ioapic->lock);
486 }
487
to_ioapic(struct kvm_io_device * dev)488 static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
489 {
490 return container_of(dev, struct kvm_ioapic, dev);
491 }
492
ioapic_in_range(struct kvm_ioapic * ioapic,gpa_t addr)493 static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
494 {
495 return ((addr >= ioapic->base_address &&
496 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
497 }
498
ioapic_mmio_read(struct kvm_vcpu * vcpu,struct kvm_io_device * this,gpa_t addr,int len,void * val)499 static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
500 gpa_t addr, int len, void *val)
501 {
502 struct kvm_ioapic *ioapic = to_ioapic(this);
503 u32 result;
504 if (!ioapic_in_range(ioapic, addr))
505 return -EOPNOTSUPP;
506
507 ioapic_debug("addr %lx\n", (unsigned long)addr);
508 ASSERT(!(addr & 0xf)); /* check alignment */
509
510 addr &= 0xff;
511 spin_lock(&ioapic->lock);
512 switch (addr) {
513 case IOAPIC_REG_SELECT:
514 result = ioapic->ioregsel;
515 break;
516
517 case IOAPIC_REG_WINDOW:
518 result = ioapic_read_indirect(ioapic, addr, len);
519 break;
520
521 default:
522 result = 0;
523 break;
524 }
525 spin_unlock(&ioapic->lock);
526
527 switch (len) {
528 case 8:
529 *(u64 *) val = result;
530 break;
531 case 1:
532 case 2:
533 case 4:
534 memcpy(val, (char *)&result, len);
535 break;
536 default:
537 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
538 }
539 return 0;
540 }
541
ioapic_mmio_write(struct kvm_vcpu * vcpu,struct kvm_io_device * this,gpa_t addr,int len,const void * val)542 static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
543 gpa_t addr, int len, const void *val)
544 {
545 struct kvm_ioapic *ioapic = to_ioapic(this);
546 u32 data;
547 if (!ioapic_in_range(ioapic, addr))
548 return -EOPNOTSUPP;
549
550 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
551 (void*)addr, len, val);
552 ASSERT(!(addr & 0xf)); /* check alignment */
553
554 switch (len) {
555 case 8:
556 case 4:
557 data = *(u32 *) val;
558 break;
559 case 2:
560 data = *(u16 *) val;
561 break;
562 case 1:
563 data = *(u8 *) val;
564 break;
565 default:
566 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
567 return 0;
568 }
569
570 addr &= 0xff;
571 spin_lock(&ioapic->lock);
572 switch (addr) {
573 case IOAPIC_REG_SELECT:
574 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
575 break;
576
577 case IOAPIC_REG_WINDOW:
578 ioapic_write_indirect(ioapic, data);
579 break;
580
581 default:
582 break;
583 }
584 spin_unlock(&ioapic->lock);
585 return 0;
586 }
587
kvm_ioapic_reset(struct kvm_ioapic * ioapic)588 static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
589 {
590 int i;
591
592 cancel_delayed_work_sync(&ioapic->eoi_inject);
593 for (i = 0; i < IOAPIC_NUM_PINS; i++)
594 ioapic->redirtbl[i].fields.mask = 1;
595 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
596 ioapic->ioregsel = 0;
597 ioapic->irr = 0;
598 ioapic->irr_delivered = 0;
599 ioapic->id = 0;
600 memset(ioapic->irq_eoi, 0x00, sizeof(ioapic->irq_eoi));
601 rtc_irq_eoi_tracking_reset(ioapic);
602 }
603
604 static const struct kvm_io_device_ops ioapic_mmio_ops = {
605 .read = ioapic_mmio_read,
606 .write = ioapic_mmio_write,
607 };
608
kvm_ioapic_init(struct kvm * kvm)609 int kvm_ioapic_init(struct kvm *kvm)
610 {
611 struct kvm_ioapic *ioapic;
612 int ret;
613
614 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
615 if (!ioapic)
616 return -ENOMEM;
617 spin_lock_init(&ioapic->lock);
618 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
619 kvm->arch.vioapic = ioapic;
620 kvm_ioapic_reset(ioapic);
621 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
622 ioapic->kvm = kvm;
623 mutex_lock(&kvm->slots_lock);
624 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
625 IOAPIC_MEM_LENGTH, &ioapic->dev);
626 mutex_unlock(&kvm->slots_lock);
627 if (ret < 0) {
628 kvm->arch.vioapic = NULL;
629 kfree(ioapic);
630 return ret;
631 }
632
633 kvm_vcpu_request_scan_ioapic(kvm);
634 return ret;
635 }
636
kvm_ioapic_destroy(struct kvm * kvm)637 void kvm_ioapic_destroy(struct kvm *kvm)
638 {
639 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
640
641 cancel_delayed_work_sync(&ioapic->eoi_inject);
642 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
643 kvm->arch.vioapic = NULL;
644 kfree(ioapic);
645 }
646
kvm_get_ioapic(struct kvm * kvm,struct kvm_ioapic_state * state)647 int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
648 {
649 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
650 if (!ioapic)
651 return -EINVAL;
652
653 spin_lock(&ioapic->lock);
654 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
655 state->irr &= ~ioapic->irr_delivered;
656 spin_unlock(&ioapic->lock);
657 return 0;
658 }
659
kvm_set_ioapic(struct kvm * kvm,struct kvm_ioapic_state * state)660 int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
661 {
662 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
663 if (!ioapic)
664 return -EINVAL;
665
666 spin_lock(&ioapic->lock);
667 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
668 ioapic->irr = 0;
669 ioapic->irr_delivered = 0;
670 kvm_vcpu_request_scan_ioapic(kvm);
671 kvm_ioapic_inject_all(ioapic, state->irr);
672 spin_unlock(&ioapic->lock);
673 return 0;
674 }
675