summaryrefslogtreecommitdiffstats
path: root/sys/arm/samsung
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2013-11-04 22:45:26 +0000
committerian <ian@FreeBSD.org>2013-11-04 22:45:26 +0000
commitfefbe5ab0a495d58849a7fe9d9908d64840bdc2c (patch)
treeb38acd2229eed55194270f60a20d47197e5ad60e /sys/arm/samsung
parentfca50c96f29736e66f63356836d199a1295b48ed (diff)
downloadFreeBSD-src-fefbe5ab0a495d58849a7fe9d9908d64840bdc2c.zip
FreeBSD-src-fefbe5ab0a495d58849a7fe9d9908d64840bdc2c.tar.gz
Move remaining code and data related to static device mapping into the
new devmap.[ch] files. Emphasize the MD nature of these things by using the prefix arm_devmap_ on the function and type names (already a few of these things found their way into MI code, hopefully it will be harder to do by accident in the future).
Diffstat (limited to 'sys/arm/samsung')
-rw-r--r--sys/arm/samsung/exynos/exynos5_machdep.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arm/samsung/exynos/exynos5_machdep.c b/sys/arm/samsung/exynos/exynos5_machdep.c
index 007bdb5..1c5a879 100644
--- a/sys/arm/samsung/exynos/exynos5_machdep.c
+++ b/sys/arm/samsung/exynos/exynos5_machdep.c
@@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$");
#include <vm/pmap.h>
#include <machine/bus.h>
+#include <machine/devmap.h>
#include <machine/machdep.h>
#include <dev/fdt/fdt_common.h>
@@ -63,7 +64,7 @@ initarm_late_init(void)
}
#define FDT_DEVMAP_MAX (1 + 2 + 1 + 1) /* FIXME */
-static struct pmap_devmap fdt_devmap[FDT_DEVMAP_MAX] = {
+static struct arm_devmap_entry fdt_devmap[FDT_DEVMAP_MAX] = {
{ 0, 0, 0, 0, 0, }
};
@@ -83,7 +84,7 @@ platform_devmap_init(void)
fdt_devmap[i].pd_cache = PTE_NOCACHE;
i++;
- pmap_devmap_bootstrap_table = &fdt_devmap[0];
+ arm_devmap_register_table(&fdt_devmap[0]);
return (0);
}
OpenPOWER on IntegriCloud