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