Merge patch series "Fix RISC-V toolchain extension support detection"
[linux-block.git] / arch / x86 / kvm / ioapic.c
CommitLineData
1fd4f2a5
ED
1/*
2 * Copyright (C) 2001 MandrakeSoft S.A.
221d059d 3 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
1fd4f2a5
ED
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
edf88417 30#include <linux/kvm_host.h>
1fd4f2a5
ED
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>
5a0e3ad6 37#include <linux/slab.h>
c7c9c56c 38#include <linux/export.h>
8c86405f 39#include <linux/nospec.h>
1fd4f2a5 40#include <asm/processor.h>
1fd4f2a5
ED
41#include <asm/page.h>
42#include <asm/current.h>
1000ff8d 43#include <trace/events/kvm.h>
82470196
ZX
44
45#include "ioapic.h"
46#include "lapic.h"
f5244726 47#include "irq.h"
82470196 48
0b10a1c8 49static int ioapic_service(struct kvm_ioapic *vioapic, int irq,
aa2fbe6d 50 bool line_status);
1fd4f2a5 51
f458d039
SS
52static void kvm_ioapic_update_eoi_one(struct kvm_vcpu *vcpu,
53 struct kvm_ioapic *ioapic,
54 int trigger_mode,
55 int pin);
56
019024e5 57static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic)
1fd4f2a5
ED
58{
59 unsigned long result = 0;
60
61 switch (ioapic->ioregsel) {
62 case IOAPIC_REG_VERSION:
63 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
64 | (IOAPIC_VERSION_ID & 0xff));
65 break;
66
67 case IOAPIC_REG_APIC_ID:
68 case IOAPIC_REG_ARB_ID:
69 result = ((ioapic->id & 0xf) << 24);
70 break;
71
72 default:
73 {
74 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
8c86405f 75 u64 redir_content = ~0ULL;
1fd4f2a5 76
8c86405f
MP
77 if (redir_index < IOAPIC_NUM_PINS) {
78 u32 index = array_index_nospec(
79 redir_index, IOAPIC_NUM_PINS);
80
81 redir_content = ioapic->redirtbl[index].bits;
82 }
1fd4f2a5 83
1fd4f2a5
ED
84 result = (ioapic->ioregsel & 0x1) ?
85 (redir_content >> 32) & 0xffffffff :
86 redir_content & 0xffffffff;
87 break;
88 }
89 }
90
91 return result;
92}
93
10606919
YZ
94static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic)
95{
96 ioapic->rtc_status.pending_eoi = 0;
a1c42dde 97 bitmap_zero(ioapic->rtc_status.dest_map.map, KVM_MAX_VCPU_IDS);
10606919
YZ
98}
99
4009b249
PB
100static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic);
101
102static void rtc_status_pending_eoi_check_valid(struct kvm_ioapic *ioapic)
103{
104 if (WARN_ON(ioapic->rtc_status.pending_eoi < 0))
105 kvm_rtc_eoi_tracking_restore_all(ioapic);
106}
107
10606919
YZ
108static void __rtc_irq_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
109{
110 bool new_val, old_val;
111 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
b0eaf450 112 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
10606919
YZ
113 union kvm_ioapic_redirect_entry *e;
114
115 e = &ioapic->redirtbl[RTC_GSI];
5c69d5c1
PX
116 if (!kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
117 e->fields.dest_id,
118 kvm_lapic_irq_dest_mode(!!e->fields.dest_mode)))
10606919
YZ
119 return;
120
121 new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
b0eaf450 122 old_val = test_bit(vcpu->vcpu_id, dest_map->map);
10606919
YZ
123
124 if (new_val == old_val)
125 return;
126
127 if (new_val) {
b0eaf450
PB
128 __set_bit(vcpu->vcpu_id, dest_map->map);
129 dest_map->vectors[vcpu->vcpu_id] = e->fields.vector;
10606919
YZ
130 ioapic->rtc_status.pending_eoi++;
131 } else {
b0eaf450 132 __clear_bit(vcpu->vcpu_id, dest_map->map);
10606919 133 ioapic->rtc_status.pending_eoi--;
4009b249 134 rtc_status_pending_eoi_check_valid(ioapic);
10606919 135 }
10606919
YZ
136}
137
138void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
139{
140 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
141
142 spin_lock(&ioapic->lock);
143 __rtc_irq_eoi_tracking_restore_one(vcpu);
144 spin_unlock(&ioapic->lock);
145}
146
147static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
148{
149 struct kvm_vcpu *vcpu;
46808a4c 150 unsigned long i;
10606919
YZ
151
152 if (RTC_GSI >= IOAPIC_NUM_PINS)
153 return;
154
155 rtc_irq_eoi_tracking_reset(ioapic);
156 kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
157 __rtc_irq_eoi_tracking_restore_one(vcpu);
158}
159
1ec2405c
SS
160static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu,
161 int vector)
2c2bf011 162{
1ec2405c
SS
163 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
164
165 /* RTC special handling */
166 if (test_bit(vcpu->vcpu_id, dest_map->map) &&
167 (vector == dest_map->vectors[vcpu->vcpu_id]) &&
168 (test_and_clear_bit(vcpu->vcpu_id,
169 ioapic->rtc_status.dest_map.map))) {
2c2bf011 170 --ioapic->rtc_status.pending_eoi;
4009b249
PB
171 rtc_status_pending_eoi_check_valid(ioapic);
172 }
2c2bf011
YZ
173}
174
175static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
176{
177 if (ioapic->rtc_status.pending_eoi > 0)
178 return true; /* coalesced */
179
180 return false;
181}
182
f458d039
SS
183static void ioapic_lazy_update_eoi(struct kvm_ioapic *ioapic, int irq)
184{
46808a4c 185 unsigned long i;
f458d039
SS
186 struct kvm_vcpu *vcpu;
187 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
188
189 kvm_for_each_vcpu(i, vcpu, ioapic->kvm) {
190 if (!kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
191 entry->fields.dest_id,
192 entry->fields.dest_mode) ||
193 kvm_apic_pending_eoi(vcpu, entry->fields.vector))
194 continue;
195
196 /*
197 * If no longer has pending EOI in LAPICs, update
77377064 198 * EOI for this vector.
f458d039
SS
199 */
200 rtc_irq_eoi(ioapic, vcpu, entry->fields.vector);
f458d039
SS
201 break;
202 }
203}
204
44847dea
PB
205static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
206 int irq_level, bool line_status)
207{
208 union kvm_ioapic_redirect_entry entry;
209 u32 mask = 1 << irq;
210 u32 old_irr;
211 int edge, ret;
212
213 entry = ioapic->redirtbl[irq];
214 edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
215
216 if (!irq_level) {
217 ioapic->irr &= ~mask;
218 ret = 1;
219 goto out;
220 }
221
f458d039 222 /*
8be8f932
PB
223 * AMD SVM AVIC accelerate EOI write iff the interrupt is edge
224 * triggered, in which case the in-kernel IOAPIC will not be able
225 * to receive the EOI. In this case, we do a lazy update of the
226 * pending EOI when trying to set IOAPIC irq.
f458d039 227 */
8be8f932 228 if (edge && kvm_apicv_activated(ioapic->kvm))
f458d039
SS
229 ioapic_lazy_update_eoi(ioapic, irq);
230
44847dea
PB
231 /*
232 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
233 * this only happens if a previous edge has not been delivered due
00116795 234 * to masking. For level interrupts, the remote_irr field tells
44847dea
PB
235 * us if the interrupt is waiting for an EOI.
236 *
237 * RTC is special: it is edge-triggered, but userspace likes to know
238 * if it has been already ack-ed via EOI because coalesced RTC
239 * interrupts lead to time drift in Windows guests. So we track
240 * EOI manually for the RTC interrupt.
241 */
242 if (irq == RTC_GSI && line_status &&
243 rtc_irq_check_coalesced(ioapic)) {
244 ret = 0;
245 goto out;
246 }
247
248 old_irr = ioapic->irr;
249 ioapic->irr |= mask;
7d225368 250 if (edge) {
5bda6eed 251 ioapic->irr_delivered &= ~mask;
7d225368
NL
252 if (old_irr == ioapic->irr) {
253 ret = 0;
254 goto out;
255 }
44847dea
PB
256 }
257
258 ret = ioapic_service(ioapic, irq, line_status);
259
260out:
261 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
262 return ret;
263}
264
673f7b42
PB
265static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
266{
267 u32 idx;
268
269 rtc_irq_eoi_tracking_reset(ioapic);
270 for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
271 ioapic_set_irq(ioapic, idx, 1, true);
272
273 kvm_rtc_eoi_tracking_restore_all(ioapic);
274}
275
276
6308630b 277void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, ulong *ioapic_handled_vectors)
c7c9c56c
YZ
278{
279 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
4d99ba89 280 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
c7c9c56c 281 union kvm_ioapic_redirect_entry *e;
c7c9c56c
YZ
282 int index;
283
284 spin_lock(&ioapic->lock);
4d99ba89
JR
285
286 /* Make sure we see any missing RTC EOI */
287 if (test_bit(vcpu->vcpu_id, dest_map->map))
288 __set_bit(dest_map->vectors[vcpu->vcpu_id],
289 ioapic_handled_vectors);
290
c7c9c56c
YZ
291 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
292 e = &ioapic->redirtbl[index];
0f6c0a74
PB
293 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
294 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
295 index == RTC_GSI) {
5c69d5c1
PX
296 u16 dm = kvm_lapic_irq_dest_mode(!!e->fields.dest_mode);
297
298 if (kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
299 e->fields.dest_id, dm) ||
0fc5a36d 300 kvm_apic_pending_eoi(vcpu, e->fields.vector))
cf9e65b7 301 __set_bit(e->fields.vector,
6308630b 302 ioapic_handled_vectors);
c7c9c56c
YZ
303 }
304 }
305 spin_unlock(&ioapic->lock);
306}
c7c9c56c 307
993225ad 308void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm)
c7c9c56c 309{
0bceb15a 310 if (!ioapic_in_kernel(kvm))
c7c9c56c 311 return;
3d81bc7e 312 kvm_make_scan_ioapic_request(kvm);
c7c9c56c
YZ
313}
314
1fd4f2a5
ED
315static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
316{
317 unsigned index;
75858a84 318 bool mask_before, mask_after;
70f93dae 319 union kvm_ioapic_redirect_entry *e;
7ee30bc1 320 int old_remote_irr, old_delivery_status, old_dest_id, old_dest_mode;
2f9b68f5 321 DECLARE_BITMAP(vcpu_bitmap, KVM_MAX_VCPUS);
1fd4f2a5
ED
322
323 switch (ioapic->ioregsel) {
324 case IOAPIC_REG_VERSION:
325 /* Writes are ignored. */
326 break;
327
328 case IOAPIC_REG_APIC_ID:
329 ioapic->id = (val >> 24) & 0xf;
330 break;
331
332 case IOAPIC_REG_ARB_ID:
333 break;
334
335 default:
336 index = (ioapic->ioregsel - 0x10) >> 1;
337
1fd4f2a5
ED
338 if (index >= IOAPIC_NUM_PINS)
339 return;
67056455 340 index = array_index_nospec(index, IOAPIC_NUM_PINS);
70f93dae
GN
341 e = &ioapic->redirtbl[index];
342 mask_before = e->fields.mask;
b200dded
NL
343 /* Preserve read-only fields */
344 old_remote_irr = e->fields.remote_irr;
345 old_delivery_status = e->fields.delivery_status;
7ee30bc1
NNL
346 old_dest_id = e->fields.dest_id;
347 old_dest_mode = e->fields.dest_mode;
1fd4f2a5 348 if (ioapic->ioregsel & 1) {
70f93dae
GN
349 e->bits &= 0xffffffff;
350 e->bits |= (u64) val << 32;
1fd4f2a5 351 } else {
70f93dae
GN
352 e->bits &= ~0xffffffffULL;
353 e->bits |= (u32) val;
1fd4f2a5 354 }
b200dded
NL
355 e->fields.remote_irr = old_remote_irr;
356 e->fields.delivery_status = old_delivery_status;
a8bfec29
NL
357
358 /*
359 * Some OSes (Linux, Xen) assume that Remote IRR bit will
360 * be cleared by IOAPIC hardware when the entry is configured
361 * as edge-triggered. This behavior is used to simulate an
362 * explicit EOI on IOAPICs that don't have the EOI register.
363 */
364 if (e->fields.trig_mode == IOAPIC_EDGE_TRIG)
365 e->fields.remote_irr = 0;
366
70f93dae 367 mask_after = e->fields.mask;
75858a84 368 if (mask_before != mask_after)
4a994358 369 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
70f93dae 370 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
b4a2f5e7 371 && ioapic->irr & (1 << index))
aa2fbe6d 372 ioapic_service(ioapic, index, false);
7ee30bc1
NNL
373 if (e->fields.delivery_mode == APIC_DM_FIXED) {
374 struct kvm_lapic_irq irq;
375
7ee30bc1
NNL
376 irq.vector = e->fields.vector;
377 irq.delivery_mode = e->fields.delivery_mode << 8;
c96001c5
PX
378 irq.dest_mode =
379 kvm_lapic_irq_dest_mode(!!e->fields.dest_mode);
0c22056f
NNL
380 irq.level = false;
381 irq.trig_mode = e->fields.trig_mode;
382 irq.shorthand = APIC_DEST_NOSHORT;
383 irq.dest_id = e->fields.dest_id;
384 irq.msi_redir_hint = false;
2f9b68f5 385 bitmap_zero(vcpu_bitmap, KVM_MAX_VCPUS);
7ee30bc1 386 kvm_bitmap_or_dest_vcpus(ioapic->kvm, &irq,
2f9b68f5 387 vcpu_bitmap);
7ee30bc1
NNL
388 if (old_dest_mode != e->fields.dest_mode ||
389 old_dest_id != e->fields.dest_id) {
390 /*
391 * Update vcpu_bitmap with vcpus specified in
392 * the previous request as well. This is done to
393 * keep ioapic_handled_vectors synchronized.
394 */
395 irq.dest_id = old_dest_id;
c96001c5
PX
396 irq.dest_mode =
397 kvm_lapic_irq_dest_mode(
398 !!e->fields.dest_mode);
7ee30bc1 399 kvm_bitmap_or_dest_vcpus(ioapic->kvm, &irq,
2f9b68f5 400 vcpu_bitmap);
7ee30bc1
NNL
401 }
402 kvm_make_scan_ioapic_request_mask(ioapic->kvm,
2f9b68f5 403 vcpu_bitmap);
7ee30bc1
NNL
404 } else {
405 kvm_make_scan_ioapic_request(ioapic->kvm);
406 }
1fd4f2a5
ED
407 break;
408 }
409}
410
0b10a1c8 411static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
a53c17d2 412{
58c2dde1
GN
413 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
414 struct kvm_lapic_irq irqe;
2c2bf011 415 int ret;
a53c17d2 416
da3fe7bd
NL
417 if (entry->fields.mask ||
418 (entry->fields.trig_mode == IOAPIC_LEVEL_TRIG &&
419 entry->fields.remote_irr))
0b10a1c8
PB
420 return -1;
421
58c2dde1
GN
422 irqe.dest_id = entry->fields.dest_id;
423 irqe.vector = entry->fields.vector;
c96001c5 424 irqe.dest_mode = kvm_lapic_irq_dest_mode(!!entry->fields.dest_mode);
58c2dde1
GN
425 irqe.trig_mode = entry->fields.trig_mode;
426 irqe.delivery_mode = entry->fields.delivery_mode << 8;
427 irqe.level = 1;
150a84fe 428 irqe.shorthand = APIC_DEST_NOSHORT;
93bbf0b8 429 irqe.msi_redir_hint = false;
a53c17d2 430
0bc830b0 431 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
5bda6eed 432 ioapic->irr_delivered |= 1 << irq;
0bc830b0 433
2c2bf011 434 if (irq == RTC_GSI && line_status) {
4009b249
PB
435 /*
436 * pending_eoi cannot ever become negative (see
437 * rtc_status_pending_eoi_check_valid) and the caller
438 * ensures that it is only called if it is >= zero, namely
439 * if rtc_irq_check_coalesced returns false).
440 */
2c2bf011
YZ
441 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
442 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
9e4aabe2 443 &ioapic->rtc_status.dest_map);
5678de3f 444 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
2c2bf011
YZ
445 } else
446 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
447
0b10a1c8
PB
448 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
449 entry->fields.remote_irr = 1;
450
2c2bf011 451 return ret;
a53c17d2
GN
452}
453
1a577b72 454int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
aa2fbe6d 455 int level, bool line_status)
1fd4f2a5 456{
28a6fdab
MT
457 int ret, irq_level;
458
459 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
1fd4f2a5 460
46a47b1e 461 spin_lock(&ioapic->lock);
28a6fdab
MT
462 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
463 irq_source_id, level);
44847dea 464 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
2c2bf011 465
46a47b1e 466 spin_unlock(&ioapic->lock);
eba0226b 467
4925663a 468 return ret;
1fd4f2a5
ED
469}
470
1a577b72
MT
471void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
472{
473 int i;
474
475 spin_lock(&ioapic->lock);
476 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
477 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
478 spin_unlock(&ioapic->lock);
479}
480
184564ef
ZH
481static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
482{
483 int i;
484 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
485 eoi_inject.work);
486 spin_lock(&ioapic->lock);
487 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
488 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
489
490 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
491 continue;
492
493 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
494 ioapic_service(ioapic, i, false);
495 }
496 spin_unlock(&ioapic->lock);
497}
498
499#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
1ec2405c
SS
500static void kvm_ioapic_update_eoi_one(struct kvm_vcpu *vcpu,
501 struct kvm_ioapic *ioapic,
502 int trigger_mode,
503 int pin)
1fd4f2a5 504{
c806a6ad 505 struct kvm_lapic *apic = vcpu->arch.apic;
1ec2405c 506 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[pin];
eba0226b 507
1ec2405c
SS
508 /*
509 * We are dropping lock while calling ack notifiers because ack
510 * notifier callbacks for assigned devices call into IOAPIC
511 * recursively. Since remote_irr is cleared only after call
512 * to notifiers if the same vector will be delivered while lock
513 * is dropped it will be put into irr and will be delivered
514 * after ack notifier returns.
515 */
516 spin_unlock(&ioapic->lock);
517 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin);
518 spin_lock(&ioapic->lock);
eba0226b 519
1ec2405c
SS
520 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
521 kvm_lapic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
522 return;
f5244726 523
1ec2405c
SS
524 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
525 ent->fields.remote_irr = 0;
526 if (!ent->fields.mask && (ioapic->irr & (1 << pin))) {
527 ++ioapic->irq_eoi[pin];
528 if (ioapic->irq_eoi[pin] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
529 /*
530 * Real hardware does not deliver the interrupt
531 * immediately during eoi broadcast, and this
532 * lets a buggy guest make slow progress
533 * even if it does not correctly handle a
534 * level-triggered interrupt. Emulate this
535 * behavior if we detect an interrupt storm.
536 */
537 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
538 ioapic->irq_eoi[pin] = 0;
539 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
184564ef 540 } else {
1ec2405c 541 ioapic_service(ioapic, pin, false);
184564ef 542 }
1ec2405c
SS
543 } else {
544 ioapic->irq_eoi[pin] = 0;
f5244726 545 }
1fd4f2a5
ED
546}
547
1fcc7890 548void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
4fa6b9c5 549{
1ec2405c 550 int i;
1fcc7890 551 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
4fa6b9c5 552
46a47b1e 553 spin_lock(&ioapic->lock);
1ec2405c
SS
554 rtc_irq_eoi(ioapic, vcpu, vector);
555 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
556 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
557
558 if (ent->fields.vector != vector)
559 continue;
560 kvm_ioapic_update_eoi_one(vcpu, ioapic, trigger_mode, i);
561 }
46a47b1e 562 spin_unlock(&ioapic->lock);
4fa6b9c5
AK
563}
564
d76685c4
GH
565static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
566{
567 return container_of(dev, struct kvm_ioapic, dev);
568}
569
bda9020e 570static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
1fd4f2a5 571{
1fd4f2a5
ED
572 return ((addr >= ioapic->base_address &&
573 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
574}
575
e32edf4f
NN
576static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
577 gpa_t addr, int len, void *val)
1fd4f2a5 578{
d76685c4 579 struct kvm_ioapic *ioapic = to_ioapic(this);
1fd4f2a5 580 u32 result;
bda9020e
MT
581 if (!ioapic_in_range(ioapic, addr))
582 return -EOPNOTSUPP;
1fd4f2a5 583
1fd4f2a5
ED
584 ASSERT(!(addr & 0xf)); /* check alignment */
585
586 addr &= 0xff;
46a47b1e 587 spin_lock(&ioapic->lock);
1fd4f2a5
ED
588 switch (addr) {
589 case IOAPIC_REG_SELECT:
590 result = ioapic->ioregsel;
591 break;
592
593 case IOAPIC_REG_WINDOW:
019024e5 594 result = ioapic_read_indirect(ioapic);
1fd4f2a5
ED
595 break;
596
597 default:
598 result = 0;
599 break;
600 }
46a47b1e 601 spin_unlock(&ioapic->lock);
eba0226b 602
1fd4f2a5
ED
603 switch (len) {
604 case 8:
605 *(u64 *) val = result;
606 break;
607 case 1:
608 case 2:
609 case 4:
610 memcpy(val, (char *)&result, len);
611 break;
612 default:
613 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
614 }
bda9020e 615 return 0;
1fd4f2a5
ED
616}
617
e32edf4f
NN
618static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
619 gpa_t addr, int len, const void *val)
1fd4f2a5 620{
d76685c4 621 struct kvm_ioapic *ioapic = to_ioapic(this);
1fd4f2a5 622 u32 data;
bda9020e
MT
623 if (!ioapic_in_range(ioapic, addr))
624 return -EOPNOTSUPP;
1fd4f2a5 625
1fd4f2a5 626 ASSERT(!(addr & 0xf)); /* check alignment */
60eead79 627
d77fe635
JS
628 switch (len) {
629 case 8:
630 case 4:
1fd4f2a5 631 data = *(u32 *) val;
d77fe635
JS
632 break;
633 case 2:
634 data = *(u16 *) val;
635 break;
636 case 1:
637 data = *(u8 *) val;
638 break;
639 default:
1fd4f2a5 640 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
eba0226b 641 return 0;
1fd4f2a5
ED
642 }
643
644 addr &= 0xff;
46a47b1e 645 spin_lock(&ioapic->lock);
1fd4f2a5
ED
646 switch (addr) {
647 case IOAPIC_REG_SELECT:
d77fe635 648 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
1fd4f2a5
ED
649 break;
650
651 case IOAPIC_REG_WINDOW:
652 ioapic_write_indirect(ioapic, data);
653 break;
654
655 default:
656 break;
657 }
46a47b1e 658 spin_unlock(&ioapic->lock);
bda9020e 659 return 0;
1fd4f2a5
ED
660}
661
7940876e 662static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
8c392696
ED
663{
664 int i;
665
184564ef 666 cancel_delayed_work_sync(&ioapic->eoi_inject);
8c392696
ED
667 for (i = 0; i < IOAPIC_NUM_PINS; i++)
668 ioapic->redirtbl[i].fields.mask = 1;
669 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
670 ioapic->ioregsel = 0;
671 ioapic->irr = 0;
5bda6eed 672 ioapic->irr_delivered = 0;
8c392696 673 ioapic->id = 0;
8678654e 674 memset(ioapic->irq_eoi, 0x00, sizeof(ioapic->irq_eoi));
10606919 675 rtc_irq_eoi_tracking_reset(ioapic);
8c392696
ED
676}
677
d76685c4
GH
678static const struct kvm_io_device_ops ioapic_mmio_ops = {
679 .read = ioapic_mmio_read,
680 .write = ioapic_mmio_write,
d76685c4
GH
681};
682
1fd4f2a5
ED
683int kvm_ioapic_init(struct kvm *kvm)
684{
685 struct kvm_ioapic *ioapic;
090b7aff 686 int ret;
1fd4f2a5 687
254272ce 688 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL_ACCOUNT);
1fd4f2a5
ED
689 if (!ioapic)
690 return -ENOMEM;
46a47b1e 691 spin_lock_init(&ioapic->lock);
184564ef 692 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
d7deeeb0 693 kvm->arch.vioapic = ioapic;
8c392696 694 kvm_ioapic_reset(ioapic);
d76685c4 695 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
1fd4f2a5 696 ioapic->kvm = kvm;
79fac95e 697 mutex_lock(&kvm->slots_lock);
743eeb0b
SL
698 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
699 IOAPIC_MEM_LENGTH, &ioapic->dev);
79fac95e 700 mutex_unlock(&kvm->slots_lock);
1ae77bad
WY
701 if (ret < 0) {
702 kvm->arch.vioapic = NULL;
090b7aff 703 kfree(ioapic);
1ae77bad 704 }
090b7aff
GH
705
706 return ret;
1fd4f2a5 707}
75858a84 708
72bb2fcd
WY
709void kvm_ioapic_destroy(struct kvm *kvm)
710{
711 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
712
950712eb
PX
713 if (!ioapic)
714 return;
715
184564ef 716 cancel_delayed_work_sync(&ioapic->eoi_inject);
49f520b9 717 mutex_lock(&kvm->slots_lock);
d90e3a35 718 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
49f520b9 719 mutex_unlock(&kvm->slots_lock);
d90e3a35
JL
720 kvm->arch.vioapic = NULL;
721 kfree(ioapic);
72bb2fcd
WY
722}
723
33392b49 724void kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
eba0226b 725{
0191e92d 726 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
eba0226b 727
46a47b1e 728 spin_lock(&ioapic->lock);
eba0226b 729 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
5bda6eed 730 state->irr &= ~ioapic->irr_delivered;
46a47b1e 731 spin_unlock(&ioapic->lock);
eba0226b
GN
732}
733
33392b49 734void kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
eba0226b 735{
0191e92d 736 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
eba0226b 737
46a47b1e 738 spin_lock(&ioapic->lock);
eba0226b 739 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
673f7b42 740 ioapic->irr = 0;
5bda6eed 741 ioapic->irr_delivered = 0;
ca8ab3f8 742 kvm_make_scan_ioapic_request(kvm);
673f7b42 743 kvm_ioapic_inject_all(ioapic, state->irr);
46a47b1e 744 spin_unlock(&ioapic->lock);
eba0226b 745}