summaryrefslogtreecommitdiffstats
path: root/sys/xen
diff options
context:
space:
mode:
authorroyger <royger@FreeBSD.org>2015-05-08 14:48:40 +0000
committerroyger <royger@FreeBSD.org>2015-05-08 14:48:40 +0000
commitd9a8b7337bd9eac9574477b682f8bba0af827223 (patch)
tree0df19d243cf9c3b5b078907ca41718eadb489e8f /sys/xen
parentb15170de41044ac77f0d019e6d5bb620d8a0f38f (diff)
downloadFreeBSD-src-d9a8b7337bd9eac9574477b682f8bba0af827223.zip
FreeBSD-src-d9a8b7337bd9eac9574477b682f8bba0af827223.tar.gz
xen: introduce a newbus function to allocate unused memory
In order to map memory from other domains when running on Xen FreeBSD uses unused physical memory regions. Until now this memory has been allocated using bus_alloc_resource, but this is not completely safe as we can end up using unreclaimed MMIO or ACPI regions. Fix this by introducing a new newbus method that can be used by Xen drivers to request for unused memory regions. On amd64 we make sure this memory comes from regions above 4GB in order to prevent clashes with MMIO/ACPI regions. On i386 there's nothing we can do, so just fall back to the previous mechanism. Sponsored by: Citrix Systems R&D Tested by: Gustau Pérez <gperez@entel.upc.edu>
Diffstat (limited to 'sys/xen')
-rw-r--r--sys/xen/xen-os.h7
-rw-r--r--sys/xen/xenmem/xenmem_if.m95
2 files changed, 102 insertions, 0 deletions
diff --git a/sys/xen/xen-os.h b/sys/xen/xen-os.h
index c982d55..7ceef4f 100644
--- a/sys/xen/xen-os.h
+++ b/sys/xen/xen-os.h
@@ -89,6 +89,13 @@ xen_initial_domain(void)
(HYPERVISOR_start_info->flags & SIF_INITDOMAIN) != 0);
}
+/*
+ * Functions to allocate/free unused memory in order
+ * to map memory from other domains.
+ */
+struct resource *xenmem_alloc(device_t dev, int *res_id, size_t size);
+int xenmem_free(device_t dev, int res_id, struct resource *res);
+
/* Debug/emergency function, prints directly to hypervisor console */
void xc_printf(const char *, ...) __printflike(1, 2);
diff --git a/sys/xen/xenmem/xenmem_if.m b/sys/xen/xenmem/xenmem_if.m
new file mode 100644
index 0000000..5cc2171
--- /dev/null
+++ b/sys/xen/xenmem/xenmem_if.m
@@ -0,0 +1,95 @@
+#-
+# Copyright (c) 2015 Roger Pau Monné <royger@FreeBSD.org>
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+#
+# $FreeBSD$
+#
+
+#include <sys/bus.h>
+
+INTERFACE xenmem;
+
+#
+# Default implementations of some methods.
+#
+CODE {
+ static struct resource *
+ xenmem_generic_alloc(device_t dev, device_t child, int *res_id,
+ size_t size)
+ {
+ device_t parent;
+
+ parent = device_get_parent(dev);
+ if (parent == NULL)
+ return (NULL);
+ return (XENMEM_ALLOC(parent, child, res_id, size));
+ }
+
+ static int
+ xenmem_generic_free(device_t dev, device_t child, int res_id,
+ struct resource *res)
+ {
+ device_t parent;
+
+ parent = device_get_parent(dev);
+ if (parent == NULL)
+ return (ENXIO);
+ return (XENMEM_FREE(parent, child, res_id, res));
+ }
+};
+
+/**
+ * @brief Request for unused physical memory regions.
+ *
+ * @param _dev the device whose child was being probed.
+ * @param _child the child device which failed to probe.
+ * @param _res_id a pointer to the resource identifier.
+ * @param _size size of the required memory region.
+ *
+ * @returns the resource which was allocated or @c NULL if no
+ * resource could be allocated.
+ */
+METHOD struct resource * alloc {
+ device_t _dev;
+ device_t _child;
+ int *_res_id;
+ size_t _size;
+} DEFAULT xenmem_generic_alloc;
+
+/**
+ * @brief Free physical memory regions.
+ *
+ * @param _dev the device whose child was being probed.
+ * @param _child the child device which failed to probe.
+ * @param _res_id the resource identifier.
+ * @param _res the resource.
+ *
+ * @returns 0 on success, otherwise an error code.
+ */
+METHOD int free {
+ device_t _dev;
+ device_t _child;
+ int _res_id;
+ struct resource *_res;
+} DEFAULT xenmem_generic_free;
OpenPOWER on IntegriCloud