xref: /openbsd/sys/arch/luna88k/include/vmparam.h (revision 4cfece93)
1 /* $OpenBSD: vmparam.h,v 1.4 2010/12/31 21:38:08 miod Exp $ */
2 /* public domain */
3 /*
4  * Physical memory is mapped 1:1 at the bottom of the supervisor address
5  * space. Kernel virtual memory space starts from the end of physical memory,
6  * up to the on-board devices appearing all over the last 3GB of address space.
7  */
8 #define VM_MIN_KERNEL_ADDRESS	((vaddr_t)0x00000000)
9 #define VM_MAX_KERNEL_ADDRESS	((vaddr_t)0x40000000)
10 
11 #include <m88k/vmparam.h>
12