Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Local APIC virtualization |
| 4 | * |
| 5 | * Copyright (C) 2006 Qumranet, Inc. |
| 6 | * Copyright (C) 2007 Novell |
| 7 | * Copyright (C) 2007 Intel |
| 8 | * |
| 9 | * Authors: |
| 10 | * Dor Laor <dor.laor@qumranet.com> |
| 11 | * Gregory Haskins <ghaskins@novell.com> |
| 12 | * Yaozu (Eddie) Dong <eddie.dong@intel.com> |
| 13 | * |
| 14 | * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation. |
| 15 | * |
| 16 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 17 | * the COPYING file in the top-level directory. |
| 18 | */ |
| 19 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 20 | #include <linux/kvm_host.h> |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 21 | #include <linux/kvm.h> |
| 22 | #include <linux/mm.h> |
| 23 | #include <linux/highmem.h> |
| 24 | #include <linux/smp.h> |
| 25 | #include <linux/hrtimer.h> |
| 26 | #include <linux/io.h> |
| 27 | #include <linux/module.h> |
Roman Zippel | 6f6d6a1 | 2008-05-01 04:34:28 -0700 | [diff] [blame] | 28 | #include <linux/math64.h> |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 29 | #include <asm/processor.h> |
| 30 | #include <asm/msr.h> |
| 31 | #include <asm/page.h> |
| 32 | #include <asm/current.h> |
| 33 | #include <asm/apicdef.h> |
| 34 | #include <asm/atomic.h> |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 35 | #include "kvm_cache_regs.h" |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 36 | #include "irq.h" |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 37 | #include "trace.h" |
Gleb Natapov | fc61b80 | 2009-07-05 17:39:35 +0300 | [diff] [blame^] | 38 | #include "x86.h" |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 39 | |
Marcelo Tosatti | b682b81 | 2009-02-10 20:41:41 -0200 | [diff] [blame] | 40 | #ifndef CONFIG_X86_64 |
| 41 | #define mod_64(x, y) ((x) - (y) * div64_u64(x, y)) |
| 42 | #else |
| 43 | #define mod_64(x, y) ((x) % (y)) |
| 44 | #endif |
| 45 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 46 | #define PRId64 "d" |
| 47 | #define PRIx64 "llx" |
| 48 | #define PRIu64 "u" |
| 49 | #define PRIo64 "o" |
| 50 | |
| 51 | #define APIC_BUS_CYCLE_NS 1 |
| 52 | |
| 53 | /* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */ |
| 54 | #define apic_debug(fmt, arg...) |
| 55 | |
| 56 | #define APIC_LVT_NUM 6 |
| 57 | /* 14 is the version for Xeon and Pentium 8.4.8*/ |
| 58 | #define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16)) |
| 59 | #define LAPIC_MMIO_LENGTH (1 << 12) |
| 60 | /* followed define is not in apicdef.h */ |
| 61 | #define APIC_SHORT_MASK 0xc0000 |
| 62 | #define APIC_DEST_NOSHORT 0x0 |
| 63 | #define APIC_DEST_MASK 0x800 |
| 64 | #define MAX_APIC_VECTOR 256 |
| 65 | |
| 66 | #define VEC_POS(v) ((v) & (32 - 1)) |
| 67 | #define REG_POS(v) (((v) >> 5) << 4) |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 68 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 69 | static inline u32 apic_get_reg(struct kvm_lapic *apic, int reg_off) |
| 70 | { |
| 71 | return *((u32 *) (apic->regs + reg_off)); |
| 72 | } |
| 73 | |
| 74 | static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val) |
| 75 | { |
| 76 | *((u32 *) (apic->regs + reg_off)) = val; |
| 77 | } |
| 78 | |
| 79 | static inline int apic_test_and_set_vector(int vec, void *bitmap) |
| 80 | { |
| 81 | return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec)); |
| 82 | } |
| 83 | |
| 84 | static inline int apic_test_and_clear_vector(int vec, void *bitmap) |
| 85 | { |
| 86 | return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec)); |
| 87 | } |
| 88 | |
| 89 | static inline void apic_set_vector(int vec, void *bitmap) |
| 90 | { |
| 91 | set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec)); |
| 92 | } |
| 93 | |
| 94 | static inline void apic_clear_vector(int vec, void *bitmap) |
| 95 | { |
| 96 | clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec)); |
| 97 | } |
| 98 | |
| 99 | static inline int apic_hw_enabled(struct kvm_lapic *apic) |
| 100 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 101 | return (apic)->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static inline int apic_sw_enabled(struct kvm_lapic *apic) |
| 105 | { |
| 106 | return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED; |
| 107 | } |
| 108 | |
| 109 | static inline int apic_enabled(struct kvm_lapic *apic) |
| 110 | { |
| 111 | return apic_sw_enabled(apic) && apic_hw_enabled(apic); |
| 112 | } |
| 113 | |
| 114 | #define LVT_MASK \ |
| 115 | (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK) |
| 116 | |
| 117 | #define LINT_MASK \ |
| 118 | (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \ |
| 119 | APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER) |
| 120 | |
| 121 | static inline int kvm_apic_id(struct kvm_lapic *apic) |
| 122 | { |
| 123 | return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff; |
| 124 | } |
| 125 | |
| 126 | static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type) |
| 127 | { |
| 128 | return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED); |
| 129 | } |
| 130 | |
| 131 | static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type) |
| 132 | { |
| 133 | return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK; |
| 134 | } |
| 135 | |
| 136 | static inline int apic_lvtt_period(struct kvm_lapic *apic) |
| 137 | { |
| 138 | return apic_get_reg(apic, APIC_LVTT) & APIC_LVT_TIMER_PERIODIC; |
| 139 | } |
| 140 | |
Jan Kiszka | cc6e462 | 2008-10-20 10:20:03 +0200 | [diff] [blame] | 141 | static inline int apic_lvt_nmi_mode(u32 lvt_val) |
| 142 | { |
| 143 | return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI; |
| 144 | } |
| 145 | |
Gleb Natapov | fc61b80 | 2009-07-05 17:39:35 +0300 | [diff] [blame^] | 146 | void kvm_apic_set_version(struct kvm_vcpu *vcpu) |
| 147 | { |
| 148 | struct kvm_lapic *apic = vcpu->arch.apic; |
| 149 | struct kvm_cpuid_entry2 *feat; |
| 150 | u32 v = APIC_VERSION; |
| 151 | |
| 152 | if (!irqchip_in_kernel(vcpu->kvm)) |
| 153 | return; |
| 154 | |
| 155 | feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0); |
| 156 | if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31)))) |
| 157 | v |= APIC_LVR_DIRECTED_EOI; |
| 158 | apic_set_reg(apic, APIC_LVR, v); |
| 159 | } |
| 160 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 161 | static unsigned int apic_lvt_mask[APIC_LVT_NUM] = { |
| 162 | LVT_MASK | APIC_LVT_TIMER_PERIODIC, /* LVTT */ |
| 163 | LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */ |
| 164 | LVT_MASK | APIC_MODE_MASK, /* LVTPC */ |
| 165 | LINT_MASK, LINT_MASK, /* LVT0-1 */ |
| 166 | LVT_MASK /* LVTERR */ |
| 167 | }; |
| 168 | |
| 169 | static int find_highest_vector(void *bitmap) |
| 170 | { |
| 171 | u32 *word = bitmap; |
| 172 | int word_offset = MAX_APIC_VECTOR >> 5; |
| 173 | |
| 174 | while ((word_offset != 0) && (word[(--word_offset) << 2] == 0)) |
| 175 | continue; |
| 176 | |
| 177 | if (likely(!word_offset && !word[0])) |
| 178 | return -1; |
| 179 | else |
| 180 | return fls(word[word_offset << 2]) - 1 + (word_offset << 5); |
| 181 | } |
| 182 | |
| 183 | static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic) |
| 184 | { |
Gleb Natapov | 33e4c68 | 2009-06-11 11:06:51 +0300 | [diff] [blame] | 185 | apic->irr_pending = true; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 186 | return apic_test_and_set_vector(vec, apic->regs + APIC_IRR); |
| 187 | } |
| 188 | |
Gleb Natapov | 33e4c68 | 2009-06-11 11:06:51 +0300 | [diff] [blame] | 189 | static inline int apic_search_irr(struct kvm_lapic *apic) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 190 | { |
Gleb Natapov | 33e4c68 | 2009-06-11 11:06:51 +0300 | [diff] [blame] | 191 | return find_highest_vector(apic->regs + APIC_IRR); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | static inline int apic_find_highest_irr(struct kvm_lapic *apic) |
| 195 | { |
| 196 | int result; |
| 197 | |
Gleb Natapov | 33e4c68 | 2009-06-11 11:06:51 +0300 | [diff] [blame] | 198 | if (!apic->irr_pending) |
| 199 | return -1; |
| 200 | |
| 201 | result = apic_search_irr(apic); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 202 | ASSERT(result == -1 || result >= 16); |
| 203 | |
| 204 | return result; |
| 205 | } |
| 206 | |
Gleb Natapov | 33e4c68 | 2009-06-11 11:06:51 +0300 | [diff] [blame] | 207 | static inline void apic_clear_irr(int vec, struct kvm_lapic *apic) |
| 208 | { |
| 209 | apic->irr_pending = false; |
| 210 | apic_clear_vector(vec, apic->regs + APIC_IRR); |
| 211 | if (apic_search_irr(apic) != -1) |
| 212 | apic->irr_pending = true; |
| 213 | } |
| 214 | |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 215 | int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu) |
| 216 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 217 | struct kvm_lapic *apic = vcpu->arch.apic; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 218 | int highest_irr; |
| 219 | |
Gleb Natapov | 33e4c68 | 2009-06-11 11:06:51 +0300 | [diff] [blame] | 220 | /* This may race with setting of irr in __apic_accept_irq() and |
| 221 | * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq |
| 222 | * will cause vmexit immediately and the value will be recalculated |
| 223 | * on the next vmentry. |
| 224 | */ |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 225 | if (!apic) |
| 226 | return 0; |
| 227 | highest_irr = apic_find_highest_irr(apic); |
| 228 | |
| 229 | return highest_irr; |
| 230 | } |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 231 | |
Gleb Natapov | 6da7e3f | 2009-03-05 16:34:44 +0200 | [diff] [blame] | 232 | static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode, |
| 233 | int vector, int level, int trig_mode); |
| 234 | |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 235 | int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 236 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 237 | struct kvm_lapic *apic = vcpu->arch.apic; |
Zhang Xiantao | 8be5453 | 2007-12-02 22:35:57 +0800 | [diff] [blame] | 238 | |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 239 | return __apic_accept_irq(apic, irq->delivery_mode, irq->vector, |
| 240 | irq->level, irq->trig_mode); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | static inline int apic_find_highest_isr(struct kvm_lapic *apic) |
| 244 | { |
| 245 | int result; |
| 246 | |
| 247 | result = find_highest_vector(apic->regs + APIC_ISR); |
| 248 | ASSERT(result == -1 || result >= 16); |
| 249 | |
| 250 | return result; |
| 251 | } |
| 252 | |
| 253 | static void apic_update_ppr(struct kvm_lapic *apic) |
| 254 | { |
| 255 | u32 tpr, isrv, ppr; |
| 256 | int isr; |
| 257 | |
| 258 | tpr = apic_get_reg(apic, APIC_TASKPRI); |
| 259 | isr = apic_find_highest_isr(apic); |
| 260 | isrv = (isr != -1) ? isr : 0; |
| 261 | |
| 262 | if ((tpr & 0xf0) >= (isrv & 0xf0)) |
| 263 | ppr = tpr & 0xff; |
| 264 | else |
| 265 | ppr = isrv & 0xf0; |
| 266 | |
| 267 | apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x", |
| 268 | apic, ppr, isr, isrv); |
| 269 | |
| 270 | apic_set_reg(apic, APIC_PROCPRI, ppr); |
| 271 | } |
| 272 | |
| 273 | static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr) |
| 274 | { |
| 275 | apic_set_reg(apic, APIC_TASKPRI, tpr); |
| 276 | apic_update_ppr(apic); |
| 277 | } |
| 278 | |
| 279 | int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest) |
| 280 | { |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 281 | return dest == 0xff || kvm_apic_id(apic) == dest; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda) |
| 285 | { |
| 286 | int result = 0; |
| 287 | u8 logical_id; |
| 288 | |
| 289 | logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR)); |
| 290 | |
| 291 | switch (apic_get_reg(apic, APIC_DFR)) { |
| 292 | case APIC_DFR_FLAT: |
| 293 | if (logical_id & mda) |
| 294 | result = 1; |
| 295 | break; |
| 296 | case APIC_DFR_CLUSTER: |
| 297 | if (((logical_id >> 4) == (mda >> 0x4)) |
| 298 | && (logical_id & mda & 0xf)) |
| 299 | result = 1; |
| 300 | break; |
| 301 | default: |
| 302 | printk(KERN_WARNING "Bad DFR vcpu %d: %08x\n", |
| 303 | apic->vcpu->vcpu_id, apic_get_reg(apic, APIC_DFR)); |
| 304 | break; |
| 305 | } |
| 306 | |
| 307 | return result; |
| 308 | } |
| 309 | |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 310 | int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source, |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 311 | int short_hand, int dest, int dest_mode) |
| 312 | { |
| 313 | int result = 0; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 314 | struct kvm_lapic *target = vcpu->arch.apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 315 | |
| 316 | apic_debug("target %p, source %p, dest 0x%x, " |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 317 | "dest_mode 0x%x, short_hand 0x%x\n", |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 318 | target, source, dest, dest_mode, short_hand); |
| 319 | |
| 320 | ASSERT(!target); |
| 321 | switch (short_hand) { |
| 322 | case APIC_DEST_NOSHORT: |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 323 | if (dest_mode == 0) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 324 | /* Physical mode. */ |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 325 | result = kvm_apic_match_physical_addr(target, dest); |
| 326 | else |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 327 | /* Logical mode. */ |
| 328 | result = kvm_apic_match_logical_addr(target, dest); |
| 329 | break; |
| 330 | case APIC_DEST_SELF: |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 331 | result = (target == source); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 332 | break; |
| 333 | case APIC_DEST_ALLINC: |
| 334 | result = 1; |
| 335 | break; |
| 336 | case APIC_DEST_ALLBUT: |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 337 | result = (target != source); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 338 | break; |
| 339 | default: |
| 340 | printk(KERN_WARNING "Bad dest shorthand value %x\n", |
| 341 | short_hand); |
| 342 | break; |
| 343 | } |
| 344 | |
| 345 | return result; |
| 346 | } |
| 347 | |
| 348 | /* |
| 349 | * Add a pending IRQ into lapic. |
| 350 | * Return 1 if successfully added and 0 if discarded. |
| 351 | */ |
| 352 | static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode, |
| 353 | int vector, int level, int trig_mode) |
| 354 | { |
Gleb Natapov | 6da7e3f | 2009-03-05 16:34:44 +0200 | [diff] [blame] | 355 | int result = 0; |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 356 | struct kvm_vcpu *vcpu = apic->vcpu; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 357 | |
| 358 | switch (delivery_mode) { |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 359 | case APIC_DM_LOWEST: |
Gleb Natapov | e103571 | 2009-03-05 16:34:59 +0200 | [diff] [blame] | 360 | vcpu->arch.apic_arb_prio++; |
| 361 | case APIC_DM_FIXED: |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 362 | /* FIXME add logic for vcpu on reset */ |
| 363 | if (unlikely(!apic_enabled(apic))) |
| 364 | break; |
| 365 | |
Gleb Natapov | 6da7e3f | 2009-03-05 16:34:44 +0200 | [diff] [blame] | 366 | result = !apic_test_and_set_irr(vector, apic); |
| 367 | if (!result) { |
| 368 | if (trig_mode) |
| 369 | apic_debug("level trig mode repeatedly for " |
| 370 | "vector %d", vector); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 371 | break; |
| 372 | } |
| 373 | |
| 374 | if (trig_mode) { |
| 375 | apic_debug("level trig mode for vector %d", vector); |
| 376 | apic_set_vector(vector, apic->regs + APIC_TMR); |
| 377 | } else |
| 378 | apic_clear_vector(vector, apic->regs + APIC_TMR); |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 379 | kvm_vcpu_kick(vcpu); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 380 | break; |
| 381 | |
| 382 | case APIC_DM_REMRD: |
| 383 | printk(KERN_DEBUG "Ignoring delivery mode 3\n"); |
| 384 | break; |
| 385 | |
| 386 | case APIC_DM_SMI: |
| 387 | printk(KERN_DEBUG "Ignoring guest SMI\n"); |
| 388 | break; |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 389 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 390 | case APIC_DM_NMI: |
Gleb Natapov | 6da7e3f | 2009-03-05 16:34:44 +0200 | [diff] [blame] | 391 | result = 1; |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 392 | kvm_inject_nmi(vcpu); |
Jan Kiszka | 26df99c | 2008-09-26 09:30:54 +0200 | [diff] [blame] | 393 | kvm_vcpu_kick(vcpu); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 394 | break; |
| 395 | |
| 396 | case APIC_DM_INIT: |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 397 | if (level) { |
Gleb Natapov | 6da7e3f | 2009-03-05 16:34:44 +0200 | [diff] [blame] | 398 | result = 1; |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 399 | if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE) |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 400 | printk(KERN_DEBUG |
| 401 | "INIT on a runnable vcpu %d\n", |
| 402 | vcpu->vcpu_id); |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 403 | vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED; |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 404 | kvm_vcpu_kick(vcpu); |
| 405 | } else { |
Jan Kiszka | 1b10bf3 | 2008-09-30 10:41:06 +0200 | [diff] [blame] | 406 | apic_debug("Ignoring de-assert INIT to vcpu %d\n", |
| 407 | vcpu->vcpu_id); |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 408 | } |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 409 | break; |
| 410 | |
| 411 | case APIC_DM_STARTUP: |
Jan Kiszka | 1b10bf3 | 2008-09-30 10:41:06 +0200 | [diff] [blame] | 412 | apic_debug("SIPI to vcpu %d vector 0x%02x\n", |
| 413 | vcpu->vcpu_id, vector); |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 414 | if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) { |
Gleb Natapov | 6da7e3f | 2009-03-05 16:34:44 +0200 | [diff] [blame] | 415 | result = 1; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 416 | vcpu->arch.sipi_vector = vector; |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 417 | vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED; |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 418 | kvm_vcpu_kick(vcpu); |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 419 | } |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 420 | break; |
| 421 | |
Jan Kiszka | 23930f9 | 2008-09-26 09:30:52 +0200 | [diff] [blame] | 422 | case APIC_DM_EXTINT: |
| 423 | /* |
| 424 | * Should only be called by kvm_apic_local_deliver() with LVT0, |
| 425 | * before NMI watchdog was enabled. Already handled by |
| 426 | * kvm_apic_accept_pic_intr(). |
| 427 | */ |
| 428 | break; |
| 429 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 430 | default: |
| 431 | printk(KERN_ERR "TODO: unsupported delivery mode %x\n", |
| 432 | delivery_mode); |
| 433 | break; |
| 434 | } |
| 435 | return result; |
| 436 | } |
| 437 | |
Gleb Natapov | e103571 | 2009-03-05 16:34:59 +0200 | [diff] [blame] | 438 | int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 439 | { |
Gleb Natapov | e103571 | 2009-03-05 16:34:59 +0200 | [diff] [blame] | 440 | return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio; |
Zhang Xiantao | 8be5453 | 2007-12-02 22:35:57 +0800 | [diff] [blame] | 441 | } |
| 442 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 443 | static void apic_set_eoi(struct kvm_lapic *apic) |
| 444 | { |
| 445 | int vector = apic_find_highest_isr(apic); |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 446 | int trigger_mode; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 447 | /* |
| 448 | * Not every write EOI will has corresponding ISR, |
| 449 | * one example is when Kernel check timer on setup_IO_APIC |
| 450 | */ |
| 451 | if (vector == -1) |
| 452 | return; |
| 453 | |
| 454 | apic_clear_vector(vector, apic->regs + APIC_ISR); |
| 455 | apic_update_ppr(apic); |
| 456 | |
| 457 | if (apic_test_and_clear_vector(vector, apic->regs + APIC_TMR)) |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 458 | trigger_mode = IOAPIC_LEVEL_TRIG; |
| 459 | else |
| 460 | trigger_mode = IOAPIC_EDGE_TRIG; |
Gleb Natapov | fc61b80 | 2009-07-05 17:39:35 +0300 | [diff] [blame^] | 461 | if (!(apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)) { |
| 462 | mutex_lock(&apic->vcpu->kvm->irq_lock); |
| 463 | kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode); |
| 464 | mutex_unlock(&apic->vcpu->kvm->irq_lock); |
| 465 | } |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | static void apic_send_ipi(struct kvm_lapic *apic) |
| 469 | { |
| 470 | u32 icr_low = apic_get_reg(apic, APIC_ICR); |
| 471 | u32 icr_high = apic_get_reg(apic, APIC_ICR2); |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 472 | struct kvm_lapic_irq irq; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 473 | |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 474 | irq.vector = icr_low & APIC_VECTOR_MASK; |
| 475 | irq.delivery_mode = icr_low & APIC_MODE_MASK; |
| 476 | irq.dest_mode = icr_low & APIC_DEST_MASK; |
| 477 | irq.level = icr_low & APIC_INT_ASSERT; |
| 478 | irq.trig_mode = icr_low & APIC_INT_LEVELTRIG; |
| 479 | irq.shorthand = icr_low & APIC_SHORT_MASK; |
| 480 | irq.dest_id = GET_APIC_DEST_FIELD(icr_high); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 481 | |
| 482 | apic_debug("icr_high 0x%x, icr_low 0x%x, " |
| 483 | "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, " |
| 484 | "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n", |
Glauber Costa | 9b5843d | 2009-04-29 17:29:09 -0400 | [diff] [blame] | 485 | icr_high, icr_low, irq.shorthand, irq.dest_id, |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 486 | irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode, |
| 487 | irq.vector); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 488 | |
Marcelo Tosatti | fa40a82 | 2009-06-04 15:08:24 -0300 | [diff] [blame] | 489 | mutex_lock(&apic->vcpu->kvm->irq_lock); |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 490 | kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq); |
Marcelo Tosatti | fa40a82 | 2009-06-04 15:08:24 -0300 | [diff] [blame] | 491 | mutex_unlock(&apic->vcpu->kvm->irq_lock); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | static u32 apic_get_tmcct(struct kvm_lapic *apic) |
| 495 | { |
Marcelo Tosatti | b682b81 | 2009-02-10 20:41:41 -0200 | [diff] [blame] | 496 | ktime_t remaining; |
| 497 | s64 ns; |
Kevin Pedretti | 9da8f4e | 2007-10-21 08:55:50 +0200 | [diff] [blame] | 498 | u32 tmcct; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 499 | |
| 500 | ASSERT(apic != NULL); |
| 501 | |
Kevin Pedretti | 9da8f4e | 2007-10-21 08:55:50 +0200 | [diff] [blame] | 502 | /* if initial count is 0, current count should also be 0 */ |
Marcelo Tosatti | b682b81 | 2009-02-10 20:41:41 -0200 | [diff] [blame] | 503 | if (apic_get_reg(apic, APIC_TMICT) == 0) |
Kevin Pedretti | 9da8f4e | 2007-10-21 08:55:50 +0200 | [diff] [blame] | 504 | return 0; |
| 505 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 506 | remaining = hrtimer_expires_remaining(&apic->lapic_timer.timer); |
Marcelo Tosatti | b682b81 | 2009-02-10 20:41:41 -0200 | [diff] [blame] | 507 | if (ktime_to_ns(remaining) < 0) |
| 508 | remaining = ktime_set(0, 0); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 509 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 510 | ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period); |
| 511 | tmcct = div64_u64(ns, |
| 512 | (APIC_BUS_CYCLE_NS * apic->divide_count)); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 513 | |
| 514 | return tmcct; |
| 515 | } |
| 516 | |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 517 | static void __report_tpr_access(struct kvm_lapic *apic, bool write) |
| 518 | { |
| 519 | struct kvm_vcpu *vcpu = apic->vcpu; |
| 520 | struct kvm_run *run = vcpu->run; |
| 521 | |
| 522 | set_bit(KVM_REQ_REPORT_TPR_ACCESS, &vcpu->requests); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 523 | run->tpr_access.rip = kvm_rip_read(vcpu); |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 524 | run->tpr_access.is_write = write; |
| 525 | } |
| 526 | |
| 527 | static inline void report_tpr_access(struct kvm_lapic *apic, bool write) |
| 528 | { |
| 529 | if (apic->vcpu->arch.tpr_access_reporting) |
| 530 | __report_tpr_access(apic, write); |
| 531 | } |
| 532 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 533 | static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset) |
| 534 | { |
| 535 | u32 val = 0; |
| 536 | |
| 537 | if (offset >= LAPIC_MMIO_LENGTH) |
| 538 | return 0; |
| 539 | |
| 540 | switch (offset) { |
| 541 | case APIC_ARBPRI: |
| 542 | printk(KERN_WARNING "Access APIC ARBPRI register " |
| 543 | "which is for P6\n"); |
| 544 | break; |
| 545 | |
| 546 | case APIC_TMCCT: /* Timer CCR */ |
| 547 | val = apic_get_tmcct(apic); |
| 548 | break; |
| 549 | |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 550 | case APIC_TASKPRI: |
| 551 | report_tpr_access(apic, false); |
| 552 | /* fall thru */ |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 553 | default: |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 554 | apic_update_ppr(apic); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 555 | val = apic_get_reg(apic, offset); |
| 556 | break; |
| 557 | } |
| 558 | |
| 559 | return val; |
| 560 | } |
| 561 | |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 562 | static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev) |
| 563 | { |
| 564 | return container_of(dev, struct kvm_lapic, dev); |
| 565 | } |
| 566 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 567 | static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr) |
| 568 | { |
| 569 | return apic_hw_enabled(apic) && |
| 570 | addr >= apic->base_address && |
| 571 | addr < apic->base_address + LAPIC_MMIO_LENGTH; |
| 572 | } |
| 573 | |
| 574 | static int apic_mmio_read(struct kvm_io_device *this, |
| 575 | gpa_t address, int len, void *data) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 576 | { |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 577 | struct kvm_lapic *apic = to_lapic(this); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 578 | unsigned int offset = address - apic->base_address; |
| 579 | unsigned char alignment = offset & 0xf; |
| 580 | u32 result; |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 581 | if (!apic_mmio_in_range(apic, address)) |
| 582 | return -EOPNOTSUPP; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 583 | |
| 584 | if ((alignment + len) > 4) { |
| 585 | printk(KERN_ERR "KVM_APIC_READ: alignment error %lx %d", |
| 586 | (unsigned long)address, len); |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 587 | return 0; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 588 | } |
| 589 | result = __apic_read(apic, offset & ~0xf); |
| 590 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 591 | trace_kvm_apic_read(offset, result); |
| 592 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 593 | switch (len) { |
| 594 | case 1: |
| 595 | case 2: |
| 596 | case 4: |
| 597 | memcpy(data, (char *)&result + alignment, len); |
| 598 | break; |
| 599 | default: |
| 600 | printk(KERN_ERR "Local APIC read with len = %x, " |
| 601 | "should be 1,2, or 4 instead\n", len); |
| 602 | break; |
| 603 | } |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 604 | return 0; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | static void update_divide_count(struct kvm_lapic *apic) |
| 608 | { |
| 609 | u32 tmp1, tmp2, tdcr; |
| 610 | |
| 611 | tdcr = apic_get_reg(apic, APIC_TDCR); |
| 612 | tmp1 = tdcr & 0xf; |
| 613 | tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1; |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 614 | apic->divide_count = 0x1 << (tmp2 & 0x7); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 615 | |
| 616 | apic_debug("timer divide count is 0x%x\n", |
Glauber Costa | 9b5843d | 2009-04-29 17:29:09 -0400 | [diff] [blame] | 617 | apic->divide_count); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | static void start_apic_timer(struct kvm_lapic *apic) |
| 621 | { |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 622 | ktime_t now = apic->lapic_timer.timer.base->get_time(); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 623 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 624 | apic->lapic_timer.period = apic_get_reg(apic, APIC_TMICT) * |
| 625 | APIC_BUS_CYCLE_NS * apic->divide_count; |
| 626 | atomic_set(&apic->lapic_timer.pending, 0); |
Avi Kivity | 0b975a3 | 2008-02-24 14:37:50 +0200 | [diff] [blame] | 627 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 628 | if (!apic->lapic_timer.period) |
Avi Kivity | 0b975a3 | 2008-02-24 14:37:50 +0200 | [diff] [blame] | 629 | return; |
| 630 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 631 | hrtimer_start(&apic->lapic_timer.timer, |
| 632 | ktime_add_ns(now, apic->lapic_timer.period), |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 633 | HRTIMER_MODE_ABS); |
| 634 | |
| 635 | apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016" |
| 636 | PRIx64 ", " |
| 637 | "timer initial count 0x%x, period %lldns, " |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 638 | "expire @ 0x%016" PRIx64 ".\n", __func__, |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 639 | APIC_BUS_CYCLE_NS, ktime_to_ns(now), |
| 640 | apic_get_reg(apic, APIC_TMICT), |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 641 | apic->lapic_timer.period, |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 642 | ktime_to_ns(ktime_add_ns(now, |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 643 | apic->lapic_timer.period))); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 644 | } |
| 645 | |
Jan Kiszka | cc6e462 | 2008-10-20 10:20:03 +0200 | [diff] [blame] | 646 | static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val) |
| 647 | { |
| 648 | int nmi_wd_enabled = apic_lvt_nmi_mode(apic_get_reg(apic, APIC_LVT0)); |
| 649 | |
| 650 | if (apic_lvt_nmi_mode(lvt0_val)) { |
| 651 | if (!nmi_wd_enabled) { |
| 652 | apic_debug("Receive NMI setting on APIC_LVT0 " |
| 653 | "for cpu %d\n", apic->vcpu->vcpu_id); |
| 654 | apic->vcpu->kvm->arch.vapics_in_nmi_mode++; |
| 655 | } |
| 656 | } else if (nmi_wd_enabled) |
| 657 | apic->vcpu->kvm->arch.vapics_in_nmi_mode--; |
| 658 | } |
| 659 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 660 | static int apic_mmio_write(struct kvm_io_device *this, |
| 661 | gpa_t address, int len, const void *data) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 662 | { |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 663 | struct kvm_lapic *apic = to_lapic(this); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 664 | unsigned int offset = address - apic->base_address; |
| 665 | unsigned char alignment = offset & 0xf; |
| 666 | u32 val; |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 667 | if (!apic_mmio_in_range(apic, address)) |
| 668 | return -EOPNOTSUPP; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 669 | |
| 670 | /* |
| 671 | * APIC register must be aligned on 128-bits boundary. |
| 672 | * 32/64/128 bits registers must be accessed thru 32 bits. |
| 673 | * Refer SDM 8.4.1 |
| 674 | */ |
| 675 | if (len != 4 || alignment) { |
Jan Kiszka | 1b10bf3 | 2008-09-30 10:41:06 +0200 | [diff] [blame] | 676 | /* Don't shout loud, $infamous_os would cause only noise. */ |
| 677 | apic_debug("apic write: bad size=%d %lx\n", |
| 678 | len, (long)address); |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 679 | return 0; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | val = *(u32 *) data; |
| 683 | |
| 684 | /* too common printing */ |
| 685 | if (offset != APIC_EOI) |
| 686 | apic_debug("%s: offset 0x%x with length 0x%x, and value is " |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 687 | "0x%x\n", __func__, offset, len, val); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 688 | |
| 689 | offset &= 0xff0; |
| 690 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 691 | trace_kvm_apic_write(offset, val); |
Joerg Roedel | c7bf23b | 2008-04-30 17:55:59 +0200 | [diff] [blame] | 692 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 693 | switch (offset) { |
| 694 | case APIC_ID: /* Local APIC ID */ |
| 695 | apic_set_reg(apic, APIC_ID, val); |
| 696 | break; |
| 697 | |
| 698 | case APIC_TASKPRI: |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 699 | report_tpr_access(apic, true); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 700 | apic_set_tpr(apic, val & 0xff); |
| 701 | break; |
| 702 | |
| 703 | case APIC_EOI: |
| 704 | apic_set_eoi(apic); |
| 705 | break; |
| 706 | |
| 707 | case APIC_LDR: |
| 708 | apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK); |
| 709 | break; |
| 710 | |
| 711 | case APIC_DFR: |
| 712 | apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF); |
| 713 | break; |
| 714 | |
Gleb Natapov | fc61b80 | 2009-07-05 17:39:35 +0300 | [diff] [blame^] | 715 | case APIC_SPIV: { |
| 716 | u32 mask = 0x3ff; |
| 717 | if (apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI) |
| 718 | mask |= APIC_SPIV_DIRECTED_EOI; |
| 719 | apic_set_reg(apic, APIC_SPIV, val & mask); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 720 | if (!(val & APIC_SPIV_APIC_ENABLED)) { |
| 721 | int i; |
| 722 | u32 lvt_val; |
| 723 | |
| 724 | for (i = 0; i < APIC_LVT_NUM; i++) { |
| 725 | lvt_val = apic_get_reg(apic, |
| 726 | APIC_LVTT + 0x10 * i); |
| 727 | apic_set_reg(apic, APIC_LVTT + 0x10 * i, |
| 728 | lvt_val | APIC_LVT_MASKED); |
| 729 | } |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 730 | atomic_set(&apic->lapic_timer.pending, 0); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 731 | |
| 732 | } |
| 733 | break; |
Gleb Natapov | fc61b80 | 2009-07-05 17:39:35 +0300 | [diff] [blame^] | 734 | } |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 735 | case APIC_ICR: |
| 736 | /* No delay here, so we always clear the pending bit */ |
| 737 | apic_set_reg(apic, APIC_ICR, val & ~(1 << 12)); |
| 738 | apic_send_ipi(apic); |
| 739 | break; |
| 740 | |
| 741 | case APIC_ICR2: |
| 742 | apic_set_reg(apic, APIC_ICR2, val & 0xff000000); |
| 743 | break; |
| 744 | |
Jan Kiszka | 23930f9 | 2008-09-26 09:30:52 +0200 | [diff] [blame] | 745 | case APIC_LVT0: |
Jan Kiszka | cc6e462 | 2008-10-20 10:20:03 +0200 | [diff] [blame] | 746 | apic_manage_nmi_watchdog(apic, val); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 747 | case APIC_LVTT: |
| 748 | case APIC_LVTTHMR: |
| 749 | case APIC_LVTPC: |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 750 | case APIC_LVT1: |
| 751 | case APIC_LVTERR: |
| 752 | /* TODO: Check vector */ |
| 753 | if (!apic_sw_enabled(apic)) |
| 754 | val |= APIC_LVT_MASKED; |
| 755 | |
| 756 | val &= apic_lvt_mask[(offset - APIC_LVTT) >> 4]; |
| 757 | apic_set_reg(apic, offset, val); |
| 758 | |
| 759 | break; |
| 760 | |
| 761 | case APIC_TMICT: |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 762 | hrtimer_cancel(&apic->lapic_timer.timer); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 763 | apic_set_reg(apic, APIC_TMICT, val); |
| 764 | start_apic_timer(apic); |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 765 | return 0; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 766 | |
| 767 | case APIC_TDCR: |
| 768 | if (val & 4) |
| 769 | printk(KERN_ERR "KVM_WRITE:TDCR %x\n", val); |
| 770 | apic_set_reg(apic, APIC_TDCR, val); |
| 771 | update_divide_count(apic); |
| 772 | break; |
| 773 | |
| 774 | default: |
| 775 | apic_debug("Local APIC Write to read-only register %x\n", |
| 776 | offset); |
| 777 | break; |
| 778 | } |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 779 | return 0; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 780 | } |
| 781 | |
Rusty Russell | d589444 | 2007-10-08 10:48:30 +1000 | [diff] [blame] | 782 | void kvm_free_lapic(struct kvm_vcpu *vcpu) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 783 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 784 | if (!vcpu->arch.apic) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 785 | return; |
| 786 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 787 | hrtimer_cancel(&vcpu->arch.apic->lapic_timer.timer); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 788 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 789 | if (vcpu->arch.apic->regs_page) |
| 790 | __free_page(vcpu->arch.apic->regs_page); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 791 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 792 | kfree(vcpu->arch.apic); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | /* |
| 796 | *---------------------------------------------------------------------- |
| 797 | * LAPIC interface |
| 798 | *---------------------------------------------------------------------- |
| 799 | */ |
| 800 | |
| 801 | void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8) |
| 802 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 803 | struct kvm_lapic *apic = vcpu->arch.apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 804 | |
| 805 | if (!apic) |
| 806 | return; |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 807 | apic_set_tpr(apic, ((cr8 & 0x0f) << 4) |
| 808 | | (apic_get_reg(apic, APIC_TASKPRI) & 4)); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu) |
| 812 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 813 | struct kvm_lapic *apic = vcpu->arch.apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 814 | u64 tpr; |
| 815 | |
| 816 | if (!apic) |
| 817 | return 0; |
| 818 | tpr = (u64) apic_get_reg(apic, APIC_TASKPRI); |
| 819 | |
| 820 | return (tpr & 0xf0) >> 4; |
| 821 | } |
| 822 | |
| 823 | void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value) |
| 824 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 825 | struct kvm_lapic *apic = vcpu->arch.apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 826 | |
| 827 | if (!apic) { |
| 828 | value |= MSR_IA32_APICBASE_BSP; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 829 | vcpu->arch.apic_base = value; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 830 | return; |
| 831 | } |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 832 | |
| 833 | if (!kvm_vcpu_is_bsp(apic->vcpu)) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 834 | value &= ~MSR_IA32_APICBASE_BSP; |
| 835 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 836 | vcpu->arch.apic_base = value; |
| 837 | apic->base_address = apic->vcpu->arch.apic_base & |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 838 | MSR_IA32_APICBASE_BASE; |
| 839 | |
| 840 | /* with FSB delivery interrupt, we can restart APIC functionality */ |
| 841 | apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is " |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 842 | "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 843 | |
| 844 | } |
| 845 | |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 846 | void kvm_lapic_reset(struct kvm_vcpu *vcpu) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 847 | { |
| 848 | struct kvm_lapic *apic; |
| 849 | int i; |
| 850 | |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 851 | apic_debug("%s\n", __func__); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 852 | |
| 853 | ASSERT(vcpu); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 854 | apic = vcpu->arch.apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 855 | ASSERT(apic != NULL); |
| 856 | |
| 857 | /* Stop the timer in case it's a reset to an active apic */ |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 858 | hrtimer_cancel(&apic->lapic_timer.timer); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 859 | |
| 860 | apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24); |
Gleb Natapov | fc61b80 | 2009-07-05 17:39:35 +0300 | [diff] [blame^] | 861 | kvm_apic_set_version(apic->vcpu); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 862 | |
| 863 | for (i = 0; i < APIC_LVT_NUM; i++) |
| 864 | apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED); |
Qing He | 40487c6 | 2007-09-17 14:47:13 +0800 | [diff] [blame] | 865 | apic_set_reg(apic, APIC_LVT0, |
| 866 | SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT)); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 867 | |
| 868 | apic_set_reg(apic, APIC_DFR, 0xffffffffU); |
| 869 | apic_set_reg(apic, APIC_SPIV, 0xff); |
| 870 | apic_set_reg(apic, APIC_TASKPRI, 0); |
| 871 | apic_set_reg(apic, APIC_LDR, 0); |
| 872 | apic_set_reg(apic, APIC_ESR, 0); |
| 873 | apic_set_reg(apic, APIC_ICR, 0); |
| 874 | apic_set_reg(apic, APIC_ICR2, 0); |
| 875 | apic_set_reg(apic, APIC_TDCR, 0); |
| 876 | apic_set_reg(apic, APIC_TMICT, 0); |
| 877 | for (i = 0; i < 8; i++) { |
| 878 | apic_set_reg(apic, APIC_IRR + 0x10 * i, 0); |
| 879 | apic_set_reg(apic, APIC_ISR + 0x10 * i, 0); |
| 880 | apic_set_reg(apic, APIC_TMR + 0x10 * i, 0); |
| 881 | } |
Gleb Natapov | 33e4c68 | 2009-06-11 11:06:51 +0300 | [diff] [blame] | 882 | apic->irr_pending = false; |
Kevin Pedretti | b33ac88 | 2007-10-21 08:54:53 +0200 | [diff] [blame] | 883 | update_divide_count(apic); |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 884 | atomic_set(&apic->lapic_timer.pending, 0); |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 885 | if (kvm_vcpu_is_bsp(vcpu)) |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 886 | vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 887 | apic_update_ppr(apic); |
| 888 | |
Gleb Natapov | e103571 | 2009-03-05 16:34:59 +0200 | [diff] [blame] | 889 | vcpu->arch.apic_arb_prio = 0; |
| 890 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 891 | apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr=" |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 892 | "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__, |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 893 | vcpu, kvm_apic_id(apic), |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 894 | vcpu->arch.apic_base, apic->base_address); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 895 | } |
| 896 | |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 897 | bool kvm_apic_present(struct kvm_vcpu *vcpu) |
| 898 | { |
| 899 | return vcpu->arch.apic && apic_hw_enabled(vcpu->arch.apic); |
| 900 | } |
| 901 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 902 | int kvm_lapic_enabled(struct kvm_vcpu *vcpu) |
| 903 | { |
Gleb Natapov | 343f94f | 2009-03-05 16:34:54 +0200 | [diff] [blame] | 904 | return kvm_apic_present(vcpu) && apic_sw_enabled(vcpu->arch.apic); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | /* |
| 908 | *---------------------------------------------------------------------- |
| 909 | * timer interface |
| 910 | *---------------------------------------------------------------------- |
| 911 | */ |
Eddie Dong | 1b9778d | 2007-09-03 16:56:58 +0300 | [diff] [blame] | 912 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 913 | static bool lapic_is_periodic(struct kvm_timer *ktimer) |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 914 | { |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 915 | struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, |
| 916 | lapic_timer); |
| 917 | return apic_lvtt_period(apic); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 918 | } |
| 919 | |
Marcelo Tosatti | 3d80840 | 2008-04-11 14:53:26 -0300 | [diff] [blame] | 920 | int apic_has_pending_timer(struct kvm_vcpu *vcpu) |
| 921 | { |
| 922 | struct kvm_lapic *lapic = vcpu->arch.apic; |
| 923 | |
Marcelo Tosatti | 54aaace | 2008-05-14 02:29:06 -0300 | [diff] [blame] | 924 | if (lapic && apic_enabled(lapic) && apic_lvt_enabled(lapic, APIC_LVTT)) |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 925 | return atomic_read(&lapic->lapic_timer.pending); |
Marcelo Tosatti | 3d80840 | 2008-04-11 14:53:26 -0300 | [diff] [blame] | 926 | |
| 927 | return 0; |
| 928 | } |
| 929 | |
Jan Kiszka | 8fdb235 | 2008-10-20 10:20:02 +0200 | [diff] [blame] | 930 | static int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type) |
Eddie Dong | 1b9778d | 2007-09-03 16:56:58 +0300 | [diff] [blame] | 931 | { |
Jan Kiszka | 8fdb235 | 2008-10-20 10:20:02 +0200 | [diff] [blame] | 932 | u32 reg = apic_get_reg(apic, lvt_type); |
Jan Kiszka | 23930f9 | 2008-09-26 09:30:52 +0200 | [diff] [blame] | 933 | int vector, mode, trig_mode; |
Eddie Dong | 1b9778d | 2007-09-03 16:56:58 +0300 | [diff] [blame] | 934 | |
Jan Kiszka | 8fdb235 | 2008-10-20 10:20:02 +0200 | [diff] [blame] | 935 | if (apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) { |
Jan Kiszka | 23930f9 | 2008-09-26 09:30:52 +0200 | [diff] [blame] | 936 | vector = reg & APIC_VECTOR_MASK; |
| 937 | mode = reg & APIC_MODE_MASK; |
| 938 | trig_mode = reg & APIC_LVT_LEVEL_TRIGGER; |
| 939 | return __apic_accept_irq(apic, mode, vector, 1, trig_mode); |
| 940 | } |
| 941 | return 0; |
| 942 | } |
| 943 | |
Jan Kiszka | 8fdb235 | 2008-10-20 10:20:02 +0200 | [diff] [blame] | 944 | void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu) |
Jan Kiszka | 23930f9 | 2008-09-26 09:30:52 +0200 | [diff] [blame] | 945 | { |
Jan Kiszka | 8fdb235 | 2008-10-20 10:20:02 +0200 | [diff] [blame] | 946 | struct kvm_lapic *apic = vcpu->arch.apic; |
| 947 | |
| 948 | if (apic) |
| 949 | kvm_apic_local_deliver(apic, APIC_LVT0); |
Eddie Dong | 1b9778d | 2007-09-03 16:56:58 +0300 | [diff] [blame] | 950 | } |
| 951 | |
Hannes Eder | 386eb6e | 2009-03-10 22:51:09 +0100 | [diff] [blame] | 952 | static struct kvm_timer_ops lapic_timer_ops = { |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 953 | .is_periodic = lapic_is_periodic, |
| 954 | }; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 955 | |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 956 | static const struct kvm_io_device_ops apic_mmio_ops = { |
| 957 | .read = apic_mmio_read, |
| 958 | .write = apic_mmio_write, |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 959 | }; |
| 960 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 961 | int kvm_create_lapic(struct kvm_vcpu *vcpu) |
| 962 | { |
| 963 | struct kvm_lapic *apic; |
| 964 | |
| 965 | ASSERT(vcpu != NULL); |
| 966 | apic_debug("apic_init %d\n", vcpu->vcpu_id); |
| 967 | |
| 968 | apic = kzalloc(sizeof(*apic), GFP_KERNEL); |
| 969 | if (!apic) |
| 970 | goto nomem; |
| 971 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 972 | vcpu->arch.apic = apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 973 | |
| 974 | apic->regs_page = alloc_page(GFP_KERNEL); |
| 975 | if (apic->regs_page == NULL) { |
| 976 | printk(KERN_ERR "malloc apic regs error for vcpu %x\n", |
| 977 | vcpu->vcpu_id); |
Rusty Russell | d589444 | 2007-10-08 10:48:30 +1000 | [diff] [blame] | 978 | goto nomem_free_apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 979 | } |
| 980 | apic->regs = page_address(apic->regs_page); |
| 981 | memset(apic->regs, 0, PAGE_SIZE); |
| 982 | apic->vcpu = vcpu; |
| 983 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 984 | hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC, |
| 985 | HRTIMER_MODE_ABS); |
| 986 | apic->lapic_timer.timer.function = kvm_timer_fn; |
| 987 | apic->lapic_timer.t_ops = &lapic_timer_ops; |
| 988 | apic->lapic_timer.kvm = vcpu->kvm; |
Gleb Natapov | 1ed0ce0 | 2009-06-09 15:56:27 +0300 | [diff] [blame] | 989 | apic->lapic_timer.vcpu = vcpu; |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 990 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 991 | apic->base_address = APIC_DEFAULT_PHYS_BASE; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 992 | vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 993 | |
He, Qing | c5ec153 | 2007-09-03 17:07:41 +0300 | [diff] [blame] | 994 | kvm_lapic_reset(vcpu); |
Gregory Haskins | d76685c | 2009-06-01 12:54:50 -0400 | [diff] [blame] | 995 | kvm_iodevice_init(&apic->dev, &apic_mmio_ops); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 996 | |
| 997 | return 0; |
Rusty Russell | d589444 | 2007-10-08 10:48:30 +1000 | [diff] [blame] | 998 | nomem_free_apic: |
| 999 | kfree(apic); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 1000 | nomem: |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 1001 | return -ENOMEM; |
| 1002 | } |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 1003 | |
| 1004 | int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu) |
| 1005 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1006 | struct kvm_lapic *apic = vcpu->arch.apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 1007 | int highest_irr; |
| 1008 | |
| 1009 | if (!apic || !apic_enabled(apic)) |
| 1010 | return -1; |
| 1011 | |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1012 | apic_update_ppr(apic); |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 1013 | highest_irr = apic_find_highest_irr(apic); |
| 1014 | if ((highest_irr == -1) || |
| 1015 | ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI))) |
| 1016 | return -1; |
| 1017 | return highest_irr; |
| 1018 | } |
| 1019 | |
Qing He | 40487c6 | 2007-09-17 14:47:13 +0800 | [diff] [blame] | 1020 | int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu) |
| 1021 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1022 | u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0); |
Qing He | 40487c6 | 2007-09-17 14:47:13 +0800 | [diff] [blame] | 1023 | int r = 0; |
| 1024 | |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 1025 | if (kvm_vcpu_is_bsp(vcpu)) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1026 | if (!apic_hw_enabled(vcpu->arch.apic)) |
Qing He | 40487c6 | 2007-09-17 14:47:13 +0800 | [diff] [blame] | 1027 | r = 1; |
| 1028 | if ((lvt0 & APIC_LVT_MASKED) == 0 && |
| 1029 | GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT) |
| 1030 | r = 1; |
| 1031 | } |
| 1032 | return r; |
| 1033 | } |
| 1034 | |
Eddie Dong | 1b9778d | 2007-09-03 16:56:58 +0300 | [diff] [blame] | 1035 | void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu) |
| 1036 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1037 | struct kvm_lapic *apic = vcpu->arch.apic; |
Eddie Dong | 1b9778d | 2007-09-03 16:56:58 +0300 | [diff] [blame] | 1038 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 1039 | if (apic && atomic_read(&apic->lapic_timer.pending) > 0) { |
Jan Kiszka | 8fdb235 | 2008-10-20 10:20:02 +0200 | [diff] [blame] | 1040 | if (kvm_apic_local_deliver(apic, APIC_LVTT)) |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 1041 | atomic_dec(&apic->lapic_timer.pending); |
Eddie Dong | 1b9778d | 2007-09-03 16:56:58 +0300 | [diff] [blame] | 1042 | } |
| 1043 | } |
| 1044 | |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 1045 | int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu) |
| 1046 | { |
| 1047 | int vector = kvm_apic_has_interrupt(vcpu); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1048 | struct kvm_lapic *apic = vcpu->arch.apic; |
Eddie Dong | 97222cc | 2007-09-12 10:58:04 +0300 | [diff] [blame] | 1049 | |
| 1050 | if (vector == -1) |
| 1051 | return -1; |
| 1052 | |
| 1053 | apic_set_vector(vector, apic->regs + APIC_ISR); |
| 1054 | apic_update_ppr(apic); |
| 1055 | apic_clear_irr(vector, apic); |
| 1056 | return vector; |
| 1057 | } |
Eddie Dong | 96ad2cc | 2007-09-06 12:22:56 +0300 | [diff] [blame] | 1058 | |
| 1059 | void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu) |
| 1060 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1061 | struct kvm_lapic *apic = vcpu->arch.apic; |
Eddie Dong | 96ad2cc | 2007-09-06 12:22:56 +0300 | [diff] [blame] | 1062 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1063 | apic->base_address = vcpu->arch.apic_base & |
Eddie Dong | 96ad2cc | 2007-09-06 12:22:56 +0300 | [diff] [blame] | 1064 | MSR_IA32_APICBASE_BASE; |
Gleb Natapov | fc61b80 | 2009-07-05 17:39:35 +0300 | [diff] [blame^] | 1065 | kvm_apic_set_version(vcpu); |
| 1066 | |
Eddie Dong | 96ad2cc | 2007-09-06 12:22:56 +0300 | [diff] [blame] | 1067 | apic_update_ppr(apic); |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 1068 | hrtimer_cancel(&apic->lapic_timer.timer); |
Eddie Dong | 96ad2cc | 2007-09-06 12:22:56 +0300 | [diff] [blame] | 1069 | update_divide_count(apic); |
| 1070 | start_apic_timer(apic); |
| 1071 | } |
Eddie Dong | a3d7f85 | 2007-09-03 16:15:12 +0300 | [diff] [blame] | 1072 | |
Avi Kivity | 2f52d58 | 2008-01-16 12:49:30 +0200 | [diff] [blame] | 1073 | void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu) |
Eddie Dong | a3d7f85 | 2007-09-03 16:15:12 +0300 | [diff] [blame] | 1074 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1075 | struct kvm_lapic *apic = vcpu->arch.apic; |
Eddie Dong | a3d7f85 | 2007-09-03 16:15:12 +0300 | [diff] [blame] | 1076 | struct hrtimer *timer; |
| 1077 | |
| 1078 | if (!apic) |
| 1079 | return; |
| 1080 | |
Marcelo Tosatti | d3c7b77 | 2009-02-23 10:57:41 -0300 | [diff] [blame] | 1081 | timer = &apic->lapic_timer.timer; |
Eddie Dong | a3d7f85 | 2007-09-03 16:15:12 +0300 | [diff] [blame] | 1082 | if (hrtimer_cancel(timer)) |
Arjan van de Ven | beb20d5 | 2008-09-01 14:55:57 -0700 | [diff] [blame] | 1083 | hrtimer_start_expires(timer, HRTIMER_MODE_ABS); |
Eddie Dong | a3d7f85 | 2007-09-03 16:15:12 +0300 | [diff] [blame] | 1084 | } |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 1085 | |
| 1086 | void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu) |
| 1087 | { |
| 1088 | u32 data; |
| 1089 | void *vapic; |
| 1090 | |
| 1091 | if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr) |
| 1092 | return; |
| 1093 | |
| 1094 | vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0); |
| 1095 | data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)); |
| 1096 | kunmap_atomic(vapic, KM_USER0); |
| 1097 | |
| 1098 | apic_set_tpr(vcpu->arch.apic, data & 0xff); |
| 1099 | } |
| 1100 | |
| 1101 | void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu) |
| 1102 | { |
| 1103 | u32 data, tpr; |
| 1104 | int max_irr, max_isr; |
| 1105 | struct kvm_lapic *apic; |
| 1106 | void *vapic; |
| 1107 | |
| 1108 | if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr) |
| 1109 | return; |
| 1110 | |
| 1111 | apic = vcpu->arch.apic; |
| 1112 | tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff; |
| 1113 | max_irr = apic_find_highest_irr(apic); |
| 1114 | if (max_irr < 0) |
| 1115 | max_irr = 0; |
| 1116 | max_isr = apic_find_highest_isr(apic); |
| 1117 | if (max_isr < 0) |
| 1118 | max_isr = 0; |
| 1119 | data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24); |
| 1120 | |
| 1121 | vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0); |
| 1122 | *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data; |
| 1123 | kunmap_atomic(vapic, KM_USER0); |
| 1124 | } |
| 1125 | |
| 1126 | void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr) |
| 1127 | { |
| 1128 | if (!irqchip_in_kernel(vcpu->kvm)) |
| 1129 | return; |
| 1130 | |
| 1131 | vcpu->arch.apic->vapic_addr = vapic_addr; |
| 1132 | } |