blob: 262e49301cae61caf76b7e875769f20301a71c83 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001
2/*
3 * Local APIC virtualization
4 *
5 * Copyright (C) 2006 Qumranet, Inc.
6 * Copyright (C) 2007 Novell
7 * Copyright (C) 2007 Intel
8 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
9 *
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
21#include <linux/kvm_host.h>
22#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/export.h>
29#include <linux/math64.h>
30#include <linux/slab.h>
31#include <asm/processor.h>
32#include <asm/msr.h>
33#include <asm/page.h>
34#include <asm/current.h>
35#include <asm/apicdef.h>
36#include <asm/delay.h>
37#include <linux/atomic.h>
38#include <linux/jump_label.h>
39#include "kvm_cache_regs.h"
40#include "irq.h"
41#include "trace.h"
42#include "x86.h"
43#include "cpuid.h"
44#include "hyperv.h"
45
46#ifndef CONFIG_X86_64
47#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
48#else
49#define mod_64(x, y) ((x) % (y))
50#endif
51
52#define PRId64 "d"
53#define PRIx64 "llx"
54#define PRIu64 "u"
55#define PRIo64 "o"
56
57/* #define apic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg) */
58#define apic_debug(fmt, arg...) do {} while (0)
59
60/* 14 is the version for Xeon and Pentium 8.4.8*/
61#define APIC_VERSION (0x14UL | ((KVM_APIC_LVT_NUM - 1) << 16))
62#define LAPIC_MMIO_LENGTH (1 << 12)
63/* followed define is not in apicdef.h */
64#define APIC_SHORT_MASK 0xc0000
65#define APIC_DEST_NOSHORT 0x0
66#define APIC_DEST_MASK 0x800
67#define MAX_APIC_VECTOR 256
68#define APIC_VECTORS_PER_REG 32
69
70#define APIC_BROADCAST 0xFF
71#define X2APIC_BROADCAST 0xFFFFFFFFul
72
73static inline int apic_test_vector(int vec, void *bitmap)
74{
75 return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
76}
77
78bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector)
79{
80 struct kvm_lapic *apic = vcpu->arch.apic;
81
82 return apic_test_vector(vector, apic->regs + APIC_ISR) ||
83 apic_test_vector(vector, apic->regs + APIC_IRR);
84}
85
86static inline void apic_clear_vector(int vec, void *bitmap)
87{
88 clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
89}
90
91static inline int __apic_test_and_set_vector(int vec, void *bitmap)
92{
93 return __test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
94}
95
96static inline int __apic_test_and_clear_vector(int vec, void *bitmap)
97{
98 return __test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
99}
100
101struct static_key_deferred apic_hw_disabled __read_mostly;
102struct static_key_deferred apic_sw_disabled __read_mostly;
103
104static inline int apic_enabled(struct kvm_lapic *apic)
105{
106 return kvm_apic_sw_enabled(apic) && kvm_apic_hw_enabled(apic);
107}
108
109#define LVT_MASK \
110 (APIC_LVT_MASKED | APIC_SEND_PENDING | APIC_VECTOR_MASK)
111
112#define LINT_MASK \
113 (LVT_MASK | APIC_MODE_MASK | APIC_INPUT_POLARITY | \
114 APIC_LVT_REMOTE_IRR | APIC_LVT_LEVEL_TRIGGER)
115
116static inline u8 kvm_xapic_id(struct kvm_lapic *apic)
117{
118 return kvm_lapic_get_reg(apic, APIC_ID) >> 24;
119}
120
121static inline u32 kvm_x2apic_id(struct kvm_lapic *apic)
122{
123 return apic->vcpu->vcpu_id;
124}
125
126static inline bool kvm_apic_map_get_logical_dest(struct kvm_apic_map *map,
127 u32 dest_id, struct kvm_lapic ***cluster, u16 *mask) {
128 switch (map->mode) {
129 case KVM_APIC_MODE_X2APIC: {
130 u32 offset = (dest_id >> 16) * 16;
131 u32 max_apic_id = map->max_apic_id;
132
133 if (offset <= max_apic_id) {
134 u8 cluster_size = min(max_apic_id - offset + 1, 16U);
135
136 offset = array_index_nospec(offset, map->max_apic_id + 1);
137 *cluster = &map->phys_map[offset];
138 *mask = dest_id & (0xffff >> (16 - cluster_size));
139 } else {
140 *mask = 0;
141 }
142
143 return true;
144 }
145 case KVM_APIC_MODE_XAPIC_FLAT:
146 *cluster = map->xapic_flat_map;
147 *mask = dest_id & 0xff;
148 return true;
149 case KVM_APIC_MODE_XAPIC_CLUSTER:
150 *cluster = map->xapic_cluster_map[(dest_id >> 4) & 0xf];
151 *mask = dest_id & 0xf;
152 return true;
153 default:
154 /* Not optimized. */
155 return false;
156 }
157}
158
159static void kvm_apic_map_free(struct rcu_head *rcu)
160{
161 struct kvm_apic_map *map = container_of(rcu, struct kvm_apic_map, rcu);
162
163 kvfree(map);
164}
165
166static void recalculate_apic_map(struct kvm *kvm)
167{
168 struct kvm_apic_map *new, *old = NULL;
169 struct kvm_vcpu *vcpu;
170 int i;
171 u32 max_id = 255; /* enough space for any xAPIC ID */
172
173 mutex_lock(&kvm->arch.apic_map_lock);
174
175 kvm_for_each_vcpu(i, vcpu, kvm)
176 if (kvm_apic_present(vcpu))
177 max_id = max(max_id, kvm_x2apic_id(vcpu->arch.apic));
178
179 new = kvzalloc(sizeof(struct kvm_apic_map) +
180 sizeof(struct kvm_lapic *) * ((u64)max_id + 1), GFP_KERNEL);
181
182 if (!new)
183 goto out;
184
185 new->max_apic_id = max_id;
186
187 kvm_for_each_vcpu(i, vcpu, kvm) {
188 struct kvm_lapic *apic = vcpu->arch.apic;
189 struct kvm_lapic **cluster;
190 u16 mask;
191 u32 ldr;
192 u8 xapic_id;
193 u32 x2apic_id;
194
195 if (!kvm_apic_present(vcpu))
196 continue;
197
198 xapic_id = kvm_xapic_id(apic);
199 x2apic_id = kvm_x2apic_id(apic);
200
201 /* Hotplug hack: see kvm_apic_match_physical_addr(), ... */
202 if ((apic_x2apic_mode(apic) || x2apic_id > 0xff) &&
203 x2apic_id <= new->max_apic_id)
204 new->phys_map[x2apic_id] = apic;
205 /*
206 * ... xAPIC ID of VCPUs with APIC ID > 0xff will wrap-around,
207 * prevent them from masking VCPUs with APIC ID <= 0xff.
208 */
209 if (!apic_x2apic_mode(apic) && !new->phys_map[xapic_id])
210 new->phys_map[xapic_id] = apic;
211
212 if (!kvm_apic_sw_enabled(apic))
213 continue;
214
215 ldr = kvm_lapic_get_reg(apic, APIC_LDR);
216
217 if (apic_x2apic_mode(apic)) {
218 new->mode |= KVM_APIC_MODE_X2APIC;
219 } else if (ldr) {
220 ldr = GET_APIC_LOGICAL_ID(ldr);
221 if (kvm_lapic_get_reg(apic, APIC_DFR) == APIC_DFR_FLAT)
222 new->mode |= KVM_APIC_MODE_XAPIC_FLAT;
223 else
224 new->mode |= KVM_APIC_MODE_XAPIC_CLUSTER;
225 }
226
227 if (!kvm_apic_map_get_logical_dest(new, ldr, &cluster, &mask))
228 continue;
229
230 if (mask)
231 cluster[ffs(mask) - 1] = apic;
232 }
233out:
234 old = rcu_dereference_protected(kvm->arch.apic_map,
235 lockdep_is_held(&kvm->arch.apic_map_lock));
236 rcu_assign_pointer(kvm->arch.apic_map, new);
237 mutex_unlock(&kvm->arch.apic_map_lock);
238
239 if (old)
240 call_rcu(&old->rcu, kvm_apic_map_free);
241
242 kvm_make_scan_ioapic_request(kvm);
243}
244
245static inline void apic_set_spiv(struct kvm_lapic *apic, u32 val)
246{
247 bool enabled = val & APIC_SPIV_APIC_ENABLED;
248
249 kvm_lapic_set_reg(apic, APIC_SPIV, val);
250
251 if (enabled != apic->sw_enabled) {
252 apic->sw_enabled = enabled;
253 if (enabled) {
254 static_key_slow_dec_deferred(&apic_sw_disabled);
255 recalculate_apic_map(apic->vcpu->kvm);
256 } else
257 static_key_slow_inc(&apic_sw_disabled.key);
258
259 recalculate_apic_map(apic->vcpu->kvm);
260 }
261}
262
263static inline void kvm_apic_set_xapic_id(struct kvm_lapic *apic, u8 id)
264{
265 kvm_lapic_set_reg(apic, APIC_ID, id << 24);
266 recalculate_apic_map(apic->vcpu->kvm);
267}
268
269static inline void kvm_apic_set_ldr(struct kvm_lapic *apic, u32 id)
270{
271 kvm_lapic_set_reg(apic, APIC_LDR, id);
272 recalculate_apic_map(apic->vcpu->kvm);
273}
274
275static inline u32 kvm_apic_calc_x2apic_ldr(u32 id)
276{
277 return ((id >> 4) << 16) | (1 << (id & 0xf));
278}
279
280static inline void kvm_apic_set_x2apic_id(struct kvm_lapic *apic, u32 id)
281{
282 u32 ldr = kvm_apic_calc_x2apic_ldr(id);
283
284 WARN_ON_ONCE(id != apic->vcpu->vcpu_id);
285
286 kvm_lapic_set_reg(apic, APIC_ID, id);
287 kvm_lapic_set_reg(apic, APIC_LDR, ldr);
288 recalculate_apic_map(apic->vcpu->kvm);
289}
290
291static inline int apic_lvt_enabled(struct kvm_lapic *apic, int lvt_type)
292{
293 return !(kvm_lapic_get_reg(apic, lvt_type) & APIC_LVT_MASKED);
294}
295
296static inline int apic_lvt_vector(struct kvm_lapic *apic, int lvt_type)
297{
298 return kvm_lapic_get_reg(apic, lvt_type) & APIC_VECTOR_MASK;
299}
300
301static inline int apic_lvtt_oneshot(struct kvm_lapic *apic)
302{
303 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_ONESHOT;
304}
305
306static inline int apic_lvtt_period(struct kvm_lapic *apic)
307{
308 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_PERIODIC;
309}
310
311static inline int apic_lvtt_tscdeadline(struct kvm_lapic *apic)
312{
313 return apic->lapic_timer.timer_mode == APIC_LVT_TIMER_TSCDEADLINE;
314}
315
316static inline int apic_lvt_nmi_mode(u32 lvt_val)
317{
318 return (lvt_val & (APIC_MODE_MASK | APIC_LVT_MASKED)) == APIC_DM_NMI;
319}
320
321void kvm_apic_set_version(struct kvm_vcpu *vcpu)
322{
323 struct kvm_lapic *apic = vcpu->arch.apic;
324 struct kvm_cpuid_entry2 *feat;
325 u32 v = APIC_VERSION;
326
327 if (!lapic_in_kernel(vcpu))
328 return;
329
330 /*
331 * KVM emulates 82093AA datasheet (with in-kernel IOAPIC implementation)
332 * which doesn't have EOI register; Some buggy OSes (e.g. Windows with
333 * Hyper-V role) disable EOI broadcast in lapic not checking for IOAPIC
334 * version first and level-triggered interrupts never get EOIed in
335 * IOAPIC.
336 */
337 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0);
338 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31))) &&
339 !ioapic_in_kernel(vcpu->kvm))
340 v |= APIC_LVR_DIRECTED_EOI;
341 kvm_lapic_set_reg(apic, APIC_LVR, v);
342}
343
344static const unsigned int apic_lvt_mask[KVM_APIC_LVT_NUM] = {
345 LVT_MASK , /* part LVTT mask, timer mode mask added at runtime */
346 LVT_MASK | APIC_MODE_MASK, /* LVTTHMR */
347 LVT_MASK | APIC_MODE_MASK, /* LVTPC */
348 LINT_MASK, LINT_MASK, /* LVT0-1 */
349 LVT_MASK /* LVTERR */
350};
351
352static int find_highest_vector(void *bitmap)
353{
354 int vec;
355 u32 *reg;
356
357 for (vec = MAX_APIC_VECTOR - APIC_VECTORS_PER_REG;
358 vec >= 0; vec -= APIC_VECTORS_PER_REG) {
359 reg = bitmap + REG_POS(vec);
360 if (*reg)
361 return __fls(*reg) + vec;
362 }
363
364 return -1;
365}
366
367static u8 count_vectors(void *bitmap)
368{
369 int vec;
370 u32 *reg;
371 u8 count = 0;
372
373 for (vec = 0; vec < MAX_APIC_VECTOR; vec += APIC_VECTORS_PER_REG) {
374 reg = bitmap + REG_POS(vec);
375 count += hweight32(*reg);
376 }
377
378 return count;
379}
380
381bool __kvm_apic_update_irr(u32 *pir, void *regs, int *max_irr)
382{
383 u32 i, vec;
384 u32 pir_val, irr_val, prev_irr_val;
385 int max_updated_irr;
386
387 max_updated_irr = -1;
388 *max_irr = -1;
389
390 for (i = vec = 0; i <= 7; i++, vec += 32) {
391 pir_val = READ_ONCE(pir[i]);
392 irr_val = *((u32 *)(regs + APIC_IRR + i * 0x10));
393 if (pir_val) {
394 prev_irr_val = irr_val;
395 irr_val |= xchg(&pir[i], 0);
396 *((u32 *)(regs + APIC_IRR + i * 0x10)) = irr_val;
397 if (prev_irr_val != irr_val) {
398 max_updated_irr =
399 __fls(irr_val ^ prev_irr_val) + vec;
400 }
401 }
402 if (irr_val)
403 *max_irr = __fls(irr_val) + vec;
404 }
405
406 return ((max_updated_irr != -1) &&
407 (max_updated_irr == *max_irr));
408}
409EXPORT_SYMBOL_GPL(__kvm_apic_update_irr);
410
411bool kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir, int *max_irr)
412{
413 struct kvm_lapic *apic = vcpu->arch.apic;
414
415 return __kvm_apic_update_irr(pir, apic->regs, max_irr);
416}
417EXPORT_SYMBOL_GPL(kvm_apic_update_irr);
418
419static inline int apic_search_irr(struct kvm_lapic *apic)
420{
421 return find_highest_vector(apic->regs + APIC_IRR);
422}
423
424static inline int apic_find_highest_irr(struct kvm_lapic *apic)
425{
426 int result;
427
428 /*
429 * Note that irr_pending is just a hint. It will be always
430 * true with virtual interrupt delivery enabled.
431 */
432 if (!apic->irr_pending)
433 return -1;
434
435 result = apic_search_irr(apic);
436 ASSERT(result == -1 || result >= 16);
437
438 return result;
439}
440
441static inline void apic_clear_irr(int vec, struct kvm_lapic *apic)
442{
443 struct kvm_vcpu *vcpu;
444
445 vcpu = apic->vcpu;
446
447 if (unlikely(vcpu->arch.apicv_active)) {
448 /* need to update RVI */
449 apic_clear_vector(vec, apic->regs + APIC_IRR);
450 kvm_x86_ops->hwapic_irr_update(vcpu,
451 apic_find_highest_irr(apic));
452 } else {
453 apic->irr_pending = false;
454 apic_clear_vector(vec, apic->regs + APIC_IRR);
455 if (apic_search_irr(apic) != -1)
456 apic->irr_pending = true;
457 }
458}
459
460static inline void apic_set_isr(int vec, struct kvm_lapic *apic)
461{
462 struct kvm_vcpu *vcpu;
463
464 if (__apic_test_and_set_vector(vec, apic->regs + APIC_ISR))
465 return;
466
467 vcpu = apic->vcpu;
468
469 /*
470 * With APIC virtualization enabled, all caching is disabled
471 * because the processor can modify ISR under the hood. Instead
472 * just set SVI.
473 */
474 if (unlikely(vcpu->arch.apicv_active))
475 kvm_x86_ops->hwapic_isr_update(vcpu, vec);
476 else {
477 ++apic->isr_count;
478 BUG_ON(apic->isr_count > MAX_APIC_VECTOR);
479 /*
480 * ISR (in service register) bit is set when injecting an interrupt.
481 * The highest vector is injected. Thus the latest bit set matches
482 * the highest bit in ISR.
483 */
484 apic->highest_isr_cache = vec;
485 }
486}
487
488static inline int apic_find_highest_isr(struct kvm_lapic *apic)
489{
490 int result;
491
492 /*
493 * Note that isr_count is always 1, and highest_isr_cache
494 * is always -1, with APIC virtualization enabled.
495 */
496 if (!apic->isr_count)
497 return -1;
498 if (likely(apic->highest_isr_cache != -1))
499 return apic->highest_isr_cache;
500
501 result = find_highest_vector(apic->regs + APIC_ISR);
502 ASSERT(result == -1 || result >= 16);
503
504 return result;
505}
506
507static inline void apic_clear_isr(int vec, struct kvm_lapic *apic)
508{
509 struct kvm_vcpu *vcpu;
510 if (!__apic_test_and_clear_vector(vec, apic->regs + APIC_ISR))
511 return;
512
513 vcpu = apic->vcpu;
514
515 /*
516 * We do get here for APIC virtualization enabled if the guest
517 * uses the Hyper-V APIC enlightenment. In this case we may need
518 * to trigger a new interrupt delivery by writing the SVI field;
519 * on the other hand isr_count and highest_isr_cache are unused
520 * and must be left alone.
521 */
522 if (unlikely(vcpu->arch.apicv_active))
523 kvm_x86_ops->hwapic_isr_update(vcpu,
524 apic_find_highest_isr(apic));
525 else {
526 --apic->isr_count;
527 BUG_ON(apic->isr_count < 0);
528 apic->highest_isr_cache = -1;
529 }
530}
531
532int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu)
533{
534 /* This may race with setting of irr in __apic_accept_irq() and
535 * value returned may be wrong, but kvm_vcpu_kick() in __apic_accept_irq
536 * will cause vmexit immediately and the value will be recalculated
537 * on the next vmentry.
538 */
539 return apic_find_highest_irr(vcpu->arch.apic);
540}
541EXPORT_SYMBOL_GPL(kvm_lapic_find_highest_irr);
542
543static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
544 int vector, int level, int trig_mode,
545 struct dest_map *dest_map);
546
547int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
548 struct dest_map *dest_map)
549{
550 struct kvm_lapic *apic = vcpu->arch.apic;
551
552 return __apic_accept_irq(apic, irq->delivery_mode, irq->vector,
553 irq->level, irq->trig_mode, dest_map);
554}
555
556int kvm_pv_send_ipi(struct kvm *kvm, unsigned long ipi_bitmap_low,
557 unsigned long ipi_bitmap_high, u32 min,
558 unsigned long icr, int op_64_bit)
559{
560 int i;
561 struct kvm_apic_map *map;
562 struct kvm_vcpu *vcpu;
563 struct kvm_lapic_irq irq = {0};
564 int cluster_size = op_64_bit ? 64 : 32;
565 int count = 0;
566
567 irq.vector = icr & APIC_VECTOR_MASK;
568 irq.delivery_mode = icr & APIC_MODE_MASK;
569 irq.level = (icr & APIC_INT_ASSERT) != 0;
570 irq.trig_mode = icr & APIC_INT_LEVELTRIG;
571
572 if (icr & APIC_DEST_MASK)
573 return -KVM_EINVAL;
574 if (icr & APIC_SHORT_MASK)
575 return -KVM_EINVAL;
576
577 rcu_read_lock();
578 map = rcu_dereference(kvm->arch.apic_map);
579
580 if (unlikely(!map)) {
581 count = -EOPNOTSUPP;
582 goto out;
583 }
584
585 if (min > map->max_apic_id)
586 goto out;
587 /* Bits above cluster_size are masked in the caller. */
588 for_each_set_bit(i, &ipi_bitmap_low,
589 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
590 if (map->phys_map[min + i]) {
591 vcpu = map->phys_map[min + i]->vcpu;
592 count += kvm_apic_set_irq(vcpu, &irq, NULL);
593 }
594 }
595
596 min += cluster_size;
597
598 if (min > map->max_apic_id)
599 goto out;
600
601 for_each_set_bit(i, &ipi_bitmap_high,
602 min((u32)BITS_PER_LONG, (map->max_apic_id - min + 1))) {
603 if (map->phys_map[min + i]) {
604 vcpu = map->phys_map[min + i]->vcpu;
605 count += kvm_apic_set_irq(vcpu, &irq, NULL);
606 }
607 }
608
609out:
610 rcu_read_unlock();
611 return count;
612}
613
614static int pv_eoi_put_user(struct kvm_vcpu *vcpu, u8 val)
615{
616
617 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, &val,
618 sizeof(val));
619}
620
621static int pv_eoi_get_user(struct kvm_vcpu *vcpu, u8 *val)
622{
623
624 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data, val,
625 sizeof(*val));
626}
627
628static inline bool pv_eoi_enabled(struct kvm_vcpu *vcpu)
629{
630 return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
631}
632
633static bool pv_eoi_get_pending(struct kvm_vcpu *vcpu)
634{
635 u8 val;
636 if (pv_eoi_get_user(vcpu, &val) < 0)
637 apic_debug("Can't read EOI MSR value: 0x%llx\n",
638 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
639 return val & 0x1;
640}
641
642static void pv_eoi_set_pending(struct kvm_vcpu *vcpu)
643{
644 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_ENABLED) < 0) {
645 apic_debug("Can't set EOI MSR value: 0x%llx\n",
646 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
647 return;
648 }
649 __set_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
650}
651
652static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
653{
654 if (pv_eoi_put_user(vcpu, KVM_PV_EOI_DISABLED) < 0) {
655 apic_debug("Can't clear EOI MSR value: 0x%llx\n",
656 (unsigned long long)vcpu->arch.pv_eoi.msr_val);
657 return;
658 }
659 __clear_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention);
660}
661
662static int apic_has_interrupt_for_ppr(struct kvm_lapic *apic, u32 ppr)
663{
664 int highest_irr;
665 if (apic->vcpu->arch.apicv_active)
666 highest_irr = kvm_x86_ops->sync_pir_to_irr(apic->vcpu);
667 else
668 highest_irr = apic_find_highest_irr(apic);
669 if (highest_irr == -1 || (highest_irr & 0xF0) <= ppr)
670 return -1;
671 return highest_irr;
672}
673
674static bool __apic_update_ppr(struct kvm_lapic *apic, u32 *new_ppr)
675{
676 u32 tpr, isrv, ppr, old_ppr;
677 int isr;
678
679 old_ppr = kvm_lapic_get_reg(apic, APIC_PROCPRI);
680 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI);
681 isr = apic_find_highest_isr(apic);
682 isrv = (isr != -1) ? isr : 0;
683
684 if ((tpr & 0xf0) >= (isrv & 0xf0))
685 ppr = tpr & 0xff;
686 else
687 ppr = isrv & 0xf0;
688
689 apic_debug("vlapic %p, ppr 0x%x, isr 0x%x, isrv 0x%x",
690 apic, ppr, isr, isrv);
691
692 *new_ppr = ppr;
693 if (old_ppr != ppr)
694 kvm_lapic_set_reg(apic, APIC_PROCPRI, ppr);
695
696 return ppr < old_ppr;
697}
698
699static void apic_update_ppr(struct kvm_lapic *apic)
700{
701 u32 ppr;
702
703 if (__apic_update_ppr(apic, &ppr) &&
704 apic_has_interrupt_for_ppr(apic, ppr) != -1)
705 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
706}
707
708void kvm_apic_update_ppr(struct kvm_vcpu *vcpu)
709{
710 apic_update_ppr(vcpu->arch.apic);
711}
712EXPORT_SYMBOL_GPL(kvm_apic_update_ppr);
713
714static void apic_set_tpr(struct kvm_lapic *apic, u32 tpr)
715{
716 kvm_lapic_set_reg(apic, APIC_TASKPRI, tpr);
717 apic_update_ppr(apic);
718}
719
720static bool kvm_apic_broadcast(struct kvm_lapic *apic, u32 mda)
721{
722 return mda == (apic_x2apic_mode(apic) ?
723 X2APIC_BROADCAST : APIC_BROADCAST);
724}
725
726static bool kvm_apic_match_physical_addr(struct kvm_lapic *apic, u32 mda)
727{
728 if (kvm_apic_broadcast(apic, mda))
729 return true;
730
731 if (apic_x2apic_mode(apic))
732 return mda == kvm_x2apic_id(apic);
733
734 /*
735 * Hotplug hack: Make LAPIC in xAPIC mode also accept interrupts as if
736 * it were in x2APIC mode. Hotplugged VCPUs start in xAPIC mode and
737 * this allows unique addressing of VCPUs with APIC ID over 0xff.
738 * The 0xff condition is needed because writeable xAPIC ID.
739 */
740 if (kvm_x2apic_id(apic) > 0xff && mda == kvm_x2apic_id(apic))
741 return true;
742
743 return mda == kvm_xapic_id(apic);
744}
745
746static bool kvm_apic_match_logical_addr(struct kvm_lapic *apic, u32 mda)
747{
748 u32 logical_id;
749
750 if (kvm_apic_broadcast(apic, mda))
751 return true;
752
753 logical_id = kvm_lapic_get_reg(apic, APIC_LDR);
754
755 if (apic_x2apic_mode(apic))
756 return ((logical_id >> 16) == (mda >> 16))
757 && (logical_id & mda & 0xffff) != 0;
758
759 logical_id = GET_APIC_LOGICAL_ID(logical_id);
760
761 switch (kvm_lapic_get_reg(apic, APIC_DFR)) {
762 case APIC_DFR_FLAT:
763 return (logical_id & mda) != 0;
764 case APIC_DFR_CLUSTER:
765 return ((logical_id >> 4) == (mda >> 4))
766 && (logical_id & mda & 0xf) != 0;
767 default:
768 apic_debug("Bad DFR vcpu %d: %08x\n",
769 apic->vcpu->vcpu_id, kvm_lapic_get_reg(apic, APIC_DFR));
770 return false;
771 }
772}
773
774/* The KVM local APIC implementation has two quirks:
775 *
776 * - Real hardware delivers interrupts destined to x2APIC ID > 0xff to LAPICs
777 * in xAPIC mode if the "destination & 0xff" matches its xAPIC ID.
778 * KVM doesn't do that aliasing.
779 *
780 * - in-kernel IOAPIC messages have to be delivered directly to
781 * x2APIC, because the kernel does not support interrupt remapping.
782 * In order to support broadcast without interrupt remapping, x2APIC
783 * rewrites the destination of non-IPI messages from APIC_BROADCAST
784 * to X2APIC_BROADCAST.
785 *
786 * The broadcast quirk can be disabled with KVM_CAP_X2APIC_API. This is
787 * important when userspace wants to use x2APIC-format MSIs, because
788 * APIC_BROADCAST (0xff) is a legal route for "cluster 0, CPUs 0-7".
789 */
790static u32 kvm_apic_mda(struct kvm_vcpu *vcpu, unsigned int dest_id,
791 struct kvm_lapic *source, struct kvm_lapic *target)
792{
793 bool ipi = source != NULL;
794
795 if (!vcpu->kvm->arch.x2apic_broadcast_quirk_disabled &&
796 !ipi && dest_id == APIC_BROADCAST && apic_x2apic_mode(target))
797 return X2APIC_BROADCAST;
798
799 return dest_id;
800}
801
802bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
803 int short_hand, unsigned int dest, int dest_mode)
804{
805 struct kvm_lapic *target = vcpu->arch.apic;
806 u32 mda = kvm_apic_mda(vcpu, dest, source, target);
807
808 apic_debug("target %p, source %p, dest 0x%x, "
809 "dest_mode 0x%x, short_hand 0x%x\n",
810 target, source, dest, dest_mode, short_hand);
811
812 ASSERT(target);
813 switch (short_hand) {
814 case APIC_DEST_NOSHORT:
815 if (dest_mode == APIC_DEST_PHYSICAL)
816 return kvm_apic_match_physical_addr(target, mda);
817 else
818 return kvm_apic_match_logical_addr(target, mda);
819 case APIC_DEST_SELF:
820 return target == source;
821 case APIC_DEST_ALLINC:
822 return true;
823 case APIC_DEST_ALLBUT:
824 return target != source;
825 default:
826 apic_debug("kvm: apic: Bad dest shorthand value %x\n",
827 short_hand);
828 return false;
829 }
830}
831EXPORT_SYMBOL_GPL(kvm_apic_match_dest);
832
833int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
834 const unsigned long *bitmap, u32 bitmap_size)
835{
836 u32 mod;
837 int i, idx = -1;
838
839 mod = vector % dest_vcpus;
840
841 for (i = 0; i <= mod; i++) {
842 idx = find_next_bit(bitmap, bitmap_size, idx + 1);
843 BUG_ON(idx == bitmap_size);
844 }
845
846 return idx;
847}
848
849static void kvm_apic_disabled_lapic_found(struct kvm *kvm)
850{
851 if (!kvm->arch.disabled_lapic_found) {
852 kvm->arch.disabled_lapic_found = true;
853 printk(KERN_INFO
854 "Disabled LAPIC found during irq injection\n");
855 }
856}
857
858static bool kvm_apic_is_broadcast_dest(struct kvm *kvm, struct kvm_lapic **src,
859 struct kvm_lapic_irq *irq, struct kvm_apic_map *map)
860{
861 if (kvm->arch.x2apic_broadcast_quirk_disabled) {
862 if ((irq->dest_id == APIC_BROADCAST &&
863 map->mode != KVM_APIC_MODE_X2APIC))
864 return true;
865 if (irq->dest_id == X2APIC_BROADCAST)
866 return true;
867 } else {
868 bool x2apic_ipi = src && *src && apic_x2apic_mode(*src);
869 if (irq->dest_id == (x2apic_ipi ?
870 X2APIC_BROADCAST : APIC_BROADCAST))
871 return true;
872 }
873
874 return false;
875}
876
877/* Return true if the interrupt can be handled by using *bitmap as index mask
878 * for valid destinations in *dst array.
879 * Return false if kvm_apic_map_get_dest_lapic did nothing useful.
880 * Note: we may have zero kvm_lapic destinations when we return true, which
881 * means that the interrupt should be dropped. In this case, *bitmap would be
882 * zero and *dst undefined.
883 */
884static inline bool kvm_apic_map_get_dest_lapic(struct kvm *kvm,
885 struct kvm_lapic **src, struct kvm_lapic_irq *irq,
886 struct kvm_apic_map *map, struct kvm_lapic ***dst,
887 unsigned long *bitmap)
888{
889 int i, lowest;
890
891 if (irq->shorthand == APIC_DEST_SELF && src) {
892 *dst = src;
893 *bitmap = 1;
894 return true;
895 } else if (irq->shorthand)
896 return false;
897
898 if (!map || kvm_apic_is_broadcast_dest(kvm, src, irq, map))
899 return false;
900
901 if (irq->dest_mode == APIC_DEST_PHYSICAL) {
902 if (irq->dest_id > map->max_apic_id) {
903 *bitmap = 0;
904 } else {
905 u32 dest_id = array_index_nospec(irq->dest_id, map->max_apic_id + 1);
906 *dst = &map->phys_map[dest_id];
907 *bitmap = 1;
908 }
909 return true;
910 }
911
912 *bitmap = 0;
913 if (!kvm_apic_map_get_logical_dest(map, irq->dest_id, dst,
914 (u16 *)bitmap))
915 return false;
916
917 if (!kvm_lowest_prio_delivery(irq))
918 return true;
919
920 if (!kvm_vector_hashing_enabled()) {
921 lowest = -1;
922 for_each_set_bit(i, bitmap, 16) {
923 if (!(*dst)[i])
924 continue;
925 if (lowest < 0)
926 lowest = i;
927 else if (kvm_apic_compare_prio((*dst)[i]->vcpu,
928 (*dst)[lowest]->vcpu) < 0)
929 lowest = i;
930 }
931 } else {
932 if (!*bitmap)
933 return true;
934
935 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap),
936 bitmap, 16);
937
938 if (!(*dst)[lowest]) {
939 kvm_apic_disabled_lapic_found(kvm);
940 *bitmap = 0;
941 return true;
942 }
943 }
944
945 *bitmap = (lowest >= 0) ? 1 << lowest : 0;
946
947 return true;
948}
949
950bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
951 struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map)
952{
953 struct kvm_apic_map *map;
954 unsigned long bitmap;
955 struct kvm_lapic **dst = NULL;
956 int i;
957 bool ret;
958
959 *r = -1;
960
961 if (irq->shorthand == APIC_DEST_SELF) {
962 *r = kvm_apic_set_irq(src->vcpu, irq, dest_map);
963 return true;
964 }
965
966 rcu_read_lock();
967 map = rcu_dereference(kvm->arch.apic_map);
968
969 ret = kvm_apic_map_get_dest_lapic(kvm, &src, irq, map, &dst, &bitmap);
970 if (ret)
971 for_each_set_bit(i, &bitmap, 16) {
972 if (!dst[i])
973 continue;
974 if (*r < 0)
975 *r = 0;
976 *r += kvm_apic_set_irq(dst[i]->vcpu, irq, dest_map);
977 }
978
979 rcu_read_unlock();
980 return ret;
981}
982
983/*
984 * This routine tries to handler interrupts in posted mode, here is how
985 * it deals with different cases:
986 * - For single-destination interrupts, handle it in posted mode
987 * - Else if vector hashing is enabled and it is a lowest-priority
988 * interrupt, handle it in posted mode and use the following mechanism
989 * to find the destinaiton vCPU.
990 * 1. For lowest-priority interrupts, store all the possible
991 * destination vCPUs in an array.
992 * 2. Use "guest vector % max number of destination vCPUs" to find
993 * the right destination vCPU in the array for the lowest-priority
994 * interrupt.
995 * - Otherwise, use remapped mode to inject the interrupt.
996 */
997bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
998 struct kvm_vcpu **dest_vcpu)
999{
1000 struct kvm_apic_map *map;
1001 unsigned long bitmap;
1002 struct kvm_lapic **dst = NULL;
1003 bool ret = false;
1004
1005 if (irq->shorthand)
1006 return false;
1007
1008 rcu_read_lock();
1009 map = rcu_dereference(kvm->arch.apic_map);
1010
1011 if (kvm_apic_map_get_dest_lapic(kvm, NULL, irq, map, &dst, &bitmap) &&
1012 hweight16(bitmap) == 1) {
1013 unsigned long i = find_first_bit(&bitmap, 16);
1014
1015 if (dst[i]) {
1016 *dest_vcpu = dst[i]->vcpu;
1017 ret = true;
1018 }
1019 }
1020
1021 rcu_read_unlock();
1022 return ret;
1023}
1024
1025/*
1026 * Add a pending IRQ into lapic.
1027 * Return 1 if successfully added and 0 if discarded.
1028 */
1029static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
1030 int vector, int level, int trig_mode,
1031 struct dest_map *dest_map)
1032{
1033 int result = 0;
1034 struct kvm_vcpu *vcpu = apic->vcpu;
1035
1036 trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
1037 trig_mode, vector);
1038 switch (delivery_mode) {
1039 case APIC_DM_LOWEST:
1040 vcpu->arch.apic_arb_prio++;
1041 case APIC_DM_FIXED:
1042 if (unlikely(trig_mode && !level))
1043 break;
1044
1045 /* FIXME add logic for vcpu on reset */
1046 if (unlikely(!apic_enabled(apic)))
1047 break;
1048
1049 result = 1;
1050
1051 if (dest_map) {
1052 __set_bit(vcpu->vcpu_id, dest_map->map);
1053 dest_map->vectors[vcpu->vcpu_id] = vector;
1054 }
1055
1056 if (apic_test_vector(vector, apic->regs + APIC_TMR) != !!trig_mode) {
1057 if (trig_mode)
1058 kvm_lapic_set_vector(vector, apic->regs + APIC_TMR);
1059 else
1060 apic_clear_vector(vector, apic->regs + APIC_TMR);
1061 }
1062
1063 if (vcpu->arch.apicv_active)
1064 kvm_x86_ops->deliver_posted_interrupt(vcpu, vector);
1065 else {
1066 kvm_lapic_set_irr(vector, apic);
1067
1068 kvm_make_request(KVM_REQ_EVENT, vcpu);
1069 kvm_vcpu_kick(vcpu);
1070 }
1071 break;
1072
1073 case APIC_DM_REMRD:
1074 result = 1;
1075 vcpu->arch.pv.pv_unhalted = 1;
1076 kvm_make_request(KVM_REQ_EVENT, vcpu);
1077 kvm_vcpu_kick(vcpu);
1078 break;
1079
1080 case APIC_DM_SMI:
1081 result = 1;
1082 kvm_make_request(KVM_REQ_SMI, vcpu);
1083 kvm_vcpu_kick(vcpu);
1084 break;
1085
1086 case APIC_DM_NMI:
1087 result = 1;
1088 kvm_inject_nmi(vcpu);
1089 kvm_vcpu_kick(vcpu);
1090 break;
1091
1092 case APIC_DM_INIT:
1093 if (!trig_mode || level) {
1094 result = 1;
1095 /* assumes that there are only KVM_APIC_INIT/SIPI */
1096 apic->pending_events = (1UL << KVM_APIC_INIT);
1097 /* make sure pending_events is visible before sending
1098 * the request */
1099 smp_wmb();
1100 kvm_make_request(KVM_REQ_EVENT, vcpu);
1101 kvm_vcpu_kick(vcpu);
1102 } else {
1103 apic_debug("Ignoring de-assert INIT to vcpu %d\n",
1104 vcpu->vcpu_id);
1105 }
1106 break;
1107
1108 case APIC_DM_STARTUP:
1109 apic_debug("SIPI to vcpu %d vector 0x%02x\n",
1110 vcpu->vcpu_id, vector);
1111 result = 1;
1112 apic->sipi_vector = vector;
1113 /* make sure sipi_vector is visible for the receiver */
1114 smp_wmb();
1115 set_bit(KVM_APIC_SIPI, &apic->pending_events);
1116 kvm_make_request(KVM_REQ_EVENT, vcpu);
1117 kvm_vcpu_kick(vcpu);
1118 break;
1119
1120 case APIC_DM_EXTINT:
1121 /*
1122 * Should only be called by kvm_apic_local_deliver() with LVT0,
1123 * before NMI watchdog was enabled. Already handled by
1124 * kvm_apic_accept_pic_intr().
1125 */
1126 break;
1127
1128 default:
1129 printk(KERN_ERR "TODO: unsupported delivery mode %x\n",
1130 delivery_mode);
1131 break;
1132 }
1133 return result;
1134}
1135
1136int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2)
1137{
1138 return vcpu1->arch.apic_arb_prio - vcpu2->arch.apic_arb_prio;
1139}
1140
1141static bool kvm_ioapic_handles_vector(struct kvm_lapic *apic, int vector)
1142{
1143 return test_bit(vector, apic->vcpu->arch.ioapic_handled_vectors);
1144}
1145
1146static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
1147{
1148 int trigger_mode;
1149
1150 /* Eoi the ioapic only if the ioapic doesn't own the vector. */
1151 if (!kvm_ioapic_handles_vector(apic, vector))
1152 return;
1153
1154 /* Request a KVM exit to inform the userspace IOAPIC. */
1155 if (irqchip_split(apic->vcpu->kvm)) {
1156 apic->vcpu->arch.pending_ioapic_eoi = vector;
1157 kvm_make_request(KVM_REQ_IOAPIC_EOI_EXIT, apic->vcpu);
1158 return;
1159 }
1160
1161 if (apic_test_vector(vector, apic->regs + APIC_TMR))
1162 trigger_mode = IOAPIC_LEVEL_TRIG;
1163 else
1164 trigger_mode = IOAPIC_EDGE_TRIG;
1165
1166 kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
1167}
1168
1169static int apic_set_eoi(struct kvm_lapic *apic)
1170{
1171 int vector = apic_find_highest_isr(apic);
1172
1173 trace_kvm_eoi(apic, vector);
1174
1175 /*
1176 * Not every write EOI will has corresponding ISR,
1177 * one example is when Kernel check timer on setup_IO_APIC
1178 */
1179 if (vector == -1)
1180 return vector;
1181
1182 apic_clear_isr(vector, apic);
1183 apic_update_ppr(apic);
1184
1185 if (test_bit(vector, vcpu_to_synic(apic->vcpu)->vec_bitmap))
1186 kvm_hv_synic_send_eoi(apic->vcpu, vector);
1187
1188 kvm_ioapic_send_eoi(apic, vector);
1189 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1190 return vector;
1191}
1192
1193/*
1194 * this interface assumes a trap-like exit, which has already finished
1195 * desired side effect including vISR and vPPR update.
1196 */
1197void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector)
1198{
1199 struct kvm_lapic *apic = vcpu->arch.apic;
1200
1201 trace_kvm_eoi(apic, vector);
1202
1203 kvm_ioapic_send_eoi(apic, vector);
1204 kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
1205}
1206EXPORT_SYMBOL_GPL(kvm_apic_set_eoi_accelerated);
1207
1208static void apic_send_ipi(struct kvm_lapic *apic)
1209{
1210 u32 icr_low = kvm_lapic_get_reg(apic, APIC_ICR);
1211 u32 icr_high = kvm_lapic_get_reg(apic, APIC_ICR2);
1212 struct kvm_lapic_irq irq;
1213
1214 irq.vector = icr_low & APIC_VECTOR_MASK;
1215 irq.delivery_mode = icr_low & APIC_MODE_MASK;
1216 irq.dest_mode = icr_low & APIC_DEST_MASK;
1217 irq.level = (icr_low & APIC_INT_ASSERT) != 0;
1218 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG;
1219 irq.shorthand = icr_low & APIC_SHORT_MASK;
1220 irq.msi_redir_hint = false;
1221 if (apic_x2apic_mode(apic))
1222 irq.dest_id = icr_high;
1223 else
1224 irq.dest_id = GET_APIC_DEST_FIELD(icr_high);
1225
1226 trace_kvm_apic_ipi(icr_low, irq.dest_id);
1227
1228 apic_debug("icr_high 0x%x, icr_low 0x%x, "
1229 "short_hand 0x%x, dest 0x%x, trig_mode 0x%x, level 0x%x, "
1230 "dest_mode 0x%x, delivery_mode 0x%x, vector 0x%x, "
1231 "msi_redir_hint 0x%x\n",
1232 icr_high, icr_low, irq.shorthand, irq.dest_id,
1233 irq.trig_mode, irq.level, irq.dest_mode, irq.delivery_mode,
1234 irq.vector, irq.msi_redir_hint);
1235
1236 kvm_irq_delivery_to_apic(apic->vcpu->kvm, apic, &irq, NULL);
1237}
1238
1239static u32 apic_get_tmcct(struct kvm_lapic *apic)
1240{
1241 ktime_t remaining, now;
1242 s64 ns;
1243 u32 tmcct;
1244
1245 ASSERT(apic != NULL);
1246
1247 /* if initial count is 0, current count should also be 0 */
1248 if (kvm_lapic_get_reg(apic, APIC_TMICT) == 0 ||
1249 apic->lapic_timer.period == 0)
1250 return 0;
1251
1252 now = ktime_get();
1253 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1254 if (ktime_to_ns(remaining) < 0)
1255 remaining = 0;
1256
1257 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);
1258 tmcct = div64_u64(ns,
1259 (APIC_BUS_CYCLE_NS * apic->divide_count));
1260
1261 return tmcct;
1262}
1263
1264static void __report_tpr_access(struct kvm_lapic *apic, bool write)
1265{
1266 struct kvm_vcpu *vcpu = apic->vcpu;
1267 struct kvm_run *run = vcpu->run;
1268
1269 kvm_make_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu);
1270 run->tpr_access.rip = kvm_rip_read(vcpu);
1271 run->tpr_access.is_write = write;
1272}
1273
1274static inline void report_tpr_access(struct kvm_lapic *apic, bool write)
1275{
1276 if (apic->vcpu->arch.tpr_access_reporting)
1277 __report_tpr_access(apic, write);
1278}
1279
1280static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
1281{
1282 u32 val = 0;
1283
1284 if (offset >= LAPIC_MMIO_LENGTH)
1285 return 0;
1286
1287 switch (offset) {
1288 case APIC_ARBPRI:
1289 apic_debug("Access APIC ARBPRI register which is for P6\n");
1290 break;
1291
1292 case APIC_TMCCT: /* Timer CCR */
1293 if (apic_lvtt_tscdeadline(apic))
1294 return 0;
1295
1296 val = apic_get_tmcct(apic);
1297 break;
1298 case APIC_PROCPRI:
1299 apic_update_ppr(apic);
1300 val = kvm_lapic_get_reg(apic, offset);
1301 break;
1302 case APIC_TASKPRI:
1303 report_tpr_access(apic, false);
1304 /* fall thru */
1305 default:
1306 val = kvm_lapic_get_reg(apic, offset);
1307 break;
1308 }
1309
1310 return val;
1311}
1312
1313static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
1314{
1315 return container_of(dev, struct kvm_lapic, dev);
1316}
1317
1318int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
1319 void *data)
1320{
1321 unsigned char alignment = offset & 0xf;
1322 u32 result;
1323 /* this bitmask has a bit cleared for each reserved register */
1324 static const u64 rmask = 0x43ff01ffffffe70cULL;
1325
1326 if ((alignment + len) > 4) {
1327 apic_debug("KVM_APIC_READ: alignment error %x %d\n",
1328 offset, len);
1329 return 1;
1330 }
1331
1332 if (offset > 0x3f0 || !(rmask & (1ULL << (offset >> 4)))) {
1333 apic_debug("KVM_APIC_READ: read reserved register %x\n",
1334 offset);
1335 return 1;
1336 }
1337
1338 result = __apic_read(apic, offset & ~0xf);
1339
1340 trace_kvm_apic_read(offset, result);
1341
1342 switch (len) {
1343 case 1:
1344 case 2:
1345 case 4:
1346 memcpy(data, (char *)&result + alignment, len);
1347 break;
1348 default:
1349 printk(KERN_ERR "Local APIC read with len = %x, "
1350 "should be 1,2, or 4 instead\n", len);
1351 break;
1352 }
1353 return 0;
1354}
1355EXPORT_SYMBOL_GPL(kvm_lapic_reg_read);
1356
1357static int apic_mmio_in_range(struct kvm_lapic *apic, gpa_t addr)
1358{
1359 return addr >= apic->base_address &&
1360 addr < apic->base_address + LAPIC_MMIO_LENGTH;
1361}
1362
1363static int apic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
1364 gpa_t address, int len, void *data)
1365{
1366 struct kvm_lapic *apic = to_lapic(this);
1367 u32 offset = address - apic->base_address;
1368
1369 if (!apic_mmio_in_range(apic, address))
1370 return -EOPNOTSUPP;
1371
1372 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1373 if (!kvm_check_has_quirk(vcpu->kvm,
1374 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1375 return -EOPNOTSUPP;
1376
1377 memset(data, 0xff, len);
1378 return 0;
1379 }
1380
1381 kvm_lapic_reg_read(apic, offset, len, data);
1382
1383 return 0;
1384}
1385
1386static void update_divide_count(struct kvm_lapic *apic)
1387{
1388 u32 tmp1, tmp2, tdcr;
1389
1390 tdcr = kvm_lapic_get_reg(apic, APIC_TDCR);
1391 tmp1 = tdcr & 0xf;
1392 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1;
1393 apic->divide_count = 0x1 << (tmp2 & 0x7);
1394
1395 apic_debug("timer divide count is 0x%x\n",
1396 apic->divide_count);
1397}
1398
1399static void limit_periodic_timer_frequency(struct kvm_lapic *apic)
1400{
1401 /*
1402 * Do not allow the guest to program periodic timers with small
1403 * interval, since the hrtimers are not throttled by the host
1404 * scheduler.
1405 */
1406 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1407 s64 min_period = min_timer_period_us * 1000LL;
1408
1409 if (apic->lapic_timer.period < min_period) {
1410 pr_info_ratelimited(
1411 "kvm: vcpu %i: requested %lld ns "
1412 "lapic timer period limited to %lld ns\n",
1413 apic->vcpu->vcpu_id,
1414 apic->lapic_timer.period, min_period);
1415 apic->lapic_timer.period = min_period;
1416 }
1417 }
1418}
1419
1420static void apic_update_lvtt(struct kvm_lapic *apic)
1421{
1422 u32 timer_mode = kvm_lapic_get_reg(apic, APIC_LVTT) &
1423 apic->lapic_timer.timer_mode_mask;
1424
1425 if (apic->lapic_timer.timer_mode != timer_mode) {
1426 if (apic_lvtt_tscdeadline(apic) != (timer_mode ==
1427 APIC_LVT_TIMER_TSCDEADLINE)) {
1428 hrtimer_cancel(&apic->lapic_timer.timer);
1429 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
1430 apic->lapic_timer.period = 0;
1431 apic->lapic_timer.tscdeadline = 0;
1432 }
1433 apic->lapic_timer.timer_mode = timer_mode;
1434 limit_periodic_timer_frequency(apic);
1435 }
1436}
1437
1438static void apic_timer_expired(struct kvm_lapic *apic)
1439{
1440 struct kvm_vcpu *vcpu = apic->vcpu;
1441 struct swait_queue_head *q = &vcpu->wq;
1442 struct kvm_timer *ktimer = &apic->lapic_timer;
1443
1444 if (atomic_read(&apic->lapic_timer.pending))
1445 return;
1446
1447 atomic_inc(&apic->lapic_timer.pending);
1448 kvm_set_pending_timer(vcpu);
1449
1450 /*
1451 * For x86, the atomic_inc() is serialized, thus
1452 * using swait_active() is safe.
1453 */
1454 if (swait_active(q))
1455 swake_up_one(q);
1456
1457 if (apic_lvtt_tscdeadline(apic) || ktimer->hv_timer_in_use)
1458 ktimer->expired_tscdeadline = ktimer->tscdeadline;
1459}
1460
1461/*
1462 * On APICv, this test will cause a busy wait
1463 * during a higher-priority task.
1464 */
1465
1466static bool lapic_timer_int_injected(struct kvm_vcpu *vcpu)
1467{
1468 struct kvm_lapic *apic = vcpu->arch.apic;
1469 u32 reg = kvm_lapic_get_reg(apic, APIC_LVTT);
1470
1471 if (kvm_apic_hw_enabled(apic)) {
1472 int vec = reg & APIC_VECTOR_MASK;
1473 void *bitmap = apic->regs + APIC_ISR;
1474
1475 if (vcpu->arch.apicv_active)
1476 bitmap = apic->regs + APIC_IRR;
1477
1478 if (apic_test_vector(vec, bitmap))
1479 return true;
1480 }
1481 return false;
1482}
1483
1484void wait_lapic_expire(struct kvm_vcpu *vcpu)
1485{
1486 struct kvm_lapic *apic = vcpu->arch.apic;
1487 u64 guest_tsc, tsc_deadline;
1488
1489 if (!lapic_in_kernel(vcpu))
1490 return;
1491
1492 if (apic->lapic_timer.expired_tscdeadline == 0)
1493 return;
1494
1495 if (!lapic_timer_int_injected(vcpu))
1496 return;
1497
1498 tsc_deadline = apic->lapic_timer.expired_tscdeadline;
1499 apic->lapic_timer.expired_tscdeadline = 0;
1500 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1501 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, guest_tsc - tsc_deadline);
1502
1503 /* __delay is delay_tsc whenever the hardware has TSC, thus always. */
1504 if (guest_tsc < tsc_deadline)
1505 __delay(min(tsc_deadline - guest_tsc,
1506 nsec_to_cycles(vcpu, lapic_timer_advance_ns)));
1507}
1508
1509static void start_sw_tscdeadline(struct kvm_lapic *apic)
1510{
1511 u64 guest_tsc, tscdeadline = apic->lapic_timer.tscdeadline;
1512 u64 ns = 0;
1513 ktime_t expire;
1514 struct kvm_vcpu *vcpu = apic->vcpu;
1515 unsigned long this_tsc_khz = vcpu->arch.virtual_tsc_khz;
1516 unsigned long flags;
1517 ktime_t now;
1518
1519 if (unlikely(!tscdeadline || !this_tsc_khz))
1520 return;
1521
1522 local_irq_save(flags);
1523
1524 now = ktime_get();
1525 guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1526 if (likely(tscdeadline > guest_tsc)) {
1527 ns = (tscdeadline - guest_tsc) * 1000000ULL;
1528 do_div(ns, this_tsc_khz);
1529 expire = ktime_add_ns(now, ns);
1530 expire = ktime_sub_ns(expire, lapic_timer_advance_ns);
1531 hrtimer_start(&apic->lapic_timer.timer,
1532 expire, HRTIMER_MODE_ABS_PINNED);
1533 } else
1534 apic_timer_expired(apic);
1535
1536 local_irq_restore(flags);
1537}
1538
1539static void update_target_expiration(struct kvm_lapic *apic, uint32_t old_divisor)
1540{
1541 ktime_t now, remaining;
1542 u64 ns_remaining_old, ns_remaining_new;
1543
1544 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
1545 * APIC_BUS_CYCLE_NS * apic->divide_count;
1546 limit_periodic_timer_frequency(apic);
1547
1548 now = ktime_get();
1549 remaining = ktime_sub(apic->lapic_timer.target_expiration, now);
1550 if (ktime_to_ns(remaining) < 0)
1551 remaining = 0;
1552
1553 ns_remaining_old = ktime_to_ns(remaining);
1554 ns_remaining_new = mul_u64_u32_div(ns_remaining_old,
1555 apic->divide_count, old_divisor);
1556
1557 apic->lapic_timer.tscdeadline +=
1558 nsec_to_cycles(apic->vcpu, ns_remaining_new) -
1559 nsec_to_cycles(apic->vcpu, ns_remaining_old);
1560 apic->lapic_timer.target_expiration = ktime_add_ns(now, ns_remaining_new);
1561}
1562
1563static bool set_target_expiration(struct kvm_lapic *apic)
1564{
1565 ktime_t now;
1566 u64 tscl = rdtsc();
1567
1568 now = ktime_get();
1569 apic->lapic_timer.period = (u64)kvm_lapic_get_reg(apic, APIC_TMICT)
1570 * APIC_BUS_CYCLE_NS * apic->divide_count;
1571
1572 if (!apic->lapic_timer.period) {
1573 apic->lapic_timer.tscdeadline = 0;
1574 return false;
1575 }
1576
1577 limit_periodic_timer_frequency(apic);
1578
1579 apic_debug("%s: bus cycle is %" PRId64 "ns, now 0x%016"
1580 PRIx64 ", "
1581 "timer initial count 0x%x, period %lldns, "
1582 "expire @ 0x%016" PRIx64 ".\n", __func__,
1583 APIC_BUS_CYCLE_NS, ktime_to_ns(now),
1584 kvm_lapic_get_reg(apic, APIC_TMICT),
1585 apic->lapic_timer.period,
1586 ktime_to_ns(ktime_add_ns(now,
1587 apic->lapic_timer.period)));
1588
1589 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1590 nsec_to_cycles(apic->vcpu, apic->lapic_timer.period);
1591 apic->lapic_timer.target_expiration = ktime_add_ns(now, apic->lapic_timer.period);
1592
1593 return true;
1594}
1595
1596static void advance_periodic_target_expiration(struct kvm_lapic *apic)
1597{
1598 ktime_t now = ktime_get();
1599 u64 tscl = rdtsc();
1600 ktime_t delta;
1601
1602 /*
1603 * Synchronize both deadlines to the same time source or
1604 * differences in the periods (caused by differences in the
1605 * underlying clocks or numerical approximation errors) will
1606 * cause the two to drift apart over time as the errors
1607 * accumulate.
1608 */
1609 apic->lapic_timer.target_expiration =
1610 ktime_add_ns(apic->lapic_timer.target_expiration,
1611 apic->lapic_timer.period);
1612 delta = ktime_sub(apic->lapic_timer.target_expiration, now);
1613 apic->lapic_timer.tscdeadline = kvm_read_l1_tsc(apic->vcpu, tscl) +
1614 nsec_to_cycles(apic->vcpu, delta);
1615}
1616
1617static void start_sw_period(struct kvm_lapic *apic)
1618{
1619 if (!apic->lapic_timer.period)
1620 return;
1621
1622 if (ktime_after(ktime_get(),
1623 apic->lapic_timer.target_expiration)) {
1624 apic_timer_expired(apic);
1625
1626 if (apic_lvtt_oneshot(apic))
1627 return;
1628
1629 advance_periodic_target_expiration(apic);
1630 }
1631
1632 hrtimer_start(&apic->lapic_timer.timer,
1633 apic->lapic_timer.target_expiration,
1634 HRTIMER_MODE_ABS_PINNED);
1635}
1636
1637bool kvm_lapic_hv_timer_in_use(struct kvm_vcpu *vcpu)
1638{
1639 if (!lapic_in_kernel(vcpu))
1640 return false;
1641
1642 return vcpu->arch.apic->lapic_timer.hv_timer_in_use;
1643}
1644EXPORT_SYMBOL_GPL(kvm_lapic_hv_timer_in_use);
1645
1646static void cancel_hv_timer(struct kvm_lapic *apic)
1647{
1648 WARN_ON(preemptible());
1649 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1650 kvm_x86_ops->cancel_hv_timer(apic->vcpu);
1651 apic->lapic_timer.hv_timer_in_use = false;
1652}
1653
1654static bool start_hv_timer(struct kvm_lapic *apic)
1655{
1656 struct kvm_timer *ktimer = &apic->lapic_timer;
1657 int r;
1658
1659 WARN_ON(preemptible());
1660 if (!kvm_x86_ops->set_hv_timer)
1661 return false;
1662
1663 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
1664 return false;
1665
1666 if (!ktimer->tscdeadline)
1667 return false;
1668
1669 r = kvm_x86_ops->set_hv_timer(apic->vcpu, ktimer->tscdeadline);
1670 if (r < 0)
1671 return false;
1672
1673 ktimer->hv_timer_in_use = true;
1674 hrtimer_cancel(&ktimer->timer);
1675
1676 /*
1677 * Also recheck ktimer->pending, in case the sw timer triggered in
1678 * the window. For periodic timer, leave the hv timer running for
1679 * simplicity, and the deadline will be recomputed on the next vmexit.
1680 */
1681 if (!apic_lvtt_period(apic) && (r || atomic_read(&ktimer->pending))) {
1682 if (r)
1683 apic_timer_expired(apic);
1684 return false;
1685 }
1686
1687 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, true);
1688 return true;
1689}
1690
1691static void start_sw_timer(struct kvm_lapic *apic)
1692{
1693 struct kvm_timer *ktimer = &apic->lapic_timer;
1694
1695 WARN_ON(preemptible());
1696 if (apic->lapic_timer.hv_timer_in_use)
1697 cancel_hv_timer(apic);
1698 if (!apic_lvtt_period(apic) && atomic_read(&ktimer->pending))
1699 return;
1700
1701 if (apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1702 start_sw_period(apic);
1703 else if (apic_lvtt_tscdeadline(apic))
1704 start_sw_tscdeadline(apic);
1705 trace_kvm_hv_timer_state(apic->vcpu->vcpu_id, false);
1706}
1707
1708static void restart_apic_timer(struct kvm_lapic *apic)
1709{
1710 preempt_disable();
1711 if (!start_hv_timer(apic))
1712 start_sw_timer(apic);
1713 preempt_enable();
1714}
1715
1716void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
1717{
1718 struct kvm_lapic *apic = vcpu->arch.apic;
1719
1720 preempt_disable();
1721 /* If the preempt notifier has already run, it also called apic_timer_expired */
1722 if (!apic->lapic_timer.hv_timer_in_use)
1723 goto out;
1724 WARN_ON(swait_active(&vcpu->wq));
1725 cancel_hv_timer(apic);
1726 apic_timer_expired(apic);
1727
1728 if (apic_lvtt_period(apic) && apic->lapic_timer.period) {
1729 advance_periodic_target_expiration(apic);
1730 restart_apic_timer(apic);
1731 }
1732out:
1733 preempt_enable();
1734}
1735EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
1736
1737void kvm_lapic_switch_to_hv_timer(struct kvm_vcpu *vcpu)
1738{
1739 restart_apic_timer(vcpu->arch.apic);
1740}
1741EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_hv_timer);
1742
1743void kvm_lapic_switch_to_sw_timer(struct kvm_vcpu *vcpu)
1744{
1745 struct kvm_lapic *apic = vcpu->arch.apic;
1746
1747 preempt_disable();
1748 /* Possibly the TSC deadline timer is not enabled yet */
1749 if (apic->lapic_timer.hv_timer_in_use)
1750 start_sw_timer(apic);
1751 preempt_enable();
1752}
1753EXPORT_SYMBOL_GPL(kvm_lapic_switch_to_sw_timer);
1754
1755void kvm_lapic_restart_hv_timer(struct kvm_vcpu *vcpu)
1756{
1757 struct kvm_lapic *apic = vcpu->arch.apic;
1758
1759 WARN_ON(!apic->lapic_timer.hv_timer_in_use);
1760 restart_apic_timer(apic);
1761}
1762
1763static void start_apic_timer(struct kvm_lapic *apic)
1764{
1765 atomic_set(&apic->lapic_timer.pending, 0);
1766
1767 if ((apic_lvtt_period(apic) || apic_lvtt_oneshot(apic))
1768 && !set_target_expiration(apic))
1769 return;
1770
1771 restart_apic_timer(apic);
1772}
1773
1774static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
1775{
1776 bool lvt0_in_nmi_mode = apic_lvt_nmi_mode(lvt0_val);
1777
1778 if (apic->lvt0_in_nmi_mode != lvt0_in_nmi_mode) {
1779 apic->lvt0_in_nmi_mode = lvt0_in_nmi_mode;
1780 if (lvt0_in_nmi_mode) {
1781 apic_debug("Receive NMI setting on APIC_LVT0 "
1782 "for cpu %d\n", apic->vcpu->vcpu_id);
1783 atomic_inc(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1784 } else
1785 atomic_dec(&apic->vcpu->kvm->arch.vapics_in_nmi_mode);
1786 }
1787}
1788
1789int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
1790{
1791 int ret = 0;
1792
1793 trace_kvm_apic_write(reg, val);
1794
1795 switch (reg) {
1796 case APIC_ID: /* Local APIC ID */
1797 if (!apic_x2apic_mode(apic))
1798 kvm_apic_set_xapic_id(apic, val >> 24);
1799 else
1800 ret = 1;
1801 break;
1802
1803 case APIC_TASKPRI:
1804 report_tpr_access(apic, true);
1805 apic_set_tpr(apic, val & 0xff);
1806 break;
1807
1808 case APIC_EOI:
1809 apic_set_eoi(apic);
1810 break;
1811
1812 case APIC_LDR:
1813 if (!apic_x2apic_mode(apic))
1814 kvm_apic_set_ldr(apic, val & APIC_LDR_MASK);
1815 else
1816 ret = 1;
1817 break;
1818
1819 case APIC_DFR:
1820 if (!apic_x2apic_mode(apic)) {
1821 kvm_lapic_set_reg(apic, APIC_DFR, val | 0x0FFFFFFF);
1822 recalculate_apic_map(apic->vcpu->kvm);
1823 } else
1824 ret = 1;
1825 break;
1826
1827 case APIC_SPIV: {
1828 u32 mask = 0x3ff;
1829 if (kvm_lapic_get_reg(apic, APIC_LVR) & APIC_LVR_DIRECTED_EOI)
1830 mask |= APIC_SPIV_DIRECTED_EOI;
1831 apic_set_spiv(apic, val & mask);
1832 if (!(val & APIC_SPIV_APIC_ENABLED)) {
1833 int i;
1834 u32 lvt_val;
1835
1836 for (i = 0; i < KVM_APIC_LVT_NUM; i++) {
1837 lvt_val = kvm_lapic_get_reg(apic,
1838 APIC_LVTT + 0x10 * i);
1839 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i,
1840 lvt_val | APIC_LVT_MASKED);
1841 }
1842 apic_update_lvtt(apic);
1843 atomic_set(&apic->lapic_timer.pending, 0);
1844
1845 }
1846 break;
1847 }
1848 case APIC_ICR:
1849 /* No delay here, so we always clear the pending bit */
1850 kvm_lapic_set_reg(apic, APIC_ICR, val & ~(1 << 12));
1851 apic_send_ipi(apic);
1852 break;
1853
1854 case APIC_ICR2:
1855 if (!apic_x2apic_mode(apic))
1856 val &= 0xff000000;
1857 kvm_lapic_set_reg(apic, APIC_ICR2, val);
1858 break;
1859
1860 case APIC_LVT0:
1861 apic_manage_nmi_watchdog(apic, val);
1862 case APIC_LVTTHMR:
1863 case APIC_LVTPC:
1864 case APIC_LVT1:
1865 case APIC_LVTERR:
1866 /* TODO: Check vector */
1867 if (!kvm_apic_sw_enabled(apic))
1868 val |= APIC_LVT_MASKED;
1869
1870 val &= apic_lvt_mask[(reg - APIC_LVTT) >> 4];
1871 kvm_lapic_set_reg(apic, reg, val);
1872
1873 break;
1874
1875 case APIC_LVTT:
1876 if (!kvm_apic_sw_enabled(apic))
1877 val |= APIC_LVT_MASKED;
1878 val &= (apic_lvt_mask[0] | apic->lapic_timer.timer_mode_mask);
1879 kvm_lapic_set_reg(apic, APIC_LVTT, val);
1880 apic_update_lvtt(apic);
1881 break;
1882
1883 case APIC_TMICT:
1884 if (apic_lvtt_tscdeadline(apic))
1885 break;
1886
1887 hrtimer_cancel(&apic->lapic_timer.timer);
1888 kvm_lapic_set_reg(apic, APIC_TMICT, val);
1889 start_apic_timer(apic);
1890 break;
1891
1892 case APIC_TDCR: {
1893 uint32_t old_divisor = apic->divide_count;
1894
1895 if (val & 4)
1896 apic_debug("KVM_WRITE:TDCR %x\n", val);
1897 kvm_lapic_set_reg(apic, APIC_TDCR, val);
1898 update_divide_count(apic);
1899 if (apic->divide_count != old_divisor &&
1900 apic->lapic_timer.period) {
1901 hrtimer_cancel(&apic->lapic_timer.timer);
1902 update_target_expiration(apic, old_divisor);
1903 restart_apic_timer(apic);
1904 }
1905 break;
1906 }
1907 case APIC_ESR:
1908 if (apic_x2apic_mode(apic) && val != 0) {
1909 apic_debug("KVM_WRITE:ESR not zero %x\n", val);
1910 ret = 1;
1911 }
1912 break;
1913
1914 case APIC_SELF_IPI:
1915 if (apic_x2apic_mode(apic)) {
1916 kvm_lapic_reg_write(apic, APIC_ICR, 0x40000 | (val & 0xff));
1917 } else
1918 ret = 1;
1919 break;
1920 default:
1921 ret = 1;
1922 break;
1923 }
1924 if (ret)
1925 apic_debug("Local APIC Write to read-only register %x\n", reg);
1926 return ret;
1927}
1928EXPORT_SYMBOL_GPL(kvm_lapic_reg_write);
1929
1930static int apic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
1931 gpa_t address, int len, const void *data)
1932{
1933 struct kvm_lapic *apic = to_lapic(this);
1934 unsigned int offset = address - apic->base_address;
1935 u32 val;
1936
1937 if (!apic_mmio_in_range(apic, address))
1938 return -EOPNOTSUPP;
1939
1940 if (!kvm_apic_hw_enabled(apic) || apic_x2apic_mode(apic)) {
1941 if (!kvm_check_has_quirk(vcpu->kvm,
1942 KVM_X86_QUIRK_LAPIC_MMIO_HOLE))
1943 return -EOPNOTSUPP;
1944
1945 return 0;
1946 }
1947
1948 /*
1949 * APIC register must be aligned on 128-bits boundary.
1950 * 32/64/128 bits registers must be accessed thru 32 bits.
1951 * Refer SDM 8.4.1
1952 */
1953 if (len != 4 || (offset & 0xf)) {
1954 /* Don't shout loud, $infamous_os would cause only noise. */
1955 apic_debug("apic write: bad size=%d %lx\n", len, (long)address);
1956 return 0;
1957 }
1958
1959 val = *(u32*)data;
1960
1961 /* too common printing */
1962 if (offset != APIC_EOI)
1963 apic_debug("%s: offset 0x%x with length 0x%x, and value is "
1964 "0x%x\n", __func__, offset, len, val);
1965
1966 kvm_lapic_reg_write(apic, offset & 0xff0, val);
1967
1968 return 0;
1969}
1970
1971void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu)
1972{
1973 kvm_lapic_reg_write(vcpu->arch.apic, APIC_EOI, 0);
1974}
1975EXPORT_SYMBOL_GPL(kvm_lapic_set_eoi);
1976
1977/* emulate APIC access in a trap manner */
1978void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset)
1979{
1980 u32 val = 0;
1981
1982 /* hw has done the conditional check and inst decode */
1983 offset &= 0xff0;
1984
1985 kvm_lapic_reg_read(vcpu->arch.apic, offset, 4, &val);
1986
1987 /* TODO: optimize to just emulate side effect w/o one more write */
1988 kvm_lapic_reg_write(vcpu->arch.apic, offset, val);
1989}
1990EXPORT_SYMBOL_GPL(kvm_apic_write_nodecode);
1991
1992void kvm_free_lapic(struct kvm_vcpu *vcpu)
1993{
1994 struct kvm_lapic *apic = vcpu->arch.apic;
1995
1996 if (!vcpu->arch.apic)
1997 return;
1998
1999 hrtimer_cancel(&apic->lapic_timer.timer);
2000
2001 if (!(vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE))
2002 static_key_slow_dec_deferred(&apic_hw_disabled);
2003
2004 if (!apic->sw_enabled)
2005 static_key_slow_dec_deferred(&apic_sw_disabled);
2006
2007 if (apic->regs)
2008 free_page((unsigned long)apic->regs);
2009
2010 kfree(apic);
2011}
2012
2013/*
2014 *----------------------------------------------------------------------
2015 * LAPIC interface
2016 *----------------------------------------------------------------------
2017 */
2018u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu)
2019{
2020 struct kvm_lapic *apic = vcpu->arch.apic;
2021
2022 if (!lapic_in_kernel(vcpu) ||
2023 !apic_lvtt_tscdeadline(apic))
2024 return 0;
2025
2026 return apic->lapic_timer.tscdeadline;
2027}
2028
2029void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data)
2030{
2031 struct kvm_lapic *apic = vcpu->arch.apic;
2032
2033 if (!lapic_in_kernel(vcpu) || apic_lvtt_oneshot(apic) ||
2034 apic_lvtt_period(apic))
2035 return;
2036
2037 hrtimer_cancel(&apic->lapic_timer.timer);
2038 apic->lapic_timer.tscdeadline = data;
2039 start_apic_timer(apic);
2040}
2041
2042void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
2043{
2044 struct kvm_lapic *apic = vcpu->arch.apic;
2045
2046 apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
2047 | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4));
2048}
2049
2050u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
2051{
2052 u64 tpr;
2053
2054 tpr = (u64) kvm_lapic_get_reg(vcpu->arch.apic, APIC_TASKPRI);
2055
2056 return (tpr & 0xf0) >> 4;
2057}
2058
2059void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value)
2060{
2061 u64 old_value = vcpu->arch.apic_base;
2062 struct kvm_lapic *apic = vcpu->arch.apic;
2063
2064 if (!apic)
2065 value |= MSR_IA32_APICBASE_BSP;
2066
2067 vcpu->arch.apic_base = value;
2068
2069 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE)
2070 kvm_update_cpuid(vcpu);
2071
2072 if (!apic)
2073 return;
2074
2075 /* update jump label if enable bit changes */
2076 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) {
2077 if (value & MSR_IA32_APICBASE_ENABLE) {
2078 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
2079 static_key_slow_dec_deferred(&apic_hw_disabled);
2080 } else {
2081 static_key_slow_inc(&apic_hw_disabled.key);
2082 recalculate_apic_map(vcpu->kvm);
2083 }
2084 }
2085
2086 if (((old_value ^ value) & X2APIC_ENABLE) && (value & X2APIC_ENABLE))
2087 kvm_apic_set_x2apic_id(apic, vcpu->vcpu_id);
2088
2089 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE))
2090 kvm_x86_ops->set_virtual_apic_mode(vcpu);
2091
2092 apic->base_address = apic->vcpu->arch.apic_base &
2093 MSR_IA32_APICBASE_BASE;
2094
2095 if ((value & MSR_IA32_APICBASE_ENABLE) &&
2096 apic->base_address != APIC_DEFAULT_PHYS_BASE)
2097 pr_warn_once("APIC base relocation is unsupported by KVM");
2098
2099 /* with FSB delivery interrupt, we can restart APIC functionality */
2100 apic_debug("apic base msr is 0x%016" PRIx64 ", and base address is "
2101 "0x%lx.\n", apic->vcpu->arch.apic_base, apic->base_address);
2102
2103}
2104
2105void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event)
2106{
2107 struct kvm_lapic *apic = vcpu->arch.apic;
2108 int i;
2109
2110 if (!apic)
2111 return;
2112
2113 apic_debug("%s\n", __func__);
2114
2115 /* Stop the timer in case it's a reset to an active apic */
2116 hrtimer_cancel(&apic->lapic_timer.timer);
2117
2118 if (!init_event) {
2119 kvm_lapic_set_base(vcpu, APIC_DEFAULT_PHYS_BASE |
2120 MSR_IA32_APICBASE_ENABLE);
2121 kvm_apic_set_xapic_id(apic, vcpu->vcpu_id);
2122 }
2123 kvm_apic_set_version(apic->vcpu);
2124
2125 for (i = 0; i < KVM_APIC_LVT_NUM; i++)
2126 kvm_lapic_set_reg(apic, APIC_LVTT + 0x10 * i, APIC_LVT_MASKED);
2127 apic_update_lvtt(apic);
2128 if (kvm_vcpu_is_reset_bsp(vcpu) &&
2129 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_LINT0_REENABLED))
2130 kvm_lapic_set_reg(apic, APIC_LVT0,
2131 SET_APIC_DELIVERY_MODE(0, APIC_MODE_EXTINT));
2132 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
2133
2134 kvm_lapic_set_reg(apic, APIC_DFR, 0xffffffffU);
2135 apic_set_spiv(apic, 0xff);
2136 kvm_lapic_set_reg(apic, APIC_TASKPRI, 0);
2137 if (!apic_x2apic_mode(apic))
2138 kvm_apic_set_ldr(apic, 0);
2139 kvm_lapic_set_reg(apic, APIC_ESR, 0);
2140 kvm_lapic_set_reg(apic, APIC_ICR, 0);
2141 kvm_lapic_set_reg(apic, APIC_ICR2, 0);
2142 kvm_lapic_set_reg(apic, APIC_TDCR, 0);
2143 kvm_lapic_set_reg(apic, APIC_TMICT, 0);
2144 for (i = 0; i < 8; i++) {
2145 kvm_lapic_set_reg(apic, APIC_IRR + 0x10 * i, 0);
2146 kvm_lapic_set_reg(apic, APIC_ISR + 0x10 * i, 0);
2147 kvm_lapic_set_reg(apic, APIC_TMR + 0x10 * i, 0);
2148 }
2149 apic->irr_pending = vcpu->arch.apicv_active;
2150 apic->isr_count = vcpu->arch.apicv_active ? 1 : 0;
2151 apic->highest_isr_cache = -1;
2152 update_divide_count(apic);
2153 atomic_set(&apic->lapic_timer.pending, 0);
2154 if (kvm_vcpu_is_bsp(vcpu))
2155 kvm_lapic_set_base(vcpu,
2156 vcpu->arch.apic_base | MSR_IA32_APICBASE_BSP);
2157 vcpu->arch.pv_eoi.msr_val = 0;
2158 apic_update_ppr(apic);
2159 if (vcpu->arch.apicv_active) {
2160 kvm_x86_ops->apicv_post_state_restore(vcpu);
2161 kvm_x86_ops->hwapic_irr_update(vcpu, -1);
2162 kvm_x86_ops->hwapic_isr_update(vcpu, -1);
2163 }
2164
2165 vcpu->arch.apic_arb_prio = 0;
2166 vcpu->arch.apic_attention = 0;
2167
2168 apic_debug("%s: vcpu=%p, id=0x%x, base_msr="
2169 "0x%016" PRIx64 ", base_address=0x%0lx.\n", __func__,
2170 vcpu, kvm_lapic_get_reg(apic, APIC_ID),
2171 vcpu->arch.apic_base, apic->base_address);
2172}
2173
2174/*
2175 *----------------------------------------------------------------------
2176 * timer interface
2177 *----------------------------------------------------------------------
2178 */
2179
2180static bool lapic_is_periodic(struct kvm_lapic *apic)
2181{
2182 return apic_lvtt_period(apic);
2183}
2184
2185int apic_has_pending_timer(struct kvm_vcpu *vcpu)
2186{
2187 struct kvm_lapic *apic = vcpu->arch.apic;
2188
2189 if (apic_enabled(apic) && apic_lvt_enabled(apic, APIC_LVTT))
2190 return atomic_read(&apic->lapic_timer.pending);
2191
2192 return 0;
2193}
2194
2195int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type)
2196{
2197 u32 reg = kvm_lapic_get_reg(apic, lvt_type);
2198 int vector, mode, trig_mode;
2199
2200 if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) {
2201 vector = reg & APIC_VECTOR_MASK;
2202 mode = reg & APIC_MODE_MASK;
2203 trig_mode = reg & APIC_LVT_LEVEL_TRIGGER;
2204 return __apic_accept_irq(apic, mode, vector, 1, trig_mode,
2205 NULL);
2206 }
2207 return 0;
2208}
2209
2210void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu)
2211{
2212 struct kvm_lapic *apic = vcpu->arch.apic;
2213
2214 if (apic)
2215 kvm_apic_local_deliver(apic, APIC_LVT0);
2216}
2217
2218static const struct kvm_io_device_ops apic_mmio_ops = {
2219 .read = apic_mmio_read,
2220 .write = apic_mmio_write,
2221};
2222
2223static enum hrtimer_restart apic_timer_fn(struct hrtimer *data)
2224{
2225 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
2226 struct kvm_lapic *apic = container_of(ktimer, struct kvm_lapic, lapic_timer);
2227
2228 apic_timer_expired(apic);
2229
2230 if (lapic_is_periodic(apic)) {
2231 advance_periodic_target_expiration(apic);
2232 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
2233 return HRTIMER_RESTART;
2234 } else
2235 return HRTIMER_NORESTART;
2236}
2237
2238int kvm_create_lapic(struct kvm_vcpu *vcpu)
2239{
2240 struct kvm_lapic *apic;
2241
2242 ASSERT(vcpu != NULL);
2243 apic_debug("apic_init %d\n", vcpu->vcpu_id);
2244
2245 apic = kzalloc(sizeof(*apic), GFP_KERNEL);
2246 if (!apic)
2247 goto nomem;
2248
2249 vcpu->arch.apic = apic;
2250
2251 apic->regs = (void *)get_zeroed_page(GFP_KERNEL);
2252 if (!apic->regs) {
2253 printk(KERN_ERR "malloc apic regs error for vcpu %x\n",
2254 vcpu->vcpu_id);
2255 goto nomem_free_apic;
2256 }
2257 apic->vcpu = vcpu;
2258
2259 hrtimer_init(&apic->lapic_timer.timer, CLOCK_MONOTONIC,
2260 HRTIMER_MODE_ABS_PINNED);
2261 apic->lapic_timer.timer.function = apic_timer_fn;
2262
2263 /*
2264 * APIC is created enabled. This will prevent kvm_lapic_set_base from
2265 * thinking that APIC satet has changed.
2266 */
2267 vcpu->arch.apic_base = MSR_IA32_APICBASE_ENABLE;
2268 static_key_slow_inc(&apic_sw_disabled.key); /* sw disabled at reset */
2269 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
2270
2271 return 0;
2272nomem_free_apic:
2273 kfree(apic);
2274nomem:
2275 return -ENOMEM;
2276}
2277
2278int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
2279{
2280 struct kvm_lapic *apic = vcpu->arch.apic;
2281 u32 ppr;
2282
2283 if (!kvm_apic_hw_enabled(apic))
2284 return -1;
2285
2286 __apic_update_ppr(apic, &ppr);
2287 return apic_has_interrupt_for_ppr(apic, ppr);
2288}
2289
2290int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu)
2291{
2292 u32 lvt0 = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LVT0);
2293 int r = 0;
2294
2295 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
2296 r = 1;
2297 if ((lvt0 & APIC_LVT_MASKED) == 0 &&
2298 GET_APIC_DELIVERY_MODE(lvt0) == APIC_MODE_EXTINT)
2299 r = 1;
2300 return r;
2301}
2302
2303void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu)
2304{
2305 struct kvm_lapic *apic = vcpu->arch.apic;
2306
2307 if (atomic_read(&apic->lapic_timer.pending) > 0) {
2308 kvm_apic_local_deliver(apic, APIC_LVTT);
2309 if (apic_lvtt_tscdeadline(apic))
2310 apic->lapic_timer.tscdeadline = 0;
2311 if (apic_lvtt_oneshot(apic)) {
2312 apic->lapic_timer.tscdeadline = 0;
2313 apic->lapic_timer.target_expiration = 0;
2314 }
2315 atomic_set(&apic->lapic_timer.pending, 0);
2316 }
2317}
2318
2319int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu)
2320{
2321 int vector = kvm_apic_has_interrupt(vcpu);
2322 struct kvm_lapic *apic = vcpu->arch.apic;
2323 u32 ppr;
2324
2325 if (vector == -1)
2326 return -1;
2327
2328 /*
2329 * We get here even with APIC virtualization enabled, if doing
2330 * nested virtualization and L1 runs with the "acknowledge interrupt
2331 * on exit" mode. Then we cannot inject the interrupt via RVI,
2332 * because the process would deliver it through the IDT.
2333 */
2334
2335 apic_clear_irr(vector, apic);
2336 if (test_bit(vector, vcpu_to_synic(vcpu)->auto_eoi_bitmap)) {
2337 /*
2338 * For auto-EOI interrupts, there might be another pending
2339 * interrupt above PPR, so check whether to raise another
2340 * KVM_REQ_EVENT.
2341 */
2342 apic_update_ppr(apic);
2343 } else {
2344 /*
2345 * For normal interrupts, PPR has been raised and there cannot
2346 * be a higher-priority pending interrupt---except if there was
2347 * a concurrent interrupt injection, but that would have
2348 * triggered KVM_REQ_EVENT already.
2349 */
2350 apic_set_isr(vector, apic);
2351 __apic_update_ppr(apic, &ppr);
2352 }
2353
2354 return vector;
2355}
2356
2357static int kvm_apic_state_fixup(struct kvm_vcpu *vcpu,
2358 struct kvm_lapic_state *s, bool set)
2359{
2360 if (apic_x2apic_mode(vcpu->arch.apic)) {
2361 u32 *id = (u32 *)(s->regs + APIC_ID);
2362 u32 *ldr = (u32 *)(s->regs + APIC_LDR);
2363
2364 if (vcpu->kvm->arch.x2apic_format) {
2365 if (*id != vcpu->vcpu_id)
2366 return -EINVAL;
2367 } else {
2368 if (set)
2369 *id >>= 24;
2370 else
2371 *id <<= 24;
2372 }
2373
2374 /* In x2APIC mode, the LDR is fixed and based on the id */
2375 if (set)
2376 *ldr = kvm_apic_calc_x2apic_ldr(*id);
2377 }
2378
2379 return 0;
2380}
2381
2382int kvm_apic_get_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2383{
2384 memcpy(s->regs, vcpu->arch.apic->regs, sizeof(*s));
2385 return kvm_apic_state_fixup(vcpu, s, false);
2386}
2387
2388int kvm_apic_set_state(struct kvm_vcpu *vcpu, struct kvm_lapic_state *s)
2389{
2390 struct kvm_lapic *apic = vcpu->arch.apic;
2391 int r;
2392
2393
2394 kvm_lapic_set_base(vcpu, vcpu->arch.apic_base);
2395 /* set SPIV separately to get count of SW disabled APICs right */
2396 apic_set_spiv(apic, *((u32 *)(s->regs + APIC_SPIV)));
2397
2398 r = kvm_apic_state_fixup(vcpu, s, true);
2399 if (r)
2400 return r;
2401 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
2402
2403 recalculate_apic_map(vcpu->kvm);
2404 kvm_apic_set_version(vcpu);
2405
2406 apic_update_ppr(apic);
2407 hrtimer_cancel(&apic->lapic_timer.timer);
2408 apic_update_lvtt(apic);
2409 apic_manage_nmi_watchdog(apic, kvm_lapic_get_reg(apic, APIC_LVT0));
2410 update_divide_count(apic);
2411 start_apic_timer(apic);
2412 apic->irr_pending = true;
2413 apic->isr_count = vcpu->arch.apicv_active ?
2414 1 : count_vectors(apic->regs + APIC_ISR);
2415 apic->highest_isr_cache = -1;
2416 if (vcpu->arch.apicv_active) {
2417 kvm_x86_ops->apicv_post_state_restore(vcpu);
2418 kvm_x86_ops->hwapic_irr_update(vcpu,
2419 apic_find_highest_irr(apic));
2420 kvm_x86_ops->hwapic_isr_update(vcpu,
2421 apic_find_highest_isr(apic));
2422 }
2423 kvm_make_request(KVM_REQ_EVENT, vcpu);
2424 if (ioapic_in_kernel(vcpu->kvm))
2425 kvm_rtc_eoi_tracking_restore_one(vcpu);
2426
2427 vcpu->arch.apic_arb_prio = 0;
2428
2429 return 0;
2430}
2431
2432void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu)
2433{
2434 struct hrtimer *timer;
2435
2436 if (!lapic_in_kernel(vcpu))
2437 return;
2438
2439 timer = &vcpu->arch.apic->lapic_timer.timer;
2440 if (hrtimer_cancel(timer))
2441 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
2442}
2443
2444/*
2445 * apic_sync_pv_eoi_from_guest - called on vmexit or cancel interrupt
2446 *
2447 * Detect whether guest triggered PV EOI since the
2448 * last entry. If yes, set EOI on guests's behalf.
2449 * Clear PV EOI in guest memory in any case.
2450 */
2451static void apic_sync_pv_eoi_from_guest(struct kvm_vcpu *vcpu,
2452 struct kvm_lapic *apic)
2453{
2454 bool pending;
2455 int vector;
2456 /*
2457 * PV EOI state is derived from KVM_APIC_PV_EOI_PENDING in host
2458 * and KVM_PV_EOI_ENABLED in guest memory as follows:
2459 *
2460 * KVM_APIC_PV_EOI_PENDING is unset:
2461 * -> host disabled PV EOI.
2462 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is set:
2463 * -> host enabled PV EOI, guest did not execute EOI yet.
2464 * KVM_APIC_PV_EOI_PENDING is set, KVM_PV_EOI_ENABLED is unset:
2465 * -> host enabled PV EOI, guest executed EOI.
2466 */
2467 BUG_ON(!pv_eoi_enabled(vcpu));
2468 pending = pv_eoi_get_pending(vcpu);
2469 /*
2470 * Clear pending bit in any case: it will be set again on vmentry.
2471 * While this might not be ideal from performance point of view,
2472 * this makes sure pv eoi is only enabled when we know it's safe.
2473 */
2474 pv_eoi_clr_pending(vcpu);
2475 if (pending)
2476 return;
2477 vector = apic_set_eoi(apic);
2478 trace_kvm_pv_eoi(apic, vector);
2479}
2480
2481void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu)
2482{
2483 u32 data;
2484
2485 if (test_bit(KVM_APIC_PV_EOI_PENDING, &vcpu->arch.apic_attention))
2486 apic_sync_pv_eoi_from_guest(vcpu, vcpu->arch.apic);
2487
2488 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
2489 return;
2490
2491 if (kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2492 sizeof(u32)))
2493 return;
2494
2495 apic_set_tpr(vcpu->arch.apic, data & 0xff);
2496}
2497
2498/*
2499 * apic_sync_pv_eoi_to_guest - called before vmentry
2500 *
2501 * Detect whether it's safe to enable PV EOI and
2502 * if yes do so.
2503 */
2504static void apic_sync_pv_eoi_to_guest(struct kvm_vcpu *vcpu,
2505 struct kvm_lapic *apic)
2506{
2507 if (!pv_eoi_enabled(vcpu) ||
2508 /* IRR set or many bits in ISR: could be nested. */
2509 apic->irr_pending ||
2510 /* Cache not set: could be safe but we don't bother. */
2511 apic->highest_isr_cache == -1 ||
2512 /* Need EOI to update ioapic. */
2513 kvm_ioapic_handles_vector(apic, apic->highest_isr_cache)) {
2514 /*
2515 * PV EOI was disabled by apic_sync_pv_eoi_from_guest
2516 * so we need not do anything here.
2517 */
2518 return;
2519 }
2520
2521 pv_eoi_set_pending(apic->vcpu);
2522}
2523
2524void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu)
2525{
2526 u32 data, tpr;
2527 int max_irr, max_isr;
2528 struct kvm_lapic *apic = vcpu->arch.apic;
2529
2530 apic_sync_pv_eoi_to_guest(vcpu, apic);
2531
2532 if (!test_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention))
2533 return;
2534
2535 tpr = kvm_lapic_get_reg(apic, APIC_TASKPRI) & 0xff;
2536 max_irr = apic_find_highest_irr(apic);
2537 if (max_irr < 0)
2538 max_irr = 0;
2539 max_isr = apic_find_highest_isr(apic);
2540 if (max_isr < 0)
2541 max_isr = 0;
2542 data = (tpr & 0xff) | ((max_isr & 0xf0) << 8) | (max_irr << 24);
2543
2544 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apic->vapic_cache, &data,
2545 sizeof(u32));
2546}
2547
2548int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr)
2549{
2550 if (vapic_addr) {
2551 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
2552 &vcpu->arch.apic->vapic_cache,
2553 vapic_addr, sizeof(u32)))
2554 return -EINVAL;
2555 __set_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
2556 } else {
2557 __clear_bit(KVM_APIC_CHECK_VAPIC, &vcpu->arch.apic_attention);
2558 }
2559
2560 vcpu->arch.apic->vapic_addr = vapic_addr;
2561 return 0;
2562}
2563
2564int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2565{
2566 struct kvm_lapic *apic = vcpu->arch.apic;
2567 u32 reg = (msr - APIC_BASE_MSR) << 4;
2568
2569 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
2570 return 1;
2571
2572 if (reg == APIC_ICR2)
2573 return 1;
2574
2575 /* if this is ICR write vector before command */
2576 if (reg == APIC_ICR)
2577 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2578 return kvm_lapic_reg_write(apic, reg, (u32)data);
2579}
2580
2581int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
2582{
2583 struct kvm_lapic *apic = vcpu->arch.apic;
2584 u32 reg = (msr - APIC_BASE_MSR) << 4, low, high = 0;
2585
2586 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(apic))
2587 return 1;
2588
2589 if (reg == APIC_DFR || reg == APIC_ICR2) {
2590 apic_debug("KVM_APIC_READ: read x2apic reserved register %x\n",
2591 reg);
2592 return 1;
2593 }
2594
2595 if (kvm_lapic_reg_read(apic, reg, 4, &low))
2596 return 1;
2597 if (reg == APIC_ICR)
2598 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
2599
2600 *data = (((u64)high) << 32) | low;
2601
2602 return 0;
2603}
2604
2605int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 reg, u64 data)
2606{
2607 struct kvm_lapic *apic = vcpu->arch.apic;
2608
2609 if (!lapic_in_kernel(vcpu))
2610 return 1;
2611
2612 /* if this is ICR write vector before command */
2613 if (reg == APIC_ICR)
2614 kvm_lapic_reg_write(apic, APIC_ICR2, (u32)(data >> 32));
2615 return kvm_lapic_reg_write(apic, reg, (u32)data);
2616}
2617
2618int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
2619{
2620 struct kvm_lapic *apic = vcpu->arch.apic;
2621 u32 low, high = 0;
2622
2623 if (!lapic_in_kernel(vcpu))
2624 return 1;
2625
2626 if (kvm_lapic_reg_read(apic, reg, 4, &low))
2627 return 1;
2628 if (reg == APIC_ICR)
2629 kvm_lapic_reg_read(apic, APIC_ICR2, 4, &high);
2630
2631 *data = (((u64)high) << 32) | low;
2632
2633 return 0;
2634}
2635
2636int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
2637{
2638 u64 addr = data & ~KVM_MSR_ENABLED;
2639 struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
2640 unsigned long new_len;
2641
2642 if (!IS_ALIGNED(addr, 4))
2643 return 1;
2644
2645 vcpu->arch.pv_eoi.msr_val = data;
2646 if (!pv_eoi_enabled(vcpu))
2647 return 0;
2648
2649 if (addr == ghc->gpa && len <= ghc->len)
2650 new_len = ghc->len;
2651 else
2652 new_len = len;
2653
2654 return kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
2655}
2656
2657void kvm_apic_accept_events(struct kvm_vcpu *vcpu)
2658{
2659 struct kvm_lapic *apic = vcpu->arch.apic;
2660 u8 sipi_vector;
2661 unsigned long pe;
2662
2663 if (!lapic_in_kernel(vcpu) || !apic->pending_events)
2664 return;
2665
2666 /*
2667 * INITs are latched while in SMM. Because an SMM CPU cannot
2668 * be in KVM_MP_STATE_INIT_RECEIVED state, just eat SIPIs
2669 * and delay processing of INIT until the next RSM.
2670 */
2671 if (is_smm(vcpu)) {
2672 WARN_ON_ONCE(vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED);
2673 if (test_bit(KVM_APIC_SIPI, &apic->pending_events))
2674 clear_bit(KVM_APIC_SIPI, &apic->pending_events);
2675 return;
2676 }
2677
2678 pe = xchg(&apic->pending_events, 0);
2679 if (test_bit(KVM_APIC_INIT, &pe)) {
2680 kvm_vcpu_reset(vcpu, true);
2681 if (kvm_vcpu_is_bsp(apic->vcpu))
2682 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2683 else
2684 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
2685 }
2686 if (test_bit(KVM_APIC_SIPI, &pe) &&
2687 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
2688 /* evaluate pending_events before reading the vector */
2689 smp_rmb();
2690 sipi_vector = apic->sipi_vector;
2691 apic_debug("vcpu %d received sipi with vector # %x\n",
2692 vcpu->vcpu_id, sipi_vector);
2693 kvm_vcpu_deliver_sipi_vector(vcpu, sipi_vector);
2694 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
2695 }
2696}
2697
2698void kvm_lapic_init(void)
2699{
2700 /* do not patch jump label more than once per second */
2701 jump_label_rate_limit(&apic_hw_disabled, HZ);
2702 jump_label_rate_limit(&apic_sw_disabled, HZ);
2703}
2704
2705void kvm_lapic_exit(void)
2706{
2707 static_key_deferred_flush(&apic_hw_disabled);
2708 static_key_deferred_flush(&apic_sw_disabled);
2709}