blob: f2157a985a1f9ded86be0169ac28bab03cc8d947 [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
Yang Zhangaa2fbe62013-04-11 19:21:40 +080053static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq,
54 bool line_status);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030055
56static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
57 unsigned long addr,
58 unsigned long length)
59{
60 unsigned long result = 0;
61
62 switch (ioapic->ioregsel) {
63 case IOAPIC_REG_VERSION:
64 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
65 | (IOAPIC_VERSION_ID & 0xff));
66 break;
67
68 case IOAPIC_REG_APIC_ID:
69 case IOAPIC_REG_ARB_ID:
70 result = ((ioapic->id & 0xf) << 24);
71 break;
72
73 default:
74 {
75 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
76 u64 redir_content;
77
Andy Honiga2c118b2013-02-20 14:49:16 -080078 if (redir_index < IOAPIC_NUM_PINS)
79 redir_content =
80 ioapic->redirtbl[redir_index].bits;
81 else
82 redir_content = ~0ULL;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030083
Eddie Dong1fd4f2a2007-07-18 12:03:39 +030084 result = (ioapic->ioregsel & 0x1) ?
85 (redir_content >> 32) & 0xffffffff :
86 redir_content & 0xffffffff;
87 break;
88 }
89 }
90
91 return result;
92}
93
Yang Zhang10606912013-04-11 19:21:38 +080094static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic)
95{
96 ioapic->rtc_status.pending_eoi = 0;
97 bitmap_zero(ioapic->rtc_status.dest_map, KVM_MAX_VCPUS);
98}
99
100static void __rtc_irq_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
101{
102 bool new_val, old_val;
103 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
104 union kvm_ioapic_redirect_entry *e;
105
106 e = &ioapic->redirtbl[RTC_GSI];
107 if (!kvm_apic_match_dest(vcpu, NULL, 0, e->fields.dest_id,
108 e->fields.dest_mode))
109 return;
110
111 new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
112 old_val = test_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
113
114 if (new_val == old_val)
115 return;
116
117 if (new_val) {
118 __set_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
119 ioapic->rtc_status.pending_eoi++;
120 } else {
121 __clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map);
122 ioapic->rtc_status.pending_eoi--;
123 }
124
125 WARN_ON(ioapic->rtc_status.pending_eoi < 0);
126}
127
128void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
129{
130 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
131
132 spin_lock(&ioapic->lock);
133 __rtc_irq_eoi_tracking_restore_one(vcpu);
134 spin_unlock(&ioapic->lock);
135}
136
137static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
138{
139 struct kvm_vcpu *vcpu;
140 int i;
141
142 if (RTC_GSI >= IOAPIC_NUM_PINS)
143 return;
144
145 rtc_irq_eoi_tracking_reset(ioapic);
146 kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
147 __rtc_irq_eoi_tracking_restore_one(vcpu);
148}
149
Yang Zhang2c2bf012013-04-11 19:21:41 +0800150static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu)
151{
152 if (test_and_clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map))
153 --ioapic->rtc_status.pending_eoi;
154
155 WARN_ON(ioapic->rtc_status.pending_eoi < 0);
156}
157
158static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
159{
160 if (ioapic->rtc_status.pending_eoi > 0)
161 return true; /* coalesced */
162
163 return false;
164}
165
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800166static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx,
167 bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300168{
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800169 union kvm_ioapic_redirect_entry *pent;
Gleb Natapov49256632009-02-04 17:28:14 +0200170 int injected = -1;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300171
172 pent = &ioapic->redirtbl[idx];
173
174 if (!pent->fields.mask) {
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800175 injected = ioapic_deliver(ioapic, idx, line_status);
Marcelo Tosattiff4b9df2008-06-05 00:08:11 -0300176 if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300177 pent->fields.remote_irr = 1;
178 }
Gleb Natapov49256632009-02-04 17:28:14 +0200179
180 return injected;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300181}
182
Avi Kivity46a929b2009-12-28 14:08:30 +0200183static void update_handled_vectors(struct kvm_ioapic *ioapic)
184{
185 DECLARE_BITMAP(handled_vectors, 256);
186 int i;
187
188 memset(handled_vectors, 0, sizeof(handled_vectors));
189 for (i = 0; i < IOAPIC_NUM_PINS; ++i)
190 __set_bit(ioapic->redirtbl[i].fields.vector, handled_vectors);
191 memcpy(ioapic->handled_vectors, handled_vectors,
192 sizeof(handled_vectors));
193 smp_wmb();
194}
195
Yang Zhang3d81bc72013-04-11 19:25:13 +0800196void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800197{
198 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
199 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800200 int index;
201
202 spin_lock(&ioapic->lock);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800203 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
204 e = &ioapic->redirtbl[index];
205 if (!e->fields.mask &&
206 (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
207 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC,
Yang Zhangf3bff632013-04-11 19:21:39 +0800208 index) || index == RTC_GSI)) {
Yang Zhang44944d42013-04-07 08:25:18 +0800209 if (kvm_apic_match_dest(vcpu, NULL, 0,
210 e->fields.dest_id, e->fields.dest_mode))
211 __set_bit(e->fields.vector, (unsigned long *)eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800212 }
213 }
214 spin_unlock(&ioapic->lock);
215}
Yang Zhangc7c9c562013-01-25 10:18:51 +0800216
Yang Zhang3d81bc72013-04-11 19:25:13 +0800217#ifdef CONFIG_X86
218void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800219{
220 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
221
Yang Zhang3d81bc72013-04-11 19:25:13 +0800222 if (!ioapic)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800223 return;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800224 kvm_make_scan_ioapic_request(kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800225}
Yang Zhang3d81bc72013-04-11 19:25:13 +0800226#else
227void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
228{
229 return;
230}
231#endif
Yang Zhangc7c9c562013-01-25 10:18:51 +0800232
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300233static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
234{
235 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200236 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300237 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300238
239 switch (ioapic->ioregsel) {
240 case IOAPIC_REG_VERSION:
241 /* Writes are ignored. */
242 break;
243
244 case IOAPIC_REG_APIC_ID:
245 ioapic->id = (val >> 24) & 0xf;
246 break;
247
248 case IOAPIC_REG_ARB_ID:
249 break;
250
251 default:
252 index = (ioapic->ioregsel - 0x10) >> 1;
253
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200254 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300255 if (index >= IOAPIC_NUM_PINS)
256 return;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300257 e = &ioapic->redirtbl[index];
258 mask_before = e->fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300259 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300260 e->bits &= 0xffffffff;
261 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300262 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300263 e->bits &= ~0xffffffffULL;
264 e->bits |= (u32) val;
265 e->fields.remote_irr = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300266 }
Avi Kivity46a929b2009-12-28 14:08:30 +0200267 update_handled_vectors(ioapic);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300268 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200269 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300270 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300271 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300272 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800273 ioapic_service(ioapic, index, false);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800274 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300275 break;
276 }
277}
278
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800279static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300280{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200281 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
282 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800283 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300284
285 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200286 "vector=%x trig_mode=%x\n",
Liu Yuana38f84c2011-04-21 14:53:57 +0800287 entry->fields.dest_id, entry->fields.dest_mode,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200288 entry->fields.delivery_mode, entry->fields.vector,
289 entry->fields.trig_mode);
290
291 irqe.dest_id = entry->fields.dest_id;
292 irqe.vector = entry->fields.vector;
293 irqe.dest_mode = entry->fields.dest_mode;
294 irqe.trig_mode = entry->fields.trig_mode;
295 irqe.delivery_mode = entry->fields.delivery_mode << 8;
296 irqe.level = 1;
297 irqe.shorthand = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300298
Yang Zhang2c2bf012013-04-11 19:21:41 +0800299 if (irq == RTC_GSI && line_status) {
300 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
301 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
302 ioapic->rtc_status.dest_map);
303 ioapic->rtc_status.pending_eoi = ret;
304 } else
305 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
306
307 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300308}
309
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300310int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800311 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300312{
Marcelo Tosatti07dc7262010-06-02 11:26:26 -0300313 u32 old_irr;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300314 u32 mask = 1 << irq;
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800315 union kvm_ioapic_redirect_entry entry;
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300316 int ret, irq_level;
317
318 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300319
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300320 spin_lock(&ioapic->lock);
Marcelo Tosatti07dc7262010-06-02 11:26:26 -0300321 old_irr = ioapic->irr;
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300322 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
323 irq_source_id, level);
324 entry = ioapic->redirtbl[irq];
325 irq_level ^= entry.fields.polarity;
326 if (!irq_level) {
327 ioapic->irr &= ~mask;
328 ret = 1;
329 } else {
330 int edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800331
332 if (irq == RTC_GSI && line_status &&
333 rtc_irq_check_coalesced(ioapic)) {
334 ret = 0; /* coalesced */
335 goto out;
336 }
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300337 ioapic->irr |= mask;
338 if ((edge && old_irr != ioapic->irr) ||
339 (!edge && !entry.fields.remote_irr))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800340 ret = ioapic_service(ioapic, irq, line_status);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300341 else
342 ret = 0; /* report coalesced interrupt */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300343 }
Yang Zhang2c2bf012013-04-11 19:21:41 +0800344out:
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300345 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300346 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300347
Gleb Natapov49256632009-02-04 17:28:14 +0200348 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300349}
350
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300351void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
352{
353 int i;
354
355 spin_lock(&ioapic->lock);
356 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
357 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
358 spin_unlock(&ioapic->lock);
359}
360
Yang Zhang1fcc7892013-04-11 19:21:35 +0800361static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
362 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300363{
Gleb Natapoveba02262009-08-24 11:54:25 +0300364 int i;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300365
Gleb Natapoveba02262009-08-24 11:54:25 +0300366 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
367 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300368
Gleb Natapoveba02262009-08-24 11:54:25 +0300369 if (ent->fields.vector != vector)
370 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300371
Yang Zhang2c2bf012013-04-11 19:21:41 +0800372 if (i == RTC_GSI)
373 rtc_irq_eoi(ioapic, vcpu);
Gleb Natapoveba02262009-08-24 11:54:25 +0300374 /*
375 * We are dropping lock while calling ack notifiers because ack
376 * notifier callbacks for assigned devices call into IOAPIC
377 * recursively. Since remote_irr is cleared only after call
378 * to notifiers if the same vector will be delivered while lock
379 * is dropped it will be put into irr and will be delivered
380 * after ack notifier returns.
381 */
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300382 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300383 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300384 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300385
386 if (trigger_mode != IOAPIC_LEVEL_TRIG)
387 continue;
388
Marcelo Tosattif5244722008-07-26 17:01:00 -0300389 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
390 ent->fields.remote_irr = 0;
Gleb Natapoveba02262009-08-24 11:54:25 +0300391 if (!ent->fields.mask && (ioapic->irr & (1 << i)))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800392 ioapic_service(ioapic, i, false);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300393 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300394}
395
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300396bool kvm_ioapic_handles_vector(struct kvm *kvm, int vector)
397{
398 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
399 smp_rmb();
400 return test_bit(vector, ioapic->handled_vectors);
401}
402
Yang Zhang1fcc7892013-04-11 19:21:35 +0800403void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700404{
Yang Zhang1fcc7892013-04-11 19:21:35 +0800405 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700406
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300407 spin_lock(&ioapic->lock);
Yang Zhang1fcc7892013-04-11 19:21:35 +0800408 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300409 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700410}
411
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400412static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
413{
414 return container_of(dev, struct kvm_ioapic, dev);
415}
416
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300417static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300418{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300419 return ((addr >= ioapic->base_address &&
420 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
421}
422
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300423static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
424 void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300425{
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400426 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300427 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300428 if (!ioapic_in_range(ioapic, addr))
429 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300430
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200431 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300432 ASSERT(!(addr & 0xf)); /* check alignment */
433
434 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300435 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300436 switch (addr) {
437 case IOAPIC_REG_SELECT:
438 result = ioapic->ioregsel;
439 break;
440
441 case IOAPIC_REG_WINDOW:
442 result = ioapic_read_indirect(ioapic, addr, len);
443 break;
444
445 default:
446 result = 0;
447 break;
448 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300449 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300450
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300451 switch (len) {
452 case 8:
453 *(u64 *) val = result;
454 break;
455 case 1:
456 case 2:
457 case 4:
458 memcpy(val, (char *)&result, len);
459 break;
460 default:
461 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
462 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300463 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300464}
465
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300466static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
467 const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300468{
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400469 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300470 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300471 if (!ioapic_in_range(ioapic, addr))
472 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300473
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200474 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
475 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300476 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300477
Julian Stecklinad77fe632011-11-23 13:54:30 +0100478 switch (len) {
479 case 8:
480 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300481 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100482 break;
483 case 2:
484 data = *(u16 *) val;
485 break;
486 case 1:
487 data = *(u8 *) val;
488 break;
489 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300490 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300491 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300492 }
493
494 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300495 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300496 switch (addr) {
497 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100498 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300499 break;
500
501 case IOAPIC_REG_WINDOW:
502 ioapic_write_indirect(ioapic, data);
503 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800504#ifdef CONFIG_IA64
505 case IOAPIC_REG_EOI:
Yang Zhang1fcc7892013-04-11 19:21:35 +0800506 __kvm_ioapic_update_eoi(NULL, ioapic, data, IOAPIC_LEVEL_TRIG);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800507 break;
508#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300509
510 default:
511 break;
512 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300513 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300514 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300515}
516
Eddie Dong8c392692007-10-10 12:15:54 +0200517void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
518{
519 int i;
520
521 for (i = 0; i < IOAPIC_NUM_PINS; i++)
522 ioapic->redirtbl[i].fields.mask = 1;
523 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
524 ioapic->ioregsel = 0;
525 ioapic->irr = 0;
526 ioapic->id = 0;
Yang Zhang10606912013-04-11 19:21:38 +0800527 rtc_irq_eoi_tracking_reset(ioapic);
Avi Kivity46a929b2009-12-28 14:08:30 +0200528 update_handled_vectors(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200529}
530
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400531static const struct kvm_io_device_ops ioapic_mmio_ops = {
532 .read = ioapic_mmio_read,
533 .write = ioapic_mmio_write,
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400534};
535
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300536int kvm_ioapic_init(struct kvm *kvm)
537{
538 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400539 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300540
541 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
542 if (!ioapic)
543 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300544 spin_lock_init(&ioapic->lock);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800545 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200546 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400547 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300548 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200549 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300550 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
551 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200552 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800553 if (ret < 0) {
554 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400555 kfree(ioapic);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800556 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400557
558 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300559}
Avi Kivity75858a82009-01-04 17:10:50 +0200560
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800561void kvm_ioapic_destroy(struct kvm *kvm)
562{
563 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
564
565 if (ioapic) {
566 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
567 kvm->arch.vioapic = NULL;
568 kfree(ioapic);
569 }
570}
571
Gleb Natapoveba02262009-08-24 11:54:25 +0300572int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
573{
574 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
575 if (!ioapic)
576 return -EINVAL;
577
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300578 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300579 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300580 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300581 return 0;
582}
583
584int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
585{
586 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
587 if (!ioapic)
588 return -EINVAL;
589
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300590 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300591 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Avi Kivity46a929b2009-12-28 14:08:30 +0200592 update_handled_vectors(ioapic);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800593 kvm_vcpu_request_scan_ioapic(kvm);
Yang Zhang10606912013-04-11 19:21:38 +0800594 kvm_rtc_eoi_tracking_restore_all(ioapic);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300595 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300596 return 0;
597}