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