blob: 698969e18fe3529e51426431bb6804dc5754a582 [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 Pomonis8c864052019-12-11 12:47:44 -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
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +010049static int ioapic_service(struct kvm_ioapic *vioapic, int irq,
Yang Zhangaa2fbe62013-04-11 19:21:40 +080050 bool line_status);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030051
Suravee Suthikulpanitf458d032019-11-14 14:15:19 -060052static void kvm_ioapic_update_eoi_one(struct kvm_vcpu *vcpu,
53 struct kvm_ioapic *ioapic,
54 int trigger_mode,
55 int pin);
56
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030057static 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 Pomonis8c864052019-12-11 12:47:44 -080077 u64 redir_content = ~0ULL;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030078
Marios Pomonis8c864052019-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];
Peter Xu5c69d5c2019-12-04 20:07:20 +0100118 if (!kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
119 e->fields.dest_id,
120 kvm_lapic_irq_dest_mode(!!e->fields.dest_mode)))
Yang Zhang10606912013-04-11 19:21:38 +0800121 return;
122
123 new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200124 old_val = test_bit(vcpu->vcpu_id, dest_map->map);
Yang Zhang10606912013-04-11 19:21:38 +0800125
126 if (new_val == old_val)
127 return;
128
129 if (new_val) {
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200130 __set_bit(vcpu->vcpu_id, dest_map->map);
131 dest_map->vectors[vcpu->vcpu_id] = e->fields.vector;
Yang Zhang10606912013-04-11 19:21:38 +0800132 ioapic->rtc_status.pending_eoi++;
133 } else {
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200134 __clear_bit(vcpu->vcpu_id, dest_map->map);
Yang Zhang10606912013-04-11 19:21:38 +0800135 ioapic->rtc_status.pending_eoi--;
Paolo Bonzini4009b242014-03-28 20:41:51 +0100136 rtc_status_pending_eoi_check_valid(ioapic);
Yang Zhang10606912013-04-11 19:21:38 +0800137 }
Yang Zhang10606912013-04-11 19:21:38 +0800138}
139
140void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
141{
142 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
143
144 spin_lock(&ioapic->lock);
145 __rtc_irq_eoi_tracking_restore_one(vcpu);
146 spin_unlock(&ioapic->lock);
147}
148
149static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
150{
151 struct kvm_vcpu *vcpu;
152 int i;
153
154 if (RTC_GSI >= IOAPIC_NUM_PINS)
155 return;
156
157 rtc_irq_eoi_tracking_reset(ioapic);
158 kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
159 __rtc_irq_eoi_tracking_restore_one(vcpu);
160}
161
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600162static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu,
163 int vector)
Yang Zhang2c2bf012013-04-11 19:21:41 +0800164{
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600165 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
166
167 /* RTC special handling */
168 if (test_bit(vcpu->vcpu_id, dest_map->map) &&
169 (vector == dest_map->vectors[vcpu->vcpu_id]) &&
170 (test_and_clear_bit(vcpu->vcpu_id,
171 ioapic->rtc_status.dest_map.map))) {
Yang Zhang2c2bf012013-04-11 19:21:41 +0800172 --ioapic->rtc_status.pending_eoi;
Paolo Bonzini4009b242014-03-28 20:41:51 +0100173 rtc_status_pending_eoi_check_valid(ioapic);
174 }
Yang Zhang2c2bf012013-04-11 19:21:41 +0800175}
176
177static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
178{
179 if (ioapic->rtc_status.pending_eoi > 0)
180 return true; /* coalesced */
181
182 return false;
183}
184
Suravee Suthikulpanitf458d032019-11-14 14:15:19 -0600185static void ioapic_lazy_update_eoi(struct kvm_ioapic *ioapic, int irq)
186{
187 int i;
188 struct kvm_vcpu *vcpu;
189 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
190
191 kvm_for_each_vcpu(i, vcpu, ioapic->kvm) {
192 if (!kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
193 entry->fields.dest_id,
194 entry->fields.dest_mode) ||
195 kvm_apic_pending_eoi(vcpu, entry->fields.vector))
196 continue;
197
198 /*
199 * If no longer has pending EOI in LAPICs, update
Vitaly Kuznetsov77377062020-10-24 04:13:24 -0400200 * EOI for this vector.
Suravee Suthikulpanitf458d032019-11-14 14:15:19 -0600201 */
202 rtc_irq_eoi(ioapic, vcpu, entry->fields.vector);
Suravee Suthikulpanitf458d032019-11-14 14:15:19 -0600203 break;
204 }
205}
206
Paolo Bonzini44847de2014-03-18 12:00:14 +0100207static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
208 int irq_level, bool line_status)
209{
210 union kvm_ioapic_redirect_entry entry;
211 u32 mask = 1 << irq;
212 u32 old_irr;
213 int edge, ret;
214
215 entry = ioapic->redirtbl[irq];
216 edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
217
218 if (!irq_level) {
219 ioapic->irr &= ~mask;
220 ret = 1;
221 goto out;
222 }
223
224 /*
Paolo Bonzini8be8f932020-05-04 12:19:45 -0400225 * AMD SVM AVIC accelerate EOI write iff the interrupt is edge
226 * triggered, in which case the in-kernel IOAPIC will not be able
227 * to receive the EOI. In this case, we do a lazy update of the
228 * pending EOI when trying to set IOAPIC irq.
Suravee Suthikulpanitf458d032019-11-14 14:15:19 -0600229 */
Paolo Bonzini8be8f932020-05-04 12:19:45 -0400230 if (edge && kvm_apicv_activated(ioapic->kvm))
Suravee Suthikulpanitf458d032019-11-14 14:15:19 -0600231 ioapic_lazy_update_eoi(ioapic, irq);
232
233 /*
Paolo Bonzini44847de2014-03-18 12:00:14 +0100234 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
235 * this only happens if a previous edge has not been delivered due
Miaohe Lin00116792019-12-11 14:26:23 +0800236 * to masking. For level interrupts, the remote_irr field tells
Paolo Bonzini44847de2014-03-18 12:00:14 +0100237 * us if the interrupt is waiting for an EOI.
238 *
239 * RTC is special: it is edge-triggered, but userspace likes to know
240 * if it has been already ack-ed via EOI because coalesced RTC
241 * interrupts lead to time drift in Windows guests. So we track
242 * EOI manually for the RTC interrupt.
243 */
244 if (irq == RTC_GSI && line_status &&
245 rtc_irq_check_coalesced(ioapic)) {
246 ret = 0;
247 goto out;
248 }
249
250 old_irr = ioapic->irr;
251 ioapic->irr |= mask;
Nikita Leshenko7d225362017-11-05 15:52:31 +0200252 if (edge) {
Wincy Van5bda6ee2014-12-24 11:14:29 +0800253 ioapic->irr_delivered &= ~mask;
Nikita Leshenko7d225362017-11-05 15:52:31 +0200254 if (old_irr == ioapic->irr) {
255 ret = 0;
256 goto out;
257 }
Paolo Bonzini44847de2014-03-18 12:00:14 +0100258 }
259
260 ret = ioapic_service(ioapic, irq, line_status);
261
262out:
263 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
264 return ret;
265}
266
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100267static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
268{
269 u32 idx;
270
271 rtc_irq_eoi_tracking_reset(ioapic);
272 for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
273 ioapic_set_irq(ioapic, idx, 1, true);
274
275 kvm_rtc_eoi_tracking_restore_all(ioapic);
276}
277
278
Andrey Smetanin63086302015-11-10 15:36:32 +0300279void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, ulong *ioapic_handled_vectors)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800280{
281 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100282 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800283 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800284 int index;
285
286 spin_lock(&ioapic->lock);
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100287
288 /* Make sure we see any missing RTC EOI */
289 if (test_bit(vcpu->vcpu_id, dest_map->map))
290 __set_bit(dest_map->vectors[vcpu->vcpu_id],
291 ioapic_handled_vectors);
292
Yang Zhangc7c9c562013-01-25 10:18:51 +0800293 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
294 e = &ioapic->redirtbl[index];
Paolo Bonzini0f6c0a72014-07-30 18:07:24 +0200295 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
296 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
297 index == RTC_GSI) {
Peter Xu5c69d5c2019-12-04 20:07:20 +0100298 u16 dm = kvm_lapic_irq_dest_mode(!!e->fields.dest_mode);
299
300 if (kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
301 e->fields.dest_id, dm) ||
Nikita Leshenko0fc5a362017-11-05 15:52:29 +0200302 kvm_apic_pending_eoi(vcpu, e->fields.vector))
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800303 __set_bit(e->fields.vector,
Andrey Smetanin63086302015-11-10 15:36:32 +0300304 ioapic_handled_vectors);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800305 }
306 }
307 spin_unlock(&ioapic->lock);
308}
Yang Zhangc7c9c562013-01-25 10:18:51 +0800309
David Hildenbrand993225a2017-04-07 10:50:33 +0200310void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800311{
David Hildenbrand0bceb152017-04-07 10:50:25 +0200312 if (!ioapic_in_kernel(kvm))
Yang Zhangc7c9c562013-01-25 10:18:51 +0800313 return;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800314 kvm_make_scan_ioapic_request(kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800315}
316
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300317static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
318{
319 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200320 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300321 union kvm_ioapic_redirect_entry *e;
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -0500322 unsigned long vcpu_bitmap;
323 int old_remote_irr, old_delivery_status, old_dest_id, old_dest_mode;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300324
325 switch (ioapic->ioregsel) {
326 case IOAPIC_REG_VERSION:
327 /* Writes are ignored. */
328 break;
329
330 case IOAPIC_REG_APIC_ID:
331 ioapic->id = (val >> 24) & 0xf;
332 break;
333
334 case IOAPIC_REG_ARB_ID:
335 break;
336
337 default:
338 index = (ioapic->ioregsel - 0x10) >> 1;
339
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300340 if (index >= IOAPIC_NUM_PINS)
341 return;
Marios Pomonis67056452019-12-11 12:47:45 -0800342 index = array_index_nospec(index, IOAPIC_NUM_PINS);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300343 e = &ioapic->redirtbl[index];
344 mask_before = e->fields.mask;
Nikita Leshenkob200dded2017-11-05 15:52:33 +0200345 /* Preserve read-only fields */
346 old_remote_irr = e->fields.remote_irr;
347 old_delivery_status = e->fields.delivery_status;
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -0500348 old_dest_id = e->fields.dest_id;
349 old_dest_mode = e->fields.dest_mode;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300350 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300351 e->bits &= 0xffffffff;
352 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300353 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300354 e->bits &= ~0xffffffffULL;
355 e->bits |= (u32) val;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300356 }
Nikita Leshenkob200dded2017-11-05 15:52:33 +0200357 e->fields.remote_irr = old_remote_irr;
358 e->fields.delivery_status = old_delivery_status;
Nikita Leshenkoa8bfec22017-11-05 15:52:32 +0200359
360 /*
361 * Some OSes (Linux, Xen) assume that Remote IRR bit will
362 * be cleared by IOAPIC hardware when the entry is configured
363 * as edge-triggered. This behavior is used to simulate an
364 * explicit EOI on IOAPICs that don't have the EOI register.
365 */
366 if (e->fields.trig_mode == IOAPIC_EDGE_TRIG)
367 e->fields.remote_irr = 0;
368
Gleb Natapov70f93da2009-07-05 18:48:12 +0300369 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200370 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300371 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300372 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300373 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800374 ioapic_service(ioapic, index, false);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -0500375 if (e->fields.delivery_mode == APIC_DM_FIXED) {
376 struct kvm_lapic_irq irq;
377
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -0500378 irq.vector = e->fields.vector;
379 irq.delivery_mode = e->fields.delivery_mode << 8;
Peter Xuc96001c2019-12-04 20:07:18 +0100380 irq.dest_mode =
381 kvm_lapic_irq_dest_mode(!!e->fields.dest_mode);
Nitesh Narayan Lal0c220562020-03-13 09:16:24 -0400382 irq.level = false;
383 irq.trig_mode = e->fields.trig_mode;
384 irq.shorthand = APIC_DEST_NOSHORT;
385 irq.dest_id = e->fields.dest_id;
386 irq.msi_redir_hint = false;
Nitesh Narayan Lal9a2ae9f2019-11-20 07:12:24 -0500387 bitmap_zero(&vcpu_bitmap, 16);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -0500388 kvm_bitmap_or_dest_vcpus(ioapic->kvm, &irq,
389 &vcpu_bitmap);
390 if (old_dest_mode != e->fields.dest_mode ||
391 old_dest_id != e->fields.dest_id) {
392 /*
393 * Update vcpu_bitmap with vcpus specified in
394 * the previous request as well. This is done to
395 * keep ioapic_handled_vectors synchronized.
396 */
397 irq.dest_id = old_dest_id;
Peter Xuc96001c2019-12-04 20:07:18 +0100398 irq.dest_mode =
399 kvm_lapic_irq_dest_mode(
400 !!e->fields.dest_mode);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -0500401 kvm_bitmap_or_dest_vcpus(ioapic->kvm, &irq,
402 &vcpu_bitmap);
403 }
404 kvm_make_scan_ioapic_request_mask(ioapic->kvm,
405 &vcpu_bitmap);
406 } else {
407 kvm_make_scan_ioapic_request(ioapic->kvm);
408 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300409 break;
410 }
411}
412
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100413static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300414{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200415 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
416 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800417 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300418
Nikita Leshenkoda3fe7b2017-11-05 15:52:30 +0200419 if (entry->fields.mask ||
420 (entry->fields.trig_mode == IOAPIC_LEVEL_TRIG &&
421 entry->fields.remote_irr))
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100422 return -1;
423
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200424 irqe.dest_id = entry->fields.dest_id;
425 irqe.vector = entry->fields.vector;
Peter Xuc96001c2019-12-04 20:07:18 +0100426 irqe.dest_mode = kvm_lapic_irq_dest_mode(!!entry->fields.dest_mode);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200427 irqe.trig_mode = entry->fields.trig_mode;
428 irqe.delivery_mode = entry->fields.delivery_mode << 8;
429 irqe.level = 1;
Peter Xu150a84f2019-12-04 20:07:21 +0100430 irqe.shorthand = APIC_DEST_NOSHORT;
James Sullivan93bbf0b2015-03-18 19:26:03 -0600431 irqe.msi_redir_hint = false;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300432
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100433 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
Wincy Van5bda6ee2014-12-24 11:14:29 +0800434 ioapic->irr_delivered |= 1 << irq;
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100435
Yang Zhang2c2bf012013-04-11 19:21:41 +0800436 if (irq == RTC_GSI && line_status) {
Paolo Bonzini4009b242014-03-28 20:41:51 +0100437 /*
438 * pending_eoi cannot ever become negative (see
439 * rtc_status_pending_eoi_check_valid) and the caller
440 * ensures that it is only called if it is >= zero, namely
441 * if rtc_irq_check_coalesced returns false).
442 */
Yang Zhang2c2bf012013-04-11 19:21:41 +0800443 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
444 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100445 &ioapic->rtc_status.dest_map);
Paolo Bonzini5678de3f2014-03-28 20:41:50 +0100446 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800447 } else
448 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
449
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100450 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
451 entry->fields.remote_irr = 1;
452
Yang Zhang2c2bf012013-04-11 19:21:41 +0800453 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300454}
455
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300456int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800457 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300458{
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300459 int ret, irq_level;
460
461 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300462
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300463 spin_lock(&ioapic->lock);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300464 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
465 irq_source_id, level);
Paolo Bonzini44847de2014-03-18 12:00:14 +0100466 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800467
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300468 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300469
Gleb Natapov49256632009-02-04 17:28:14 +0200470 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300471}
472
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300473void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
474{
475 int i;
476
477 spin_lock(&ioapic->lock);
478 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
479 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
480 spin_unlock(&ioapic->lock);
481}
482
Zhang Haoyu184564e2014-09-11 16:47:04 +0800483static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
484{
485 int i;
486 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
487 eoi_inject.work);
488 spin_lock(&ioapic->lock);
489 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
490 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
491
492 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
493 continue;
494
495 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
496 ioapic_service(ioapic, i, false);
497 }
498 spin_unlock(&ioapic->lock);
499}
500
501#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600502static void kvm_ioapic_update_eoi_one(struct kvm_vcpu *vcpu,
503 struct kvm_ioapic *ioapic,
504 int trigger_mode,
505 int pin)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300506{
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100507 struct kvm_lapic *apic = vcpu->arch.apic;
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600508 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[pin];
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100509
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600510 /*
511 * We are dropping lock while calling ack notifiers because ack
512 * notifier callbacks for assigned devices call into IOAPIC
513 * recursively. Since remote_irr is cleared only after call
514 * to notifiers if the same vector will be delivered while lock
515 * is dropped it will be put into irr and will be delivered
516 * after ack notifier returns.
517 */
518 spin_unlock(&ioapic->lock);
519 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin);
520 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300521
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600522 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
523 kvm_lapic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
524 return;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300525
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600526 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
527 ent->fields.remote_irr = 0;
528 if (!ent->fields.mask && (ioapic->irr & (1 << pin))) {
529 ++ioapic->irq_eoi[pin];
530 if (ioapic->irq_eoi[pin] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
531 /*
532 * Real hardware does not deliver the interrupt
533 * immediately during eoi broadcast, and this
534 * lets a buggy guest make slow progress
535 * even if it does not correctly handle a
536 * level-triggered interrupt. Emulate this
537 * behavior if we detect an interrupt storm.
538 */
539 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
540 ioapic->irq_eoi[pin] = 0;
541 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
Zhang Haoyu184564e2014-09-11 16:47:04 +0800542 } else {
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600543 ioapic_service(ioapic, pin, false);
Zhang Haoyu184564e2014-09-11 16:47:04 +0800544 }
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600545 } else {
546 ioapic->irq_eoi[pin] = 0;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300547 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300548}
549
Yang Zhang1fcc7892013-04-11 19:21:35 +0800550void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700551{
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600552 int i;
Yang Zhang1fcc7892013-04-11 19:21:35 +0800553 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700554
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300555 spin_lock(&ioapic->lock);
Suravee Suthikulpanit1ec24052019-11-14 14:15:18 -0600556 rtc_irq_eoi(ioapic, vcpu, vector);
557 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
558 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
559
560 if (ent->fields.vector != vector)
561 continue;
562 kvm_ioapic_update_eoi_one(vcpu, ioapic, trigger_mode, i);
563 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300564 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700565}
566
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400567static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
568{
569 return container_of(dev, struct kvm_ioapic, dev);
570}
571
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300572static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300573{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300574 return ((addr >= ioapic->base_address &&
575 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
576}
577
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000578static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
579 gpa_t addr, int len, void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300580{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400581 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300582 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300583 if (!ioapic_in_range(ioapic, addr))
584 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300585
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300586 ASSERT(!(addr & 0xf)); /* check alignment */
587
588 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300589 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300590 switch (addr) {
591 case IOAPIC_REG_SELECT:
592 result = ioapic->ioregsel;
593 break;
594
595 case IOAPIC_REG_WINDOW:
596 result = ioapic_read_indirect(ioapic, addr, len);
597 break;
598
599 default:
600 result = 0;
601 break;
602 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300603 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300604
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300605 switch (len) {
606 case 8:
607 *(u64 *) val = result;
608 break;
609 case 1:
610 case 2:
611 case 4:
612 memcpy(val, (char *)&result, len);
613 break;
614 default:
615 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
616 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300617 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300618}
619
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000620static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
621 gpa_t addr, int len, const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300622{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400623 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300624 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300625 if (!ioapic_in_range(ioapic, addr))
626 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300627
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300628 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300629
Julian Stecklinad77fe632011-11-23 13:54:30 +0100630 switch (len) {
631 case 8:
632 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300633 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100634 break;
635 case 2:
636 data = *(u16 *) val;
637 break;
638 case 1:
639 data = *(u8 *) val;
640 break;
641 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300642 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300643 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300644 }
645
646 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300647 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300648 switch (addr) {
649 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100650 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300651 break;
652
653 case IOAPIC_REG_WINDOW:
654 ioapic_write_indirect(ioapic, data);
655 break;
656
657 default:
658 break;
659 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300660 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300661 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300662}
663
Stephen Hemminger79408762013-12-29 12:12:29 -0800664static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
Eddie Dong8c392692007-10-10 12:15:54 +0200665{
666 int i;
667
Zhang Haoyu184564e2014-09-11 16:47:04 +0800668 cancel_delayed_work_sync(&ioapic->eoi_inject);
Eddie Dong8c392692007-10-10 12:15:54 +0200669 for (i = 0; i < IOAPIC_NUM_PINS; i++)
670 ioapic->redirtbl[i].fields.mask = 1;
671 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
672 ioapic->ioregsel = 0;
673 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800674 ioapic->irr_delivered = 0;
Eddie Dong8c392692007-10-10 12:15:54 +0200675 ioapic->id = 0;
Jiri Slaby86786542016-10-13 17:45:20 +0200676 memset(ioapic->irq_eoi, 0x00, sizeof(ioapic->irq_eoi));
Yang Zhang10606912013-04-11 19:21:38 +0800677 rtc_irq_eoi_tracking_reset(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200678}
679
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400680static const struct kvm_io_device_ops ioapic_mmio_ops = {
681 .read = ioapic_mmio_read,
682 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400683};
684
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300685int kvm_ioapic_init(struct kvm *kvm)
686{
687 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400688 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300689
Ben Gardon254272c2019-02-11 11:02:50 -0800690 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL_ACCOUNT);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300691 if (!ioapic)
692 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300693 spin_lock_init(&ioapic->lock);
Zhang Haoyu184564e2014-09-11 16:47:04 +0800694 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800695 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200696 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400697 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300698 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200699 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300700 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
701 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200702 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800703 if (ret < 0) {
704 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400705 kfree(ioapic);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800706 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400707
708 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300709}
Avi Kivity75858a82009-01-04 17:10:50 +0200710
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800711void kvm_ioapic_destroy(struct kvm *kvm)
712{
713 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
714
Peter Xu950712e2017-03-15 16:01:18 +0800715 if (!ioapic)
716 return;
717
Zhang Haoyu184564e2014-09-11 16:47:04 +0800718 cancel_delayed_work_sync(&ioapic->eoi_inject);
David Hildenbrand49f520b2017-04-07 10:50:29 +0200719 mutex_lock(&kvm->slots_lock);
Julia Lawalld90e3a32015-04-27 22:35:34 +0200720 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
David Hildenbrand49f520b2017-04-07 10:50:29 +0200721 mutex_unlock(&kvm->slots_lock);
Julia Lawalld90e3a32015-04-27 22:35:34 +0200722 kvm->arch.vioapic = NULL;
723 kfree(ioapic);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800724}
725
David Hildenbrand33392b42017-04-07 10:50:27 +0200726void kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
Gleb Natapoveba02262009-08-24 11:54:25 +0300727{
David Hildenbrand0191e922017-04-07 10:50:24 +0200728 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
Gleb Natapoveba02262009-08-24 11:54:25 +0300729
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300730 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300731 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Wincy Van5bda6ee2014-12-24 11:14:29 +0800732 state->irr &= ~ioapic->irr_delivered;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300733 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300734}
735
David Hildenbrand33392b42017-04-07 10:50:27 +0200736void kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
Gleb Natapoveba02262009-08-24 11:54:25 +0300737{
David Hildenbrand0191e922017-04-07 10:50:24 +0200738 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
Gleb Natapoveba02262009-08-24 11:54:25 +0300739
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300740 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300741 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100742 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800743 ioapic->irr_delivered = 0;
David Hildenbrandca8ab3f2017-04-07 10:50:32 +0200744 kvm_make_scan_ioapic_request(kvm);
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100745 kvm_ioapic_inject_all(ioapic, state->irr);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300746 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300747}