blob: 6f9fd633c8884e2ae04dec3bd3c9ef5dc97168a2 [file] [log] [blame]
Eddie Dong97222cc2007-09-12 10:58:04 +03001
2/*
3 * Local APIC virtualization
4 *
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
Eddie Dong97222cc2007-09-12 10:58:04 +03009 *
10 * Authors:
11 * Dor Laor <dor.laor@qumranet.com>
12 * Gregory Haskins <ghaskins@novell.com>
13 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
14 *
15 * Based on Xen 3.1 code, Copyright (c) 2004, Intel Corporation.
16 *
17 * This work is licensed under the terms of the GNU GPL, version 2. See
18 * the COPYING file in the top-level directory.
19 */
20
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030022#include <linux/kvm.h>
23#include <linux/mm.h>
24#include <linux/highmem.h>
25#include <linux/smp.h>
26#include <linux/hrtimer.h>
27#include <linux/io.h>
28#include <linux/module.h>
Roman Zippel6f6d6a12008-05-01 04:34:28 -070029#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Eddie Dong97222cc2007-09-12 10:58:04 +030031#include <asm/processor.h>
32#include <asm/msr.h>
33#include <asm/page.h>
34#include <asm/current.h>
35#include <asm/apicdef.h>
Arun Sharma600634972011-07-26 16:09:06 -070036#include <linux/atomic.h>
Gleb Natapovc5cc4212012-08-05 15:58:30 +030037#include <linux/jump_label.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030038#include "kvm_cache_regs.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030039#include "irq.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030040#include "trace.h"
Gleb Natapovfc61b802009-07-05 17:39:35 +030041#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020042#include "cpuid.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030043
Marcelo Tosattib682b812009-02-10 20:41:41 -020044#ifndef CONFIG_X86_64
45#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
46#else
47#define mod_64(x, y) ((x) % (y))
48#endif
49
Eddie Dong97222cc2007-09-12 10:58:04 +030050#define PRId64 "d"
51#define PRIx64 "llx"
52#define PRIu64 "u"
53#define PRIo64 "o"
54
55#define APIC_BUS_CYCLE_NS 1
56
57/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
58#define apic_debug(fmt, arg...)
59
60#define APIC_LVT_NUM 6
61/* 14 is the version for Xeon and Pentium 8.4.8*/
62#define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
63#define LAPIC_MMIO_LENGTH (1 << 12)
64/* followed define is not in apicdef.h */
65#define APIC_SHORT_MASK 0xc0000
66#define APIC_DEST_NOSHORT 0x0
67#define APIC_DEST_MASK 0x800
68#define MAX_APIC_VECTOR 256
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +090069#define APIC_VECTORS_PER_REG 32
Eddie Dong97222cc2007-09-12 10:58:04 +030070
71#define VEC_POS(v) ((v) & (32 - 1))
72#define REG_POS(v) (((v) >> 5) << 4)
Zhang Xiantaoad312c72007-12-13 23:50:52 +080073
Jan Kiszka9bc57912011-09-12 14:10:22 +020074static unsigned int min_timer_period_us = 500;
75module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
76
Eddie Dong97222cc2007-09-12 10:58:04 +030077static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
78{
79 *((u32 *) (apic->regs + reg_off)) = val;
80}
81
82static inline int apic_test_and_set_vector(int vec, void *bitmap)
83{
84 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
85}
86
87static inline int apic_test_and_clear_vector(int vec, void *bitmap)
88{
89 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
90}
91
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +030092static inline int apic_test_vector(int vec, void *bitmap)
93{
94 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
95}
96
Eddie Dong97222cc2007-09-12 10:58:04 +030097static inline void apic_set_vector(int vec, void *bitmap)
98{
99 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
100}
101
102static inline void apic_clear_vector(int vec, void *bitmap)
103{
104 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
105}
106
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300107static inline int __apic_test_and_set_vector(int vec, void *bitmap)
108{
109 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
110}
111
112static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
113{
114 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
115}
116
Gleb Natapovc5cc4212012-08-05 15:58:30 +0300117struct static_key_deferred apic_hw_disabled __read_mostly;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300118struct static_key_deferred apic_sw_disabled __read_mostly;
119
120static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300121{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300122 if ((kvm_apic_get_reg(apic, APIC_SPIV) ^ val) & APIC_SPIV_APIC_ENABLED) {
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300123 if (val & APIC_SPIV_APIC_ENABLED)
124 static_key_slow_dec_deferred(&apic_sw_disabled);
125 else
126 static_key_slow_inc(&apic_sw_disabled.key);
127 }
128 apic_set_reg(apic, APIC_SPIV, val);
129}
130
Eddie Dong97222cc2007-09-12 10:58:04 +0300131static inline int apic_enabled(struct kvm_lapic *apic)
132{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300133 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
Gleb Natapov54e98182012-08-05 15:58:32 +0300134}
135
Eddie Dong97222cc2007-09-12 10:58:04 +0300136#define LVT_MASK \
137 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
138
139#define LINT_MASK \
140 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
141 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
142
143static inline int kvm_apic_id(struct kvm_lapic *apic)
144{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300145 return (kvm_apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
Eddie Dong97222cc2007-09-12 10:58:04 +0300146}
147
148static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
149{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300150 return !(kvm_apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
Eddie Dong97222cc2007-09-12 10:58:04 +0300151}
152
153static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
154{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300155 return kvm_apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
Eddie Dong97222cc2007-09-12 10:58:04 +0300156}
157
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800158static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
159{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300160 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800161 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_ONESHOT);
162}
163
Eddie Dong97222cc2007-09-12 10:58:04 +0300164static inline int apic_lvtt_period(struct kvm_lapic *apic)
165{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300166 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800167 apic->lapic_timer.timer_mode_mask) == APIC_LVT_TIMER_PERIODIC);
168}
169
170static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
171{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300172 return ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800173 apic->lapic_timer.timer_mode_mask) ==
174 APIC_LVT_TIMER_TSCDEADLINE);
Eddie Dong97222cc2007-09-12 10:58:04 +0300175}
176
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200177static inline int apic_lvt_nmi_mode(u32 lvt_val)
178{
179 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
180}
181
Gleb Natapovfc61b802009-07-05 17:39:35 +0300182void kvm_apic_set_version(struct kvm_vcpu *vcpu)
183{
184 struct kvm_lapic *apic = vcpu->arch.apic;
185 struct kvm_cpuid_entry2 *feat;
186 u32 v = APIC_VERSION;
187
Gleb Natapovc48f1492012-08-05 15:58:33 +0300188 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300189 return;
190
191 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
192 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
193 v |= APIC_LVR_DIRECTED_EOI;
194 apic_set_reg(apic, APIC_LVR, v);
195}
196
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300197static inline int apic_x2apic_mode(struct kvm_lapic *apic)
198{
199 return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
200}
201
Mathias Krausef1d24832012-08-30 01:30:18 +0200202static const unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800203 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
Eddie Dong97222cc2007-09-12 10:58:04 +0300204 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
205 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
206 LINT_MASK, LINT_MASK, /* LVT0-1 */
207 LVT_MASK /* LVTERR */
208};
209
210static int find_highest_vector(void *bitmap)
211{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900212 int vec;
213 u32 *reg;
Eddie Dong97222cc2007-09-12 10:58:04 +0300214
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900215 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
216 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
217 reg = bitmap + REG_POS(vec);
218 if (*reg)
219 return fls(*reg) - 1 + vec;
220 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300221
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900222 return -1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300223}
224
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300225static u8 count_vectors(void *bitmap)
226{
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900227 int vec;
228 u32 *reg;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300229 u8 count = 0;
Takuya Yoshikawaecba9a52012-09-05 19:30:01 +0900230
231 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
232 reg = bitmap + REG_POS(vec);
233 count += hweight32(*reg);
234 }
235
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300236 return count;
237}
238
Eddie Dong97222cc2007-09-12 10:58:04 +0300239static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
240{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300241 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300242 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
243}
244
Gleb Natapov33e4c682009-06-11 11:06:51 +0300245static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300246{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300247 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300248}
249
250static inline int apic_find_highest_irr(struct kvm_lapic *apic)
251{
252 int result;
253
Gleb Natapov33e4c682009-06-11 11:06:51 +0300254 if (!apic->irr_pending)
255 return -1;
256
257 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300258 ASSERT(result == -1 || result >= 16);
259
260 return result;
261}
262
Gleb Natapov33e4c682009-06-11 11:06:51 +0300263static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
264{
265 apic->irr_pending = false;
266 apic_clear_vector(vec, apic->regs + APIC_IRR);
267 if (apic_search_irr(apic) != -1)
268 apic->irr_pending = true;
269}
270
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300271static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
272{
273 if (!__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
274 ++apic->isr_count;
275 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
276 /*
277 * ISR (in service register) bit is set when injecting an interrupt.
278 * The highest vector is injected. Thus the latest bit set matches
279 * the highest bit in ISR.
280 */
281 apic->highest_isr_cache = vec;
282}
283
284static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
285{
286 if (__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
287 --apic->isr_count;
288 BUG_ON(apic->isr_count < 0);
289 apic->highest_isr_cache = -1;
290}
291
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800292int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
293{
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800294 int highest_irr;
295
Gleb Natapov33e4c682009-06-11 11:06:51 +0300296 /* This may race with setting of irr in __apic_accept_irq() and
297 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
298 * will cause vmexit immediately and the value will be recalculated
299 * on the next vmentry.
300 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300301 if (!kvm_vcpu_has_lapic(vcpu))
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800302 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +0300303 highest_irr = apic_find_highest_irr(vcpu->arch.apic);
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800304
305 return highest_irr;
306}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800307
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200308static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
309 int vector, int level, int trig_mode);
310
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200311int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300312{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800313 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800314
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200315 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
316 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300317}
318
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300319static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
320{
321
322 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
323 sizeof(val));
324}
325
326static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
327{
328
329 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
330 sizeof(*val));
331}
332
333static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
334{
335 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
336}
337
338static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
339{
340 u8 val;
341 if (pv_eoi_get_user(vcpu, &val) < 0)
342 apic_debug("Can't read EOI MSR value: 0x%llx\n",
343 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
344 return val & 0x1;
345}
346
347static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
348{
349 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
350 apic_debug("Can't set EOI MSR value: 0x%llx\n",
351 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
352 return;
353 }
354 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
355}
356
357static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
358{
359 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
360 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
361 (unsigned long long)vcpi->arch.pv_eoi.msr_val);
362 return;
363 }
364 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
365}
366
Eddie Dong97222cc2007-09-12 10:58:04 +0300367static inline int apic_find_highest_isr(struct kvm_lapic *apic)
368{
369 int result;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300370 if (!apic->isr_count)
371 return -1;
372 if (likely(apic->highest_isr_cache != -1))
373 return apic->highest_isr_cache;
Eddie Dong97222cc2007-09-12 10:58:04 +0300374
375 result = find_highest_vector(apic->regs + APIC_ISR);
376 ASSERT(result == -1 || result >= 16);
377
378 return result;
379}
380
381static void apic_update_ppr(struct kvm_lapic *apic)
382{
Avi Kivity3842d132010-07-27 12:30:24 +0300383 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300384 int isr;
385
Gleb Natapovc48f1492012-08-05 15:58:33 +0300386 old_ppr = kvm_apic_get_reg(apic, APIC_PROCPRI);
387 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300388 isr = apic_find_highest_isr(apic);
389 isrv = (isr != -1) ? isr : 0;
390
391 if ((tpr & 0xf0) >= (isrv & 0xf0))
392 ppr = tpr & 0xff;
393 else
394 ppr = isrv & 0xf0;
395
396 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
397 apic, ppr, isr, isrv);
398
Avi Kivity3842d132010-07-27 12:30:24 +0300399 if (old_ppr != ppr) {
400 apic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200401 if (ppr < old_ppr)
402 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300403 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300404}
405
406static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
407{
408 apic_set_reg(apic, APIC_TASKPRI, tpr);
409 apic_update_ppr(apic);
410}
411
412int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
413{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200414 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300415}
416
417int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
418{
419 int result = 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300420 u32 logical_id;
421
422 if (apic_x2apic_mode(apic)) {
Gleb Natapovc48f1492012-08-05 15:58:33 +0300423 logical_id = kvm_apic_get_reg(apic, APIC_LDR);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300424 return logical_id & mda;
425 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300426
Gleb Natapovc48f1492012-08-05 15:58:33 +0300427 logical_id = GET_APIC_LOGICAL_ID(kvm_apic_get_reg(apic, APIC_LDR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300428
Gleb Natapovc48f1492012-08-05 15:58:33 +0300429 switch (kvm_apic_get_reg(apic, APIC_DFR)) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300430 case APIC_DFR_FLAT:
431 if (logical_id & mda)
432 result = 1;
433 break;
434 case APIC_DFR_CLUSTER:
435 if (((logical_id >> 4) == (mda >> 0x4))
436 && (logical_id & mda & 0xf))
437 result = 1;
438 break;
439 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200440 apic_debug("Bad DFR vcpu %d: %08x\n",
Gleb Natapovc48f1492012-08-05 15:58:33 +0300441 apic->vcpu->vcpu_id, kvm_apic_get_reg(apic, APIC_DFR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300442 break;
443 }
444
445 return result;
446}
447
Gleb Natapov343f94f2009-03-05 16:34:54 +0200448int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300449 int short_hand, int dest, int dest_mode)
450{
451 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800452 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300453
454 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200455 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300456 target, source, dest, dest_mode, short_hand);
457
Zachary Amsdenbd371392010-06-14 11:42:15 -1000458 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300459 switch (short_hand) {
460 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200461 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300462 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200463 result = kvm_apic_match_physical_addr(target, dest);
464 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300465 /* Logical mode. */
466 result = kvm_apic_match_logical_addr(target, dest);
467 break;
468 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200469 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300470 break;
471 case APIC_DEST_ALLINC:
472 result = 1;
473 break;
474 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200475 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300476 break;
477 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200478 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
479 short_hand);
Eddie Dong97222cc2007-09-12 10:58:04 +0300480 break;
481 }
482
483 return result;
484}
485
486/*
487 * Add a pending IRQ into lapic.
488 * Return 1 if successfully added and 0 if discarded.
489 */
490static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
491 int vector, int level, int trig_mode)
492{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200493 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300494 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300495
496 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300497 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200498 vcpu->arch.apic_arb_prio++;
499 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300500 /* FIXME add logic for vcpu on reset */
501 if (unlikely(!apic_enabled(apic)))
502 break;
503
Avi Kivitya5d36f82009-12-29 12:42:16 +0200504 if (trig_mode) {
505 apic_debug("level trig mode for vector %d", vector);
506 apic_set_vector(vector, apic->regs + APIC_TMR);
507 } else
508 apic_clear_vector(vector, apic->regs + APIC_TMR);
509
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200510 result = !apic_test_and_set_irr(vector, apic);
Gleb Natapov1000ff82009-07-07 16:00:57 +0300511 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
Gleb Natapov4da74892009-08-27 16:25:04 +0300512 trig_mode, vector, !result);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200513 if (!result) {
514 if (trig_mode)
515 apic_debug("level trig mode repeatedly for "
516 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300517 break;
518 }
519
Avi Kivity3842d132010-07-27 12:30:24 +0300520 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300521 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300522 break;
523
524 case APIC_DM_REMRD:
Jan Kiszka7712de82011-09-12 11:25:51 +0200525 apic_debug("Ignoring delivery mode 3\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300526 break;
527
528 case APIC_DM_SMI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200529 apic_debug("Ignoring guest SMI\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300530 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800531
Eddie Dong97222cc2007-09-12 10:58:04 +0300532 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200533 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800534 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200535 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300536 break;
537
538 case APIC_DM_INIT:
Julian Stecklinaa52315e2012-01-16 14:02:20 +0100539 if (!trig_mode || level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200540 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300541 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300542 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300543 kvm_vcpu_kick(vcpu);
544 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200545 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
546 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300547 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300548 break;
549
550 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200551 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
552 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300553 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200554 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800555 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300556 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300557 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300558 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300559 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300560 break;
561
Jan Kiszka23930f92008-09-26 09:30:52 +0200562 case APIC_DM_EXTINT:
563 /*
564 * Should only be called by kvm_apic_local_deliver() with LVT0,
565 * before NMI watchdog was enabled. Already handled by
566 * kvm_apic_accept_pic_intr().
567 */
568 break;
569
Eddie Dong97222cc2007-09-12 10:58:04 +0300570 default:
571 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
572 delivery_mode);
573 break;
574 }
575 return result;
576}
577
Gleb Natapove1035712009-03-05 16:34:59 +0200578int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300579{
Gleb Natapove1035712009-03-05 16:34:59 +0200580 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800581}
582
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300583static int apic_set_eoi(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300584{
585 int vector = apic_find_highest_isr(apic);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300586
587 trace_kvm_eoi(apic, vector);
588
Eddie Dong97222cc2007-09-12 10:58:04 +0300589 /*
590 * Not every write EOI will has corresponding ISR,
591 * one example is when Kernel check timer on setup_IO_APIC
592 */
593 if (vector == -1)
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300594 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300595
Michael S. Tsirkin8680b942012-06-24 19:24:26 +0300596 apic_clear_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300597 apic_update_ppr(apic);
598
Gleb Natapovc48f1492012-08-05 15:58:33 +0300599 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI) &&
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300600 kvm_ioapic_handles_vector(apic->vcpu->kvm, vector)) {
601 int trigger_mode;
602 if (apic_test_vector(vector, apic->regs + APIC_TMR))
603 trigger_mode = IOAPIC_LEVEL_TRIG;
604 else
605 trigger_mode = IOAPIC_EDGE_TRIG;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300606 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
Michael S. Tsirkina0c9a8222012-04-11 18:49:55 +0300607 }
Avi Kivity3842d132010-07-27 12:30:24 +0300608 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300609 return vector;
Eddie Dong97222cc2007-09-12 10:58:04 +0300610}
611
612static void apic_send_ipi(struct kvm_lapic *apic)
613{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300614 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR);
615 u32 icr_high = kvm_apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200616 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300617
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200618 irq.vector = icr_low & APIC_VECTOR_MASK;
619 irq.delivery_mode = icr_low & APIC_MODE_MASK;
620 irq.dest_mode = icr_low & APIC_DEST_MASK;
621 irq.level = icr_low & APIC_INT_ASSERT;
622 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
623 irq.shorthand = icr_low & APIC_SHORT_MASK;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300624 if (apic_x2apic_mode(apic))
625 irq.dest_id = icr_high;
626 else
627 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300628
Gleb Natapov1000ff82009-07-07 16:00:57 +0300629 trace_kvm_apic_ipi(icr_low, irq.dest_id);
630
Eddie Dong97222cc2007-09-12 10:58:04 +0300631 apic_debug("icr_high 0x%x, icr_low 0x%x, "
632 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
633 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
Glauber Costa9b5843dd2009-04-29 17:29:09 -0400634 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200635 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
636 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300637
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200638 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Eddie Dong97222cc2007-09-12 10:58:04 +0300639}
640
641static u32 apic_get_tmcct(struct kvm_lapic *apic)
642{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200643 ktime_t remaining;
644 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200645 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300646
647 ASSERT(apic != NULL);
648
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200649 /* if initial count is 0, current count should also be 0 */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300650 if (kvm_apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200651 return 0;
652
Marcelo Tosattiace15462009-10-08 10:55:03 -0300653 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200654 if (ktime_to_ns(remaining) < 0)
655 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300656
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300657 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
658 tmcct = div64_u64(ns,
659 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300660
661 return tmcct;
662}
663
Avi Kivityb209749f2007-10-22 16:50:39 +0200664static void __report_tpr_access(struct kvm_lapic *apic, bool write)
665{
666 struct kvm_vcpu *vcpu = apic->vcpu;
667 struct kvm_run *run = vcpu->run;
668
Avi Kivitya8eeb042010-05-10 12:34:53 +0300669 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300670 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200671 run->tpr_access.is_write = write;
672}
673
674static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
675{
676 if (apic->vcpu->arch.tpr_access_reporting)
677 __report_tpr_access(apic, write);
678}
679
Eddie Dong97222cc2007-09-12 10:58:04 +0300680static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
681{
682 u32 val = 0;
683
684 if (offset >= LAPIC_MMIO_LENGTH)
685 return 0;
686
687 switch (offset) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300688 case APIC_ID:
689 if (apic_x2apic_mode(apic))
690 val = kvm_apic_id(apic);
691 else
692 val = kvm_apic_id(apic) << 24;
693 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300694 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200695 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300696 break;
697
698 case APIC_TMCCT: /* Timer CCR */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800699 if (apic_lvtt_tscdeadline(apic))
700 return 0;
701
Eddie Dong97222cc2007-09-12 10:58:04 +0300702 val = apic_get_tmcct(apic);
703 break;
Avi Kivity4a4541a2012-07-22 17:41:00 +0300704 case APIC_PROCPRI:
705 apic_update_ppr(apic);
Gleb Natapovc48f1492012-08-05 15:58:33 +0300706 val = kvm_apic_get_reg(apic, offset);
Avi Kivity4a4541a2012-07-22 17:41:00 +0300707 break;
Avi Kivityb209749f2007-10-22 16:50:39 +0200708 case APIC_TASKPRI:
709 report_tpr_access(apic, false);
710 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300711 default:
Gleb Natapovc48f1492012-08-05 15:58:33 +0300712 val = kvm_apic_get_reg(apic, offset);
Eddie Dong97222cc2007-09-12 10:58:04 +0300713 break;
714 }
715
716 return val;
717}
718
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400719static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
720{
721 return container_of(dev, struct kvm_lapic, dev);
722}
723
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300724static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
725 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300726{
Eddie Dong97222cc2007-09-12 10:58:04 +0300727 unsigned char alignment = offset & 0xf;
728 u32 result;
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800729 /* this bitmask has a bit cleared for each reserved register */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300730 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300731
732 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300733 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
734 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300735 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300736 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300737
738 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300739 apic_debug("KVM_APIC_READ: read reserved register %x\n",
740 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300741 return 1;
742 }
743
Eddie Dong97222cc2007-09-12 10:58:04 +0300744 result = __apic_read(apic, offset & ~0xf);
745
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300746 trace_kvm_apic_read(offset, result);
747
Eddie Dong97222cc2007-09-12 10:58:04 +0300748 switch (len) {
749 case 1:
750 case 2:
751 case 4:
752 memcpy(data, (char *)&result + alignment, len);
753 break;
754 default:
755 printk(KERN_ERR "Local APIC read with len = %x, "
756 "should be 1,2, or 4 instead\n", len);
757 break;
758 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300759 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300760}
761
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300762static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
763{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300764 return kvm_apic_hw_enabled(apic) &&
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300765 addr >= apic->base_address &&
766 addr < apic->base_address + LAPIC_MMIO_LENGTH;
767}
768
769static int apic_mmio_read(struct kvm_io_device *this,
770 gpa_t address, int len, void *data)
771{
772 struct kvm_lapic *apic = to_lapic(this);
773 u32 offset = address - apic->base_address;
774
775 if (!apic_mmio_in_range(apic, address))
776 return -EOPNOTSUPP;
777
778 apic_reg_read(apic, offset, len, data);
779
780 return 0;
781}
782
Eddie Dong97222cc2007-09-12 10:58:04 +0300783static void update_divide_count(struct kvm_lapic *apic)
784{
785 u32 tmp1, tmp2, tdcr;
786
Gleb Natapovc48f1492012-08-05 15:58:33 +0300787 tdcr = kvm_apic_get_reg(apic, APIC_TDCR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300788 tmp1 = tdcr & 0xf;
789 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300790 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300791
792 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843dd2009-04-29 17:29:09 -0400793 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300794}
795
796static void start_apic_timer(struct kvm_lapic *apic)
797{
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800798 ktime_t now;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300799 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200800
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800801 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic)) {
Guo Chaod5b0b5b2012-06-28 15:22:57 +0800802 /* lapic timer in oneshot or periodic mode */
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800803 now = apic->lapic_timer.timer.base->get_time();
Gleb Natapovc48f1492012-08-05 15:58:33 +0300804 apic->lapic_timer.period = (u64)kvm_apic_get_reg(apic, APIC_TMICT)
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800805 * APIC_BUS_CYCLE_NS * apic->divide_count;
Jan Kiszka9bc57912011-09-12 14:10:22 +0200806
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800807 if (!apic->lapic_timer.period)
808 return;
809 /*
810 * Do not allow the guest to program periodic timers with small
811 * interval, since the hrtimers are not throttled by the host
812 * scheduler.
813 */
814 if (apic_lvtt_period(apic)) {
815 s64 min_period = min_timer_period_us * 1000LL;
816
817 if (apic->lapic_timer.period < min_period) {
818 pr_info_ratelimited(
819 "kvm: vcpu %i: requested %lld ns "
820 "lapic timer period limited to %lld ns\n",
821 apic->vcpu->vcpu_id,
822 apic->lapic_timer.period, min_period);
823 apic->lapic_timer.period = min_period;
824 }
Jan Kiszka9bc57912011-09-12 14:10:22 +0200825 }
Avi Kivity0b975a32008-02-24 14:37:50 +0200826
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800827 hrtimer_start(&apic->lapic_timer.timer,
828 ktime_add_ns(now, apic->lapic_timer.period),
829 HRTIMER_MODE_ABS);
Eddie Dong97222cc2007-09-12 10:58:04 +0300830
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800831 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
Eddie Dong97222cc2007-09-12 10:58:04 +0300832 PRIx64 ", "
833 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800834 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300835 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
Gleb Natapovc48f1492012-08-05 15:58:33 +0300836 kvm_apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300837 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300838 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300839 apic->lapic_timer.period)));
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800840 } else if (apic_lvtt_tscdeadline(apic)) {
841 /* lapic timer in tsc deadline mode */
842 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
843 u64 ns = 0;
844 struct kvm_vcpu *vcpu = apic->vcpu;
Zachary Amsdencc578282012-02-03 15:43:50 -0200845 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800846 unsigned long flags;
847
848 if (unlikely(!tscdeadline || !this_tsc_khz))
849 return;
850
851 local_irq_save(flags);
852
853 now = apic->lapic_timer.timer.base->get_time();
854 guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu);
855 if (likely(tscdeadline > guest_tsc)) {
856 ns = (tscdeadline - guest_tsc) * 1000000ULL;
857 do_div(ns, this_tsc_khz);
858 }
859 hrtimer_start(&apic->lapic_timer.timer,
860 ktime_add_ns(now, ns), HRTIMER_MODE_ABS);
861
862 local_irq_restore(flags);
863 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300864}
865
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200866static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
867{
Gleb Natapovc48f1492012-08-05 15:58:33 +0300868 int nmi_wd_enabled = apic_lvt_nmi_mode(kvm_apic_get_reg(apic, APIC_LVT0));
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200869
870 if (apic_lvt_nmi_mode(lvt0_val)) {
871 if (!nmi_wd_enabled) {
872 apic_debug("Receive NMI setting on APIC_LVT0 "
873 "for cpu %d\n", apic->vcpu->vcpu_id);
874 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
875 }
876 } else if (nmi_wd_enabled)
877 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
878}
879
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300880static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300881{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300882 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300883
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300884 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300885
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300886 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300887 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300888 if (!apic_x2apic_mode(apic))
889 apic_set_reg(apic, APIC_ID, val);
890 else
891 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300892 break;
893
894 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +0200895 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +0300896 apic_set_tpr(apic, val & 0xff);
897 break;
898
899 case APIC_EOI:
900 apic_set_eoi(apic);
901 break;
902
903 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300904 if (!apic_x2apic_mode(apic))
905 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
906 else
907 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300908 break;
909
910 case APIC_DFR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300911 if (!apic_x2apic_mode(apic))
912 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
913 else
914 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300915 break;
916
Gleb Natapovfc61b802009-07-05 17:39:35 +0300917 case APIC_SPIV: {
918 u32 mask = 0x3ff;
Gleb Natapovc48f1492012-08-05 15:58:33 +0300919 if (kvm_apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
Gleb Natapovfc61b802009-07-05 17:39:35 +0300920 mask |= APIC_SPIV_DIRECTED_EOI;
Gleb Natapovf8c1ea12012-08-05 15:58:31 +0300921 apic_set_spiv(apic, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +0300922 if (!(val & APIC_SPIV_APIC_ENABLED)) {
923 int i;
924 u32 lvt_val;
925
926 for (i = 0; i < APIC_LVT_NUM; i++) {
Gleb Natapovc48f1492012-08-05 15:58:33 +0300927 lvt_val = kvm_apic_get_reg(apic,
Eddie Dong97222cc2007-09-12 10:58:04 +0300928 APIC_LVTT + 0x10 * i);
929 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
930 lvt_val | APIC_LVT_MASKED);
931 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300932 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300933
934 }
935 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300936 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300937 case APIC_ICR:
938 /* No delay here, so we always clear the pending bit */
939 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
940 apic_send_ipi(apic);
941 break;
942
943 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300944 if (!apic_x2apic_mode(apic))
945 val &= 0xff000000;
946 apic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300947 break;
948
Jan Kiszka23930f92008-09-26 09:30:52 +0200949 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200950 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300951 case APIC_LVTTHMR:
952 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +0300953 case APIC_LVT1:
954 case APIC_LVTERR:
955 /* TODO: Check vector */
Gleb Natapovc48f1492012-08-05 15:58:33 +0300956 if (!kvm_apic_sw_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +0300957 val |= APIC_LVT_MASKED;
958
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300959 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
960 apic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300961
962 break;
963
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800964 case APIC_LVTT:
Gleb Natapovc48f1492012-08-05 15:58:33 +0300965 if ((kvm_apic_get_reg(apic, APIC_LVTT) &
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800966 apic->lapic_timer.timer_mode_mask) !=
967 (val & apic->lapic_timer.timer_mode_mask))
968 hrtimer_cancel(&apic->lapic_timer.timer);
969
Gleb Natapovc48f1492012-08-05 15:58:33 +0300970 if (!kvm_apic_sw_enabled(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800971 val |= APIC_LVT_MASKED;
972 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
973 apic_set_reg(apic, APIC_LVTT, val);
974 break;
975
Eddie Dong97222cc2007-09-12 10:58:04 +0300976 case APIC_TMICT:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800977 if (apic_lvtt_tscdeadline(apic))
978 break;
979
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300980 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300981 apic_set_reg(apic, APIC_TMICT, val);
982 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300983 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300984
985 case APIC_TDCR:
986 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +0200987 apic_debug("KVM_WRITE:TDCR %x\n", val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300988 apic_set_reg(apic, APIC_TDCR, val);
989 update_divide_count(apic);
990 break;
991
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300992 case APIC_ESR:
993 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +0200994 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300995 ret = 1;
996 }
997 break;
998
999 case APIC_SELF_IPI:
1000 if (apic_x2apic_mode(apic)) {
1001 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1002 } else
1003 ret = 1;
1004 break;
Eddie Dong97222cc2007-09-12 10:58:04 +03001005 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001006 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +03001007 break;
1008 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001009 if (ret)
1010 apic_debug("Local APIC Write to read-only register %x\n", reg);
1011 return ret;
1012}
1013
1014static int apic_mmio_write(struct kvm_io_device *this,
1015 gpa_t address, int len, const void *data)
1016{
1017 struct kvm_lapic *apic = to_lapic(this);
1018 unsigned int offset = address - apic->base_address;
1019 u32 val;
1020
1021 if (!apic_mmio_in_range(apic, address))
1022 return -EOPNOTSUPP;
1023
1024 /*
1025 * APIC register must be aligned on 128-bits boundary.
1026 * 32/64/128 bits registers must be accessed thru 32 bits.
1027 * Refer SDM 8.4.1
1028 */
1029 if (len != 4 || (offset & 0xf)) {
1030 /* Don't shout loud, $infamous_os would cause only noise. */
1031 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
Sheng Yang756975b2009-07-06 11:05:39 +08001032 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001033 }
1034
1035 val = *(u32*)data;
1036
1037 /* too common printing */
1038 if (offset != APIC_EOI)
1039 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1040 "0x%x\n", __func__, offset, len, val);
1041
1042 apic_reg_write(apic, offset & 0xff0, val);
1043
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03001044 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001045}
1046
Kevin Tian58fbbf22011-08-30 13:56:17 +03001047void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1048{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001049 if (kvm_vcpu_has_lapic(vcpu))
Kevin Tian58fbbf22011-08-30 13:56:17 +03001050 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1051}
1052EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1053
Rusty Russelld5894442007-10-08 10:48:30 +10001054void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001055{
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001056 struct kvm_lapic *apic = vcpu->arch.apic;
1057
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001058 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001059 return;
1060
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001061 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001062
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001063 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
1064 static_key_slow_dec_deferred(&apic_hw_disabled);
1065
Gleb Natapovc48f1492012-08-05 15:58:33 +03001066 if (!(kvm_apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED))
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001067 static_key_slow_dec_deferred(&apic_sw_disabled);
Eddie Dong97222cc2007-09-12 10:58:04 +03001068
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001069 if (apic->regs)
1070 free_page((unsigned long)apic->regs);
1071
1072 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001073}
1074
1075/*
1076 *----------------------------------------------------------------------
1077 * LAPIC interface
1078 *----------------------------------------------------------------------
1079 */
1080
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001081u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
1082{
1083 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001084
Gleb Natapovc48f1492012-08-05 15:58:33 +03001085 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001086 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001087 return 0;
1088
1089 return apic->lapic_timer.tscdeadline;
1090}
1091
1092void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
1093{
1094 struct kvm_lapic *apic = vcpu->arch.apic;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001095
Gleb Natapovc48f1492012-08-05 15:58:33 +03001096 if (!kvm_vcpu_has_lapic(vcpu) || apic_lvtt_oneshot(apic) ||
Gleb Natapov54e98182012-08-05 15:58:32 +03001097 apic_lvtt_period(apic))
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001098 return;
1099
1100 hrtimer_cancel(&apic->lapic_timer.timer);
1101 apic->lapic_timer.tscdeadline = data;
1102 start_apic_timer(apic);
1103}
1104
Eddie Dong97222cc2007-09-12 10:58:04 +03001105void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
1106{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001107 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001108
Gleb Natapovc48f1492012-08-05 15:58:33 +03001109 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001110 return;
Gleb Natapov54e98182012-08-05 15:58:32 +03001111
Avi Kivityb93463a2007-10-25 16:52:32 +02001112 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
Gleb Natapovc48f1492012-08-05 15:58:33 +03001113 | (kvm_apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +03001114}
1115
1116u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
1117{
Eddie Dong97222cc2007-09-12 10:58:04 +03001118 u64 tpr;
1119
Gleb Natapovc48f1492012-08-05 15:58:33 +03001120 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001121 return 0;
Gleb Natapov54e98182012-08-05 15:58:32 +03001122
Gleb Natapovc48f1492012-08-05 15:58:33 +03001123 tpr = (u64) kvm_apic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +03001124
1125 return (tpr & 0xf0) >> 4;
1126}
1127
1128void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
1129{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001130 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001131
1132 if (!apic) {
1133 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001134 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +03001135 return;
1136 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001137
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001138 /* update jump label if enable bit changes */
1139 if ((vcpu->arch.apic_base ^ value) & MSR_IA32_APICBASE_ENABLE) {
1140 if (value & MSR_IA32_APICBASE_ENABLE)
1141 static_key_slow_dec_deferred(&apic_hw_disabled);
1142 else
1143 static_key_slow_inc(&apic_hw_disabled.key);
1144 }
1145
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001146 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +03001147 value &= ~MSR_IA32_APICBASE_BSP;
1148
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001149 vcpu->arch.apic_base = value;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001150 if (apic_x2apic_mode(apic)) {
1151 u32 id = kvm_apic_id(apic);
1152 u32 ldr = ((id & ~0xf) << 16) | (1 << (id & 0xf));
1153 apic_set_reg(apic, APIC_LDR, ldr);
1154 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001155 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +03001156 MSR_IA32_APICBASE_BASE;
1157
1158 /* with FSB delivery interrupt, we can restart APIC functionality */
1159 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001160 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001161
1162}
1163
He, Qingc5ec1532007-09-03 17:07:41 +03001164void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +03001165{
1166 struct kvm_lapic *apic;
1167 int i;
1168
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001169 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +03001170
1171 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001172 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001173 ASSERT(apic != NULL);
1174
1175 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001176 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +03001177
1178 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001179 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +03001180
1181 for (i = 0; i < APIC_LVT_NUM; i++)
1182 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +08001183 apic_set_reg(apic, APIC_LVT0,
1184 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +03001185
1186 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001187 apic_set_spiv(apic, 0xff);
Eddie Dong97222cc2007-09-12 10:58:04 +03001188 apic_set_reg(apic, APIC_TASKPRI, 0);
1189 apic_set_reg(apic, APIC_LDR, 0);
1190 apic_set_reg(apic, APIC_ESR, 0);
1191 apic_set_reg(apic, APIC_ICR, 0);
1192 apic_set_reg(apic, APIC_ICR2, 0);
1193 apic_set_reg(apic, APIC_TDCR, 0);
1194 apic_set_reg(apic, APIC_TMICT, 0);
1195 for (i = 0; i < 8; i++) {
1196 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
1197 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
1198 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
1199 }
Gleb Natapov33e4c682009-06-11 11:06:51 +03001200 apic->irr_pending = false;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001201 apic->isr_count = 0;
1202 apic->highest_isr_cache = -1;
Kevin Pedrettib33ac882007-10-21 08:54:53 +02001203 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001204 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001205 if (kvm_vcpu_is_bsp(vcpu))
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001206 kvm_lapic_set_base(vcpu,
1207 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001208 vcpu->arch.pv_eoi.msr_val = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +03001209 apic_update_ppr(apic);
1210
Gleb Natapove1035712009-03-05 16:34:59 +02001211 vcpu->arch.apic_arb_prio = 0;
Gleb Natapov41383772012-04-19 14:06:29 +03001212 vcpu->arch.apic_attention = 0;
Gleb Natapove1035712009-03-05 16:34:59 +02001213
Eddie Dong97222cc2007-09-12 10:58:04 +03001214 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001215 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001216 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001217 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001218}
1219
Eddie Dong97222cc2007-09-12 10:58:04 +03001220/*
1221 *----------------------------------------------------------------------
1222 * timer interface
1223 *----------------------------------------------------------------------
1224 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001225
Avi Kivity2a6eac92012-07-26 18:01:51 +03001226static bool lapic_is_periodic(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +03001227{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001228 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001229}
1230
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001231int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1232{
Gleb Natapov54e98182012-08-05 15:58:32 +03001233 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001234
Gleb Natapovc48f1492012-08-05 15:58:33 +03001235 if (kvm_vcpu_has_lapic(vcpu) && apic_enabled(apic) &&
Gleb Natapov54e98182012-08-05 15:58:32 +03001236 apic_lvt_enabled(apic, APIC_LVTT))
1237 return atomic_read(&apic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001238
1239 return 0;
1240}
1241
Avi Kivity89342082011-11-10 14:57:21 +02001242int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001243{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001244 u32 reg = kvm_apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001245 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001246
Gleb Natapovc48f1492012-08-05 15:58:33 +03001247 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001248 vector = reg & APIC_VECTOR_MASK;
1249 mode = reg & APIC_MODE_MASK;
1250 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1251 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1252 }
1253 return 0;
1254}
1255
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001256void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001257{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001258 struct kvm_lapic *apic = vcpu->arch.apic;
1259
1260 if (apic)
1261 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001262}
1263
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001264static const struct kvm_io_device_ops apic_mmio_ops = {
1265 .read = apic_mmio_read,
1266 .write = apic_mmio_write,
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001267};
1268
Avi Kivitye9d90d42012-07-26 18:01:50 +03001269static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
1270{
1271 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
Avi Kivity2a6eac92012-07-26 18:01:51 +03001272 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
1273 struct kvm_vcpu *vcpu = apic->vcpu;
Avi Kivitye9d90d42012-07-26 18:01:50 +03001274 wait_queue_head_t *q = &vcpu->wq;
1275
1276 /*
1277 * There is a race window between reading and incrementing, but we do
1278 * not care about potentially losing timer events in the !reinject
1279 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
1280 * in vcpu_enter_guest.
1281 */
Avi Kivity2a6eac92012-07-26 18:01:51 +03001282 if (!atomic_read(&ktimer->pending)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001283 atomic_inc(&ktimer->pending);
1284 /* FIXME: this code should not know anything about vcpus */
1285 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1286 }
1287
1288 if (waitqueue_active(q))
1289 wake_up_interruptible(q);
1290
Avi Kivity2a6eac92012-07-26 18:01:51 +03001291 if (lapic_is_periodic(apic)) {
Avi Kivitye9d90d42012-07-26 18:01:50 +03001292 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
1293 return HRTIMER_RESTART;
1294 } else
1295 return HRTIMER_NORESTART;
1296}
1297
Eddie Dong97222cc2007-09-12 10:58:04 +03001298int kvm_create_lapic(struct kvm_vcpu *vcpu)
1299{
1300 struct kvm_lapic *apic;
1301
1302 ASSERT(vcpu != NULL);
1303 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1304
1305 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1306 if (!apic)
1307 goto nomem;
1308
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001309 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001310
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001311 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1312 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001313 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1314 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001315 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001316 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001317 apic->vcpu = vcpu;
1318
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001319 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1320 HRTIMER_MODE_ABS);
Avi Kivitye9d90d42012-07-26 18:01:50 +03001321 apic->lapic_timer.timer.function = apic_timer_fn;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001322
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001323 /*
1324 * APIC is created enabled. This will prevent kvm_lapic_set_base from
1325 * thinking that APIC satet has changed.
1326 */
1327 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
Gleb Natapov6aed64a2012-08-05 15:58:28 +03001328 kvm_lapic_set_base(vcpu,
1329 APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE);
Eddie Dong97222cc2007-09-12 10:58:04 +03001330
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001331 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
He, Qingc5ec1532007-09-03 17:07:41 +03001332 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c42009-06-01 12:54:50 -04001333 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001334
1335 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001336nomem_free_apic:
1337 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001338nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001339 return -ENOMEM;
1340}
Eddie Dong97222cc2007-09-12 10:58:04 +03001341
1342int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1343{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001344 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001345 int highest_irr;
1346
Gleb Natapovc48f1492012-08-05 15:58:33 +03001347 if (!kvm_vcpu_has_lapic(vcpu) || !apic_enabled(apic))
Eddie Dong97222cc2007-09-12 10:58:04 +03001348 return -1;
1349
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001350 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001351 highest_irr = apic_find_highest_irr(apic);
1352 if ((highest_irr == -1) ||
Gleb Natapovc48f1492012-08-05 15:58:33 +03001353 ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI)))
Eddie Dong97222cc2007-09-12 10:58:04 +03001354 return -1;
1355 return highest_irr;
1356}
1357
Qing He40487c62007-09-17 14:47:13 +08001358int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1359{
Gleb Natapovc48f1492012-08-05 15:58:33 +03001360 u32 lvt0 = kvm_apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001361 int r = 0;
1362
Gleb Natapovc48f1492012-08-05 15:58:33 +03001363 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001364 r = 1;
1365 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1366 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1367 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001368 return r;
1369}
1370
Eddie Dong1b9778d2007-09-03 16:56:58 +03001371void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1372{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001373 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001374
Gleb Natapovc48f1492012-08-05 15:58:33 +03001375 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03001376 return;
1377
1378 if (atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001379 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001380 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001381 }
1382}
1383
Eddie Dong97222cc2007-09-12 10:58:04 +03001384int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1385{
1386 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001387 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001388
1389 if (vector == -1)
1390 return -1;
1391
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001392 apic_set_isr(vector, apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001393 apic_update_ppr(apic);
1394 apic_clear_irr(vector, apic);
1395 return vector;
1396}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001397
Gleb Natapov64eb0622012-08-08 15:24:36 +03001398void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
1399 struct kvm_lapic_state *s)
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001400{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001401 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001402
Gleb Natapov5dbc8f32012-08-05 15:58:27 +03001403 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
Gleb Natapov64eb0622012-08-08 15:24:36 +03001404 /* set SPIV separately to get count of SW disabled APICs right */
1405 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
1406 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
Gleb Natapovfc61b802009-07-05 17:39:35 +03001407 kvm_apic_set_version(vcpu);
1408
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001409 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001410 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001411 update_divide_count(apic);
1412 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001413 apic->irr_pending = true;
Michael S. Tsirkin8680b942012-06-24 19:24:26 +03001414 apic->isr_count = count_vectors(apic->regs + APIC_ISR);
1415 apic->highest_isr_cache = -1;
Avi Kivity3842d132010-07-27 12:30:24 +03001416 kvm_make_request(KVM_REQ_EVENT, vcpu);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001417}
Eddie Donga3d7f852007-09-03 16:15:12 +03001418
Avi Kivity2f52d582008-01-16 12:49:30 +02001419void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001420{
Eddie Donga3d7f852007-09-03 16:15:12 +03001421 struct hrtimer *timer;
1422
Gleb Natapovc48f1492012-08-05 15:58:33 +03001423 if (!kvm_vcpu_has_lapic(vcpu))
Eddie Donga3d7f852007-09-03 16:15:12 +03001424 return;
1425
Gleb Natapov54e98182012-08-05 15:58:32 +03001426 timer = &vcpu->arch.apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001427 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d522008-09-01 14:55:57 -07001428 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001429}
Avi Kivityb93463a2007-10-25 16:52:32 +02001430
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001431/*
1432 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
1433 *
1434 * Detect whether guest triggered PV EOI since the
1435 * last entry. If yes, set EOI on guests's behalf.
1436 * Clear PV EOI in guest memory in any case.
1437 */
1438static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
1439 struct kvm_lapic *apic)
1440{
1441 bool pending;
1442 int vector;
1443 /*
1444 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
1445 * and KVM_PV_EOI_ENABLED in guest memory as follows:
1446 *
1447 * KVM_APIC_PV_EOI_PENDING is unset:
1448 * -> host disabled PV EOI.
1449 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
1450 * -> host enabled PV EOI, guest did not execute EOI yet.
1451 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
1452 * -> host enabled PV EOI, guest executed EOI.
1453 */
1454 BUG_ON(!pv_eoi_enabled(vcpu));
1455 pending = pv_eoi_get_pending(vcpu);
1456 /*
1457 * Clear pending bit in any case: it will be set again on vmentry.
1458 * While this might not be ideal from performance point of view,
1459 * this makes sure pv eoi is only enabled when we know it's safe.
1460 */
1461 pv_eoi_clr_pending(vcpu);
1462 if (pending)
1463 return;
1464 vector = apic_set_eoi(apic);
1465 trace_kvm_pv_eoi(apic, vector);
1466}
1467
Avi Kivityb93463a2007-10-25 16:52:32 +02001468void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1469{
1470 u32 data;
1471 void *vapic;
1472
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001473 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
1474 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
1475
Gleb Natapov41383772012-04-19 14:06:29 +03001476 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001477 return;
1478
Cong Wang8fd75e12011-11-25 23:14:17 +08001479 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001480 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
Cong Wang8fd75e12011-11-25 23:14:17 +08001481 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001482
1483 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1484}
1485
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001486/*
1487 * apic_sync_pv_eoi_to_guest - called before vmentry
1488 *
1489 * Detect whether it's safe to enable PV EOI and
1490 * if yes do so.
1491 */
1492static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
1493 struct kvm_lapic *apic)
1494{
1495 if (!pv_eoi_enabled(vcpu) ||
1496 /* IRR set or many bits in ISR: could be nested. */
1497 apic->irr_pending ||
1498 /* Cache not set: could be safe but we don't bother. */
1499 apic->highest_isr_cache == -1 ||
1500 /* Need EOI to update ioapic. */
1501 kvm_ioapic_handles_vector(vcpu->kvm, apic->highest_isr_cache)) {
1502 /*
1503 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
1504 * so we need not do anything here.
1505 */
1506 return;
1507 }
1508
1509 pv_eoi_set_pending(apic->vcpu);
1510}
1511
Avi Kivityb93463a2007-10-25 16:52:32 +02001512void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1513{
1514 u32 data, tpr;
1515 int max_irr, max_isr;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001516 struct kvm_lapic *apic = vcpu->arch.apic;
Avi Kivityb93463a2007-10-25 16:52:32 +02001517 void *vapic;
1518
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001519 apic_sync_pv_eoi_to_guest(vcpu, apic);
1520
Gleb Natapov41383772012-04-19 14:06:29 +03001521 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
Avi Kivityb93463a2007-10-25 16:52:32 +02001522 return;
1523
Gleb Natapovc48f1492012-08-05 15:58:33 +03001524 tpr = kvm_apic_get_reg(apic, APIC_TASKPRI) & 0xff;
Avi Kivityb93463a2007-10-25 16:52:32 +02001525 max_irr = apic_find_highest_irr(apic);
1526 if (max_irr < 0)
1527 max_irr = 0;
1528 max_isr = apic_find_highest_isr(apic);
1529 if (max_isr < 0)
1530 max_isr = 0;
1531 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1532
Cong Wang8fd75e12011-11-25 23:14:17 +08001533 vapic = kmap_atomic(vcpu->arch.apic->vapic_page);
Avi Kivityb93463a2007-10-25 16:52:32 +02001534 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
Cong Wang8fd75e12011-11-25 23:14:17 +08001535 kunmap_atomic(vapic);
Avi Kivityb93463a2007-10-25 16:52:32 +02001536}
1537
1538void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1539{
Avi Kivityb93463a2007-10-25 16:52:32 +02001540 vcpu->arch.apic->vapic_addr = vapic_addr;
Gleb Natapov41383772012-04-19 14:06:29 +03001541 if (vapic_addr)
1542 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
1543 else
1544 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
Avi Kivityb93463a2007-10-25 16:52:32 +02001545}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001546
1547int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1548{
1549 struct kvm_lapic *apic = vcpu->arch.apic;
1550 u32 reg = (msr - APIC_BASE_MSR) << 4;
1551
1552 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1553 return 1;
1554
1555 /* if this is ICR write vector before command */
1556 if (msr == 0x830)
1557 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1558 return apic_reg_write(apic, reg, (u32)data);
1559}
1560
1561int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1562{
1563 struct kvm_lapic *apic = vcpu->arch.apic;
1564 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1565
1566 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1567 return 1;
1568
1569 if (apic_reg_read(apic, reg, 4, &low))
1570 return 1;
1571 if (msr == 0x830)
1572 apic_reg_read(apic, APIC_ICR2, 4, &high);
1573
1574 *data = (((u64)high) << 32) | low;
1575
1576 return 0;
1577}
Gleb Natapov10388a02010-01-17 15:51:23 +02001578
1579int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1580{
1581 struct kvm_lapic *apic = vcpu->arch.apic;
1582
Gleb Natapovc48f1492012-08-05 15:58:33 +03001583 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001584 return 1;
1585
1586 /* if this is ICR write vector before command */
1587 if (reg == APIC_ICR)
1588 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1589 return apic_reg_write(apic, reg, (u32)data);
1590}
1591
1592int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1593{
1594 struct kvm_lapic *apic = vcpu->arch.apic;
1595 u32 low, high = 0;
1596
Gleb Natapovc48f1492012-08-05 15:58:33 +03001597 if (!kvm_vcpu_has_lapic(vcpu))
Gleb Natapov10388a02010-01-17 15:51:23 +02001598 return 1;
1599
1600 if (apic_reg_read(apic, reg, 4, &low))
1601 return 1;
1602 if (reg == APIC_ICR)
1603 apic_reg_read(apic, APIC_ICR2, 4, &high);
1604
1605 *data = (((u64)high) << 32) | low;
1606
1607 return 0;
1608}
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03001609
1610int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data)
1611{
1612 u64 addr = data & ~KVM_MSR_ENABLED;
1613 if (!IS_ALIGNED(addr, 4))
1614 return 1;
1615
1616 vcpu->arch.pv_eoi.msr_val = data;
1617 if (!pv_eoi_enabled(vcpu))
1618 return 0;
1619 return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
1620 addr);
1621}
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001622
1623void kvm_lapic_init(void)
1624{
1625 /* do not patch jump label more than once per second */
1626 jump_label_rate_limit(&apic_hw_disabled, HZ);
Gleb Natapovf8c1ea12012-08-05 15:58:31 +03001627 jump_label_rate_limit(&apic_sw_disabled, HZ);
Gleb Natapovc5cc4212012-08-05 15:58:30 +03001628}