blob: 9392f527f107490b9fc8d036f971994c3823b31d [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
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300143static inline int apic_x2apic_mode(struct kvm_lapic *apic)
144{
145 return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
146}
147
Eddie Dong97222cc2007-09-12 10:58:04 +0300148static inline int kvm_apic_id(struct kvm_lapic *apic)
149{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300150 return (kvm_apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
Eddie Dong97222cc2007-09-12 10:58:04 +0300151}
152
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300153static inline u16 apic_cluster_id(struct kvm_apic_map *map, u32 ldr)
154{
155 u16 cid;
156 ldr >>= 32 - map->ldr_bits;
157 cid = (ldr >> map->cid_shift) & map->cid_mask;
158
159 BUG_ON(cid >= ARRAY_SIZE(map->logical_map));
160
161 return cid;
162}
163
164static inline u16 apic_logical_id(struct kvm_apic_map *map, u32 ldr)
165{
166 ldr >>= (32 - map->ldr_bits);
167 return ldr & map->lid_mask;
168}
169
170static void recalculate_apic_map(struct kvm *kvm)
171{
172 struct kvm_apic_map *new, *old = NULL;
173 struct kvm_vcpu *vcpu;
174 int i;
175
176 new = kzalloc(sizeof(struct kvm_apic_map), GFP_KERNEL);
177
178 mutex_lock(&kvm->arch.apic_map_lock);
179
180 if (!new)
181 goto out;
182
183 new->ldr_bits = 8;
184 /* flat mode is default */
185 new->cid_shift = 8;
186 new->cid_mask = 0;
187 new->lid_mask = 0xff;
188
189 kvm_for_each_vcpu(i, vcpu, kvm) {
190 struct kvm_lapic *apic = vcpu->arch.apic;
191 u16 cid, lid;
192 u32 ldr;
193
194 if (!kvm_apic_present(vcpu))
195 continue;
196
197 /*
198 * All APICs have to be configured in the same mode by an OS.
199 * We take advatage of this while building logical id loockup
200 * table. After reset APICs are in xapic/flat mode, so if we
201 * find apic with different setting we assume this is the mode
202 * OS wants all apics to be in; build lookup table accordingly.
203 */
204 if (apic_x2apic_mode(apic)) {
205 new->ldr_bits = 32;
206 new->cid_shift = 16;
207 new->cid_mask = new->lid_mask = 0xffff;
208 } else if (kvm_apic_sw_enabled(apic) &&
209 !new->cid_mask /* flat mode */ &&
210 kvm_apic_get_reg(apic, APIC_DFR) == APIC_DFR_CLUSTER) {
211 new->cid_shift = 4;
212 new->cid_mask = 0xf;
213 new->lid_mask = 0xf;
214 }
215
216 new->phys_map[kvm_apic_id(apic)] = apic;
217
218 ldr = kvm_apic_get_reg(apic, APIC_LDR);
219 cid = apic_cluster_id(new, ldr);
220 lid = apic_logical_id(new, ldr);
221
222 if (lid)
223 new->logical_map[cid][ffs(lid) - 1] = apic;
224 }
225out:
226 old = rcu_dereference_protected(kvm->arch.apic_map,
227 lockdep_is_held(&kvm->arch.apic_map_lock));
228 rcu_assign_pointer(kvm->arch.apic_map, new);
229 mutex_unlock(&kvm->arch.apic_map_lock);
230
231 if (old)
232 kfree_rcu(old, rcu);
233}
234
235static inline void kvm_apic_set_id(struct kvm_lapic *apic, u8 id)
236{
237 apic_set_reg(apic, APIC_ID, id << 24);
238 recalculate_apic_map(apic->vcpu->kvm);
239}
240
241static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
242{
243 apic_set_reg(apic, APIC_LDR, id);
244 recalculate_apic_map(apic->vcpu->kvm);
245}
246
Eddie Dong97222cc2007-09-12 10:58:04 +0300247static inline int apic_lvt_enabled(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_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300250}
251
252static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
253{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300254 return kvm_apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
Eddie Dong97222cc2007-09-12 10:58:04 +0300255}
256
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800257static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
258{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300259 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800260 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
261}
262
Eddie Dong97222cc2007-09-12 10:58:04 +0300263static inline int apic_lvtt_period(struct kvm_lapic *apic)
264{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300265 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800266 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
267}
268
269static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
270{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300271 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800272 apic->lapic_timer.timer_mode_mask) ==
273 APIC_LVT_TIMER_TSCDEADLINE);
Eddie Dong97222cc2007-09-12 10:58:04 +0300274}
275
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200276static inline int apic_lvt_nmi_mode(u32 lvt_val)
277{
278 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
279}
280
Gleb Natapovfc61b802009-07-05 17:39:35 +0300281void kvm_apic_set_version(struct kvm_vcpu *vcpu)
282{
283 struct kvm_lapic *apic = vcpu->arch.apic;
284 struct kvm_cpuid_entry2 *feat;
285 u32 v = APIC_VERSION;
286
Gleb Natapovc48f1492012-08-05 15:58:33 +0300287 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300288 return;
289
290 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
291 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
292 v |= APIC_LVR_DIRECTED_EOI;
293 apic_set_reg(apic, APIC_LVR, v);
294}
295
Mathias Krausef1d24832012-08-30 01:30:18 +0200296static const unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800297 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300298 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
299 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
300 LINT_MASK, LINT_MASK, /* LVT0-1 */
301 LVT_MASK /* LVTERR */
302};
303
304static int find_highest_vector(void *bitmap)
305{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900306 int vec;
307 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300308
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900309 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
310 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
311 reg = bitmap + REG_POS(vec);
312 if (*reg)
313 return fls(*reg) - 1 + vec;
314 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300315
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900316 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300317}
318
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300319static u8 count_vectors(void *bitmap)
320{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900321 int vec;
322 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300323 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900324
325 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
326 reg = bitmap + REG_POS(vec);
327 count += hweight32(*reg);
328 }
329
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300330 return count;
331}
332
Eddie Dong97222cc2007-09-12 10:58:04 +0300333static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
334{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300335 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300336 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
337}
338
Gleb Natapov33e4c682009-06-11 11:06:51 +0300339static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300340{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300341 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300342}
343
344static inline int apic_find_highest_irr(struct kvm_lapic *apic)
345{
346 int result;
347
Gleb Natapov33e4c682009-06-11 11:06:51 +0300348 if (!apic->irr_pending)
349 return -1;
350
351 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300352 ASSERT(result == -1 || result >= 16);
353
354 return result;
355}
356
Gleb Natapov33e4c682009-06-11 11:06:51 +0300357static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
358{
359 apic->irr_pending = false;
360 apic_clear_vector(vec, apic->regs + APIC_IRR);
361 if (apic_search_irr(apic) != -1)
362 apic->irr_pending = true;
363}
364
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300365static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
366{
367 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
368 ++apic->isr_count;
369 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
370 /*
371 * ISR (in service register) bit is set when injecting an interrupt.
372 * The highest vector is injected. Thus the latest bit set matches
373 * the highest bit in ISR.
374 */
375 apic->highest_isr_cache = vec;
376}
377
378static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
379{
380 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
381 --apic->isr_count;
382 BUG_ON(apic->isr_count < 0);
383 apic->highest_isr_cache = -1;
384}
385
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800386int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
387{
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800388 int highest_irr;
389
Gleb Natapov33e4c682009-06-11 11:06:51 +0300390 /* This may race with setting of irr in __apic_accept_irq() and
391 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
392 * will cause vmexit immediately and the value will be recalculated
393 * on the next vmentry.
394 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300395 if (!kvm_vcpu_has_lapic(vcpu))
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800396 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +0300397 highest_irr = apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800398
399 return highest_irr;
400}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800401
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200402static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
403 int vector, int level, int trig_mode);
404
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200405int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300406{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800407 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800408
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200409 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
410 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300411}
412
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300413static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
414{
415
416 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
417 sizeof(val));
418}
419
420static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
421{
422
423 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
424 sizeof(*val));
425}
426
427static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
428{
429 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
430}
431
432static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
433{
434 u8 val;
435 if (pv_eoi_get_user(vcpu, &val) < 0)
436 apic_debug("Can't read EOI MSR value: 0x%llx\n",
437 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
438 return val & 0x1;
439}
440
441static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
442{
443 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
444 apic_debug("Can't set EOI MSR value: 0x%llx\n",
445 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
446 return;
447 }
448 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
449}
450
451static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
452{
453 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
454 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
455 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
456 return;
457 }
458 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
459}
460
Eddie Dong97222cc2007-09-12 10:58:04 +0300461static inline int apic_find_highest_isr(struct kvm_lapic *apic)
462{
463 int result;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300464 if (!apic->isr_count)
465 return -1;
466 if (likely(apic->highest_isr_cache != -1))
467 return apic->highest_isr_cache;
Eddie Dong97222cc2007-09-12 10:58:04 +0300468
469 result = find_highest_vector(apic->regs + APIC_ISR);
470 ASSERT(result == -1 || result >= 16);
471
472 return result;
473}
474
475static void apic_update_ppr(struct kvm_lapic *apic)
476{
Avi Kivity3842d132010-07-27 12:30:24 +0300477 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300478 int isr;
479
Gleb Natapovc48f1492012-08-05 15:58:33 +0300480 old_ppr = kvm_apic_get_reg(apic, APIC_PROCPRI);
481 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300482 isr = apic_find_highest_isr(apic);
483 isrv = (isr != -1) ? isr : 0;
484
485 if ((tpr & 0xf0) >= (isrv & 0xf0))
486 ppr = tpr & 0xff;
487 else
488 ppr = isrv & 0xf0;
489
490 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
491 apic, ppr, isr, isrv);
492
Avi Kivity3842d132010-07-27 12:30:24 +0300493 if (old_ppr != ppr) {
494 apic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200495 if (ppr < old_ppr)
496 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300497 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300498}
499
500static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
501{
502 apic_set_reg(apic, APIC_TASKPRI, tpr);
503 apic_update_ppr(apic);
504}
505
506int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
507{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200508 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300509}
510
511int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
512{
513 int result = 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300514 u32 logical_id;
515
516 if (apic_x2apic_mode(apic)) {
Gleb Natapovc48f1492012-08-05 15:58:33 +0300517 logical_id = kvm_apic_get_reg(apic, APIC_LDR);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300518 return logical_id & mda;
519 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300520
Gleb Natapovc48f1492012-08-05 15:58:33 +0300521 logical_id = GET_APIC_LOGICAL_ID(kvm_apic_get_reg(apic, APIC_LDR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300522
Gleb Natapovc48f1492012-08-05 15:58:33 +0300523 switch (kvm_apic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300524 case APIC_DFR_FLAT:
525 if (logical_id & mda)
526 result = 1;
527 break;
528 case APIC_DFR_CLUSTER:
529 if (((logical_id >> 4) == (mda >> 0x4))
530 && (logical_id & mda & 0xf))
531 result = 1;
532 break;
533 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200534 apic_debug("Bad DFR vcpu %d: %08x\n",
Gleb Natapovc48f1492012-08-05 15:58:33 +0300535 apic->vcpu->vcpu_id, kvm_apic_get_reg(apic, APIC_DFR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300536 break;
537 }
538
539 return result;
540}
541
Gleb Natapov343f94f2009-03-05 16:34:54 +0200542int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300543 int short_hand, int dest, int dest_mode)
544{
545 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800546 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300547
548 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200549 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300550 target, source, dest, dest_mode, short_hand);
551
Zachary Amsdenbd371392010-06-14 11:42:15 -1000552 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300553 switch (short_hand) {
554 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200555 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300556 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200557 result = kvm_apic_match_physical_addr(target, dest);
558 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300559 /* Logical mode. */
560 result = kvm_apic_match_logical_addr(target, dest);
561 break;
562 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200563 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300564 break;
565 case APIC_DEST_ALLINC:
566 result = 1;
567 break;
568 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200569 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300570 break;
571 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200572 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
573 short_hand);
Eddie Dong97222cc2007-09-12 10:58:04 +0300574 break;
575 }
576
577 return result;
578}
579
Gleb Natapov1e08ec42012-09-13 17:19:24 +0300580bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
581 struct kvm_lapic_irq *irq, int *r)
582{
583 struct kvm_apic_map *map;
584 unsigned long bitmap = 1;
585 struct kvm_lapic **dst;
586 int i;
587 bool ret = false;
588
589 *r = -1;
590
591 if (irq->shorthand == APIC_DEST_SELF) {
592 *r = kvm_apic_set_irq(src->vcpu, irq);
593 return true;
594 }
595
596 if (irq->shorthand)
597 return false;
598
599 rcu_read_lock();
600 map = rcu_dereference(kvm->arch.apic_map);
601
602 if (!map)
603 goto out;
604
605 if (irq->dest_mode == 0) { /* physical mode */
606 if (irq->delivery_mode == APIC_DM_LOWEST ||
607 irq->dest_id == 0xff)
608 goto out;
609 dst = &map->phys_map[irq->dest_id & 0xff];
610 } else {
611 u32 mda = irq->dest_id << (32 - map->ldr_bits);
612
613 dst = map->logical_map[apic_cluster_id(map, mda)];
614
615 bitmap = apic_logical_id(map, mda);
616
617 if (irq->delivery_mode == APIC_DM_LOWEST) {
618 int l = -1;
619 for_each_set_bit(i, &bitmap, 16) {
620 if (!dst[i])
621 continue;
622 if (l < 0)
623 l = i;
624 else if (kvm_apic_compare_prio(dst[i]->vcpu, dst[l]->vcpu) < 0)
625 l = i;
626 }
627
628 bitmap = (l >= 0) ? 1 << l : 0;
629 }
630 }
631
632 for_each_set_bit(i, &bitmap, 16) {
633 if (!dst[i])
634 continue;
635 if (*r < 0)
636 *r = 0;
637 *r += kvm_apic_set_irq(dst[i]->vcpu, irq);
638 }
639
640 ret = true;
641out:
642 rcu_read_unlock();
643 return ret;
644}
645
Eddie Dong97222cc2007-09-12 10:58:04 +0300646/*
647 * Add a pending IRQ into lapic.
648 * Return 1 if successfully added and 0 if discarded.
649 */
650static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
651 int vector, int level, int trig_mode)
652{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200653 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300654 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300655
656 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300657 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200658 vcpu->arch.apic_arb_prio++;
659 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300660 /* FIXME add logic for vcpu on reset */
661 if (unlikely(!apic_enabled(apic)))
662 break;
663
Avi Kivitya5d36f82009-12-29 12:42:16 +0200664 if (trig_mode) {
665 apic_debug("level trig mode for vector %d", vector);
666 apic_set_vector(vector, apic->regs + APIC_TMR);
667 } else
668 apic_clear_vector(vector, apic->regs + APIC_TMR);
669
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200670 result = !apic_test_and_set_irr(vector, apic);
Gleb Natapov1000ff82009-07-07 16:00:57 +0300671 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
Gleb Natapov4da74892009-08-27 16:25:04 +0300672 trig_mode, vector, !result);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200673 if (!result) {
674 if (trig_mode)
675 apic_debug("level trig mode repeatedly for "
676 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300677 break;
678 }
679
Avi Kivity3842d132010-07-27 12:30:24 +0300680 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300681 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300682 break;
683
684 case APIC_DM_REMRD:
Jan Kiszka7712de82011-09-12 11:25:51 +0200685 apic_debug("Ignoring delivery mode 3\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300686 break;
687
688 case APIC_DM_SMI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200689 apic_debug("Ignoring guest SMI\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300690 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800691
Eddie Dong97222cc2007-09-12 10:58:04 +0300692 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200693 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800694 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200695 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300696 break;
697
698 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +0100699 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200700 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300701 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300702 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300703 kvm_vcpu_kick(vcpu);
704 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200705 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
706 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300707 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300708 break;
709
710 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200711 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
712 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300713 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200714 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800715 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300716 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300717 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300718 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300719 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300720 break;
721
Jan Kiszka23930f92008-09-26 09:30:52 +0200722 case APIC_DM_EXTINT:
723 /*
724 * Should only be called by kvm_apic_local_deliver() with LVT0,
725 * before NMI watchdog was enabled. Already handled by
726 * kvm_apic_accept_pic_intr().
727 */
728 break;
729
Eddie Dong97222cc2007-09-12 10:58:04 +0300730 default:
731 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
732 delivery_mode);
733 break;
734 }
735 return result;
736}
737
Gleb Natapove1035712009-03-05 16:34:59 +0200738int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300739{
Gleb Natapove1035712009-03-05 16:34:59 +0200740 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800741}
742
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300743static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300744{
745 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300746
747 trace_kvm_eoi(apic, vector);
748
Eddie Dong97222cc2007-09-12 10:58:04 +0300749 /*
750 * Not every write EOI will has corresponding ISR,
751 * one example is when Kernel check timer on setup_IO_APIC
752 */
753 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300754 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300755
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300756 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300757 apic_update_ppr(apic);
758
Gleb Natapovc48f1492012-08-05 15:58:33 +0300759 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300760 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
761 int trigger_mode;
762 if (apic_test_vector(vector, apic->regs + APIC_TMR))
763 trigger_mode = IOAPIC_LEVEL_TRIG;
764 else
765 trigger_mode = IOAPIC_EDGE_TRIG;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300766 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300767 }
Avi Kivity3842d132010-07-27 12:30:24 +0300768 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300769 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300770}
771
772static void apic_send_ipi(struct kvm_lapic *apic)
773{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300774 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR);
775 u32 icr_high = kvm_apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200776 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300777
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200778 irq.vector = icr_low & APIC_VECTOR_MASK;
779 irq.delivery_mode = icr_low & APIC_MODE_MASK;
780 irq.dest_mode = icr_low & APIC_DEST_MASK;
781 irq.level = icr_low & APIC_INT_ASSERT;
782 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
783 irq.shorthand = icr_low & APIC_SHORT_MASK;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300784 if (apic_x2apic_mode(apic))
785 irq.dest_id = icr_high;
786 else
787 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300788
Gleb Natapov1000ff82009-07-07 16:00:57 +0300789 trace_kvm_apic_ipi(icr_low, irq.dest_id);
790
Eddie Dong97222cc2007-09-12 10:58:04 +0300791 apic_debug("icr_high 0x%x, icr_low 0x%x, "
792 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
793 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400794 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200795 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
796 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300797
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200798 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Eddie Dong97222cc2007-09-12 10:58:04 +0300799}
800
801static u32 apic_get_tmcct(struct kvm_lapic *apic)
802{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200803 ktime_t remaining;
804 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200805 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300806
807 ASSERT(apic != NULL);
808
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200809 /* if initial count is 0, current count should also be 0 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300810 if (kvm_apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200811 return 0;
812
Marcelo Tosattiace15462009-10-08 10:55:03 -0300813 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200814 if (ktime_to_ns(remaining) < 0)
815 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300816
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300817 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
818 tmcct = div64_u64(ns,
819 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300820
821 return tmcct;
822}
823
Avi Kivityb209749f2007-10-22 16:50:39 +0200824static void __report_tpr_access(struct kvm_lapic *apic, bool write)
825{
826 struct kvm_vcpu *vcpu = apic->vcpu;
827 struct kvm_run *run = vcpu->run;
828
Avi Kivitya8eeb042010-05-10 12:34:53 +0300829 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300830 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200831 run->tpr_access.is_write = write;
832}
833
834static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
835{
836 if (apic->vcpu->arch.tpr_access_reporting)
837 __report_tpr_access(apic, write);
838}
839
Eddie Dong97222cc2007-09-12 10:58:04 +0300840static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
841{
842 u32 val = 0;
843
844 if (offset >= LAPIC_MMIO_LENGTH)
845 return 0;
846
847 switch (offset) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300848 case APIC_ID:
849 if (apic_x2apic_mode(apic))
850 val = kvm_apic_id(apic);
851 else
852 val = kvm_apic_id(apic) << 24;
853 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300854 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200855 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300856 break;
857
858 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800859 if (apic_lvtt_tscdeadline(apic))
860 return 0;
861
Eddie Dong97222cc2007-09-12 10:58:04 +0300862 val = apic_get_tmcct(apic);
863 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +0300864 case APIC_PROCPRI:
865 apic_update_ppr(apic);
Gleb Natapovc48f1492012-08-05 15:58:33 +0300866 val = kvm_apic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +0300867 break;
Avi Kivityb209749f2007-10-22 16:50:39 +0200868 case APIC_TASKPRI:
869 report_tpr_access(apic, false);
870 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300871 default:
Gleb Natapovc48f1492012-08-05 15:58:33 +0300872 val = kvm_apic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +0300873 break;
874 }
875
876 return val;
877}
878
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400879static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
880{
881 return container_of(dev, struct kvm_lapic, dev);
882}
883
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300884static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
885 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300886{
Eddie Dong97222cc2007-09-12 10:58:04 +0300887 unsigned char alignment = offset & 0xf;
888 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800889 /* this bitmask has a bit cleared for each reserved register */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300890 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300891
892 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300893 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
894 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300895 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300896 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300897
898 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300899 apic_debug("KVM_APIC_READ: read reserved register %x\n",
900 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300901 return 1;
902 }
903
Eddie Dong97222cc2007-09-12 10:58:04 +0300904 result = __apic_read(apic, offset & ~0xf);
905
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300906 trace_kvm_apic_read(offset, result);
907
Eddie Dong97222cc2007-09-12 10:58:04 +0300908 switch (len) {
909 case 1:
910 case 2:
911 case 4:
912 memcpy(data, (char *)&result + alignment, len);
913 break;
914 default:
915 printk(KERN_ERR "Local APIC read with len = %x, "
916 "should be 1,2, or 4 instead\n", len);
917 break;
918 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300919 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300920}
921
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300922static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
923{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300924 return kvm_apic_hw_enabled(apic) &&
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300925 addr >= apic->base_address &&
926 addr < apic->base_address + LAPIC_MMIO_LENGTH;
927}
928
929static int apic_mmio_read(struct kvm_io_device *this,
930 gpa_t address, int len, void *data)
931{
932 struct kvm_lapic *apic = to_lapic(this);
933 u32 offset = address - apic->base_address;
934
935 if (!apic_mmio_in_range(apic, address))
936 return -EOPNOTSUPP;
937
938 apic_reg_read(apic, offset, len, data);
939
940 return 0;
941}
942
Eddie Dong97222cc2007-09-12 10:58:04 +0300943static void update_divide_count(struct kvm_lapic *apic)
944{
945 u32 tmp1, tmp2, tdcr;
946
Gleb Natapovc48f1492012-08-05 15:58:33 +0300947 tdcr = kvm_apic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300948 tmp1 = tdcr & 0xf;
949 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300950 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300951
952 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400953 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300954}
955
956static void start_apic_timer(struct kvm_lapic *apic)
957{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800958 ktime_t now;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300959 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200960
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800961 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800962 /* lapic timer in oneshot or periodic mode */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800963 now = apic->lapic_timer.timer.base->get_time();
Gleb Natapovc48f1492012-08-05 15:58:33 +0300964 apic->lapic_timer.period = (u64)kvm_apic_get_reg(apic, APIC_TMICT)
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800965 * APIC_BUS_CYCLE_NS * apic->divide_count;
Jan Kiszka9bc57912011-09-12 14:10:22 +0200966
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800967 if (!apic->lapic_timer.period)
968 return;
969 /*
970 * Do not allow the guest to program periodic timers with small
971 * interval, since the hrtimers are not throttled by the host
972 * scheduler.
973 */
974 if (apic_lvtt_period(apic)) {
975 s64 min_period = min_timer_period_us * 1000LL;
976
977 if (apic->lapic_timer.period < min_period) {
978 pr_info_ratelimited(
979 "kvm: vcpu %i: requested %lld ns "
980 "lapic timer period limited to %lld ns\n",
981 apic->vcpu->vcpu_id,
982 apic->lapic_timer.period, min_period);
983 apic->lapic_timer.period = min_period;
984 }
Jan Kiszka9bc57912011-09-12 14:10:22 +0200985 }
Avi Kivity0b975a32008-02-24 14:37:50 +0200986
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800987 hrtimer_start(&apic->lapic_timer.timer,
988 ktime_add_ns(now, apic->lapic_timer.period),
989 HRTIMER_MODE_ABS);
Eddie Dong97222cc2007-09-12 10:58:04 +0300990
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800991 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
Eddie Dong97222cc2007-09-12 10:58:04 +0300992 PRIx64 ", "
993 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800994 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300995 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
Gleb Natapovc48f1492012-08-05 15:58:33 +0300996 kvm_apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300997 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300998 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300999 apic->lapic_timer.period)));
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001000 } else if (apic_lvtt_tscdeadline(apic)) {
1001 /* lapic timer in tsc deadline mode */
1002 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
1003 u64 ns = 0;
1004 struct kvm_vcpu *vcpu = apic->vcpu;
Zachary Amsdencc578282012-02-03 15:43:50 -02001005 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001006 unsigned long flags;
1007
1008 if (unlikely(!tscdeadline || !this_tsc_khz))
1009 return;
1010
1011 local_irq_save(flags);
1012
1013 now = apic->lapic_timer.timer.base->get_time();
Marcelo Tosatti886b4702012-11-27 23:28:58 -02001014 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu, native_read_tsc());
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001015 if (likely(tscdeadline > guest_tsc)) {
1016 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1017 do_div(ns, this_tsc_khz);
1018 }
1019 hrtimer_start(&apic->lapic_timer.timer,
1020 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
1021
1022 local_irq_restore(flags);
1023 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001024}
1025
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001026static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1027{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001028 int nmi_wd_enabled = apic_lvt_nmi_mode(kvm_apic_get_reg(apic, APIC_LVT0));
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001029
1030 if (apic_lvt_nmi_mode(lvt0_val)) {
1031 if (!nmi_wd_enabled) {
1032 apic_debug("Receive NMI setting on APIC_LVT0 "
1033 "for cpu %d\n", apic->vcpu->vcpu_id);
1034 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
1035 }
1036 } else if (nmi_wd_enabled)
1037 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
1038}
1039
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001040static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +03001041{
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001042 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001043
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001044 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001045
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001046 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001047 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001048 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001049 kvm_apic_set_id(apic, val >> 24);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001050 else
1051 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001052 break;
1053
1054 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +02001055 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +03001056 apic_set_tpr(apic, val & 0xff);
1057 break;
1058
1059 case APIC_EOI:
1060 apic_set_eoi(apic);
1061 break;
1062
1063 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001064 if (!apic_x2apic_mode(apic))
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001065 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001066 else
1067 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001068 break;
1069
1070 case APIC_DFR:
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001071 if (!apic_x2apic_mode(apic)) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001072 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001073 recalculate_apic_map(apic->vcpu->kvm);
1074 } else
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001075 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001076 break;
1077
Gleb Natapovfc61b802009-07-05 17:39:35 +03001078 case APIC_SPIV: {
1079 u32 mask = 0x3ff;
Gleb Natapovc48f1492012-08-05 15:58:33 +03001080 if (kvm_apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +03001081 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001082 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +03001083 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1084 int i;
1085 u32 lvt_val;
1086
1087 for (i = 0; i < APIC_LVT_NUM; i++) {
Gleb Natapovc48f1492012-08-05 15:58:33 +03001088 lvt_val = kvm_apic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +03001089 APIC_LVTT + 0x10 * i);
1090 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
1091 lvt_val | APIC_LVT_MASKED);
1092 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001093 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001094
1095 }
1096 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +03001097 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001098 case APIC_ICR:
1099 /* No delay here, so we always clear the pending bit */
1100 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
1101 apic_send_ipi(apic);
1102 break;
1103
1104 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001105 if (!apic_x2apic_mode(apic))
1106 val &= 0xff000000;
1107 apic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001108 break;
1109
Jan Kiszka23930f92008-09-26 09:30:52 +02001110 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +02001111 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001112 case APIC_LVTTHMR:
1113 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +03001114 case APIC_LVT1:
1115 case APIC_LVTERR:
1116 /* TODO: Check vector */
Gleb Natapovc48f1492012-08-05 15:58:33 +03001117 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001118 val |= APIC_LVT_MASKED;
1119
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001120 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
1121 apic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001122
1123 break;
1124
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001125 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +03001126 if ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001127 apic->lapic_timer.timer_mode_mask) !=
1128 (val & apic->lapic_timer.timer_mode_mask))
1129 hrtimer_cancel(&apic->lapic_timer.timer);
1130
Gleb Natapovc48f1492012-08-05 15:58:33 +03001131 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001132 val |= APIC_LVT_MASKED;
1133 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
1134 apic_set_reg(apic, APIC_LVTT, val);
1135 break;
1136
Eddie Dong97222cc2007-09-12 10:58:04 +03001137 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001138 if (apic_lvtt_tscdeadline(apic))
1139 break;
1140
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001141 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001142 apic_set_reg(apic, APIC_TMICT, val);
1143 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001144 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001145
1146 case APIC_TDCR:
1147 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +02001148 apic_debug("KVM_WRITE:TDCR %x\n", val);
Eddie Dong97222cc2007-09-12 10:58:04 +03001149 apic_set_reg(apic, APIC_TDCR, val);
1150 update_divide_count(apic);
1151 break;
1152
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001153 case APIC_ESR:
1154 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +02001155 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001156 ret = 1;
1157 }
1158 break;
1159
1160 case APIC_SELF_IPI:
1161 if (apic_x2apic_mode(apic)) {
1162 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1163 } else
1164 ret = 1;
1165 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001166 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001167 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001168 break;
1169 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001170 if (ret)
1171 apic_debug("Local APIC Write to read-only register %x\n", reg);
1172 return ret;
1173}
1174
1175static int apic_mmio_write(struct kvm_io_device *this,
1176 gpa_t address, int len, const void *data)
1177{
1178 struct kvm_lapic *apic = to_lapic(this);
1179 unsigned int offset = address - apic->base_address;
1180 u32 val;
1181
1182 if (!apic_mmio_in_range(apic, address))
1183 return -EOPNOTSUPP;
1184
1185 /*
1186 * APIC register must be aligned on 128-bits boundary.
1187 * 32/64/128 bits registers must be accessed thru 32 bits.
1188 * Refer SDM 8.4.1
1189 */
1190 if (len != 4 || (offset & 0xf)) {
1191 /* Don't shout loud, $infamous_os would cause only noise. */
1192 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
Sheng Yang756975b2009-07-06 11:05:39 +08001193 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001194 }
1195
1196 val = *(u32*)data;
1197
1198 /* too common printing */
1199 if (offset != APIC_EOI)
1200 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1201 "0x%x\n", __func__, offset, len, val);
1202
1203 apic_reg_write(apic, offset & 0xff0, val);
1204
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001205 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001206}
1207
Kevin Tian58fbbf22011-08-30 13:56:17 +03001208void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1209{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001210 if (kvm_vcpu_has_lapic(vcpu))
Kevin Tian58fbbf22011-08-30 13:56:17 +03001211 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1212}
1213EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1214
Rusty Russelld5894442007-10-08 10:48:30 +10001215void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001216{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001217 struct kvm_lapic *apic = vcpu->arch.apic;
1218
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001219 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001220 return;
1221
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001222 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001223
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001224 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1225 static_key_slow_dec_deferred(&apic_hw_disabled);
1226
Gleb Natapovc48f1492012-08-05 15:58:33 +03001227 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED))
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001228 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03001229
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001230 if (apic->regs)
1231 free_page((unsigned long)apic->regs);
1232
1233 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001234}
1235
1236/*
1237 *----------------------------------------------------------------------
1238 * LAPIC interface
1239 *----------------------------------------------------------------------
1240 */
1241
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001242u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1243{
1244 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001245
Gleb Natapovc48f1492012-08-05 15:58:33 +03001246 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001247 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001248 return 0;
1249
1250 return apic->lapic_timer.tscdeadline;
1251}
1252
1253void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1254{
1255 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001256
Gleb Natapovc48f1492012-08-05 15:58:33 +03001257 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001258 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001259 return;
1260
1261 hrtimer_cancel(&apic->lapic_timer.timer);
1262 apic->lapic_timer.tscdeadline = data;
1263 start_apic_timer(apic);
1264}
1265
Eddie Dong97222cc2007-09-12 10:58:04 +03001266void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1267{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001268 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001269
Gleb Natapovc48f1492012-08-05 15:58:33 +03001270 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001271 return;
Gleb Natapov54e98182012-08-05 15:58:32 +03001272
Avi Kivityb93463a2007-10-25 16:52:32 +02001273 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Gleb Natapovc48f1492012-08-05 15:58:33 +03001274 | (kvm_apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03001275}
1276
1277u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1278{
Eddie Dong97222cc2007-09-12 10:58:04 +03001279 u64 tpr;
1280
Gleb Natapovc48f1492012-08-05 15:58:33 +03001281 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001282 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +03001283
Gleb Natapovc48f1492012-08-05 15:58:33 +03001284 tpr = (u64) kvm_apic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03001285
1286 return (tpr & 0xf0) >> 4;
1287}
1288
1289void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1290{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001291 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001292
1293 if (!apic) {
1294 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001295 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +03001296 return;
1297 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001298
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001299 /* update jump label if enable bit changes */
1300 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1301 if (value & MSR_IA32_APICBASE_ENABLE)
1302 static_key_slow_dec_deferred(&apic_hw_disabled);
1303 else
1304 static_key_slow_inc(&apic_hw_disabled.key);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001305 recalculate_apic_map(vcpu->kvm);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001306 }
1307
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001308 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001309 value &= ~MSR_IA32_APICBASE_BSP;
1310
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001311 vcpu->arch.apic_base = value;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001312 if (apic_x2apic_mode(apic)) {
1313 u32 id = kvm_apic_id(apic);
Gleb Natapov7f46ddb2012-10-14 13:08:58 +02001314 u32 ldr = ((id >> 4) << 16) | (1 << (id & 0xf));
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001315 kvm_apic_set_ldr(apic, ldr);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001316 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001317 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03001318 MSR_IA32_APICBASE_BASE;
1319
1320 /* with FSB delivery interrupt, we can restart APIC functionality */
1321 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001322 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001323
1324}
1325
He, Qingc5ec1532007-09-03 17:07:41 +03001326void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001327{
1328 struct kvm_lapic *apic;
1329 int i;
1330
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001331 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +03001332
1333 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001334 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001335 ASSERT(apic != NULL);
1336
1337 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001338 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001339
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001340 kvm_apic_set_id(apic, vcpu->vcpu_id);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001341 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001342
1343 for (i = 0; i < APIC_LVT_NUM; i++)
1344 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +08001345 apic_set_reg(apic, APIC_LVT0,
1346 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +03001347
1348 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001349 apic_set_spiv(apic, 0xff);
Eddie Dong97222cc2007-09-12 10:58:04 +03001350 apic_set_reg(apic, APIC_TASKPRI, 0);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001351 kvm_apic_set_ldr(apic, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +03001352 apic_set_reg(apic, APIC_ESR, 0);
1353 apic_set_reg(apic, APIC_ICR, 0);
1354 apic_set_reg(apic, APIC_ICR2, 0);
1355 apic_set_reg(apic, APIC_TDCR, 0);
1356 apic_set_reg(apic, APIC_TMICT, 0);
1357 for (i = 0; i < 8; i++) {
1358 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1359 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1360 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1361 }
Gleb Natapov33e4c682009-06-11 11:06:51 +03001362 apic->irr_pending = false;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001363 apic->isr_count = 0;
1364 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02001365 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001366 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001367 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001368 kvm_lapic_set_base(vcpu,
1369 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001370 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001371 apic_update_ppr(apic);
1372
Gleb Natapove1035712009-03-05 16:34:59 +02001373 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03001374 vcpu->arch.apic_attention = 0;
Gleb Natapove1035712009-03-05 16:34:59 +02001375
Eddie Dong97222cc2007-09-12 10:58:04 +03001376 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001377 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001378 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001379 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001380}
1381
Eddie Dong97222cc2007-09-12 10:58:04 +03001382/*
1383 *----------------------------------------------------------------------
1384 * timer interface
1385 *----------------------------------------------------------------------
1386 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001387
Avi Kivity2a6eac92012-07-26 18:01:51 +03001388static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001389{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001390 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001391}
1392
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001393int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1394{
Gleb Natapov54e98182012-08-05 15:58:32 +03001395 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001396
Gleb Natapovc48f1492012-08-05 15:58:33 +03001397 if (kvm_vcpu_has_lapic(vcpu) && apic_enabled(apic) &&
Gleb Natapov54e98182012-08-05 15:58:32 +03001398 apic_lvt_enabled(apic, APIC_LVTT))
1399 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001400
1401 return 0;
1402}
1403
Avi Kivity89342082011-11-10 14:57:21 +02001404int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001405{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001406 u32 reg = kvm_apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001407 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001408
Gleb Natapovc48f1492012-08-05 15:58:33 +03001409 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001410 vector = reg & APIC_VECTOR_MASK;
1411 mode = reg & APIC_MODE_MASK;
1412 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1413 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1414 }
1415 return 0;
1416}
1417
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001418void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001419{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001420 struct kvm_lapic *apic = vcpu->arch.apic;
1421
1422 if (apic)
1423 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001424}
1425
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001426static const struct kvm_io_device_ops apic_mmio_ops = {
1427 .read = apic_mmio_read,
1428 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001429};
1430
Avi Kivitye9d90d42012-07-26 18:01:50 +03001431static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1432{
1433 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03001434 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1435 struct kvm_vcpu *vcpu = apic->vcpu;
Avi Kivitye9d90d42012-07-26 18:01:50 +03001436 wait_queue_head_t *q = &vcpu->wq;
1437
1438 /*
1439 * There is a race window between reading and incrementing, but we do
1440 * not care about potentially losing timer events in the !reinject
1441 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1442 * in vcpu_enter_guest.
1443 */
Avi Kivity2a6eac92012-07-26 18:01:51 +03001444 if (!atomic_read(&ktimer->pending)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001445 atomic_inc(&ktimer->pending);
1446 /* FIXME: this code should not know anything about vcpus */
1447 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1448 }
1449
1450 if (waitqueue_active(q))
1451 wake_up_interruptible(q);
1452
Avi Kivity2a6eac92012-07-26 18:01:51 +03001453 if (lapic_is_periodic(apic)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001454 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1455 return HRTIMER_RESTART;
1456 } else
1457 return HRTIMER_NORESTART;
1458}
1459
Eddie Dong97222cc2007-09-12 10:58:04 +03001460int kvm_create_lapic(struct kvm_vcpu *vcpu)
1461{
1462 struct kvm_lapic *apic;
1463
1464 ASSERT(vcpu != NULL);
1465 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1466
1467 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1468 if (!apic)
1469 goto nomem;
1470
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001471 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001472
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001473 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1474 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001475 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1476 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001477 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001478 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001479 apic->vcpu = vcpu;
1480
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001481 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1482 HRTIMER_MODE_ABS);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001483 apic->lapic_timer.timer.function = apic_timer_fn;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001484
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001485 /*
1486 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1487 * thinking that APIC satet has changed.
1488 */
1489 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapov6aed64a2012-08-05 15:58:28 +03001490 kvm_lapic_set_base(vcpu,
1491 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
Eddie Dong97222cc2007-09-12 10:58:04 +03001492
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001493 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
He, Qingc5ec1532007-09-03 17:07:41 +03001494 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001495 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001496
1497 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001498nomem_free_apic:
1499 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001500nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001501 return -ENOMEM;
1502}
Eddie Dong97222cc2007-09-12 10:58:04 +03001503
1504int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1505{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001506 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001507 int highest_irr;
1508
Gleb Natapovc48f1492012-08-05 15:58:33 +03001509 if (!kvm_vcpu_has_lapic(vcpu) || !apic_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001510 return -1;
1511
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001512 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001513 highest_irr = apic_find_highest_irr(apic);
1514 if ((highest_irr == -1) ||
Gleb Natapovc48f1492012-08-05 15:58:33 +03001515 ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI)))
Eddie Dong97222cc2007-09-12 10:58:04 +03001516 return -1;
1517 return highest_irr;
1518}
1519
Qing He40487c62007-09-17 14:47:13 +08001520int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1521{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001522 u32 lvt0 = kvm_apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001523 int r = 0;
1524
Gleb Natapovc48f1492012-08-05 15:58:33 +03001525 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001526 r = 1;
1527 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1528 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1529 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001530 return r;
1531}
1532
Eddie Dong1b9778d2007-09-03 16:56:58 +03001533void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1534{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001535 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001536
Gleb Natapovc48f1492012-08-05 15:58:33 +03001537 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03001538 return;
1539
1540 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001541 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001542 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001543 }
1544}
1545
Eddie Dong97222cc2007-09-12 10:58:04 +03001546int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1547{
1548 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001549 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001550
1551 if (vector == -1)
1552 return -1;
1553
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001554 apic_set_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001555 apic_update_ppr(apic);
1556 apic_clear_irr(vector, apic);
1557 return vector;
1558}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001559
Gleb Natapov64eb0622012-08-08 15:24:36 +03001560void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
1561 struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001562{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001563 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001564
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001565 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03001566 /* set SPIV separately to get count of SW disabled APICs right */
1567 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
1568 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03001569 /* call kvm_apic_set_id() to put apic into apic_map */
1570 kvm_apic_set_id(apic, kvm_apic_id(apic));
Gleb Natapovfc61b802009-07-05 17:39:35 +03001571 kvm_apic_set_version(vcpu);
1572
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001573 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001574 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001575 update_divide_count(apic);
1576 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001577 apic->irr_pending = true;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001578 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
1579 apic->highest_isr_cache = -1;
Avi Kivity3842d132010-07-27 12:30:24 +03001580 kvm_make_request(KVM_REQ_EVENT, vcpu);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001581}
Eddie Donga3d7f852007-09-03 16:15:12 +03001582
Avi Kivity2f52d582008-01-16 12:49:30 +02001583void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001584{
Eddie Donga3d7f852007-09-03 16:15:12 +03001585 struct hrtimer *timer;
1586
Gleb Natapovc48f1492012-08-05 15:58:33 +03001587 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03001588 return;
1589
Gleb Natapov54e98182012-08-05 15:58:32 +03001590 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001591 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d522008-09-01 14:55:57 -07001592 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001593}
Avi Kivityb93463a2007-10-25 16:52:32 +02001594
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001595/*
1596 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1597 *
1598 * Detect whether guest triggered PV EOI since the
1599 * last entry. If yes, set EOI on guests's behalf.
1600 * Clear PV EOI in guest memory in any case.
1601 */
1602static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1603 struct kvm_lapic *apic)
1604{
1605 bool pending;
1606 int vector;
1607 /*
1608 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1609 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1610 *
1611 * KVM_APIC_PV_EOI_PENDING is unset:
1612 * -> host disabled PV EOI.
1613 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1614 * -> host enabled PV EOI, guest did not execute EOI yet.
1615 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1616 * -> host enabled PV EOI, guest executed EOI.
1617 */
1618 BUG_ON(!pv_eoi_enabled(vcpu));
1619 pending = pv_eoi_get_pending(vcpu);
1620 /*
1621 * Clear pending bit in any case: it will be set again on vmentry.
1622 * While this might not be ideal from performance point of view,
1623 * this makes sure pv eoi is only enabled when we know it's safe.
1624 */
1625 pv_eoi_clr_pending(vcpu);
1626 if (pending)
1627 return;
1628 vector = apic_set_eoi(apic);
1629 trace_kvm_pv_eoi(apic, vector);
1630}
1631
Avi Kivityb93463a2007-10-25 16:52:32 +02001632void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1633{
1634 u32 data;
1635 void *vapic;
1636
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001637 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1638 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1639
Gleb Natapov41383772012-04-19 14:06:29 +03001640 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001641 return;
1642
Cong Wang8fd75e12011-11-25 23:14:17 +08001643 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001644 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
Cong Wang8fd75e12011-11-25 23:14:17 +08001645 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001646
1647 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1648}
1649
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001650/*
1651 * apic_sync_pv_eoi_to_guest - called before vmentry
1652 *
1653 * Detect whether it's safe to enable PV EOI and
1654 * if yes do so.
1655 */
1656static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1657 struct kvm_lapic *apic)
1658{
1659 if (!pv_eoi_enabled(vcpu) ||
1660 /* IRR set or many bits in ISR: could be nested. */
1661 apic->irr_pending ||
1662 /* Cache not set: could be safe but we don't bother. */
1663 apic->highest_isr_cache == -1 ||
1664 /* Need EOI to update ioapic. */
1665 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1666 /*
1667 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1668 * so we need not do anything here.
1669 */
1670 return;
1671 }
1672
1673 pv_eoi_set_pending(apic->vcpu);
1674}
1675
Avi Kivityb93463a2007-10-25 16:52:32 +02001676void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1677{
1678 u32 data, tpr;
1679 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001680 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02001681 void *vapic;
1682
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001683 apic_sync_pv_eoi_to_guest(vcpu, apic);
1684
Gleb Natapov41383772012-04-19 14:06:29 +03001685 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001686 return;
1687
Gleb Natapovc48f1492012-08-05 15:58:33 +03001688 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02001689 max_irr = apic_find_highest_irr(apic);
1690 if (max_irr < 0)
1691 max_irr = 0;
1692 max_isr = apic_find_highest_isr(apic);
1693 if (max_isr < 0)
1694 max_isr = 0;
1695 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1696
Cong Wang8fd75e12011-11-25 23:14:17 +08001697 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001698 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
Cong Wang8fd75e12011-11-25 23:14:17 +08001699 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001700}
1701
1702void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1703{
Avi Kivityb93463a2007-10-25 16:52:32 +02001704 vcpu->arch.apic->vapic_addr = vapic_addr;
Gleb Natapov41383772012-04-19 14:06:29 +03001705 if (vapic_addr)
1706 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1707 else
1708 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Avi Kivityb93463a2007-10-25 16:52:32 +02001709}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001710
1711int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1712{
1713 struct kvm_lapic *apic = vcpu->arch.apic;
1714 u32 reg = (msr - APIC_BASE_MSR) << 4;
1715
1716 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1717 return 1;
1718
1719 /* if this is ICR write vector before command */
1720 if (msr == 0x830)
1721 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1722 return apic_reg_write(apic, reg, (u32)data);
1723}
1724
1725int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1726{
1727 struct kvm_lapic *apic = vcpu->arch.apic;
1728 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1729
1730 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1731 return 1;
1732
1733 if (apic_reg_read(apic, reg, 4, &low))
1734 return 1;
1735 if (msr == 0x830)
1736 apic_reg_read(apic, APIC_ICR2, 4, &high);
1737
1738 *data = (((u64)high) << 32) | low;
1739
1740 return 0;
1741}
Gleb Natapov10388a02010-01-17 15:51:23 +02001742
1743int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1744{
1745 struct kvm_lapic *apic = vcpu->arch.apic;
1746
Gleb Natapovc48f1492012-08-05 15:58:33 +03001747 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001748 return 1;
1749
1750 /* if this is ICR write vector before command */
1751 if (reg == APIC_ICR)
1752 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1753 return apic_reg_write(apic, reg, (u32)data);
1754}
1755
1756int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1757{
1758 struct kvm_lapic *apic = vcpu->arch.apic;
1759 u32 low, high = 0;
1760
Gleb Natapovc48f1492012-08-05 15:58:33 +03001761 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001762 return 1;
1763
1764 if (apic_reg_read(apic, reg, 4, &low))
1765 return 1;
1766 if (reg == APIC_ICR)
1767 apic_reg_read(apic, APIC_ICR2, 4, &high);
1768
1769 *data = (((u64)high) << 32) | low;
1770
1771 return 0;
1772}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001773
1774int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1775{
1776 u64 addr = data & ~KVM_MSR_ENABLED;
1777 if (!IS_ALIGNED(addr, 4))
1778 return 1;
1779
1780 vcpu->arch.pv_eoi.msr_val = data;
1781 if (!pv_eoi_enabled(vcpu))
1782 return 0;
1783 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
1784 addr);
1785}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001786
1787void kvm_lapic_init(void)
1788{
1789 /* do not patch jump label more than once per second */
1790 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001791 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001792}