Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2001 MandrakeSoft S.A. |
Avi Kivity | 221d059 | 2010-05-23 18:37:00 +0300 | [diff] [blame] | 3 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 4 | * |
| 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 Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 30 | #include <linux/kvm_host.h> |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 31 | #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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 37 | #include <linux/slab.h> |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 38 | #include <linux/export.h> |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 39 | #include <asm/processor.h> |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 40 | #include <asm/page.h> |
| 41 | #include <asm/current.h> |
Gleb Natapov | 1000ff8 | 2009-07-07 16:00:57 +0300 | [diff] [blame] | 42 | #include <trace/events/kvm.h> |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 43 | |
| 44 | #include "ioapic.h" |
| 45 | #include "lapic.h" |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 46 | #include "irq.h" |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 47 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 48 | #if 0 |
| 49 | #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) |
| 50 | #else |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 51 | #define ioapic_debug(fmt, arg...) |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 52 | #endif |
Paolo Bonzini | 0b10a1c | 2014-03-18 11:51:29 +0100 | [diff] [blame] | 53 | static int ioapic_service(struct kvm_ioapic *vioapic, int irq, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 54 | bool line_status); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 55 | |
| 56 | static 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 Honig | a2c118b | 2013-02-20 14:49:16 -0800 | [diff] [blame] | 78 | if (redir_index < IOAPIC_NUM_PINS) |
| 79 | redir_content = |
| 80 | ioapic->redirtbl[redir_index].bits; |
| 81 | else |
| 82 | redir_content = ~0ULL; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 83 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 84 | result = (ioapic->ioregsel & 0x1) ? |
| 85 | (redir_content >> 32) & 0xffffffff : |
| 86 | redir_content & 0xffffffff; |
| 87 | break; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | return result; |
| 92 | } |
| 93 | |
Yang Zhang | 1060691 | 2013-04-11 19:21:38 +0800 | [diff] [blame] | 94 | static 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 | |
Paolo Bonzini | 4009b24 | 2014-03-28 20:41:51 +0100 | [diff] [blame] | 100 | static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic); |
| 101 | |
| 102 | static 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 Zhang | 1060691 | 2013-04-11 19:21:38 +0800 | [diff] [blame] | 108 | static 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; |
| 112 | union kvm_ioapic_redirect_entry *e; |
| 113 | |
| 114 | e = &ioapic->redirtbl[RTC_GSI]; |
| 115 | if (!kvm_apic_match_dest(vcpu, NULL, 0, e->fields.dest_id, |
| 116 | e->fields.dest_mode)) |
| 117 | return; |
| 118 | |
| 119 | new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector); |
| 120 | old_val = test_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map); |
| 121 | |
| 122 | if (new_val == old_val) |
| 123 | return; |
| 124 | |
| 125 | if (new_val) { |
| 126 | __set_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map); |
| 127 | ioapic->rtc_status.pending_eoi++; |
| 128 | } else { |
| 129 | __clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map); |
| 130 | ioapic->rtc_status.pending_eoi--; |
Paolo Bonzini | 4009b24 | 2014-03-28 20:41:51 +0100 | [diff] [blame] | 131 | rtc_status_pending_eoi_check_valid(ioapic); |
Yang Zhang | 1060691 | 2013-04-11 19:21:38 +0800 | [diff] [blame] | 132 | } |
Yang Zhang | 1060691 | 2013-04-11 19:21:38 +0800 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu) |
| 136 | { |
| 137 | struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic; |
| 138 | |
| 139 | spin_lock(&ioapic->lock); |
| 140 | __rtc_irq_eoi_tracking_restore_one(vcpu); |
| 141 | spin_unlock(&ioapic->lock); |
| 142 | } |
| 143 | |
| 144 | static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic) |
| 145 | { |
| 146 | struct kvm_vcpu *vcpu; |
| 147 | int i; |
| 148 | |
| 149 | if (RTC_GSI >= IOAPIC_NUM_PINS) |
| 150 | return; |
| 151 | |
| 152 | rtc_irq_eoi_tracking_reset(ioapic); |
| 153 | kvm_for_each_vcpu(i, vcpu, ioapic->kvm) |
| 154 | __rtc_irq_eoi_tracking_restore_one(vcpu); |
| 155 | } |
| 156 | |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 157 | static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu) |
| 158 | { |
Paolo Bonzini | 4009b24 | 2014-03-28 20:41:51 +0100 | [diff] [blame] | 159 | if (test_and_clear_bit(vcpu->vcpu_id, ioapic->rtc_status.dest_map)) { |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 160 | --ioapic->rtc_status.pending_eoi; |
Paolo Bonzini | 4009b24 | 2014-03-28 20:41:51 +0100 | [diff] [blame] | 161 | rtc_status_pending_eoi_check_valid(ioapic); |
| 162 | } |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic) |
| 166 | { |
| 167 | if (ioapic->rtc_status.pending_eoi > 0) |
| 168 | return true; /* coalesced */ |
| 169 | |
| 170 | return false; |
| 171 | } |
| 172 | |
Paolo Bonzini | 44847de | 2014-03-18 12:00:14 +0100 | [diff] [blame] | 173 | static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq, |
| 174 | int irq_level, bool line_status) |
| 175 | { |
| 176 | union kvm_ioapic_redirect_entry entry; |
| 177 | u32 mask = 1 << irq; |
| 178 | u32 old_irr; |
| 179 | int edge, ret; |
| 180 | |
| 181 | entry = ioapic->redirtbl[irq]; |
| 182 | edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG); |
| 183 | |
| 184 | if (!irq_level) { |
| 185 | ioapic->irr &= ~mask; |
| 186 | ret = 1; |
| 187 | goto out; |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | * Return 0 for coalesced interrupts; for edge-triggered interrupts, |
| 192 | * this only happens if a previous edge has not been delivered due |
| 193 | * do masking. For level interrupts, the remote_irr field tells |
| 194 | * us if the interrupt is waiting for an EOI. |
| 195 | * |
| 196 | * RTC is special: it is edge-triggered, but userspace likes to know |
| 197 | * if it has been already ack-ed via EOI because coalesced RTC |
| 198 | * interrupts lead to time drift in Windows guests. So we track |
| 199 | * EOI manually for the RTC interrupt. |
| 200 | */ |
| 201 | if (irq == RTC_GSI && line_status && |
| 202 | rtc_irq_check_coalesced(ioapic)) { |
| 203 | ret = 0; |
| 204 | goto out; |
| 205 | } |
| 206 | |
| 207 | old_irr = ioapic->irr; |
| 208 | ioapic->irr |= mask; |
| 209 | if ((edge && old_irr == ioapic->irr) || |
| 210 | (!edge && entry.fields.remote_irr)) { |
| 211 | ret = 0; |
| 212 | goto out; |
| 213 | } |
| 214 | |
| 215 | ret = ioapic_service(ioapic, irq, line_status); |
| 216 | |
| 217 | out: |
| 218 | trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0); |
| 219 | return ret; |
| 220 | } |
| 221 | |
Paolo Bonzini | 673f7b4 | 2014-03-18 11:39:23 +0100 | [diff] [blame] | 222 | static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr) |
| 223 | { |
| 224 | u32 idx; |
| 225 | |
| 226 | rtc_irq_eoi_tracking_reset(ioapic); |
| 227 | for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS) |
| 228 | ioapic_set_irq(ioapic, idx, 1, true); |
| 229 | |
| 230 | kvm_rtc_eoi_tracking_restore_all(ioapic); |
| 231 | } |
| 232 | |
| 233 | |
Avi Kivity | 46a929b | 2009-12-28 14:08:30 +0200 | [diff] [blame] | 234 | static void update_handled_vectors(struct kvm_ioapic *ioapic) |
| 235 | { |
| 236 | DECLARE_BITMAP(handled_vectors, 256); |
| 237 | int i; |
| 238 | |
| 239 | memset(handled_vectors, 0, sizeof(handled_vectors)); |
| 240 | for (i = 0; i < IOAPIC_NUM_PINS; ++i) |
| 241 | __set_bit(ioapic->redirtbl[i].fields.vector, handled_vectors); |
| 242 | memcpy(ioapic->handled_vectors, handled_vectors, |
| 243 | sizeof(handled_vectors)); |
| 244 | smp_wmb(); |
| 245 | } |
| 246 | |
Yang Zhang | cf9e65b | 2013-04-11 19:25:14 +0800 | [diff] [blame] | 247 | void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap, |
| 248 | u32 *tmr) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 249 | { |
| 250 | struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic; |
| 251 | union kvm_ioapic_redirect_entry *e; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 252 | int index; |
| 253 | |
| 254 | spin_lock(&ioapic->lock); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 255 | for (index = 0; index < IOAPIC_NUM_PINS; index++) { |
| 256 | e = &ioapic->redirtbl[index]; |
| 257 | if (!e->fields.mask && |
| 258 | (e->fields.trig_mode == IOAPIC_LEVEL_TRIG || |
| 259 | kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, |
Yang Zhang | f3bff63 | 2013-04-11 19:21:39 +0800 | [diff] [blame] | 260 | index) || index == RTC_GSI)) { |
Yang Zhang | 44944d4 | 2013-04-07 08:25:18 +0800 | [diff] [blame] | 261 | if (kvm_apic_match_dest(vcpu, NULL, 0, |
Yang Zhang | cf9e65b | 2013-04-11 19:25:14 +0800 | [diff] [blame] | 262 | e->fields.dest_id, e->fields.dest_mode)) { |
| 263 | __set_bit(e->fields.vector, |
| 264 | (unsigned long *)eoi_exit_bitmap); |
| 265 | if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG) |
| 266 | __set_bit(e->fields.vector, |
| 267 | (unsigned long *)tmr); |
| 268 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 269 | } |
| 270 | } |
| 271 | spin_unlock(&ioapic->lock); |
| 272 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 273 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 274 | #ifdef CONFIG_X86 |
| 275 | void kvm_vcpu_request_scan_ioapic(struct kvm *kvm) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 276 | { |
| 277 | struct kvm_ioapic *ioapic = kvm->arch.vioapic; |
| 278 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 279 | if (!ioapic) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 280 | return; |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 281 | kvm_make_scan_ioapic_request(kvm); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 282 | } |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 283 | #else |
| 284 | void kvm_vcpu_request_scan_ioapic(struct kvm *kvm) |
| 285 | { |
| 286 | return; |
| 287 | } |
| 288 | #endif |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 289 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 290 | static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val) |
| 291 | { |
| 292 | unsigned index; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 293 | bool mask_before, mask_after; |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 294 | union kvm_ioapic_redirect_entry *e; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 295 | |
| 296 | switch (ioapic->ioregsel) { |
| 297 | case IOAPIC_REG_VERSION: |
| 298 | /* Writes are ignored. */ |
| 299 | break; |
| 300 | |
| 301 | case IOAPIC_REG_APIC_ID: |
| 302 | ioapic->id = (val >> 24) & 0xf; |
| 303 | break; |
| 304 | |
| 305 | case IOAPIC_REG_ARB_ID: |
| 306 | break; |
| 307 | |
| 308 | default: |
| 309 | index = (ioapic->ioregsel - 0x10) >> 1; |
| 310 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 311 | ioapic_debug("change redir index %x val %x\n", index, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 312 | if (index >= IOAPIC_NUM_PINS) |
| 313 | return; |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 314 | e = &ioapic->redirtbl[index]; |
| 315 | mask_before = e->fields.mask; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 316 | if (ioapic->ioregsel & 1) { |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 317 | e->bits &= 0xffffffff; |
| 318 | e->bits |= (u64) val << 32; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 319 | } else { |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 320 | e->bits &= ~0xffffffffULL; |
| 321 | e->bits |= (u32) val; |
| 322 | e->fields.remote_irr = 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 323 | } |
Avi Kivity | 46a929b | 2009-12-28 14:08:30 +0200 | [diff] [blame] | 324 | update_handled_vectors(ioapic); |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 325 | mask_after = e->fields.mask; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 326 | if (mask_before != mask_after) |
Gleb Natapov | 4a99435 | 2010-07-11 15:32:23 +0300 | [diff] [blame] | 327 | kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after); |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 328 | if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG |
Gleb Natapov | b4a2f5e | 2009-07-05 18:48:11 +0300 | [diff] [blame] | 329 | && ioapic->irr & (1 << index)) |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 330 | ioapic_service(ioapic, index, false); |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 331 | kvm_vcpu_request_scan_ioapic(ioapic->kvm); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 332 | break; |
| 333 | } |
| 334 | } |
| 335 | |
Paolo Bonzini | 0b10a1c | 2014-03-18 11:51:29 +0100 | [diff] [blame] | 336 | static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 337 | { |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 338 | union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq]; |
| 339 | struct kvm_lapic_irq irqe; |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 340 | int ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 341 | |
Paolo Bonzini | 0b10a1c | 2014-03-18 11:51:29 +0100 | [diff] [blame] | 342 | if (entry->fields.mask) |
| 343 | return -1; |
| 344 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 345 | ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x " |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 346 | "vector=%x trig_mode=%x\n", |
Liu Yuan | a38f84c | 2011-04-21 14:53:57 +0800 | [diff] [blame] | 347 | entry->fields.dest_id, entry->fields.dest_mode, |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 348 | entry->fields.delivery_mode, entry->fields.vector, |
| 349 | entry->fields.trig_mode); |
| 350 | |
| 351 | irqe.dest_id = entry->fields.dest_id; |
| 352 | irqe.vector = entry->fields.vector; |
| 353 | irqe.dest_mode = entry->fields.dest_mode; |
| 354 | irqe.trig_mode = entry->fields.trig_mode; |
| 355 | irqe.delivery_mode = entry->fields.delivery_mode << 8; |
| 356 | irqe.level = 1; |
| 357 | irqe.shorthand = 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 358 | |
Paolo Bonzini | 0bc830b | 2014-03-18 10:47:17 +0100 | [diff] [blame] | 359 | if (irqe.trig_mode == IOAPIC_EDGE_TRIG) |
| 360 | ioapic->irr &= ~(1 << irq); |
| 361 | |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 362 | if (irq == RTC_GSI && line_status) { |
Paolo Bonzini | 4009b24 | 2014-03-28 20:41:51 +0100 | [diff] [blame] | 363 | /* |
| 364 | * pending_eoi cannot ever become negative (see |
| 365 | * rtc_status_pending_eoi_check_valid) and the caller |
| 366 | * ensures that it is only called if it is >= zero, namely |
| 367 | * if rtc_irq_check_coalesced returns false). |
| 368 | */ |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 369 | BUG_ON(ioapic->rtc_status.pending_eoi != 0); |
| 370 | ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, |
| 371 | ioapic->rtc_status.dest_map); |
Paolo Bonzini | 5678de3f | 2014-03-28 20:41:50 +0100 | [diff] [blame] | 372 | ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret); |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 373 | } else |
| 374 | ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL); |
| 375 | |
Paolo Bonzini | 0b10a1c | 2014-03-18 11:51:29 +0100 | [diff] [blame] | 376 | if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG) |
| 377 | entry->fields.remote_irr = 1; |
| 378 | |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 379 | return ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 380 | } |
| 381 | |
Michael S. Tsirkin | 1a577b7 | 2012-07-19 13:45:20 +0300 | [diff] [blame] | 382 | int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 383 | int level, bool line_status) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 384 | { |
Michael S. Tsirkin | 28a6fda | 2012-08-14 19:20:28 +0300 | [diff] [blame] | 385 | int ret, irq_level; |
| 386 | |
| 387 | BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 388 | |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 389 | spin_lock(&ioapic->lock); |
Michael S. Tsirkin | 28a6fda | 2012-08-14 19:20:28 +0300 | [diff] [blame] | 390 | irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq], |
| 391 | irq_source_id, level); |
Paolo Bonzini | 44847de | 2014-03-18 12:00:14 +0100 | [diff] [blame] | 392 | ret = ioapic_set_irq(ioapic, irq, irq_level, line_status); |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 393 | |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 394 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 395 | |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 396 | return ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 397 | } |
| 398 | |
Michael S. Tsirkin | 1a577b7 | 2012-07-19 13:45:20 +0300 | [diff] [blame] | 399 | void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id) |
| 400 | { |
| 401 | int i; |
| 402 | |
| 403 | spin_lock(&ioapic->lock); |
| 404 | for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++) |
| 405 | __clear_bit(irq_source_id, &ioapic->irq_states[i]); |
| 406 | spin_unlock(&ioapic->lock); |
| 407 | } |
| 408 | |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 409 | static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, |
| 410 | struct kvm_ioapic *ioapic, int vector, int trigger_mode) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 411 | { |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 412 | int i; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 413 | |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 414 | for (i = 0; i < IOAPIC_NUM_PINS; i++) { |
| 415 | union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i]; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 416 | |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 417 | if (ent->fields.vector != vector) |
| 418 | continue; |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 419 | |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 420 | if (i == RTC_GSI) |
| 421 | rtc_irq_eoi(ioapic, vcpu); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 422 | /* |
| 423 | * We are dropping lock while calling ack notifiers because ack |
| 424 | * notifier callbacks for assigned devices call into IOAPIC |
| 425 | * recursively. Since remote_irr is cleared only after call |
| 426 | * to notifiers if the same vector will be delivered while lock |
| 427 | * is dropped it will be put into irr and will be delivered |
| 428 | * after ack notifier returns. |
| 429 | */ |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 430 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 431 | kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 432 | spin_lock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 433 | |
| 434 | if (trigger_mode != IOAPIC_LEVEL_TRIG) |
| 435 | continue; |
| 436 | |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 437 | ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG); |
| 438 | ent->fields.remote_irr = 0; |
Paolo Bonzini | 0b10a1c | 2014-03-18 11:51:29 +0100 | [diff] [blame] | 439 | if (ioapic->irr & (1 << i)) |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 440 | ioapic_service(ioapic, i, false); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 441 | } |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 442 | } |
| 443 | |
Michael S. Tsirkin | a0c9a822 | 2012-04-11 18:49:55 +0300 | [diff] [blame] | 444 | bool kvm_ioapic_handles_vector(struct kvm *kvm, int vector) |
| 445 | { |
| 446 | struct kvm_ioapic *ioapic = kvm->arch.vioapic; |
| 447 | smp_rmb(); |
| 448 | return test_bit(vector, ioapic->handled_vectors); |
| 449 | } |
| 450 | |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 451 | void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode) |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 452 | { |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 453 | struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic; |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 454 | |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 455 | spin_lock(&ioapic->lock); |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 456 | __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 457 | spin_unlock(&ioapic->lock); |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 460 | static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev) |
| 461 | { |
| 462 | return container_of(dev, struct kvm_ioapic, dev); |
| 463 | } |
| 464 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 465 | static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 466 | { |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 467 | return ((addr >= ioapic->base_address && |
| 468 | (addr < ioapic->base_address + IOAPIC_MEM_LENGTH))); |
| 469 | } |
| 470 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 471 | static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len, |
| 472 | void *val) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 473 | { |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 474 | struct kvm_ioapic *ioapic = to_ioapic(this); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 475 | u32 result; |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 476 | if (!ioapic_in_range(ioapic, addr)) |
| 477 | return -EOPNOTSUPP; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 478 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 479 | ioapic_debug("addr %lx\n", (unsigned long)addr); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 480 | ASSERT(!(addr & 0xf)); /* check alignment */ |
| 481 | |
| 482 | addr &= 0xff; |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 483 | spin_lock(&ioapic->lock); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 484 | switch (addr) { |
| 485 | case IOAPIC_REG_SELECT: |
| 486 | result = ioapic->ioregsel; |
| 487 | break; |
| 488 | |
| 489 | case IOAPIC_REG_WINDOW: |
| 490 | result = ioapic_read_indirect(ioapic, addr, len); |
| 491 | break; |
| 492 | |
| 493 | default: |
| 494 | result = 0; |
| 495 | break; |
| 496 | } |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 497 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 498 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 499 | switch (len) { |
| 500 | case 8: |
| 501 | *(u64 *) val = result; |
| 502 | break; |
| 503 | case 1: |
| 504 | case 2: |
| 505 | case 4: |
| 506 | memcpy(val, (char *)&result, len); |
| 507 | break; |
| 508 | default: |
| 509 | printk(KERN_WARNING "ioapic: wrong length %d\n", len); |
| 510 | } |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 511 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 512 | } |
| 513 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 514 | static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len, |
| 515 | const void *val) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 516 | { |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 517 | struct kvm_ioapic *ioapic = to_ioapic(this); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 518 | u32 data; |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 519 | if (!ioapic_in_range(ioapic, addr)) |
| 520 | return -EOPNOTSUPP; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 521 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 522 | ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n", |
| 523 | (void*)addr, len, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 524 | ASSERT(!(addr & 0xf)); /* check alignment */ |
Marcelo Tosatti | 60eead7 | 2009-06-04 15:08:23 -0300 | [diff] [blame] | 525 | |
Julian Stecklina | d77fe63 | 2011-11-23 13:54:30 +0100 | [diff] [blame] | 526 | switch (len) { |
| 527 | case 8: |
| 528 | case 4: |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 529 | data = *(u32 *) val; |
Julian Stecklina | d77fe63 | 2011-11-23 13:54:30 +0100 | [diff] [blame] | 530 | break; |
| 531 | case 2: |
| 532 | data = *(u16 *) val; |
| 533 | break; |
| 534 | case 1: |
| 535 | data = *(u8 *) val; |
| 536 | break; |
| 537 | default: |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 538 | printk(KERN_WARNING "ioapic: Unsupported size %d\n", len); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 539 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | addr &= 0xff; |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 543 | spin_lock(&ioapic->lock); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 544 | switch (addr) { |
| 545 | case IOAPIC_REG_SELECT: |
Julian Stecklina | d77fe63 | 2011-11-23 13:54:30 +0100 | [diff] [blame] | 546 | ioapic->ioregsel = data & 0xFF; /* 8-bit register */ |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 547 | break; |
| 548 | |
| 549 | case IOAPIC_REG_WINDOW: |
| 550 | ioapic_write_indirect(ioapic, data); |
| 551 | break; |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 552 | #ifdef CONFIG_IA64 |
| 553 | case IOAPIC_REG_EOI: |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 554 | __kvm_ioapic_update_eoi(NULL, ioapic, data, IOAPIC_LEVEL_TRIG); |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 555 | break; |
| 556 | #endif |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 557 | |
| 558 | default: |
| 559 | break; |
| 560 | } |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 561 | spin_unlock(&ioapic->lock); |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 562 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 563 | } |
| 564 | |
Stephen Hemminger | 7940876 | 2013-12-29 12:12:29 -0800 | [diff] [blame] | 565 | static void kvm_ioapic_reset(struct kvm_ioapic *ioapic) |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 566 | { |
| 567 | int i; |
| 568 | |
| 569 | for (i = 0; i < IOAPIC_NUM_PINS; i++) |
| 570 | ioapic->redirtbl[i].fields.mask = 1; |
| 571 | ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS; |
| 572 | ioapic->ioregsel = 0; |
| 573 | ioapic->irr = 0; |
| 574 | ioapic->id = 0; |
Yang Zhang | 1060691 | 2013-04-11 19:21:38 +0800 | [diff] [blame] | 575 | rtc_irq_eoi_tracking_reset(ioapic); |
Avi Kivity | 46a929b | 2009-12-28 14:08:30 +0200 | [diff] [blame] | 576 | update_handled_vectors(ioapic); |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 577 | } |
| 578 | |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 579 | static const struct kvm_io_device_ops ioapic_mmio_ops = { |
| 580 | .read = ioapic_mmio_read, |
| 581 | .write = ioapic_mmio_write, |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 582 | }; |
| 583 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 584 | int kvm_ioapic_init(struct kvm *kvm) |
| 585 | { |
| 586 | struct kvm_ioapic *ioapic; |
Gregory Haskins | 090b7af | 2009-07-07 17:08:44 -0400 | [diff] [blame] | 587 | int ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 588 | |
| 589 | ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL); |
| 590 | if (!ioapic) |
| 591 | return -ENOMEM; |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 592 | spin_lock_init(&ioapic->lock); |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 593 | kvm->arch.vioapic = ioapic; |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 594 | kvm_ioapic_reset(ioapic); |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 595 | kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 596 | ioapic->kvm = kvm; |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 597 | mutex_lock(&kvm->slots_lock); |
Sasha Levin | 743eeb0 | 2011-07-27 16:00:48 +0300 | [diff] [blame] | 598 | ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address, |
| 599 | IOAPIC_MEM_LENGTH, &ioapic->dev); |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 600 | mutex_unlock(&kvm->slots_lock); |
Wei Yongjun | 1ae77ba | 2010-02-09 10:31:09 +0800 | [diff] [blame] | 601 | if (ret < 0) { |
| 602 | kvm->arch.vioapic = NULL; |
Gregory Haskins | 090b7af | 2009-07-07 17:08:44 -0400 | [diff] [blame] | 603 | kfree(ioapic); |
Wei Yongjun | 1ae77ba | 2010-02-09 10:31:09 +0800 | [diff] [blame] | 604 | } |
Gregory Haskins | 090b7af | 2009-07-07 17:08:44 -0400 | [diff] [blame] | 605 | |
| 606 | return ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 607 | } |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 608 | |
Wei Yongjun | 72bb2fc | 2010-02-09 10:33:03 +0800 | [diff] [blame] | 609 | void kvm_ioapic_destroy(struct kvm *kvm) |
| 610 | { |
| 611 | struct kvm_ioapic *ioapic = kvm->arch.vioapic; |
| 612 | |
| 613 | if (ioapic) { |
| 614 | kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev); |
| 615 | kvm->arch.vioapic = NULL; |
| 616 | kfree(ioapic); |
| 617 | } |
| 618 | } |
| 619 | |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 620 | int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state) |
| 621 | { |
| 622 | struct kvm_ioapic *ioapic = ioapic_irqchip(kvm); |
| 623 | if (!ioapic) |
| 624 | return -EINVAL; |
| 625 | |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 626 | spin_lock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 627 | memcpy(state, ioapic, sizeof(struct kvm_ioapic_state)); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 628 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 629 | return 0; |
| 630 | } |
| 631 | |
| 632 | int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state) |
| 633 | { |
| 634 | struct kvm_ioapic *ioapic = ioapic_irqchip(kvm); |
| 635 | if (!ioapic) |
| 636 | return -EINVAL; |
| 637 | |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 638 | spin_lock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 639 | memcpy(ioapic, state, sizeof(struct kvm_ioapic_state)); |
Paolo Bonzini | 673f7b4 | 2014-03-18 11:39:23 +0100 | [diff] [blame] | 640 | ioapic->irr = 0; |
Avi Kivity | 46a929b | 2009-12-28 14:08:30 +0200 | [diff] [blame] | 641 | update_handled_vectors(ioapic); |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 642 | kvm_vcpu_request_scan_ioapic(kvm); |
Paolo Bonzini | 673f7b4 | 2014-03-18 11:39:23 +0100 | [diff] [blame] | 643 | kvm_ioapic_inject_all(ioapic, state->irr); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 644 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 645 | return 0; |
| 646 | } |