summaryrefslogtreecommitdiffstats
path: root/sys/arm/econa
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/econa
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/econa')
-rw-r--r--sys/arm/econa/econa_machdep.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arm/econa/econa_machdep.c b/sys/arm/econa/econa_machdep.c
index d64e826..0323e7b 100644
--- a/sys/arm/econa/econa_machdep.c
+++ b/sys/arm/econa/econa_machdep.c
@@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$");
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
+#include <machine/devmap.h>
#include <machine/vmparam.h>
#include <machine/pcb.h>
#include <machine/undefined.h>
@@ -108,7 +109,7 @@ struct pv_addr abtstack;
struct pv_addr kernelstack;
/* Static device mappings. */
-static const struct pmap_devmap econa_devmap[] = {
+static const struct arm_devmap_entry econa_devmap[] = {
{
/*
* This maps DDR SDRAM
@@ -275,7 +276,7 @@ initarm(struct arm_boot_params *abp)
VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE);
}
- pmap_devmap_bootstrap(l1pagetable, econa_devmap);
+ arm_devmap_bootstrap(l1pagetable, econa_devmap);
cpu_domains((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2)) | DOMAIN_CLIENT);
setttb(kernel_l1pt.pv_pa);
cpu_tlb_flushID();
OpenPOWER on IntegriCloud