blob: 3e22536a703175f23875371865deda2e811262e1 [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 void recalculate_apic_map(struct kvm *kvm)
149{
150 struct kvm_apic_map *new, *old = NULL;
151 struct kvm_vcpu *vcpu;
152 int i;
153
154 new = kzalloc(sizeof(struct kvm_apic_map), GFP_KERNEL);
155
156 mutex_lock(&kvm->arch.apic_map_lock);
157
158 if (!new)
159 goto out;
160
161 new->ldr_bits = 8;
162 /* flat mode is default */
163 new->cid_shift = 8;
164 new->cid_mask = 0;
165 new->lid_mask = 0xff;
166
167 kvm_for_each_vcpu(i, vcpu, kvm) {
168 struct kvm_lapic *apic = vcpu->arch.apic;
169 u16 cid, lid;
170 u32 ldr;
171
172 if (!kvm_apic_present(vcpu))
173 continue;
174
175 /*
176 * All APICs have to be configured in the same mode by an OS.
177 * We take advatage of this while building logical id loockup
178 * table. After reset APICs are in xapic/flat mode, so if we
179 * find apic with different setting we assume this is the mode
180 * OS wants all apics to be in; build lookup table accordingly.
181 */
182 if (apic_x2apic_mode(apic)) {
183 new->ldr_bits = 32;
184 new->cid_shift = 16;
185 new->cid_mask = new->lid_mask = 0xffff;
186 } else if (kvm_apic_sw_enabled(apic) &&
187 !new->cid_mask /* flat mode */ &&
188 kvm_apic_get_reg(apic, APIC_DFR) == APIC_DFR_CLUSTER) {
189 new->cid_shift = 4;
190 new->cid_mask = 0xf;
191 new->lid_mask = 0xf;
192 }
193
194 new->phys_map[kvm_apic_id(apic)] = apic;
195
196 ldr = kvm_apic_get_reg(apic, APIC_LDR);
197 cid = apic_cluster_id(new, ldr);
198 lid = apic_logical_id(new, ldr);
199
200 if (lid)
201 new->logical_map[cid][ffs(lid) - 1] = apic;
202 }
203out:
204 old = rcu_dereference_protected(kvm->arch.apic_map,
205 lockdep_is_held(&kvm->arch.apic_map_lock));
206 rcu_assign_pointer(kvm->arch.apic_map, new);
207 mutex_unlock(&kvm->arch.apic_map_lock);
208
209 if (old)
210 kfree_rcu(old, rcu);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800211
212 kvm_ioapic_make_eoibitmap_request(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300213}
214
215static inline void kvm_apic_set_id(struct kvm_lapic *apic, u8 id)
216{
217 apic_set_reg(apic, APIC_ID, id << 24);
218 recalculate_apic_map(apic->vcpu->kvm);
219}
220
221static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
222{
223 apic_set_reg(apic, APIC_LDR, id);
224 recalculate_apic_map(apic->vcpu->kvm);
225}
226
Eddie Dong97222cc2007-09-12 10:58:04 +0300227static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
228{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300229 return !(kvm_apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300230}
231
232static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
233{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300234 return kvm_apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
Eddie Dong97222cc2007-09-12 10:58:04 +0300235}
236
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800237static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
238{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300239 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800240 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
241}
242
Eddie Dong97222cc2007-09-12 10:58:04 +0300243static inline int apic_lvtt_period(struct kvm_lapic *apic)
244{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300245 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800246 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
247}
248
249static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
250{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300251 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800252 apic->lapic_timer.timer_mode_mask) ==
253 APIC_LVT_TIMER_TSCDEADLINE);
Eddie Dong97222cc2007-09-12 10:58:04 +0300254}
255
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200256static inline int apic_lvt_nmi_mode(u32 lvt_val)
257{
258 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
259}
260
Gleb Natapovfc61b802009-07-05 17:39:35 +0300261void kvm_apic_set_version(struct kvm_vcpu *vcpu)
262{
263 struct kvm_lapic *apic = vcpu->arch.apic;
264 struct kvm_cpuid_entry2 *feat;
265 u32 v = APIC_VERSION;
266
Gleb Natapovc48f1492012-08-05 15:58:33 +0300267 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300268 return;
269
270 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
271 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
272 v |= APIC_LVR_DIRECTED_EOI;
273 apic_set_reg(apic, APIC_LVR, v);
274}
275
Mathias Krausef1d24832012-08-30 01:30:18 +0200276static const unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800277 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300278 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
279 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
280 LINT_MASK, LINT_MASK, /* LVT0-1 */
281 LVT_MASK /* LVTERR */
282};
283
284static int find_highest_vector(void *bitmap)
285{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900286 int vec;
287 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300288
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900289 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
290 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
291 reg = bitmap + REG_POS(vec);
292 if (*reg)
293 return fls(*reg) - 1 + vec;
294 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300295
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900296 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300297}
298
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300299static u8 count_vectors(void *bitmap)
300{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900301 int vec;
302 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300303 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900304
305 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
306 reg = bitmap + REG_POS(vec);
307 count += hweight32(*reg);
308 }
309
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300310 return count;
311}
312
Eddie Dong97222cc2007-09-12 10:58:04 +0300313static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
314{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300315 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300316 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
317}
318
Gleb Natapov33e4c682009-06-11 11:06:51 +0300319static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300320{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300321 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300322}
323
324static inline int apic_find_highest_irr(struct kvm_lapic *apic)
325{
326 int result;
327
Yang Zhangc7c9c562013-01-25 10:18:51 +0800328 /*
329 * Note that irr_pending is just a hint. It will be always
330 * true with virtual interrupt delivery enabled.
331 */
Gleb Natapov33e4c682009-06-11 11:06:51 +0300332 if (!apic->irr_pending)
333 return -1;
334
335 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300336 ASSERT(result == -1 || result >= 16);
337
338 return result;
339}
340
Gleb Natapov33e4c682009-06-11 11:06:51 +0300341static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
342{
343 apic->irr_pending = false;
344 apic_clear_vector(vec, apic->regs + APIC_IRR);
345 if (apic_search_irr(apic) != -1)
346 apic->irr_pending = true;
347}
348
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300349static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
350{
351 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
352 ++apic->isr_count;
353 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
354 /*
355 * ISR (in service register) bit is set when injecting an interrupt.
356 * The highest vector is injected. Thus the latest bit set matches
357 * the highest bit in ISR.
358 */
359 apic->highest_isr_cache = vec;
360}
361
362static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
363{
364 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
365 --apic->isr_count;
366 BUG_ON(apic->isr_count < 0);
367 apic->highest_isr_cache = -1;
368}
369
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800370int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
371{
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800372 int highest_irr;
373
Gleb Natapov33e4c682009-06-11 11:06:51 +0300374 /* This may race with setting of irr in __apic_accept_irq() and
375 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
376 * will cause vmexit immediately and the value will be recalculated
377 * on the next vmentry.
378 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300379 if (!kvm_vcpu_has_lapic(vcpu))
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800380 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +0300381 highest_irr = apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800382
383 return highest_irr;
384}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800385
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200386static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
387 int vector, int level, int trig_mode);
388
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200389int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300390{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800391 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800392
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200393 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
394 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300395}
396
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300397static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
398{
399
400 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
401 sizeof(val));
402}
403
404static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
405{
406
407 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
408 sizeof(*val));
409}
410
411static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
412{
413 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
414}
415
416static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
417{
418 u8 val;
419 if (pv_eoi_get_user(vcpu, &val) < 0)
420 apic_debug("Can't read EOI MSR value: 0x%llx\n",
421 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
422 return val & 0x1;
423}
424
425static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
426{
427 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
428 apic_debug("Can't set EOI MSR value: 0x%llx\n",
429 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
430 return;
431 }
432 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
433}
434
435static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
436{
437 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
438 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
439 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
440 return;
441 }
442 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
443}
444
Eddie Dong97222cc2007-09-12 10:58:04 +0300445static inline int apic_find_highest_isr(struct kvm_lapic *apic)
446{
447 int result;
Yang Zhangc7c9c562013-01-25 10:18:51 +0800448
449 /* Note that isr_count is always 1 with vid enabled */
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300450 if (!apic->isr_count)
451 return -1;
452 if (likely(apic->highest_isr_cache != -1))
453 return apic->highest_isr_cache;
Eddie Dong97222cc2007-09-12 10:58:04 +0300454
455 result = find_highest_vector(apic->regs + APIC_ISR);
456 ASSERT(result == -1 || result >= 16);
457
458 return result;
459}
460
461static void apic_update_ppr(struct kvm_lapic *apic)
462{
Avi Kivity3842d132010-07-27 12:30:24 +0300463 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300464 int isr;
465
Gleb Natapovc48f1492012-08-05 15:58:33 +0300466 old_ppr = kvm_apic_get_reg(apic, APIC_PROCPRI);
467 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300468 isr = apic_find_highest_isr(apic);
469 isrv = (isr != -1) ? isr : 0;
470
471 if ((tpr & 0xf0) >= (isrv & 0xf0))
472 ppr = tpr & 0xff;
473 else
474 ppr = isrv & 0xf0;
475
476 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
477 apic, ppr, isr, isrv);
478
Avi Kivity3842d132010-07-27 12:30:24 +0300479 if (old_ppr != ppr) {
480 apic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200481 if (ppr < old_ppr)
482 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300483 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300484}
485
486static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
487{
488 apic_set_reg(apic, APIC_TASKPRI, tpr);
489 apic_update_ppr(apic);
490}
491
492int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
493{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200494 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300495}
496
497int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
498{
499 int result = 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300500 u32 logical_id;
501
502 if (apic_x2apic_mode(apic)) {
Gleb Natapovc48f1492012-08-05 15:58:33 +0300503 logical_id = kvm_apic_get_reg(apic, APIC_LDR);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300504 return logical_id & mda;
505 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300506
Gleb Natapovc48f1492012-08-05 15:58:33 +0300507 logical_id = GET_APIC_LOGICAL_ID(kvm_apic_get_reg(apic, APIC_LDR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300508
Gleb Natapovc48f1492012-08-05 15:58:33 +0300509 switch (kvm_apic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300510 case APIC_DFR_FLAT:
511 if (logical_id & mda)
512 result = 1;
513 break;
514 case APIC_DFR_CLUSTER:
515 if (((logical_id >> 4) == (mda >> 0x4))
516 && (logical_id & mda & 0xf))
517 result = 1;
518 break;
519 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200520 apic_debug("Bad DFR vcpu %d: %08x\n",
Gleb Natapovc48f1492012-08-05 15:58:33 +0300521 apic->vcpu->vcpu_id, kvm_apic_get_reg(apic, APIC_DFR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300522 break;
523 }
524
525 return result;
526}
527
Gleb Natapov343f94f2009-03-05 16:34:54 +0200528int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300529 int short_hand, int dest, int dest_mode)
530{
531 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800532 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300533
534 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200535 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300536 target, source, dest, dest_mode, short_hand);
537
Zachary Amsdenbd371392010-06-14 11:42:15 -1000538 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300539 switch (short_hand) {
540 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200541 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300542 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200543 result = kvm_apic_match_physical_addr(target, dest);
544 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300545 /* Logical mode. */
546 result = kvm_apic_match_logical_addr(target, dest);
547 break;
548 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200549 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300550 break;
551 case APIC_DEST_ALLINC:
552 result = 1;
553 break;
554 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200555 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300556 break;
557 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200558 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
559 short_hand);
Eddie Dong97222cc2007-09-12 10:58:04 +0300560 break;
561 }
562
563 return result;
564}
565
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300566bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
567 struct kvm_lapic_irq *irq, int *r)
568{
569 struct kvm_apic_map *map;
570 unsigned long bitmap = 1;
571 struct kvm_lapic **dst;
572 int i;
573 bool ret = false;
574
575 *r = -1;
576
577 if (irq->shorthand == APIC_DEST_SELF) {
578 *r = kvm_apic_set_irq(src->vcpu, irq);
579 return true;
580 }
581
582 if (irq->shorthand)
583 return false;
584
585 rcu_read_lock();
586 map = rcu_dereference(kvm->arch.apic_map);
587
588 if (!map)
589 goto out;
590
591 if (irq->dest_mode == 0) { /* physical mode */
592 if (irq->delivery_mode == APIC_DM_LOWEST ||
593 irq->dest_id == 0xff)
594 goto out;
595 dst = &map->phys_map[irq->dest_id & 0xff];
596 } else {
597 u32 mda = irq->dest_id << (32 - map->ldr_bits);
598
599 dst = map->logical_map[apic_cluster_id(map, mda)];
600
601 bitmap = apic_logical_id(map, mda);
602
603 if (irq->delivery_mode == APIC_DM_LOWEST) {
604 int l = -1;
605 for_each_set_bit(i, &bitmap, 16) {
606 if (!dst[i])
607 continue;
608 if (l < 0)
609 l = i;
610 else if (kvm_apic_compare_prio(dst[i]->vcpu, dst[l]->vcpu) < 0)
611 l = i;
612 }
613
614 bitmap = (l >= 0) ? 1 << l : 0;
615 }
616 }
617
618 for_each_set_bit(i, &bitmap, 16) {
619 if (!dst[i])
620 continue;
621 if (*r < 0)
622 *r = 0;
623 *r += kvm_apic_set_irq(dst[i]->vcpu, irq);
624 }
625
626 ret = true;
627out:
628 rcu_read_unlock();
629 return ret;
630}
631
Eddie Dong97222cc2007-09-12 10:58:04 +0300632/*
633 * Add a pending IRQ into lapic.
634 * Return 1 if successfully added and 0 if discarded.
635 */
636static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
637 int vector, int level, int trig_mode)
638{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200639 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300640 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300641
642 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300643 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200644 vcpu->arch.apic_arb_prio++;
645 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300646 /* FIXME add logic for vcpu on reset */
647 if (unlikely(!apic_enabled(apic)))
648 break;
649
Avi Kivitya5d36f82009-12-29 12:42:16 +0200650 if (trig_mode) {
651 apic_debug("level trig mode for vector %d", vector);
652 apic_set_vector(vector, apic->regs + APIC_TMR);
653 } else
654 apic_clear_vector(vector, apic->regs + APIC_TMR);
655
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200656 result = !apic_test_and_set_irr(vector, apic);
Gleb Natapov1000ff82009-07-07 16:00:57 +0300657 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
Gleb Natapov4da74892009-08-27 16:25:04 +0300658 trig_mode, vector, !result);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200659 if (!result) {
660 if (trig_mode)
661 apic_debug("level trig mode repeatedly for "
662 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300663 break;
664 }
665
Avi Kivity3842d132010-07-27 12:30:24 +0300666 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300667 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300668 break;
669
670 case APIC_DM_REMRD:
Jan Kiszka7712de82011-09-12 11:25:51 +0200671 apic_debug("Ignoring delivery mode 3\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300672 break;
673
674 case APIC_DM_SMI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200675 apic_debug("Ignoring guest SMI\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300676 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800677
Eddie Dong97222cc2007-09-12 10:58:04 +0300678 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200679 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800680 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200681 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300682 break;
683
684 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +0100685 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200686 result = 1;
Jan Kiszka66450a22013-03-13 12:42:34 +0100687 /* assumes that there are only KVM_APIC_INIT/SIPI */
688 apic->pending_events = (1UL << KVM_APIC_INIT);
689 /* make sure pending_events is visible before sending
690 * the request */
691 smp_wmb();
Avi Kivity3842d132010-07-27 12:30:24 +0300692 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300693 kvm_vcpu_kick(vcpu);
694 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200695 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
696 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300697 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300698 break;
699
700 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200701 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
702 vcpu->vcpu_id, vector);
Jan Kiszka66450a22013-03-13 12:42:34 +0100703 result = 1;
704 apic->sipi_vector = vector;
705 /* make sure sipi_vector is visible for the receiver */
706 smp_wmb();
707 set_bit(KVM_APIC_SIPI, &apic->pending_events);
708 kvm_make_request(KVM_REQ_EVENT, vcpu);
709 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300710 break;
711
Jan Kiszka23930f92008-09-26 09:30:52 +0200712 case APIC_DM_EXTINT:
713 /*
714 * Should only be called by kvm_apic_local_deliver() with LVT0,
715 * before NMI watchdog was enabled. Already handled by
716 * kvm_apic_accept_pic_intr().
717 */
718 break;
719
Eddie Dong97222cc2007-09-12 10:58:04 +0300720 default:
721 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
722 delivery_mode);
723 break;
724 }
725 return result;
726}
727
Gleb Natapove1035712009-03-05 16:34:59 +0200728int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300729{
Gleb Natapove1035712009-03-05 16:34:59 +0200730 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800731}
732
Yang Zhangc7c9c562013-01-25 10:18:51 +0800733static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
734{
735 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
736 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
737 int trigger_mode;
738 if (apic_test_vector(vector, apic->regs + APIC_TMR))
739 trigger_mode = IOAPIC_LEVEL_TRIG;
740 else
741 trigger_mode = IOAPIC_EDGE_TRIG;
Yang Zhang1fcc7892013-04-11 19:21:35 +0800742 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800743 }
744}
745
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300746static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300747{
748 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300749
750 trace_kvm_eoi(apic, vector);
751
Eddie Dong97222cc2007-09-12 10:58:04 +0300752 /*
753 * Not every write EOI will has corresponding ISR,
754 * one example is when Kernel check timer on setup_IO_APIC
755 */
756 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300757 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300758
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300759 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300760 apic_update_ppr(apic);
761
Yang Zhangc7c9c562013-01-25 10:18:51 +0800762 kvm_ioapic_send_eoi(apic, vector);
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
Yang Zhangc7c9c562013-01-25 10:18:51 +0800767/*
768 * this interface assumes a trap-like exit, which has already finished
769 * desired side effect including vISR and vPPR update.
770 */
771void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
772{
773 struct kvm_lapic *apic = vcpu->arch.apic;
774
775 trace_kvm_eoi(apic, vector);
776
777 kvm_ioapic_send_eoi(apic, vector);
778 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
779}
780EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
781
Eddie Dong97222cc2007-09-12 10:58:04 +0300782static void apic_send_ipi(struct kvm_lapic *apic)
783{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300784 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR);
785 u32 icr_high = kvm_apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200786 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300787
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200788 irq.vector = icr_low & APIC_VECTOR_MASK;
789 irq.delivery_mode = icr_low & APIC_MODE_MASK;
790 irq.dest_mode = icr_low & APIC_DEST_MASK;
791 irq.level = icr_low & APIC_INT_ASSERT;
792 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
793 irq.shorthand = icr_low & APIC_SHORT_MASK;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300794 if (apic_x2apic_mode(apic))
795 irq.dest_id = icr_high;
796 else
797 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300798
Gleb Natapov1000ff82009-07-07 16:00:57 +0300799 trace_kvm_apic_ipi(icr_low, irq.dest_id);
800
Eddie Dong97222cc2007-09-12 10:58:04 +0300801 apic_debug("icr_high 0x%x, icr_low 0x%x, "
802 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
803 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400804 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200805 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
806 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300807
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200808 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Eddie Dong97222cc2007-09-12 10:58:04 +0300809}
810
811static u32 apic_get_tmcct(struct kvm_lapic *apic)
812{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200813 ktime_t remaining;
814 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200815 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300816
817 ASSERT(apic != NULL);
818
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200819 /* if initial count is 0, current count should also be 0 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300820 if (kvm_apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200821 return 0;
822
Marcelo Tosattiace15462009-10-08 10:55:03 -0300823 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200824 if (ktime_to_ns(remaining) < 0)
825 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300826
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300827 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
828 tmcct = div64_u64(ns,
829 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300830
831 return tmcct;
832}
833
Avi Kivityb209749f2007-10-22 16:50:39 +0200834static void __report_tpr_access(struct kvm_lapic *apic, bool write)
835{
836 struct kvm_vcpu *vcpu = apic->vcpu;
837 struct kvm_run *run = vcpu->run;
838
Avi Kivitya8eeb042010-05-10 12:34:53 +0300839 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300840 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200841 run->tpr_access.is_write = write;
842}
843
844static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
845{
846 if (apic->vcpu->arch.tpr_access_reporting)
847 __report_tpr_access(apic, write);
848}
849
Eddie Dong97222cc2007-09-12 10:58:04 +0300850static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
851{
852 u32 val = 0;
853
854 if (offset >= LAPIC_MMIO_LENGTH)
855 return 0;
856
857 switch (offset) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300858 case APIC_ID:
859 if (apic_x2apic_mode(apic))
860 val = kvm_apic_id(apic);
861 else
862 val = kvm_apic_id(apic) << 24;
863 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300864 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200865 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300866 break;
867
868 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800869 if (apic_lvtt_tscdeadline(apic))
870 return 0;
871
Eddie Dong97222cc2007-09-12 10:58:04 +0300872 val = apic_get_tmcct(apic);
873 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +0300874 case APIC_PROCPRI:
875 apic_update_ppr(apic);
Gleb Natapovc48f1492012-08-05 15:58:33 +0300876 val = kvm_apic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +0300877 break;
Avi Kivityb209749f2007-10-22 16:50:39 +0200878 case APIC_TASKPRI:
879 report_tpr_access(apic, false);
880 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300881 default:
Gleb Natapovc48f1492012-08-05 15:58:33 +0300882 val = kvm_apic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +0300883 break;
884 }
885
886 return val;
887}
888
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400889static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
890{
891 return container_of(dev, struct kvm_lapic, dev);
892}
893
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300894static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
895 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300896{
Eddie Dong97222cc2007-09-12 10:58:04 +0300897 unsigned char alignment = offset & 0xf;
898 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800899 /* this bitmask has a bit cleared for each reserved register */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300900 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300901
902 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300903 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
904 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300905 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300906 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300907
908 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300909 apic_debug("KVM_APIC_READ: read reserved register %x\n",
910 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300911 return 1;
912 }
913
Eddie Dong97222cc2007-09-12 10:58:04 +0300914 result = __apic_read(apic, offset & ~0xf);
915
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300916 trace_kvm_apic_read(offset, result);
917
Eddie Dong97222cc2007-09-12 10:58:04 +0300918 switch (len) {
919 case 1:
920 case 2:
921 case 4:
922 memcpy(data, (char *)&result + alignment, len);
923 break;
924 default:
925 printk(KERN_ERR "Local APIC read with len = %x, "
926 "should be 1,2, or 4 instead\n", len);
927 break;
928 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300929 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300930}
931
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300932static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
933{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300934 return kvm_apic_hw_enabled(apic) &&
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300935 addr >= apic->base_address &&
936 addr < apic->base_address + LAPIC_MMIO_LENGTH;
937}
938
939static int apic_mmio_read(struct kvm_io_device *this,
940 gpa_t address, int len, void *data)
941{
942 struct kvm_lapic *apic = to_lapic(this);
943 u32 offset = address - apic->base_address;
944
945 if (!apic_mmio_in_range(apic, address))
946 return -EOPNOTSUPP;
947
948 apic_reg_read(apic, offset, len, data);
949
950 return 0;
951}
952
Eddie Dong97222cc2007-09-12 10:58:04 +0300953static void update_divide_count(struct kvm_lapic *apic)
954{
955 u32 tmp1, tmp2, tdcr;
956
Gleb Natapovc48f1492012-08-05 15:58:33 +0300957 tdcr = kvm_apic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300958 tmp1 = tdcr & 0xf;
959 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300960 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300961
962 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400963 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300964}
965
966static void start_apic_timer(struct kvm_lapic *apic)
967{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800968 ktime_t now;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300969 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200970
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800971 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800972 /* lapic timer in oneshot or periodic mode */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800973 now = apic->lapic_timer.timer.base->get_time();
Gleb Natapovc48f1492012-08-05 15:58:33 +0300974 apic->lapic_timer.period = (u64)kvm_apic_get_reg(apic, APIC_TMICT)
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800975 * APIC_BUS_CYCLE_NS * apic->divide_count;
Jan Kiszka9bc57912011-09-12 14:10:22 +0200976
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800977 if (!apic->lapic_timer.period)
978 return;
979 /*
980 * Do not allow the guest to program periodic timers with small
981 * interval, since the hrtimers are not throttled by the host
982 * scheduler.
983 */
984 if (apic_lvtt_period(apic)) {
985 s64 min_period = min_timer_period_us * 1000LL;
986
987 if (apic->lapic_timer.period < min_period) {
988 pr_info_ratelimited(
989 "kvm: vcpu %i: requested %lld ns "
990 "lapic timer period limited to %lld ns\n",
991 apic->vcpu->vcpu_id,
992 apic->lapic_timer.period, min_period);
993 apic->lapic_timer.period = min_period;
994 }
Jan Kiszka9bc57912011-09-12 14:10:22 +0200995 }
Avi Kivity0b975a32008-02-24 14:37:50 +0200996
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800997 hrtimer_start(&apic->lapic_timer.timer,
998 ktime_add_ns(now, apic->lapic_timer.period),
999 HRTIMER_MODE_ABS);
Eddie Dong97222cc2007-09-12 10:58:04 +03001000
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001001 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
Eddie Dong97222cc2007-09-12 10:58:04 +03001002 PRIx64 ", "
1003 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001004 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001005 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
Gleb Natapovc48f1492012-08-05 15:58:33 +03001006 kvm_apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001007 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +03001008 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001009 apic->lapic_timer.period)));
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001010 } else if (apic_lvtt_tscdeadline(apic)) {
1011 /* lapic timer in tsc deadline mode */
1012 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
1013 u64 ns = 0;
1014 struct kvm_vcpu *vcpu = apic->vcpu;
Zachary Amsdencc578282012-02-03 15:43:50 -02001015 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001016 unsigned long flags;
1017
1018 if (unlikely(!tscdeadline || !this_tsc_khz))
1019 return;
1020
1021 local_irq_save(flags);
1022
1023 now = apic->lapic_timer.timer.base->get_time();
Marcelo Tosatti886b4702012-11-27 23:28:58 -02001024 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu, native_read_tsc());
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001025 if (likely(tscdeadline > guest_tsc)) {
1026 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1027 do_div(ns, this_tsc_khz);
1028 }
1029 hrtimer_start(&apic->lapic_timer.timer,
1030 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
1031
1032 local_irq_restore(flags);
1033 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001034}
1035
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001036static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1037{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001038 int nmi_wd_enabled = apic_lvt_nmi_mode(kvm_apic_get_reg(apic, APIC_LVT0));
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001039
1040 if (apic_lvt_nmi_mode(lvt0_val)) {
1041 if (!nmi_wd_enabled) {
1042 apic_debug("Receive NMI setting on APIC_LVT0 "
1043 "for cpu %d\n", apic->vcpu->vcpu_id);
1044 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
1045 }
1046 } else if (nmi_wd_enabled)
1047 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
1048}
1049
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001050static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03001051{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001052 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001053
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001054 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001055
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001056 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001057 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001058 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001059 kvm_apic_set_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001060 else
1061 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001062 break;
1063
1064 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02001065 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03001066 apic_set_tpr(apic, val & 0xff);
1067 break;
1068
1069 case APIC_EOI:
1070 apic_set_eoi(apic);
1071 break;
1072
1073 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001074 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001075 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001076 else
1077 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001078 break;
1079
1080 case APIC_DFR:
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001081 if (!apic_x2apic_mode(apic)) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001082 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001083 recalculate_apic_map(apic->vcpu->kvm);
1084 } else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001085 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001086 break;
1087
Gleb Natapovfc61b802009-07-05 17:39:35 +03001088 case APIC_SPIV: {
1089 u32 mask = 0x3ff;
Gleb Natapovc48f1492012-08-05 15:58:33 +03001090 if (kvm_apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03001091 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001092 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03001093 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1094 int i;
1095 u32 lvt_val;
1096
1097 for (i = 0; i < APIC_LVT_NUM; i++) {
Gleb Natapovc48f1492012-08-05 15:58:33 +03001098 lvt_val = kvm_apic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03001099 APIC_LVTT + 0x10 * i);
1100 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
1101 lvt_val | APIC_LVT_MASKED);
1102 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001103 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001104
1105 }
1106 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03001107 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001108 case APIC_ICR:
1109 /* No delay here, so we always clear the pending bit */
1110 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
1111 apic_send_ipi(apic);
1112 break;
1113
1114 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001115 if (!apic_x2apic_mode(apic))
1116 val &= 0xff000000;
1117 apic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001118 break;
1119
Jan Kiszka23930f92008-09-26 09:30:52 +02001120 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001121 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001122 case APIC_LVTTHMR:
1123 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03001124 case APIC_LVT1:
1125 case APIC_LVTERR:
1126 /* TODO: Check vector */
Gleb Natapovc48f1492012-08-05 15:58:33 +03001127 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001128 val |= APIC_LVT_MASKED;
1129
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001130 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
1131 apic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001132
1133 break;
1134
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001135 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03001136 if ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001137 apic->lapic_timer.timer_mode_mask) !=
1138 (val & apic->lapic_timer.timer_mode_mask))
1139 hrtimer_cancel(&apic->lapic_timer.timer);
1140
Gleb Natapovc48f1492012-08-05 15:58:33 +03001141 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001142 val |= APIC_LVT_MASKED;
1143 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
1144 apic_set_reg(apic, APIC_LVTT, val);
1145 break;
1146
Eddie Dong97222cc2007-09-12 10:58:04 +03001147 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001148 if (apic_lvtt_tscdeadline(apic))
1149 break;
1150
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001151 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001152 apic_set_reg(apic, APIC_TMICT, val);
1153 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001154 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001155
1156 case APIC_TDCR:
1157 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +02001158 apic_debug("KVM_WRITE:TDCR %x\n", val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001159 apic_set_reg(apic, APIC_TDCR, val);
1160 update_divide_count(apic);
1161 break;
1162
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001163 case APIC_ESR:
1164 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +02001165 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001166 ret = 1;
1167 }
1168 break;
1169
1170 case APIC_SELF_IPI:
1171 if (apic_x2apic_mode(apic)) {
1172 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1173 } else
1174 ret = 1;
1175 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001176 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001177 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001178 break;
1179 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001180 if (ret)
1181 apic_debug("Local APIC Write to read-only register %x\n", reg);
1182 return ret;
1183}
1184
1185static int apic_mmio_write(struct kvm_io_device *this,
1186 gpa_t address, int len, const void *data)
1187{
1188 struct kvm_lapic *apic = to_lapic(this);
1189 unsigned int offset = address - apic->base_address;
1190 u32 val;
1191
1192 if (!apic_mmio_in_range(apic, address))
1193 return -EOPNOTSUPP;
1194
1195 /*
1196 * APIC register must be aligned on 128-bits boundary.
1197 * 32/64/128 bits registers must be accessed thru 32 bits.
1198 * Refer SDM 8.4.1
1199 */
1200 if (len != 4 || (offset & 0xf)) {
1201 /* Don't shout loud, $infamous_os would cause only noise. */
1202 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
Sheng Yang756975b2009-07-06 11:05:39 +08001203 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001204 }
1205
1206 val = *(u32*)data;
1207
1208 /* too common printing */
1209 if (offset != APIC_EOI)
1210 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1211 "0x%x\n", __func__, offset, len, val);
1212
1213 apic_reg_write(apic, offset & 0xff0, val);
1214
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001215 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001216}
1217
Kevin Tian58fbbf22011-08-30 13:56:17 +03001218void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1219{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001220 if (kvm_vcpu_has_lapic(vcpu))
Kevin Tian58fbbf22011-08-30 13:56:17 +03001221 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1222}
1223EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1224
Yang Zhang83d4c282013-01-25 10:18:49 +08001225/* emulate APIC access in a trap manner */
1226void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
1227{
1228 u32 val = 0;
1229
1230 /* hw has done the conditional check and inst decode */
1231 offset &= 0xff0;
1232
1233 apic_reg_read(vcpu->arch.apic, offset, 4, &val);
1234
1235 /* TODO: optimize to just emulate side effect w/o one more write */
1236 apic_reg_write(vcpu->arch.apic, offset, val);
1237}
1238EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
1239
Rusty Russelld5894442007-10-08 10:48:30 +10001240void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001241{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001242 struct kvm_lapic *apic = vcpu->arch.apic;
1243
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001244 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001245 return;
1246
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001247 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001248
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001249 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1250 static_key_slow_dec_deferred(&apic_hw_disabled);
1251
Gleb Natapovc48f1492012-08-05 15:58:33 +03001252 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED))
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001253 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03001254
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001255 if (apic->regs)
1256 free_page((unsigned long)apic->regs);
1257
1258 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001259}
1260
1261/*
1262 *----------------------------------------------------------------------
1263 * LAPIC interface
1264 *----------------------------------------------------------------------
1265 */
1266
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001267u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1268{
1269 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001270
Gleb Natapovc48f1492012-08-05 15:58:33 +03001271 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001272 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001273 return 0;
1274
1275 return apic->lapic_timer.tscdeadline;
1276}
1277
1278void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1279{
1280 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001281
Gleb Natapovc48f1492012-08-05 15:58:33 +03001282 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001283 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001284 return;
1285
1286 hrtimer_cancel(&apic->lapic_timer.timer);
1287 apic->lapic_timer.tscdeadline = data;
1288 start_apic_timer(apic);
1289}
1290
Eddie Dong97222cc2007-09-12 10:58:04 +03001291void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1292{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001293 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001294
Gleb Natapovc48f1492012-08-05 15:58:33 +03001295 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001296 return;
Gleb Natapov54e98182012-08-05 15:58:32 +03001297
Avi Kivityb93463a2007-10-25 16:52:32 +02001298 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Gleb Natapovc48f1492012-08-05 15:58:33 +03001299 | (kvm_apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03001300}
1301
1302u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1303{
Eddie Dong97222cc2007-09-12 10:58:04 +03001304 u64 tpr;
1305
Gleb Natapovc48f1492012-08-05 15:58:33 +03001306 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001307 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +03001308
Gleb Natapovc48f1492012-08-05 15:58:33 +03001309 tpr = (u64) kvm_apic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03001310
1311 return (tpr & 0xf0) >> 4;
1312}
1313
1314void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1315{
Yang Zhang8d146952013-01-25 10:18:50 +08001316 u64 old_value = vcpu->arch.apic_base;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001317 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001318
1319 if (!apic) {
1320 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001321 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +03001322 return;
1323 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001324
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001325 /* update jump label if enable bit changes */
1326 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1327 if (value & MSR_IA32_APICBASE_ENABLE)
1328 static_key_slow_dec_deferred(&apic_hw_disabled);
1329 else
1330 static_key_slow_inc(&apic_hw_disabled.key);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001331 recalculate_apic_map(vcpu->kvm);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001332 }
1333
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001334 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001335 value &= ~MSR_IA32_APICBASE_BSP;
1336
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001337 vcpu->arch.apic_base = value;
Yang Zhang8d146952013-01-25 10:18:50 +08001338 if ((old_value ^ value) & X2APIC_ENABLE) {
1339 if (value & X2APIC_ENABLE) {
1340 u32 id = kvm_apic_id(apic);
1341 u32 ldr = ((id >> 4) << 16) | (1 << (id & 0xf));
1342 kvm_apic_set_ldr(apic, ldr);
1343 kvm_x86_ops->set_virtual_x2apic_mode(vcpu, true);
1344 } else
1345 kvm_x86_ops->set_virtual_x2apic_mode(vcpu, false);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001346 }
Yang Zhang8d146952013-01-25 10:18:50 +08001347
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001348 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03001349 MSR_IA32_APICBASE_BASE;
1350
1351 /* with FSB delivery interrupt, we can restart APIC functionality */
1352 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001353 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001354
1355}
1356
He, Qingc5ec1532007-09-03 17:07:41 +03001357void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001358{
1359 struct kvm_lapic *apic;
1360 int i;
1361
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001362 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +03001363
1364 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001365 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001366 ASSERT(apic != NULL);
1367
1368 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001369 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001370
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001371 kvm_apic_set_id(apic, vcpu->vcpu_id);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001372 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001373
1374 for (i = 0; i < APIC_LVT_NUM; i++)
1375 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +08001376 apic_set_reg(apic, APIC_LVT0,
1377 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +03001378
1379 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001380 apic_set_spiv(apic, 0xff);
Eddie Dong97222cc2007-09-12 10:58:04 +03001381 apic_set_reg(apic, APIC_TASKPRI, 0);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001382 kvm_apic_set_ldr(apic, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001383 apic_set_reg(apic, APIC_ESR, 0);
1384 apic_set_reg(apic, APIC_ICR, 0);
1385 apic_set_reg(apic, APIC_ICR2, 0);
1386 apic_set_reg(apic, APIC_TDCR, 0);
1387 apic_set_reg(apic, APIC_TMICT, 0);
1388 for (i = 0; i < 8; i++) {
1389 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1390 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1391 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1392 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08001393 apic->irr_pending = kvm_apic_vid_enabled(vcpu->kvm);
1394 apic->isr_count = kvm_apic_vid_enabled(vcpu->kvm);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001395 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02001396 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001397 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001398 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001399 kvm_lapic_set_base(vcpu,
1400 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001401 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001402 apic_update_ppr(apic);
1403
Gleb Natapove1035712009-03-05 16:34:59 +02001404 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03001405 vcpu->arch.apic_attention = 0;
Gleb Natapove1035712009-03-05 16:34:59 +02001406
Eddie Dong97222cc2007-09-12 10:58:04 +03001407 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001408 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001409 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001410 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001411}
1412
Eddie Dong97222cc2007-09-12 10:58:04 +03001413/*
1414 *----------------------------------------------------------------------
1415 * timer interface
1416 *----------------------------------------------------------------------
1417 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001418
Avi Kivity2a6eac92012-07-26 18:01:51 +03001419static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001420{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001421 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001422}
1423
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001424int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1425{
Gleb Natapov54e98182012-08-05 15:58:32 +03001426 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001427
Gleb Natapovc48f1492012-08-05 15:58:33 +03001428 if (kvm_vcpu_has_lapic(vcpu) && apic_enabled(apic) &&
Gleb Natapov54e98182012-08-05 15:58:32 +03001429 apic_lvt_enabled(apic, APIC_LVTT))
1430 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001431
1432 return 0;
1433}
1434
Avi Kivity89342082011-11-10 14:57:21 +02001435int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001436{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001437 u32 reg = kvm_apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001438 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001439
Gleb Natapovc48f1492012-08-05 15:58:33 +03001440 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001441 vector = reg & APIC_VECTOR_MASK;
1442 mode = reg & APIC_MODE_MASK;
1443 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1444 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1445 }
1446 return 0;
1447}
1448
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001449void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001450{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001451 struct kvm_lapic *apic = vcpu->arch.apic;
1452
1453 if (apic)
1454 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001455}
1456
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001457static const struct kvm_io_device_ops apic_mmio_ops = {
1458 .read = apic_mmio_read,
1459 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001460};
1461
Avi Kivitye9d90d42012-07-26 18:01:50 +03001462static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1463{
1464 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03001465 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1466 struct kvm_vcpu *vcpu = apic->vcpu;
Avi Kivitye9d90d42012-07-26 18:01:50 +03001467 wait_queue_head_t *q = &vcpu->wq;
1468
1469 /*
1470 * There is a race window between reading and incrementing, but we do
1471 * not care about potentially losing timer events in the !reinject
1472 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1473 * in vcpu_enter_guest.
1474 */
Avi Kivity2a6eac92012-07-26 18:01:51 +03001475 if (!atomic_read(&ktimer->pending)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001476 atomic_inc(&ktimer->pending);
1477 /* FIXME: this code should not know anything about vcpus */
1478 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1479 }
1480
1481 if (waitqueue_active(q))
1482 wake_up_interruptible(q);
1483
Avi Kivity2a6eac92012-07-26 18:01:51 +03001484 if (lapic_is_periodic(apic)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001485 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1486 return HRTIMER_RESTART;
1487 } else
1488 return HRTIMER_NORESTART;
1489}
1490
Eddie Dong97222cc2007-09-12 10:58:04 +03001491int kvm_create_lapic(struct kvm_vcpu *vcpu)
1492{
1493 struct kvm_lapic *apic;
1494
1495 ASSERT(vcpu != NULL);
1496 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1497
1498 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1499 if (!apic)
1500 goto nomem;
1501
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001502 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001503
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001504 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1505 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001506 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1507 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001508 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001509 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001510 apic->vcpu = vcpu;
1511
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001512 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1513 HRTIMER_MODE_ABS);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001514 apic->lapic_timer.timer.function = apic_timer_fn;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001515
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001516 /*
1517 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1518 * thinking that APIC satet has changed.
1519 */
1520 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapov6aed64a2012-08-05 15:58:28 +03001521 kvm_lapic_set_base(vcpu,
1522 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
Eddie Dong97222cc2007-09-12 10:58:04 +03001523
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001524 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
He, Qingc5ec1532007-09-03 17:07:41 +03001525 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001526 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001527
1528 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001529nomem_free_apic:
1530 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001531nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001532 return -ENOMEM;
1533}
Eddie Dong97222cc2007-09-12 10:58:04 +03001534
1535int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1536{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001537 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001538 int highest_irr;
1539
Gleb Natapovc48f1492012-08-05 15:58:33 +03001540 if (!kvm_vcpu_has_lapic(vcpu) || !apic_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001541 return -1;
1542
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001543 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001544 highest_irr = apic_find_highest_irr(apic);
1545 if ((highest_irr == -1) ||
Gleb Natapovc48f1492012-08-05 15:58:33 +03001546 ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI)))
Eddie Dong97222cc2007-09-12 10:58:04 +03001547 return -1;
1548 return highest_irr;
1549}
1550
Qing He40487c62007-09-17 14:47:13 +08001551int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1552{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001553 u32 lvt0 = kvm_apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001554 int r = 0;
1555
Gleb Natapovc48f1492012-08-05 15:58:33 +03001556 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001557 r = 1;
1558 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1559 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1560 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001561 return r;
1562}
1563
Eddie Dong1b9778d2007-09-03 16:56:58 +03001564void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1565{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001566 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001567
Gleb Natapovc48f1492012-08-05 15:58:33 +03001568 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03001569 return;
1570
1571 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001572 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001573 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001574 }
1575}
1576
Eddie Dong97222cc2007-09-12 10:58:04 +03001577int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1578{
1579 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001580 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001581
1582 if (vector == -1)
1583 return -1;
1584
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001585 apic_set_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001586 apic_update_ppr(apic);
1587 apic_clear_irr(vector, apic);
1588 return vector;
1589}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001590
Gleb Natapov64eb0622012-08-08 15:24:36 +03001591void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
1592 struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001593{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001594 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001595
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001596 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03001597 /* set SPIV separately to get count of SW disabled APICs right */
1598 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
1599 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001600 /* call kvm_apic_set_id() to put apic into apic_map */
1601 kvm_apic_set_id(apic, kvm_apic_id(apic));
Gleb Natapovfc61b802009-07-05 17:39:35 +03001602 kvm_apic_set_version(vcpu);
1603
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001604 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001605 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001606 update_divide_count(apic);
1607 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001608 apic->irr_pending = true;
Yang Zhangc7c9c562013-01-25 10:18:51 +08001609 apic->isr_count = kvm_apic_vid_enabled(vcpu->kvm) ?
1610 1 : count_vectors(apic->regs + APIC_ISR);
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001611 apic->highest_isr_cache = -1;
Yang Zhangc7c9c562013-01-25 10:18:51 +08001612 kvm_x86_ops->hwapic_isr_update(vcpu->kvm, apic_find_highest_isr(apic));
Avi Kivity3842d132010-07-27 12:30:24 +03001613 kvm_make_request(KVM_REQ_EVENT, vcpu);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001614}
Eddie Donga3d7f852007-09-03 16:15:12 +03001615
Avi Kivity2f52d582008-01-16 12:49:30 +02001616void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001617{
Eddie Donga3d7f852007-09-03 16:15:12 +03001618 struct hrtimer *timer;
1619
Gleb Natapovc48f1492012-08-05 15:58:33 +03001620 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03001621 return;
1622
Gleb Natapov54e98182012-08-05 15:58:32 +03001623 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001624 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d522008-09-01 14:55:57 -07001625 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001626}
Avi Kivityb93463a2007-10-25 16:52:32 +02001627
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001628/*
1629 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1630 *
1631 * Detect whether guest triggered PV EOI since the
1632 * last entry. If yes, set EOI on guests's behalf.
1633 * Clear PV EOI in guest memory in any case.
1634 */
1635static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1636 struct kvm_lapic *apic)
1637{
1638 bool pending;
1639 int vector;
1640 /*
1641 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1642 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1643 *
1644 * KVM_APIC_PV_EOI_PENDING is unset:
1645 * -> host disabled PV EOI.
1646 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1647 * -> host enabled PV EOI, guest did not execute EOI yet.
1648 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1649 * -> host enabled PV EOI, guest executed EOI.
1650 */
1651 BUG_ON(!pv_eoi_enabled(vcpu));
1652 pending = pv_eoi_get_pending(vcpu);
1653 /*
1654 * Clear pending bit in any case: it will be set again on vmentry.
1655 * While this might not be ideal from performance point of view,
1656 * this makes sure pv eoi is only enabled when we know it's safe.
1657 */
1658 pv_eoi_clr_pending(vcpu);
1659 if (pending)
1660 return;
1661 vector = apic_set_eoi(apic);
1662 trace_kvm_pv_eoi(apic, vector);
1663}
1664
Avi Kivityb93463a2007-10-25 16:52:32 +02001665void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1666{
1667 u32 data;
1668 void *vapic;
1669
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001670 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1671 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1672
Gleb Natapov41383772012-04-19 14:06:29 +03001673 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001674 return;
1675
Cong Wang8fd75e12011-11-25 23:14:17 +08001676 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001677 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
Cong Wang8fd75e12011-11-25 23:14:17 +08001678 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001679
1680 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1681}
1682
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001683/*
1684 * apic_sync_pv_eoi_to_guest - called before vmentry
1685 *
1686 * Detect whether it's safe to enable PV EOI and
1687 * if yes do so.
1688 */
1689static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1690 struct kvm_lapic *apic)
1691{
1692 if (!pv_eoi_enabled(vcpu) ||
1693 /* IRR set or many bits in ISR: could be nested. */
1694 apic->irr_pending ||
1695 /* Cache not set: could be safe but we don't bother. */
1696 apic->highest_isr_cache == -1 ||
1697 /* Need EOI to update ioapic. */
1698 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1699 /*
1700 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1701 * so we need not do anything here.
1702 */
1703 return;
1704 }
1705
1706 pv_eoi_set_pending(apic->vcpu);
1707}
1708
Avi Kivityb93463a2007-10-25 16:52:32 +02001709void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1710{
1711 u32 data, tpr;
1712 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001713 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02001714 void *vapic;
1715
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001716 apic_sync_pv_eoi_to_guest(vcpu, apic);
1717
Gleb Natapov41383772012-04-19 14:06:29 +03001718 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001719 return;
1720
Gleb Natapovc48f1492012-08-05 15:58:33 +03001721 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02001722 max_irr = apic_find_highest_irr(apic);
1723 if (max_irr < 0)
1724 max_irr = 0;
1725 max_isr = apic_find_highest_isr(apic);
1726 if (max_isr < 0)
1727 max_isr = 0;
1728 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1729
Cong Wang8fd75e12011-11-25 23:14:17 +08001730 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001731 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
Cong Wang8fd75e12011-11-25 23:14:17 +08001732 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001733}
1734
1735void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1736{
Avi Kivityb93463a2007-10-25 16:52:32 +02001737 vcpu->arch.apic->vapic_addr = vapic_addr;
Gleb Natapov41383772012-04-19 14:06:29 +03001738 if (vapic_addr)
1739 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1740 else
1741 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Avi Kivityb93463a2007-10-25 16:52:32 +02001742}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001743
1744int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1745{
1746 struct kvm_lapic *apic = vcpu->arch.apic;
1747 u32 reg = (msr - APIC_BASE_MSR) << 4;
1748
1749 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1750 return 1;
1751
1752 /* if this is ICR write vector before command */
1753 if (msr == 0x830)
1754 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1755 return apic_reg_write(apic, reg, (u32)data);
1756}
1757
1758int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1759{
1760 struct kvm_lapic *apic = vcpu->arch.apic;
1761 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1762
1763 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1764 return 1;
1765
1766 if (apic_reg_read(apic, reg, 4, &low))
1767 return 1;
1768 if (msr == 0x830)
1769 apic_reg_read(apic, APIC_ICR2, 4, &high);
1770
1771 *data = (((u64)high) << 32) | low;
1772
1773 return 0;
1774}
Gleb Natapov10388a02010-01-17 15:51:23 +02001775
1776int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1777{
1778 struct kvm_lapic *apic = vcpu->arch.apic;
1779
Gleb Natapovc48f1492012-08-05 15:58:33 +03001780 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001781 return 1;
1782
1783 /* if this is ICR write vector before command */
1784 if (reg == APIC_ICR)
1785 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1786 return apic_reg_write(apic, reg, (u32)data);
1787}
1788
1789int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1790{
1791 struct kvm_lapic *apic = vcpu->arch.apic;
1792 u32 low, high = 0;
1793
Gleb Natapovc48f1492012-08-05 15:58:33 +03001794 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001795 return 1;
1796
1797 if (apic_reg_read(apic, reg, 4, &low))
1798 return 1;
1799 if (reg == APIC_ICR)
1800 apic_reg_read(apic, APIC_ICR2, 4, &high);
1801
1802 *data = (((u64)high) << 32) | low;
1803
1804 return 0;
1805}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001806
1807int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1808{
1809 u64 addr = data & ~KVM_MSR_ENABLED;
1810 if (!IS_ALIGNED(addr, 4))
1811 return 1;
1812
1813 vcpu->arch.pv_eoi.msr_val = data;
1814 if (!pv_eoi_enabled(vcpu))
1815 return 0;
1816 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
1817 addr);
1818}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001819
Jan Kiszka66450a22013-03-13 12:42:34 +01001820void kvm_apic_accept_events(struct kvm_vcpu *vcpu)
1821{
1822 struct kvm_lapic *apic = vcpu->arch.apic;
1823 unsigned int sipi_vector;
1824
1825 if (!kvm_vcpu_has_lapic(vcpu))
1826 return;
1827
1828 if (test_and_clear_bit(KVM_APIC_INIT, &apic->pending_events)) {
1829 kvm_lapic_reset(vcpu);
1830 kvm_vcpu_reset(vcpu);
1831 if (kvm_vcpu_is_bsp(apic->vcpu))
1832 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
1833 else
1834 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
1835 }
1836 if (test_and_clear_bit(KVM_APIC_SIPI, &apic->pending_events) &&
1837 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
1838 /* evaluate pending_events before reading the vector */
1839 smp_rmb();
1840 sipi_vector = apic->sipi_vector;
1841 pr_debug("vcpu %d received sipi with vector # %x\n",
1842 vcpu->vcpu_id, sipi_vector);
1843 kvm_vcpu_deliver_sipi_vector(vcpu, sipi_vector);
1844 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
1845 }
1846}
1847
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001848void kvm_lapic_init(void)
1849{
1850 /* do not patch jump label more than once per second */
1851 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001852 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001853}