Home | History | Annotate | Line # | Download | only in uvm
uvm_param.h revision 1.21.58.1
      1  1.21.58.1     yamt /*	$NetBSD: uvm_param.h,v 1.21.58.1 2009/08/19 18:48:36 yamt Exp $	*/
      2        1.1      mrg 
      3       1.10      chs /*
      4        1.1      mrg  * Copyright (c) 1991, 1993
      5        1.1      mrg  *	The Regents of the University of California.  All rights reserved.
      6        1.1      mrg  *
      7        1.1      mrg  * This code is derived from software contributed to Berkeley by
      8        1.1      mrg  * The Mach Operating System project at Carnegie-Mellon University.
      9        1.1      mrg  *
     10        1.1      mrg  * Redistribution and use in source and binary forms, with or without
     11        1.1      mrg  * modification, are permitted provided that the following conditions
     12        1.1      mrg  * are met:
     13        1.1      mrg  * 1. Redistributions of source code must retain the above copyright
     14        1.1      mrg  *    notice, this list of conditions and the following disclaimer.
     15        1.1      mrg  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1      mrg  *    notice, this list of conditions and the following disclaimer in the
     17        1.1      mrg  *    documentation and/or other materials provided with the distribution.
     18       1.18      agc  * 3. Neither the name of the University nor the names of its contributors
     19        1.1      mrg  *    may be used to endorse or promote products derived from this software
     20        1.1      mrg  *    without specific prior written permission.
     21        1.1      mrg  *
     22        1.1      mrg  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23        1.1      mrg  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24        1.1      mrg  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25        1.1      mrg  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26        1.1      mrg  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27        1.1      mrg  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28        1.1      mrg  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29        1.1      mrg  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30        1.1      mrg  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31        1.1      mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32        1.1      mrg  * SUCH DAMAGE.
     33        1.1      mrg  *
     34        1.1      mrg  *	@(#)vm_param.h	8.2 (Berkeley) 1/9/95
     35        1.1      mrg  *
     36        1.1      mrg  *
     37        1.1      mrg  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
     38        1.1      mrg  * All rights reserved.
     39        1.1      mrg  *
     40        1.1      mrg  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
     41       1.10      chs  *
     42        1.1      mrg  * Permission to use, copy, modify and distribute this software and
     43        1.1      mrg  * its documentation is hereby granted, provided that both the copyright
     44        1.1      mrg  * notice and this permission notice appear in all copies of the
     45        1.1      mrg  * software, derivative works or modified versions, and any portions
     46        1.1      mrg  * thereof, and that both notices appear in supporting documentation.
     47       1.10      chs  *
     48       1.10      chs  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     49       1.10      chs  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     50        1.1      mrg  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     51       1.10      chs  *
     52        1.1      mrg  * Carnegie Mellon requests users of this software to return to
     53        1.1      mrg  *
     54        1.1      mrg  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     55        1.1      mrg  *  School of Computer Science
     56        1.1      mrg  *  Carnegie Mellon University
     57        1.1      mrg  *  Pittsburgh PA 15213-3890
     58        1.1      mrg  *
     59        1.1      mrg  * any improvements or extensions that they make and grant Carnegie the
     60        1.1      mrg  * rights to redistribute these changes.
     61        1.1      mrg  */
     62        1.1      mrg 
     63        1.1      mrg /*
     64        1.1      mrg  *	Machine independent virtual memory parameters.
     65        1.1      mrg  */
     66        1.1      mrg 
     67        1.1      mrg #ifndef	_VM_PARAM_
     68        1.1      mrg #define	_VM_PARAM_
     69        1.1      mrg 
     70       1.14   atatat #ifdef _KERNEL_OPT
     71       1.14   atatat #include "opt_uvm.h"
     72       1.14   atatat #endif
     73       1.12     matt #ifdef _KERNEL
     74       1.21       he #include <sys/types.h>
     75       1.21       he #include <sys/lock.h>
     76        1.1      mrg #include <machine/vmparam.h>
     77       1.19       pk #include <sys/resourcevar.h>
     78        1.1      mrg #endif
     79        1.1      mrg 
     80       1.16  thorpej #if defined(_KERNEL)
     81       1.16  thorpej 
     82       1.16  thorpej #if defined(PAGE_SIZE)
     83       1.16  thorpej 
     84        1.1      mrg /*
     85       1.16  thorpej  * If PAGE_SIZE is defined at this stage, it must be a constant.
     86        1.1      mrg  */
     87        1.1      mrg 
     88       1.16  thorpej #if PAGE_SIZE == 0
     89       1.16  thorpej #error Invalid PAGE_SIZE definition
     90       1.16  thorpej #endif
     91       1.16  thorpej 
     92        1.1      mrg /*
     93       1.16  thorpej  * If the platform does not need to support a variable PAGE_SIZE,
     94       1.16  thorpej  * then provide default values for MIN_PAGE_SIZE and MAX_PAGE_SIZE.
     95        1.1      mrg  */
     96       1.16  thorpej 
     97       1.16  thorpej #if !defined(MIN_PAGE_SIZE)
     98       1.16  thorpej #define	MIN_PAGE_SIZE	PAGE_SIZE
     99       1.16  thorpej #endif /* ! MIN_PAGE_SIZE */
    100       1.16  thorpej 
    101       1.16  thorpej #if !defined(MAX_PAGE_SIZE)
    102       1.16  thorpej #define	MAX_PAGE_SIZE	PAGE_SIZE
    103       1.16  thorpej #endif /* ! MAX_PAGE_SIZE */
    104       1.16  thorpej 
    105       1.16  thorpej #else /* ! PAGE_SIZE */
    106       1.16  thorpej 
    107       1.16  thorpej /*
    108       1.16  thorpej  * PAGE_SIZE is not a constant; MIN_PAGE_SIZE and MAX_PAGE_SIZE must
    109       1.16  thorpej  * be defined.
    110       1.16  thorpej  */
    111       1.16  thorpej 
    112       1.16  thorpej #if !defined(MIN_PAGE_SIZE)
    113       1.16  thorpej #error MIN_PAGE_SIZE not defined
    114       1.16  thorpej #endif
    115       1.16  thorpej 
    116       1.16  thorpej #if !defined(MAX_PAGE_SIZE)
    117       1.16  thorpej #error MAX_PAGE_SIZE not defined
    118       1.16  thorpej #endif
    119       1.16  thorpej 
    120       1.16  thorpej #endif /* PAGE_SIZE */
    121       1.16  thorpej 
    122       1.16  thorpej /*
    123       1.16  thorpej  * MIN_PAGE_SIZE and MAX_PAGE_SIZE must be constants.
    124       1.16  thorpej  */
    125       1.16  thorpej 
    126       1.16  thorpej #if MIN_PAGE_SIZE == 0
    127       1.16  thorpej #error Invalid MIN_PAGE_SIZE definition
    128       1.16  thorpej #endif
    129       1.16  thorpej 
    130       1.16  thorpej #if MAX_PAGE_SIZE == 0
    131       1.16  thorpej #error Invalid MAX_PAGE_SIZE definition
    132       1.16  thorpej #endif
    133       1.16  thorpej 
    134       1.16  thorpej /*
    135       1.16  thorpej  * If MIN_PAGE_SIZE and MAX_PAGE_SIZE are not equal, then we must use
    136       1.16  thorpej  * non-constant PAGE_SIZE, et al for LKMs.
    137       1.16  thorpej  */
    138       1.16  thorpej #if (MIN_PAGE_SIZE != MAX_PAGE_SIZE) && defined(_LKM)
    139       1.16  thorpej #undef PAGE_SIZE
    140       1.16  thorpej #undef PAGE_MASK
    141       1.16  thorpej #undef PAGE_SHIFT
    142       1.16  thorpej #endif
    143       1.16  thorpej 
    144       1.16  thorpej /*
    145       1.16  thorpej  * Now provide PAGE_SIZE, PAGE_MASK, and PAGE_SHIFT if we do not
    146       1.16  thorpej  * have ones that are compile-time constants.
    147       1.16  thorpej  */
    148       1.16  thorpej #if !defined(PAGE_SIZE)
    149        1.1      mrg #define	PAGE_SIZE	uvmexp.pagesize		/* size of page */
    150        1.1      mrg #define	PAGE_MASK	uvmexp.pagemask		/* size of page - 1 */
    151        1.1      mrg #define	PAGE_SHIFT	uvmexp.pageshift	/* bits to shift for pages */
    152       1.16  thorpej #endif /* PAGE_SIZE */
    153       1.16  thorpej 
    154        1.1      mrg #endif /* _KERNEL */
    155        1.1      mrg 
    156        1.1      mrg /*
    157        1.1      mrg  * CTL_VM identifiers
    158        1.1      mrg  */
    159        1.1      mrg #define	VM_METER	1		/* struct vmmeter */
    160        1.1      mrg #define	VM_LOADAVG	2		/* struct loadavg */
    161        1.2   simonb #define	VM_UVMEXP	3		/* struct uvmexp */
    162        1.1      mrg #define	VM_NKMEMPAGES	4		/* kmem_map pages */
    163        1.2   simonb #define	VM_UVMEXP2	5		/* struct uvmexp_sysctl */
    164        1.5      chs #define	VM_ANONMIN	6
    165       1.13      chs #define	VM_EXECMIN	7
    166       1.13      chs #define	VM_FILEMIN	8
    167       1.11     matt #define	VM_MAXSLP	9
    168       1.11     matt #define	VM_USPACE	10
    169       1.13      chs #define	VM_ANONMAX	11
    170       1.13      chs #define	VM_EXECMAX	12
    171       1.13      chs #define	VM_FILEMAX	13
    172        1.5      chs 
    173       1.13      chs #define	VM_MAXID	14		/* number of valid vm ids */
    174        1.1      mrg 
    175        1.1      mrg #define	CTL_VM_NAMES { \
    176        1.1      mrg 	{ 0, 0 }, \
    177        1.1      mrg 	{ "vmmeter", CTLTYPE_STRUCT }, \
    178        1.1      mrg 	{ "loadavg", CTLTYPE_STRUCT }, \
    179        1.1      mrg 	{ "uvmexp", CTLTYPE_STRUCT }, \
    180        1.1      mrg 	{ "nkmempages", CTLTYPE_INT }, \
    181        1.2   simonb 	{ "uvmexp2", CTLTYPE_STRUCT }, \
    182        1.5      chs 	{ "anonmin", CTLTYPE_INT }, \
    183       1.13      chs 	{ "execmin", CTLTYPE_INT }, \
    184       1.13      chs 	{ "filemin", CTLTYPE_INT }, \
    185       1.11     matt 	{ "maxslp", CTLTYPE_INT }, \
    186       1.11     matt 	{ "uspace", CTLTYPE_INT }, \
    187       1.13      chs 	{ "anonmax", CTLTYPE_INT }, \
    188       1.13      chs 	{ "execmax", CTLTYPE_INT }, \
    189       1.13      chs 	{ "filemax", CTLTYPE_INT }, \
    190        1.1      mrg }
    191        1.1      mrg 
    192        1.1      mrg #ifndef ASSEMBLER
    193        1.1      mrg /*
    194        1.1      mrg  *	Convert addresses to pages and vice versa.
    195        1.1      mrg  *	No rounding is used.
    196        1.1      mrg  */
    197        1.1      mrg #ifdef _KERNEL
    198        1.4       pk #define	atop(x)		(((paddr_t)(x)) >> PAGE_SHIFT)
    199        1.1      mrg #define	ptoa(x)		((vaddr_t)((vaddr_t)(x) << PAGE_SHIFT))
    200        1.1      mrg 
    201        1.1      mrg /*
    202        1.1      mrg  * Round off or truncate to the nearest page.  These will work
    203        1.1      mrg  * for either addresses or counts (i.e., 1 byte rounds to 1 page).
    204        1.1      mrg  */
    205        1.1      mrg #define	round_page(x)	(((x) + PAGE_MASK) & ~PAGE_MASK)
    206        1.1      mrg #define	trunc_page(x)	((x) & ~PAGE_MASK)
    207       1.14   atatat 
    208       1.14   atatat /*
    209       1.14   atatat  * Set up the default mapping address (VM_DEFAULT_ADDRESS) according to:
    210       1.14   atatat  *
    211       1.14   atatat  * USE_TOPDOWN_VM:	a kernel option to enable on a per-kernel basis
    212       1.14   atatat  *			which only be used on ports that define...
    213       1.14   atatat  * __HAVE_TOPDOWN_VM:	a per-port option to offer the topdown option
    214       1.14   atatat  *
    215       1.14   atatat  * __USE_TOPDOWN_VM:	a per-port option to unconditionally use it
    216       1.14   atatat  *
    217       1.14   atatat  * if __USE_TOPDOWN_VM is defined, the port can specify a default vm
    218       1.14   atatat  * address, or we will use the topdown default from below.  If it is
    219       1.14   atatat  * NOT defined, then the port can offer topdown as an option, but it
    220       1.14   atatat  * MUST define the VM_DEFAULT_ADDRESS macro itself.
    221       1.14   atatat  */
    222       1.14   atatat #if defined(USE_TOPDOWN_VM) || defined(__USE_TOPDOWN_VM)
    223       1.14   atatat # if !defined(__HAVE_TOPDOWN_VM) && !defined(__USE_TOPDOWN_VM)
    224       1.14   atatat #  error "Top down memory allocation not enabled for this system"
    225       1.14   atatat # else /* !__HAVE_TOPDOWN_VM && !__USE_TOPDOWN_VM */
    226       1.14   atatat #  define __USING_TOPDOWN_VM
    227       1.14   atatat #  if !defined(VM_DEFAULT_ADDRESS)
    228       1.14   atatat #   if !defined(__USE_TOPDOWN_VM)
    229       1.14   atatat #    error "Top down memory allocation not configured for this system"
    230       1.14   atatat #   else /* !__USE_TOPDOWN_VM */
    231       1.14   atatat #    define VM_DEFAULT_ADDRESS(da, sz) \
    232       1.14   atatat 	trunc_page(VM_MAXUSER_ADDRESS - MAXSSIZ - (sz))
    233       1.14   atatat #   endif /* !__USE_TOPDOWN_VM */
    234       1.14   atatat #  endif /* !VM_DEFAULT_ADDRESS */
    235       1.14   atatat # endif /* !__HAVE_TOPDOWN_VM && !__USE_TOPDOWN_VM */
    236       1.14   atatat #endif /* USE_TOPDOWN_VM || __USE_TOPDOWN_VM */
    237       1.14   atatat 
    238       1.14   atatat #if !defined(__USING_TOPDOWN_VM)
    239       1.14   atatat # if defined(VM_DEFAULT_ADDRESS)
    240       1.14   atatat #  error "Default vm address should not be defined here"
    241       1.14   atatat # else /* VM_DEFAULT_ADDRESS */
    242       1.19       pk #  define VM_DEFAULT_ADDRESS(da, sz) round_page((vaddr_t)(da) + (vsize_t)maxdmap)
    243       1.14   atatat # endif /* VM_DEFAULT_ADDRESS */
    244       1.14   atatat #endif /* !__USING_TOPDOWN_VM */
    245        1.1      mrg 
    246        1.3      chs extern int		ubc_nwins;	/* number of UBC mapping windows */
    247        1.7      chs extern int		ubc_winshift;	/* shift for a UBC mapping window */
    248  1.21.58.1     yamt extern u_int		uvm_emap_size;	/* size of emap */
    249        1.1      mrg 
    250        1.1      mrg #else
    251        1.1      mrg /* out-of-kernel versions of round_page and trunc_page */
    252        1.1      mrg #define	round_page(x) \
    253        1.1      mrg 	((((vaddr_t)(x) + (vm_page_size - 1)) / vm_page_size) * \
    254        1.1      mrg 	    vm_page_size)
    255        1.1      mrg #define	trunc_page(x) \
    256        1.1      mrg 	((((vaddr_t)(x)) / vm_page_size) * vm_page_size)
    257        1.1      mrg 
    258        1.1      mrg #endif /* _KERNEL */
    259        1.1      mrg #endif /* ASSEMBLER */
    260        1.1      mrg #endif /* _VM_PARAM_ */
    261