blob: 2dcda0f188bae49080ba5d8992dc87135dcfb525 [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
Paolo Bonzinibdaffe12015-07-29 15:03:06 +0200236void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800237{
238 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
239 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800240 int index;
241
242 spin_lock(&ioapic->lock);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800243 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
244 e = &ioapic->redirtbl[index];
Paolo Bonzini0f6c0a72014-07-30 18:07:24 +0200245 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
246 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
247 index == RTC_GSI) {
Yang Zhang44944d42013-04-07 08:25:18 +0800248 if (kvm_apic_match_dest(vcpu, NULL, 0,
Paolo Bonzinibdaffe12015-07-29 15:03:06 +0200249 e->fields.dest_id, e->fields.dest_mode))
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800250 __set_bit(e->fields.vector,
251 (unsigned long *)eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800252 }
253 }
254 spin_unlock(&ioapic->lock);
255}
Yang Zhangc7c9c562013-01-25 10:18:51 +0800256
Yang Zhang3d81bc72013-04-11 19:25:13 +0800257void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800258{
259 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
260
Yang Zhang3d81bc72013-04-11 19:25:13 +0800261 if (!ioapic)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800262 return;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800263 kvm_make_scan_ioapic_request(kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800264}
265
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300266static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
267{
268 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200269 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300270 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300271
272 switch (ioapic->ioregsel) {
273 case IOAPIC_REG_VERSION:
274 /* Writes are ignored. */
275 break;
276
277 case IOAPIC_REG_APIC_ID:
278 ioapic->id = (val >> 24) & 0xf;
279 break;
280
281 case IOAPIC_REG_ARB_ID:
282 break;
283
284 default:
285 index = (ioapic->ioregsel - 0x10) >> 1;
286
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200287 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300288 if (index >= IOAPIC_NUM_PINS)
289 return;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300290 e = &ioapic->redirtbl[index];
291 mask_before = e->fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300292 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300293 e->bits &= 0xffffffff;
294 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300295 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300296 e->bits &= ~0xffffffffULL;
297 e->bits |= (u32) val;
298 e->fields.remote_irr = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300299 }
Gleb Natapov70f93da2009-07-05 18:48:12 +0300300 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200301 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300302 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300303 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300304 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800305 ioapic_service(ioapic, index, false);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800306 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300307 break;
308 }
309}
310
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100311static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300312{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200313 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
314 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800315 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300316
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100317 if (entry->fields.mask)
318 return -1;
319
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300320 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200321 "vector=%x trig_mode=%x\n",
Liu Yuana38f84c2011-04-21 14:53:57 +0800322 entry->fields.dest_id, entry->fields.dest_mode,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200323 entry->fields.delivery_mode, entry->fields.vector,
324 entry->fields.trig_mode);
325
326 irqe.dest_id = entry->fields.dest_id;
327 irqe.vector = entry->fields.vector;
328 irqe.dest_mode = entry->fields.dest_mode;
329 irqe.trig_mode = entry->fields.trig_mode;
330 irqe.delivery_mode = entry->fields.delivery_mode << 8;
331 irqe.level = 1;
332 irqe.shorthand = 0;
James Sullivan93bbf0b2015-03-18 19:26:03 -0600333 irqe.msi_redir_hint = false;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300334
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100335 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
Wincy Van5bda6ee2014-12-24 11:14:29 +0800336 ioapic->irr_delivered |= 1 << irq;
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100337
Yang Zhang2c2bf012013-04-11 19:21:41 +0800338 if (irq == RTC_GSI && line_status) {
Paolo Bonzini4009b242014-03-28 20:41:51 +0100339 /*
340 * pending_eoi cannot ever become negative (see
341 * rtc_status_pending_eoi_check_valid) and the caller
342 * ensures that it is only called if it is >= zero, namely
343 * if rtc_irq_check_coalesced returns false).
344 */
Yang Zhang2c2bf012013-04-11 19:21:41 +0800345 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
346 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
347 ioapic->rtc_status.dest_map);
Paolo Bonzini5678de3f2014-03-28 20:41:50 +0100348 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800349 } else
350 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
351
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100352 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
353 entry->fields.remote_irr = 1;
354
Yang Zhang2c2bf012013-04-11 19:21:41 +0800355 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300356}
357
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300358int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800359 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300360{
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300361 int ret, irq_level;
362
363 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300364
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300365 spin_lock(&ioapic->lock);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300366 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
367 irq_source_id, level);
Paolo Bonzini44847de2014-03-18 12:00:14 +0100368 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800369
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300370 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300371
Gleb Natapov49256632009-02-04 17:28:14 +0200372 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300373}
374
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300375void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
376{
377 int i;
378
379 spin_lock(&ioapic->lock);
380 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
381 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
382 spin_unlock(&ioapic->lock);
383}
384
Zhang Haoyu184564e2014-09-11 16:47:04 +0800385static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
386{
387 int i;
388 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
389 eoi_inject.work);
390 spin_lock(&ioapic->lock);
391 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
392 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
393
394 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
395 continue;
396
397 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
398 ioapic_service(ioapic, i, false);
399 }
400 spin_unlock(&ioapic->lock);
401}
402
403#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
404
Yang Zhang1fcc7892013-04-11 19:21:35 +0800405static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
406 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300407{
Gleb Natapoveba02262009-08-24 11:54:25 +0300408 int i;
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100409 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300410
Gleb Natapoveba02262009-08-24 11:54:25 +0300411 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
412 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300413
Gleb Natapoveba02262009-08-24 11:54:25 +0300414 if (ent->fields.vector != vector)
415 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300416
Yang Zhang2c2bf012013-04-11 19:21:41 +0800417 if (i == RTC_GSI)
418 rtc_irq_eoi(ioapic, vcpu);
Gleb Natapoveba02262009-08-24 11:54:25 +0300419 /*
420 * We are dropping lock while calling ack notifiers because ack
421 * notifier callbacks for assigned devices call into IOAPIC
422 * recursively. Since remote_irr is cleared only after call
423 * to notifiers if the same vector will be delivered while lock
424 * is dropped it will be put into irr and will be delivered
425 * after ack notifier returns.
426 */
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300427 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300428 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300429 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300430
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100431 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
432 kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
Gleb Natapoveba02262009-08-24 11:54:25 +0300433 continue;
434
Marcelo Tosattif5244722008-07-26 17:01:00 -0300435 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
436 ent->fields.remote_irr = 0;
Zhang Haoyu184564e2014-09-11 16:47:04 +0800437 if (!ent->fields.mask && (ioapic->irr & (1 << i))) {
438 ++ioapic->irq_eoi[i];
439 if (ioapic->irq_eoi[i] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
440 /*
441 * Real hardware does not deliver the interrupt
442 * immediately during eoi broadcast, and this
443 * lets a buggy guest make slow progress
444 * even if it does not correctly handle a
445 * level-triggered interrupt. Emulate this
446 * behavior if we detect an interrupt storm.
447 */
448 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
449 ioapic->irq_eoi[i] = 0;
450 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
451 } else {
452 ioapic_service(ioapic, i, false);
453 }
454 } else {
455 ioapic->irq_eoi[i] = 0;
456 }
Marcelo Tosattif5244722008-07-26 17:01:00 -0300457 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300458}
459
Yang Zhang1fcc7892013-04-11 19:21:35 +0800460void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700461{
Yang Zhang1fcc7892013-04-11 19:21:35 +0800462 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700463
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300464 spin_lock(&ioapic->lock);
Yang Zhang1fcc7892013-04-11 19:21:35 +0800465 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300466 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700467}
468
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400469static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
470{
471 return container_of(dev, struct kvm_ioapic, dev);
472}
473
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300474static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300475{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300476 return ((addr >= ioapic->base_address &&
477 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
478}
479
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000480static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
481 gpa_t addr, int len, void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300482{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400483 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300484 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300485 if (!ioapic_in_range(ioapic, addr))
486 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300487
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200488 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300489 ASSERT(!(addr & 0xf)); /* check alignment */
490
491 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300492 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300493 switch (addr) {
494 case IOAPIC_REG_SELECT:
495 result = ioapic->ioregsel;
496 break;
497
498 case IOAPIC_REG_WINDOW:
499 result = ioapic_read_indirect(ioapic, addr, len);
500 break;
501
502 default:
503 result = 0;
504 break;
505 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300506 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300507
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300508 switch (len) {
509 case 8:
510 *(u64 *) val = result;
511 break;
512 case 1:
513 case 2:
514 case 4:
515 memcpy(val, (char *)&result, len);
516 break;
517 default:
518 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
519 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300520 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300521}
522
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000523static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
524 gpa_t addr, int len, const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300525{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400526 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300527 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300528 if (!ioapic_in_range(ioapic, addr))
529 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300530
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200531 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
532 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300533 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300534
Julian Stecklinad77fe632011-11-23 13:54:30 +0100535 switch (len) {
536 case 8:
537 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300538 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100539 break;
540 case 2:
541 data = *(u16 *) val;
542 break;
543 case 1:
544 data = *(u8 *) val;
545 break;
546 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300547 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300548 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300549 }
550
551 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300552 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300553 switch (addr) {
554 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100555 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300556 break;
557
558 case IOAPIC_REG_WINDOW:
559 ioapic_write_indirect(ioapic, data);
560 break;
561
562 default:
563 break;
564 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300565 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300566 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300567}
568
Stephen Hemminger79408762013-12-29 12:12:29 -0800569static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
Eddie Dong8c392692007-10-10 12:15:54 +0200570{
571 int i;
572
Zhang Haoyu184564e2014-09-11 16:47:04 +0800573 cancel_delayed_work_sync(&ioapic->eoi_inject);
Eddie Dong8c392692007-10-10 12:15:54 +0200574 for (i = 0; i < IOAPIC_NUM_PINS; i++)
575 ioapic->redirtbl[i].fields.mask = 1;
576 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
577 ioapic->ioregsel = 0;
578 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800579 ioapic->irr_delivered = 0;
Eddie Dong8c392692007-10-10 12:15:54 +0200580 ioapic->id = 0;
Zhang Haoyu184564e2014-09-11 16:47:04 +0800581 memset(ioapic->irq_eoi, 0x00, IOAPIC_NUM_PINS);
Yang Zhang10606912013-04-11 19:21:38 +0800582 rtc_irq_eoi_tracking_reset(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200583}
584
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400585static const struct kvm_io_device_ops ioapic_mmio_ops = {
586 .read = ioapic_mmio_read,
587 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400588};
589
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300590int kvm_ioapic_init(struct kvm *kvm)
591{
592 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400593 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300594
595 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
596 if (!ioapic)
597 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300598 spin_lock_init(&ioapic->lock);
Zhang Haoyu184564e2014-09-11 16:47:04 +0800599 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800600 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200601 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400602 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300603 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200604 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300605 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
606 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200607 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800608 if (ret < 0) {
609 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400610 kfree(ioapic);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200611 return ret;
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800612 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400613
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200614 kvm_vcpu_request_scan_ioapic(kvm);
Gregory Haskins090b7af2009-07-07 17:08:44 -0400615 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300616}
Avi Kivity75858a82009-01-04 17:10:50 +0200617
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800618void kvm_ioapic_destroy(struct kvm *kvm)
619{
620 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
621
Zhang Haoyu184564e2014-09-11 16:47:04 +0800622 cancel_delayed_work_sync(&ioapic->eoi_inject);
Julia Lawalld90e3a32015-04-27 22:35:34 +0200623 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
624 kvm->arch.vioapic = NULL;
625 kfree(ioapic);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800626}
627
Gleb Natapoveba02262009-08-24 11:54:25 +0300628int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
629{
630 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
631 if (!ioapic)
632 return -EINVAL;
633
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300634 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300635 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Wincy Van5bda6ee2014-12-24 11:14:29 +0800636 state->irr &= ~ioapic->irr_delivered;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300637 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300638 return 0;
639}
640
641int kvm_set_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(ioapic, state, sizeof(struct kvm_ioapic_state));
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100649 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800650 ioapic->irr_delivered = 0;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800651 kvm_vcpu_request_scan_ioapic(kvm);
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100652 kvm_ioapic_inject_all(ioapic, state->irr);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300653 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300654 return 0;
655}