blob: 97c67a50f904fbe74b5a9873efb2c57f8b13f5e6 [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 Zhangc7c9c562013-01-25 10:18:51 +0800196void kvm_ioapic_calculate_eoi_exitmap(struct kvm_vcpu *vcpu,
197 u64 *eoi_exit_bitmap)
198{
199 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
200 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800201 int index;
202
203 spin_lock(&ioapic->lock);
204 /* traverse ioapic entry to set eoi exit bitmap*/
205 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
206 e = &ioapic->redirtbl[index];
207 if (!e->fields.mask &&
208 (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
209 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC,
Yang Zhangf3bff632013-04-11 19:21:39 +0800210 index) || index == RTC_GSI)) {
Yang Zhang44944d42013-04-07 08:25:18 +0800211 if (kvm_apic_match_dest(vcpu, NULL, 0,
212 e->fields.dest_id, e->fields.dest_mode))
213 __set_bit(e->fields.vector, (unsigned long *)eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800214 }
215 }
216 spin_unlock(&ioapic->lock);
217}
218EXPORT_SYMBOL_GPL(kvm_ioapic_calculate_eoi_exitmap);
219
220void kvm_ioapic_make_eoibitmap_request(struct kvm *kvm)
221{
222 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
223
224 if (!kvm_apic_vid_enabled(kvm) || !ioapic)
225 return;
226 kvm_make_update_eoibitmap_request(kvm);
227}
228
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300229static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
230{
231 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200232 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300233 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300234
235 switch (ioapic->ioregsel) {
236 case IOAPIC_REG_VERSION:
237 /* Writes are ignored. */
238 break;
239
240 case IOAPIC_REG_APIC_ID:
241 ioapic->id = (val >> 24) & 0xf;
242 break;
243
244 case IOAPIC_REG_ARB_ID:
245 break;
246
247 default:
248 index = (ioapic->ioregsel - 0x10) >> 1;
249
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200250 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300251 if (index >= IOAPIC_NUM_PINS)
252 return;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300253 e = &ioapic->redirtbl[index];
254 mask_before = e->fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300255 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300256 e->bits &= 0xffffffff;
257 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300258 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300259 e->bits &= ~0xffffffffULL;
260 e->bits |= (u32) val;
261 e->fields.remote_irr = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300262 }
Avi Kivity46a929b2009-12-28 14:08:30 +0200263 update_handled_vectors(ioapic);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300264 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200265 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300266 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300267 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300268 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800269 ioapic_service(ioapic, index, false);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800270 kvm_ioapic_make_eoibitmap_request(ioapic->kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300271 break;
272 }
273}
274
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800275static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300276{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200277 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
278 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800279 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300280
281 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200282 "vector=%x trig_mode=%x\n",
Liu Yuana38f84c2011-04-21 14:53:57 +0800283 entry->fields.dest_id, entry->fields.dest_mode,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200284 entry->fields.delivery_mode, entry->fields.vector,
285 entry->fields.trig_mode);
286
287 irqe.dest_id = entry->fields.dest_id;
288 irqe.vector = entry->fields.vector;
289 irqe.dest_mode = entry->fields.dest_mode;
290 irqe.trig_mode = entry->fields.trig_mode;
291 irqe.delivery_mode = entry->fields.delivery_mode << 8;
292 irqe.level = 1;
293 irqe.shorthand = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300294
Yang Zhang2c2bf012013-04-11 19:21:41 +0800295 if (irq == RTC_GSI && line_status) {
296 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
297 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
298 ioapic->rtc_status.dest_map);
299 ioapic->rtc_status.pending_eoi = ret;
300 } else
301 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
302
303 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300304}
305
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300306int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800307 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300308{
Marcelo Tosatti07dc7262010-06-02 11:26:26 -0300309 u32 old_irr;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300310 u32 mask = 1 << irq;
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800311 union kvm_ioapic_redirect_entry entry;
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300312 int ret, irq_level;
313
314 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300315
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300316 spin_lock(&ioapic->lock);
Marcelo Tosatti07dc7262010-06-02 11:26:26 -0300317 old_irr = ioapic->irr;
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300318 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
319 irq_source_id, level);
320 entry = ioapic->redirtbl[irq];
321 irq_level ^= entry.fields.polarity;
322 if (!irq_level) {
323 ioapic->irr &= ~mask;
324 ret = 1;
325 } else {
326 int edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800327
328 if (irq == RTC_GSI && line_status &&
329 rtc_irq_check_coalesced(ioapic)) {
330 ret = 0; /* coalesced */
331 goto out;
332 }
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300333 ioapic->irr |= mask;
334 if ((edge && old_irr != ioapic->irr) ||
335 (!edge && !entry.fields.remote_irr))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800336 ret = ioapic_service(ioapic, irq, line_status);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300337 else
338 ret = 0; /* report coalesced interrupt */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300339 }
Yang Zhang2c2bf012013-04-11 19:21:41 +0800340out:
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300341 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300342 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300343
Gleb Natapov49256632009-02-04 17:28:14 +0200344 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300345}
346
Michael S. Tsirkin1a577b722012-07-19 13:45:20 +0300347void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
348{
349 int i;
350
351 spin_lock(&ioapic->lock);
352 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
353 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
354 spin_unlock(&ioapic->lock);
355}
356
Yang Zhang1fcc7892013-04-11 19:21:35 +0800357static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
358 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300359{
Gleb Natapoveba02262009-08-24 11:54:25 +0300360 int i;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300361
Gleb Natapoveba02262009-08-24 11:54:25 +0300362 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
363 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300364
Gleb Natapoveba02262009-08-24 11:54:25 +0300365 if (ent->fields.vector != vector)
366 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300367
Yang Zhang2c2bf012013-04-11 19:21:41 +0800368 if (i == RTC_GSI)
369 rtc_irq_eoi(ioapic, vcpu);
Gleb Natapoveba02262009-08-24 11:54:25 +0300370 /*
371 * We are dropping lock while calling ack notifiers because ack
372 * notifier callbacks for assigned devices call into IOAPIC
373 * recursively. Since remote_irr is cleared only after call
374 * to notifiers if the same vector will be delivered while lock
375 * is dropped it will be put into irr and will be delivered
376 * after ack notifier returns.
377 */
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300378 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300379 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300380 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300381
382 if (trigger_mode != IOAPIC_LEVEL_TRIG)
383 continue;
384
Marcelo Tosattif5244722008-07-26 17:01:00 -0300385 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
386 ent->fields.remote_irr = 0;
Gleb Natapoveba02262009-08-24 11:54:25 +0300387 if (!ent->fields.mask && (ioapic->irr & (1 << i)))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800388 ioapic_service(ioapic, i, false);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300389 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300390}
391
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300392bool kvm_ioapic_handles_vector(struct kvm *kvm, int vector)
393{
394 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
395 smp_rmb();
396 return test_bit(vector, ioapic->handled_vectors);
397}
398
Yang Zhang1fcc7892013-04-11 19:21:35 +0800399void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700400{
Yang Zhang1fcc7892013-04-11 19:21:35 +0800401 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700402
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300403 spin_lock(&ioapic->lock);
Yang Zhang1fcc7892013-04-11 19:21:35 +0800404 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300405 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700406}
407
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400408static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
409{
410 return container_of(dev, struct kvm_ioapic, dev);
411}
412
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300413static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300414{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300415 return ((addr >= ioapic->base_address &&
416 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
417}
418
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300419static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
420 void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300421{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400422 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300423 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300424 if (!ioapic_in_range(ioapic, addr))
425 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300426
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200427 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300428 ASSERT(!(addr & 0xf)); /* check alignment */
429
430 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300431 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300432 switch (addr) {
433 case IOAPIC_REG_SELECT:
434 result = ioapic->ioregsel;
435 break;
436
437 case IOAPIC_REG_WINDOW:
438 result = ioapic_read_indirect(ioapic, addr, len);
439 break;
440
441 default:
442 result = 0;
443 break;
444 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300445 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300446
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300447 switch (len) {
448 case 8:
449 *(u64 *) val = result;
450 break;
451 case 1:
452 case 2:
453 case 4:
454 memcpy(val, (char *)&result, len);
455 break;
456 default:
457 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
458 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300459 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300460}
461
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300462static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
463 const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300464{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400465 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300466 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300467 if (!ioapic_in_range(ioapic, addr))
468 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300469
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200470 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
471 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300472 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300473
Julian Stecklinad77fe632011-11-23 13:54:30 +0100474 switch (len) {
475 case 8:
476 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300477 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100478 break;
479 case 2:
480 data = *(u16 *) val;
481 break;
482 case 1:
483 data = *(u8 *) val;
484 break;
485 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300486 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300487 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300488 }
489
490 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300491 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300492 switch (addr) {
493 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100494 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300495 break;
496
497 case IOAPIC_REG_WINDOW:
498 ioapic_write_indirect(ioapic, data);
499 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800500#ifdef CONFIG_IA64
501 case IOAPIC_REG_EOI:
Yang Zhang1fcc7892013-04-11 19:21:35 +0800502 __kvm_ioapic_update_eoi(NULL, ioapic, data, IOAPIC_LEVEL_TRIG);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800503 break;
504#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300505
506 default:
507 break;
508 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300509 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300510 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300511}
512
Eddie Dong8c392692007-10-10 12:15:54 +0200513void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
514{
515 int i;
516
517 for (i = 0; i < IOAPIC_NUM_PINS; i++)
518 ioapic->redirtbl[i].fields.mask = 1;
519 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
520 ioapic->ioregsel = 0;
521 ioapic->irr = 0;
522 ioapic->id = 0;
Yang Zhang10606912013-04-11 19:21:38 +0800523 rtc_irq_eoi_tracking_reset(ioapic);
Avi Kivity46a929b2009-12-28 14:08:30 +0200524 update_handled_vectors(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200525}
526
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400527static const struct kvm_io_device_ops ioapic_mmio_ops = {
528 .read = ioapic_mmio_read,
529 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400530};
531
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300532int kvm_ioapic_init(struct kvm *kvm)
533{
534 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400535 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300536
537 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
538 if (!ioapic)
539 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300540 spin_lock_init(&ioapic->lock);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800541 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200542 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400543 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300544 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200545 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300546 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
547 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200548 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800549 if (ret < 0) {
550 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400551 kfree(ioapic);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800552 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400553
554 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300555}
Avi Kivity75858a82009-01-04 17:10:50 +0200556
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800557void kvm_ioapic_destroy(struct kvm *kvm)
558{
559 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
560
561 if (ioapic) {
562 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
563 kvm->arch.vioapic = NULL;
564 kfree(ioapic);
565 }
566}
567
Gleb Natapoveba02262009-08-24 11:54:25 +0300568int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
569{
570 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
571 if (!ioapic)
572 return -EINVAL;
573
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300574 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300575 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300576 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300577 return 0;
578}
579
580int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
581{
582 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
583 if (!ioapic)
584 return -EINVAL;
585
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300586 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300587 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Avi Kivity46a929b2009-12-28 14:08:30 +0200588 update_handled_vectors(ioapic);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800589 kvm_ioapic_make_eoibitmap_request(kvm);
Yang Zhang10606912013-04-11 19:21:38 +0800590 kvm_rtc_eoi_tracking_restore_all(ioapic);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300591 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300592 return 0;
593}