1 /* $NetBSD: vmparam.h,v 1.18 2014/01/25 15:16:50 christos Exp $ */ 2 3 #ifndef _POWERPC_VMPARAM_H_ 4 #define _POWERPC_VMPARAM_H_ 5 6 #ifdef _KERNEL_OPT 7 #include "opt_modular.h" 8 #include "opt_ppcarch.h" 9 #include "opt_uvm.h" 10 #endif 11 12 /* 13 * These are common for BOOKE, IBM4XX, and OEA 14 */ 15 #define VM_FREELIST_DEFAULT 0 16 #define VM_FREELIST_FIRST256 1 17 #define VM_FREELIST_FIRST16 2 18 #define VM_NFREELIST 3 19 20 #define VM_PHYSSEG_MAX 16 21 22 /* 23 * The address to which unspecified mapping requests default 24 * Put the stack in it's own segment and start mmaping at the 25 * top of the next lower segment. 26 */ 27 #define __USE_TOPDOWN_VM 28 #define VM_DEFAULT_ADDRESS_TOPDOWN(da, sz) \ 29 ((VM_MAXUSER_ADDRESS - MAXSSIZ) - round_page(sz)) 30 #define VM_DEFAULT_ADDRESS_BOTTOMUP(da, sz) \ 31 round_page((vaddr_t)(da) + (vsize_t)maxdmap) 32 33 #if defined(_MODULE) || defined(MODULAR) 34 /* 35 * If we are a module or a modular kernel, then we need to defined the range 36 * of our varible page sizes since BOOKE and OEA use 4KB pages while IBM4XX 37 * use 16KB pages. 38 */ 39 #define MIN_PAGE_SIZE 4096 /* BOOKE/OEA */ 40 #define MAX_PAGE_SIZE 16384 /* IBM4XX */ 41 #endif 42 43 #if defined(_MODULE) 44 #if defined(_RUMPKERNEL) 45 /* 46 * Safe definitions for RUMP kernels 47 */ 48 #define VM_MAXUSER_ADDRESS 0x7fff8000 49 #define VM_MIN_ADDRESS 0x00000000 50 #define VM_MAX_ADDRESS VM_MAXUSER_ADDRESS 51 #define MAXDSIZ (1024*1024*1024) 52 #define MAXSSIZ (32*1024*1024) 53 #define MAXTSIZ (256*1024*1024) 54 #else /* !_RUMPKERNEL */ 55 /* 56 * Some modules need some of the constants but those vary between the variants 57 * so those constants are exported as linker symbols so they don't take up any 58 * space but also avoid an extra load to put into a register. 59 */ 60 extern const char __USRSTACK; /* let the linker resolve it */ 61 62 #define USRSTACK ((vaddr_t)(uintptr_t)&__USRSTACK) 63 #endif /* !_RUMPKERNEL */ 64 65 #else /* !_MODULE */ 66 67 #if defined(PPC_BOOKE) 68 #include <powerpc/booke/vmparam.h> 69 #elif defined(PPC_IBM4XX) 70 #include <powerpc/ibm4xx/vmparam.h> 71 #elif defined(PPC_OEA) || defined (PPC_OEA64) || defined (PPC_OEA64_BRIDGE) 72 #include <powerpc/oea/vmparam.h> 73 #elif defined(_KERNEL) 74 #error unknown PPC variant 75 #endif 76 77 #endif /* !_MODULE */ 78 79 #if defined(MODULAR) || defined(_MODULAR) 80 /* 81 * If we are a module or support modules, we need to define a compatible 82 * pmap_physseg since IBM4XX uses one. This will waste a tiny of space 83 * but is needed for compatibility. 84 */ 85 #ifndef __HAVE_PMAP_PHYSSEG 86 #define __HAVE_PMAP_PHYSSEG 87 struct pmap_physseg { 88 uintptr_t pmseg_dummy[2]; 89 }; 90 #endif 91 92 __CTASSERT(sizeof(struct pmap_physseg) == sizeof(uintptr_t) * 2); 93 #endif /* MODULAR || _MODULE */ 94 95 #endif /* !_POWERPC_VMPARAM_H_ */ 96