blob: eaf4ec38d980d11174fce4e8a3f31f97584bb7d4 [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;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800209 if (edge)
210 ioapic->irr_delivered &= ~mask;
Paolo Bonzini44847de2014-03-18 12:00:14 +0100211 if ((edge && old_irr == ioapic->irr) ||
212 (!edge && entry.fields.remote_irr)) {
213 ret = 0;
214 goto out;
215 }
216
217 ret = ioapic_service(ioapic, irq, line_status);
218
219out:
220 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
221 return ret;
222}
223
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100224static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
225{
226 u32 idx;
227
228 rtc_irq_eoi_tracking_reset(ioapic);
229 for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
230 ioapic_set_irq(ioapic, idx, 1, true);
231
232 kvm_rtc_eoi_tracking_restore_all(ioapic);
233}
234
235
Avi Kivity46a929b2009-12-28 14:08:30 +0200236static void update_handled_vectors(struct kvm_ioapic *ioapic)
237{
238 DECLARE_BITMAP(handled_vectors, 256);
239 int i;
240
241 memset(handled_vectors, 0, sizeof(handled_vectors));
242 for (i = 0; i < IOAPIC_NUM_PINS; ++i)
243 __set_bit(ioapic->redirtbl[i].fields.vector, handled_vectors);
244 memcpy(ioapic->handled_vectors, handled_vectors,
245 sizeof(handled_vectors));
246 smp_wmb();
247}
248
Paolo Bonzinibdaffe12015-07-29 15:03:06 +0200249void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800250{
251 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
252 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800253 int index;
254
255 spin_lock(&ioapic->lock);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800256 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
257 e = &ioapic->redirtbl[index];
Paolo Bonzini0f6c0a72014-07-30 18:07:24 +0200258 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
259 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
260 index == RTC_GSI) {
Yang Zhang44944d42013-04-07 08:25:18 +0800261 if (kvm_apic_match_dest(vcpu, NULL, 0,
Paolo Bonzinibdaffe12015-07-29 15:03:06 +0200262 e->fields.dest_id, e->fields.dest_mode))
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800263 __set_bit(e->fields.vector,
264 (unsigned long *)eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800265 }
266 }
267 spin_unlock(&ioapic->lock);
268}
Yang Zhangc7c9c562013-01-25 10:18:51 +0800269
Yang Zhang3d81bc72013-04-11 19:25:13 +0800270void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800271{
272 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
273
Yang Zhang3d81bc72013-04-11 19:25:13 +0800274 if (!ioapic)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800275 return;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800276 kvm_make_scan_ioapic_request(kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800277}
278
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300279static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
280{
281 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200282 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300283 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300284
285 switch (ioapic->ioregsel) {
286 case IOAPIC_REG_VERSION:
287 /* Writes are ignored. */
288 break;
289
290 case IOAPIC_REG_APIC_ID:
291 ioapic->id = (val >> 24) & 0xf;
292 break;
293
294 case IOAPIC_REG_ARB_ID:
295 break;
296
297 default:
298 index = (ioapic->ioregsel - 0x10) >> 1;
299
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200300 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300301 if (index >= IOAPIC_NUM_PINS)
302 return;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300303 e = &ioapic->redirtbl[index];
304 mask_before = e->fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300305 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300306 e->bits &= 0xffffffff;
307 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300308 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300309 e->bits &= ~0xffffffffULL;
310 e->bits |= (u32) val;
311 e->fields.remote_irr = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300312 }
Avi Kivity46a929b2009-12-28 14:08:30 +0200313 update_handled_vectors(ioapic);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300314 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200315 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300316 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300317 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300318 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800319 ioapic_service(ioapic, index, false);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800320 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300321 break;
322 }
323}
324
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100325static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300326{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200327 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
328 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800329 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300330
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100331 if (entry->fields.mask)
332 return -1;
333
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300334 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200335 "vector=%x trig_mode=%x\n",
Liu Yuana38f84c2011-04-21 14:53:57 +0800336 entry->fields.dest_id, entry->fields.dest_mode,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200337 entry->fields.delivery_mode, entry->fields.vector,
338 entry->fields.trig_mode);
339
340 irqe.dest_id = entry->fields.dest_id;
341 irqe.vector = entry->fields.vector;
342 irqe.dest_mode = entry->fields.dest_mode;
343 irqe.trig_mode = entry->fields.trig_mode;
344 irqe.delivery_mode = entry->fields.delivery_mode << 8;
345 irqe.level = 1;
346 irqe.shorthand = 0;
James Sullivan93bbf0b2015-03-18 19:26:03 -0600347 irqe.msi_redir_hint = false;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300348
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100349 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
Wincy Van5bda6ee2014-12-24 11:14:29 +0800350 ioapic->irr_delivered |= 1 << irq;
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100351
Yang Zhang2c2bf012013-04-11 19:21:41 +0800352 if (irq == RTC_GSI && line_status) {
Paolo Bonzini4009b242014-03-28 20:41:51 +0100353 /*
354 * pending_eoi cannot ever become negative (see
355 * rtc_status_pending_eoi_check_valid) and the caller
356 * ensures that it is only called if it is >= zero, namely
357 * if rtc_irq_check_coalesced returns false).
358 */
Yang Zhang2c2bf012013-04-11 19:21:41 +0800359 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
360 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
361 ioapic->rtc_status.dest_map);
Paolo Bonzini5678de3f2014-03-28 20:41:50 +0100362 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800363 } else
364 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
365
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100366 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
367 entry->fields.remote_irr = 1;
368
Yang Zhang2c2bf012013-04-11 19:21:41 +0800369 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300370}
371
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300372int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800373 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300374{
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300375 int ret, irq_level;
376
377 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300378
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300379 spin_lock(&ioapic->lock);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300380 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
381 irq_source_id, level);
Paolo Bonzini44847de2014-03-18 12:00:14 +0100382 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800383
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300384 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300385
Gleb Natapov49256632009-02-04 17:28:14 +0200386 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300387}
388
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300389void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
390{
391 int i;
392
393 spin_lock(&ioapic->lock);
394 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
395 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
396 spin_unlock(&ioapic->lock);
397}
398
Zhang Haoyu184564e2014-09-11 16:47:04 +0800399static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
400{
401 int i;
402 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
403 eoi_inject.work);
404 spin_lock(&ioapic->lock);
405 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
406 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
407
408 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
409 continue;
410
411 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
412 ioapic_service(ioapic, i, false);
413 }
414 spin_unlock(&ioapic->lock);
415}
416
417#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
418
Yang Zhang1fcc7892013-04-11 19:21:35 +0800419static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
420 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300421{
Gleb Natapoveba02262009-08-24 11:54:25 +0300422 int i;
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100423 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300424
Gleb Natapoveba02262009-08-24 11:54:25 +0300425 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
426 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300427
Gleb Natapoveba02262009-08-24 11:54:25 +0300428 if (ent->fields.vector != vector)
429 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300430
Yang Zhang2c2bf012013-04-11 19:21:41 +0800431 if (i == RTC_GSI)
432 rtc_irq_eoi(ioapic, vcpu);
Gleb Natapoveba02262009-08-24 11:54:25 +0300433 /*
434 * We are dropping lock while calling ack notifiers because ack
435 * notifier callbacks for assigned devices call into IOAPIC
436 * recursively. Since remote_irr is cleared only after call
437 * to notifiers if the same vector will be delivered while lock
438 * is dropped it will be put into irr and will be delivered
439 * after ack notifier returns.
440 */
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300441 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300442 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300443 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300444
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100445 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
446 kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
Gleb Natapoveba02262009-08-24 11:54:25 +0300447 continue;
448
Marcelo Tosattif5244722008-07-26 17:01:00 -0300449 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
450 ent->fields.remote_irr = 0;
Zhang Haoyu184564e2014-09-11 16:47:04 +0800451 if (!ent->fields.mask && (ioapic->irr & (1 << i))) {
452 ++ioapic->irq_eoi[i];
453 if (ioapic->irq_eoi[i] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
454 /*
455 * Real hardware does not deliver the interrupt
456 * immediately during eoi broadcast, and this
457 * lets a buggy guest make slow progress
458 * even if it does not correctly handle a
459 * level-triggered interrupt. Emulate this
460 * behavior if we detect an interrupt storm.
461 */
462 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
463 ioapic->irq_eoi[i] = 0;
464 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
465 } else {
466 ioapic_service(ioapic, i, false);
467 }
468 } else {
469 ioapic->irq_eoi[i] = 0;
470 }
Marcelo Tosattif5244722008-07-26 17:01:00 -0300471 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300472}
473
Yang Zhang1fcc7892013-04-11 19:21:35 +0800474void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700475{
Yang Zhang1fcc7892013-04-11 19:21:35 +0800476 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700477
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300478 spin_lock(&ioapic->lock);
Yang Zhang1fcc7892013-04-11 19:21:35 +0800479 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300480 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700481}
482
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400483static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
484{
485 return container_of(dev, struct kvm_ioapic, dev);
486}
487
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300488static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300489{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300490 return ((addr >= ioapic->base_address &&
491 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
492}
493
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000494static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
495 gpa_t addr, int len, void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300496{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400497 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300498 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300499 if (!ioapic_in_range(ioapic, addr))
500 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300501
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200502 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300503 ASSERT(!(addr & 0xf)); /* check alignment */
504
505 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300506 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300507 switch (addr) {
508 case IOAPIC_REG_SELECT:
509 result = ioapic->ioregsel;
510 break;
511
512 case IOAPIC_REG_WINDOW:
513 result = ioapic_read_indirect(ioapic, addr, len);
514 break;
515
516 default:
517 result = 0;
518 break;
519 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300520 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300521
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300522 switch (len) {
523 case 8:
524 *(u64 *) val = result;
525 break;
526 case 1:
527 case 2:
528 case 4:
529 memcpy(val, (char *)&result, len);
530 break;
531 default:
532 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
533 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300534 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300535}
536
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000537static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
538 gpa_t addr, int len, const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300539{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400540 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300541 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300542 if (!ioapic_in_range(ioapic, addr))
543 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300544
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200545 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
546 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300547 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300548
Julian Stecklinad77fe632011-11-23 13:54:30 +0100549 switch (len) {
550 case 8:
551 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300552 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100553 break;
554 case 2:
555 data = *(u16 *) val;
556 break;
557 case 1:
558 data = *(u8 *) val;
559 break;
560 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300561 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300562 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300563 }
564
565 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300566 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300567 switch (addr) {
568 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100569 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300570 break;
571
572 case IOAPIC_REG_WINDOW:
573 ioapic_write_indirect(ioapic, data);
574 break;
575
576 default:
577 break;
578 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300579 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300580 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300581}
582
Stephen Hemminger79408762013-12-29 12:12:29 -0800583static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
Eddie Dong8c392692007-10-10 12:15:54 +0200584{
585 int i;
586
Zhang Haoyu184564e2014-09-11 16:47:04 +0800587 cancel_delayed_work_sync(&ioapic->eoi_inject);
Eddie Dong8c392692007-10-10 12:15:54 +0200588 for (i = 0; i < IOAPIC_NUM_PINS; i++)
589 ioapic->redirtbl[i].fields.mask = 1;
590 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
591 ioapic->ioregsel = 0;
592 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800593 ioapic->irr_delivered = 0;
Eddie Dong8c392692007-10-10 12:15:54 +0200594 ioapic->id = 0;
Zhang Haoyu184564e2014-09-11 16:47:04 +0800595 memset(ioapic->irq_eoi, 0x00, IOAPIC_NUM_PINS);
Yang Zhang10606912013-04-11 19:21:38 +0800596 rtc_irq_eoi_tracking_reset(ioapic);
Avi Kivity46a929b2009-12-28 14:08:30 +0200597 update_handled_vectors(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200598}
599
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400600static const struct kvm_io_device_ops ioapic_mmio_ops = {
601 .read = ioapic_mmio_read,
602 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400603};
604
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300605int kvm_ioapic_init(struct kvm *kvm)
606{
607 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400608 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300609
610 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
611 if (!ioapic)
612 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300613 spin_lock_init(&ioapic->lock);
Zhang Haoyu184564e2014-09-11 16:47:04 +0800614 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800615 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200616 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400617 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300618 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200619 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300620 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
621 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200622 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800623 if (ret < 0) {
624 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400625 kfree(ioapic);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800626 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400627
628 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300629}
Avi Kivity75858a82009-01-04 17:10:50 +0200630
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800631void kvm_ioapic_destroy(struct kvm *kvm)
632{
633 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
634
Zhang Haoyu184564e2014-09-11 16:47:04 +0800635 cancel_delayed_work_sync(&ioapic->eoi_inject);
Julia Lawalld90e3a32015-04-27 22:35:34 +0200636 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
637 kvm->arch.vioapic = NULL;
638 kfree(ioapic);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800639}
640
Gleb Natapoveba02262009-08-24 11:54:25 +0300641int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
642{
643 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
644 if (!ioapic)
645 return -EINVAL;
646
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300647 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300648 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Wincy Van5bda6ee2014-12-24 11:14:29 +0800649 state->irr &= ~ioapic->irr_delivered;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300650 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300651 return 0;
652}
653
654int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
655{
656 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
657 if (!ioapic)
658 return -EINVAL;
659
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300660 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300661 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100662 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800663 ioapic->irr_delivered = 0;
Avi Kivity46a929b2009-12-28 14:08:30 +0200664 update_handled_vectors(ioapic);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800665 kvm_vcpu_request_scan_ioapic(kvm);
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100666 kvm_ioapic_inject_all(ioapic, state->irr);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300667 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300668 return 0;
669}