Home | History | Annotate | Line # | Download | only in include
vmparam3x.h revision 1.11.4.1
      1  1.11.4.1  thorpej /*	$NetBSD: vmparam3x.h,v 1.11.4.1 1999/06/21 01:03:18 thorpej Exp $	*/
      2       1.1      gwr 
      3       1.1      gwr /*
      4       1.1      gwr  * Copyright (c) 1988 University of Utah.
      5       1.1      gwr  * Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
      6       1.1      gwr  * All rights reserved.
      7       1.1      gwr  *
      8       1.1      gwr  * This code is derived from software contributed to Berkeley by
      9       1.1      gwr  * the Systems Programming Group of the University of Utah Computer
     10       1.1      gwr  * Science Department.
     11       1.1      gwr  *
     12       1.1      gwr  * Redistribution and use in source and binary forms, with or without
     13       1.1      gwr  * modification, are permitted provided that the following conditions
     14       1.1      gwr  * are met:
     15       1.1      gwr  * 1. Redistributions of source code must retain the above copyright
     16       1.1      gwr  *    notice, this list of conditions and the following disclaimer.
     17       1.1      gwr  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1      gwr  *    notice, this list of conditions and the following disclaimer in the
     19       1.1      gwr  *    documentation and/or other materials provided with the distribution.
     20       1.1      gwr  * 3. All advertising materials mentioning features or use of this software
     21       1.1      gwr  *    must display the following acknowledgement:
     22       1.1      gwr  *	This product includes software developed by the University of
     23       1.1      gwr  *	California, Berkeley and its contributors.
     24       1.1      gwr  * 4. Neither the name of the University nor the names of its contributors
     25       1.1      gwr  *    may be used to endorse or promote products derived from this software
     26       1.1      gwr  *    without specific prior written permission.
     27       1.1      gwr  *
     28       1.1      gwr  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29       1.1      gwr  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30       1.1      gwr  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31       1.1      gwr  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32       1.1      gwr  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33       1.1      gwr  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34       1.1      gwr  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35       1.1      gwr  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36       1.1      gwr  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37       1.1      gwr  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38       1.1      gwr  * SUCH DAMAGE.
     39       1.1      gwr  *
     40       1.1      gwr  *	from: Utah $Hdr: vmparam.h 1.16 91/01/18$
     41       1.1      gwr  *	from: @(#)vmparam.h	7.3 (Berkeley) 5/7/91
     42       1.1      gwr  *	vmparam.h,v 1.2 1993/05/22 07:58:38 cgd Exp
     43       1.1      gwr  */
     44       1.1      gwr 
     45       1.1      gwr /*
     46       1.4      gwr  * Machine dependent constants for Sun3X
     47       1.1      gwr  */
     48       1.1      gwr 
     49       1.1      gwr /*
     50       1.1      gwr  * USRTEXT is the start of the user text/data space, while
     51       1.1      gwr  * USRSTACK is the top (end) of the user stack.
     52       1.1      gwr  */
     53       1.1      gwr #define	USRTEXT 	NBPG		/* Start of user text */
     54       1.1      gwr #define	USRSTACK	KERNBASE	/* High end of user stack */
     55       1.1      gwr 
     56       1.1      gwr /*
     57       1.1      gwr  * Virtual memory related constants, all in bytes
     58       1.1      gwr  */
     59       1.1      gwr #ifndef MAXTSIZ
     60       1.1      gwr #define	MAXTSIZ		(8*1024*1024)		/* max text size */
     61       1.1      gwr #endif
     62       1.1      gwr #ifndef DFLDSIZ
     63       1.1      gwr #define	DFLDSIZ		(32*1024*1024)		/* initial data size limit */
     64       1.1      gwr #endif
     65       1.1      gwr #ifndef MAXDSIZ
     66       1.1      gwr #define	MAXDSIZ		(128*1024*1024)		/* max data size */
     67       1.1      gwr #endif
     68       1.1      gwr #ifndef	DFLSSIZ
     69       1.1      gwr #define	DFLSSIZ		(2*1024*1024)		/* initial stack size limit */
     70       1.1      gwr #endif
     71       1.1      gwr #ifndef	MAXSSIZ
     72       1.1      gwr #define	MAXSSIZ		(32*1024*1024)		/* max stack size */
     73       1.1      gwr #endif
     74       1.1      gwr 
     75       1.1      gwr /*
     76       1.1      gwr  * PTEs for mapping user space into the kernel for phyio operations.
     77       1.1      gwr  * The actual limitation for physio requests will be the DVMA space,
     78       1.4      gwr  * and that is fixed by hardware design at 1MB.  We could make the
     79       1.1      gwr  * physio map larger than that, but it would not buy us much.
     80       1.1      gwr  */
     81       1.1      gwr #ifndef USRIOSIZE
     82       1.4      gwr #define USRIOSIZE	128	/* 1 MB */
     83       1.1      gwr #endif
     84       1.1      gwr 
     85       1.1      gwr /*
     86       1.1      gwr  * PTEs for system V style shared memory.
     87       1.1      gwr  * This is basically slop for kmempt which we actually allocate (malloc) from.
     88       1.1      gwr  */
     89       1.1      gwr #ifndef SHMMAXPGS
     90       1.1      gwr #define SHMMAXPGS	2048 	/* 16 MB */
     91       1.1      gwr #endif
     92       1.1      gwr 
     93       1.1      gwr /*
     94       1.4      gwr  * Mach-derived constants:
     95       1.1      gwr  */
     96       1.1      gwr 
     97       1.1      gwr /* user/kernel map constants */
     98       1.1      gwr #define VM_MIN_ADDRESS		((vm_offset_t)0)
     99       1.1      gwr #define VM_MAX_ADDRESS		((vm_offset_t)KERNBASE)
    100       1.1      gwr #define VM_MAXUSER_ADDRESS	((vm_offset_t)KERNBASE)
    101       1.1      gwr #define VM_MIN_KERNEL_ADDRESS	((vm_offset_t)KERNBASE)
    102       1.1      gwr #define VM_MAX_KERNEL_ADDRESS	((vm_offset_t)KERN_END)
    103       1.1      gwr 
    104       1.1      gwr /* virtual sizes (bytes) for various kernel submaps */
    105       1.1      gwr #define VM_KMEM_SIZE		(NKMEMCLUSTERS*CLBYTES)
    106       1.1      gwr #define VM_PHYS_SIZE		(USRIOSIZE*CLBYTES)
    107       1.5      gwr 
    108       1.5      gwr #define VM_PHYSSEG_STRAT	VM_PSTRAT_BSEARCH
    109       1.5      gwr #define VM_PHYSSEG_NOADD	/* can't add RAM after vm_mem_init */
    110       1.7  thorpej 
    111       1.7  thorpej #define	VM_NFREELIST		1
    112       1.7  thorpej #define	VM_FREELIST_DEFAULT	0
    113