blob: 5f810bb80802ce1c7640e7616786e86fa596a738 [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;
Radim Krčmář81cdb252016-11-23 21:15:27 +010097 bitmap_zero(ioapic->rtc_status.dest_map.map, KVM_MAX_VCPU_ID);
Yang Zhang10606912013-04-11 19:21:38 +080098}
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;
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200112 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
Yang Zhang10606912013-04-11 19:21:38 +0800113 union kvm_ioapic_redirect_entry *e;
114
115 e = &ioapic->redirtbl[RTC_GSI];
116 if (!kvm_apic_match_dest(vcpu, NULL, 0, e->fields.dest_id,
117 e->fields.dest_mode))
118 return;
119
120 new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200121 old_val = test_bit(vcpu->vcpu_id, dest_map->map);
Yang Zhang10606912013-04-11 19:21:38 +0800122
123 if (new_val == old_val)
124 return;
125
126 if (new_val) {
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200127 __set_bit(vcpu->vcpu_id, dest_map->map);
128 dest_map->vectors[vcpu->vcpu_id] = e->fields.vector;
Yang Zhang10606912013-04-11 19:21:38 +0800129 ioapic->rtc_status.pending_eoi++;
130 } else {
Paolo Bonzinib0eaf452016-09-14 23:39:12 +0200131 __clear_bit(vcpu->vcpu_id, dest_map->map);
Yang Zhang10606912013-04-11 19:21:38 +0800132 ioapic->rtc_status.pending_eoi--;
Paolo Bonzini4009b242014-03-28 20:41:51 +0100133 rtc_status_pending_eoi_check_valid(ioapic);
Yang Zhang10606912013-04-11 19:21:38 +0800134 }
Yang Zhang10606912013-04-11 19:21:38 +0800135}
136
137void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
138{
139 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
140
141 spin_lock(&ioapic->lock);
142 __rtc_irq_eoi_tracking_restore_one(vcpu);
143 spin_unlock(&ioapic->lock);
144}
145
146static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
147{
148 struct kvm_vcpu *vcpu;
149 int i;
150
151 if (RTC_GSI >= IOAPIC_NUM_PINS)
152 return;
153
154 rtc_irq_eoi_tracking_reset(ioapic);
155 kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
156 __rtc_irq_eoi_tracking_restore_one(vcpu);
157}
158
Yang Zhang2c2bf012013-04-11 19:21:41 +0800159static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu)
160{
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100161 if (test_and_clear_bit(vcpu->vcpu_id,
162 ioapic->rtc_status.dest_map.map)) {
Yang Zhang2c2bf012013-04-11 19:21:41 +0800163 --ioapic->rtc_status.pending_eoi;
Paolo Bonzini4009b242014-03-28 20:41:51 +0100164 rtc_status_pending_eoi_check_valid(ioapic);
165 }
Yang Zhang2c2bf012013-04-11 19:21:41 +0800166}
167
168static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
169{
170 if (ioapic->rtc_status.pending_eoi > 0)
171 return true; /* coalesced */
172
173 return false;
174}
175
Paolo Bonzini44847de2014-03-18 12:00:14 +0100176static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
177 int irq_level, bool line_status)
178{
179 union kvm_ioapic_redirect_entry entry;
180 u32 mask = 1 << irq;
181 u32 old_irr;
182 int edge, ret;
183
184 entry = ioapic->redirtbl[irq];
185 edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
186
187 if (!irq_level) {
188 ioapic->irr &= ~mask;
189 ret = 1;
190 goto out;
191 }
192
193 /*
194 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
195 * this only happens if a previous edge has not been delivered due
196 * do masking. For level interrupts, the remote_irr field tells
197 * us if the interrupt is waiting for an EOI.
198 *
199 * RTC is special: it is edge-triggered, but userspace likes to know
200 * if it has been already ack-ed via EOI because coalesced RTC
201 * interrupts lead to time drift in Windows guests. So we track
202 * EOI manually for the RTC interrupt.
203 */
204 if (irq == RTC_GSI && line_status &&
205 rtc_irq_check_coalesced(ioapic)) {
206 ret = 0;
207 goto out;
208 }
209
210 old_irr = ioapic->irr;
211 ioapic->irr |= mask;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800212 if (edge)
213 ioapic->irr_delivered &= ~mask;
Paolo Bonzini44847de2014-03-18 12:00:14 +0100214 if ((edge && old_irr == ioapic->irr) ||
215 (!edge && entry.fields.remote_irr)) {
216 ret = 0;
217 goto out;
218 }
219
220 ret = ioapic_service(ioapic, irq, line_status);
221
222out:
223 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
224 return ret;
225}
226
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100227static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
228{
229 u32 idx;
230
231 rtc_irq_eoi_tracking_reset(ioapic);
232 for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
233 ioapic_set_irq(ioapic, idx, 1, true);
234
235 kvm_rtc_eoi_tracking_restore_all(ioapic);
236}
237
238
Andrey Smetanin63086302015-11-10 15:36:32 +0300239void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, ulong *ioapic_handled_vectors)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800240{
241 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100242 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800243 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800244 int index;
245
246 spin_lock(&ioapic->lock);
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100247
248 /* Make sure we see any missing RTC EOI */
249 if (test_bit(vcpu->vcpu_id, dest_map->map))
250 __set_bit(dest_map->vectors[vcpu->vcpu_id],
251 ioapic_handled_vectors);
252
Yang Zhangc7c9c562013-01-25 10:18:51 +0800253 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
254 e = &ioapic->redirtbl[index];
Paolo Bonzini0f6c0a72014-07-30 18:07:24 +0200255 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
256 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
257 index == RTC_GSI) {
Yang Zhang44944d42013-04-07 08:25:18 +0800258 if (kvm_apic_match_dest(vcpu, NULL, 0,
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +0200259 e->fields.dest_id, e->fields.dest_mode) ||
Nikita Leshenko2f9e94e2017-11-05 15:52:29 +0200260 kvm_apic_pending_eoi(vcpu, e->fields.vector))
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800261 __set_bit(e->fields.vector,
Andrey Smetanin63086302015-11-10 15:36:32 +0300262 ioapic_handled_vectors);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800263 }
264 }
265 spin_unlock(&ioapic->lock);
266}
Yang Zhangc7c9c562013-01-25 10:18:51 +0800267
Yang Zhang3d81bc72013-04-11 19:25:13 +0800268void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800269{
270 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
271
Yang Zhang3d81bc72013-04-11 19:25:13 +0800272 if (!ioapic)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800273 return;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800274 kvm_make_scan_ioapic_request(kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800275}
276
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300277static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
278{
279 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200280 bool mask_before, mask_after;
Nikita Leshenko876b31f2017-11-05 15:52:33 +0200281 int old_remote_irr, old_delivery_status;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300282 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300283
284 switch (ioapic->ioregsel) {
285 case IOAPIC_REG_VERSION:
286 /* Writes are ignored. */
287 break;
288
289 case IOAPIC_REG_APIC_ID:
290 ioapic->id = (val >> 24) & 0xf;
291 break;
292
293 case IOAPIC_REG_ARB_ID:
294 break;
295
296 default:
297 index = (ioapic->ioregsel - 0x10) >> 1;
298
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200299 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300300 if (index >= IOAPIC_NUM_PINS)
301 return;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300302 e = &ioapic->redirtbl[index];
303 mask_before = e->fields.mask;
Nikita Leshenko876b31f2017-11-05 15:52:33 +0200304 /* Preserve read-only fields */
305 old_remote_irr = e->fields.remote_irr;
306 old_delivery_status = e->fields.delivery_status;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300307 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300308 e->bits &= 0xffffffff;
309 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300310 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300311 e->bits &= ~0xffffffffULL;
312 e->bits |= (u32) val;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300313 }
Nikita Leshenko876b31f2017-11-05 15:52:33 +0200314 e->fields.remote_irr = old_remote_irr;
315 e->fields.delivery_status = old_delivery_status;
Nikita Leshenkoa9f2c162017-11-05 15:52:32 +0200316
317 /*
318 * Some OSes (Linux, Xen) assume that Remote IRR bit will
319 * be cleared by IOAPIC hardware when the entry is configured
320 * as edge-triggered. This behavior is used to simulate an
321 * explicit EOI on IOAPICs that don't have the EOI register.
322 */
323 if (e->fields.trig_mode == IOAPIC_EDGE_TRIG)
324 e->fields.remote_irr = 0;
325
Gleb Natapov70f93da2009-07-05 18:48:12 +0300326 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200327 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300328 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300329 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300330 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800331 ioapic_service(ioapic, index, false);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800332 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300333 break;
334 }
335}
336
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100337static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300338{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200339 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
340 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800341 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300342
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100343 if (entry->fields.mask)
344 return -1;
345
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300346 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200347 "vector=%x trig_mode=%x\n",
Liu Yuana38f84c2011-04-21 14:53:57 +0800348 entry->fields.dest_id, entry->fields.dest_mode,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200349 entry->fields.delivery_mode, entry->fields.vector,
350 entry->fields.trig_mode);
351
352 irqe.dest_id = entry->fields.dest_id;
353 irqe.vector = entry->fields.vector;
354 irqe.dest_mode = entry->fields.dest_mode;
355 irqe.trig_mode = entry->fields.trig_mode;
356 irqe.delivery_mode = entry->fields.delivery_mode << 8;
357 irqe.level = 1;
358 irqe.shorthand = 0;
James Sullivan93bbf0b2015-03-18 19:26:03 -0600359 irqe.msi_redir_hint = false;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300360
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100361 if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
Wincy Van5bda6ee2014-12-24 11:14:29 +0800362 ioapic->irr_delivered |= 1 << irq;
Paolo Bonzini0bc830b2014-03-18 10:47:17 +0100363
Yang Zhang2c2bf012013-04-11 19:21:41 +0800364 if (irq == RTC_GSI && line_status) {
Paolo Bonzini4009b242014-03-28 20:41:51 +0100365 /*
366 * pending_eoi cannot ever become negative (see
367 * rtc_status_pending_eoi_check_valid) and the caller
368 * ensures that it is only called if it is >= zero, namely
369 * if rtc_irq_check_coalesced returns false).
370 */
Yang Zhang2c2bf012013-04-11 19:21:41 +0800371 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
372 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
Joerg Roedel9e4aabe2016-02-29 16:04:43 +0100373 &ioapic->rtc_status.dest_map);
Paolo Bonzini5678de3f2014-03-28 20:41:50 +0100374 ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800375 } else
376 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
377
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100378 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
379 entry->fields.remote_irr = 1;
380
Yang Zhang2c2bf012013-04-11 19:21:41 +0800381 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300382}
383
Michael S. Tsirkin1a577b72012-07-19 13:45:20 +0300384int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800385 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300386{
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300387 int ret, irq_level;
388
389 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300390
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300391 spin_lock(&ioapic->lock);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300392 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
393 irq_source_id, level);
Paolo Bonzini44847de2014-03-18 12:00:14 +0100394 ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800395
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300396 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300397
Gleb Natapov49256632009-02-04 17:28:14 +0200398 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300399}
400
Michael S. Tsirkin1a577b72012-07-19 13:45:20 +0300401void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
402{
403 int i;
404
405 spin_lock(&ioapic->lock);
406 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
407 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
408 spin_unlock(&ioapic->lock);
409}
410
Zhang Haoyu184564e2014-09-11 16:47:04 +0800411static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
412{
413 int i;
414 struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
415 eoi_inject.work);
416 spin_lock(&ioapic->lock);
417 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
418 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
419
420 if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
421 continue;
422
423 if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
424 ioapic_service(ioapic, i, false);
425 }
426 spin_unlock(&ioapic->lock);
427}
428
429#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
430
Yang Zhang1fcc7892013-04-11 19:21:35 +0800431static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
432 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300433{
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100434 struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100435 struct kvm_lapic *apic = vcpu->arch.apic;
Joerg Roedel4d99ba82016-02-29 16:04:45 +0100436 int i;
437
438 /* RTC special handling */
439 if (test_bit(vcpu->vcpu_id, dest_map->map) &&
440 vector == dest_map->vectors[vcpu->vcpu_id])
441 rtc_irq_eoi(ioapic, vcpu);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300442
Gleb Natapoveba02262009-08-24 11:54:25 +0300443 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
444 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300445
Gleb Natapoveba02262009-08-24 11:54:25 +0300446 if (ent->fields.vector != vector)
447 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300448
Gleb Natapoveba02262009-08-24 11:54:25 +0300449 /*
450 * We are dropping lock while calling ack notifiers because ack
451 * notifier callbacks for assigned devices call into IOAPIC
452 * recursively. Since remote_irr is cleared only after call
453 * to notifiers if the same vector will be delivered while lock
454 * is dropped it will be put into irr and will be delivered
455 * after ack notifier returns.
456 */
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300457 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300458 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300459 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300460
Radim Krčmářc806a6a2015-03-18 19:38:22 +0100461 if (trigger_mode != IOAPIC_LEVEL_TRIG ||
Suravee Suthikulpanitdfb95952016-05-04 14:09:41 -0500462 kvm_lapic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
Gleb Natapoveba02262009-08-24 11:54:25 +0300463 continue;
464
Marcelo Tosattif5244722008-07-26 17:01:00 -0300465 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
466 ent->fields.remote_irr = 0;
Zhang Haoyu184564e2014-09-11 16:47:04 +0800467 if (!ent->fields.mask && (ioapic->irr & (1 << i))) {
468 ++ioapic->irq_eoi[i];
469 if (ioapic->irq_eoi[i] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
470 /*
471 * Real hardware does not deliver the interrupt
472 * immediately during eoi broadcast, and this
473 * lets a buggy guest make slow progress
474 * even if it does not correctly handle a
475 * level-triggered interrupt. Emulate this
476 * behavior if we detect an interrupt storm.
477 */
478 schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
479 ioapic->irq_eoi[i] = 0;
480 trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
481 } else {
482 ioapic_service(ioapic, i, false);
483 }
484 } else {
485 ioapic->irq_eoi[i] = 0;
486 }
Marcelo Tosattif5244722008-07-26 17:01:00 -0300487 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300488}
489
Yang Zhang1fcc7892013-04-11 19:21:35 +0800490void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700491{
Yang Zhang1fcc7892013-04-11 19:21:35 +0800492 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700493
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300494 spin_lock(&ioapic->lock);
Yang Zhang1fcc7892013-04-11 19:21:35 +0800495 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300496 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700497}
498
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400499static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
500{
501 return container_of(dev, struct kvm_ioapic, dev);
502}
503
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300504static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300505{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300506 return ((addr >= ioapic->base_address &&
507 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
508}
509
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000510static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
511 gpa_t addr, int len, void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300512{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400513 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300514 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300515 if (!ioapic_in_range(ioapic, addr))
516 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300517
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200518 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300519 ASSERT(!(addr & 0xf)); /* check alignment */
520
521 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300522 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300523 switch (addr) {
524 case IOAPIC_REG_SELECT:
525 result = ioapic->ioregsel;
526 break;
527
528 case IOAPIC_REG_WINDOW:
529 result = ioapic_read_indirect(ioapic, addr, len);
530 break;
531
532 default:
533 result = 0;
534 break;
535 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300536 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300537
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300538 switch (len) {
539 case 8:
540 *(u64 *) val = result;
541 break;
542 case 1:
543 case 2:
544 case 4:
545 memcpy(val, (char *)&result, len);
546 break;
547 default:
548 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
549 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300550 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300551}
552
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000553static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
554 gpa_t addr, int len, const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300555{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400556 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300557 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300558 if (!ioapic_in_range(ioapic, addr))
559 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300560
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200561 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
562 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300563 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300564
Julian Stecklinad77fe632011-11-23 13:54:30 +0100565 switch (len) {
566 case 8:
567 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300568 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100569 break;
570 case 2:
571 data = *(u16 *) val;
572 break;
573 case 1:
574 data = *(u8 *) val;
575 break;
576 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300577 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300578 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300579 }
580
581 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300582 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300583 switch (addr) {
584 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100585 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300586 break;
587
588 case IOAPIC_REG_WINDOW:
589 ioapic_write_indirect(ioapic, data);
590 break;
591
592 default:
593 break;
594 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300595 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300596 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300597}
598
Stephen Hemminger79408762013-12-29 12:12:29 -0800599static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
Eddie Dong8c392692007-10-10 12:15:54 +0200600{
601 int i;
602
Zhang Haoyu184564e2014-09-11 16:47:04 +0800603 cancel_delayed_work_sync(&ioapic->eoi_inject);
Eddie Dong8c392692007-10-10 12:15:54 +0200604 for (i = 0; i < IOAPIC_NUM_PINS; i++)
605 ioapic->redirtbl[i].fields.mask = 1;
606 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
607 ioapic->ioregsel = 0;
608 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800609 ioapic->irr_delivered = 0;
Eddie Dong8c392692007-10-10 12:15:54 +0200610 ioapic->id = 0;
Jiri Slaby86786542016-10-13 17:45:20 +0200611 memset(ioapic->irq_eoi, 0x00, sizeof(ioapic->irq_eoi));
Yang Zhang10606912013-04-11 19:21:38 +0800612 rtc_irq_eoi_tracking_reset(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200613}
614
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400615static const struct kvm_io_device_ops ioapic_mmio_ops = {
616 .read = ioapic_mmio_read,
617 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400618};
619
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300620int kvm_ioapic_init(struct kvm *kvm)
621{
622 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400623 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300624
625 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
626 if (!ioapic)
627 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300628 spin_lock_init(&ioapic->lock);
Zhang Haoyu184564e2014-09-11 16:47:04 +0800629 INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800630 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200631 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400632 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300633 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200634 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300635 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
636 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200637 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800638 if (ret < 0) {
639 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400640 kfree(ioapic);
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200641 return ret;
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800642 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400643
Paolo Bonzini3bb345f2015-07-29 10:43:18 +0200644 kvm_vcpu_request_scan_ioapic(kvm);
Gregory Haskins090b7af2009-07-07 17:08:44 -0400645 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300646}
Avi Kivity75858a82009-01-04 17:10:50 +0200647
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800648void kvm_ioapic_destroy(struct kvm *kvm)
649{
650 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
651
Zhang Haoyu184564e2014-09-11 16:47:04 +0800652 cancel_delayed_work_sync(&ioapic->eoi_inject);
Julia Lawalld90e3a32015-04-27 22:35:34 +0200653 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
654 kvm->arch.vioapic = NULL;
655 kfree(ioapic);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800656}
657
Gleb Natapoveba02262009-08-24 11:54:25 +0300658int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
659{
660 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
661 if (!ioapic)
662 return -EINVAL;
663
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300664 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300665 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Wincy Van5bda6ee2014-12-24 11:14:29 +0800666 state->irr &= ~ioapic->irr_delivered;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300667 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300668 return 0;
669}
670
671int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
672{
673 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
674 if (!ioapic)
675 return -EINVAL;
676
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300677 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300678 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100679 ioapic->irr = 0;
Wincy Van5bda6ee2014-12-24 11:14:29 +0800680 ioapic->irr_delivered = 0;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800681 kvm_vcpu_request_scan_ioapic(kvm);
Paolo Bonzini673f7b42014-03-18 11:39:23 +0100682 kvm_ioapic_inject_all(ioapic, state->irr);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300683 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300684 return 0;
685}