]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/amd64/vmm/vmm_lapic.c
First cut to port bhyve, vmmctl, and libvmmapi to HEAD.
[FreeBSD/FreeBSD.git] / sys / amd64 / vmm / vmm_lapic.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
35 #include <machine/vmm.h>
36 #include "vmm_ipi.h"
37 #include "vmm_lapic.h"
38 #include "vlapic.h"
39
40 int
41 lapic_write(struct vm *vm, int cpu, u_int offset, uint64_t val)
42 {
43         int handled;
44
45         struct vlapic *vlapic;
46
47         vlapic = vm_lapic(vm, cpu);
48
49         if (vlapic_op_mem_write(vlapic, offset, DWORD, val) == 0)
50                 handled = 1;
51         else
52                 handled = 0;
53
54         return (handled);
55 }
56
57 int
58 lapic_read(struct vm *vm, int cpu, u_int offset, uint64_t *rv)
59 {
60         int handled;
61
62         struct vlapic *vlapic;
63
64         vlapic = vm_lapic(vm, cpu);
65
66         if (vlapic_op_mem_read(vlapic, offset, DWORD, rv) == 0)
67                 handled = 1;
68         else
69                 handled = 0;
70
71         return (handled);
72 }
73
74 int
75 lapic_pending_intr(struct vm *vm, int cpu)
76 {
77         struct vlapic *vlapic;
78
79         vlapic = vm_lapic(vm, cpu);
80
81         return (vlapic_pending_intr(vlapic));
82 }
83
84 void
85 lapic_intr_accepted(struct vm *vm, int cpu, int vector)
86 {
87         struct vlapic *vlapic;
88
89         vlapic = vm_lapic(vm, cpu);
90
91         vlapic_intr_accepted(vlapic, vector);
92 }
93
94 int
95 lapic_set_intr(struct vm *vm, int cpu, int vector)
96 {
97         struct vlapic *vlapic;
98
99         if (cpu < 0 || cpu >= VM_MAXCPU)
100                 return (EINVAL);
101
102         if (vector < 32 || vector > 255)
103                 return (EINVAL);
104
105         vlapic = vm_lapic(vm, cpu);
106         vlapic_set_intr_ready(vlapic, vector);
107
108         vm_interrupt_hostcpu(vm, cpu);
109
110         return (0);
111 }
112
113 void
114 lapic_timer_tick(struct vm *vm, int cpu)
115 {
116         struct vlapic *vlapic;
117
118         vlapic = vm_lapic(vm, cpu);
119
120         vlapic_timer_tick(vlapic);
121 }