blob: 2fb20caae5d8b7453efa989ac44e1ba029577b26 [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>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030037#include "kvm_cache_regs.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030038#include "irq.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030039#include "trace.h"
Gleb Natapovfc61b802009-07-05 17:39:35 +030040#include "x86.h"
Eddie Dong97222cc2007-09-12 10:58:04 +030041
Marcelo Tosattib682b812009-02-10 20:41:41 -020042#ifndef CONFIG_X86_64
43#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
44#else
45#define mod_64(x, y) ((x) % (y))
46#endif
47
Eddie Dong97222cc2007-09-12 10:58:04 +030048#define PRId64 "d"
49#define PRIx64 "llx"
50#define PRIu64 "u"
51#define PRIo64 "o"
52
53#define APIC_BUS_CYCLE_NS 1
54
55/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
56#define apic_debug(fmt, arg...)
57
58#define APIC_LVT_NUM 6
59/* 14 is the version for Xeon and Pentium 8.4.8*/
60#define APIC_VERSION (0x14UL | ((APIC_LVT_NUM - 1) << 16))
61#define LAPIC_MMIO_LENGTH (1 << 12)
62/* followed define is not in apicdef.h */
63#define APIC_SHORT_MASK 0xc0000
64#define APIC_DEST_NOSHORT 0x0
65#define APIC_DEST_MASK 0x800
66#define MAX_APIC_VECTOR 256
67
68#define VEC_POS(v) ((v) & (32 - 1))
69#define REG_POS(v) (((v) >> 5) << 4)
Zhang Xiantaoad312c72007-12-13 23:50:52 +080070
Jan Kiszka9bc57912011-09-12 14:10:22 +020071static unsigned int min_timer_period_us = 500;
72module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
73
Eddie Dong97222cc2007-09-12 10:58:04 +030074static inline u32 apic_get_reg(struct kvm_lapic *apic, int reg_off)
75{
76 return *((u32 *) (apic->regs + reg_off));
77}
78
79static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
80{
81 *((u32 *) (apic->regs + reg_off)) = val;
82}
83
84static inline int apic_test_and_set_vector(int vec, void *bitmap)
85{
86 return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
87}
88
89static inline int apic_test_and_clear_vector(int vec, void *bitmap)
90{
91 return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
92}
93
94static inline void apic_set_vector(int vec, void *bitmap)
95{
96 set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
97}
98
99static inline void apic_clear_vector(int vec, void *bitmap)
100{
101 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
102}
103
104static inline int apic_hw_enabled(struct kvm_lapic *apic)
105{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800106 return (apic)->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE;
Eddie Dong97222cc2007-09-12 10:58:04 +0300107}
108
109static inline int apic_sw_enabled(struct kvm_lapic *apic)
110{
111 return apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_APIC_ENABLED;
112}
113
114static inline int apic_enabled(struct kvm_lapic *apic)
115{
116 return apic_sw_enabled(apic) && apic_hw_enabled(apic);
117}
118
119#define LVT_MASK \
120 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
121
122#define LINT_MASK \
123 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
124 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
125
126static inline int kvm_apic_id(struct kvm_lapic *apic)
127{
128 return (apic_get_reg(apic, APIC_ID) >> 24) & 0xff;
129}
130
131static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
132{
133 return !(apic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
134}
135
136static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
137{
138 return apic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
139}
140
141static inline int apic_lvtt_period(struct kvm_lapic *apic)
142{
143 return apic_get_reg(apic, APIC_LVTT) & APIC_LVT_TIMER_PERIODIC;
144}
145
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200146static inline int apic_lvt_nmi_mode(u32 lvt_val)
147{
148 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
149}
150
Gleb Natapovfc61b802009-07-05 17:39:35 +0300151void kvm_apic_set_version(struct kvm_vcpu *vcpu)
152{
153 struct kvm_lapic *apic = vcpu->arch.apic;
154 struct kvm_cpuid_entry2 *feat;
155 u32 v = APIC_VERSION;
156
157 if (!irqchip_in_kernel(vcpu->kvm))
158 return;
159
160 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
161 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))))
162 v |= APIC_LVR_DIRECTED_EOI;
163 apic_set_reg(apic, APIC_LVR, v);
164}
165
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300166static inline int apic_x2apic_mode(struct kvm_lapic *apic)
167{
168 return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
169}
170
Eddie Dong97222cc2007-09-12 10:58:04 +0300171static unsigned int apic_lvt_mask[APIC_LVT_NUM] = {
172 LVT_MASK | APIC_LVT_TIMER_PERIODIC, /* LVTT */
173 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
174 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
175 LINT_MASK, LINT_MASK, /* LVT0-1 */
176 LVT_MASK /* LVTERR */
177};
178
179static int find_highest_vector(void *bitmap)
180{
181 u32 *word = bitmap;
182 int word_offset = MAX_APIC_VECTOR >> 5;
183
184 while ((word_offset != 0) && (word[(--word_offset) << 2] == 0))
185 continue;
186
187 if (likely(!word_offset && !word[0]))
188 return -1;
189 else
190 return fls(word[word_offset << 2]) - 1 + (word_offset << 5);
191}
192
193static inline int apic_test_and_set_irr(int vec, struct kvm_lapic *apic)
194{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300195 apic->irr_pending = true;
Eddie Dong97222cc2007-09-12 10:58:04 +0300196 return apic_test_and_set_vector(vec, apic->regs + APIC_IRR);
197}
198
Gleb Natapov33e4c682009-06-11 11:06:51 +0300199static inline int apic_search_irr(struct kvm_lapic *apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300200{
Gleb Natapov33e4c682009-06-11 11:06:51 +0300201 return find_highest_vector(apic->regs + APIC_IRR);
Eddie Dong97222cc2007-09-12 10:58:04 +0300202}
203
204static inline int apic_find_highest_irr(struct kvm_lapic *apic)
205{
206 int result;
207
Gleb Natapov33e4c682009-06-11 11:06:51 +0300208 if (!apic->irr_pending)
209 return -1;
210
211 result = apic_search_irr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300212 ASSERT(result == -1 || result >= 16);
213
214 return result;
215}
216
Gleb Natapov33e4c682009-06-11 11:06:51 +0300217static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
218{
219 apic->irr_pending = false;
220 apic_clear_vector(vec, apic->regs + APIC_IRR);
221 if (apic_search_irr(apic) != -1)
222 apic->irr_pending = true;
223}
224
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800225int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
226{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800227 struct kvm_lapic *apic = vcpu->arch.apic;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800228 int highest_irr;
229
Gleb Natapov33e4c682009-06-11 11:06:51 +0300230 /* This may race with setting of irr in __apic_accept_irq() and
231 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
232 * will cause vmexit immediately and the value will be recalculated
233 * on the next vmentry.
234 */
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800235 if (!apic)
236 return 0;
237 highest_irr = apic_find_highest_irr(apic);
238
239 return highest_irr;
240}
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800241
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200242static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
243 int vector, int level, int trig_mode);
244
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200245int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq)
Eddie Dong97222cc2007-09-12 10:58:04 +0300246{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800247 struct kvm_lapic *apic = vcpu->arch.apic;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800248
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200249 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
250 irq->level, irq->trig_mode);
Eddie Dong97222cc2007-09-12 10:58:04 +0300251}
252
253static inline int apic_find_highest_isr(struct kvm_lapic *apic)
254{
255 int result;
256
257 result = find_highest_vector(apic->regs + APIC_ISR);
258 ASSERT(result == -1 || result >= 16);
259
260 return result;
261}
262
263static void apic_update_ppr(struct kvm_lapic *apic)
264{
Avi Kivity3842d132010-07-27 12:30:24 +0300265 u32 tpr, isrv, ppr, old_ppr;
Eddie Dong97222cc2007-09-12 10:58:04 +0300266 int isr;
267
Avi Kivity3842d132010-07-27 12:30:24 +0300268 old_ppr = apic_get_reg(apic, APIC_PROCPRI);
Eddie Dong97222cc2007-09-12 10:58:04 +0300269 tpr = apic_get_reg(apic, APIC_TASKPRI);
270 isr = apic_find_highest_isr(apic);
271 isrv = (isr != -1) ? isr : 0;
272
273 if ((tpr & 0xf0) >= (isrv & 0xf0))
274 ppr = tpr & 0xff;
275 else
276 ppr = isrv & 0xf0;
277
278 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
279 apic, ppr, isr, isrv);
280
Avi Kivity3842d132010-07-27 12:30:24 +0300281 if (old_ppr != ppr) {
282 apic_set_reg(apic, APIC_PROCPRI, ppr);
Avi Kivity83bcacb2010-10-25 15:23:55 +0200283 if (ppr < old_ppr)
284 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +0300285 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300286}
287
288static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
289{
290 apic_set_reg(apic, APIC_TASKPRI, tpr);
291 apic_update_ppr(apic);
292}
293
294int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest)
295{
Gleb Natapov343f94f2009-03-05 16:34:54 +0200296 return dest == 0xff || kvm_apic_id(apic) == dest;
Eddie Dong97222cc2007-09-12 10:58:04 +0300297}
298
299int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
300{
301 int result = 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300302 u32 logical_id;
303
304 if (apic_x2apic_mode(apic)) {
305 logical_id = apic_get_reg(apic, APIC_LDR);
306 return logical_id & mda;
307 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300308
309 logical_id = GET_APIC_LOGICAL_ID(apic_get_reg(apic, APIC_LDR));
310
311 switch (apic_get_reg(apic, APIC_DFR)) {
312 case APIC_DFR_FLAT:
313 if (logical_id & mda)
314 result = 1;
315 break;
316 case APIC_DFR_CLUSTER:
317 if (((logical_id >> 4) == (mda >> 0x4))
318 && (logical_id & mda & 0xf))
319 result = 1;
320 break;
321 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200322 apic_debug("Bad DFR vcpu %d: %08x\n",
323 apic->vcpu->vcpu_id, apic_get_reg(apic, APIC_DFR));
Eddie Dong97222cc2007-09-12 10:58:04 +0300324 break;
325 }
326
327 return result;
328}
329
Gleb Natapov343f94f2009-03-05 16:34:54 +0200330int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
Eddie Dong97222cc2007-09-12 10:58:04 +0300331 int short_hand, int dest, int dest_mode)
332{
333 int result = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800334 struct kvm_lapic *target = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300335
336 apic_debug("target %p, source %p, dest 0x%x, "
Gleb Natapov343f94f2009-03-05 16:34:54 +0200337 "dest_mode 0x%x, short_hand 0x%x\n",
Eddie Dong97222cc2007-09-12 10:58:04 +0300338 target, source, dest, dest_mode, short_hand);
339
Zachary Amsdenbd371392010-06-14 11:42:15 -1000340 ASSERT(target);
Eddie Dong97222cc2007-09-12 10:58:04 +0300341 switch (short_hand) {
342 case APIC_DEST_NOSHORT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200343 if (dest_mode == 0)
Eddie Dong97222cc2007-09-12 10:58:04 +0300344 /* Physical mode. */
Gleb Natapov343f94f2009-03-05 16:34:54 +0200345 result = kvm_apic_match_physical_addr(target, dest);
346 else
Eddie Dong97222cc2007-09-12 10:58:04 +0300347 /* Logical mode. */
348 result = kvm_apic_match_logical_addr(target, dest);
349 break;
350 case APIC_DEST_SELF:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200351 result = (target == source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300352 break;
353 case APIC_DEST_ALLINC:
354 result = 1;
355 break;
356 case APIC_DEST_ALLBUT:
Gleb Natapov343f94f2009-03-05 16:34:54 +0200357 result = (target != source);
Eddie Dong97222cc2007-09-12 10:58:04 +0300358 break;
359 default:
Jan Kiszka7712de82011-09-12 11:25:51 +0200360 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
361 short_hand);
Eddie Dong97222cc2007-09-12 10:58:04 +0300362 break;
363 }
364
365 return result;
366}
367
368/*
369 * Add a pending IRQ into lapic.
370 * Return 1 if successfully added and 0 if discarded.
371 */
372static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
373 int vector, int level, int trig_mode)
374{
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200375 int result = 0;
He, Qingc5ec1532007-09-03 17:07:41 +0300376 struct kvm_vcpu *vcpu = apic->vcpu;
Eddie Dong97222cc2007-09-12 10:58:04 +0300377
378 switch (delivery_mode) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300379 case APIC_DM_LOWEST:
Gleb Natapove1035712009-03-05 16:34:59 +0200380 vcpu->arch.apic_arb_prio++;
381 case APIC_DM_FIXED:
Eddie Dong97222cc2007-09-12 10:58:04 +0300382 /* FIXME add logic for vcpu on reset */
383 if (unlikely(!apic_enabled(apic)))
384 break;
385
Avi Kivitya5d36f82009-12-29 12:42:16 +0200386 if (trig_mode) {
387 apic_debug("level trig mode for vector %d", vector);
388 apic_set_vector(vector, apic->regs + APIC_TMR);
389 } else
390 apic_clear_vector(vector, apic->regs + APIC_TMR);
391
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200392 result = !apic_test_and_set_irr(vector, apic);
Gleb Natapov1000ff82009-07-07 16:00:57 +0300393 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
Gleb Natapov4da74892009-08-27 16:25:04 +0300394 trig_mode, vector, !result);
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200395 if (!result) {
396 if (trig_mode)
397 apic_debug("level trig mode repeatedly for "
398 "vector %d", vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300399 break;
400 }
401
Avi Kivity3842d132010-07-27 12:30:24 +0300402 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300403 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300404 break;
405
406 case APIC_DM_REMRD:
Jan Kiszka7712de82011-09-12 11:25:51 +0200407 apic_debug("Ignoring delivery mode 3\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300408 break;
409
410 case APIC_DM_SMI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200411 apic_debug("Ignoring guest SMI\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300412 break;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800413
Eddie Dong97222cc2007-09-12 10:58:04 +0300414 case APIC_DM_NMI:
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200415 result = 1;
Sheng Yang3419ffc2008-05-15 09:52:48 +0800416 kvm_inject_nmi(vcpu);
Jan Kiszka26df99c2008-09-26 09:30:54 +0200417 kvm_vcpu_kick(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300418 break;
419
420 case APIC_DM_INIT:
He, Qingc5ec1532007-09-03 17:07:41 +0300421 if (level) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200422 result = 1;
Avi Kivitya4535292008-04-13 17:54:35 +0300423 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300424 kvm_make_request(KVM_REQ_EVENT, vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300425 kvm_vcpu_kick(vcpu);
426 } else {
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200427 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
428 vcpu->vcpu_id);
He, Qingc5ec1532007-09-03 17:07:41 +0300429 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300430 break;
431
432 case APIC_DM_STARTUP:
Jan Kiszka1b10bf32008-09-30 10:41:06 +0200433 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
434 vcpu->vcpu_id, vector);
Avi Kivitya4535292008-04-13 17:54:35 +0300435 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
Gleb Natapov6da7e3f2009-03-05 16:34:44 +0200436 result = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800437 vcpu->arch.sipi_vector = vector;
Avi Kivitya4535292008-04-13 17:54:35 +0300438 vcpu->arch.mp_state = KVM_MP_STATE_SIPI_RECEIVED;
Avi Kivity3842d132010-07-27 12:30:24 +0300439 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -0300440 kvm_vcpu_kick(vcpu);
He, Qingc5ec1532007-09-03 17:07:41 +0300441 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300442 break;
443
Jan Kiszka23930f92008-09-26 09:30:52 +0200444 case APIC_DM_EXTINT:
445 /*
446 * Should only be called by kvm_apic_local_deliver() with LVT0,
447 * before NMI watchdog was enabled. Already handled by
448 * kvm_apic_accept_pic_intr().
449 */
450 break;
451
Eddie Dong97222cc2007-09-12 10:58:04 +0300452 default:
453 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
454 delivery_mode);
455 break;
456 }
457 return result;
458}
459
Gleb Natapove1035712009-03-05 16:34:59 +0200460int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
Eddie Dong97222cc2007-09-12 10:58:04 +0300461{
Gleb Natapove1035712009-03-05 16:34:59 +0200462 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
Zhang Xiantao8be54532007-12-02 22:35:57 +0800463}
464
Eddie Dong97222cc2007-09-12 10:58:04 +0300465static void apic_set_eoi(struct kvm_lapic *apic)
466{
467 int vector = apic_find_highest_isr(apic);
Marcelo Tosattif5244722008-07-26 17:01:00 -0300468 int trigger_mode;
Eddie Dong97222cc2007-09-12 10:58:04 +0300469 /*
470 * Not every write EOI will has corresponding ISR,
471 * one example is when Kernel check timer on setup_IO_APIC
472 */
473 if (vector == -1)
474 return;
475
476 apic_clear_vector(vector, apic->regs + APIC_ISR);
477 apic_update_ppr(apic);
478
479 if (apic_test_and_clear_vector(vector, apic->regs + APIC_TMR))
Marcelo Tosattif5244722008-07-26 17:01:00 -0300480 trigger_mode = IOAPIC_LEVEL_TRIG;
481 else
482 trigger_mode = IOAPIC_EDGE_TRIG;
Gleb Natapoveba02262009-08-24 11:54:25 +0300483 if (!(apic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI))
Gleb Natapovfc61b802009-07-05 17:39:35 +0300484 kvm_ioapic_update_eoi(apic->vcpu->kvm, vector, trigger_mode);
Avi Kivity3842d132010-07-27 12:30:24 +0300485 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300486}
487
488static void apic_send_ipi(struct kvm_lapic *apic)
489{
490 u32 icr_low = apic_get_reg(apic, APIC_ICR);
491 u32 icr_high = apic_get_reg(apic, APIC_ICR2);
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200492 struct kvm_lapic_irq irq;
Eddie Dong97222cc2007-09-12 10:58:04 +0300493
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200494 irq.vector = icr_low & APIC_VECTOR_MASK;
495 irq.delivery_mode = icr_low & APIC_MODE_MASK;
496 irq.dest_mode = icr_low & APIC_DEST_MASK;
497 irq.level = icr_low & APIC_INT_ASSERT;
498 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
499 irq.shorthand = icr_low & APIC_SHORT_MASK;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300500 if (apic_x2apic_mode(apic))
501 irq.dest_id = icr_high;
502 else
503 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
Eddie Dong97222cc2007-09-12 10:58:04 +0300504
Gleb Natapov1000ff82009-07-07 16:00:57 +0300505 trace_kvm_apic_ipi(icr_low, irq.dest_id);
506
Eddie Dong97222cc2007-09-12 10:58:04 +0300507 apic_debug("icr_high 0x%x, icr_low 0x%x, "
508 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
509 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400510 icr_high, icr_low, irq.shorthand, irq.dest_id,
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200511 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
512 irq.vector);
Eddie Dong97222cc2007-09-12 10:58:04 +0300513
Gleb Natapov58c2dde2009-03-05 16:35:04 +0200514 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq);
Eddie Dong97222cc2007-09-12 10:58:04 +0300515}
516
517static u32 apic_get_tmcct(struct kvm_lapic *apic)
518{
Marcelo Tosattib682b812009-02-10 20:41:41 -0200519 ktime_t remaining;
520 s64 ns;
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200521 u32 tmcct;
Eddie Dong97222cc2007-09-12 10:58:04 +0300522
523 ASSERT(apic != NULL);
524
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200525 /* if initial count is 0, current count should also be 0 */
Marcelo Tosattib682b812009-02-10 20:41:41 -0200526 if (apic_get_reg(apic, APIC_TMICT) == 0)
Kevin Pedretti9da8f4e2007-10-21 08:55:50 +0200527 return 0;
528
Marcelo Tosattiace15462009-10-08 10:55:03 -0300529 remaining = hrtimer_get_remaining(&apic->lapic_timer.timer);
Marcelo Tosattib682b812009-02-10 20:41:41 -0200530 if (ktime_to_ns(remaining) < 0)
531 remaining = ktime_set(0, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300532
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300533 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
534 tmcct = div64_u64(ns,
535 (APIC_BUS_CYCLE_NS * apic->divide_count));
Eddie Dong97222cc2007-09-12 10:58:04 +0300536
537 return tmcct;
538}
539
Avi Kivityb209749f2007-10-22 16:50:39 +0200540static void __report_tpr_access(struct kvm_lapic *apic, bool write)
541{
542 struct kvm_vcpu *vcpu = apic->vcpu;
543 struct kvm_run *run = vcpu->run;
544
Avi Kivitya8eeb042010-05-10 12:34:53 +0300545 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300546 run->tpr_access.rip = kvm_rip_read(vcpu);
Avi Kivityb209749f2007-10-22 16:50:39 +0200547 run->tpr_access.is_write = write;
548}
549
550static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
551{
552 if (apic->vcpu->arch.tpr_access_reporting)
553 __report_tpr_access(apic, write);
554}
555
Eddie Dong97222cc2007-09-12 10:58:04 +0300556static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
557{
558 u32 val = 0;
559
560 if (offset >= LAPIC_MMIO_LENGTH)
561 return 0;
562
563 switch (offset) {
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300564 case APIC_ID:
565 if (apic_x2apic_mode(apic))
566 val = kvm_apic_id(apic);
567 else
568 val = kvm_apic_id(apic) << 24;
569 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300570 case APIC_ARBPRI:
Jan Kiszka7712de82011-09-12 11:25:51 +0200571 apic_debug("Access APIC ARBPRI register which is for P6\n");
Eddie Dong97222cc2007-09-12 10:58:04 +0300572 break;
573
574 case APIC_TMCCT: /* Timer CCR */
575 val = apic_get_tmcct(apic);
576 break;
577
Avi Kivityb209749f2007-10-22 16:50:39 +0200578 case APIC_TASKPRI:
579 report_tpr_access(apic, false);
580 /* fall thru */
Eddie Dong97222cc2007-09-12 10:58:04 +0300581 default:
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800582 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300583 val = apic_get_reg(apic, offset);
584 break;
585 }
586
587 return val;
588}
589
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400590static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
591{
592 return container_of(dev, struct kvm_lapic, dev);
593}
594
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300595static int apic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
596 void *data)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300597{
Eddie Dong97222cc2007-09-12 10:58:04 +0300598 unsigned char alignment = offset & 0xf;
599 u32 result;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300600 /* this bitmask has a bit cleared for each reserver register */
601 static const u64 rmask = 0x43ff01ffffffe70cULL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300602
603 if ((alignment + len) > 4) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300604 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
605 offset, len);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300606 return 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300607 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300608
609 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
Gleb Natapov4088bb32009-07-08 11:26:54 +0300610 apic_debug("KVM_APIC_READ: read reserved register %x\n",
611 offset);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300612 return 1;
613 }
614
Eddie Dong97222cc2007-09-12 10:58:04 +0300615 result = __apic_read(apic, offset & ~0xf);
616
Marcelo Tosatti229456f2009-06-17 09:22:14 -0300617 trace_kvm_apic_read(offset, result);
618
Eddie Dong97222cc2007-09-12 10:58:04 +0300619 switch (len) {
620 case 1:
621 case 2:
622 case 4:
623 memcpy(data, (char *)&result + alignment, len);
624 break;
625 default:
626 printk(KERN_ERR "Local APIC read with len = %x, "
627 "should be 1,2, or 4 instead\n", len);
628 break;
629 }
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300630 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300631}
632
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300633static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
634{
635 return apic_hw_enabled(apic) &&
636 addr >= apic->base_address &&
637 addr < apic->base_address + LAPIC_MMIO_LENGTH;
638}
639
640static int apic_mmio_read(struct kvm_io_device *this,
641 gpa_t address, int len, void *data)
642{
643 struct kvm_lapic *apic = to_lapic(this);
644 u32 offset = address - apic->base_address;
645
646 if (!apic_mmio_in_range(apic, address))
647 return -EOPNOTSUPP;
648
649 apic_reg_read(apic, offset, len, data);
650
651 return 0;
652}
653
Eddie Dong97222cc2007-09-12 10:58:04 +0300654static void update_divide_count(struct kvm_lapic *apic)
655{
656 u32 tmp1, tmp2, tdcr;
657
658 tdcr = apic_get_reg(apic, APIC_TDCR);
659 tmp1 = tdcr & 0xf;
660 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300661 apic->divide_count = 0x1 << (tmp2 & 0x7);
Eddie Dong97222cc2007-09-12 10:58:04 +0300662
663 apic_debug("timer divide count is 0x%x\n",
Glauber Costa9b5843d2009-04-29 17:29:09 -0400664 apic->divide_count);
Eddie Dong97222cc2007-09-12 10:58:04 +0300665}
666
667static void start_apic_timer(struct kvm_lapic *apic)
668{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300669 ktime_t now = apic->lapic_timer.timer.base->get_time();
Eddie Dong97222cc2007-09-12 10:58:04 +0300670
Aurelien Jarnob2d83cf2009-09-25 11:09:37 +0200671 apic->lapic_timer.period = (u64)apic_get_reg(apic, APIC_TMICT) *
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300672 APIC_BUS_CYCLE_NS * apic->divide_count;
673 atomic_set(&apic->lapic_timer.pending, 0);
Avi Kivity0b975a32008-02-24 14:37:50 +0200674
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300675 if (!apic->lapic_timer.period)
Avi Kivity0b975a32008-02-24 14:37:50 +0200676 return;
Marcelo Tosatti14448852009-07-27 23:41:01 -0300677 /*
678 * Do not allow the guest to program periodic timers with small
679 * interval, since the hrtimers are not throttled by the host
680 * scheduler.
681 */
682 if (apic_lvtt_period(apic)) {
Jan Kiszka9bc57912011-09-12 14:10:22 +0200683 s64 min_period = min_timer_period_us * 1000LL;
684
685 if (apic->lapic_timer.period < min_period) {
686 pr_info_ratelimited(
687 "kvm: vcpu %i: requested %lld ns "
688 "lapic timer period limited to %lld ns\n",
689 apic->vcpu->vcpu_id, apic->lapic_timer.period,
690 min_period);
691 apic->lapic_timer.period = min_period;
692 }
Marcelo Tosatti14448852009-07-27 23:41:01 -0300693 }
Avi Kivity0b975a32008-02-24 14:37:50 +0200694
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300695 hrtimer_start(&apic->lapic_timer.timer,
696 ktime_add_ns(now, apic->lapic_timer.period),
Eddie Dong97222cc2007-09-12 10:58:04 +0300697 HRTIMER_MODE_ABS);
698
699 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
700 PRIx64 ", "
701 "timer initial count 0x%x, period %lldns, "
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800702 "expire @ 0x%016" PRIx64 ".\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +0300703 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
704 apic_get_reg(apic, APIC_TMICT),
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300705 apic->lapic_timer.period,
Eddie Dong97222cc2007-09-12 10:58:04 +0300706 ktime_to_ns(ktime_add_ns(now,
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300707 apic->lapic_timer.period)));
Eddie Dong97222cc2007-09-12 10:58:04 +0300708}
709
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200710static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
711{
712 int nmi_wd_enabled = apic_lvt_nmi_mode(apic_get_reg(apic, APIC_LVT0));
713
714 if (apic_lvt_nmi_mode(lvt0_val)) {
715 if (!nmi_wd_enabled) {
716 apic_debug("Receive NMI setting on APIC_LVT0 "
717 "for cpu %d\n", apic->vcpu->vcpu_id);
718 apic->vcpu->kvm->arch.vapics_in_nmi_mode++;
719 }
720 } else if (nmi_wd_enabled)
721 apic->vcpu->kvm->arch.vapics_in_nmi_mode--;
722}
723
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300724static int apic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
Eddie Dong97222cc2007-09-12 10:58:04 +0300725{
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300726 int ret = 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300727
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300728 trace_kvm_apic_write(reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300729
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300730 switch (reg) {
Eddie Dong97222cc2007-09-12 10:58:04 +0300731 case APIC_ID: /* Local APIC ID */
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300732 if (!apic_x2apic_mode(apic))
733 apic_set_reg(apic, APIC_ID, val);
734 else
735 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300736 break;
737
738 case APIC_TASKPRI:
Avi Kivityb209749f2007-10-22 16:50:39 +0200739 report_tpr_access(apic, true);
Eddie Dong97222cc2007-09-12 10:58:04 +0300740 apic_set_tpr(apic, val & 0xff);
741 break;
742
743 case APIC_EOI:
744 apic_set_eoi(apic);
745 break;
746
747 case APIC_LDR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300748 if (!apic_x2apic_mode(apic))
749 apic_set_reg(apic, APIC_LDR, val & APIC_LDR_MASK);
750 else
751 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300752 break;
753
754 case APIC_DFR:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300755 if (!apic_x2apic_mode(apic))
756 apic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
757 else
758 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300759 break;
760
Gleb Natapovfc61b802009-07-05 17:39:35 +0300761 case APIC_SPIV: {
762 u32 mask = 0x3ff;
763 if (apic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
764 mask |= APIC_SPIV_DIRECTED_EOI;
765 apic_set_reg(apic, APIC_SPIV, val & mask);
Eddie Dong97222cc2007-09-12 10:58:04 +0300766 if (!(val & APIC_SPIV_APIC_ENABLED)) {
767 int i;
768 u32 lvt_val;
769
770 for (i = 0; i < APIC_LVT_NUM; i++) {
771 lvt_val = apic_get_reg(apic,
772 APIC_LVTT + 0x10 * i);
773 apic_set_reg(apic, APIC_LVTT + 0x10 * i,
774 lvt_val | APIC_LVT_MASKED);
775 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300776 atomic_set(&apic->lapic_timer.pending, 0);
Eddie Dong97222cc2007-09-12 10:58:04 +0300777
778 }
779 break;
Gleb Natapovfc61b802009-07-05 17:39:35 +0300780 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300781 case APIC_ICR:
782 /* No delay here, so we always clear the pending bit */
783 apic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
784 apic_send_ipi(apic);
785 break;
786
787 case APIC_ICR2:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300788 if (!apic_x2apic_mode(apic))
789 val &= 0xff000000;
790 apic_set_reg(apic, APIC_ICR2, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300791 break;
792
Jan Kiszka23930f92008-09-26 09:30:52 +0200793 case APIC_LVT0:
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200794 apic_manage_nmi_watchdog(apic, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300795 case APIC_LVTT:
796 case APIC_LVTTHMR:
797 case APIC_LVTPC:
Eddie Dong97222cc2007-09-12 10:58:04 +0300798 case APIC_LVT1:
799 case APIC_LVTERR:
800 /* TODO: Check vector */
801 if (!apic_sw_enabled(apic))
802 val |= APIC_LVT_MASKED;
803
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300804 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
805 apic_set_reg(apic, reg, val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300806
807 break;
808
809 case APIC_TMICT:
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300810 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300811 apic_set_reg(apic, APIC_TMICT, val);
812 start_apic_timer(apic);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300813 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300814
815 case APIC_TDCR:
816 if (val & 4)
Jan Kiszka7712de82011-09-12 11:25:51 +0200817 apic_debug("KVM_WRITE:TDCR %x\n", val);
Eddie Dong97222cc2007-09-12 10:58:04 +0300818 apic_set_reg(apic, APIC_TDCR, val);
819 update_divide_count(apic);
820 break;
821
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300822 case APIC_ESR:
823 if (apic_x2apic_mode(apic) && val != 0) {
Jan Kiszka7712de82011-09-12 11:25:51 +0200824 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300825 ret = 1;
826 }
827 break;
828
829 case APIC_SELF_IPI:
830 if (apic_x2apic_mode(apic)) {
831 apic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
832 } else
833 ret = 1;
834 break;
Eddie Dong97222cc2007-09-12 10:58:04 +0300835 default:
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300836 ret = 1;
Eddie Dong97222cc2007-09-12 10:58:04 +0300837 break;
838 }
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300839 if (ret)
840 apic_debug("Local APIC Write to read-only register %x\n", reg);
841 return ret;
842}
843
844static int apic_mmio_write(struct kvm_io_device *this,
845 gpa_t address, int len, const void *data)
846{
847 struct kvm_lapic *apic = to_lapic(this);
848 unsigned int offset = address - apic->base_address;
849 u32 val;
850
851 if (!apic_mmio_in_range(apic, address))
852 return -EOPNOTSUPP;
853
854 /*
855 * APIC register must be aligned on 128-bits boundary.
856 * 32/64/128 bits registers must be accessed thru 32 bits.
857 * Refer SDM 8.4.1
858 */
859 if (len != 4 || (offset & 0xf)) {
860 /* Don't shout loud, $infamous_os would cause only noise. */
861 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
Sheng Yang756975b2009-07-06 11:05:39 +0800862 return 0;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300863 }
864
865 val = *(u32*)data;
866
867 /* too common printing */
868 if (offset != APIC_EOI)
869 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
870 "0x%x\n", __func__, offset, len, val);
871
872 apic_reg_write(apic, offset & 0xff0, val);
873
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300874 return 0;
Eddie Dong97222cc2007-09-12 10:58:04 +0300875}
876
Kevin Tian58fbbf262011-08-30 13:56:17 +0300877void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
878{
879 struct kvm_lapic *apic = vcpu->arch.apic;
880
881 if (apic)
882 apic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
883}
884EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
885
Rusty Russelld5894442007-10-08 10:48:30 +1000886void kvm_free_lapic(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +0300887{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800888 if (!vcpu->arch.apic)
Eddie Dong97222cc2007-09-12 10:58:04 +0300889 return;
890
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300891 hrtimer_cancel(&vcpu->arch.apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300892
Takuya Yoshikawaafc20182011-03-05 12:40:20 +0900893 if (vcpu->arch.apic->regs)
894 free_page((unsigned long)vcpu->arch.apic->regs);
Eddie Dong97222cc2007-09-12 10:58:04 +0300895
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800896 kfree(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +0300897}
898
899/*
900 *----------------------------------------------------------------------
901 * LAPIC interface
902 *----------------------------------------------------------------------
903 */
904
905void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
906{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800907 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300908
909 if (!apic)
910 return;
Avi Kivityb93463a2007-10-25 16:52:32 +0200911 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
912 | (apic_get_reg(apic, APIC_TASKPRI) & 4));
Eddie Dong97222cc2007-09-12 10:58:04 +0300913}
914
915u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
916{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800917 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300918 u64 tpr;
919
920 if (!apic)
921 return 0;
922 tpr = (u64) apic_get_reg(apic, APIC_TASKPRI);
923
924 return (tpr & 0xf0) >> 4;
925}
926
927void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
928{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800929 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300930
931 if (!apic) {
932 value |= MSR_IA32_APICBASE_BSP;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800933 vcpu->arch.apic_base = value;
Eddie Dong97222cc2007-09-12 10:58:04 +0300934 return;
935 }
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300936
937 if (!kvm_vcpu_is_bsp(apic->vcpu))
Eddie Dong97222cc2007-09-12 10:58:04 +0300938 value &= ~MSR_IA32_APICBASE_BSP;
939
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800940 vcpu->arch.apic_base = value;
Gleb Natapov0105d1a2009-07-05 17:39:36 +0300941 if (apic_x2apic_mode(apic)) {
942 u32 id = kvm_apic_id(apic);
943 u32 ldr = ((id & ~0xf) << 16) | (1 << (id & 0xf));
944 apic_set_reg(apic, APIC_LDR, ldr);
945 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800946 apic->base_address = apic->vcpu->arch.apic_base &
Eddie Dong97222cc2007-09-12 10:58:04 +0300947 MSR_IA32_APICBASE_BASE;
948
949 /* with FSB delivery interrupt, we can restart APIC functionality */
950 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800951 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +0300952
953}
954
He, Qingc5ec1532007-09-03 17:07:41 +0300955void kvm_lapic_reset(struct kvm_vcpu *vcpu)
Eddie Dong97222cc2007-09-12 10:58:04 +0300956{
957 struct kvm_lapic *apic;
958 int i;
959
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800960 apic_debug("%s\n", __func__);
Eddie Dong97222cc2007-09-12 10:58:04 +0300961
962 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800963 apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +0300964 ASSERT(apic != NULL);
965
966 /* Stop the timer in case it's a reset to an active apic */
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300967 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong97222cc2007-09-12 10:58:04 +0300968
969 apic_set_reg(apic, APIC_ID, vcpu->vcpu_id << 24);
Gleb Natapovfc61b802009-07-05 17:39:35 +0300970 kvm_apic_set_version(apic->vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300971
972 for (i = 0; i < APIC_LVT_NUM; i++)
973 apic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
Qing He40487c62007-09-17 14:47:13 +0800974 apic_set_reg(apic, APIC_LVT0,
975 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
Eddie Dong97222cc2007-09-12 10:58:04 +0300976
977 apic_set_reg(apic, APIC_DFR, 0xffffffffU);
978 apic_set_reg(apic, APIC_SPIV, 0xff);
979 apic_set_reg(apic, APIC_TASKPRI, 0);
980 apic_set_reg(apic, APIC_LDR, 0);
981 apic_set_reg(apic, APIC_ESR, 0);
982 apic_set_reg(apic, APIC_ICR, 0);
983 apic_set_reg(apic, APIC_ICR2, 0);
984 apic_set_reg(apic, APIC_TDCR, 0);
985 apic_set_reg(apic, APIC_TMICT, 0);
986 for (i = 0; i < 8; i++) {
987 apic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
988 apic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
989 apic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
990 }
Gleb Natapov33e4c682009-06-11 11:06:51 +0300991 apic->irr_pending = false;
Kevin Pedrettib33ac882007-10-21 08:54:53 +0200992 update_divide_count(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300993 atomic_set(&apic->lapic_timer.pending, 0);
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300994 if (kvm_vcpu_is_bsp(vcpu))
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800995 vcpu->arch.apic_base |= MSR_IA32_APICBASE_BSP;
Eddie Dong97222cc2007-09-12 10:58:04 +0300996 apic_update_ppr(apic);
997
Gleb Natapove1035712009-03-05 16:34:59 +0200998 vcpu->arch.apic_arb_prio = 0;
999
Eddie Dong97222cc2007-09-12 10:58:04 +03001000 apic_debug(KERN_INFO "%s: vcpu=%p, id=%d, base_msr="
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001001 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
Eddie Dong97222cc2007-09-12 10:58:04 +03001002 vcpu, kvm_apic_id(apic),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001003 vcpu->arch.apic_base, apic->base_address);
Eddie Dong97222cc2007-09-12 10:58:04 +03001004}
1005
Gleb Natapov343f94f2009-03-05 16:34:54 +02001006bool kvm_apic_present(struct kvm_vcpu *vcpu)
1007{
1008 return vcpu->arch.apic && apic_hw_enabled(vcpu->arch.apic);
1009}
1010
Eddie Dong97222cc2007-09-12 10:58:04 +03001011int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
1012{
Gleb Natapov343f94f2009-03-05 16:34:54 +02001013 return kvm_apic_present(vcpu) && apic_sw_enabled(vcpu->arch.apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001014}
1015
1016/*
1017 *----------------------------------------------------------------------
1018 * timer interface
1019 *----------------------------------------------------------------------
1020 */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001021
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001022static bool lapic_is_periodic(struct kvm_timer *ktimer)
Eddie Dong97222cc2007-09-12 10:58:04 +03001023{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001024 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic,
1025 lapic_timer);
1026 return apic_lvtt_period(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001027}
1028
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001029int apic_has_pending_timer(struct kvm_vcpu *vcpu)
1030{
1031 struct kvm_lapic *lapic = vcpu->arch.apic;
1032
Marcelo Tosatti54aaace2008-05-14 02:29:06 -03001033 if (lapic && apic_enabled(lapic) && apic_lvt_enabled(lapic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001034 return atomic_read(&lapic->lapic_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -03001035
1036 return 0;
1037}
1038
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001039static int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
Eddie Dong1b9778d2007-09-03 16:56:58 +03001040{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001041 u32 reg = apic_get_reg(apic, lvt_type);
Jan Kiszka23930f92008-09-26 09:30:52 +02001042 int vector, mode, trig_mode;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001043
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001044 if (apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
Jan Kiszka23930f92008-09-26 09:30:52 +02001045 vector = reg & APIC_VECTOR_MASK;
1046 mode = reg & APIC_MODE_MASK;
1047 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
1048 return __apic_accept_irq(apic, mode, vector, 1, trig_mode);
1049 }
1050 return 0;
1051}
1052
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001053void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
Jan Kiszka23930f92008-09-26 09:30:52 +02001054{
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001055 struct kvm_lapic *apic = vcpu->arch.apic;
1056
1057 if (apic)
1058 kvm_apic_local_deliver(apic, APIC_LVT0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001059}
1060
Hannes Eder386eb6e2009-03-10 22:51:09 +01001061static struct kvm_timer_ops lapic_timer_ops = {
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001062 .is_periodic = lapic_is_periodic,
1063};
Eddie Dong97222cc2007-09-12 10:58:04 +03001064
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001065static const struct kvm_io_device_ops apic_mmio_ops = {
1066 .read = apic_mmio_read,
1067 .write = apic_mmio_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001068};
1069
Eddie Dong97222cc2007-09-12 10:58:04 +03001070int kvm_create_lapic(struct kvm_vcpu *vcpu)
1071{
1072 struct kvm_lapic *apic;
1073
1074 ASSERT(vcpu != NULL);
1075 apic_debug("apic_init %d\n", vcpu->vcpu_id);
1076
1077 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
1078 if (!apic)
1079 goto nomem;
1080
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001081 vcpu->arch.apic = apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001082
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09001083 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
1084 if (!apic->regs) {
Eddie Dong97222cc2007-09-12 10:58:04 +03001085 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
1086 vcpu->vcpu_id);
Rusty Russelld5894442007-10-08 10:48:30 +10001087 goto nomem_free_apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001088 }
Eddie Dong97222cc2007-09-12 10:58:04 +03001089 apic->vcpu = vcpu;
1090
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001091 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
1092 HRTIMER_MODE_ABS);
1093 apic->lapic_timer.timer.function = kvm_timer_fn;
1094 apic->lapic_timer.t_ops = &lapic_timer_ops;
1095 apic->lapic_timer.kvm = vcpu->kvm;
Gleb Natapov1ed0ce02009-06-09 15:56:27 +03001096 apic->lapic_timer.vcpu = vcpu;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001097
Eddie Dong97222cc2007-09-12 10:58:04 +03001098 apic->base_address = APIC_DEFAULT_PHYS_BASE;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001099 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE;
Eddie Dong97222cc2007-09-12 10:58:04 +03001100
He, Qingc5ec1532007-09-03 17:07:41 +03001101 kvm_lapic_reset(vcpu);
Gregory Haskinsd76685c2009-06-01 12:54:50 -04001102 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
Eddie Dong97222cc2007-09-12 10:58:04 +03001103
1104 return 0;
Rusty Russelld5894442007-10-08 10:48:30 +10001105nomem_free_apic:
1106 kfree(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001107nomem:
Eddie Dong97222cc2007-09-12 10:58:04 +03001108 return -ENOMEM;
1109}
Eddie Dong97222cc2007-09-12 10:58:04 +03001110
1111int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
1112{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001113 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001114 int highest_irr;
1115
1116 if (!apic || !apic_enabled(apic))
1117 return -1;
1118
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001119 apic_update_ppr(apic);
Eddie Dong97222cc2007-09-12 10:58:04 +03001120 highest_irr = apic_find_highest_irr(apic);
1121 if ((highest_irr == -1) ||
1122 ((highest_irr & 0xF0) <= apic_get_reg(apic, APIC_PROCPRI)))
1123 return -1;
1124 return highest_irr;
1125}
1126
Qing He40487c62007-09-17 14:47:13 +08001127int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
1128{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001129 u32 lvt0 = apic_get_reg(vcpu->arch.apic, APIC_LVT0);
Qing He40487c62007-09-17 14:47:13 +08001130 int r = 0;
1131
Chris Lalancettee7dca5c2010-06-16 17:11:12 -04001132 if (!apic_hw_enabled(vcpu->arch.apic))
1133 r = 1;
1134 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
1135 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
1136 r = 1;
Qing He40487c62007-09-17 14:47:13 +08001137 return r;
1138}
1139
Eddie Dong1b9778d2007-09-03 16:56:58 +03001140void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
1141{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001142 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001143
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001144 if (apic && atomic_read(&apic->lapic_timer.pending) > 0) {
Jan Kiszka8fdb2352008-10-20 10:20:02 +02001145 if (kvm_apic_local_deliver(apic, APIC_LVTT))
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001146 atomic_dec(&apic->lapic_timer.pending);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001147 }
1148}
1149
Eddie Dong97222cc2007-09-12 10:58:04 +03001150int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
1151{
1152 int vector = kvm_apic_has_interrupt(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001153 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong97222cc2007-09-12 10:58:04 +03001154
1155 if (vector == -1)
1156 return -1;
1157
1158 apic_set_vector(vector, apic->regs + APIC_ISR);
1159 apic_update_ppr(apic);
1160 apic_clear_irr(vector, apic);
1161 return vector;
1162}
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001163
1164void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu)
1165{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001166 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001167
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001168 apic->base_address = vcpu->arch.apic_base &
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001169 MSR_IA32_APICBASE_BASE;
Gleb Natapovfc61b802009-07-05 17:39:35 +03001170 kvm_apic_set_version(vcpu);
1171
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001172 apic_update_ppr(apic);
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001173 hrtimer_cancel(&apic->lapic_timer.timer);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001174 update_divide_count(apic);
1175 start_apic_timer(apic);
Marcelo Tosatti6e24a6e2009-12-14 17:37:35 -02001176 apic->irr_pending = true;
Avi Kivity3842d132010-07-27 12:30:24 +03001177 kvm_make_request(KVM_REQ_EVENT, vcpu);
Eddie Dong96ad2cc2007-09-06 12:22:56 +03001178}
Eddie Donga3d7f852007-09-03 16:15:12 +03001179
Avi Kivity2f52d582008-01-16 12:49:30 +02001180void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
Eddie Donga3d7f852007-09-03 16:15:12 +03001181{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001182 struct kvm_lapic *apic = vcpu->arch.apic;
Eddie Donga3d7f852007-09-03 16:15:12 +03001183 struct hrtimer *timer;
1184
1185 if (!apic)
1186 return;
1187
Marcelo Tosattid3c7b772009-02-23 10:57:41 -03001188 timer = &apic->lapic_timer.timer;
Eddie Donga3d7f852007-09-03 16:15:12 +03001189 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d52008-09-01 14:55:57 -07001190 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Eddie Donga3d7f852007-09-03 16:15:12 +03001191}
Avi Kivityb93463a2007-10-25 16:52:32 +02001192
1193void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
1194{
1195 u32 data;
1196 void *vapic;
1197
1198 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1199 return;
1200
1201 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1202 data = *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr));
1203 kunmap_atomic(vapic, KM_USER0);
1204
1205 apic_set_tpr(vcpu->arch.apic, data & 0xff);
1206}
1207
1208void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
1209{
1210 u32 data, tpr;
1211 int max_irr, max_isr;
1212 struct kvm_lapic *apic;
1213 void *vapic;
1214
1215 if (!irqchip_in_kernel(vcpu->kvm) || !vcpu->arch.apic->vapic_addr)
1216 return;
1217
1218 apic = vcpu->arch.apic;
1219 tpr = apic_get_reg(apic, APIC_TASKPRI) & 0xff;
1220 max_irr = apic_find_highest_irr(apic);
1221 if (max_irr < 0)
1222 max_irr = 0;
1223 max_isr = apic_find_highest_isr(apic);
1224 if (max_isr < 0)
1225 max_isr = 0;
1226 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
1227
1228 vapic = kmap_atomic(vcpu->arch.apic->vapic_page, KM_USER0);
1229 *(u32 *)(vapic + offset_in_page(vcpu->arch.apic->vapic_addr)) = data;
1230 kunmap_atomic(vapic, KM_USER0);
1231}
1232
1233void kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
1234{
1235 if (!irqchip_in_kernel(vcpu->kvm))
1236 return;
1237
1238 vcpu->arch.apic->vapic_addr = vapic_addr;
1239}
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001240
1241int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1242{
1243 struct kvm_lapic *apic = vcpu->arch.apic;
1244 u32 reg = (msr - APIC_BASE_MSR) << 4;
1245
1246 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1247 return 1;
1248
1249 /* if this is ICR write vector before command */
1250 if (msr == 0x830)
1251 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1252 return apic_reg_write(apic, reg, (u32)data);
1253}
1254
1255int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
1256{
1257 struct kvm_lapic *apic = vcpu->arch.apic;
1258 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
1259
1260 if (!irqchip_in_kernel(vcpu->kvm) || !apic_x2apic_mode(apic))
1261 return 1;
1262
1263 if (apic_reg_read(apic, reg, 4, &low))
1264 return 1;
1265 if (msr == 0x830)
1266 apic_reg_read(apic, APIC_ICR2, 4, &high);
1267
1268 *data = (((u64)high) << 32) | low;
1269
1270 return 0;
1271}
Gleb Natapov10388a02010-01-17 15:51:23 +02001272
1273int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
1274{
1275 struct kvm_lapic *apic = vcpu->arch.apic;
1276
1277 if (!irqchip_in_kernel(vcpu->kvm))
1278 return 1;
1279
1280 /* if this is ICR write vector before command */
1281 if (reg == APIC_ICR)
1282 apic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
1283 return apic_reg_write(apic, reg, (u32)data);
1284}
1285
1286int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
1287{
1288 struct kvm_lapic *apic = vcpu->arch.apic;
1289 u32 low, high = 0;
1290
1291 if (!irqchip_in_kernel(vcpu->kvm))
1292 return 1;
1293
1294 if (apic_reg_read(apic, reg, 4, &low))
1295 return 1;
1296 if (reg == APIC_ICR)
1297 apic_reg_read(apic, APIC_ICR2, 4, &high);
1298
1299 *data = (((u64)high) << 32) | low;
1300
1301 return 0;
1302}