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