blob: aa34b16e62c24790d7c516bde0bc34500ba90970 [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>
Marios Pomonis63674992019-12-11 12:47:45 -080039#include <linux/nospec.h>
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030040#include <asm/processor.h>
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030041#include <asm/page.h>
42#include <asm/current.h>
Gleb Natapov1000ff82009-07-07 16:00:57 +030043#include <trace/events/kvm.h>
Zhang Xiantao82470192007-12-17 13:59:56 +080044
45#include "ioapic.h"
46#include "lapic.h"
Marcelo Tosattif5244722008-07-26 17:01:00 -030047#include "irq.h"
Zhang Xiantao82470192007-12-17 13:59:56 +080048
Laurent Viviere25e3ed2007-10-12 11:01:59 +020049#if 0
50#define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
51#else
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030052#define ioapic_debug(fmt, arg...)
Laurent Viviere25e3ed2007-10-12 11:01:59 +020053#endif
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +010054static int ioapic_service(struct kvm_ioapic *vioapic, int irq,
Yang Zhangaa2fbe62013-04-11 19:21:40 +080055 bool line_status);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030056
57static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
58 unsigned long addr,
59 unsigned long length)
60{
61 unsigned long result = 0;
62
63 switch (ioapic->ioregsel) {
64 case IOAPIC_REG_VERSION:
65 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
66 | (IOAPIC_VERSION_ID & 0xff));
67 break;
68
69 case IOAPIC_REG_APIC_ID:
70 case IOAPIC_REG_ARB_ID:
71 result = ((ioapic->id & 0xf) << 24);
72 break;
73
74 default:
75 {
76 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
Marios Pomonisff199542019-12-11 12:47:44 -080077 u64 redir_content = ~0ULL;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030078
Marios Pomonisff199542019-12-11 12:47:44 -080079 if (redir_index < IOAPIC_NUM_PINS) {
80 u32 index = array_index_nospec(
81 redir_index, IOAPIC_NUM_PINS);
82
83 redir_content = ioapic->redirtbl[index].bits;
84 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030085
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030086 result = (ioapic->ioregsel & 0x1) ?
87 (redir_content >> 32) & 0xffffffff :
88 redir_content & 0xffffffff;
89 break;
90 }
91 }
92
93 return result;
94}
95
Yang Zhang10606912013-04-11 19:21:38 +080096static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic)
97{
98 ioapic->rtc_status.pending_eoi = 0;
Radim Krčmář81cdb252016-11-23 21:15:27 +010099 bitmap_zero(ioapic->rtc_status.dest_map.map, KVM_MAX_VCPU_ID);
Yang Zhang10606912013-04-11 19:21:38 +0800100}
101
Paolo Bonzini4009b242014-03-28 20:41:51 +0100102static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic);
103
104static void rtc_status_pending_eoi_check_valid(struct kvm_ioapic *ioapic)
105{
106 if (WARN_ON(ioapic->rtc_status.pending_eoi < 0))
107 kvm_rtc_eoi_tracking_restore_all(ioapic);
108}
109
Yang Zhang10606912013-04-11 19:21:38 +0800110static void __rtc_irq_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
111{
112 bool new_val, old_val;
113 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200114 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
Yang Zhang10606912013-04-11 19:21:38 +0800115 union kvm_ioapic_redirect_entry *e;
116
117 e = &ioapic->redirtbl[RTC_GSI];
118 if (!kvm_apic_match_dest(vcpu, NULL, 0, e->fields.dest_id,
119 e->fields.dest_mode))
120 return;
121
122 new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200123 old_val = test_bit(vcpu->vcpu_id, dest_map->map);
Yang Zhang10606912013-04-11 19:21:38 +0800124
125 if (new_val == old_val)
126 return;
127
128 if (new_val) {
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200129 __set_bit(vcpu->vcpu_id, dest_map->map);
130 dest_map->vectors[vcpu->vcpu_id] = e->fields.vector;
Yang Zhang10606912013-04-11 19:21:38 +0800131 ioapic->rtc_status.pending_eoi++;
132 } else {
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200133 __clear_bit(vcpu->vcpu_id, dest_map->map);
Yang Zhang10606912013-04-11 19:21:38 +0800134 ioapic->rtc_status.pending_eoi--;
Paolo Bonzini4009b242014-03-28 20:41:51 +0100135 rtc_status_pending_eoi_check_valid(ioapic);
Yang Zhang10606912013-04-11 19:21:38 +0800136 }
Yang Zhang10606912013-04-11 19:21:38 +0800137}
138
139void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
140{
141 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
142
143 spin_lock(&ioapic->lock);
144 __rtc_irq_eoi_tracking_restore_one(vcpu);
145 spin_unlock(&ioapic->lock);
146}
147
148static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
149{
150 struct kvm_vcpu *vcpu;
151 int i;
152
153 if (RTC_GSI >= IOAPIC_NUM_PINS)
154 return;
155
156 rtc_irq_eoi_tracking_reset(ioapic);
157 kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
158 __rtc_irq_eoi_tracking_restore_one(vcpu);
159}
160
Yang Zhang2c2bf012013-04-11 19:21:41 +0800161static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu)
162{
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100163 if (test_and_clear_bit(vcpu->vcpu_id,
164 ioapic->rtc_status.dest_map.map)) {
Yang Zhang2c2bf012013-04-11 19:21:41 +0800165 --ioapic->rtc_status.pending_eoi;
Paolo Bonzini4009b242014-03-28 20:41:51 +0100166 rtc_status_pending_eoi_check_valid(ioapic);
167 }
Yang Zhang2c2bf012013-04-11 19:21:41 +0800168}
169
170static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
171{
172 if (ioapic->rtc_status.pending_eoi > 0)
173 return true; /* coalesced */
174
175 return false;
176}
177
Paolo Bonzini44847de2014-03-18 12:00:14 +0100178static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
179 int irq_level, bool line_status)
180{
181 union kvm_ioapic_redirect_entry entry;
182 u32 mask = 1 << irq;
183 u32 old_irr;
184 int edge, ret;
185
186 entry = ioapic->redirtbl[irq];
187 edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
188
189 if (!irq_level) {
190 ioapic->irr &= ~mask;
191 ret = 1;
192 goto out;
193 }
194
195 /*
196 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
197 * this only happens if a previous edge has not been delivered due
198 * do masking. For level interrupts, the remote_irr field tells
199 * us if the interrupt is waiting for an EOI.
200 *
201 * RTC is special: it is edge-triggered, but userspace likes to know
202 * if it has been already ack-ed via EOI because coalesced RTC
203 * interrupts lead to time drift in Windows guests. So we track
204 * EOI manually for the RTC interrupt.
205 */
206 if (irq == RTC_GSI && line_status &&
207 rtc_irq_check_coalesced(ioapic)) {
208 ret = 0;
209 goto out;
210 }
211
212 old_irr = ioapic->irr;
213 ioapic->irr |= mask;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800214 if (edge)
215 ioapic->irr_delivered &= ~mask;
Paolo Bonzini44847de2014-03-18 12:00:14 +0100216 if ((edge && old_irr == ioapic->irr) ||
217 (!edge && entry.fields.remote_irr)) {
218 ret = 0;
219 goto out;
220 }
221
222 ret = ioapic_service(ioapic, irq, line_status);
223
224out:
225 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
226 return ret;
227}
228
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100229static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
230{
231 u32 idx;
232
233 rtc_irq_eoi_tracking_reset(ioapic);
234 for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
235 ioapic_set_irq(ioapic, idx, 1, true);
236
237 kvm_rtc_eoi_tracking_restore_all(ioapic);
238}
239
240
Andrey Smetanin63086302015-11-10 15:36:32 +0300241void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, ulong *ioapic_handled_vectors)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800242{
243 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100244 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800245 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800246 int index;
247
248 spin_lock(&ioapic->lock);
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100249
250 /* Make sure we see any missing RTC EOI */
251 if (test_bit(vcpu->vcpu_id, dest_map->map))
252 __set_bit(dest_map->vectors[vcpu->vcpu_id],
253 ioapic_handled_vectors);
254
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,
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +0200261 e->fields.dest_id, e->fields.dest_mode) ||
Nikita Leshenko2f9e94e2017-11-05 15:52:29 +0200262 kvm_apic_pending_eoi(vcpu, e->fields.vector))
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800263 __set_bit(e->fields.vector,
Andrey Smetanin63086302015-11-10 15:36:32 +0300264 ioapic_handled_vectors);
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;
Nikita Leshenko876b31f2017-11-05 15:52:33 +0200283 int old_remote_irr, old_delivery_status;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300284 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300285
286 switch (ioapic->ioregsel) {
287 case IOAPIC_REG_VERSION:
288 /* Writes are ignored. */
289 break;
290
291 case IOAPIC_REG_APIC_ID:
292 ioapic->id = (val >> 24) & 0xf;
293 break;
294
295 case IOAPIC_REG_ARB_ID:
296 break;
297
298 default:
299 index = (ioapic->ioregsel - 0x10) >> 1;
300
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200301 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300302 if (index >= IOAPIC_NUM_PINS)
303 return;
Marios Pomonis63674992019-12-11 12:47:45 -0800304 index = array_index_nospec(index, IOAPIC_NUM_PINS);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300305 e = &ioapic->redirtbl[index];
306 mask_before = e->fields.mask;
Nikita Leshenko876b31f2017-11-05 15:52:33 +0200307 /* Preserve read-only fields */
308 old_remote_irr = e->fields.remote_irr;
309 old_delivery_status = e->fields.delivery_status;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300310 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300311 e->bits &= 0xffffffff;
312 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300313 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300314 e->bits &= ~0xffffffffULL;
315 e->bits |= (u32) val;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300316 }
Nikita Leshenko876b31f2017-11-05 15:52:33 +0200317 e->fields.remote_irr = old_remote_irr;
318 e->fields.delivery_status = old_delivery_status;
Nikita Leshenkoa9f2c162017-11-05 15:52:32 +0200319
320 /*
321 * Some OSes (Linux, Xen) assume that Remote IRR bit will
322 * be cleared by IOAPIC hardware when the entry is configured
323 * as edge-triggered. This behavior is used to simulate an
324 * explicit EOI on IOAPICs that don't have the EOI register.
325 */
326 if (e->fields.trig_mode == IOAPIC_EDGE_TRIG)
327 e->fields.remote_irr = 0;
328
Gleb Natapov70f93da2009-07-05 18:48:12 +0300329 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200330 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300331 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300332 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300333 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800334 ioapic_service(ioapic, index, false);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800335 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300336 break;
337 }
338}
339
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100340static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300341{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200342 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
343 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800344 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300345
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100346 if (entry->fields.mask)
347 return -1;
348
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300349 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200350 "vector=%x trig_mode=%x\n",
Liu Yuana38f84c2011-04-21 14:53:57 +0800351 entry->fields.dest_id, entry->fields.dest_mode,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200352 entry->fields.delivery_mode, entry->fields.vector,
353 entry->fields.trig_mode);
354
355 irqe.dest_id = entry->fields.dest_id;
356 irqe.vector = entry->fields.vector;
357 irqe.dest_mode = entry->fields.dest_mode;
358 irqe.trig_mode = entry->fields.trig_mode;
359 irqe.delivery_mode = entry->fields.delivery_mode << 8;
360 irqe.level = 1;
361 irqe.shorthand = 0;
James Sullivan93bbf0b2015-03-18 19:26:03 -0600362 irqe.msi_redir_hint = false;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300363
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100364 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
Wincy Van5bda6ee2014-12-24 11:14:29 +0800365 ioapic->irr_delivered |= 1 << irq;
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100366
Yang Zhang2c2bf012013-04-11 19:21:41 +0800367 if (irq == RTC_GSI && line_status) {
Paolo Bonzini4009b242014-03-28 20:41:51 +0100368 /*
369 * pending_eoi cannot ever become negative (see
370 * rtc_status_pending_eoi_check_valid) and the caller
371 * ensures that it is only called if it is >= zero, namely
372 * if rtc_irq_check_coalesced returns false).
373 */
Yang Zhang2c2bf012013-04-11 19:21:41 +0800374 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
375 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100376 &ioapic->rtc_status.dest_map);
Paolo Bonzini5678de3f2014-03-28 20:41:50 +0100377 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800378 } else
379 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
380
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100381 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
382 entry->fields.remote_irr = 1;
383
Yang Zhang2c2bf012013-04-11 19:21:41 +0800384 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300385}
386
Michael S. Tsirkin1a577b72012-07-19 13:45:20 +0300387int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800388 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300389{
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300390 int ret, irq_level;
391
392 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300393
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300394 spin_lock(&ioapic->lock);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300395 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
396 irq_source_id, level);
Paolo Bonzini44847de2014-03-18 12:00:14 +0100397 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800398
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300399 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300400
Gleb Natapov49256632009-02-04 17:28:14 +0200401 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300402}
403
Michael S. Tsirkin1a577b72012-07-19 13:45:20 +0300404void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
405{
406 int i;
407
408 spin_lock(&ioapic->lock);
409 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
410 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
411 spin_unlock(&ioapic->lock);
412}
413
Zhang Haoyu184564e2014-09-11 16:47:04 +0800414static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
415{
416 int i;
417 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
418 eoi_inject.work);
419 spin_lock(&ioapic->lock);
420 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
421 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
422
423 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
424 continue;
425
426 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
427 ioapic_service(ioapic, i, false);
428 }
429 spin_unlock(&ioapic->lock);
430}
431
432#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
433
Yang Zhang1fcc7892013-04-11 19:21:35 +0800434static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
435 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300436{
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100437 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100438 struct kvm_lapic *apic = vcpu->arch.apic;
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100439 int i;
440
441 /* RTC special handling */
442 if (test_bit(vcpu->vcpu_id, dest_map->map) &&
443 vector == dest_map->vectors[vcpu->vcpu_id])
444 rtc_irq_eoi(ioapic, vcpu);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300445
Gleb Natapoveba02262009-08-24 11:54:25 +0300446 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
447 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300448
Gleb Natapoveba02262009-08-24 11:54:25 +0300449 if (ent->fields.vector != vector)
450 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300451
Gleb Natapoveba02262009-08-24 11:54:25 +0300452 /*
453 * We are dropping lock while calling ack notifiers because ack
454 * notifier callbacks for assigned devices call into IOAPIC
455 * recursively. Since remote_irr is cleared only after call
456 * to notifiers if the same vector will be delivered while lock
457 * is dropped it will be put into irr and will be delivered
458 * after ack notifier returns.
459 */
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300460 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300461 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300462 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300463
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100464 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500465 kvm_lapic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
Gleb Natapoveba02262009-08-24 11:54:25 +0300466 continue;
467
Marcelo Tosattif5244722008-07-26 17:01:00 -0300468 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
469 ent->fields.remote_irr = 0;
Zhang Haoyu184564e2014-09-11 16:47:04 +0800470 if (!ent->fields.mask && (ioapic->irr & (1 << i))) {
471 ++ioapic->irq_eoi[i];
472 if (ioapic->irq_eoi[i] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
473 /*
474 * Real hardware does not deliver the interrupt
475 * immediately during eoi broadcast, and this
476 * lets a buggy guest make slow progress
477 * even if it does not correctly handle a
478 * level-triggered interrupt. Emulate this
479 * behavior if we detect an interrupt storm.
480 */
481 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
482 ioapic->irq_eoi[i] = 0;
483 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
484 } else {
485 ioapic_service(ioapic, i, false);
486 }
487 } else {
488 ioapic->irq_eoi[i] = 0;
489 }
Marcelo Tosattif5244722008-07-26 17:01:00 -0300490 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300491}
492
Yang Zhang1fcc7892013-04-11 19:21:35 +0800493void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700494{
Yang Zhang1fcc7892013-04-11 19:21:35 +0800495 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700496
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300497 spin_lock(&ioapic->lock);
Yang Zhang1fcc7892013-04-11 19:21:35 +0800498 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300499 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700500}
501
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400502static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
503{
504 return container_of(dev, struct kvm_ioapic, dev);
505}
506
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300507static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300508{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300509 return ((addr >= ioapic->base_address &&
510 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
511}
512
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000513static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
514 gpa_t addr, int len, void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300515{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400516 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300517 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300518 if (!ioapic_in_range(ioapic, addr))
519 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300520
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200521 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300522 ASSERT(!(addr & 0xf)); /* check alignment */
523
524 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300525 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300526 switch (addr) {
527 case IOAPIC_REG_SELECT:
528 result = ioapic->ioregsel;
529 break;
530
531 case IOAPIC_REG_WINDOW:
532 result = ioapic_read_indirect(ioapic, addr, len);
533 break;
534
535 default:
536 result = 0;
537 break;
538 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300539 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300540
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300541 switch (len) {
542 case 8:
543 *(u64 *) val = result;
544 break;
545 case 1:
546 case 2:
547 case 4:
548 memcpy(val, (char *)&result, len);
549 break;
550 default:
551 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
552 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300553 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300554}
555
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000556static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
557 gpa_t addr, int len, const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300558{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400559 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300560 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300561 if (!ioapic_in_range(ioapic, addr))
562 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300563
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200564 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
565 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300566 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300567
Julian Stecklinad77fe632011-11-23 13:54:30 +0100568 switch (len) {
569 case 8:
570 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300571 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100572 break;
573 case 2:
574 data = *(u16 *) val;
575 break;
576 case 1:
577 data = *(u8 *) val;
578 break;
579 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300580 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300581 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300582 }
583
584 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300585 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300586 switch (addr) {
587 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100588 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300589 break;
590
591 case IOAPIC_REG_WINDOW:
592 ioapic_write_indirect(ioapic, data);
593 break;
594
595 default:
596 break;
597 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300598 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300599 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300600}
601
Stephen Hemminger79408762013-12-29 12:12:29 -0800602static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
Eddie Dong8c392692007-10-10 12:15:54 +0200603{
604 int i;
605
Zhang Haoyu184564e2014-09-11 16:47:04 +0800606 cancel_delayed_work_sync(&ioapic->eoi_inject);
Eddie Dong8c392692007-10-10 12:15:54 +0200607 for (i = 0; i < IOAPIC_NUM_PINS; i++)
608 ioapic->redirtbl[i].fields.mask = 1;
609 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
610 ioapic->ioregsel = 0;
611 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800612 ioapic->irr_delivered = 0;
Eddie Dong8c392692007-10-10 12:15:54 +0200613 ioapic->id = 0;
Jiri Slaby86786542016-10-13 17:45:20 +0200614 memset(ioapic->irq_eoi, 0x00, sizeof(ioapic->irq_eoi));
Yang Zhang10606912013-04-11 19:21:38 +0800615 rtc_irq_eoi_tracking_reset(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200616}
617
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400618static const struct kvm_io_device_ops ioapic_mmio_ops = {
619 .read = ioapic_mmio_read,
620 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400621};
622
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300623int kvm_ioapic_init(struct kvm *kvm)
624{
625 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400626 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300627
628 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
629 if (!ioapic)
630 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300631 spin_lock_init(&ioapic->lock);
Zhang Haoyu184564e2014-09-11 16:47:04 +0800632 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800633 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200634 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400635 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300636 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200637 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300638 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
639 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200640 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800641 if (ret < 0) {
642 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400643 kfree(ioapic);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200644 return ret;
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800645 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400646
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200647 kvm_vcpu_request_scan_ioapic(kvm);
Gregory Haskins090b7af2009-07-07 17:08:44 -0400648 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300649}
Avi Kivity75858a82009-01-04 17:10:50 +0200650
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800651void kvm_ioapic_destroy(struct kvm *kvm)
652{
653 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
654
Zhang Haoyu184564e2014-09-11 16:47:04 +0800655 cancel_delayed_work_sync(&ioapic->eoi_inject);
Julia Lawalld90e3a32015-04-27 22:35:34 +0200656 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
657 kvm->arch.vioapic = NULL;
658 kfree(ioapic);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800659}
660
Gleb Natapoveba02262009-08-24 11:54:25 +0300661int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
662{
663 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
664 if (!ioapic)
665 return -EINVAL;
666
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300667 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300668 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Wincy Van5bda6ee2014-12-24 11:14:29 +0800669 state->irr &= ~ioapic->irr_delivered;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300670 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300671 return 0;
672}
673
674int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
675{
676 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
677 if (!ioapic)
678 return -EINVAL;
679
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300680 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300681 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100682 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800683 ioapic->irr_delivered = 0;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800684 kvm_vcpu_request_scan_ioapic(kvm);
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100685 kvm_ioapic_inject_all(ioapic, state->irr);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300686 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300687 return 0;
688}