blob: 46d4449772bc714daa658ea6424fb45659095c70 [file] [log] [blame]
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03001/*
2 * Copyright (C) 2001 MandrakeSoft S.A.
Avi Kivity221d0592010-05-23 18:37:00 +03003 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03004 *
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
Avi Kivityedf88412007-12-16 11:02:48 +020030#include <linux/kvm_host.h>
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030031#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Yang Zhangc7c9c562013-01-25 10:18:51 +080038#include <linux/export.h>
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030039#include <asm/processor.h>
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030040#include <asm/page.h>
41#include <asm/current.h>
Gleb Natapov1000ff82009-07-07 16:00:57 +030042#include <trace/events/kvm.h>
Zhang Xiantao82470192007-12-17 13:59:56 +080043
44#include "ioapic.h"
45#include "lapic.h"
Marcelo Tosattif5244722008-07-26 17:01:00 -030046#include "irq.h"
Zhang Xiantao82470192007-12-17 13:59:56 +080047
Laurent Viviere25e3ed2007-10-12 11:01:59 +020048#if 0
49#define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
50#else
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030051#define ioapic_debug(fmt, arg...)
Laurent Viviere25e3ed2007-10-12 11:01:59 +020052#endif
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +010053static int ioapic_service(struct kvm_ioapic *vioapic, int irq,
Yang Zhangaa2fbe62013-04-11 19:21:40 +080054 bool line_status);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030055
56static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
57 unsigned long addr,
58 unsigned long length)
59{
60 unsigned long result = 0;
61
62 switch (ioapic->ioregsel) {
63 case IOAPIC_REG_VERSION:
64 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
65 | (IOAPIC_VERSION_ID & 0xff));
66 break;
67
68 case IOAPIC_REG_APIC_ID:
69 case IOAPIC_REG_ARB_ID:
70 result = ((ioapic->id & 0xf) << 24);
71 break;
72
73 default:
74 {
75 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
76 u64 redir_content;
77
Andy Honiga2c118b2013-02-20 14:49:16 -080078 if (redir_index < IOAPIC_NUM_PINS)
79 redir_content =
80 ioapic->redirtbl[redir_index].bits;
81 else
82 redir_content = ~0ULL;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030083
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030084 result = (ioapic->ioregsel & 0x1) ?
85 (redir_content >> 32) & 0xffffffff :
86 redir_content & 0xffffffff;
87 break;
88 }
89 }
90
91 return result;
92}
93
Yang Zhang10606912013-04-11 19:21:38 +080094static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic)
95{
96 ioapic->rtc_status.pending_eoi = 0;
97 bitmap_zero(ioapic->rtc_status.dest_map, KVM_MAX_VCPUS);
98}
99
Paolo Bonzini4009b242014-03-28 20:41:51 +0100100static 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
Yang Zhang10606912013-04-11 19:21:38 +0800108static 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;
112 union kvm_ioapic_redirect_entry *e;
113
114 e = &ioapic->redirtbl[RTC_GSI];
115 if (!kvm_apic_match_dest(vcpu, NULL, 0, e->fields.dest_id,
116 e->fields.dest_mode))
117 return;
118
119 new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
120 old_val = test_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
121
122 if (new_val == old_val)
123 return;
124
125 if (new_val) {
126 __set_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
127 ioapic->rtc_status.pending_eoi++;
128 } else {
129 __clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
130 ioapic->rtc_status.pending_eoi--;
Paolo Bonzini4009b242014-03-28 20:41:51 +0100131 rtc_status_pending_eoi_check_valid(ioapic);
Yang Zhang10606912013-04-11 19:21:38 +0800132 }
Yang Zhang10606912013-04-11 19:21:38 +0800133}
134
135void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
136{
137 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
138
139 spin_lock(&ioapic->lock);
140 __rtc_irq_eoi_tracking_restore_one(vcpu);
141 spin_unlock(&ioapic->lock);
142}
143
144static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
145{
146 struct kvm_vcpu *vcpu;
147 int i;
148
149 if (RTC_GSI >= IOAPIC_NUM_PINS)
150 return;
151
152 rtc_irq_eoi_tracking_reset(ioapic);
153 kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
154 __rtc_irq_eoi_tracking_restore_one(vcpu);
155}
156
Yang Zhang2c2bf012013-04-11 19:21:41 +0800157static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu)
158{
Paolo Bonzini4009b242014-03-28 20:41:51 +0100159 if (test_and_clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map)) {
Yang Zhang2c2bf012013-04-11 19:21:41 +0800160 --ioapic->rtc_status.pending_eoi;
Paolo Bonzini4009b242014-03-28 20:41:51 +0100161 rtc_status_pending_eoi_check_valid(ioapic);
162 }
Yang Zhang2c2bf012013-04-11 19:21:41 +0800163}
164
165static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
166{
167 if (ioapic->rtc_status.pending_eoi > 0)
168 return true; /* coalesced */
169
170 return false;
171}
172
Paolo Bonzini44847de2014-03-18 12:00:14 +0100173static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
174 int irq_level, bool line_status)
175{
176 union kvm_ioapic_redirect_entry entry;
177 u32 mask = 1 << irq;
178 u32 old_irr;
179 int edge, ret;
180
181 entry = ioapic->redirtbl[irq];
182 edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
183
184 if (!irq_level) {
185 ioapic->irr &= ~mask;
186 ret = 1;
187 goto out;
188 }
189
190 /*
191 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
192 * this only happens if a previous edge has not been delivered due
193 * do masking. For level interrupts, the remote_irr field tells
194 * us if the interrupt is waiting for an EOI.
195 *
196 * RTC is special: it is edge-triggered, but userspace likes to know
197 * if it has been already ack-ed via EOI because coalesced RTC
198 * interrupts lead to time drift in Windows guests. So we track
199 * EOI manually for the RTC interrupt.
200 */
201 if (irq == RTC_GSI && line_status &&
202 rtc_irq_check_coalesced(ioapic)) {
203 ret = 0;
204 goto out;
205 }
206
207 old_irr = ioapic->irr;
208 ioapic->irr |= mask;
209 if ((edge && old_irr == ioapic->irr) ||
210 (!edge && entry.fields.remote_irr)) {
211 ret = 0;
212 goto out;
213 }
214
215 ret = ioapic_service(ioapic, irq, line_status);
216
217out:
218 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
219 return ret;
220}
221
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100222static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
223{
224 u32 idx;
225
226 rtc_irq_eoi_tracking_reset(ioapic);
227 for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
228 ioapic_set_irq(ioapic, idx, 1, true);
229
230 kvm_rtc_eoi_tracking_restore_all(ioapic);
231}
232
233
Avi Kivity46a929b2009-12-28 14:08:30 +0200234static void update_handled_vectors(struct kvm_ioapic *ioapic)
235{
236 DECLARE_BITMAP(handled_vectors, 256);
237 int i;
238
239 memset(handled_vectors, 0, sizeof(handled_vectors));
240 for (i = 0; i < IOAPIC_NUM_PINS; ++i)
241 __set_bit(ioapic->redirtbl[i].fields.vector, handled_vectors);
242 memcpy(ioapic->handled_vectors, handled_vectors,
243 sizeof(handled_vectors));
244 smp_wmb();
245}
246
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800247void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap,
248 u32 *tmr)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800249{
250 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
251 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800252 int index;
253
254 spin_lock(&ioapic->lock);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800255 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
256 e = &ioapic->redirtbl[index];
Paolo Bonzini0f6c0a72014-07-30 18:07:24 +0200257 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
258 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
259 index == RTC_GSI) {
Yang Zhang44944d42013-04-07 08:25:18 +0800260 if (kvm_apic_match_dest(vcpu, NULL, 0,
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800261 e->fields.dest_id, e->fields.dest_mode)) {
262 __set_bit(e->fields.vector,
263 (unsigned long *)eoi_exit_bitmap);
264 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG)
265 __set_bit(e->fields.vector,
266 (unsigned long *)tmr);
267 }
Yang Zhangc7c9c562013-01-25 10:18:51 +0800268 }
269 }
270 spin_unlock(&ioapic->lock);
271}
Yang Zhangc7c9c562013-01-25 10:18:51 +0800272
Yang Zhang3d81bc72013-04-11 19:25:13 +0800273void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800274{
275 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
276
Yang Zhang3d81bc72013-04-11 19:25:13 +0800277 if (!ioapic)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800278 return;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800279 kvm_make_scan_ioapic_request(kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800280}
281
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300282static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
283{
284 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200285 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300286 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300287
288 switch (ioapic->ioregsel) {
289 case IOAPIC_REG_VERSION:
290 /* Writes are ignored. */
291 break;
292
293 case IOAPIC_REG_APIC_ID:
294 ioapic->id = (val >> 24) & 0xf;
295 break;
296
297 case IOAPIC_REG_ARB_ID:
298 break;
299
300 default:
301 index = (ioapic->ioregsel - 0x10) >> 1;
302
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200303 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300304 if (index >= IOAPIC_NUM_PINS)
305 return;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300306 e = &ioapic->redirtbl[index];
307 mask_before = e->fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300308 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300309 e->bits &= 0xffffffff;
310 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300311 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300312 e->bits &= ~0xffffffffULL;
313 e->bits |= (u32) val;
314 e->fields.remote_irr = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300315 }
Avi Kivity46a929b2009-12-28 14:08:30 +0200316 update_handled_vectors(ioapic);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300317 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200318 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300319 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300320 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300321 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800322 ioapic_service(ioapic, index, false);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800323 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300324 break;
325 }
326}
327
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100328static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300329{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200330 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
331 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800332 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300333
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100334 if (entry->fields.mask)
335 return -1;
336
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300337 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200338 "vector=%x trig_mode=%x\n",
Liu Yuana38f84c2011-04-21 14:53:57 +0800339 entry->fields.dest_id, entry->fields.dest_mode,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200340 entry->fields.delivery_mode, entry->fields.vector,
341 entry->fields.trig_mode);
342
343 irqe.dest_id = entry->fields.dest_id;
344 irqe.vector = entry->fields.vector;
345 irqe.dest_mode = entry->fields.dest_mode;
346 irqe.trig_mode = entry->fields.trig_mode;
347 irqe.delivery_mode = entry->fields.delivery_mode << 8;
348 irqe.level = 1;
349 irqe.shorthand = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300350
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100351 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
352 ioapic->irr &= ~(1 << irq);
353
Yang Zhang2c2bf012013-04-11 19:21:41 +0800354 if (irq == RTC_GSI && line_status) {
Paolo Bonzini4009b242014-03-28 20:41:51 +0100355 /*
356 * pending_eoi cannot ever become negative (see
357 * rtc_status_pending_eoi_check_valid) and the caller
358 * ensures that it is only called if it is >= zero, namely
359 * if rtc_irq_check_coalesced returns false).
360 */
Yang Zhang2c2bf012013-04-11 19:21:41 +0800361 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
362 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
363 ioapic->rtc_status.dest_map);
Paolo Bonzini5678de3f2014-03-28 20:41:50 +0100364 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800365 } else
366 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
367
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100368 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
369 entry->fields.remote_irr = 1;
370
Yang Zhang2c2bf012013-04-11 19:21:41 +0800371 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300372}
373
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300374int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800375 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300376{
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300377 int ret, irq_level;
378
379 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300380
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300381 spin_lock(&ioapic->lock);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300382 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
383 irq_source_id, level);
Paolo Bonzini44847de2014-03-18 12:00:14 +0100384 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800385
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300386 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300387
Gleb Natapov49256632009-02-04 17:28:14 +0200388 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300389}
390
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300391void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
392{
393 int i;
394
395 spin_lock(&ioapic->lock);
396 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
397 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
398 spin_unlock(&ioapic->lock);
399}
400
Zhang Haoyu184564e2014-09-11 16:47:04 +0800401static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
402{
403 int i;
404 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
405 eoi_inject.work);
406 spin_lock(&ioapic->lock);
407 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
408 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
409
410 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
411 continue;
412
413 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
414 ioapic_service(ioapic, i, false);
415 }
416 spin_unlock(&ioapic->lock);
417}
418
419#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
420
Yang Zhang1fcc7892013-04-11 19:21:35 +0800421static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
422 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300423{
Gleb Natapoveba02262009-08-24 11:54:25 +0300424 int i;
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100425 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300426
Gleb Natapoveba02262009-08-24 11:54:25 +0300427 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
428 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300429
Gleb Natapoveba02262009-08-24 11:54:25 +0300430 if (ent->fields.vector != vector)
431 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300432
Yang Zhang2c2bf012013-04-11 19:21:41 +0800433 if (i == RTC_GSI)
434 rtc_irq_eoi(ioapic, vcpu);
Gleb Natapoveba02262009-08-24 11:54:25 +0300435 /*
436 * We are dropping lock while calling ack notifiers because ack
437 * notifier callbacks for assigned devices call into IOAPIC
438 * recursively. Since remote_irr is cleared only after call
439 * to notifiers if the same vector will be delivered while lock
440 * is dropped it will be put into irr and will be delivered
441 * after ack notifier returns.
442 */
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300443 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300444 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300445 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300446
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100447 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
448 kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
Gleb Natapoveba02262009-08-24 11:54:25 +0300449 continue;
450
Marcelo Tosattif5244722008-07-26 17:01:00 -0300451 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
452 ent->fields.remote_irr = 0;
Zhang Haoyu184564e2014-09-11 16:47:04 +0800453 if (!ent->fields.mask && (ioapic->irr & (1 << i))) {
454 ++ioapic->irq_eoi[i];
455 if (ioapic->irq_eoi[i] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
456 /*
457 * Real hardware does not deliver the interrupt
458 * immediately during eoi broadcast, and this
459 * lets a buggy guest make slow progress
460 * even if it does not correctly handle a
461 * level-triggered interrupt. Emulate this
462 * behavior if we detect an interrupt storm.
463 */
464 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
465 ioapic->irq_eoi[i] = 0;
466 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
467 } else {
468 ioapic_service(ioapic, i, false);
469 }
470 } else {
471 ioapic->irq_eoi[i] = 0;
472 }
Marcelo Tosattif5244722008-07-26 17:01:00 -0300473 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300474}
475
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300476bool kvm_ioapic_handles_vector(struct kvm *kvm, int vector)
477{
478 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
479 smp_rmb();
480 return test_bit(vector, ioapic->handled_vectors);
481}
482
Yang Zhang1fcc7892013-04-11 19:21:35 +0800483void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700484{
Yang Zhang1fcc7892013-04-11 19:21:35 +0800485 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700486
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300487 spin_lock(&ioapic->lock);
Yang Zhang1fcc7892013-04-11 19:21:35 +0800488 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300489 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700490}
491
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400492static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
493{
494 return container_of(dev, struct kvm_ioapic, dev);
495}
496
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300497static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300498{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300499 return ((addr >= ioapic->base_address &&
500 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
501}
502
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300503static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
504 void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300505{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400506 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300507 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300508 if (!ioapic_in_range(ioapic, addr))
509 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300510
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200511 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300512 ASSERT(!(addr & 0xf)); /* check alignment */
513
514 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300515 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300516 switch (addr) {
517 case IOAPIC_REG_SELECT:
518 result = ioapic->ioregsel;
519 break;
520
521 case IOAPIC_REG_WINDOW:
522 result = ioapic_read_indirect(ioapic, addr, len);
523 break;
524
525 default:
526 result = 0;
527 break;
528 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300529 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300530
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300531 switch (len) {
532 case 8:
533 *(u64 *) val = result;
534 break;
535 case 1:
536 case 2:
537 case 4:
538 memcpy(val, (char *)&result, len);
539 break;
540 default:
541 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
542 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300543 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300544}
545
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300546static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
547 const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300548{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400549 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300550 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300551 if (!ioapic_in_range(ioapic, addr))
552 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300553
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200554 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
555 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300556 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300557
Julian Stecklinad77fe632011-11-23 13:54:30 +0100558 switch (len) {
559 case 8:
560 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300561 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100562 break;
563 case 2:
564 data = *(u16 *) val;
565 break;
566 case 1:
567 data = *(u8 *) val;
568 break;
569 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300570 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300571 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300572 }
573
574 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300575 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300576 switch (addr) {
577 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100578 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300579 break;
580
581 case IOAPIC_REG_WINDOW:
582 ioapic_write_indirect(ioapic, data);
583 break;
584
585 default:
586 break;
587 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300588 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300589 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300590}
591
Stephen Hemminger79408762013-12-29 12:12:29 -0800592static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
Eddie Dong8c392692007-10-10 12:15:54 +0200593{
594 int i;
595
Zhang Haoyu184564e2014-09-11 16:47:04 +0800596 cancel_delayed_work_sync(&ioapic->eoi_inject);
Eddie Dong8c392692007-10-10 12:15:54 +0200597 for (i = 0; i < IOAPIC_NUM_PINS; i++)
598 ioapic->redirtbl[i].fields.mask = 1;
599 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
600 ioapic->ioregsel = 0;
601 ioapic->irr = 0;
602 ioapic->id = 0;
Zhang Haoyu184564e2014-09-11 16:47:04 +0800603 memset(ioapic->irq_eoi, 0x00, IOAPIC_NUM_PINS);
Yang Zhang10606912013-04-11 19:21:38 +0800604 rtc_irq_eoi_tracking_reset(ioapic);
Avi Kivity46a929b2009-12-28 14:08:30 +0200605 update_handled_vectors(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200606}
607
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400608static const struct kvm_io_device_ops ioapic_mmio_ops = {
609 .read = ioapic_mmio_read,
610 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400611};
612
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300613int kvm_ioapic_init(struct kvm *kvm)
614{
615 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400616 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300617
618 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
619 if (!ioapic)
620 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300621 spin_lock_init(&ioapic->lock);
Zhang Haoyu184564e2014-09-11 16:47:04 +0800622 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800623 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200624 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400625 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300626 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200627 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300628 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
629 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200630 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800631 if (ret < 0) {
632 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400633 kfree(ioapic);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800634 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400635
636 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300637}
Avi Kivity75858a82009-01-04 17:10:50 +0200638
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800639void kvm_ioapic_destroy(struct kvm *kvm)
640{
641 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
642
Zhang Haoyu184564e2014-09-11 16:47:04 +0800643 cancel_delayed_work_sync(&ioapic->eoi_inject);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800644 if (ioapic) {
645 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
646 kvm->arch.vioapic = NULL;
647 kfree(ioapic);
648 }
649}
650
Gleb Natapoveba02262009-08-24 11:54:25 +0300651int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
652{
653 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
654 if (!ioapic)
655 return -EINVAL;
656
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300657 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300658 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300659 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300660 return 0;
661}
662
663int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
664{
665 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
666 if (!ioapic)
667 return -EINVAL;
668
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300669 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300670 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100671 ioapic->irr = 0;
Avi Kivity46a929b2009-12-28 14:08:30 +0200672 update_handled_vectors(ioapic);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800673 kvm_vcpu_request_scan_ioapic(kvm);
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100674 kvm_ioapic_inject_all(ioapic, state->irr);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300675 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300676 return 0;
677}