]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/x86/xen/xenpv.c
Merge ACPICA 20150515.
[FreeBSD/FreeBSD.git] / sys / x86 / xen / xenpv.c
1 /*
2  * Copyright (c) 2014 Roger Pau MonnĂ© <roger.pau@citrix.com>
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 THE AUTHOR AND CONTRIBUTORS 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 THE AUTHOR 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
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/bus.h>
33 #include <sys/kernel.h>
34 #include <sys/module.h>
35 #include <sys/pcpu.h>
36 #include <sys/rman.h>
37 #include <sys/smp.h>
38
39 #include <vm/vm.h>
40 #include <vm/vm_page.h>
41 #include <vm/vm_param.h>
42 #include <vm/vm_phys.h>
43
44 #include <xen/xen-os.h>
45 #include <xen/gnttab.h>
46
47 #include "xenmem_if.h"
48
49 /*
50  * Allocate unused physical memory above 4GB in order to map memory
51  * from foreign domains. We use memory starting at 4GB in order to
52  * prevent clashes with MMIO/ACPI regions.
53  *
54  * Since this is not possible on i386 just use any available memory
55  * chunk and hope we don't clash with anything else.
56  */
57 #ifdef __amd64__
58 #define LOW_MEM_LIMIT   0x100000000ul
59 #else
60 #define LOW_MEM_LIMIT   0
61 #endif
62
63 static devclass_t xenpv_devclass;
64
65 static void
66 xenpv_identify(driver_t *driver, device_t parent)
67 {
68         if (!xen_domain())
69                 return;
70
71         /* Make sure there's only one xenpv device. */
72         if (devclass_get_device(xenpv_devclass, 0))
73                 return;
74
75         if (BUS_ADD_CHILD(parent, 0, "xenpv", 0) == NULL)
76                 panic("Unable to attach xenpv bus.");
77 }
78
79 static int
80 xenpv_probe(device_t dev)
81 {
82
83         device_set_desc(dev, "Xen PV bus");
84         return (BUS_PROBE_NOWILDCARD);
85 }
86
87 static int
88 xenpv_attach(device_t dev)
89 {
90         device_t child;
91
92         /*
93          * Let our child drivers identify any child devices that they
94          * can find.  Once that is done attach any devices that we
95          * found.
96          */
97         bus_generic_probe(dev);
98         bus_generic_attach(dev);
99
100         if (!devclass_get_device(devclass_find("isa"), 0)) {
101                 child = BUS_ADD_CHILD(dev, 0, "isa", 0);
102                 if (child == NULL)
103                         panic("Failed to attach ISA bus.");
104                 device_probe_and_attach(child);
105         }
106
107         return (0);
108 }
109
110 static struct resource *
111 xenpv_alloc_physmem(device_t dev, device_t child, int *res_id, size_t size)
112 {
113         struct resource *res;
114         vm_paddr_t phys_addr;
115         int error;
116
117         res = bus_alloc_resource(child, SYS_RES_MEMORY, res_id, LOW_MEM_LIMIT,
118             ~0ul, size, RF_ACTIVE);
119         if (res == NULL)
120                 return (NULL);
121
122         phys_addr = rman_get_start(res);
123         error = vm_phys_fictitious_reg_range(phys_addr, phys_addr + size,
124             VM_MEMATTR_DEFAULT);
125         if (error) {
126                 bus_release_resource(child, SYS_RES_MEMORY, *res_id, res);
127                 return (NULL);
128         }
129
130         return (res);
131 }
132
133 static int
134 xenpv_free_physmem(device_t dev, device_t child, int res_id, struct resource *res)
135 {
136         vm_paddr_t phys_addr;
137         size_t size;
138
139         phys_addr = rman_get_start(res);
140         size = rman_get_size(res);
141
142         vm_phys_fictitious_unreg_range(phys_addr, phys_addr + size);
143         return (bus_release_resource(child, SYS_RES_MEMORY, res_id, res));
144 }
145
146 static device_method_t xenpv_methods[] = {
147         /* Device interface */
148         DEVMETHOD(device_identify,              xenpv_identify),
149         DEVMETHOD(device_probe,                 xenpv_probe),
150         DEVMETHOD(device_attach,                xenpv_attach),
151         DEVMETHOD(device_suspend,               bus_generic_suspend),
152         DEVMETHOD(device_resume,                bus_generic_resume),
153
154         /* Bus interface */
155         DEVMETHOD(bus_add_child,                bus_generic_add_child),
156         DEVMETHOD(bus_alloc_resource,           bus_generic_alloc_resource),
157         DEVMETHOD(bus_release_resource,         bus_generic_release_resource),
158         DEVMETHOD(bus_activate_resource,        bus_generic_activate_resource),
159         DEVMETHOD(bus_deactivate_resource,      bus_generic_deactivate_resource),
160
161         /* Interface to allocate memory for foreign mappings */
162         DEVMETHOD(xenmem_alloc,                 xenpv_alloc_physmem),
163         DEVMETHOD(xenmem_free,                  xenpv_free_physmem),
164
165         DEVMETHOD_END
166 };
167
168 static driver_t xenpv_driver = {
169         "xenpv",
170         xenpv_methods,
171         0,
172 };
173
174 DRIVER_MODULE(xenpv, nexus, xenpv_driver, xenpv_devclass, 0, 0);
175
176 struct resource *
177 xenmem_alloc(device_t dev, int *res_id, size_t size)
178 {
179         device_t parent;
180
181         parent = device_get_parent(dev);
182         if (parent == NULL)
183                 return (NULL);
184         return (XENMEM_ALLOC(parent, dev, res_id, size));
185 }
186
187 int
188 xenmem_free(device_t dev, int res_id, struct resource *res)
189 {
190         device_t parent;
191
192         parent = device_get_parent(dev);
193         if (parent == NULL)
194                 return (ENXIO);
195         return (XENMEM_FREE(parent, dev, res_id, res));
196 }