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 |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 53 | static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq, |
| 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 | |
| 100 | static 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 | |
| 128 | void 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 | |
| 137 | static 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 Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 150 | static 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 | |
| 158 | static 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 Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 166 | static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx, |
| 167 | bool line_status) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 168 | { |
Sheng Yang | cf9e4e1 | 2009-02-11 16:03:36 +0800 | [diff] [blame] | 169 | union kvm_ioapic_redirect_entry *pent; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 170 | int injected = -1; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 171 | |
| 172 | pent = &ioapic->redirtbl[idx]; |
| 173 | |
| 174 | if (!pent->fields.mask) { |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 175 | injected = ioapic_deliver(ioapic, idx, line_status); |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 176 | if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 177 | pent->fields.remote_irr = 1; |
| 178 | } |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 179 | |
| 180 | return injected; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 181 | } |
| 182 | |
Avi Kivity | 46a929b | 2009-12-28 14:08:30 +0200 | [diff] [blame] | 183 | static 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 Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame^] | 196 | void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 197 | { |
| 198 | struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic; |
| 199 | union kvm_ioapic_redirect_entry *e; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 200 | int index; |
| 201 | |
| 202 | spin_lock(&ioapic->lock); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 203 | 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 Zhang | f3bff63 | 2013-04-11 19:21:39 +0800 | [diff] [blame] | 208 | index) || index == RTC_GSI)) { |
Yang Zhang | 44944d4 | 2013-04-07 08:25:18 +0800 | [diff] [blame] | 209 | 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 Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 212 | } |
| 213 | } |
| 214 | spin_unlock(&ioapic->lock); |
| 215 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 216 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame^] | 217 | #ifdef CONFIG_X86 |
| 218 | void kvm_vcpu_request_scan_ioapic(struct kvm *kvm) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 219 | { |
| 220 | struct kvm_ioapic *ioapic = kvm->arch.vioapic; |
| 221 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame^] | 222 | if (!ioapic) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 223 | return; |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame^] | 224 | kvm_make_scan_ioapic_request(kvm); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 225 | } |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame^] | 226 | #else |
| 227 | void kvm_vcpu_request_scan_ioapic(struct kvm *kvm) |
| 228 | { |
| 229 | return; |
| 230 | } |
| 231 | #endif |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 232 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 233 | static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val) |
| 234 | { |
| 235 | unsigned index; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 236 | bool mask_before, mask_after; |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 237 | union kvm_ioapic_redirect_entry *e; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 238 | |
| 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 Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 254 | ioapic_debug("change redir index %x val %x\n", index, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 255 | if (index >= IOAPIC_NUM_PINS) |
| 256 | return; |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 257 | e = &ioapic->redirtbl[index]; |
| 258 | mask_before = e->fields.mask; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 259 | if (ioapic->ioregsel & 1) { |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 260 | e->bits &= 0xffffffff; |
| 261 | e->bits |= (u64) val << 32; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 262 | } else { |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 263 | e->bits &= ~0xffffffffULL; |
| 264 | e->bits |= (u32) val; |
| 265 | e->fields.remote_irr = 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 266 | } |
Avi Kivity | 46a929b | 2009-12-28 14:08:30 +0200 | [diff] [blame] | 267 | update_handled_vectors(ioapic); |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 268 | mask_after = e->fields.mask; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 269 | if (mask_before != mask_after) |
Gleb Natapov | 4a99435 | 2010-07-11 15:32:23 +0300 | [diff] [blame] | 270 | kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after); |
Gleb Natapov | 70f93da | 2009-07-05 18:48:12 +0300 | [diff] [blame] | 271 | if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG |
Gleb Natapov | b4a2f5e | 2009-07-05 18:48:11 +0300 | [diff] [blame] | 272 | && ioapic->irr & (1 << index)) |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 273 | ioapic_service(ioapic, index, false); |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame^] | 274 | kvm_vcpu_request_scan_ioapic(ioapic->kvm); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 275 | break; |
| 276 | } |
| 277 | } |
| 278 | |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 279 | static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq, bool line_status) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 280 | { |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 281 | union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq]; |
| 282 | struct kvm_lapic_irq irqe; |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 283 | int ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 284 | |
| 285 | ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x " |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 286 | "vector=%x trig_mode=%x\n", |
Liu Yuan | a38f84c | 2011-04-21 14:53:57 +0800 | [diff] [blame] | 287 | entry->fields.dest_id, entry->fields.dest_mode, |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 288 | 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 Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 298 | |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 299 | 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 Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 308 | } |
| 309 | |
Michael S. Tsirkin | 1a577b72 | 2012-07-19 13:45:20 +0300 | [diff] [blame] | 310 | 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] | 311 | int level, bool line_status) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 312 | { |
Marcelo Tosatti | 07dc726 | 2010-06-02 11:26:26 -0300 | [diff] [blame] | 313 | u32 old_irr; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 314 | u32 mask = 1 << irq; |
Sheng Yang | cf9e4e1 | 2009-02-11 16:03:36 +0800 | [diff] [blame] | 315 | union kvm_ioapic_redirect_entry entry; |
Michael S. Tsirkin | 28a6fda | 2012-08-14 19:20:28 +0300 | [diff] [blame] | 316 | int ret, irq_level; |
| 317 | |
| 318 | BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 319 | |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 320 | spin_lock(&ioapic->lock); |
Marcelo Tosatti | 07dc726 | 2010-06-02 11:26:26 -0300 | [diff] [blame] | 321 | old_irr = ioapic->irr; |
Michael S. Tsirkin | 28a6fda | 2012-08-14 19:20:28 +0300 | [diff] [blame] | 322 | 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 Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 331 | |
| 332 | if (irq == RTC_GSI && line_status && |
| 333 | rtc_irq_check_coalesced(ioapic)) { |
| 334 | ret = 0; /* coalesced */ |
| 335 | goto out; |
| 336 | } |
Michael S. Tsirkin | 28a6fda | 2012-08-14 19:20:28 +0300 | [diff] [blame] | 337 | ioapic->irr |= mask; |
| 338 | if ((edge && old_irr != ioapic->irr) || |
| 339 | (!edge && !entry.fields.remote_irr)) |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 340 | ret = ioapic_service(ioapic, irq, line_status); |
Michael S. Tsirkin | 28a6fda | 2012-08-14 19:20:28 +0300 | [diff] [blame] | 341 | else |
| 342 | ret = 0; /* report coalesced interrupt */ |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 343 | } |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 344 | out: |
Michael S. Tsirkin | 28a6fda | 2012-08-14 19:20:28 +0300 | [diff] [blame] | 345 | trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 346 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 347 | |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 348 | return ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 349 | } |
| 350 | |
Michael S. Tsirkin | 1a577b72 | 2012-07-19 13:45:20 +0300 | [diff] [blame] | 351 | void 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 Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 361 | static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, |
| 362 | struct kvm_ioapic *ioapic, int vector, int trigger_mode) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 363 | { |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 364 | int i; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 365 | |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 366 | for (i = 0; i < IOAPIC_NUM_PINS; i++) { |
| 367 | union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i]; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 368 | |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 369 | if (ent->fields.vector != vector) |
| 370 | continue; |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 371 | |
Yang Zhang | 2c2bf01 | 2013-04-11 19:21:41 +0800 | [diff] [blame] | 372 | if (i == RTC_GSI) |
| 373 | rtc_irq_eoi(ioapic, vcpu); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 374 | /* |
| 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 Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 382 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 383 | kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 384 | spin_lock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 385 | |
| 386 | if (trigger_mode != IOAPIC_LEVEL_TRIG) |
| 387 | continue; |
| 388 | |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 389 | ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG); |
| 390 | ent->fields.remote_irr = 0; |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 391 | if (!ent->fields.mask && (ioapic->irr & (1 << i))) |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 392 | ioapic_service(ioapic, i, false); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 393 | } |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 394 | } |
| 395 | |
Michael S. Tsirkin | a0c9a822 | 2012-04-11 18:49:55 +0300 | [diff] [blame] | 396 | bool 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 Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 403 | 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] | 404 | { |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 405 | struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic; |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 406 | |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 407 | spin_lock(&ioapic->lock); |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 408 | __kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 409 | spin_unlock(&ioapic->lock); |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 410 | } |
| 411 | |
Gregory Haskins | d76685c4 | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 412 | static 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. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 417 | 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] | 418 | { |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 419 | return ((addr >= ioapic->base_address && |
| 420 | (addr < ioapic->base_address + IOAPIC_MEM_LENGTH))); |
| 421 | } |
| 422 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 423 | static int ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len, |
| 424 | void *val) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 425 | { |
Gregory Haskins | d76685c4 | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 426 | struct kvm_ioapic *ioapic = to_ioapic(this); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 427 | u32 result; |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 428 | if (!ioapic_in_range(ioapic, addr)) |
| 429 | return -EOPNOTSUPP; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 430 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 431 | ioapic_debug("addr %lx\n", (unsigned long)addr); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 432 | ASSERT(!(addr & 0xf)); /* check alignment */ |
| 433 | |
| 434 | addr &= 0xff; |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 435 | spin_lock(&ioapic->lock); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 436 | 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 Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 449 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 450 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 451 | 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. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 463 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 464 | } |
| 465 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 466 | static int ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len, |
| 467 | const void *val) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 468 | { |
Gregory Haskins | d76685c4 | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 469 | struct kvm_ioapic *ioapic = to_ioapic(this); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 470 | u32 data; |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 471 | if (!ioapic_in_range(ioapic, addr)) |
| 472 | return -EOPNOTSUPP; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 473 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 474 | ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n", |
| 475 | (void*)addr, len, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 476 | ASSERT(!(addr & 0xf)); /* check alignment */ |
Marcelo Tosatti | 60eead7 | 2009-06-04 15:08:23 -0300 | [diff] [blame] | 477 | |
Julian Stecklina | d77fe63 | 2011-11-23 13:54:30 +0100 | [diff] [blame] | 478 | switch (len) { |
| 479 | case 8: |
| 480 | case 4: |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 481 | data = *(u32 *) val; |
Julian Stecklina | d77fe63 | 2011-11-23 13:54:30 +0100 | [diff] [blame] | 482 | break; |
| 483 | case 2: |
| 484 | data = *(u16 *) val; |
| 485 | break; |
| 486 | case 1: |
| 487 | data = *(u8 *) val; |
| 488 | break; |
| 489 | default: |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 490 | printk(KERN_WARNING "ioapic: Unsupported size %d\n", len); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 491 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | addr &= 0xff; |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 495 | spin_lock(&ioapic->lock); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 496 | switch (addr) { |
| 497 | case IOAPIC_REG_SELECT: |
Julian Stecklina | d77fe63 | 2011-11-23 13:54:30 +0100 | [diff] [blame] | 498 | ioapic->ioregsel = data & 0xFF; /* 8-bit register */ |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 499 | break; |
| 500 | |
| 501 | case IOAPIC_REG_WINDOW: |
| 502 | ioapic_write_indirect(ioapic, data); |
| 503 | break; |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 504 | #ifdef CONFIG_IA64 |
| 505 | case IOAPIC_REG_EOI: |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 506 | __kvm_ioapic_update_eoi(NULL, ioapic, data, IOAPIC_LEVEL_TRIG); |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 507 | break; |
| 508 | #endif |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 509 | |
| 510 | default: |
| 511 | break; |
| 512 | } |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 513 | spin_unlock(&ioapic->lock); |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 514 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 515 | } |
| 516 | |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 517 | void 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 Zhang | 1060691 | 2013-04-11 19:21:38 +0800 | [diff] [blame] | 527 | rtc_irq_eoi_tracking_reset(ioapic); |
Avi Kivity | 46a929b | 2009-12-28 14:08:30 +0200 | [diff] [blame] | 528 | update_handled_vectors(ioapic); |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 529 | } |
| 530 | |
Gregory Haskins | d76685c4 | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 531 | static const struct kvm_io_device_ops ioapic_mmio_ops = { |
| 532 | .read = ioapic_mmio_read, |
| 533 | .write = ioapic_mmio_write, |
Gregory Haskins | d76685c4 | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 534 | }; |
| 535 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 536 | int kvm_ioapic_init(struct kvm *kvm) |
| 537 | { |
| 538 | struct kvm_ioapic *ioapic; |
Gregory Haskins | 090b7af | 2009-07-07 17:08:44 -0400 | [diff] [blame] | 539 | int ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 540 | |
| 541 | ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL); |
| 542 | if (!ioapic) |
| 543 | return -ENOMEM; |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 544 | spin_lock_init(&ioapic->lock); |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 545 | kvm->arch.vioapic = ioapic; |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 546 | kvm_ioapic_reset(ioapic); |
Gregory Haskins | d76685c4 | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 547 | kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 548 | ioapic->kvm = kvm; |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 549 | mutex_lock(&kvm->slots_lock); |
Sasha Levin | 743eeb0 | 2011-07-27 16:00:48 +0300 | [diff] [blame] | 550 | ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address, |
| 551 | IOAPIC_MEM_LENGTH, &ioapic->dev); |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 552 | mutex_unlock(&kvm->slots_lock); |
Wei Yongjun | 1ae77ba | 2010-02-09 10:31:09 +0800 | [diff] [blame] | 553 | if (ret < 0) { |
| 554 | kvm->arch.vioapic = NULL; |
Gregory Haskins | 090b7af | 2009-07-07 17:08:44 -0400 | [diff] [blame] | 555 | kfree(ioapic); |
Wei Yongjun | 1ae77ba | 2010-02-09 10:31:09 +0800 | [diff] [blame] | 556 | } |
Gregory Haskins | 090b7af | 2009-07-07 17:08:44 -0400 | [diff] [blame] | 557 | |
| 558 | return ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 559 | } |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 560 | |
Wei Yongjun | 72bb2fc | 2010-02-09 10:33:03 +0800 | [diff] [blame] | 561 | void 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 Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 572 | int 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 Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 578 | spin_lock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 579 | memcpy(state, ioapic, sizeof(struct kvm_ioapic_state)); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 580 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 581 | return 0; |
| 582 | } |
| 583 | |
| 584 | int 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 Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 590 | spin_lock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 591 | memcpy(ioapic, state, sizeof(struct kvm_ioapic_state)); |
Avi Kivity | 46a929b | 2009-12-28 14:08:30 +0200 | [diff] [blame] | 592 | update_handled_vectors(ioapic); |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame^] | 593 | kvm_vcpu_request_scan_ioapic(kvm); |
Yang Zhang | 1060691 | 2013-04-11 19:21:38 +0800 | [diff] [blame] | 594 | kvm_rtc_eoi_tracking_restore_all(ioapic); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 595 | spin_unlock(&ioapic->lock); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 596 | return 0; |
| 597 | } |