]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/amd64/vmm/vmm_ipi.c
First cut to port bhyve, vmmctl, and libvmmapi to HEAD.
[FreeBSD/FreeBSD.git] / sys / amd64 / vmm / vmm_ipi.c
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$
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/proc.h>
35 #include <sys/bus.h>
36
37 #include <machine/intr_machdep.h>
38 #include <machine/apicvar.h>
39 #include <machine/segments.h>
40 #include <machine/md_var.h>
41 #include <machine/smp.h>
42
43 #include <machine/vmm.h>
44 #include "vmm_ipi.h"
45
46 extern inthand_t IDTVEC(rsvd), IDTVEC(justreturn);
47
48 /*
49  * The default is to use the IPI_AST to interrupt a vcpu.
50  */
51 static int ipinum = IPI_AST;
52
53 CTASSERT(APIC_SPURIOUS_INT == 255);
54
55 void
56 vmm_ipi_init(void)
57 {
58         int idx;
59         uintptr_t func;
60         struct gate_descriptor *ip;
61
62         /*
63          * Search backwards from the highest IDT vector available for use
64          * as our IPI vector. We install the 'justreturn' handler at that
65          * vector and use it to interrupt the vcpus.
66          *
67          * We do this because the IPI_AST is heavyweight and saves all
68          * registers in the trapframe. This is overkill for our use case
69          * which is simply to EOI the interrupt and return.
70          */
71         idx = APIC_SPURIOUS_INT;
72         while (--idx >= APIC_IPI_INTS) {
73                 ip = &idt[idx];
74                 func = ((long)ip->gd_hioffset << 16 | ip->gd_looffset);
75                 if (func == (uintptr_t)&IDTVEC(rsvd)) {
76                         ipinum = idx;
77                         setidt(ipinum, IDTVEC(justreturn), SDT_SYSIGT,
78                                SEL_KPL, 0);
79                         break;
80                 }
81         }
82         
83         if (ipinum != IPI_AST && bootverbose) {
84                 printf("vmm_ipi_init: installing ipi handler to interrupt "
85                        "vcpus at vector %d\n", ipinum);
86         }
87 }
88
89 void
90 vmm_ipi_cleanup(void)
91 {
92         if (ipinum != IPI_AST)
93                 setidt(ipinum, IDTVEC(rsvd), SDT_SYSIGT, SEL_KPL, 0);
94 }
95
96 void
97 vm_interrupt_hostcpu(struct vm *vm, int vcpu)
98 {
99         int hostcpu;
100
101         if (vcpu_is_running(vm, vcpu, &hostcpu) && hostcpu != curcpu)
102                 ipi_cpu(hostcpu, ipinum);
103 }