blob: 0b4914147b9d59257b1dd1c3ec5c2f8e59ccd17d [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;
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
Avi Kivity46a929b2009-12-28 14:08:30 +0200166static void update_handled_vectors(struct kvm_ioapic *ioapic)
167{
168 DECLARE_BITMAP(handled_vectors, 256);
169 int i;
170
171 memset(handled_vectors, 0, sizeof(handled_vectors));
172 for (i = 0; i < IOAPIC_NUM_PINS; ++i)
173 __set_bit(ioapic->redirtbl[i].fields.vector, handled_vectors);
174 memcpy(ioapic->handled_vectors, handled_vectors,
175 sizeof(handled_vectors));
176 smp_wmb();
177}
178
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800179void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap,
180 u32 *tmr)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800181{
182 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
183 union kvm_ioapic_redirect_entry *e;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800184 int index;
185
186 spin_lock(&ioapic->lock);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800187 for (index = 0; index < IOAPIC_NUM_PINS; index++) {
188 e = &ioapic->redirtbl[index];
189 if (!e->fields.mask &&
190 (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
191 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC,
Yang Zhangf3bff632013-04-11 19:21:39 +0800192 index) || index == RTC_GSI)) {
Yang Zhang44944d42013-04-07 08:25:18 +0800193 if (kvm_apic_match_dest(vcpu, NULL, 0,
Yang Zhangcf9e65b2013-04-11 19:25:14 +0800194 e->fields.dest_id, e->fields.dest_mode)) {
195 __set_bit(e->fields.vector,
196 (unsigned long *)eoi_exit_bitmap);
197 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG)
198 __set_bit(e->fields.vector,
199 (unsigned long *)tmr);
200 }
Yang Zhangc7c9c562013-01-25 10:18:51 +0800201 }
202 }
203 spin_unlock(&ioapic->lock);
204}
Yang Zhangc7c9c562013-01-25 10:18:51 +0800205
Yang Zhang3d81bc72013-04-11 19:25:13 +0800206#ifdef CONFIG_X86
207void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800208{
209 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
210
Yang Zhang3d81bc72013-04-11 19:25:13 +0800211 if (!ioapic)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800212 return;
Yang Zhang3d81bc72013-04-11 19:25:13 +0800213 kvm_make_scan_ioapic_request(kvm);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800214}
Yang Zhang3d81bc72013-04-11 19:25:13 +0800215#else
216void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
217{
218 return;
219}
220#endif
Yang Zhangc7c9c562013-01-25 10:18:51 +0800221
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300222static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
223{
224 unsigned index;
Avi Kivity75858a82009-01-04 17:10:50 +0200225 bool mask_before, mask_after;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300226 union kvm_ioapic_redirect_entry *e;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300227
228 switch (ioapic->ioregsel) {
229 case IOAPIC_REG_VERSION:
230 /* Writes are ignored. */
231 break;
232
233 case IOAPIC_REG_APIC_ID:
234 ioapic->id = (val >> 24) & 0xf;
235 break;
236
237 case IOAPIC_REG_ARB_ID:
238 break;
239
240 default:
241 index = (ioapic->ioregsel - 0x10) >> 1;
242
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200243 ioapic_debug("change redir index %x val %x\n", index, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300244 if (index >= IOAPIC_NUM_PINS)
245 return;
Gleb Natapov70f93da2009-07-05 18:48:12 +0300246 e = &ioapic->redirtbl[index];
247 mask_before = e->fields.mask;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300248 if (ioapic->ioregsel & 1) {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300249 e->bits &= 0xffffffff;
250 e->bits |= (u64) val << 32;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300251 } else {
Gleb Natapov70f93da2009-07-05 18:48:12 +0300252 e->bits &= ~0xffffffffULL;
253 e->bits |= (u32) val;
254 e->fields.remote_irr = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300255 }
Avi Kivity46a929b2009-12-28 14:08:30 +0200256 update_handled_vectors(ioapic);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300257 mask_after = e->fields.mask;
Avi Kivity75858a82009-01-04 17:10:50 +0200258 if (mask_before != mask_after)
Gleb Natapov4a994352010-07-11 15:32:23 +0300259 kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
Gleb Natapov70f93da2009-07-05 18:48:12 +0300260 if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
Gleb Natapovb4a2f5e2009-07-05 18:48:11 +0300261 && ioapic->irr & (1 << index))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800262 ioapic_service(ioapic, index, false);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800263 kvm_vcpu_request_scan_ioapic(ioapic->kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300264 break;
265 }
266}
267
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100268static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300269{
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200270 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
271 struct kvm_lapic_irq irqe;
Yang Zhang2c2bf012013-04-11 19:21:41 +0800272 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300273
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100274 if (entry->fields.mask)
275 return -1;
276
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300277 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200278 "vector=%x trig_mode=%x\n",
Liu Yuana38f84c2011-04-21 14:53:57 +0800279 entry->fields.dest_id, entry->fields.dest_mode,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200280 entry->fields.delivery_mode, entry->fields.vector,
281 entry->fields.trig_mode);
282
283 irqe.dest_id = entry->fields.dest_id;
284 irqe.vector = entry->fields.vector;
285 irqe.dest_mode = entry->fields.dest_mode;
286 irqe.trig_mode = entry->fields.trig_mode;
287 irqe.delivery_mode = entry->fields.delivery_mode << 8;
288 irqe.level = 1;
289 irqe.shorthand = 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300290
Yang Zhang2c2bf012013-04-11 19:21:41 +0800291 if (irq == RTC_GSI && line_status) {
292 BUG_ON(ioapic->rtc_status.pending_eoi != 0);
293 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
294 ioapic->rtc_status.dest_map);
295 ioapic->rtc_status.pending_eoi = ret;
296 } else
297 ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
298
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100299 if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
300 entry->fields.remote_irr = 1;
301
Yang Zhang2c2bf012013-04-11 19:21:41 +0800302 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300303}
304
Michael S. Tsirkin1a577b72012-07-19 13:45:20 +0300305int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800306 int level, bool line_status)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300307{
Marcelo Tosatti07dc7262010-06-02 11:26:26 -0300308 u32 old_irr;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300309 u32 mask = 1 << irq;
Sheng Yangcf9e4e12009-02-11 16:03:36 +0800310 union kvm_ioapic_redirect_entry entry;
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300311 int ret, irq_level;
312
313 BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300314
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300315 spin_lock(&ioapic->lock);
Marcelo Tosatti07dc7262010-06-02 11:26:26 -0300316 old_irr = ioapic->irr;
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300317 irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
318 irq_source_id, level);
319 entry = ioapic->redirtbl[irq];
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300320 if (!irq_level) {
321 ioapic->irr &= ~mask;
322 ret = 1;
323 } else {
324 int edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
Yang Zhang2c2bf012013-04-11 19:21:41 +0800325
326 if (irq == RTC_GSI && line_status &&
327 rtc_irq_check_coalesced(ioapic)) {
328 ret = 0; /* coalesced */
329 goto out;
330 }
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300331 ioapic->irr |= mask;
332 if ((edge && old_irr != ioapic->irr) ||
333 (!edge && !entry.fields.remote_irr))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800334 ret = ioapic_service(ioapic, irq, line_status);
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300335 else
336 ret = 0; /* report coalesced interrupt */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300337 }
Yang Zhang2c2bf012013-04-11 19:21:41 +0800338out:
Michael S. Tsirkin28a6fda2012-08-14 19:20:28 +0300339 trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300340 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300341
Gleb Natapov49256632009-02-04 17:28:14 +0200342 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300343}
344
Michael S. Tsirkin1a577b72012-07-19 13:45:20 +0300345void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
346{
347 int i;
348
349 spin_lock(&ioapic->lock);
350 for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
351 __clear_bit(irq_source_id, &ioapic->irq_states[i]);
352 spin_unlock(&ioapic->lock);
353}
354
Yang Zhang1fcc7892013-04-11 19:21:35 +0800355static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
356 struct kvm_ioapic *ioapic, int vector, int trigger_mode)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300357{
Gleb Natapoveba02262009-08-24 11:54:25 +0300358 int i;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300359
Gleb Natapoveba02262009-08-24 11:54:25 +0300360 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
361 union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300362
Gleb Natapoveba02262009-08-24 11:54:25 +0300363 if (ent->fields.vector != vector)
364 continue;
Marcelo Tosattif5244722008-07-26 17:01:00 -0300365
Yang Zhang2c2bf012013-04-11 19:21:41 +0800366 if (i == RTC_GSI)
367 rtc_irq_eoi(ioapic, vcpu);
Gleb Natapoveba02262009-08-24 11:54:25 +0300368 /*
369 * We are dropping lock while calling ack notifiers because ack
370 * notifier callbacks for assigned devices call into IOAPIC
371 * recursively. Since remote_irr is cleared only after call
372 * to notifiers if the same vector will be delivered while lock
373 * is dropped it will be put into irr and will be delivered
374 * after ack notifier returns.
375 */
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300376 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300377 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300378 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300379
380 if (trigger_mode != IOAPIC_LEVEL_TRIG)
381 continue;
382
Marcelo Tosattif5244722008-07-26 17:01:00 -0300383 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
384 ent->fields.remote_irr = 0;
Paolo Bonzini0b10a1c2014-03-18 11:51:29 +0100385 if (ioapic->irr & (1 << i))
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800386 ioapic_service(ioapic, i, false);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300387 }
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300388}
389
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300390bool kvm_ioapic_handles_vector(struct kvm *kvm, int vector)
391{
392 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
393 smp_rmb();
394 return test_bit(vector, ioapic->handled_vectors);
395}
396
Yang Zhang1fcc7892013-04-11 19:21:35 +0800397void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700398{
Yang Zhang1fcc7892013-04-11 19:21:35 +0800399 struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700400
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300401 spin_lock(&ioapic->lock);
Yang Zhang1fcc7892013-04-11 19:21:35 +0800402 __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300403 spin_unlock(&ioapic->lock);
Avi Kivity4fa6b9c2008-06-17 15:36:36 -0700404}
405
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400406static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
407{
408 return container_of(dev, struct kvm_ioapic, dev);
409}
410
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300411static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300412{
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300413 return ((addr >= ioapic->base_address &&
414 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
415}
416
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300417static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
418 void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300419{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400420 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300421 u32 result;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300422 if (!ioapic_in_range(ioapic, addr))
423 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300424
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200425 ioapic_debug("addr %lx\n", (unsigned long)addr);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300426 ASSERT(!(addr & 0xf)); /* check alignment */
427
428 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300429 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300430 switch (addr) {
431 case IOAPIC_REG_SELECT:
432 result = ioapic->ioregsel;
433 break;
434
435 case IOAPIC_REG_WINDOW:
436 result = ioapic_read_indirect(ioapic, addr, len);
437 break;
438
439 default:
440 result = 0;
441 break;
442 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300443 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300444
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300445 switch (len) {
446 case 8:
447 *(u64 *) val = result;
448 break;
449 case 1:
450 case 2:
451 case 4:
452 memcpy(val, (char *)&result, len);
453 break;
454 default:
455 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
456 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300457 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300458}
459
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300460static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
461 const void *val)
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300462{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400463 struct kvm_ioapic *ioapic = to_ioapic(this);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300464 u32 data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300465 if (!ioapic_in_range(ioapic, addr))
466 return -EOPNOTSUPP;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300467
Laurent Viviere25e3ed2007-10-12 11:01:59 +0200468 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
469 (void*)addr, len, val);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300470 ASSERT(!(addr & 0xf)); /* check alignment */
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300471
Julian Stecklinad77fe632011-11-23 13:54:30 +0100472 switch (len) {
473 case 8:
474 case 4:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300475 data = *(u32 *) val;
Julian Stecklinad77fe632011-11-23 13:54:30 +0100476 break;
477 case 2:
478 data = *(u16 *) val;
479 break;
480 case 1:
481 data = *(u8 *) val;
482 break;
483 default:
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300484 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
Gleb Natapoveba02262009-08-24 11:54:25 +0300485 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300486 }
487
488 addr &= 0xff;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300489 spin_lock(&ioapic->lock);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300490 switch (addr) {
491 case IOAPIC_REG_SELECT:
Julian Stecklinad77fe632011-11-23 13:54:30 +0100492 ioapic->ioregsel = data & 0xFF; /* 8-bit register */
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300493 break;
494
495 case IOAPIC_REG_WINDOW:
496 ioapic_write_indirect(ioapic, data);
497 break;
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800498#ifdef CONFIG_IA64
499 case IOAPIC_REG_EOI:
Yang Zhang1fcc7892013-04-11 19:21:35 +0800500 __kvm_ioapic_update_eoi(NULL, ioapic, data, IOAPIC_LEVEL_TRIG);
Zhang Xiantaob1fd3d32007-12-02 22:53:07 +0800501 break;
502#endif
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300503
504 default:
505 break;
506 }
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300507 spin_unlock(&ioapic->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300508 return 0;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300509}
510
Stephen Hemminger79408762013-12-29 12:12:29 -0800511static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
Eddie Dong8c392692007-10-10 12:15:54 +0200512{
513 int i;
514
515 for (i = 0; i < IOAPIC_NUM_PINS; i++)
516 ioapic->redirtbl[i].fields.mask = 1;
517 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
518 ioapic->ioregsel = 0;
519 ioapic->irr = 0;
520 ioapic->id = 0;
Yang Zhang10606912013-04-11 19:21:38 +0800521 rtc_irq_eoi_tracking_reset(ioapic);
Avi Kivity46a929b2009-12-28 14:08:30 +0200522 update_handled_vectors(ioapic);
Eddie Dong8c392692007-10-10 12:15:54 +0200523}
524
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400525static const struct kvm_io_device_ops ioapic_mmio_ops = {
526 .read = ioapic_mmio_read,
527 .write = ioapic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400528};
529
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300530int kvm_ioapic_init(struct kvm *kvm)
531{
532 struct kvm_ioapic *ioapic;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400533 int ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300534
535 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
536 if (!ioapic)
537 return -ENOMEM;
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300538 spin_lock_init(&ioapic->lock);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +0800539 kvm->arch.vioapic = ioapic;
Eddie Dong8c392692007-10-10 12:15:54 +0200540 kvm_ioapic_reset(ioapic);
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400541 kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300542 ioapic->kvm = kvm;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200543 mutex_lock(&kvm->slots_lock);
Sasha Levin743eeb02011-07-27 16:00:48 +0300544 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
545 IOAPIC_MEM_LENGTH, &ioapic->dev);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200546 mutex_unlock(&kvm->slots_lock);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800547 if (ret < 0) {
548 kvm->arch.vioapic = NULL;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400549 kfree(ioapic);
Wei Yongjun1ae77ba2010-02-09 10:31:09 +0800550 }
Gregory Haskins090b7af2009-07-07 17:08:44 -0400551
552 return ret;
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300553}
Avi Kivity75858a82009-01-04 17:10:50 +0200554
Wei Yongjun72bb2fc2010-02-09 10:33:03 +0800555void kvm_ioapic_destroy(struct kvm *kvm)
556{
557 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
558
559 if (ioapic) {
560 kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
561 kvm->arch.vioapic = NULL;
562 kfree(ioapic);
563 }
564}
565
Gleb Natapoveba02262009-08-24 11:54:25 +0300566int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
567{
568 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
569 if (!ioapic)
570 return -EINVAL;
571
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300572 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300573 memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300574 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300575 return 0;
576}
577
578int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
579{
580 struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
581 if (!ioapic)
582 return -EINVAL;
583
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300584 spin_lock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300585 memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
Avi Kivity46a929b2009-12-28 14:08:30 +0200586 update_handled_vectors(ioapic);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800587 kvm_vcpu_request_scan_ioapic(kvm);
Yang Zhang10606912013-04-11 19:21:38 +0800588 kvm_rtc_eoi_tracking_restore_all(ioapic);
Marcelo Tosatti46a47b12010-04-23 14:03:38 -0300589 spin_unlock(&ioapic->lock);
Gleb Natapoveba02262009-08-24 11:54:25 +0300590 return 0;
591}