vlapic.c revision 276349
1/*-
2 * Copyright (c) 2011 NetApp, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: stable/10/sys/amd64/vmm/io/vlapic.c 276349 2014-12-28 21:27:13Z neel $
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: stable/10/sys/amd64/vmm/io/vlapic.c 276349 2014-12-28 21:27:13Z neel $");
31
32#include <sys/param.h>
33#include <sys/lock.h>
34#include <sys/kernel.h>
35#include <sys/malloc.h>
36#include <sys/mutex.h>
37#include <sys/systm.h>
38#include <sys/smp.h>
39
40#include <x86/specialreg.h>
41#include <x86/apicreg.h>
42
43#include <machine/clock.h>
44#include <machine/smp.h>
45
46#include <machine/vmm.h>
47
48#include "vmm_ipi.h"
49#include "vmm_lapic.h"
50#include "vmm_ktr.h"
51#include "vmm_stat.h"
52
53#include "vlapic.h"
54#include "vlapic_priv.h"
55#include "vioapic.h"
56
57#define	PRIO(x)			((x) >> 4)
58
59#define VLAPIC_VERSION		(16)
60
61#define	x2apic(vlapic)	(((vlapic)->msr_apicbase & APICBASE_X2APIC) ? 1 : 0)
62
63/*
64 * The 'vlapic->timer_mtx' is used to provide mutual exclusion between the
65 * vlapic_callout_handler() and vcpu accesses to:
66 * - timer_freq_bt, timer_period_bt, timer_fire_bt
67 * - timer LVT register
68 */
69#define	VLAPIC_TIMER_LOCK(vlapic)	mtx_lock_spin(&((vlapic)->timer_mtx))
70#define	VLAPIC_TIMER_UNLOCK(vlapic)	mtx_unlock_spin(&((vlapic)->timer_mtx))
71#define	VLAPIC_TIMER_LOCKED(vlapic)	mtx_owned(&((vlapic)->timer_mtx))
72
73/*
74 * APIC timer frequency:
75 * - arbitrary but chosen to be in the ballpark of contemporary hardware.
76 * - power-of-two to avoid loss of precision when converted to a bintime.
77 */
78#define VLAPIC_BUS_FREQ		(128 * 1024 * 1024)
79
80static __inline uint32_t
81vlapic_get_id(struct vlapic *vlapic)
82{
83
84	if (x2apic(vlapic))
85		return (vlapic->vcpuid);
86	else
87		return (vlapic->vcpuid << 24);
88}
89
90static uint32_t
91x2apic_ldr(struct vlapic *vlapic)
92{
93	int apicid;
94	uint32_t ldr;
95
96	apicid = vlapic_get_id(vlapic);
97	ldr = 1 << (apicid & 0xf);
98	ldr |= (apicid & 0xffff0) << 12;
99	return (ldr);
100}
101
102void
103vlapic_dfr_write_handler(struct vlapic *vlapic)
104{
105	struct LAPIC *lapic;
106
107	lapic = vlapic->apic_page;
108	if (x2apic(vlapic)) {
109		VM_CTR1(vlapic->vm, "ignoring write to DFR in x2apic mode: %#x",
110		    lapic->dfr);
111		lapic->dfr = 0;
112		return;
113	}
114
115	lapic->dfr &= APIC_DFR_MODEL_MASK;
116	lapic->dfr |= APIC_DFR_RESERVED;
117
118	if ((lapic->dfr & APIC_DFR_MODEL_MASK) == APIC_DFR_MODEL_FLAT)
119		VLAPIC_CTR0(vlapic, "vlapic DFR in Flat Model");
120	else if ((lapic->dfr & APIC_DFR_MODEL_MASK) == APIC_DFR_MODEL_CLUSTER)
121		VLAPIC_CTR0(vlapic, "vlapic DFR in Cluster Model");
122	else
123		VLAPIC_CTR1(vlapic, "DFR in Unknown Model %#x", lapic->dfr);
124}
125
126void
127vlapic_ldr_write_handler(struct vlapic *vlapic)
128{
129	struct LAPIC *lapic;
130
131	lapic = vlapic->apic_page;
132
133	/* LDR is read-only in x2apic mode */
134	if (x2apic(vlapic)) {
135		VLAPIC_CTR1(vlapic, "ignoring write to LDR in x2apic mode: %#x",
136		    lapic->ldr);
137		lapic->ldr = x2apic_ldr(vlapic);
138	} else {
139		lapic->ldr &= ~APIC_LDR_RESERVED;
140		VLAPIC_CTR1(vlapic, "vlapic LDR set to %#x", lapic->ldr);
141	}
142}
143
144void
145vlapic_id_write_handler(struct vlapic *vlapic)
146{
147	struct LAPIC *lapic;
148
149	/*
150	 * We don't allow the ID register to be modified so reset it back to
151	 * its default value.
152	 */
153	lapic = vlapic->apic_page;
154	lapic->id = vlapic_get_id(vlapic);
155}
156
157static int
158vlapic_timer_divisor(uint32_t dcr)
159{
160	switch (dcr & 0xB) {
161	case APIC_TDCR_1:
162		return (1);
163	case APIC_TDCR_2:
164		return (2);
165	case APIC_TDCR_4:
166		return (4);
167	case APIC_TDCR_8:
168		return (8);
169	case APIC_TDCR_16:
170		return (16);
171	case APIC_TDCR_32:
172		return (32);
173	case APIC_TDCR_64:
174		return (64);
175	case APIC_TDCR_128:
176		return (128);
177	default:
178		panic("vlapic_timer_divisor: invalid dcr 0x%08x", dcr);
179	}
180}
181
182#if 0
183static inline void
184vlapic_dump_lvt(uint32_t offset, uint32_t *lvt)
185{
186	printf("Offset %x: lvt %08x (V:%02x DS:%x M:%x)\n", offset,
187	    *lvt, *lvt & APIC_LVTT_VECTOR, *lvt & APIC_LVTT_DS,
188	    *lvt & APIC_LVTT_M);
189}
190#endif
191
192static uint32_t
193vlapic_get_ccr(struct vlapic *vlapic)
194{
195	struct bintime bt_now, bt_rem;
196	struct LAPIC *lapic;
197	uint32_t ccr;
198
199	ccr = 0;
200	lapic = vlapic->apic_page;
201
202	VLAPIC_TIMER_LOCK(vlapic);
203	if (callout_active(&vlapic->callout)) {
204		/*
205		 * If the timer is scheduled to expire in the future then
206		 * compute the value of 'ccr' based on the remaining time.
207		 */
208		binuptime(&bt_now);
209		if (bintime_cmp(&vlapic->timer_fire_bt, &bt_now, >)) {
210			bt_rem = vlapic->timer_fire_bt;
211			bintime_sub(&bt_rem, &bt_now);
212			ccr += bt_rem.sec * BT2FREQ(&vlapic->timer_freq_bt);
213			ccr += bt_rem.frac / vlapic->timer_freq_bt.frac;
214		}
215	}
216	KASSERT(ccr <= lapic->icr_timer, ("vlapic_get_ccr: invalid ccr %#x, "
217	    "icr_timer is %#x", ccr, lapic->icr_timer));
218	VLAPIC_CTR2(vlapic, "vlapic ccr_timer = %#x, icr_timer = %#x",
219	    ccr, lapic->icr_timer);
220	VLAPIC_TIMER_UNLOCK(vlapic);
221	return (ccr);
222}
223
224void
225vlapic_dcr_write_handler(struct vlapic *vlapic)
226{
227	struct LAPIC *lapic;
228	int divisor;
229
230	lapic = vlapic->apic_page;
231	VLAPIC_TIMER_LOCK(vlapic);
232
233	divisor = vlapic_timer_divisor(lapic->dcr_timer);
234	VLAPIC_CTR2(vlapic, "vlapic dcr_timer=%#x, divisor=%d",
235	    lapic->dcr_timer, divisor);
236
237	/*
238	 * Update the timer frequency and the timer period.
239	 *
240	 * XXX changes to the frequency divider will not take effect until
241	 * the timer is reloaded.
242	 */
243	FREQ2BT(VLAPIC_BUS_FREQ / divisor, &vlapic->timer_freq_bt);
244	vlapic->timer_period_bt = vlapic->timer_freq_bt;
245	bintime_mul(&vlapic->timer_period_bt, lapic->icr_timer);
246
247	VLAPIC_TIMER_UNLOCK(vlapic);
248}
249
250void
251vlapic_esr_write_handler(struct vlapic *vlapic)
252{
253	struct LAPIC *lapic;
254
255	lapic = vlapic->apic_page;
256	lapic->esr = vlapic->esr_pending;
257	vlapic->esr_pending = 0;
258}
259
260int
261vlapic_set_intr_ready(struct vlapic *vlapic, int vector, bool level)
262{
263	struct LAPIC *lapic;
264	uint32_t *irrptr, *tmrptr, mask;
265	int idx;
266
267	KASSERT(vector >= 0 && vector < 256, ("invalid vector %d", vector));
268
269	lapic = vlapic->apic_page;
270	if (!(lapic->svr & APIC_SVR_ENABLE)) {
271		VLAPIC_CTR1(vlapic, "vlapic is software disabled, ignoring "
272		    "interrupt %d", vector);
273		return (0);
274	}
275
276	if (vector < 16) {
277		vlapic_set_error(vlapic, APIC_ESR_RECEIVE_ILLEGAL_VECTOR);
278		VLAPIC_CTR1(vlapic, "vlapic ignoring interrupt to vector %d",
279		    vector);
280		return (1);
281	}
282
283	if (vlapic->ops.set_intr_ready)
284		return ((*vlapic->ops.set_intr_ready)(vlapic, vector, level));
285
286	idx = (vector / 32) * 4;
287	mask = 1 << (vector % 32);
288
289	irrptr = &lapic->irr0;
290	atomic_set_int(&irrptr[idx], mask);
291
292	/*
293	 * Verify that the trigger-mode of the interrupt matches with
294	 * the vlapic TMR registers.
295	 */
296	tmrptr = &lapic->tmr0;
297	if ((tmrptr[idx] & mask) != (level ? mask : 0)) {
298		VLAPIC_CTR3(vlapic, "vlapic TMR[%d] is 0x%08x but "
299		    "interrupt is %s-triggered", idx / 4, tmrptr[idx],
300		    level ? "level" : "edge");
301	}
302
303	VLAPIC_CTR_IRR(vlapic, "vlapic_set_intr_ready");
304	return (1);
305}
306
307static __inline uint32_t *
308vlapic_get_lvtptr(struct vlapic *vlapic, uint32_t offset)
309{
310	struct LAPIC	*lapic = vlapic->apic_page;
311	int 		 i;
312
313	switch (offset) {
314	case APIC_OFFSET_CMCI_LVT:
315		return (&lapic->lvt_cmci);
316	case APIC_OFFSET_TIMER_LVT ... APIC_OFFSET_ERROR_LVT:
317		i = (offset - APIC_OFFSET_TIMER_LVT) >> 2;
318		return ((&lapic->lvt_timer) + i);;
319	default:
320		panic("vlapic_get_lvt: invalid LVT\n");
321	}
322}
323
324static __inline int
325lvt_off_to_idx(uint32_t offset)
326{
327	int index;
328
329	switch (offset) {
330	case APIC_OFFSET_CMCI_LVT:
331		index = APIC_LVT_CMCI;
332		break;
333	case APIC_OFFSET_TIMER_LVT:
334		index = APIC_LVT_TIMER;
335		break;
336	case APIC_OFFSET_THERM_LVT:
337		index = APIC_LVT_THERMAL;
338		break;
339	case APIC_OFFSET_PERF_LVT:
340		index = APIC_LVT_PMC;
341		break;
342	case APIC_OFFSET_LINT0_LVT:
343		index = APIC_LVT_LINT0;
344		break;
345	case APIC_OFFSET_LINT1_LVT:
346		index = APIC_LVT_LINT1;
347		break;
348	case APIC_OFFSET_ERROR_LVT:
349		index = APIC_LVT_ERROR;
350		break;
351	default:
352		index = -1;
353		break;
354	}
355	KASSERT(index >= 0 && index <= VLAPIC_MAXLVT_INDEX, ("lvt_off_to_idx: "
356	    "invalid lvt index %d for offset %#x", index, offset));
357
358	return (index);
359}
360
361static __inline uint32_t
362vlapic_get_lvt(struct vlapic *vlapic, uint32_t offset)
363{
364	int idx;
365	uint32_t val;
366
367	idx = lvt_off_to_idx(offset);
368	val = atomic_load_acq_32(&vlapic->lvt_last[idx]);
369	return (val);
370}
371
372void
373vlapic_lvt_write_handler(struct vlapic *vlapic, uint32_t offset)
374{
375	uint32_t *lvtptr, mask, val;
376	struct LAPIC *lapic;
377	int idx;
378
379	lapic = vlapic->apic_page;
380	lvtptr = vlapic_get_lvtptr(vlapic, offset);
381	val = *lvtptr;
382	idx = lvt_off_to_idx(offset);
383
384	if (!(lapic->svr & APIC_SVR_ENABLE))
385		val |= APIC_LVT_M;
386	mask = APIC_LVT_M | APIC_LVT_DS | APIC_LVT_VECTOR;
387	switch (offset) {
388	case APIC_OFFSET_TIMER_LVT:
389		mask |= APIC_LVTT_TM;
390		break;
391	case APIC_OFFSET_ERROR_LVT:
392		break;
393	case APIC_OFFSET_LINT0_LVT:
394	case APIC_OFFSET_LINT1_LVT:
395		mask |= APIC_LVT_TM | APIC_LVT_RIRR | APIC_LVT_IIPP;
396		/* FALLTHROUGH */
397	default:
398		mask |= APIC_LVT_DM;
399		break;
400	}
401	val &= mask;
402	*lvtptr = val;
403	atomic_store_rel_32(&vlapic->lvt_last[idx], val);
404}
405
406static void
407vlapic_mask_lvts(struct vlapic *vlapic)
408{
409	struct LAPIC *lapic = vlapic->apic_page;
410
411	lapic->lvt_cmci |= APIC_LVT_M;
412	vlapic_lvt_write_handler(vlapic, APIC_OFFSET_CMCI_LVT);
413
414	lapic->lvt_timer |= APIC_LVT_M;
415	vlapic_lvt_write_handler(vlapic, APIC_OFFSET_TIMER_LVT);
416
417	lapic->lvt_thermal |= APIC_LVT_M;
418	vlapic_lvt_write_handler(vlapic, APIC_OFFSET_THERM_LVT);
419
420	lapic->lvt_pcint |= APIC_LVT_M;
421	vlapic_lvt_write_handler(vlapic, APIC_OFFSET_PERF_LVT);
422
423	lapic->lvt_lint0 |= APIC_LVT_M;
424	vlapic_lvt_write_handler(vlapic, APIC_OFFSET_LINT0_LVT);
425
426	lapic->lvt_lint1 |= APIC_LVT_M;
427	vlapic_lvt_write_handler(vlapic, APIC_OFFSET_LINT1_LVT);
428
429	lapic->lvt_error |= APIC_LVT_M;
430	vlapic_lvt_write_handler(vlapic, APIC_OFFSET_ERROR_LVT);
431}
432
433static int
434vlapic_fire_lvt(struct vlapic *vlapic, uint32_t lvt)
435{
436	uint32_t vec, mode;
437
438	if (lvt & APIC_LVT_M)
439		return (0);
440
441	vec = lvt & APIC_LVT_VECTOR;
442	mode = lvt & APIC_LVT_DM;
443
444	switch (mode) {
445	case APIC_LVT_DM_FIXED:
446		if (vec < 16) {
447			vlapic_set_error(vlapic, APIC_ESR_SEND_ILLEGAL_VECTOR);
448			return (0);
449		}
450		if (vlapic_set_intr_ready(vlapic, vec, false))
451			vcpu_notify_event(vlapic->vm, vlapic->vcpuid, true);
452		break;
453	case APIC_LVT_DM_NMI:
454		vm_inject_nmi(vlapic->vm, vlapic->vcpuid);
455		break;
456	case APIC_LVT_DM_EXTINT:
457		vm_inject_extint(vlapic->vm, vlapic->vcpuid);
458		break;
459	default:
460		// Other modes ignored
461		return (0);
462	}
463	return (1);
464}
465
466#if 1
467static void
468dump_isrvec_stk(struct vlapic *vlapic)
469{
470	int i;
471	uint32_t *isrptr;
472
473	isrptr = &vlapic->apic_page->isr0;
474	for (i = 0; i < 8; i++)
475		printf("ISR%d 0x%08x\n", i, isrptr[i * 4]);
476
477	for (i = 0; i <= vlapic->isrvec_stk_top; i++)
478		printf("isrvec_stk[%d] = %d\n", i, vlapic->isrvec_stk[i]);
479}
480#endif
481
482/*
483 * Algorithm adopted from section "Interrupt, Task and Processor Priority"
484 * in Intel Architecture Manual Vol 3a.
485 */
486static void
487vlapic_update_ppr(struct vlapic *vlapic)
488{
489	int isrvec, tpr, ppr;
490
491	/*
492	 * Note that the value on the stack at index 0 is always 0.
493	 *
494	 * This is a placeholder for the value of ISRV when none of the
495	 * bits is set in the ISRx registers.
496	 */
497	isrvec = vlapic->isrvec_stk[vlapic->isrvec_stk_top];
498	tpr = vlapic->apic_page->tpr;
499
500#if 1
501	{
502		int i, lastprio, curprio, vector, idx;
503		uint32_t *isrptr;
504
505		if (vlapic->isrvec_stk_top == 0 && isrvec != 0)
506			panic("isrvec_stk is corrupted: %d", isrvec);
507
508		/*
509		 * Make sure that the priority of the nested interrupts is
510		 * always increasing.
511		 */
512		lastprio = -1;
513		for (i = 1; i <= vlapic->isrvec_stk_top; i++) {
514			curprio = PRIO(vlapic->isrvec_stk[i]);
515			if (curprio <= lastprio) {
516				dump_isrvec_stk(vlapic);
517				panic("isrvec_stk does not satisfy invariant");
518			}
519			lastprio = curprio;
520		}
521
522		/*
523		 * Make sure that each bit set in the ISRx registers has a
524		 * corresponding entry on the isrvec stack.
525		 */
526		i = 1;
527		isrptr = &vlapic->apic_page->isr0;
528		for (vector = 0; vector < 256; vector++) {
529			idx = (vector / 32) * 4;
530			if (isrptr[idx] & (1 << (vector % 32))) {
531				if (i > vlapic->isrvec_stk_top ||
532				    vlapic->isrvec_stk[i] != vector) {
533					dump_isrvec_stk(vlapic);
534					panic("ISR and isrvec_stk out of sync");
535				}
536				i++;
537			}
538		}
539	}
540#endif
541
542	if (PRIO(tpr) >= PRIO(isrvec))
543		ppr = tpr;
544	else
545		ppr = isrvec & 0xf0;
546
547	vlapic->apic_page->ppr = ppr;
548	VLAPIC_CTR1(vlapic, "vlapic_update_ppr 0x%02x", ppr);
549}
550
551static void
552vlapic_process_eoi(struct vlapic *vlapic)
553{
554	struct LAPIC	*lapic = vlapic->apic_page;
555	uint32_t	*isrptr, *tmrptr;
556	int		i, idx, bitpos, vector;
557
558	isrptr = &lapic->isr0;
559	tmrptr = &lapic->tmr0;
560
561	/*
562	 * The x86 architecture reserves the the first 32 vectors for use
563	 * by the processor.
564	 */
565	for (i = 7; i > 0; i--) {
566		idx = i * 4;
567		bitpos = fls(isrptr[idx]);
568		if (bitpos-- != 0) {
569			if (vlapic->isrvec_stk_top <= 0) {
570				panic("invalid vlapic isrvec_stk_top %d",
571				      vlapic->isrvec_stk_top);
572			}
573			isrptr[idx] &= ~(1 << bitpos);
574			VLAPIC_CTR_ISR(vlapic, "vlapic_process_eoi");
575			vlapic->isrvec_stk_top--;
576			vlapic_update_ppr(vlapic);
577			if ((tmrptr[idx] & (1 << bitpos)) != 0) {
578				vector = i * 32 + bitpos;
579				vioapic_process_eoi(vlapic->vm, vlapic->vcpuid,
580				    vector);
581			}
582			return;
583		}
584	}
585}
586
587static __inline int
588vlapic_get_lvt_field(uint32_t lvt, uint32_t mask)
589{
590
591	return (lvt & mask);
592}
593
594static __inline int
595vlapic_periodic_timer(struct vlapic *vlapic)
596{
597	uint32_t lvt;
598
599	lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_TIMER_LVT);
600
601	return (vlapic_get_lvt_field(lvt, APIC_LVTT_TM_PERIODIC));
602}
603
604static VMM_STAT(VLAPIC_INTR_ERROR, "error interrupts generated by vlapic");
605
606void
607vlapic_set_error(struct vlapic *vlapic, uint32_t mask)
608{
609	uint32_t lvt;
610
611	vlapic->esr_pending |= mask;
612	if (vlapic->esr_firing)
613		return;
614	vlapic->esr_firing = 1;
615
616	// The error LVT always uses the fixed delivery mode.
617	lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_ERROR_LVT);
618	if (vlapic_fire_lvt(vlapic, lvt | APIC_LVT_DM_FIXED)) {
619		vmm_stat_incr(vlapic->vm, vlapic->vcpuid, VLAPIC_INTR_ERROR, 1);
620	}
621	vlapic->esr_firing = 0;
622}
623
624static VMM_STAT(VLAPIC_INTR_TIMER, "timer interrupts generated by vlapic");
625
626static void
627vlapic_fire_timer(struct vlapic *vlapic)
628{
629	uint32_t lvt;
630
631	KASSERT(VLAPIC_TIMER_LOCKED(vlapic), ("vlapic_fire_timer not locked"));
632
633	// The timer LVT always uses the fixed delivery mode.
634	lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_TIMER_LVT);
635	if (vlapic_fire_lvt(vlapic, lvt | APIC_LVT_DM_FIXED)) {
636		VLAPIC_CTR0(vlapic, "vlapic timer fired");
637		vmm_stat_incr(vlapic->vm, vlapic->vcpuid, VLAPIC_INTR_TIMER, 1);
638	}
639}
640
641static VMM_STAT(VLAPIC_INTR_CMC,
642    "corrected machine check interrupts generated by vlapic");
643
644void
645vlapic_fire_cmci(struct vlapic *vlapic)
646{
647	uint32_t lvt;
648
649	lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_CMCI_LVT);
650	if (vlapic_fire_lvt(vlapic, lvt)) {
651		vmm_stat_incr(vlapic->vm, vlapic->vcpuid, VLAPIC_INTR_CMC, 1);
652	}
653}
654
655static VMM_STAT_ARRAY(LVTS_TRIGGERRED, VLAPIC_MAXLVT_INDEX + 1,
656    "lvts triggered");
657
658int
659vlapic_trigger_lvt(struct vlapic *vlapic, int vector)
660{
661	uint32_t lvt;
662
663	if (vlapic_enabled(vlapic) == false) {
664		/*
665		 * When the local APIC is global/hardware disabled,
666		 * LINT[1:0] pins are configured as INTR and NMI pins,
667		 * respectively.
668		*/
669		switch (vector) {
670			case APIC_LVT_LINT0:
671				vm_inject_extint(vlapic->vm, vlapic->vcpuid);
672				break;
673			case APIC_LVT_LINT1:
674				vm_inject_nmi(vlapic->vm, vlapic->vcpuid);
675				break;
676			default:
677				break;
678		}
679		return (0);
680	}
681
682	switch (vector) {
683	case APIC_LVT_LINT0:
684		lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_LINT0_LVT);
685		break;
686	case APIC_LVT_LINT1:
687		lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_LINT1_LVT);
688		break;
689	case APIC_LVT_TIMER:
690		lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_TIMER_LVT);
691		lvt |= APIC_LVT_DM_FIXED;
692		break;
693	case APIC_LVT_ERROR:
694		lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_ERROR_LVT);
695		lvt |= APIC_LVT_DM_FIXED;
696		break;
697	case APIC_LVT_PMC:
698		lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_PERF_LVT);
699		break;
700	case APIC_LVT_THERMAL:
701		lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_THERM_LVT);
702		break;
703	case APIC_LVT_CMCI:
704		lvt = vlapic_get_lvt(vlapic, APIC_OFFSET_CMCI_LVT);
705		break;
706	default:
707		return (EINVAL);
708	}
709	if (vlapic_fire_lvt(vlapic, lvt)) {
710		vmm_stat_array_incr(vlapic->vm, vlapic->vcpuid,
711		    LVTS_TRIGGERRED, vector, 1);
712	}
713	return (0);
714}
715
716static void
717vlapic_callout_handler(void *arg)
718{
719	struct vlapic *vlapic;
720	struct bintime bt, btnow;
721	sbintime_t rem_sbt;
722
723	vlapic = arg;
724
725	VLAPIC_TIMER_LOCK(vlapic);
726	if (callout_pending(&vlapic->callout))	/* callout was reset */
727		goto done;
728
729	if (!callout_active(&vlapic->callout))	/* callout was stopped */
730		goto done;
731
732	callout_deactivate(&vlapic->callout);
733
734	vlapic_fire_timer(vlapic);
735
736	if (vlapic_periodic_timer(vlapic)) {
737		binuptime(&btnow);
738		KASSERT(bintime_cmp(&btnow, &vlapic->timer_fire_bt, >=),
739		    ("vlapic callout at %#lx.%#lx, expected at %#lx.#%lx",
740		    btnow.sec, btnow.frac, vlapic->timer_fire_bt.sec,
741		    vlapic->timer_fire_bt.frac));
742
743		/*
744		 * Compute the delta between when the timer was supposed to
745		 * fire and the present time.
746		 */
747		bt = btnow;
748		bintime_sub(&bt, &vlapic->timer_fire_bt);
749
750		rem_sbt = bttosbt(vlapic->timer_period_bt);
751		if (bintime_cmp(&bt, &vlapic->timer_period_bt, <)) {
752			/*
753			 * Adjust the time until the next countdown downward
754			 * to account for the lost time.
755			 */
756			rem_sbt -= bttosbt(bt);
757		} else {
758			/*
759			 * If the delta is greater than the timer period then
760			 * just reset our time base instead of trying to catch
761			 * up.
762			 */
763			vlapic->timer_fire_bt = btnow;
764			VLAPIC_CTR2(vlapic, "vlapic timer lagging by %lu "
765			    "usecs, period is %lu usecs - resetting time base",
766			    bttosbt(bt) / SBT_1US,
767			    bttosbt(vlapic->timer_period_bt) / SBT_1US);
768		}
769
770		bintime_add(&vlapic->timer_fire_bt, &vlapic->timer_period_bt);
771		callout_reset_sbt(&vlapic->callout, rem_sbt, 0,
772		    vlapic_callout_handler, vlapic, 0);
773	}
774done:
775	VLAPIC_TIMER_UNLOCK(vlapic);
776}
777
778void
779vlapic_icrtmr_write_handler(struct vlapic *vlapic)
780{
781	struct LAPIC *lapic;
782	sbintime_t sbt;
783	uint32_t icr_timer;
784
785	VLAPIC_TIMER_LOCK(vlapic);
786
787	lapic = vlapic->apic_page;
788	icr_timer = lapic->icr_timer;
789
790	vlapic->timer_period_bt = vlapic->timer_freq_bt;
791	bintime_mul(&vlapic->timer_period_bt, icr_timer);
792
793	if (icr_timer != 0) {
794		binuptime(&vlapic->timer_fire_bt);
795		bintime_add(&vlapic->timer_fire_bt, &vlapic->timer_period_bt);
796
797		sbt = bttosbt(vlapic->timer_period_bt);
798		callout_reset_sbt(&vlapic->callout, sbt, 0,
799		    vlapic_callout_handler, vlapic, 0);
800	} else
801		callout_stop(&vlapic->callout);
802
803	VLAPIC_TIMER_UNLOCK(vlapic);
804}
805
806/*
807 * This function populates 'dmask' with the set of vcpus that match the
808 * addressing specified by the (dest, phys, lowprio) tuple.
809 *
810 * 'x2apic_dest' specifies whether 'dest' is interpreted as x2APIC (32-bit)
811 * or xAPIC (8-bit) destination field.
812 */
813static void
814vlapic_calcdest(struct vm *vm, cpuset_t *dmask, uint32_t dest, bool phys,
815    bool lowprio, bool x2apic_dest)
816{
817	struct vlapic *vlapic;
818	uint32_t dfr, ldr, ldest, cluster;
819	uint32_t mda_flat_ldest, mda_cluster_ldest, mda_ldest, mda_cluster_id;
820	cpuset_t amask;
821	int vcpuid;
822
823	if ((x2apic_dest && dest == 0xffffffff) ||
824	    (!x2apic_dest && dest == 0xff)) {
825		/*
826		 * Broadcast in both logical and physical modes.
827		 */
828		*dmask = vm_active_cpus(vm);
829		return;
830	}
831
832	if (phys) {
833		/*
834		 * Physical mode: destination is APIC ID.
835		 */
836		CPU_ZERO(dmask);
837		vcpuid = vm_apicid2vcpuid(vm, dest);
838		if (vcpuid < VM_MAXCPU)
839			CPU_SET(vcpuid, dmask);
840	} else {
841		/*
842		 * In the "Flat Model" the MDA is interpreted as an 8-bit wide
843		 * bitmask. This model is only avilable in the xAPIC mode.
844		 */
845		mda_flat_ldest = dest & 0xff;
846
847		/*
848		 * In the "Cluster Model" the MDA is used to identify a
849		 * specific cluster and a set of APICs in that cluster.
850		 */
851		if (x2apic_dest) {
852			mda_cluster_id = dest >> 16;
853			mda_cluster_ldest = dest & 0xffff;
854		} else {
855			mda_cluster_id = (dest >> 4) & 0xf;
856			mda_cluster_ldest = dest & 0xf;
857		}
858
859		/*
860		 * Logical mode: match each APIC that has a bit set
861		 * in it's LDR that matches a bit in the ldest.
862		 */
863		CPU_ZERO(dmask);
864		amask = vm_active_cpus(vm);
865		while ((vcpuid = CPU_FFS(&amask)) != 0) {
866			vcpuid--;
867			CPU_CLR(vcpuid, &amask);
868
869			vlapic = vm_lapic(vm, vcpuid);
870			dfr = vlapic->apic_page->dfr;
871			ldr = vlapic->apic_page->ldr;
872
873			if ((dfr & APIC_DFR_MODEL_MASK) ==
874			    APIC_DFR_MODEL_FLAT) {
875				ldest = ldr >> 24;
876				mda_ldest = mda_flat_ldest;
877			} else if ((dfr & APIC_DFR_MODEL_MASK) ==
878			    APIC_DFR_MODEL_CLUSTER) {
879				if (x2apic(vlapic)) {
880					cluster = ldr >> 16;
881					ldest = ldr & 0xffff;
882				} else {
883					cluster = ldr >> 28;
884					ldest = (ldr >> 24) & 0xf;
885				}
886				if (cluster != mda_cluster_id)
887					continue;
888				mda_ldest = mda_cluster_ldest;
889			} else {
890				/*
891				 * Guest has configured a bad logical
892				 * model for this vcpu - skip it.
893				 */
894				VLAPIC_CTR1(vlapic, "vlapic has bad logical "
895				    "model %x - cannot deliver interrupt", dfr);
896				continue;
897			}
898
899			if ((mda_ldest & ldest) != 0) {
900				CPU_SET(vcpuid, dmask);
901				if (lowprio)
902					break;
903			}
904		}
905	}
906}
907
908static VMM_STAT_ARRAY(IPIS_SENT, VM_MAXCPU, "ipis sent to vcpu");
909
910static void
911vlapic_set_tpr(struct vlapic *vlapic, uint8_t val)
912{
913	struct LAPIC *lapic = vlapic->apic_page;
914
915	lapic->tpr = val;
916	vlapic_update_ppr(vlapic);
917}
918
919static uint8_t
920vlapic_get_tpr(struct vlapic *vlapic)
921{
922	struct LAPIC *lapic = vlapic->apic_page;
923
924	return (lapic->tpr);
925}
926
927void
928vlapic_set_cr8(struct vlapic *vlapic, uint64_t val)
929{
930	uint8_t tpr;
931
932	if (val & ~0xf) {
933		vm_inject_gp(vlapic->vm, vlapic->vcpuid);
934		return;
935	}
936
937	tpr = val << 4;
938	vlapic_set_tpr(vlapic, tpr);
939}
940
941uint64_t
942vlapic_get_cr8(struct vlapic *vlapic)
943{
944	uint8_t tpr;
945
946	tpr = vlapic_get_tpr(vlapic);
947	return (tpr >> 4);
948}
949
950int
951vlapic_icrlo_write_handler(struct vlapic *vlapic, bool *retu)
952{
953	int i;
954	bool phys;
955	cpuset_t dmask;
956	uint64_t icrval;
957	uint32_t dest, vec, mode;
958	struct vlapic *vlapic2;
959	struct vm_exit *vmexit;
960	struct LAPIC *lapic;
961
962	lapic = vlapic->apic_page;
963	lapic->icr_lo &= ~APIC_DELSTAT_PEND;
964	icrval = ((uint64_t)lapic->icr_hi << 32) | lapic->icr_lo;
965
966	if (x2apic(vlapic))
967		dest = icrval >> 32;
968	else
969		dest = icrval >> (32 + 24);
970	vec = icrval & APIC_VECTOR_MASK;
971	mode = icrval & APIC_DELMODE_MASK;
972
973	if (mode == APIC_DELMODE_FIXED && vec < 16) {
974		vlapic_set_error(vlapic, APIC_ESR_SEND_ILLEGAL_VECTOR);
975		VLAPIC_CTR1(vlapic, "Ignoring invalid IPI %d", vec);
976		return (0);
977	}
978
979	VLAPIC_CTR2(vlapic, "icrlo 0x%016lx triggered ipi %d", icrval, vec);
980
981	if (mode == APIC_DELMODE_FIXED || mode == APIC_DELMODE_NMI) {
982		switch (icrval & APIC_DEST_MASK) {
983		case APIC_DEST_DESTFLD:
984			phys = ((icrval & APIC_DESTMODE_LOG) == 0);
985			vlapic_calcdest(vlapic->vm, &dmask, dest, phys, false,
986			    x2apic(vlapic));
987			break;
988		case APIC_DEST_SELF:
989			CPU_SETOF(vlapic->vcpuid, &dmask);
990			break;
991		case APIC_DEST_ALLISELF:
992			dmask = vm_active_cpus(vlapic->vm);
993			break;
994		case APIC_DEST_ALLESELF:
995			dmask = vm_active_cpus(vlapic->vm);
996			CPU_CLR(vlapic->vcpuid, &dmask);
997			break;
998		default:
999			CPU_ZERO(&dmask);	/* satisfy gcc */
1000			break;
1001		}
1002
1003		while ((i = CPU_FFS(&dmask)) != 0) {
1004			i--;
1005			CPU_CLR(i, &dmask);
1006			if (mode == APIC_DELMODE_FIXED) {
1007				lapic_intr_edge(vlapic->vm, i, vec);
1008				vmm_stat_array_incr(vlapic->vm, vlapic->vcpuid,
1009						    IPIS_SENT, i, 1);
1010				VLAPIC_CTR2(vlapic, "vlapic sending ipi %d "
1011				    "to vcpuid %d", vec, i);
1012			} else {
1013				vm_inject_nmi(vlapic->vm, i);
1014				VLAPIC_CTR1(vlapic, "vlapic sending ipi nmi "
1015				    "to vcpuid %d", i);
1016			}
1017		}
1018
1019		return (0);	/* handled completely in the kernel */
1020	}
1021
1022	if (mode == APIC_DELMODE_INIT) {
1023		if ((icrval & APIC_LEVEL_MASK) == APIC_LEVEL_DEASSERT)
1024			return (0);
1025
1026		if (vlapic->vcpuid == 0 && dest != 0 && dest < VM_MAXCPU) {
1027			vlapic2 = vm_lapic(vlapic->vm, dest);
1028
1029			/* move from INIT to waiting-for-SIPI state */
1030			if (vlapic2->boot_state == BS_INIT) {
1031				vlapic2->boot_state = BS_SIPI;
1032			}
1033
1034			return (0);
1035		}
1036	}
1037
1038	if (mode == APIC_DELMODE_STARTUP) {
1039		if (vlapic->vcpuid == 0 && dest != 0 && dest < VM_MAXCPU) {
1040			vlapic2 = vm_lapic(vlapic->vm, dest);
1041
1042			/*
1043			 * Ignore SIPIs in any state other than wait-for-SIPI
1044			 */
1045			if (vlapic2->boot_state != BS_SIPI)
1046				return (0);
1047
1048			vlapic2->boot_state = BS_RUNNING;
1049
1050			*retu = true;
1051			vmexit = vm_exitinfo(vlapic->vm, vlapic->vcpuid);
1052			vmexit->exitcode = VM_EXITCODE_SPINUP_AP;
1053			vmexit->u.spinup_ap.vcpu = dest;
1054			vmexit->u.spinup_ap.rip = vec << PAGE_SHIFT;
1055
1056			return (0);
1057		}
1058	}
1059
1060	/*
1061	 * This will cause a return to userland.
1062	 */
1063	return (1);
1064}
1065
1066void
1067vlapic_self_ipi_handler(struct vlapic *vlapic, uint64_t val)
1068{
1069	int vec;
1070
1071	KASSERT(x2apic(vlapic), ("SELF_IPI does not exist in xAPIC mode"));
1072
1073	vec = val & 0xff;
1074	lapic_intr_edge(vlapic->vm, vlapic->vcpuid, vec);
1075	vmm_stat_array_incr(vlapic->vm, vlapic->vcpuid, IPIS_SENT,
1076	    vlapic->vcpuid, 1);
1077	VLAPIC_CTR1(vlapic, "vlapic self-ipi %d", vec);
1078}
1079
1080int
1081vlapic_pending_intr(struct vlapic *vlapic, int *vecptr)
1082{
1083	struct LAPIC	*lapic = vlapic->apic_page;
1084	int	  	 idx, i, bitpos, vector;
1085	uint32_t	*irrptr, val;
1086
1087	if (vlapic->ops.pending_intr)
1088		return ((*vlapic->ops.pending_intr)(vlapic, vecptr));
1089
1090	irrptr = &lapic->irr0;
1091
1092	/*
1093	 * The x86 architecture reserves the the first 32 vectors for use
1094	 * by the processor.
1095	 */
1096	for (i = 7; i > 0; i--) {
1097		idx = i * 4;
1098		val = atomic_load_acq_int(&irrptr[idx]);
1099		bitpos = fls(val);
1100		if (bitpos != 0) {
1101			vector = i * 32 + (bitpos - 1);
1102			if (PRIO(vector) > PRIO(lapic->ppr)) {
1103				VLAPIC_CTR1(vlapic, "pending intr %d", vector);
1104				if (vecptr != NULL)
1105					*vecptr = vector;
1106				return (1);
1107			} else
1108				break;
1109		}
1110	}
1111	return (0);
1112}
1113
1114void
1115vlapic_intr_accepted(struct vlapic *vlapic, int vector)
1116{
1117	struct LAPIC	*lapic = vlapic->apic_page;
1118	uint32_t	*irrptr, *isrptr;
1119	int		idx, stk_top;
1120
1121	if (vlapic->ops.intr_accepted)
1122		return ((*vlapic->ops.intr_accepted)(vlapic, vector));
1123
1124	/*
1125	 * clear the ready bit for vector being accepted in irr
1126	 * and set the vector as in service in isr.
1127	 */
1128	idx = (vector / 32) * 4;
1129
1130	irrptr = &lapic->irr0;
1131	atomic_clear_int(&irrptr[idx], 1 << (vector % 32));
1132	VLAPIC_CTR_IRR(vlapic, "vlapic_intr_accepted");
1133
1134	isrptr = &lapic->isr0;
1135	isrptr[idx] |= 1 << (vector % 32);
1136	VLAPIC_CTR_ISR(vlapic, "vlapic_intr_accepted");
1137
1138	/*
1139	 * Update the PPR
1140	 */
1141	vlapic->isrvec_stk_top++;
1142
1143	stk_top = vlapic->isrvec_stk_top;
1144	if (stk_top >= ISRVEC_STK_SIZE)
1145		panic("isrvec_stk_top overflow %d", stk_top);
1146
1147	vlapic->isrvec_stk[stk_top] = vector;
1148	vlapic_update_ppr(vlapic);
1149}
1150
1151void
1152vlapic_svr_write_handler(struct vlapic *vlapic)
1153{
1154	struct LAPIC *lapic;
1155	uint32_t old, new, changed;
1156
1157	lapic = vlapic->apic_page;
1158
1159	new = lapic->svr;
1160	old = vlapic->svr_last;
1161	vlapic->svr_last = new;
1162
1163	changed = old ^ new;
1164	if ((changed & APIC_SVR_ENABLE) != 0) {
1165		if ((new & APIC_SVR_ENABLE) == 0) {
1166			/*
1167			 * The apic is now disabled so stop the apic timer
1168			 * and mask all the LVT entries.
1169			 */
1170			VLAPIC_CTR0(vlapic, "vlapic is software-disabled");
1171			VLAPIC_TIMER_LOCK(vlapic);
1172			callout_stop(&vlapic->callout);
1173			VLAPIC_TIMER_UNLOCK(vlapic);
1174			vlapic_mask_lvts(vlapic);
1175		} else {
1176			/*
1177			 * The apic is now enabled so restart the apic timer
1178			 * if it is configured in periodic mode.
1179			 */
1180			VLAPIC_CTR0(vlapic, "vlapic is software-enabled");
1181			if (vlapic_periodic_timer(vlapic))
1182				vlapic_icrtmr_write_handler(vlapic);
1183		}
1184	}
1185}
1186
1187int
1188vlapic_read(struct vlapic *vlapic, int mmio_access, uint64_t offset,
1189    uint64_t *data, bool *retu)
1190{
1191	struct LAPIC	*lapic = vlapic->apic_page;
1192	uint32_t	*reg;
1193	int		 i;
1194
1195	/* Ignore MMIO accesses in x2APIC mode */
1196	if (x2apic(vlapic) && mmio_access) {
1197		VLAPIC_CTR1(vlapic, "MMIO read from offset %#lx in x2APIC mode",
1198		    offset);
1199		*data = 0;
1200		goto done;
1201	}
1202
1203	if (!x2apic(vlapic) && !mmio_access) {
1204		/*
1205		 * XXX Generate GP fault for MSR accesses in xAPIC mode
1206		 */
1207		VLAPIC_CTR1(vlapic, "x2APIC MSR read from offset %#lx in "
1208		    "xAPIC mode", offset);
1209		*data = 0;
1210		goto done;
1211	}
1212
1213	if (offset > sizeof(*lapic)) {
1214		*data = 0;
1215		goto done;
1216	}
1217
1218	offset &= ~3;
1219	switch(offset)
1220	{
1221		case APIC_OFFSET_ID:
1222			*data = lapic->id;
1223			break;
1224		case APIC_OFFSET_VER:
1225			*data = lapic->version;
1226			break;
1227		case APIC_OFFSET_TPR:
1228			*data = vlapic_get_tpr(vlapic);
1229			break;
1230		case APIC_OFFSET_APR:
1231			*data = lapic->apr;
1232			break;
1233		case APIC_OFFSET_PPR:
1234			*data = lapic->ppr;
1235			break;
1236		case APIC_OFFSET_EOI:
1237			*data = lapic->eoi;
1238			break;
1239		case APIC_OFFSET_LDR:
1240			*data = lapic->ldr;
1241			break;
1242		case APIC_OFFSET_DFR:
1243			*data = lapic->dfr;
1244			break;
1245		case APIC_OFFSET_SVR:
1246			*data = lapic->svr;
1247			break;
1248		case APIC_OFFSET_ISR0 ... APIC_OFFSET_ISR7:
1249			i = (offset - APIC_OFFSET_ISR0) >> 2;
1250			reg = &lapic->isr0;
1251			*data = *(reg + i);
1252			break;
1253		case APIC_OFFSET_TMR0 ... APIC_OFFSET_TMR7:
1254			i = (offset - APIC_OFFSET_TMR0) >> 2;
1255			reg = &lapic->tmr0;
1256			*data = *(reg + i);
1257			break;
1258		case APIC_OFFSET_IRR0 ... APIC_OFFSET_IRR7:
1259			i = (offset - APIC_OFFSET_IRR0) >> 2;
1260			reg = &lapic->irr0;
1261			*data = atomic_load_acq_int(reg + i);
1262			break;
1263		case APIC_OFFSET_ESR:
1264			*data = lapic->esr;
1265			break;
1266		case APIC_OFFSET_ICR_LOW:
1267			*data = lapic->icr_lo;
1268			if (x2apic(vlapic))
1269				*data |= (uint64_t)lapic->icr_hi << 32;
1270			break;
1271		case APIC_OFFSET_ICR_HI:
1272			*data = lapic->icr_hi;
1273			break;
1274		case APIC_OFFSET_CMCI_LVT:
1275		case APIC_OFFSET_TIMER_LVT ... APIC_OFFSET_ERROR_LVT:
1276			*data = vlapic_get_lvt(vlapic, offset);
1277#ifdef INVARIANTS
1278			reg = vlapic_get_lvtptr(vlapic, offset);
1279			KASSERT(*data == *reg, ("inconsistent lvt value at "
1280			    "offset %#lx: %#lx/%#x", offset, *data, *reg));
1281#endif
1282			break;
1283		case APIC_OFFSET_TIMER_ICR:
1284			*data = lapic->icr_timer;
1285			break;
1286		case APIC_OFFSET_TIMER_CCR:
1287			*data = vlapic_get_ccr(vlapic);
1288			break;
1289		case APIC_OFFSET_TIMER_DCR:
1290			*data = lapic->dcr_timer;
1291			break;
1292		case APIC_OFFSET_SELF_IPI:
1293			/*
1294			 * XXX generate a GP fault if vlapic is in x2apic mode
1295			 */
1296			*data = 0;
1297			break;
1298		case APIC_OFFSET_RRR:
1299		default:
1300			*data = 0;
1301			break;
1302	}
1303done:
1304	VLAPIC_CTR2(vlapic, "vlapic read offset %#x, data %#lx", offset, *data);
1305	return 0;
1306}
1307
1308int
1309vlapic_write(struct vlapic *vlapic, int mmio_access, uint64_t offset,
1310    uint64_t data, bool *retu)
1311{
1312	struct LAPIC	*lapic = vlapic->apic_page;
1313	uint32_t	*regptr;
1314	int		retval;
1315
1316	KASSERT((offset & 0xf) == 0 && offset < PAGE_SIZE,
1317	    ("vlapic_write: invalid offset %#lx", offset));
1318
1319	VLAPIC_CTR2(vlapic, "vlapic write offset %#lx, data %#lx",
1320	    offset, data);
1321
1322	if (offset > sizeof(*lapic))
1323		return (0);
1324
1325	/* Ignore MMIO accesses in x2APIC mode */
1326	if (x2apic(vlapic) && mmio_access) {
1327		VLAPIC_CTR2(vlapic, "MMIO write of %#lx to offset %#lx "
1328		    "in x2APIC mode", data, offset);
1329		return (0);
1330	}
1331
1332	/*
1333	 * XXX Generate GP fault for MSR accesses in xAPIC mode
1334	 */
1335	if (!x2apic(vlapic) && !mmio_access) {
1336		VLAPIC_CTR2(vlapic, "x2APIC MSR write of %#lx to offset %#lx "
1337		    "in xAPIC mode", data, offset);
1338		return (0);
1339	}
1340
1341	retval = 0;
1342	switch(offset)
1343	{
1344		case APIC_OFFSET_ID:
1345			lapic->id = data;
1346			vlapic_id_write_handler(vlapic);
1347			break;
1348		case APIC_OFFSET_TPR:
1349			vlapic_set_tpr(vlapic, data & 0xff);
1350			break;
1351		case APIC_OFFSET_EOI:
1352			vlapic_process_eoi(vlapic);
1353			break;
1354		case APIC_OFFSET_LDR:
1355			lapic->ldr = data;
1356			vlapic_ldr_write_handler(vlapic);
1357			break;
1358		case APIC_OFFSET_DFR:
1359			lapic->dfr = data;
1360			vlapic_dfr_write_handler(vlapic);
1361			break;
1362		case APIC_OFFSET_SVR:
1363			lapic->svr = data;
1364			vlapic_svr_write_handler(vlapic);
1365			break;
1366		case APIC_OFFSET_ICR_LOW:
1367			lapic->icr_lo = data;
1368			if (x2apic(vlapic))
1369				lapic->icr_hi = data >> 32;
1370			retval = vlapic_icrlo_write_handler(vlapic, retu);
1371			break;
1372		case APIC_OFFSET_ICR_HI:
1373			lapic->icr_hi = data;
1374			break;
1375		case APIC_OFFSET_CMCI_LVT:
1376		case APIC_OFFSET_TIMER_LVT ... APIC_OFFSET_ERROR_LVT:
1377			regptr = vlapic_get_lvtptr(vlapic, offset);
1378			*regptr = data;
1379			vlapic_lvt_write_handler(vlapic, offset);
1380			break;
1381		case APIC_OFFSET_TIMER_ICR:
1382			lapic->icr_timer = data;
1383			vlapic_icrtmr_write_handler(vlapic);
1384			break;
1385
1386		case APIC_OFFSET_TIMER_DCR:
1387			lapic->dcr_timer = data;
1388			vlapic_dcr_write_handler(vlapic);
1389			break;
1390
1391		case APIC_OFFSET_ESR:
1392			vlapic_esr_write_handler(vlapic);
1393			break;
1394
1395		case APIC_OFFSET_SELF_IPI:
1396			if (x2apic(vlapic))
1397				vlapic_self_ipi_handler(vlapic, data);
1398			break;
1399
1400		case APIC_OFFSET_VER:
1401		case APIC_OFFSET_APR:
1402		case APIC_OFFSET_PPR:
1403		case APIC_OFFSET_RRR:
1404		case APIC_OFFSET_ISR0 ... APIC_OFFSET_ISR7:
1405		case APIC_OFFSET_TMR0 ... APIC_OFFSET_TMR7:
1406		case APIC_OFFSET_IRR0 ... APIC_OFFSET_IRR7:
1407		case APIC_OFFSET_TIMER_CCR:
1408		default:
1409			// Read only.
1410			break;
1411	}
1412
1413	return (retval);
1414}
1415
1416static void
1417vlapic_reset(struct vlapic *vlapic)
1418{
1419	struct LAPIC *lapic;
1420
1421	lapic = vlapic->apic_page;
1422	bzero(lapic, sizeof(struct LAPIC));
1423
1424	lapic->id = vlapic_get_id(vlapic);
1425	lapic->version = VLAPIC_VERSION;
1426	lapic->version |= (VLAPIC_MAXLVT_INDEX << MAXLVTSHIFT);
1427	lapic->dfr = 0xffffffff;
1428	lapic->svr = APIC_SVR_VECTOR;
1429	vlapic_mask_lvts(vlapic);
1430	vlapic_reset_tmr(vlapic);
1431
1432	lapic->dcr_timer = 0;
1433	vlapic_dcr_write_handler(vlapic);
1434
1435	if (vlapic->vcpuid == 0)
1436		vlapic->boot_state = BS_RUNNING;	/* BSP */
1437	else
1438		vlapic->boot_state = BS_INIT;		/* AP */
1439
1440	vlapic->svr_last = lapic->svr;
1441}
1442
1443void
1444vlapic_init(struct vlapic *vlapic)
1445{
1446	KASSERT(vlapic->vm != NULL, ("vlapic_init: vm is not initialized"));
1447	KASSERT(vlapic->vcpuid >= 0 && vlapic->vcpuid < VM_MAXCPU,
1448	    ("vlapic_init: vcpuid is not initialized"));
1449	KASSERT(vlapic->apic_page != NULL, ("vlapic_init: apic_page is not "
1450	    "initialized"));
1451
1452	/*
1453	 * If the vlapic is configured in x2apic mode then it will be
1454	 * accessed in the critical section via the MSR emulation code.
1455	 *
1456	 * Therefore the timer mutex must be a spinlock because blockable
1457	 * mutexes cannot be acquired in a critical section.
1458	 */
1459	mtx_init(&vlapic->timer_mtx, "vlapic timer mtx", NULL, MTX_SPIN);
1460	callout_init(&vlapic->callout, 1);
1461
1462	vlapic->msr_apicbase = DEFAULT_APIC_BASE | APICBASE_ENABLED;
1463
1464	if (vlapic->vcpuid == 0)
1465		vlapic->msr_apicbase |= APICBASE_BSP;
1466
1467	vlapic_reset(vlapic);
1468}
1469
1470void
1471vlapic_cleanup(struct vlapic *vlapic)
1472{
1473
1474	callout_drain(&vlapic->callout);
1475}
1476
1477uint64_t
1478vlapic_get_apicbase(struct vlapic *vlapic)
1479{
1480
1481	return (vlapic->msr_apicbase);
1482}
1483
1484int
1485vlapic_set_apicbase(struct vlapic *vlapic, uint64_t new)
1486{
1487
1488	if (vlapic->msr_apicbase != new) {
1489		VLAPIC_CTR2(vlapic, "Changing APIC_BASE MSR from %#lx to %#lx "
1490		    "not supported", vlapic->msr_apicbase, new);
1491		return (-1);
1492	}
1493
1494	return (0);
1495}
1496
1497void
1498vlapic_set_x2apic_state(struct vm *vm, int vcpuid, enum x2apic_state state)
1499{
1500	struct vlapic *vlapic;
1501	struct LAPIC *lapic;
1502
1503	vlapic = vm_lapic(vm, vcpuid);
1504
1505	if (state == X2APIC_DISABLED)
1506		vlapic->msr_apicbase &= ~APICBASE_X2APIC;
1507	else
1508		vlapic->msr_apicbase |= APICBASE_X2APIC;
1509
1510	/*
1511	 * Reset the local APIC registers whose values are mode-dependent.
1512	 *
1513	 * XXX this works because the APIC mode can be changed only at vcpu
1514	 * initialization time.
1515	 */
1516	lapic = vlapic->apic_page;
1517	lapic->id = vlapic_get_id(vlapic);
1518	if (x2apic(vlapic)) {
1519		lapic->ldr = x2apic_ldr(vlapic);
1520		lapic->dfr = 0;
1521	} else {
1522		lapic->ldr = 0;
1523		lapic->dfr = 0xffffffff;
1524	}
1525
1526	if (state == X2APIC_ENABLED) {
1527		if (vlapic->ops.enable_x2apic_mode)
1528			(*vlapic->ops.enable_x2apic_mode)(vlapic);
1529	}
1530}
1531
1532void
1533vlapic_deliver_intr(struct vm *vm, bool level, uint32_t dest, bool phys,
1534    int delmode, int vec)
1535{
1536	bool lowprio;
1537	int vcpuid;
1538	cpuset_t dmask;
1539
1540	if (delmode != IOART_DELFIXED &&
1541	    delmode != IOART_DELLOPRI &&
1542	    delmode != IOART_DELEXINT) {
1543		VM_CTR1(vm, "vlapic intr invalid delmode %#x", delmode);
1544		return;
1545	}
1546	lowprio = (delmode == IOART_DELLOPRI);
1547
1548	/*
1549	 * We don't provide any virtual interrupt redirection hardware so
1550	 * all interrupts originating from the ioapic or MSI specify the
1551	 * 'dest' in the legacy xAPIC format.
1552	 */
1553	vlapic_calcdest(vm, &dmask, dest, phys, lowprio, false);
1554
1555	while ((vcpuid = CPU_FFS(&dmask)) != 0) {
1556		vcpuid--;
1557		CPU_CLR(vcpuid, &dmask);
1558		if (delmode == IOART_DELEXINT) {
1559			vm_inject_extint(vm, vcpuid);
1560		} else {
1561			lapic_set_intr(vm, vcpuid, vec, level);
1562		}
1563	}
1564}
1565
1566void
1567vlapic_post_intr(struct vlapic *vlapic, int hostcpu, int ipinum)
1568{
1569	/*
1570	 * Post an interrupt to the vcpu currently running on 'hostcpu'.
1571	 *
1572	 * This is done by leveraging features like Posted Interrupts (Intel)
1573	 * Doorbell MSR (AMD AVIC) that avoid a VM exit.
1574	 *
1575	 * If neither of these features are available then fallback to
1576	 * sending an IPI to 'hostcpu'.
1577	 */
1578	if (vlapic->ops.post_intr)
1579		(*vlapic->ops.post_intr)(vlapic, hostcpu);
1580	else
1581		ipi_cpu(hostcpu, ipinum);
1582}
1583
1584bool
1585vlapic_enabled(struct vlapic *vlapic)
1586{
1587	struct LAPIC *lapic = vlapic->apic_page;
1588
1589	if ((vlapic->msr_apicbase & APICBASE_ENABLED) != 0 &&
1590	    (lapic->svr & APIC_SVR_ENABLE) != 0)
1591		return (true);
1592	else
1593		return (false);
1594}
1595
1596static void
1597vlapic_set_tmr(struct vlapic *vlapic, int vector, bool level)
1598{
1599	struct LAPIC *lapic;
1600	uint32_t *tmrptr, mask;
1601	int idx;
1602
1603	lapic = vlapic->apic_page;
1604	tmrptr = &lapic->tmr0;
1605	idx = (vector / 32) * 4;
1606	mask = 1 << (vector % 32);
1607	if (level)
1608		tmrptr[idx] |= mask;
1609	else
1610		tmrptr[idx] &= ~mask;
1611
1612	if (vlapic->ops.set_tmr != NULL)
1613		(*vlapic->ops.set_tmr)(vlapic, vector, level);
1614}
1615
1616void
1617vlapic_reset_tmr(struct vlapic *vlapic)
1618{
1619	int vector;
1620
1621	VLAPIC_CTR0(vlapic, "vlapic resetting all vectors to edge-triggered");
1622
1623	for (vector = 0; vector <= 255; vector++)
1624		vlapic_set_tmr(vlapic, vector, false);
1625}
1626
1627void
1628vlapic_set_tmr_level(struct vlapic *vlapic, uint32_t dest, bool phys,
1629    int delmode, int vector)
1630{
1631	cpuset_t dmask;
1632	bool lowprio;
1633
1634	KASSERT(vector >= 0 && vector <= 255, ("invalid vector %d", vector));
1635
1636	/*
1637	 * A level trigger is valid only for fixed and lowprio delivery modes.
1638	 */
1639	if (delmode != APIC_DELMODE_FIXED && delmode != APIC_DELMODE_LOWPRIO) {
1640		VLAPIC_CTR1(vlapic, "Ignoring level trigger-mode for "
1641		    "delivery-mode %d", delmode);
1642		return;
1643	}
1644
1645	lowprio = (delmode == APIC_DELMODE_LOWPRIO);
1646	vlapic_calcdest(vlapic->vm, &dmask, dest, phys, lowprio, false);
1647
1648	if (!CPU_ISSET(vlapic->vcpuid, &dmask))
1649		return;
1650
1651	VLAPIC_CTR1(vlapic, "vector %d set to level-triggered", vector);
1652	vlapic_set_tmr(vlapic, vector, true);
1653}
1654