blob: f69fc5077a896e49b56e4d723e90ec6c69eb89cb [file] [log] [blame]
Eddie Dong97222cc2007-09-12 10:58:04 +03001
2/*
3 * Local APIC virtualization
4 *
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
Eddie Dong97222cc2007-09-12 10:58:04 +03009 *
10 * Authors:
11 * Dor Laor <dor.laor@qumranet.com>
12 * Gregory Haskins <ghaskins@novell.com>
13 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
14 *
15 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
16 *
17 * This work is licensed under the terms of the GNU GPL, version 2. See
18 * the COPYING file in the top-level directory.
19 */
20
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030022#include <linux/kvm.h>
23#include <linux/mm.h>
24#include <linux/highmem.h>
25#include <linux/smp.h>
26#include <linux/hrtimer.h>
27#include <linux/io.h>
28#include <linux/module.h>
Roman Zippel6f6d6a12008-05-01 04:34:28 -070029#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030031#include <asm/processor.h>
32#include <asm/msr.h>
33#include <asm/page.h>
34#include <asm/current.h>
35#include <asm/apicdef.h>
Arun Sharma600634972011-07-26 16:09:06 -070036#include <linux/atomic.h>
Gleb Natapovc5cc4212012-08-05 15:58:30 +030037#include <linux/jump_label.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030038#include "kvm_cache_regs.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030039#include "irq.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030040#include "trace.h"
Gleb Natapovfc61b802009-07-05 17:39:35 +030041#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020042#include "cpuid.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030043
Marcelo Tosattib682b812009-02-10 20:41:41 -020044#ifndef CONFIG_X86_64
45#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
46#else
47#define mod_64(x, y) ((x) % (y))
48#endif
49
Eddie Dong97222cc2007-09-12 10:58:04 +030050#define PRId64 "d"
51#define PRIx64 "llx"
52#define PRIu64 "u"
53#define PRIo64 "o"
54
55#define APIC_BUS_CYCLE_NS 1
56
57/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
58#define apic_debug(fmt, arg...)
59
60#define APIC_LVT_NUM 6
61/* 14 is the version for Xeon and Pentium 8.4.8*/
62#define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
63#define LAPIC_MMIO_LENGTH (1 << 12)
64/* followed define is not in apicdef.h */
65#define APIC_SHORT_MASK 0xc0000
66#define APIC_DEST_NOSHORT 0x0
67#define APIC_DEST_MASK 0x800
68#define MAX_APIC_VECTOR 256
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +090069#define APIC_VECTORS_PER_REG 32
Eddie Dong97222cc2007-09-12 10:58:04 +030070
71#define VEC_POS(v) ((v) & (32 - 1))
72#define REG_POS(v) (((v) >> 5) << 4)
Zhang Xiantaoad312c72007-12-13 23:50:52 +080073
Jan Kiszka9bc57912011-09-12 14:10:22 +020074static unsigned int min_timer_period_us = 500;
75module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
76
Eddie Dong97222cc2007-09-12 10:58:04 +030077static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
78{
79 *((u32 *) (apic->regs + reg_off)) = val;
80}
81
82static inline int apic_test_and_set_vector(int vec, void *bitmap)
83{
84 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
85}
86
87static inline int apic_test_and_clear_vector(int vec, void *bitmap)
88{
89 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
90}
91
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +030092static inline int apic_test_vector(int vec, void *bitmap)
93{
94 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
95}
96
Eddie Dong97222cc2007-09-12 10:58:04 +030097static inline void apic_set_vector(int vec, void *bitmap)
98{
99 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
100}
101
102static inline void apic_clear_vector(int vec, void *bitmap)
103{
104 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
105}
106
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300107static inline int __apic_test_and_set_vector(int vec, void *bitmap)
108{
109 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
110}
111
112static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
113{
114 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
115}
116
Gleb Natapovc5cc4212012-08-05 15:58:30 +0300117struct static_key_deferred apic_hw_disabled __read_mostly;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300118struct static_key_deferred apic_sw_disabled __read_mostly;
119
120static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300121{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300122 if ((kvm_apic_get_reg(apic, APIC_SPIV) ^ val) & APIC_SPIV_APIC_ENABLED) {
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300123 if (val & APIC_SPIV_APIC_ENABLED)
124 static_key_slow_dec_deferred(&apic_sw_disabled);
125 else
126 static_key_slow_inc(&apic_sw_disabled.key);
127 }
128 apic_set_reg(apic, APIC_SPIV, val);
129}
130
Eddie Dong97222cc2007-09-12 10:58:04 +0300131static inline int apic_enabled(struct kvm_lapic *apic)
132{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300133 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
Gleb Natapov54e98182012-08-05 15:58:32 +0300134}
135
Eddie Dong97222cc2007-09-12 10:58:04 +0300136#define LVT_MASK \
137 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
138
139#define LINT_MASK \
140 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
141 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
142
143static inline int kvm_apic_id(struct kvm_lapic *apic)
144{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300145 return (kvm_apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
Eddie Dong97222cc2007-09-12 10:58:04 +0300146}
147
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300148static inline u16 apic_cluster_id(struct kvm_apic_map *map, u32 ldr)
149{
150 u16 cid;
151 ldr >>= 32 - map->ldr_bits;
152 cid = (ldr >> map->cid_shift) & map->cid_mask;
153
154 BUG_ON(cid >= ARRAY_SIZE(map->logical_map));
155
156 return cid;
157}
158
159static inline u16 apic_logical_id(struct kvm_apic_map *map, u32 ldr)
160{
161 ldr >>= (32 - map->ldr_bits);
162 return ldr & map->lid_mask;
163}
164
165static void recalculate_apic_map(struct kvm *kvm)
166{
167 struct kvm_apic_map *new, *old = NULL;
168 struct kvm_vcpu *vcpu;
169 int i;
170
171 new = kzalloc(sizeof(struct kvm_apic_map), GFP_KERNEL);
172
173 mutex_lock(&kvm->arch.apic_map_lock);
174
175 if (!new)
176 goto out;
177
178 new->ldr_bits = 8;
179 /* flat mode is default */
180 new->cid_shift = 8;
181 new->cid_mask = 0;
182 new->lid_mask = 0xff;
183
184 kvm_for_each_vcpu(i, vcpu, kvm) {
185 struct kvm_lapic *apic = vcpu->arch.apic;
186 u16 cid, lid;
187 u32 ldr;
188
189 if (!kvm_apic_present(vcpu))
190 continue;
191
192 /*
193 * All APICs have to be configured in the same mode by an OS.
194 * We take advatage of this while building logical id loockup
195 * table. After reset APICs are in xapic/flat mode, so if we
196 * find apic with different setting we assume this is the mode
197 * OS wants all apics to be in; build lookup table accordingly.
198 */
199 if (apic_x2apic_mode(apic)) {
200 new->ldr_bits = 32;
201 new->cid_shift = 16;
202 new->cid_mask = new->lid_mask = 0xffff;
203 } else if (kvm_apic_sw_enabled(apic) &&
204 !new->cid_mask /* flat mode */ &&
205 kvm_apic_get_reg(apic, APIC_DFR) == APIC_DFR_CLUSTER) {
206 new->cid_shift = 4;
207 new->cid_mask = 0xf;
208 new->lid_mask = 0xf;
209 }
210
211 new->phys_map[kvm_apic_id(apic)] = apic;
212
213 ldr = kvm_apic_get_reg(apic, APIC_LDR);
214 cid = apic_cluster_id(new, ldr);
215 lid = apic_logical_id(new, ldr);
216
217 if (lid)
218 new->logical_map[cid][ffs(lid) - 1] = apic;
219 }
220out:
221 old = rcu_dereference_protected(kvm->arch.apic_map,
222 lockdep_is_held(&kvm->arch.apic_map_lock));
223 rcu_assign_pointer(kvm->arch.apic_map, new);
224 mutex_unlock(&kvm->arch.apic_map_lock);
225
226 if (old)
227 kfree_rcu(old, rcu);
228}
229
230static inline void kvm_apic_set_id(struct kvm_lapic *apic, u8 id)
231{
232 apic_set_reg(apic, APIC_ID, id << 24);
233 recalculate_apic_map(apic->vcpu->kvm);
234}
235
236static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
237{
238 apic_set_reg(apic, APIC_LDR, id);
239 recalculate_apic_map(apic->vcpu->kvm);
240}
241
Eddie Dong97222cc2007-09-12 10:58:04 +0300242static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
243{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300244 return !(kvm_apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300245}
246
247static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
248{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300249 return kvm_apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
Eddie Dong97222cc2007-09-12 10:58:04 +0300250}
251
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800252static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
253{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300254 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800255 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
256}
257
Eddie Dong97222cc2007-09-12 10:58:04 +0300258static inline int apic_lvtt_period(struct kvm_lapic *apic)
259{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300260 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800261 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
262}
263
264static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
265{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300266 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800267 apic->lapic_timer.timer_mode_mask) ==
268 APIC_LVT_TIMER_TSCDEADLINE);
Eddie Dong97222cc2007-09-12 10:58:04 +0300269}
270
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200271static inline int apic_lvt_nmi_mode(u32 lvt_val)
272{
273 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
274}
275
Gleb Natapovfc61b802009-07-05 17:39:35 +0300276void kvm_apic_set_version(struct kvm_vcpu *vcpu)
277{
278 struct kvm_lapic *apic = vcpu->arch.apic;
279 struct kvm_cpuid_entry2 *feat;
280 u32 v = APIC_VERSION;
281
Gleb Natapovc48f1492012-08-05 15:58:33 +0300282 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300283 return;
284
285 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
286 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
287 v |= APIC_LVR_DIRECTED_EOI;
288 apic_set_reg(apic, APIC_LVR, v);
289}
290
Mathias Krausef1d24832012-08-30 01:30:18 +0200291static const unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800292 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300293 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
294 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
295 LINT_MASK, LINT_MASK, /* LVT0-1 */
296 LVT_MASK /* LVTERR */
297};
298
299static int find_highest_vector(void *bitmap)
300{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900301 int vec;
302 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300303
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900304 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
305 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
306 reg = bitmap + REG_POS(vec);
307 if (*reg)
308 return fls(*reg) - 1 + vec;
309 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300310
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900311 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300312}
313
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300314static u8 count_vectors(void *bitmap)
315{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900316 int vec;
317 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300318 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900319
320 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
321 reg = bitmap + REG_POS(vec);
322 count += hweight32(*reg);
323 }
324
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300325 return count;
326}
327
Eddie Dong97222cc2007-09-12 10:58:04 +0300328static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
329{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300330 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300331 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
332}
333
Gleb Natapov33e4c682009-06-11 11:06:51 +0300334static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300335{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300336 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300337}
338
339static inline int apic_find_highest_irr(struct kvm_lapic *apic)
340{
341 int result;
342
Gleb Natapov33e4c682009-06-11 11:06:51 +0300343 if (!apic->irr_pending)
344 return -1;
345
346 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300347 ASSERT(result == -1 || result >= 16);
348
349 return result;
350}
351
Gleb Natapov33e4c682009-06-11 11:06:51 +0300352static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
353{
354 apic->irr_pending = false;
355 apic_clear_vector(vec, apic->regs + APIC_IRR);
356 if (apic_search_irr(apic) != -1)
357 apic->irr_pending = true;
358}
359
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300360static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
361{
362 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
363 ++apic->isr_count;
364 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
365 /*
366 * ISR (in service register) bit is set when injecting an interrupt.
367 * The highest vector is injected. Thus the latest bit set matches
368 * the highest bit in ISR.
369 */
370 apic->highest_isr_cache = vec;
371}
372
373static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
374{
375 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
376 --apic->isr_count;
377 BUG_ON(apic->isr_count < 0);
378 apic->highest_isr_cache = -1;
379}
380
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800381int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
382{
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800383 int highest_irr;
384
Gleb Natapov33e4c682009-06-11 11:06:51 +0300385 /* This may race with setting of irr in __apic_accept_irq() and
386 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
387 * will cause vmexit immediately and the value will be recalculated
388 * on the next vmentry.
389 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300390 if (!kvm_vcpu_has_lapic(vcpu))
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800391 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +0300392 highest_irr = apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800393
394 return highest_irr;
395}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800396
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200397static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
398 int vector, int level, int trig_mode);
399
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200400int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300401{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800402 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800403
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200404 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
405 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300406}
407
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300408static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
409{
410
411 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
412 sizeof(val));
413}
414
415static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
416{
417
418 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
419 sizeof(*val));
420}
421
422static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
423{
424 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
425}
426
427static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
428{
429 u8 val;
430 if (pv_eoi_get_user(vcpu, &val) < 0)
431 apic_debug("Can't read EOI MSR value: 0x%llx\n",
432 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
433 return val & 0x1;
434}
435
436static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
437{
438 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
439 apic_debug("Can't set EOI MSR value: 0x%llx\n",
440 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
441 return;
442 }
443 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
444}
445
446static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
447{
448 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
449 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
450 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
451 return;
452 }
453 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
454}
455
Eddie Dong97222cc2007-09-12 10:58:04 +0300456static inline int apic_find_highest_isr(struct kvm_lapic *apic)
457{
458 int result;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300459 if (!apic->isr_count)
460 return -1;
461 if (likely(apic->highest_isr_cache != -1))
462 return apic->highest_isr_cache;
Eddie Dong97222cc2007-09-12 10:58:04 +0300463
464 result = find_highest_vector(apic->regs + APIC_ISR);
465 ASSERT(result == -1 || result >= 16);
466
467 return result;
468}
469
470static void apic_update_ppr(struct kvm_lapic *apic)
471{
Avi Kivity3842d132010-07-27 12:30:24 +0300472 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300473 int isr;
474
Gleb Natapovc48f1492012-08-05 15:58:33 +0300475 old_ppr = kvm_apic_get_reg(apic, APIC_PROCPRI);
476 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300477 isr = apic_find_highest_isr(apic);
478 isrv = (isr != -1) ? isr : 0;
479
480 if ((tpr & 0xf0) >= (isrv & 0xf0))
481 ppr = tpr & 0xff;
482 else
483 ppr = isrv & 0xf0;
484
485 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
486 apic, ppr, isr, isrv);
487
Avi Kivity3842d132010-07-27 12:30:24 +0300488 if (old_ppr != ppr) {
489 apic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200490 if (ppr < old_ppr)
491 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300492 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300493}
494
495static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
496{
497 apic_set_reg(apic, APIC_TASKPRI, tpr);
498 apic_update_ppr(apic);
499}
500
501int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
502{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200503 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300504}
505
506int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
507{
508 int result = 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300509 u32 logical_id;
510
511 if (apic_x2apic_mode(apic)) {
Gleb Natapovc48f1492012-08-05 15:58:33 +0300512 logical_id = kvm_apic_get_reg(apic, APIC_LDR);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300513 return logical_id & mda;
514 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300515
Gleb Natapovc48f1492012-08-05 15:58:33 +0300516 logical_id = GET_APIC_LOGICAL_ID(kvm_apic_get_reg(apic, APIC_LDR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300517
Gleb Natapovc48f1492012-08-05 15:58:33 +0300518 switch (kvm_apic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300519 case APIC_DFR_FLAT:
520 if (logical_id & mda)
521 result = 1;
522 break;
523 case APIC_DFR_CLUSTER:
524 if (((logical_id >> 4) == (mda >> 0x4))
525 && (logical_id & mda & 0xf))
526 result = 1;
527 break;
528 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200529 apic_debug("Bad DFR vcpu %d: %08x\n",
Gleb Natapovc48f1492012-08-05 15:58:33 +0300530 apic->vcpu->vcpu_id, kvm_apic_get_reg(apic, APIC_DFR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300531 break;
532 }
533
534 return result;
535}
536
Gleb Natapov343f94f2009-03-05 16:34:54 +0200537int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300538 int short_hand, int dest, int dest_mode)
539{
540 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800541 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300542
543 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200544 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300545 target, source, dest, dest_mode, short_hand);
546
Zachary Amsdenbd371392010-06-14 11:42:15 -1000547 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300548 switch (short_hand) {
549 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200550 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300551 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200552 result = kvm_apic_match_physical_addr(target, dest);
553 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300554 /* Logical mode. */
555 result = kvm_apic_match_logical_addr(target, dest);
556 break;
557 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200558 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300559 break;
560 case APIC_DEST_ALLINC:
561 result = 1;
562 break;
563 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200564 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300565 break;
566 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200567 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
568 short_hand);
Eddie Dong97222cc2007-09-12 10:58:04 +0300569 break;
570 }
571
572 return result;
573}
574
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300575bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
576 struct kvm_lapic_irq *irq, int *r)
577{
578 struct kvm_apic_map *map;
579 unsigned long bitmap = 1;
580 struct kvm_lapic **dst;
581 int i;
582 bool ret = false;
583
584 *r = -1;
585
586 if (irq->shorthand == APIC_DEST_SELF) {
587 *r = kvm_apic_set_irq(src->vcpu, irq);
588 return true;
589 }
590
591 if (irq->shorthand)
592 return false;
593
594 rcu_read_lock();
595 map = rcu_dereference(kvm->arch.apic_map);
596
597 if (!map)
598 goto out;
599
600 if (irq->dest_mode == 0) { /* physical mode */
601 if (irq->delivery_mode == APIC_DM_LOWEST ||
602 irq->dest_id == 0xff)
603 goto out;
604 dst = &map->phys_map[irq->dest_id & 0xff];
605 } else {
606 u32 mda = irq->dest_id << (32 - map->ldr_bits);
607
608 dst = map->logical_map[apic_cluster_id(map, mda)];
609
610 bitmap = apic_logical_id(map, mda);
611
612 if (irq->delivery_mode == APIC_DM_LOWEST) {
613 int l = -1;
614 for_each_set_bit(i, &bitmap, 16) {
615 if (!dst[i])
616 continue;
617 if (l < 0)
618 l = i;
619 else if (kvm_apic_compare_prio(dst[i]->vcpu, dst[l]->vcpu) < 0)
620 l = i;
621 }
622
623 bitmap = (l >= 0) ? 1 << l : 0;
624 }
625 }
626
627 for_each_set_bit(i, &bitmap, 16) {
628 if (!dst[i])
629 continue;
630 if (*r < 0)
631 *r = 0;
632 *r += kvm_apic_set_irq(dst[i]->vcpu, irq);
633 }
634
635 ret = true;
636out:
637 rcu_read_unlock();
638 return ret;
639}
640
Eddie Dong97222cc2007-09-12 10:58:04 +0300641/*
642 * Add a pending IRQ into lapic.
643 * Return 1 if successfully added and 0 if discarded.
644 */
645static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
646 int vector, int level, int trig_mode)
647{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200648 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300649 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300650
651 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300652 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200653 vcpu->arch.apic_arb_prio++;
654 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300655 /* FIXME add logic for vcpu on reset */
656 if (unlikely(!apic_enabled(apic)))
657 break;
658
Avi Kivitya5d36f82009-12-29 12:42:16 +0200659 if (trig_mode) {
660 apic_debug("level trig mode for vector %d", vector);
661 apic_set_vector(vector, apic->regs + APIC_TMR);
662 } else
663 apic_clear_vector(vector, apic->regs + APIC_TMR);
664
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200665 result = !apic_test_and_set_irr(vector, apic);
Gleb Natapov1000ff82009-07-07 16:00:57 +0300666 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
Gleb Natapov4da74892009-08-27 16:25:04 +0300667 trig_mode, vector, !result);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200668 if (!result) {
669 if (trig_mode)
670 apic_debug("level trig mode repeatedly for "
671 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300672 break;
673 }
674
Avi Kivity3842d132010-07-27 12:30:24 +0300675 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300676 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300677 break;
678
679 case APIC_DM_REMRD:
Jan Kiszka7712de82011-09-12 11:25:51 +0200680 apic_debug("Ignoring delivery mode 3\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300681 break;
682
683 case APIC_DM_SMI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200684 apic_debug("Ignoring guest SMI\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300685 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800686
Eddie Dong97222cc2007-09-12 10:58:04 +0300687 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200688 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800689 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200690 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300691 break;
692
693 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +0100694 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200695 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300696 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300697 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300698 kvm_vcpu_kick(vcpu);
699 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200700 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
701 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300702 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300703 break;
704
705 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200706 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
707 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300708 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200709 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800710 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300711 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300712 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300713 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300714 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300715 break;
716
Jan Kiszka23930f92008-09-26 09:30:52 +0200717 case APIC_DM_EXTINT:
718 /*
719 * Should only be called by kvm_apic_local_deliver() with LVT0,
720 * before NMI watchdog was enabled. Already handled by
721 * kvm_apic_accept_pic_intr().
722 */
723 break;
724
Eddie Dong97222cc2007-09-12 10:58:04 +0300725 default:
726 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
727 delivery_mode);
728 break;
729 }
730 return result;
731}
732
Gleb Natapove1035712009-03-05 16:34:59 +0200733int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300734{
Gleb Natapove1035712009-03-05 16:34:59 +0200735 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800736}
737
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300738static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300739{
740 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300741
742 trace_kvm_eoi(apic, vector);
743
Eddie Dong97222cc2007-09-12 10:58:04 +0300744 /*
745 * Not every write EOI will has corresponding ISR,
746 * one example is when Kernel check timer on setup_IO_APIC
747 */
748 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300749 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300750
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300751 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300752 apic_update_ppr(apic);
753
Gleb Natapovc48f1492012-08-05 15:58:33 +0300754 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300755 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
756 int trigger_mode;
757 if (apic_test_vector(vector, apic->regs + APIC_TMR))
758 trigger_mode = IOAPIC_LEVEL_TRIG;
759 else
760 trigger_mode = IOAPIC_EDGE_TRIG;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300761 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300762 }
Avi Kivity3842d132010-07-27 12:30:24 +0300763 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300764 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300765}
766
767static void apic_send_ipi(struct kvm_lapic *apic)
768{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300769 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR);
770 u32 icr_high = kvm_apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200771 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300772
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200773 irq.vector = icr_low & APIC_VECTOR_MASK;
774 irq.delivery_mode = icr_low & APIC_MODE_MASK;
775 irq.dest_mode = icr_low & APIC_DEST_MASK;
776 irq.level = icr_low & APIC_INT_ASSERT;
777 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
778 irq.shorthand = icr_low & APIC_SHORT_MASK;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300779 if (apic_x2apic_mode(apic))
780 irq.dest_id = icr_high;
781 else
782 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300783
Gleb Natapov1000ff82009-07-07 16:00:57 +0300784 trace_kvm_apic_ipi(icr_low, irq.dest_id);
785
Eddie Dong97222cc2007-09-12 10:58:04 +0300786 apic_debug("icr_high 0x%x, icr_low 0x%x, "
787 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
788 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
Glauber Costa9b5843dd2009-04-29 17:29:09 -0400789 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200790 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
791 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300792
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200793 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Eddie Dong97222cc2007-09-12 10:58:04 +0300794}
795
796static u32 apic_get_tmcct(struct kvm_lapic *apic)
797{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200798 ktime_t remaining;
799 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200800 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300801
802 ASSERT(apic != NULL);
803
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200804 /* if initial count is 0, current count should also be 0 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300805 if (kvm_apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200806 return 0;
807
Marcelo Tosattiace15462009-10-08 10:55:03 -0300808 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200809 if (ktime_to_ns(remaining) < 0)
810 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300811
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300812 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
813 tmcct = div64_u64(ns,
814 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300815
816 return tmcct;
817}
818
Avi Kivityb209749f2007-10-22 16:50:39 +0200819static void __report_tpr_access(struct kvm_lapic *apic, bool write)
820{
821 struct kvm_vcpu *vcpu = apic->vcpu;
822 struct kvm_run *run = vcpu->run;
823
Avi Kivitya8eeb042010-05-10 12:34:53 +0300824 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300825 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200826 run->tpr_access.is_write = write;
827}
828
829static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
830{
831 if (apic->vcpu->arch.tpr_access_reporting)
832 __report_tpr_access(apic, write);
833}
834
Eddie Dong97222cc2007-09-12 10:58:04 +0300835static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
836{
837 u32 val = 0;
838
839 if (offset >= LAPIC_MMIO_LENGTH)
840 return 0;
841
842 switch (offset) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300843 case APIC_ID:
844 if (apic_x2apic_mode(apic))
845 val = kvm_apic_id(apic);
846 else
847 val = kvm_apic_id(apic) << 24;
848 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300849 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200850 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300851 break;
852
853 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800854 if (apic_lvtt_tscdeadline(apic))
855 return 0;
856
Eddie Dong97222cc2007-09-12 10:58:04 +0300857 val = apic_get_tmcct(apic);
858 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +0300859 case APIC_PROCPRI:
860 apic_update_ppr(apic);
Gleb Natapovc48f1492012-08-05 15:58:33 +0300861 val = kvm_apic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +0300862 break;
Avi Kivityb209749f2007-10-22 16:50:39 +0200863 case APIC_TASKPRI:
864 report_tpr_access(apic, false);
865 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300866 default:
Gleb Natapovc48f1492012-08-05 15:58:33 +0300867 val = kvm_apic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +0300868 break;
869 }
870
871 return val;
872}
873
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400874static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
875{
876 return container_of(dev, struct kvm_lapic, dev);
877}
878
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300879static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
880 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300881{
Eddie Dong97222cc2007-09-12 10:58:04 +0300882 unsigned char alignment = offset & 0xf;
883 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800884 /* this bitmask has a bit cleared for each reserved register */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300885 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300886
887 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300888 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
889 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300890 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300891 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300892
893 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300894 apic_debug("KVM_APIC_READ: read reserved register %x\n",
895 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300896 return 1;
897 }
898
Eddie Dong97222cc2007-09-12 10:58:04 +0300899 result = __apic_read(apic, offset & ~0xf);
900
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300901 trace_kvm_apic_read(offset, result);
902
Eddie Dong97222cc2007-09-12 10:58:04 +0300903 switch (len) {
904 case 1:
905 case 2:
906 case 4:
907 memcpy(data, (char *)&result + alignment, len);
908 break;
909 default:
910 printk(KERN_ERR "Local APIC read with len = %x, "
911 "should be 1,2, or 4 instead\n", len);
912 break;
913 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300914 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300915}
916
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300917static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
918{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300919 return kvm_apic_hw_enabled(apic) &&
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300920 addr >= apic->base_address &&
921 addr < apic->base_address + LAPIC_MMIO_LENGTH;
922}
923
924static int apic_mmio_read(struct kvm_io_device *this,
925 gpa_t address, int len, void *data)
926{
927 struct kvm_lapic *apic = to_lapic(this);
928 u32 offset = address - apic->base_address;
929
930 if (!apic_mmio_in_range(apic, address))
931 return -EOPNOTSUPP;
932
933 apic_reg_read(apic, offset, len, data);
934
935 return 0;
936}
937
Eddie Dong97222cc2007-09-12 10:58:04 +0300938static void update_divide_count(struct kvm_lapic *apic)
939{
940 u32 tmp1, tmp2, tdcr;
941
Gleb Natapovc48f1492012-08-05 15:58:33 +0300942 tdcr = kvm_apic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300943 tmp1 = tdcr & 0xf;
944 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300945 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300946
947 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843dd2009-04-29 17:29:09 -0400948 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300949}
950
951static void start_apic_timer(struct kvm_lapic *apic)
952{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800953 ktime_t now;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300954 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200955
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800956 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800957 /* lapic timer in oneshot or periodic mode */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800958 now = apic->lapic_timer.timer.base->get_time();
Gleb Natapovc48f1492012-08-05 15:58:33 +0300959 apic->lapic_timer.period = (u64)kvm_apic_get_reg(apic, APIC_TMICT)
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800960 * APIC_BUS_CYCLE_NS * apic->divide_count;
Jan Kiszka9bc57912011-09-12 14:10:22 +0200961
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800962 if (!apic->lapic_timer.period)
963 return;
964 /*
965 * Do not allow the guest to program periodic timers with small
966 * interval, since the hrtimers are not throttled by the host
967 * scheduler.
968 */
969 if (apic_lvtt_period(apic)) {
970 s64 min_period = min_timer_period_us * 1000LL;
971
972 if (apic->lapic_timer.period < min_period) {
973 pr_info_ratelimited(
974 "kvm: vcpu %i: requested %lld ns "
975 "lapic timer period limited to %lld ns\n",
976 apic->vcpu->vcpu_id,
977 apic->lapic_timer.period, min_period);
978 apic->lapic_timer.period = min_period;
979 }
Jan Kiszka9bc57912011-09-12 14:10:22 +0200980 }
Avi Kivity0b975a32008-02-24 14:37:50 +0200981
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800982 hrtimer_start(&apic->lapic_timer.timer,
983 ktime_add_ns(now, apic->lapic_timer.period),
984 HRTIMER_MODE_ABS);
Eddie Dong97222cc2007-09-12 10:58:04 +0300985
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800986 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
Eddie Dong97222cc2007-09-12 10:58:04 +0300987 PRIx64 ", "
988 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800989 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300990 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
Gleb Natapovc48f1492012-08-05 15:58:33 +0300991 kvm_apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300992 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300993 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300994 apic->lapic_timer.period)));
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800995 } else if (apic_lvtt_tscdeadline(apic)) {
996 /* lapic timer in tsc deadline mode */
997 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
998 u64 ns = 0;
999 struct kvm_vcpu *vcpu = apic->vcpu;
Zachary Amsdencc578282012-02-03 15:43:50 -02001000 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001001 unsigned long flags;
1002
1003 if (unlikely(!tscdeadline || !this_tsc_khz))
1004 return;
1005
1006 local_irq_save(flags);
1007
1008 now = apic->lapic_timer.timer.base->get_time();
Marcelo Tosatti886b4702012-11-27 23:28:58 -02001009 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu, native_read_tsc());
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001010 if (likely(tscdeadline > guest_tsc)) {
1011 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1012 do_div(ns, this_tsc_khz);
1013 }
1014 hrtimer_start(&apic->lapic_timer.timer,
1015 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
1016
1017 local_irq_restore(flags);
1018 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001019}
1020
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001021static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1022{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001023 int nmi_wd_enabled = apic_lvt_nmi_mode(kvm_apic_get_reg(apic, APIC_LVT0));
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001024
1025 if (apic_lvt_nmi_mode(lvt0_val)) {
1026 if (!nmi_wd_enabled) {
1027 apic_debug("Receive NMI setting on APIC_LVT0 "
1028 "for cpu %d\n", apic->vcpu->vcpu_id);
1029 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
1030 }
1031 } else if (nmi_wd_enabled)
1032 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
1033}
1034
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001035static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03001036{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001037 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001038
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001039 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001040
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001041 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001042 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001043 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001044 kvm_apic_set_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001045 else
1046 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001047 break;
1048
1049 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02001050 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03001051 apic_set_tpr(apic, val & 0xff);
1052 break;
1053
1054 case APIC_EOI:
1055 apic_set_eoi(apic);
1056 break;
1057
1058 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001059 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001060 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001061 else
1062 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001063 break;
1064
1065 case APIC_DFR:
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001066 if (!apic_x2apic_mode(apic)) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001067 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001068 recalculate_apic_map(apic->vcpu->kvm);
1069 } else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001070 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001071 break;
1072
Gleb Natapovfc61b802009-07-05 17:39:35 +03001073 case APIC_SPIV: {
1074 u32 mask = 0x3ff;
Gleb Natapovc48f1492012-08-05 15:58:33 +03001075 if (kvm_apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03001076 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001077 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03001078 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1079 int i;
1080 u32 lvt_val;
1081
1082 for (i = 0; i < APIC_LVT_NUM; i++) {
Gleb Natapovc48f1492012-08-05 15:58:33 +03001083 lvt_val = kvm_apic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03001084 APIC_LVTT + 0x10 * i);
1085 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
1086 lvt_val | APIC_LVT_MASKED);
1087 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001088 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001089
1090 }
1091 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03001092 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001093 case APIC_ICR:
1094 /* No delay here, so we always clear the pending bit */
1095 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
1096 apic_send_ipi(apic);
1097 break;
1098
1099 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001100 if (!apic_x2apic_mode(apic))
1101 val &= 0xff000000;
1102 apic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001103 break;
1104
Jan Kiszka23930f92008-09-26 09:30:52 +02001105 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001106 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001107 case APIC_LVTTHMR:
1108 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03001109 case APIC_LVT1:
1110 case APIC_LVTERR:
1111 /* TODO: Check vector */
Gleb Natapovc48f1492012-08-05 15:58:33 +03001112 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001113 val |= APIC_LVT_MASKED;
1114
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001115 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
1116 apic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001117
1118 break;
1119
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001120 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03001121 if ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001122 apic->lapic_timer.timer_mode_mask) !=
1123 (val & apic->lapic_timer.timer_mode_mask))
1124 hrtimer_cancel(&apic->lapic_timer.timer);
1125
Gleb Natapovc48f1492012-08-05 15:58:33 +03001126 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001127 val |= APIC_LVT_MASKED;
1128 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
1129 apic_set_reg(apic, APIC_LVTT, val);
1130 break;
1131
Eddie Dong97222cc2007-09-12 10:58:04 +03001132 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001133 if (apic_lvtt_tscdeadline(apic))
1134 break;
1135
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001136 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001137 apic_set_reg(apic, APIC_TMICT, val);
1138 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001139 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001140
1141 case APIC_TDCR:
1142 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +02001143 apic_debug("KVM_WRITE:TDCR %x\n", val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001144 apic_set_reg(apic, APIC_TDCR, val);
1145 update_divide_count(apic);
1146 break;
1147
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001148 case APIC_ESR:
1149 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +02001150 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001151 ret = 1;
1152 }
1153 break;
1154
1155 case APIC_SELF_IPI:
1156 if (apic_x2apic_mode(apic)) {
1157 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1158 } else
1159 ret = 1;
1160 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001161 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001162 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001163 break;
1164 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001165 if (ret)
1166 apic_debug("Local APIC Write to read-only register %x\n", reg);
1167 return ret;
1168}
1169
1170static int apic_mmio_write(struct kvm_io_device *this,
1171 gpa_t address, int len, const void *data)
1172{
1173 struct kvm_lapic *apic = to_lapic(this);
1174 unsigned int offset = address - apic->base_address;
1175 u32 val;
1176
1177 if (!apic_mmio_in_range(apic, address))
1178 return -EOPNOTSUPP;
1179
1180 /*
1181 * APIC register must be aligned on 128-bits boundary.
1182 * 32/64/128 bits registers must be accessed thru 32 bits.
1183 * Refer SDM 8.4.1
1184 */
1185 if (len != 4 || (offset & 0xf)) {
1186 /* Don't shout loud, $infamous_os would cause only noise. */
1187 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
Sheng Yang756975b2009-07-06 11:05:39 +08001188 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001189 }
1190
1191 val = *(u32*)data;
1192
1193 /* too common printing */
1194 if (offset != APIC_EOI)
1195 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1196 "0x%x\n", __func__, offset, len, val);
1197
1198 apic_reg_write(apic, offset & 0xff0, val);
1199
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001200 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001201}
1202
Kevin Tian58fbbf22011-08-30 13:56:17 +03001203void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1204{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001205 if (kvm_vcpu_has_lapic(vcpu))
Kevin Tian58fbbf22011-08-30 13:56:17 +03001206 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1207}
1208EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1209
Yang Zhang83d4c282013-01-25 10:18:49 +08001210/* emulate APIC access in a trap manner */
1211void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
1212{
1213 u32 val = 0;
1214
1215 /* hw has done the conditional check and inst decode */
1216 offset &= 0xff0;
1217
1218 apic_reg_read(vcpu->arch.apic, offset, 4, &val);
1219
1220 /* TODO: optimize to just emulate side effect w/o one more write */
1221 apic_reg_write(vcpu->arch.apic, offset, val);
1222}
1223EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
1224
Rusty Russelld5894442007-10-08 10:48:30 +10001225void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001226{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001227 struct kvm_lapic *apic = vcpu->arch.apic;
1228
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001229 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001230 return;
1231
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001232 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001233
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001234 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1235 static_key_slow_dec_deferred(&apic_hw_disabled);
1236
Gleb Natapovc48f1492012-08-05 15:58:33 +03001237 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED))
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001238 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03001239
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001240 if (apic->regs)
1241 free_page((unsigned long)apic->regs);
1242
1243 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001244}
1245
1246/*
1247 *----------------------------------------------------------------------
1248 * LAPIC interface
1249 *----------------------------------------------------------------------
1250 */
1251
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001252u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1253{
1254 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001255
Gleb Natapovc48f1492012-08-05 15:58:33 +03001256 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001257 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001258 return 0;
1259
1260 return apic->lapic_timer.tscdeadline;
1261}
1262
1263void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1264{
1265 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001266
Gleb Natapovc48f1492012-08-05 15:58:33 +03001267 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001268 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001269 return;
1270
1271 hrtimer_cancel(&apic->lapic_timer.timer);
1272 apic->lapic_timer.tscdeadline = data;
1273 start_apic_timer(apic);
1274}
1275
Eddie Dong97222cc2007-09-12 10:58:04 +03001276void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1277{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001278 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001279
Gleb Natapovc48f1492012-08-05 15:58:33 +03001280 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001281 return;
Gleb Natapov54e98182012-08-05 15:58:32 +03001282
Avi Kivityb93463a2007-10-25 16:52:32 +02001283 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Gleb Natapovc48f1492012-08-05 15:58:33 +03001284 | (kvm_apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03001285}
1286
1287u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1288{
Eddie Dong97222cc2007-09-12 10:58:04 +03001289 u64 tpr;
1290
Gleb Natapovc48f1492012-08-05 15:58:33 +03001291 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001292 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +03001293
Gleb Natapovc48f1492012-08-05 15:58:33 +03001294 tpr = (u64) kvm_apic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03001295
1296 return (tpr & 0xf0) >> 4;
1297}
1298
1299void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1300{
Yang Zhang8d146952013-01-25 10:18:50 +08001301 u64 old_value = vcpu->arch.apic_base;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001302 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001303
1304 if (!apic) {
1305 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001306 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +03001307 return;
1308 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001309
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001310 /* update jump label if enable bit changes */
1311 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1312 if (value & MSR_IA32_APICBASE_ENABLE)
1313 static_key_slow_dec_deferred(&apic_hw_disabled);
1314 else
1315 static_key_slow_inc(&apic_hw_disabled.key);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001316 recalculate_apic_map(vcpu->kvm);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001317 }
1318
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001319 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001320 value &= ~MSR_IA32_APICBASE_BSP;
1321
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001322 vcpu->arch.apic_base = value;
Yang Zhang8d146952013-01-25 10:18:50 +08001323 if ((old_value ^ value) & X2APIC_ENABLE) {
1324 if (value & X2APIC_ENABLE) {
1325 u32 id = kvm_apic_id(apic);
1326 u32 ldr = ((id >> 4) << 16) | (1 << (id & 0xf));
1327 kvm_apic_set_ldr(apic, ldr);
1328 kvm_x86_ops->set_virtual_x2apic_mode(vcpu, true);
1329 } else
1330 kvm_x86_ops->set_virtual_x2apic_mode(vcpu, false);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001331 }
Yang Zhang8d146952013-01-25 10:18:50 +08001332
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001333 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03001334 MSR_IA32_APICBASE_BASE;
1335
1336 /* with FSB delivery interrupt, we can restart APIC functionality */
1337 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001338 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001339
1340}
1341
He, Qingc5ec1532007-09-03 17:07:41 +03001342void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001343{
1344 struct kvm_lapic *apic;
1345 int i;
1346
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001347 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +03001348
1349 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001350 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001351 ASSERT(apic != NULL);
1352
1353 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001354 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001355
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001356 kvm_apic_set_id(apic, vcpu->vcpu_id);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001357 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001358
1359 for (i = 0; i < APIC_LVT_NUM; i++)
1360 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +08001361 apic_set_reg(apic, APIC_LVT0,
1362 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +03001363
1364 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001365 apic_set_spiv(apic, 0xff);
Eddie Dong97222cc2007-09-12 10:58:04 +03001366 apic_set_reg(apic, APIC_TASKPRI, 0);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001367 kvm_apic_set_ldr(apic, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001368 apic_set_reg(apic, APIC_ESR, 0);
1369 apic_set_reg(apic, APIC_ICR, 0);
1370 apic_set_reg(apic, APIC_ICR2, 0);
1371 apic_set_reg(apic, APIC_TDCR, 0);
1372 apic_set_reg(apic, APIC_TMICT, 0);
1373 for (i = 0; i < 8; i++) {
1374 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1375 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1376 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1377 }
Gleb Natapov33e4c682009-06-11 11:06:51 +03001378 apic->irr_pending = false;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001379 apic->isr_count = 0;
1380 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02001381 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001382 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001383 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001384 kvm_lapic_set_base(vcpu,
1385 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001386 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001387 apic_update_ppr(apic);
1388
Gleb Natapove1035712009-03-05 16:34:59 +02001389 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03001390 vcpu->arch.apic_attention = 0;
Gleb Natapove1035712009-03-05 16:34:59 +02001391
Eddie Dong97222cc2007-09-12 10:58:04 +03001392 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001393 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001394 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001395 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001396}
1397
Eddie Dong97222cc2007-09-12 10:58:04 +03001398/*
1399 *----------------------------------------------------------------------
1400 * timer interface
1401 *----------------------------------------------------------------------
1402 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001403
Avi Kivity2a6eac92012-07-26 18:01:51 +03001404static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001405{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001406 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001407}
1408
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001409int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1410{
Gleb Natapov54e98182012-08-05 15:58:32 +03001411 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001412
Gleb Natapovc48f1492012-08-05 15:58:33 +03001413 if (kvm_vcpu_has_lapic(vcpu) && apic_enabled(apic) &&
Gleb Natapov54e98182012-08-05 15:58:32 +03001414 apic_lvt_enabled(apic, APIC_LVTT))
1415 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001416
1417 return 0;
1418}
1419
Avi Kivity89342082011-11-10 14:57:21 +02001420int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001421{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001422 u32 reg = kvm_apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001423 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001424
Gleb Natapovc48f1492012-08-05 15:58:33 +03001425 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001426 vector = reg & APIC_VECTOR_MASK;
1427 mode = reg & APIC_MODE_MASK;
1428 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1429 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1430 }
1431 return 0;
1432}
1433
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001434void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001435{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001436 struct kvm_lapic *apic = vcpu->arch.apic;
1437
1438 if (apic)
1439 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001440}
1441
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001442static const struct kvm_io_device_ops apic_mmio_ops = {
1443 .read = apic_mmio_read,
1444 .write = apic_mmio_write,
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001445};
1446
Avi Kivitye9d90d42012-07-26 18:01:50 +03001447static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1448{
1449 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03001450 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1451 struct kvm_vcpu *vcpu = apic->vcpu;
Avi Kivitye9d90d42012-07-26 18:01:50 +03001452 wait_queue_head_t *q = &vcpu->wq;
1453
1454 /*
1455 * There is a race window between reading and incrementing, but we do
1456 * not care about potentially losing timer events in the !reinject
1457 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1458 * in vcpu_enter_guest.
1459 */
Avi Kivity2a6eac92012-07-26 18:01:51 +03001460 if (!atomic_read(&ktimer->pending)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001461 atomic_inc(&ktimer->pending);
1462 /* FIXME: this code should not know anything about vcpus */
1463 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1464 }
1465
1466 if (waitqueue_active(q))
1467 wake_up_interruptible(q);
1468
Avi Kivity2a6eac92012-07-26 18:01:51 +03001469 if (lapic_is_periodic(apic)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001470 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1471 return HRTIMER_RESTART;
1472 } else
1473 return HRTIMER_NORESTART;
1474}
1475
Eddie Dong97222cc2007-09-12 10:58:04 +03001476int kvm_create_lapic(struct kvm_vcpu *vcpu)
1477{
1478 struct kvm_lapic *apic;
1479
1480 ASSERT(vcpu != NULL);
1481 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1482
1483 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1484 if (!apic)
1485 goto nomem;
1486
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001487 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001488
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001489 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1490 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001491 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1492 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001493 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001494 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001495 apic->vcpu = vcpu;
1496
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001497 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1498 HRTIMER_MODE_ABS);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001499 apic->lapic_timer.timer.function = apic_timer_fn;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001500
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001501 /*
1502 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1503 * thinking that APIC satet has changed.
1504 */
1505 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapov6aed64a2012-08-05 15:58:28 +03001506 kvm_lapic_set_base(vcpu,
1507 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
Eddie Dong97222cc2007-09-12 10:58:04 +03001508
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001509 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
He, Qingc5ec1532007-09-03 17:07:41 +03001510 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001511 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001512
1513 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001514nomem_free_apic:
1515 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001516nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001517 return -ENOMEM;
1518}
Eddie Dong97222cc2007-09-12 10:58:04 +03001519
1520int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1521{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001522 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001523 int highest_irr;
1524
Gleb Natapovc48f1492012-08-05 15:58:33 +03001525 if (!kvm_vcpu_has_lapic(vcpu) || !apic_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001526 return -1;
1527
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001528 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001529 highest_irr = apic_find_highest_irr(apic);
1530 if ((highest_irr == -1) ||
Gleb Natapovc48f1492012-08-05 15:58:33 +03001531 ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI)))
Eddie Dong97222cc2007-09-12 10:58:04 +03001532 return -1;
1533 return highest_irr;
1534}
1535
Qing He40487c62007-09-17 14:47:13 +08001536int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1537{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001538 u32 lvt0 = kvm_apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001539 int r = 0;
1540
Gleb Natapovc48f1492012-08-05 15:58:33 +03001541 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001542 r = 1;
1543 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1544 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1545 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001546 return r;
1547}
1548
Eddie Dong1b9778d2007-09-03 16:56:58 +03001549void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1550{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001551 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001552
Gleb Natapovc48f1492012-08-05 15:58:33 +03001553 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03001554 return;
1555
1556 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001557 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001558 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001559 }
1560}
1561
Eddie Dong97222cc2007-09-12 10:58:04 +03001562int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1563{
1564 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001565 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001566
1567 if (vector == -1)
1568 return -1;
1569
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001570 apic_set_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001571 apic_update_ppr(apic);
1572 apic_clear_irr(vector, apic);
1573 return vector;
1574}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001575
Gleb Natapov64eb0622012-08-08 15:24:36 +03001576void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
1577 struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001578{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001579 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001580
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001581 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03001582 /* set SPIV separately to get count of SW disabled APICs right */
1583 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
1584 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001585 /* call kvm_apic_set_id() to put apic into apic_map */
1586 kvm_apic_set_id(apic, kvm_apic_id(apic));
Gleb Natapovfc61b802009-07-05 17:39:35 +03001587 kvm_apic_set_version(vcpu);
1588
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001589 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001590 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001591 update_divide_count(apic);
1592 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001593 apic->irr_pending = true;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001594 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
1595 apic->highest_isr_cache = -1;
Avi Kivity3842d132010-07-27 12:30:24 +03001596 kvm_make_request(KVM_REQ_EVENT, vcpu);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001597}
Eddie Donga3d7f852007-09-03 16:15:12 +03001598
Avi Kivity2f52d582008-01-16 12:49:30 +02001599void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001600{
Eddie Donga3d7f852007-09-03 16:15:12 +03001601 struct hrtimer *timer;
1602
Gleb Natapovc48f1492012-08-05 15:58:33 +03001603 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03001604 return;
1605
Gleb Natapov54e98182012-08-05 15:58:32 +03001606 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001607 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d522008-09-01 14:55:57 -07001608 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001609}
Avi Kivityb93463a2007-10-25 16:52:32 +02001610
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001611/*
1612 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1613 *
1614 * Detect whether guest triggered PV EOI since the
1615 * last entry. If yes, set EOI on guests's behalf.
1616 * Clear PV EOI in guest memory in any case.
1617 */
1618static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1619 struct kvm_lapic *apic)
1620{
1621 bool pending;
1622 int vector;
1623 /*
1624 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1625 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1626 *
1627 * KVM_APIC_PV_EOI_PENDING is unset:
1628 * -> host disabled PV EOI.
1629 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1630 * -> host enabled PV EOI, guest did not execute EOI yet.
1631 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1632 * -> host enabled PV EOI, guest executed EOI.
1633 */
1634 BUG_ON(!pv_eoi_enabled(vcpu));
1635 pending = pv_eoi_get_pending(vcpu);
1636 /*
1637 * Clear pending bit in any case: it will be set again on vmentry.
1638 * While this might not be ideal from performance point of view,
1639 * this makes sure pv eoi is only enabled when we know it's safe.
1640 */
1641 pv_eoi_clr_pending(vcpu);
1642 if (pending)
1643 return;
1644 vector = apic_set_eoi(apic);
1645 trace_kvm_pv_eoi(apic, vector);
1646}
1647
Avi Kivityb93463a2007-10-25 16:52:32 +02001648void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1649{
1650 u32 data;
1651 void *vapic;
1652
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001653 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1654 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1655
Gleb Natapov41383772012-04-19 14:06:29 +03001656 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001657 return;
1658
Cong Wang8fd75e12011-11-25 23:14:17 +08001659 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001660 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
Cong Wang8fd75e12011-11-25 23:14:17 +08001661 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001662
1663 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1664}
1665
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001666/*
1667 * apic_sync_pv_eoi_to_guest - called before vmentry
1668 *
1669 * Detect whether it's safe to enable PV EOI and
1670 * if yes do so.
1671 */
1672static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1673 struct kvm_lapic *apic)
1674{
1675 if (!pv_eoi_enabled(vcpu) ||
1676 /* IRR set or many bits in ISR: could be nested. */
1677 apic->irr_pending ||
1678 /* Cache not set: could be safe but we don't bother. */
1679 apic->highest_isr_cache == -1 ||
1680 /* Need EOI to update ioapic. */
1681 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1682 /*
1683 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1684 * so we need not do anything here.
1685 */
1686 return;
1687 }
1688
1689 pv_eoi_set_pending(apic->vcpu);
1690}
1691
Avi Kivityb93463a2007-10-25 16:52:32 +02001692void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1693{
1694 u32 data, tpr;
1695 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001696 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02001697 void *vapic;
1698
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001699 apic_sync_pv_eoi_to_guest(vcpu, apic);
1700
Gleb Natapov41383772012-04-19 14:06:29 +03001701 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001702 return;
1703
Gleb Natapovc48f1492012-08-05 15:58:33 +03001704 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02001705 max_irr = apic_find_highest_irr(apic);
1706 if (max_irr < 0)
1707 max_irr = 0;
1708 max_isr = apic_find_highest_isr(apic);
1709 if (max_isr < 0)
1710 max_isr = 0;
1711 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1712
Cong Wang8fd75e12011-11-25 23:14:17 +08001713 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001714 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
Cong Wang8fd75e12011-11-25 23:14:17 +08001715 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001716}
1717
1718void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1719{
Avi Kivityb93463a2007-10-25 16:52:32 +02001720 vcpu->arch.apic->vapic_addr = vapic_addr;
Gleb Natapov41383772012-04-19 14:06:29 +03001721 if (vapic_addr)
1722 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1723 else
1724 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Avi Kivityb93463a2007-10-25 16:52:32 +02001725}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001726
1727int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1728{
1729 struct kvm_lapic *apic = vcpu->arch.apic;
1730 u32 reg = (msr - APIC_BASE_MSR) << 4;
1731
1732 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1733 return 1;
1734
1735 /* if this is ICR write vector before command */
1736 if (msr == 0x830)
1737 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1738 return apic_reg_write(apic, reg, (u32)data);
1739}
1740
1741int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1742{
1743 struct kvm_lapic *apic = vcpu->arch.apic;
1744 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1745
1746 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1747 return 1;
1748
1749 if (apic_reg_read(apic, reg, 4, &low))
1750 return 1;
1751 if (msr == 0x830)
1752 apic_reg_read(apic, APIC_ICR2, 4, &high);
1753
1754 *data = (((u64)high) << 32) | low;
1755
1756 return 0;
1757}
Gleb Natapov10388a02010-01-17 15:51:23 +02001758
1759int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1760{
1761 struct kvm_lapic *apic = vcpu->arch.apic;
1762
Gleb Natapovc48f1492012-08-05 15:58:33 +03001763 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001764 return 1;
1765
1766 /* if this is ICR write vector before command */
1767 if (reg == APIC_ICR)
1768 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1769 return apic_reg_write(apic, reg, (u32)data);
1770}
1771
1772int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1773{
1774 struct kvm_lapic *apic = vcpu->arch.apic;
1775 u32 low, high = 0;
1776
Gleb Natapovc48f1492012-08-05 15:58:33 +03001777 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001778 return 1;
1779
1780 if (apic_reg_read(apic, reg, 4, &low))
1781 return 1;
1782 if (reg == APIC_ICR)
1783 apic_reg_read(apic, APIC_ICR2, 4, &high);
1784
1785 *data = (((u64)high) << 32) | low;
1786
1787 return 0;
1788}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001789
1790int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1791{
1792 u64 addr = data & ~KVM_MSR_ENABLED;
1793 if (!IS_ALIGNED(addr, 4))
1794 return 1;
1795
1796 vcpu->arch.pv_eoi.msr_val = data;
1797 if (!pv_eoi_enabled(vcpu))
1798 return 0;
1799 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
1800 addr);
1801}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001802
1803void kvm_lapic_init(void)
1804{
1805 /* do not patch jump label more than once per second */
1806 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001807 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001808}