Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2001 MandrakeSoft S.A. |
| 3 | * |
| 4 | * MandrakeSoft S.A. |
| 5 | * 43, rue d'Aboukir |
| 6 | * 75002 Paris - France |
| 7 | * http://www.linux-mandrake.com/ |
| 8 | * http://www.mandrakesoft.com/ |
| 9 | * |
| 10 | * This library is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU Lesser General Public |
| 12 | * License as published by the Free Software Foundation; either |
| 13 | * version 2 of the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This library is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * Lesser General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU Lesser General Public |
| 21 | * License along with this library; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | * |
| 24 | * Yunhong Jiang <yunhong.jiang@intel.com> |
| 25 | * Yaozu (Eddie) Dong <eddie.dong@intel.com> |
| 26 | * Based on Xen 3.1 code. |
| 27 | */ |
| 28 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 29 | #include <linux/kvm_host.h> |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 30 | #include <linux/kvm.h> |
| 31 | #include <linux/mm.h> |
| 32 | #include <linux/highmem.h> |
| 33 | #include <linux/smp.h> |
| 34 | #include <linux/hrtimer.h> |
| 35 | #include <linux/io.h> |
| 36 | #include <asm/processor.h> |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 37 | #include <asm/page.h> |
| 38 | #include <asm/current.h> |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 39 | |
| 40 | #include "ioapic.h" |
| 41 | #include "lapic.h" |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 42 | #include "irq.h" |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 43 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 44 | #if 0 |
| 45 | #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) |
| 46 | #else |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 47 | #define ioapic_debug(fmt, arg...) |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 48 | #endif |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 49 | static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq); |
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 | |
| 73 | ASSERT(redir_index < IOAPIC_NUM_PINS); |
| 74 | |
| 75 | redir_content = ioapic->redirtbl[redir_index].bits; |
| 76 | result = (ioapic->ioregsel & 0x1) ? |
| 77 | (redir_content >> 32) & 0xffffffff : |
| 78 | redir_content & 0xffffffff; |
| 79 | break; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | return result; |
| 84 | } |
| 85 | |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 86 | static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 87 | { |
| 88 | union ioapic_redir_entry *pent; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 89 | int injected = -1; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 90 | |
| 91 | pent = &ioapic->redirtbl[idx]; |
| 92 | |
| 93 | if (!pent->fields.mask) { |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 94 | injected = ioapic_deliver(ioapic, idx); |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 95 | if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 96 | pent->fields.remote_irr = 1; |
| 97 | } |
| 98 | if (!pent->fields.trig_mode) |
| 99 | ioapic->irr &= ~(1 << idx); |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 100 | |
| 101 | return injected; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val) |
| 105 | { |
| 106 | unsigned index; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 107 | bool mask_before, mask_after; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 108 | |
| 109 | switch (ioapic->ioregsel) { |
| 110 | case IOAPIC_REG_VERSION: |
| 111 | /* Writes are ignored. */ |
| 112 | break; |
| 113 | |
| 114 | case IOAPIC_REG_APIC_ID: |
| 115 | ioapic->id = (val >> 24) & 0xf; |
| 116 | break; |
| 117 | |
| 118 | case IOAPIC_REG_ARB_ID: |
| 119 | break; |
| 120 | |
| 121 | default: |
| 122 | index = (ioapic->ioregsel - 0x10) >> 1; |
| 123 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 124 | ioapic_debug("change redir index %x val %x\n", index, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 125 | if (index >= IOAPIC_NUM_PINS) |
| 126 | return; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 127 | mask_before = ioapic->redirtbl[index].fields.mask; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 128 | if (ioapic->ioregsel & 1) { |
| 129 | ioapic->redirtbl[index].bits &= 0xffffffff; |
| 130 | ioapic->redirtbl[index].bits |= (u64) val << 32; |
| 131 | } else { |
| 132 | ioapic->redirtbl[index].bits &= ~0xffffffffULL; |
| 133 | ioapic->redirtbl[index].bits |= (u32) val; |
| 134 | ioapic->redirtbl[index].fields.remote_irr = 0; |
| 135 | } |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 136 | mask_after = ioapic->redirtbl[index].fields.mask; |
| 137 | if (mask_before != mask_after) |
| 138 | kvm_fire_mask_notifiers(ioapic->kvm, index, mask_after); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 139 | if (ioapic->irr & (1 << index)) |
| 140 | ioapic_service(ioapic, index); |
| 141 | break; |
| 142 | } |
| 143 | } |
| 144 | |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 145 | static int ioapic_inj_irq(struct kvm_ioapic *ioapic, |
Zhang Xiantao | 8be5453 | 2007-12-02 22:35:57 +0800 | [diff] [blame] | 146 | struct kvm_vcpu *vcpu, |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 147 | u8 vector, u8 trig_mode, u8 delivery_mode) |
| 148 | { |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 149 | ioapic_debug("irq %d trig %d deliv %d\n", vector, trig_mode, |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 150 | delivery_mode); |
| 151 | |
Zhang Xiantao | 0c7ac28 | 2007-12-02 22:49:09 +0800 | [diff] [blame] | 152 | ASSERT((delivery_mode == IOAPIC_FIXED) || |
| 153 | (delivery_mode == IOAPIC_LOWEST_PRIORITY)); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 154 | |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 155 | return kvm_apic_set_irq(vcpu, vector, trig_mode); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 156 | } |
| 157 | |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 158 | static void ioapic_inj_nmi(struct kvm_vcpu *vcpu) |
| 159 | { |
| 160 | kvm_inject_nmi(vcpu); |
Jan Kiszka | 26df99c | 2008-09-26 09:30:54 +0200 | [diff] [blame] | 161 | kvm_vcpu_kick(vcpu); |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 162 | } |
| 163 | |
Sheng Yang | 68b76f5 | 2008-11-24 14:32:54 +0800 | [diff] [blame] | 164 | u32 kvm_ioapic_get_delivery_bitmask(struct kvm_ioapic *ioapic, u8 dest, |
| 165 | u8 dest_mode) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 166 | { |
| 167 | u32 mask = 0; |
| 168 | int i; |
| 169 | struct kvm *kvm = ioapic->kvm; |
| 170 | struct kvm_vcpu *vcpu; |
| 171 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 172 | ioapic_debug("dest %d dest_mode %d\n", dest, dest_mode); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 173 | |
| 174 | if (dest_mode == 0) { /* Physical mode. */ |
| 175 | if (dest == 0xFF) { /* Broadcast. */ |
| 176 | for (i = 0; i < KVM_MAX_VCPUS; ++i) |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 177 | if (kvm->vcpus[i] && kvm->vcpus[i]->arch.apic) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 178 | mask |= 1 << i; |
| 179 | return mask; |
| 180 | } |
| 181 | for (i = 0; i < KVM_MAX_VCPUS; ++i) { |
| 182 | vcpu = kvm->vcpus[i]; |
| 183 | if (!vcpu) |
| 184 | continue; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 185 | if (kvm_apic_match_physical_addr(vcpu->arch.apic, dest)) { |
| 186 | if (vcpu->arch.apic) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 187 | mask = 1 << i; |
| 188 | break; |
| 189 | } |
| 190 | } |
| 191 | } else if (dest != 0) /* Logical mode, MDA non-zero. */ |
| 192 | for (i = 0; i < KVM_MAX_VCPUS; ++i) { |
| 193 | vcpu = kvm->vcpus[i]; |
| 194 | if (!vcpu) |
| 195 | continue; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 196 | if (vcpu->arch.apic && |
| 197 | kvm_apic_match_logical_addr(vcpu->arch.apic, dest)) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 198 | mask |= 1 << vcpu->vcpu_id; |
| 199 | } |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 200 | ioapic_debug("mask %x\n", mask); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 201 | return mask; |
| 202 | } |
| 203 | |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 204 | static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 205 | { |
| 206 | u8 dest = ioapic->redirtbl[irq].fields.dest_id; |
| 207 | u8 dest_mode = ioapic->redirtbl[irq].fields.dest_mode; |
| 208 | u8 delivery_mode = ioapic->redirtbl[irq].fields.delivery_mode; |
| 209 | u8 vector = ioapic->redirtbl[irq].fields.vector; |
| 210 | u8 trig_mode = ioapic->redirtbl[irq].fields.trig_mode; |
| 211 | u32 deliver_bitmask; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 212 | struct kvm_vcpu *vcpu; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 213 | int vcpu_id, r = -1; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 214 | |
| 215 | ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x " |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 216 | "vector=%x trig_mode=%x\n", |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 217 | dest, dest_mode, delivery_mode, vector, trig_mode); |
| 218 | |
Sheng Yang | 68b76f5 | 2008-11-24 14:32:54 +0800 | [diff] [blame] | 219 | deliver_bitmask = kvm_ioapic_get_delivery_bitmask(ioapic, dest, |
| 220 | dest_mode); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 221 | if (!deliver_bitmask) { |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 222 | ioapic_debug("no target on destination\n"); |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 223 | return 0; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | switch (delivery_mode) { |
Zhang Xiantao | 0c7ac28 | 2007-12-02 22:49:09 +0800 | [diff] [blame] | 227 | case IOAPIC_LOWEST_PRIORITY: |
Zhang Xiantao | 8be5453 | 2007-12-02 22:35:57 +0800 | [diff] [blame] | 228 | vcpu = kvm_get_lowest_prio_vcpu(ioapic->kvm, vector, |
| 229 | deliver_bitmask); |
Avi Kivity | 8c35f23 | 2008-02-25 10:28:31 +0200 | [diff] [blame] | 230 | #ifdef CONFIG_X86 |
| 231 | if (irq == 0) |
| 232 | vcpu = ioapic->kvm->vcpus[0]; |
| 233 | #endif |
Zhang Xiantao | 8be5453 | 2007-12-02 22:35:57 +0800 | [diff] [blame] | 234 | if (vcpu != NULL) |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 235 | r = ioapic_inj_irq(ioapic, vcpu, vector, |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 236 | trig_mode, delivery_mode); |
| 237 | else |
Zhang Xiantao | 8be5453 | 2007-12-02 22:35:57 +0800 | [diff] [blame] | 238 | ioapic_debug("null lowest prio vcpu: " |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 239 | "mask=%x vector=%x delivery_mode=%x\n", |
Zhang Xiantao | 0c7ac28 | 2007-12-02 22:49:09 +0800 | [diff] [blame] | 240 | deliver_bitmask, vector, IOAPIC_LOWEST_PRIORITY); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 241 | break; |
Zhang Xiantao | 0c7ac28 | 2007-12-02 22:49:09 +0800 | [diff] [blame] | 242 | case IOAPIC_FIXED: |
Avi Kivity | 8c35f23 | 2008-02-25 10:28:31 +0200 | [diff] [blame] | 243 | #ifdef CONFIG_X86 |
| 244 | if (irq == 0) |
| 245 | deliver_bitmask = 1; |
| 246 | #endif |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 247 | for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) { |
| 248 | if (!(deliver_bitmask & (1 << vcpu_id))) |
| 249 | continue; |
| 250 | deliver_bitmask &= ~(1 << vcpu_id); |
| 251 | vcpu = ioapic->kvm->vcpus[vcpu_id]; |
| 252 | if (vcpu) { |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 253 | if (r < 0) |
| 254 | r = 0; |
| 255 | r += ioapic_inj_irq(ioapic, vcpu, vector, |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 256 | trig_mode, delivery_mode); |
| 257 | } |
| 258 | } |
| 259 | break; |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 260 | case IOAPIC_NMI: |
| 261 | for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) { |
| 262 | if (!(deliver_bitmask & (1 << vcpu_id))) |
| 263 | continue; |
| 264 | deliver_bitmask &= ~(1 << vcpu_id); |
| 265 | vcpu = ioapic->kvm->vcpus[vcpu_id]; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 266 | if (vcpu) { |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 267 | ioapic_inj_nmi(vcpu); |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 268 | r = 1; |
| 269 | } |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 270 | else |
| 271 | ioapic_debug("NMI to vcpu %d failed\n", |
| 272 | vcpu->vcpu_id); |
| 273 | } |
| 274 | break; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 275 | default: |
| 276 | printk(KERN_WARNING "Unsupported delivery mode %d\n", |
| 277 | delivery_mode); |
| 278 | break; |
| 279 | } |
Marcelo Tosatti | ff4b9df | 2008-06-05 00:08:11 -0300 | [diff] [blame] | 280 | return r; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 281 | } |
| 282 | |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 283 | int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 284 | { |
| 285 | u32 old_irr = ioapic->irr; |
| 286 | u32 mask = 1 << irq; |
| 287 | union ioapic_redir_entry entry; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 288 | int ret = 1; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 289 | |
| 290 | if (irq >= 0 && irq < IOAPIC_NUM_PINS) { |
| 291 | entry = ioapic->redirtbl[irq]; |
| 292 | level ^= entry.fields.polarity; |
| 293 | if (!level) |
| 294 | ioapic->irr &= ~mask; |
| 295 | else { |
| 296 | ioapic->irr |= mask; |
| 297 | if ((!entry.fields.trig_mode && old_irr != ioapic->irr) |
| 298 | || !entry.fields.remote_irr) |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 299 | ret = ioapic_service(ioapic, irq); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 300 | } |
| 301 | } |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 302 | return ret; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 303 | } |
| 304 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 305 | static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin, |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 306 | int trigger_mode) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 307 | { |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 308 | union ioapic_redir_entry *ent; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 309 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 310 | ent = &ioapic->redirtbl[pin]; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 311 | |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 312 | kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 313 | |
| 314 | if (trigger_mode == IOAPIC_LEVEL_TRIG) { |
| 315 | ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG); |
| 316 | ent->fields.remote_irr = 0; |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 317 | if (!ent->fields.mask && (ioapic->irr & (1 << pin))) |
| 318 | ioapic_service(ioapic, pin); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 319 | } |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 320 | } |
| 321 | |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 322 | void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode) |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 323 | { |
| 324 | struct kvm_ioapic *ioapic = kvm->arch.vioapic; |
| 325 | int i; |
| 326 | |
| 327 | for (i = 0; i < IOAPIC_NUM_PINS; i++) |
| 328 | if (ioapic->redirtbl[i].fields.vector == vector) |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 329 | __kvm_ioapic_update_eoi(ioapic, i, trigger_mode); |
Avi Kivity | 4fa6b9c | 2008-06-17 15:36:36 -0700 | [diff] [blame] | 330 | } |
| 331 | |
Laurent Vivier | 9276049 | 2008-05-30 16:05:53 +0200 | [diff] [blame] | 332 | static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr, |
| 333 | int len, int is_write) |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 334 | { |
| 335 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; |
| 336 | |
| 337 | return ((addr >= ioapic->base_address && |
| 338 | (addr < ioapic->base_address + IOAPIC_MEM_LENGTH))); |
| 339 | } |
| 340 | |
| 341 | static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len, |
| 342 | void *val) |
| 343 | { |
| 344 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; |
| 345 | u32 result; |
| 346 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 347 | ioapic_debug("addr %lx\n", (unsigned long)addr); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 348 | ASSERT(!(addr & 0xf)); /* check alignment */ |
| 349 | |
| 350 | addr &= 0xff; |
| 351 | switch (addr) { |
| 352 | case IOAPIC_REG_SELECT: |
| 353 | result = ioapic->ioregsel; |
| 354 | break; |
| 355 | |
| 356 | case IOAPIC_REG_WINDOW: |
| 357 | result = ioapic_read_indirect(ioapic, addr, len); |
| 358 | break; |
| 359 | |
| 360 | default: |
| 361 | result = 0; |
| 362 | break; |
| 363 | } |
| 364 | switch (len) { |
| 365 | case 8: |
| 366 | *(u64 *) val = result; |
| 367 | break; |
| 368 | case 1: |
| 369 | case 2: |
| 370 | case 4: |
| 371 | memcpy(val, (char *)&result, len); |
| 372 | break; |
| 373 | default: |
| 374 | printk(KERN_WARNING "ioapic: wrong length %d\n", len); |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len, |
| 379 | const void *val) |
| 380 | { |
| 381 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; |
| 382 | u32 data; |
| 383 | |
Laurent Vivier | e25e3ed | 2007-10-12 11:01:59 +0200 | [diff] [blame] | 384 | ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n", |
| 385 | (void*)addr, len, val); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 386 | ASSERT(!(addr & 0xf)); /* check alignment */ |
| 387 | if (len == 4 || len == 8) |
| 388 | data = *(u32 *) val; |
| 389 | else { |
| 390 | printk(KERN_WARNING "ioapic: Unsupported size %d\n", len); |
| 391 | return; |
| 392 | } |
| 393 | |
| 394 | addr &= 0xff; |
| 395 | switch (addr) { |
| 396 | case IOAPIC_REG_SELECT: |
| 397 | ioapic->ioregsel = data; |
| 398 | break; |
| 399 | |
| 400 | case IOAPIC_REG_WINDOW: |
| 401 | ioapic_write_indirect(ioapic, data); |
| 402 | break; |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 403 | #ifdef CONFIG_IA64 |
| 404 | case IOAPIC_REG_EOI: |
Xiantao Zhang | 26815a6 | 2008-08-19 20:48:03 +0800 | [diff] [blame] | 405 | kvm_ioapic_update_eoi(ioapic->kvm, data, IOAPIC_LEVEL_TRIG); |
Zhang Xiantao | b1fd3d3 | 2007-12-02 22:53:07 +0800 | [diff] [blame] | 406 | break; |
| 407 | #endif |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 408 | |
| 409 | default: |
| 410 | break; |
| 411 | } |
| 412 | } |
| 413 | |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 414 | void kvm_ioapic_reset(struct kvm_ioapic *ioapic) |
| 415 | { |
| 416 | int i; |
| 417 | |
| 418 | for (i = 0; i < IOAPIC_NUM_PINS; i++) |
| 419 | ioapic->redirtbl[i].fields.mask = 1; |
| 420 | ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS; |
| 421 | ioapic->ioregsel = 0; |
| 422 | ioapic->irr = 0; |
| 423 | ioapic->id = 0; |
| 424 | } |
| 425 | |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 426 | int kvm_ioapic_init(struct kvm *kvm) |
| 427 | { |
| 428 | struct kvm_ioapic *ioapic; |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 429 | |
| 430 | ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL); |
| 431 | if (!ioapic) |
| 432 | return -ENOMEM; |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 433 | kvm->arch.vioapic = ioapic; |
Eddie Dong | 8c39269 | 2007-10-10 12:15:54 +0200 | [diff] [blame] | 434 | kvm_ioapic_reset(ioapic); |
Eddie Dong | 1fd4f2a | 2007-07-18 12:03:39 +0300 | [diff] [blame] | 435 | ioapic->dev.read = ioapic_mmio_read; |
| 436 | ioapic->dev.write = ioapic_mmio_write; |
| 437 | ioapic->dev.in_range = ioapic_in_range; |
| 438 | ioapic->dev.private = ioapic; |
| 439 | ioapic->kvm = kvm; |
| 440 | kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev); |
| 441 | return 0; |
| 442 | } |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 443 | |