]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/amd64/vmm/vmm_ipi.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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
42 #include <machine/vmm.h>
43 #include "vmm_ipi.h"
44
45 extern inthand_t IDTVEC(rsvd), IDTVEC(justreturn);
46
47 /*
48  * The default is to use the IPI_AST to interrupt a vcpu.
49  */
50 int vmm_ipinum = IPI_AST;
51
52 CTASSERT(APIC_SPURIOUS_INT == 255);
53
54 void
55 vmm_ipi_init(void)
56 {
57         int idx;
58         uintptr_t func;
59         struct gate_descriptor *ip;
60
61         /*
62          * Search backwards from the highest IDT vector available for use
63          * as our IPI vector. We install the 'justreturn' handler at that
64          * vector and use it to interrupt the vcpus.
65          *
66          * We do this because the IPI_AST is heavyweight and saves all
67          * registers in the trapframe. This is overkill for our use case
68          * which is simply to EOI the interrupt and return.
69          */
70         idx = APIC_SPURIOUS_INT;
71         while (--idx >= APIC_IPI_INTS) {
72                 ip = &idt[idx];
73                 func = ((long)ip->gd_hioffset << 16 | ip->gd_looffset);
74                 if (func == (uintptr_t)&IDTVEC(rsvd)) {
75                         vmm_ipinum = idx;
76                         setidt(vmm_ipinum, IDTVEC(justreturn), SDT_SYSIGT,
77                                SEL_KPL, 0);
78                         break;
79                 }
80         }
81         
82         if (vmm_ipinum != IPI_AST && bootverbose) {
83                 printf("vmm_ipi_init: installing ipi handler to interrupt "
84                        "vcpus at vector %d\n", vmm_ipinum);
85         }
86 }
87
88 void
89 vmm_ipi_cleanup(void)
90 {
91         if (vmm_ipinum != IPI_AST)
92                 setidt(vmm_ipinum, IDTVEC(rsvd), SDT_SYSIGT, SEL_KPL, 0);
93 }