diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2016-01-25 23:04:40 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2016-01-25 23:04:40 +0000 |
commit | 1e7b9e9e68cec4b8248791924a2d5cbee143d5ee (patch) | |
tree | 506c03e2e03b96d2895cf6414691e9f0a9a7a735 /sys/arm/include/physmem.h | |
parent | 57169cea64fa5fc82057b63149d56395665dd490 (diff) | |
download | src-1e7b9e9e68cec4b8248791924a2d5cbee143d5ee.tar.gz src-1e7b9e9e68cec4b8248791924a2d5cbee143d5ee.zip |
Allow us to be told about memory past the first 4GB point, but ignore it.
This allows, for example, UEFI pass a memory map with some ram in this
region, but for us to ignore it. This is the case when running under the
qemu virt machine type.
Sponsored by: ABT Systems Ltd
Notes
Notes:
svn path=/head/; revision=294754
Diffstat (limited to 'sys/arm/include/physmem.h')
-rw-r--r-- | sys/arm/include/physmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/include/physmem.h b/sys/arm/include/physmem.h index ae6e4d0ab4c4..5e5968d06968 100644 --- a/sys/arm/include/physmem.h +++ b/sys/arm/include/physmem.h @@ -52,7 +52,7 @@ extern vm_paddr_t arm_physmem_kernaddr; #define EXFLAG_NODUMP 0x01 #define EXFLAG_NOALLOC 0x02 -void arm_physmem_hardware_region(vm_paddr_t pa, vm_size_t sz); +void arm_physmem_hardware_region(uint64_t pa, uint64_t sz); void arm_physmem_exclude_region(vm_paddr_t pa, vm_size_t sz, uint32_t flags); void arm_physmem_init_kernel_globals(void); void arm_physmem_print_tables(void); |