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