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