blob: 333c27fa6e9fc010aaba4a4839a6758ba7aa3a9e [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
69
70#define VEC_POS(v) ((v) & (32 - 1))
71#define REG_POS(v) (((v) >> 5) << 4)
Zhang Xiantaoad312c72007-12-13 23:50:52 +080072
Jan Kiszka9bc57912011-09-12 14:10:22 +020073static unsigned int min_timer_period_us = 500;
74module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
75
Eddie Dong97222cc2007-09-12 10:58:04 +030076static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
77{
78 *((u32 *) (apic->regs + reg_off)) = val;
79}
80
81static inline int apic_test_and_set_vector(int vec, void *bitmap)
82{
83 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
84}
85
86static inline int apic_test_and_clear_vector(int vec, void *bitmap)
87{
88 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
89}
90
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +030091static inline int apic_test_vector(int vec, void *bitmap)
92{
93 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
94}
95
Eddie Dong97222cc2007-09-12 10:58:04 +030096static inline void apic_set_vector(int vec, void *bitmap)
97{
98 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
99}
100
101static inline void apic_clear_vector(int vec, void *bitmap)
102{
103 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
104}
105
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300106static inline int __apic_test_and_set_vector(int vec, void *bitmap)
107{
108 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
109}
110
111static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
112{
113 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
114}
115
Gleb Natapovc5cc4212012-08-05 15:58:30 +0300116struct static_key_deferred apic_hw_disabled __read_mostly;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300117struct static_key_deferred apic_sw_disabled __read_mostly;
118
119static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300120{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300121 if ((kvm_apic_get_reg(apic, APIC_SPIV) ^ val) & APIC_SPIV_APIC_ENABLED) {
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300122 if (val & APIC_SPIV_APIC_ENABLED)
123 static_key_slow_dec_deferred(&apic_sw_disabled);
124 else
125 static_key_slow_inc(&apic_sw_disabled.key);
126 }
127 apic_set_reg(apic, APIC_SPIV, val);
128}
129
Eddie Dong97222cc2007-09-12 10:58:04 +0300130static inline int apic_enabled(struct kvm_lapic *apic)
131{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300132 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
Gleb Natapov54e98182012-08-05 15:58:32 +0300133}
134
Eddie Dong97222cc2007-09-12 10:58:04 +0300135#define LVT_MASK \
136 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
137
138#define LINT_MASK \
139 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
140 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
141
142static inline int kvm_apic_id(struct kvm_lapic *apic)
143{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300144 return (kvm_apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
Eddie Dong97222cc2007-09-12 10:58:04 +0300145}
146
147static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
148{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300149 return !(kvm_apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300150}
151
152static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
153{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300154 return kvm_apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
Eddie Dong97222cc2007-09-12 10:58:04 +0300155}
156
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800157static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
158{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300159 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800160 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
161}
162
Eddie Dong97222cc2007-09-12 10:58:04 +0300163static inline int apic_lvtt_period(struct kvm_lapic *apic)
164{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300165 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800166 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
167}
168
169static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
170{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300171 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800172 apic->lapic_timer.timer_mode_mask) ==
173 APIC_LVT_TIMER_TSCDEADLINE);
Eddie Dong97222cc2007-09-12 10:58:04 +0300174}
175
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200176static inline int apic_lvt_nmi_mode(u32 lvt_val)
177{
178 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
179}
180
Gleb Natapovfc61b802009-07-05 17:39:35 +0300181void kvm_apic_set_version(struct kvm_vcpu *vcpu)
182{
183 struct kvm_lapic *apic = vcpu->arch.apic;
184 struct kvm_cpuid_entry2 *feat;
185 u32 v = APIC_VERSION;
186
Gleb Natapovc48f1492012-08-05 15:58:33 +0300187 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300188 return;
189
190 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
191 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
192 v |= APIC_LVR_DIRECTED_EOI;
193 apic_set_reg(apic, APIC_LVR, v);
194}
195
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300196static inline int apic_x2apic_mode(struct kvm_lapic *apic)
197{
198 return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
199}
200
Eddie Dong97222cc2007-09-12 10:58:04 +0300201static unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800202 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300203 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
204 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
205 LINT_MASK, LINT_MASK, /* LVT0-1 */
206 LVT_MASK /* LVTERR */
207};
208
209static int find_highest_vector(void *bitmap)
210{
211 u32 *word = bitmap;
212 int word_offset = MAX_APIC_VECTOR >> 5;
213
214 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
215 continue;
216
217 if (likely(!word_offset && !word[0]))
218 return -1;
219 else
220 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
221}
222
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300223static u8 count_vectors(void *bitmap)
224{
225 u32 *word = bitmap;
226 int word_offset;
227 u8 count = 0;
228 for (word_offset = 0; word_offset < MAX_APIC_VECTOR >> 5; ++word_offset)
229 count += hweight32(word[word_offset << 2]);
230 return count;
231}
232
Eddie Dong97222cc2007-09-12 10:58:04 +0300233static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
234{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300235 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300236 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
237}
238
Gleb Natapov33e4c682009-06-11 11:06:51 +0300239static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300240{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300241 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300242}
243
244static inline int apic_find_highest_irr(struct kvm_lapic *apic)
245{
246 int result;
247
Gleb Natapov33e4c682009-06-11 11:06:51 +0300248 if (!apic->irr_pending)
249 return -1;
250
251 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300252 ASSERT(result == -1 || result >= 16);
253
254 return result;
255}
256
Gleb Natapov33e4c682009-06-11 11:06:51 +0300257static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
258{
259 apic->irr_pending = false;
260 apic_clear_vector(vec, apic->regs + APIC_IRR);
261 if (apic_search_irr(apic) != -1)
262 apic->irr_pending = true;
263}
264
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300265static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
266{
267 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
268 ++apic->isr_count;
269 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
270 /*
271 * ISR (in service register) bit is set when injecting an interrupt.
272 * The highest vector is injected. Thus the latest bit set matches
273 * the highest bit in ISR.
274 */
275 apic->highest_isr_cache = vec;
276}
277
278static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
279{
280 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
281 --apic->isr_count;
282 BUG_ON(apic->isr_count < 0);
283 apic->highest_isr_cache = -1;
284}
285
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800286int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
287{
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800288 int highest_irr;
289
Gleb Natapov33e4c682009-06-11 11:06:51 +0300290 /* This may race with setting of irr in __apic_accept_irq() and
291 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
292 * will cause vmexit immediately and the value will be recalculated
293 * on the next vmentry.
294 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300295 if (!kvm_vcpu_has_lapic(vcpu))
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800296 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +0300297 highest_irr = apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800298
299 return highest_irr;
300}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800301
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200302static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
303 int vector, int level, int trig_mode);
304
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200305int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300306{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800307 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800308
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200309 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
310 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300311}
312
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300313static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
314{
315
316 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
317 sizeof(val));
318}
319
320static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
321{
322
323 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
324 sizeof(*val));
325}
326
327static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
328{
329 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
330}
331
332static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
333{
334 u8 val;
335 if (pv_eoi_get_user(vcpu, &val) < 0)
336 apic_debug("Can't read EOI MSR value: 0x%llx\n",
337 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
338 return val & 0x1;
339}
340
341static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
342{
343 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
344 apic_debug("Can't set EOI MSR value: 0x%llx\n",
345 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
346 return;
347 }
348 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
349}
350
351static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
352{
353 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
354 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
355 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
356 return;
357 }
358 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
359}
360
Eddie Dong97222cc2007-09-12 10:58:04 +0300361static inline int apic_find_highest_isr(struct kvm_lapic *apic)
362{
363 int result;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300364 if (!apic->isr_count)
365 return -1;
366 if (likely(apic->highest_isr_cache != -1))
367 return apic->highest_isr_cache;
Eddie Dong97222cc2007-09-12 10:58:04 +0300368
369 result = find_highest_vector(apic->regs + APIC_ISR);
370 ASSERT(result == -1 || result >= 16);
371
372 return result;
373}
374
375static void apic_update_ppr(struct kvm_lapic *apic)
376{
Avi Kivity3842d132010-07-27 12:30:24 +0300377 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300378 int isr;
379
Gleb Natapovc48f1492012-08-05 15:58:33 +0300380 old_ppr = kvm_apic_get_reg(apic, APIC_PROCPRI);
381 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300382 isr = apic_find_highest_isr(apic);
383 isrv = (isr != -1) ? isr : 0;
384
385 if ((tpr & 0xf0) >= (isrv & 0xf0))
386 ppr = tpr & 0xff;
387 else
388 ppr = isrv & 0xf0;
389
390 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
391 apic, ppr, isr, isrv);
392
Avi Kivity3842d132010-07-27 12:30:24 +0300393 if (old_ppr != ppr) {
394 apic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200395 if (ppr < old_ppr)
396 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300397 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300398}
399
400static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
401{
402 apic_set_reg(apic, APIC_TASKPRI, tpr);
403 apic_update_ppr(apic);
404}
405
406int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
407{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200408 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300409}
410
411int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
412{
413 int result = 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300414 u32 logical_id;
415
416 if (apic_x2apic_mode(apic)) {
Gleb Natapovc48f1492012-08-05 15:58:33 +0300417 logical_id = kvm_apic_get_reg(apic, APIC_LDR);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300418 return logical_id & mda;
419 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300420
Gleb Natapovc48f1492012-08-05 15:58:33 +0300421 logical_id = GET_APIC_LOGICAL_ID(kvm_apic_get_reg(apic, APIC_LDR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300422
Gleb Natapovc48f1492012-08-05 15:58:33 +0300423 switch (kvm_apic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300424 case APIC_DFR_FLAT:
425 if (logical_id & mda)
426 result = 1;
427 break;
428 case APIC_DFR_CLUSTER:
429 if (((logical_id >> 4) == (mda >> 0x4))
430 && (logical_id & mda & 0xf))
431 result = 1;
432 break;
433 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200434 apic_debug("Bad DFR vcpu %d: %08x\n",
Gleb Natapovc48f1492012-08-05 15:58:33 +0300435 apic->vcpu->vcpu_id, kvm_apic_get_reg(apic, APIC_DFR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300436 break;
437 }
438
439 return result;
440}
441
Gleb Natapov343f94f2009-03-05 16:34:54 +0200442int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300443 int short_hand, int dest, int dest_mode)
444{
445 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800446 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300447
448 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200449 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300450 target, source, dest, dest_mode, short_hand);
451
Zachary Amsdenbd371392010-06-14 11:42:15 -1000452 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300453 switch (short_hand) {
454 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200455 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300456 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200457 result = kvm_apic_match_physical_addr(target, dest);
458 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300459 /* Logical mode. */
460 result = kvm_apic_match_logical_addr(target, dest);
461 break;
462 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200463 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300464 break;
465 case APIC_DEST_ALLINC:
466 result = 1;
467 break;
468 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200469 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300470 break;
471 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200472 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
473 short_hand);
Eddie Dong97222cc2007-09-12 10:58:04 +0300474 break;
475 }
476
477 return result;
478}
479
480/*
481 * Add a pending IRQ into lapic.
482 * Return 1 if successfully added and 0 if discarded.
483 */
484static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
485 int vector, int level, int trig_mode)
486{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200487 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300488 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300489
490 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300491 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200492 vcpu->arch.apic_arb_prio++;
493 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300494 /* FIXME add logic for vcpu on reset */
495 if (unlikely(!apic_enabled(apic)))
496 break;
497
Avi Kivitya5d36f82009-12-29 12:42:16 +0200498 if (trig_mode) {
499 apic_debug("level trig mode for vector %d", vector);
500 apic_set_vector(vector, apic->regs + APIC_TMR);
501 } else
502 apic_clear_vector(vector, apic->regs + APIC_TMR);
503
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200504 result = !apic_test_and_set_irr(vector, apic);
Gleb Natapov1000ff82009-07-07 16:00:57 +0300505 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
Gleb Natapov4da74892009-08-27 16:25:04 +0300506 trig_mode, vector, !result);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200507 if (!result) {
508 if (trig_mode)
509 apic_debug("level trig mode repeatedly for "
510 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300511 break;
512 }
513
Avi Kivity3842d132010-07-27 12:30:24 +0300514 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300515 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300516 break;
517
518 case APIC_DM_REMRD:
Jan Kiszka7712de82011-09-12 11:25:51 +0200519 apic_debug("Ignoring delivery mode 3\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300520 break;
521
522 case APIC_DM_SMI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200523 apic_debug("Ignoring guest SMI\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300524 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800525
Eddie Dong97222cc2007-09-12 10:58:04 +0300526 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200527 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800528 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200529 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300530 break;
531
532 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +0100533 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200534 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300535 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300536 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300537 kvm_vcpu_kick(vcpu);
538 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200539 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
540 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300541 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300542 break;
543
544 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200545 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
546 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300547 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200548 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800549 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300550 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300551 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300552 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300553 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300554 break;
555
Jan Kiszka23930f92008-09-26 09:30:52 +0200556 case APIC_DM_EXTINT:
557 /*
558 * Should only be called by kvm_apic_local_deliver() with LVT0,
559 * before NMI watchdog was enabled. Already handled by
560 * kvm_apic_accept_pic_intr().
561 */
562 break;
563
Eddie Dong97222cc2007-09-12 10:58:04 +0300564 default:
565 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
566 delivery_mode);
567 break;
568 }
569 return result;
570}
571
Gleb Natapove1035712009-03-05 16:34:59 +0200572int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300573{
Gleb Natapove1035712009-03-05 16:34:59 +0200574 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800575}
576
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300577static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300578{
579 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300580
581 trace_kvm_eoi(apic, vector);
582
Eddie Dong97222cc2007-09-12 10:58:04 +0300583 /*
584 * Not every write EOI will has corresponding ISR,
585 * one example is when Kernel check timer on setup_IO_APIC
586 */
587 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300588 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300589
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300590 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300591 apic_update_ppr(apic);
592
Gleb Natapovc48f1492012-08-05 15:58:33 +0300593 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300594 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
595 int trigger_mode;
596 if (apic_test_vector(vector, apic->regs + APIC_TMR))
597 trigger_mode = IOAPIC_LEVEL_TRIG;
598 else
599 trigger_mode = IOAPIC_EDGE_TRIG;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300600 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300601 }
Avi Kivity3842d132010-07-27 12:30:24 +0300602 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300603 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300604}
605
606static void apic_send_ipi(struct kvm_lapic *apic)
607{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300608 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR);
609 u32 icr_high = kvm_apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200610 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300611
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200612 irq.vector = icr_low & APIC_VECTOR_MASK;
613 irq.delivery_mode = icr_low & APIC_MODE_MASK;
614 irq.dest_mode = icr_low & APIC_DEST_MASK;
615 irq.level = icr_low & APIC_INT_ASSERT;
616 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
617 irq.shorthand = icr_low & APIC_SHORT_MASK;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300618 if (apic_x2apic_mode(apic))
619 irq.dest_id = icr_high;
620 else
621 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300622
Gleb Natapov1000ff82009-07-07 16:00:57 +0300623 trace_kvm_apic_ipi(icr_low, irq.dest_id);
624
Eddie Dong97222cc2007-09-12 10:58:04 +0300625 apic_debug("icr_high 0x%x, icr_low 0x%x, "
626 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
627 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400628 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200629 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
630 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300631
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200632 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Eddie Dong97222cc2007-09-12 10:58:04 +0300633}
634
635static u32 apic_get_tmcct(struct kvm_lapic *apic)
636{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200637 ktime_t remaining;
638 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200639 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300640
641 ASSERT(apic != NULL);
642
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200643 /* if initial count is 0, current count should also be 0 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300644 if (kvm_apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200645 return 0;
646
Marcelo Tosattiace15462009-10-08 10:55:03 -0300647 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200648 if (ktime_to_ns(remaining) < 0)
649 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300650
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300651 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
652 tmcct = div64_u64(ns,
653 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300654
655 return tmcct;
656}
657
Avi Kivityb209749f2007-10-22 16:50:39 +0200658static void __report_tpr_access(struct kvm_lapic *apic, bool write)
659{
660 struct kvm_vcpu *vcpu = apic->vcpu;
661 struct kvm_run *run = vcpu->run;
662
Avi Kivitya8eeb042010-05-10 12:34:53 +0300663 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300664 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200665 run->tpr_access.is_write = write;
666}
667
668static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
669{
670 if (apic->vcpu->arch.tpr_access_reporting)
671 __report_tpr_access(apic, write);
672}
673
Eddie Dong97222cc2007-09-12 10:58:04 +0300674static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
675{
676 u32 val = 0;
677
678 if (offset >= LAPIC_MMIO_LENGTH)
679 return 0;
680
681 switch (offset) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300682 case APIC_ID:
683 if (apic_x2apic_mode(apic))
684 val = kvm_apic_id(apic);
685 else
686 val = kvm_apic_id(apic) << 24;
687 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300688 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200689 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300690 break;
691
692 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800693 if (apic_lvtt_tscdeadline(apic))
694 return 0;
695
Eddie Dong97222cc2007-09-12 10:58:04 +0300696 val = apic_get_tmcct(apic);
697 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +0300698 case APIC_PROCPRI:
699 apic_update_ppr(apic);
Gleb Natapovc48f1492012-08-05 15:58:33 +0300700 val = kvm_apic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +0300701 break;
Avi Kivityb209749f2007-10-22 16:50:39 +0200702 case APIC_TASKPRI:
703 report_tpr_access(apic, false);
704 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300705 default:
Gleb Natapovc48f1492012-08-05 15:58:33 +0300706 val = kvm_apic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +0300707 break;
708 }
709
710 return val;
711}
712
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400713static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
714{
715 return container_of(dev, struct kvm_lapic, dev);
716}
717
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300718static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
719 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300720{
Eddie Dong97222cc2007-09-12 10:58:04 +0300721 unsigned char alignment = offset & 0xf;
722 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800723 /* this bitmask has a bit cleared for each reserved register */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300724 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300725
726 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300727 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
728 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300729 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300730 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300731
732 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300733 apic_debug("KVM_APIC_READ: read reserved register %x\n",
734 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300735 return 1;
736 }
737
Eddie Dong97222cc2007-09-12 10:58:04 +0300738 result = __apic_read(apic, offset & ~0xf);
739
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300740 trace_kvm_apic_read(offset, result);
741
Eddie Dong97222cc2007-09-12 10:58:04 +0300742 switch (len) {
743 case 1:
744 case 2:
745 case 4:
746 memcpy(data, (char *)&result + alignment, len);
747 break;
748 default:
749 printk(KERN_ERR "Local APIC read with len = %x, "
750 "should be 1,2, or 4 instead\n", len);
751 break;
752 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300753 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300754}
755
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300756static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
757{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300758 return kvm_apic_hw_enabled(apic) &&
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300759 addr >= apic->base_address &&
760 addr < apic->base_address + LAPIC_MMIO_LENGTH;
761}
762
763static int apic_mmio_read(struct kvm_io_device *this,
764 gpa_t address, int len, void *data)
765{
766 struct kvm_lapic *apic = to_lapic(this);
767 u32 offset = address - apic->base_address;
768
769 if (!apic_mmio_in_range(apic, address))
770 return -EOPNOTSUPP;
771
772 apic_reg_read(apic, offset, len, data);
773
774 return 0;
775}
776
Eddie Dong97222cc2007-09-12 10:58:04 +0300777static void update_divide_count(struct kvm_lapic *apic)
778{
779 u32 tmp1, tmp2, tdcr;
780
Gleb Natapovc48f1492012-08-05 15:58:33 +0300781 tdcr = kvm_apic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300782 tmp1 = tdcr & 0xf;
783 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300784 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300785
786 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400787 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300788}
789
790static void start_apic_timer(struct kvm_lapic *apic)
791{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800792 ktime_t now;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300793 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200794
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800795 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800796 /* lapic timer in oneshot or periodic mode */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800797 now = apic->lapic_timer.timer.base->get_time();
Gleb Natapovc48f1492012-08-05 15:58:33 +0300798 apic->lapic_timer.period = (u64)kvm_apic_get_reg(apic, APIC_TMICT)
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800799 * APIC_BUS_CYCLE_NS * apic->divide_count;
Jan Kiszka9bc57912011-09-12 14:10:22 +0200800
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800801 if (!apic->lapic_timer.period)
802 return;
803 /*
804 * Do not allow the guest to program periodic timers with small
805 * interval, since the hrtimers are not throttled by the host
806 * scheduler.
807 */
808 if (apic_lvtt_period(apic)) {
809 s64 min_period = min_timer_period_us * 1000LL;
810
811 if (apic->lapic_timer.period < min_period) {
812 pr_info_ratelimited(
813 "kvm: vcpu %i: requested %lld ns "
814 "lapic timer period limited to %lld ns\n",
815 apic->vcpu->vcpu_id,
816 apic->lapic_timer.period, min_period);
817 apic->lapic_timer.period = min_period;
818 }
Jan Kiszka9bc57912011-09-12 14:10:22 +0200819 }
Avi Kivity0b975a32008-02-24 14:37:50 +0200820
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800821 hrtimer_start(&apic->lapic_timer.timer,
822 ktime_add_ns(now, apic->lapic_timer.period),
823 HRTIMER_MODE_ABS);
Eddie Dong97222cc2007-09-12 10:58:04 +0300824
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800825 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
Eddie Dong97222cc2007-09-12 10:58:04 +0300826 PRIx64 ", "
827 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800828 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300829 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
Gleb Natapovc48f1492012-08-05 15:58:33 +0300830 kvm_apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300831 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300832 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300833 apic->lapic_timer.period)));
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800834 } else if (apic_lvtt_tscdeadline(apic)) {
835 /* lapic timer in tsc deadline mode */
836 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
837 u64 ns = 0;
838 struct kvm_vcpu *vcpu = apic->vcpu;
Zachary Amsdencc578282012-02-03 15:43:50 -0200839 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800840 unsigned long flags;
841
842 if (unlikely(!tscdeadline || !this_tsc_khz))
843 return;
844
845 local_irq_save(flags);
846
847 now = apic->lapic_timer.timer.base->get_time();
848 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu);
849 if (likely(tscdeadline > guest_tsc)) {
850 ns = (tscdeadline - guest_tsc) * 1000000ULL;
851 do_div(ns, this_tsc_khz);
852 }
853 hrtimer_start(&apic->lapic_timer.timer,
854 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
855
856 local_irq_restore(flags);
857 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300858}
859
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200860static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
861{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300862 int nmi_wd_enabled = apic_lvt_nmi_mode(kvm_apic_get_reg(apic, APIC_LVT0));
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200863
864 if (apic_lvt_nmi_mode(lvt0_val)) {
865 if (!nmi_wd_enabled) {
866 apic_debug("Receive NMI setting on APIC_LVT0 "
867 "for cpu %d\n", apic->vcpu->vcpu_id);
868 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
869 }
870 } else if (nmi_wd_enabled)
871 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
872}
873
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300874static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300875{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300876 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300877
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300878 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300879
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300880 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300881 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300882 if (!apic_x2apic_mode(apic))
883 apic_set_reg(apic, APIC_ID, val);
884 else
885 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300886 break;
887
888 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +0200889 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +0300890 apic_set_tpr(apic, val & 0xff);
891 break;
892
893 case APIC_EOI:
894 apic_set_eoi(apic);
895 break;
896
897 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300898 if (!apic_x2apic_mode(apic))
899 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
900 else
901 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300902 break;
903
904 case APIC_DFR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300905 if (!apic_x2apic_mode(apic))
906 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
907 else
908 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300909 break;
910
Gleb Natapovfc61b802009-07-05 17:39:35 +0300911 case APIC_SPIV: {
912 u32 mask = 0x3ff;
Gleb Natapovc48f1492012-08-05 15:58:33 +0300913 if (kvm_apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +0300914 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300915 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +0300916 if (!(val & APIC_SPIV_APIC_ENABLED)) {
917 int i;
918 u32 lvt_val;
919
920 for (i = 0; i < APIC_LVT_NUM; i++) {
Gleb Natapovc48f1492012-08-05 15:58:33 +0300921 lvt_val = kvm_apic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +0300922 APIC_LVTT + 0x10 * i);
923 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
924 lvt_val | APIC_LVT_MASKED);
925 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300926 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300927
928 }
929 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300930 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300931 case APIC_ICR:
932 /* No delay here, so we always clear the pending bit */
933 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
934 apic_send_ipi(apic);
935 break;
936
937 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300938 if (!apic_x2apic_mode(apic))
939 val &= 0xff000000;
940 apic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300941 break;
942
Jan Kiszka23930f92008-09-26 09:30:52 +0200943 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200944 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300945 case APIC_LVTTHMR:
946 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +0300947 case APIC_LVT1:
948 case APIC_LVTERR:
949 /* TODO: Check vector */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300950 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +0300951 val |= APIC_LVT_MASKED;
952
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300953 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
954 apic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300955
956 break;
957
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800958 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +0300959 if ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800960 apic->lapic_timer.timer_mode_mask) !=
961 (val & apic->lapic_timer.timer_mode_mask))
962 hrtimer_cancel(&apic->lapic_timer.timer);
963
Gleb Natapovc48f1492012-08-05 15:58:33 +0300964 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800965 val |= APIC_LVT_MASKED;
966 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
967 apic_set_reg(apic, APIC_LVTT, val);
968 break;
969
Eddie Dong97222cc2007-09-12 10:58:04 +0300970 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800971 if (apic_lvtt_tscdeadline(apic))
972 break;
973
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300974 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300975 apic_set_reg(apic, APIC_TMICT, val);
976 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300977 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300978
979 case APIC_TDCR:
980 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +0200981 apic_debug("KVM_WRITE:TDCR %x\n", val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300982 apic_set_reg(apic, APIC_TDCR, val);
983 update_divide_count(apic);
984 break;
985
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300986 case APIC_ESR:
987 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +0200988 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300989 ret = 1;
990 }
991 break;
992
993 case APIC_SELF_IPI:
994 if (apic_x2apic_mode(apic)) {
995 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
996 } else
997 ret = 1;
998 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300999 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001000 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001001 break;
1002 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001003 if (ret)
1004 apic_debug("Local APIC Write to read-only register %x\n", reg);
1005 return ret;
1006}
1007
1008static int apic_mmio_write(struct kvm_io_device *this,
1009 gpa_t address, int len, const void *data)
1010{
1011 struct kvm_lapic *apic = to_lapic(this);
1012 unsigned int offset = address - apic->base_address;
1013 u32 val;
1014
1015 if (!apic_mmio_in_range(apic, address))
1016 return -EOPNOTSUPP;
1017
1018 /*
1019 * APIC register must be aligned on 128-bits boundary.
1020 * 32/64/128 bits registers must be accessed thru 32 bits.
1021 * Refer SDM 8.4.1
1022 */
1023 if (len != 4 || (offset & 0xf)) {
1024 /* Don't shout loud, $infamous_os would cause only noise. */
1025 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
Sheng Yang756975b2009-07-06 11:05:39 +08001026 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001027 }
1028
1029 val = *(u32*)data;
1030
1031 /* too common printing */
1032 if (offset != APIC_EOI)
1033 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1034 "0x%x\n", __func__, offset, len, val);
1035
1036 apic_reg_write(apic, offset & 0xff0, val);
1037
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001038 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001039}
1040
Kevin Tian58fbbf22011-08-30 13:56:17 +03001041void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1042{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001043 if (kvm_vcpu_has_lapic(vcpu))
Kevin Tian58fbbf22011-08-30 13:56:17 +03001044 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1045}
1046EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1047
Rusty Russelld5894442007-10-08 10:48:30 +10001048void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001049{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001050 struct kvm_lapic *apic = vcpu->arch.apic;
1051
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001052 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001053 return;
1054
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001055 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001056
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001057 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1058 static_key_slow_dec_deferred(&apic_hw_disabled);
1059
Gleb Natapovc48f1492012-08-05 15:58:33 +03001060 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED))
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001061 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03001062
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001063 if (apic->regs)
1064 free_page((unsigned long)apic->regs);
1065
1066 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001067}
1068
1069/*
1070 *----------------------------------------------------------------------
1071 * LAPIC interface
1072 *----------------------------------------------------------------------
1073 */
1074
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001075u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1076{
1077 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001078
Gleb Natapovc48f1492012-08-05 15:58:33 +03001079 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001080 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001081 return 0;
1082
1083 return apic->lapic_timer.tscdeadline;
1084}
1085
1086void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1087{
1088 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001089
Gleb Natapovc48f1492012-08-05 15:58:33 +03001090 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001091 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001092 return;
1093
1094 hrtimer_cancel(&apic->lapic_timer.timer);
1095 apic->lapic_timer.tscdeadline = data;
1096 start_apic_timer(apic);
1097}
1098
Eddie Dong97222cc2007-09-12 10:58:04 +03001099void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1100{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001101 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001102
Gleb Natapovc48f1492012-08-05 15:58:33 +03001103 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001104 return;
Gleb Natapov54e98182012-08-05 15:58:32 +03001105
Avi Kivityb93463a2007-10-25 16:52:32 +02001106 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Gleb Natapovc48f1492012-08-05 15:58:33 +03001107 | (kvm_apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03001108}
1109
1110u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1111{
Eddie Dong97222cc2007-09-12 10:58:04 +03001112 u64 tpr;
1113
Gleb Natapovc48f1492012-08-05 15:58:33 +03001114 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001115 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +03001116
Gleb Natapovc48f1492012-08-05 15:58:33 +03001117 tpr = (u64) kvm_apic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03001118
1119 return (tpr & 0xf0) >> 4;
1120}
1121
1122void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1123{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001124 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001125
1126 if (!apic) {
1127 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001128 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +03001129 return;
1130 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001131
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001132 /* update jump label if enable bit changes */
1133 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1134 if (value & MSR_IA32_APICBASE_ENABLE)
1135 static_key_slow_dec_deferred(&apic_hw_disabled);
1136 else
1137 static_key_slow_inc(&apic_hw_disabled.key);
1138 }
1139
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001140 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001141 value &= ~MSR_IA32_APICBASE_BSP;
1142
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001143 vcpu->arch.apic_base = value;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001144 if (apic_x2apic_mode(apic)) {
1145 u32 id = kvm_apic_id(apic);
1146 u32 ldr = ((id & ~0xf) << 16) | (1 << (id & 0xf));
1147 apic_set_reg(apic, APIC_LDR, ldr);
1148 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001149 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03001150 MSR_IA32_APICBASE_BASE;
1151
1152 /* with FSB delivery interrupt, we can restart APIC functionality */
1153 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001154 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001155
1156}
1157
He, Qingc5ec1532007-09-03 17:07:41 +03001158void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001159{
1160 struct kvm_lapic *apic;
1161 int i;
1162
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001163 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +03001164
1165 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001166 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001167 ASSERT(apic != NULL);
1168
1169 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001170 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001171
1172 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001173 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001174
1175 for (i = 0; i < APIC_LVT_NUM; i++)
1176 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +08001177 apic_set_reg(apic, APIC_LVT0,
1178 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +03001179
1180 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001181 apic_set_spiv(apic, 0xff);
Eddie Dong97222cc2007-09-12 10:58:04 +03001182 apic_set_reg(apic, APIC_TASKPRI, 0);
1183 apic_set_reg(apic, APIC_LDR, 0);
1184 apic_set_reg(apic, APIC_ESR, 0);
1185 apic_set_reg(apic, APIC_ICR, 0);
1186 apic_set_reg(apic, APIC_ICR2, 0);
1187 apic_set_reg(apic, APIC_TDCR, 0);
1188 apic_set_reg(apic, APIC_TMICT, 0);
1189 for (i = 0; i < 8; i++) {
1190 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1191 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1192 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1193 }
Gleb Natapov33e4c682009-06-11 11:06:51 +03001194 apic->irr_pending = false;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001195 apic->isr_count = 0;
1196 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02001197 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001198 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001199 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001200 kvm_lapic_set_base(vcpu,
1201 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001202 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001203 apic_update_ppr(apic);
1204
Gleb Natapove1035712009-03-05 16:34:59 +02001205 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03001206 vcpu->arch.apic_attention = 0;
Gleb Natapove1035712009-03-05 16:34:59 +02001207
Eddie Dong97222cc2007-09-12 10:58:04 +03001208 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001209 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001210 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001211 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001212}
1213
Eddie Dong97222cc2007-09-12 10:58:04 +03001214/*
1215 *----------------------------------------------------------------------
1216 * timer interface
1217 *----------------------------------------------------------------------
1218 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001219
Avi Kivity2a6eac92012-07-26 18:01:51 +03001220static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001221{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001222 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001223}
1224
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001225int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1226{
Gleb Natapov54e98182012-08-05 15:58:32 +03001227 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001228
Gleb Natapovc48f1492012-08-05 15:58:33 +03001229 if (kvm_vcpu_has_lapic(vcpu) && apic_enabled(apic) &&
Gleb Natapov54e98182012-08-05 15:58:32 +03001230 apic_lvt_enabled(apic, APIC_LVTT))
1231 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001232
1233 return 0;
1234}
1235
Avi Kivity89342082011-11-10 14:57:21 +02001236int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001237{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001238 u32 reg = kvm_apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001239 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001240
Gleb Natapovc48f1492012-08-05 15:58:33 +03001241 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001242 vector = reg & APIC_VECTOR_MASK;
1243 mode = reg & APIC_MODE_MASK;
1244 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1245 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1246 }
1247 return 0;
1248}
1249
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001250void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001251{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001252 struct kvm_lapic *apic = vcpu->arch.apic;
1253
1254 if (apic)
1255 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001256}
1257
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001258static const struct kvm_io_device_ops apic_mmio_ops = {
1259 .read = apic_mmio_read,
1260 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001261};
1262
Avi Kivitye9d90d42012-07-26 18:01:50 +03001263static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1264{
1265 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03001266 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1267 struct kvm_vcpu *vcpu = apic->vcpu;
Avi Kivitye9d90d42012-07-26 18:01:50 +03001268 wait_queue_head_t *q = &vcpu->wq;
1269
1270 /*
1271 * There is a race window between reading and incrementing, but we do
1272 * not care about potentially losing timer events in the !reinject
1273 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1274 * in vcpu_enter_guest.
1275 */
Avi Kivity2a6eac92012-07-26 18:01:51 +03001276 if (!atomic_read(&ktimer->pending)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001277 atomic_inc(&ktimer->pending);
1278 /* FIXME: this code should not know anything about vcpus */
1279 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1280 }
1281
1282 if (waitqueue_active(q))
1283 wake_up_interruptible(q);
1284
Avi Kivity2a6eac92012-07-26 18:01:51 +03001285 if (lapic_is_periodic(apic)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001286 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1287 return HRTIMER_RESTART;
1288 } else
1289 return HRTIMER_NORESTART;
1290}
1291
Eddie Dong97222cc2007-09-12 10:58:04 +03001292int kvm_create_lapic(struct kvm_vcpu *vcpu)
1293{
1294 struct kvm_lapic *apic;
1295
1296 ASSERT(vcpu != NULL);
1297 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1298
1299 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1300 if (!apic)
1301 goto nomem;
1302
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001303 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001304
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001305 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1306 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001307 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1308 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001309 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001310 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001311 apic->vcpu = vcpu;
1312
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001313 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1314 HRTIMER_MODE_ABS);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001315 apic->lapic_timer.timer.function = apic_timer_fn;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001316
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001317 /*
1318 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1319 * thinking that APIC satet has changed.
1320 */
1321 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapov6aed64a2012-08-05 15:58:28 +03001322 kvm_lapic_set_base(vcpu,
1323 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
Eddie Dong97222cc2007-09-12 10:58:04 +03001324
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001325 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
He, Qingc5ec1532007-09-03 17:07:41 +03001326 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001327 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001328
1329 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001330nomem_free_apic:
1331 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001332nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001333 return -ENOMEM;
1334}
Eddie Dong97222cc2007-09-12 10:58:04 +03001335
1336int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1337{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001338 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001339 int highest_irr;
1340
Gleb Natapovc48f1492012-08-05 15:58:33 +03001341 if (!kvm_vcpu_has_lapic(vcpu) || !apic_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001342 return -1;
1343
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001344 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001345 highest_irr = apic_find_highest_irr(apic);
1346 if ((highest_irr == -1) ||
Gleb Natapovc48f1492012-08-05 15:58:33 +03001347 ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI)))
Eddie Dong97222cc2007-09-12 10:58:04 +03001348 return -1;
1349 return highest_irr;
1350}
1351
Qing He40487c62007-09-17 14:47:13 +08001352int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1353{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001354 u32 lvt0 = kvm_apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001355 int r = 0;
1356
Gleb Natapovc48f1492012-08-05 15:58:33 +03001357 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001358 r = 1;
1359 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1360 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1361 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001362 return r;
1363}
1364
Eddie Dong1b9778d2007-09-03 16:56:58 +03001365void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1366{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001367 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001368
Gleb Natapovc48f1492012-08-05 15:58:33 +03001369 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03001370 return;
1371
1372 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001373 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001374 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001375 }
1376}
1377
Eddie Dong97222cc2007-09-12 10:58:04 +03001378int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1379{
1380 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001381 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001382
1383 if (vector == -1)
1384 return -1;
1385
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001386 apic_set_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001387 apic_update_ppr(apic);
1388 apic_clear_irr(vector, apic);
1389 return vector;
1390}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001391
1392void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1393{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001394 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001395
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001396 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001397 kvm_apic_set_version(vcpu);
Gleb Natapovc48f1492012-08-05 15:58:33 +03001398 apic_set_spiv(apic, kvm_apic_get_reg(apic, APIC_SPIV));
Gleb Natapovfc61b802009-07-05 17:39:35 +03001399
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001400 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001401 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001402 update_divide_count(apic);
1403 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001404 apic->irr_pending = true;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001405 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
1406 apic->highest_isr_cache = -1;
Avi Kivity3842d132010-07-27 12:30:24 +03001407 kvm_make_request(KVM_REQ_EVENT, vcpu);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001408}
Eddie Donga3d7f852007-09-03 16:15:12 +03001409
Avi Kivity2f52d582008-01-16 12:49:30 +02001410void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001411{
Eddie Donga3d7f852007-09-03 16:15:12 +03001412 struct hrtimer *timer;
1413
Gleb Natapovc48f1492012-08-05 15:58:33 +03001414 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03001415 return;
1416
Gleb Natapov54e98182012-08-05 15:58:32 +03001417 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001418 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d522008-09-01 14:55:57 -07001419 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001420}
Avi Kivityb93463a2007-10-25 16:52:32 +02001421
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001422/*
1423 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1424 *
1425 * Detect whether guest triggered PV EOI since the
1426 * last entry. If yes, set EOI on guests's behalf.
1427 * Clear PV EOI in guest memory in any case.
1428 */
1429static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1430 struct kvm_lapic *apic)
1431{
1432 bool pending;
1433 int vector;
1434 /*
1435 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1436 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1437 *
1438 * KVM_APIC_PV_EOI_PENDING is unset:
1439 * -> host disabled PV EOI.
1440 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1441 * -> host enabled PV EOI, guest did not execute EOI yet.
1442 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1443 * -> host enabled PV EOI, guest executed EOI.
1444 */
1445 BUG_ON(!pv_eoi_enabled(vcpu));
1446 pending = pv_eoi_get_pending(vcpu);
1447 /*
1448 * Clear pending bit in any case: it will be set again on vmentry.
1449 * While this might not be ideal from performance point of view,
1450 * this makes sure pv eoi is only enabled when we know it's safe.
1451 */
1452 pv_eoi_clr_pending(vcpu);
1453 if (pending)
1454 return;
1455 vector = apic_set_eoi(apic);
1456 trace_kvm_pv_eoi(apic, vector);
1457}
1458
Avi Kivityb93463a2007-10-25 16:52:32 +02001459void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1460{
1461 u32 data;
1462 void *vapic;
1463
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001464 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1465 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1466
Gleb Natapov41383772012-04-19 14:06:29 +03001467 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001468 return;
1469
Cong Wang8fd75e12011-11-25 23:14:17 +08001470 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001471 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
Cong Wang8fd75e12011-11-25 23:14:17 +08001472 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001473
1474 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1475}
1476
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001477/*
1478 * apic_sync_pv_eoi_to_guest - called before vmentry
1479 *
1480 * Detect whether it's safe to enable PV EOI and
1481 * if yes do so.
1482 */
1483static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1484 struct kvm_lapic *apic)
1485{
1486 if (!pv_eoi_enabled(vcpu) ||
1487 /* IRR set or many bits in ISR: could be nested. */
1488 apic->irr_pending ||
1489 /* Cache not set: could be safe but we don't bother. */
1490 apic->highest_isr_cache == -1 ||
1491 /* Need EOI to update ioapic. */
1492 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1493 /*
1494 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1495 * so we need not do anything here.
1496 */
1497 return;
1498 }
1499
1500 pv_eoi_set_pending(apic->vcpu);
1501}
1502
Avi Kivityb93463a2007-10-25 16:52:32 +02001503void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1504{
1505 u32 data, tpr;
1506 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001507 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02001508 void *vapic;
1509
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001510 apic_sync_pv_eoi_to_guest(vcpu, apic);
1511
Gleb Natapov41383772012-04-19 14:06:29 +03001512 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001513 return;
1514
Gleb Natapovc48f1492012-08-05 15:58:33 +03001515 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02001516 max_irr = apic_find_highest_irr(apic);
1517 if (max_irr < 0)
1518 max_irr = 0;
1519 max_isr = apic_find_highest_isr(apic);
1520 if (max_isr < 0)
1521 max_isr = 0;
1522 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1523
Cong Wang8fd75e12011-11-25 23:14:17 +08001524 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001525 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
Cong Wang8fd75e12011-11-25 23:14:17 +08001526 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001527}
1528
1529void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1530{
Avi Kivityb93463a2007-10-25 16:52:32 +02001531 vcpu->arch.apic->vapic_addr = vapic_addr;
Gleb Natapov41383772012-04-19 14:06:29 +03001532 if (vapic_addr)
1533 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1534 else
1535 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Avi Kivityb93463a2007-10-25 16:52:32 +02001536}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001537
1538int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1539{
1540 struct kvm_lapic *apic = vcpu->arch.apic;
1541 u32 reg = (msr - APIC_BASE_MSR) << 4;
1542
1543 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1544 return 1;
1545
1546 /* if this is ICR write vector before command */
1547 if (msr == 0x830)
1548 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1549 return apic_reg_write(apic, reg, (u32)data);
1550}
1551
1552int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1553{
1554 struct kvm_lapic *apic = vcpu->arch.apic;
1555 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1556
1557 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1558 return 1;
1559
1560 if (apic_reg_read(apic, reg, 4, &low))
1561 return 1;
1562 if (msr == 0x830)
1563 apic_reg_read(apic, APIC_ICR2, 4, &high);
1564
1565 *data = (((u64)high) << 32) | low;
1566
1567 return 0;
1568}
Gleb Natapov10388a02010-01-17 15:51:23 +02001569
1570int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1571{
1572 struct kvm_lapic *apic = vcpu->arch.apic;
1573
Gleb Natapovc48f1492012-08-05 15:58:33 +03001574 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001575 return 1;
1576
1577 /* if this is ICR write vector before command */
1578 if (reg == APIC_ICR)
1579 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1580 return apic_reg_write(apic, reg, (u32)data);
1581}
1582
1583int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1584{
1585 struct kvm_lapic *apic = vcpu->arch.apic;
1586 u32 low, high = 0;
1587
Gleb Natapovc48f1492012-08-05 15:58:33 +03001588 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001589 return 1;
1590
1591 if (apic_reg_read(apic, reg, 4, &low))
1592 return 1;
1593 if (reg == APIC_ICR)
1594 apic_reg_read(apic, APIC_ICR2, 4, &high);
1595
1596 *data = (((u64)high) << 32) | low;
1597
1598 return 0;
1599}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001600
1601int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1602{
1603 u64 addr = data & ~KVM_MSR_ENABLED;
1604 if (!IS_ALIGNED(addr, 4))
1605 return 1;
1606
1607 vcpu->arch.pv_eoi.msr_val = data;
1608 if (!pv_eoi_enabled(vcpu))
1609 return 0;
1610 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
1611 addr);
1612}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001613
1614void kvm_lapic_init(void)
1615{
1616 /* do not patch jump label more than once per second */
1617 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001618 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001619}