Home | History | Annotate | Line # | Download | only in include
vmparam.h revision 1.12
      1 /*	$NetBSD: vmparam.h,v 1.12 2002/04/28 17:10:37 uch Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1990 The Regents of the University of California.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * William Jolitz.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the University of
     21  *	California, Berkeley and its contributors.
     22  * 4. Neither the name of the University nor the names of its contributors
     23  *    may be used to endorse or promote products derived from this software
     24  *    without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36  * SUCH DAMAGE.
     37  *
     38  *	@(#)vmparam.h	5.9 (Berkeley) 5/12/91
     39  */
     40 
     41 #ifndef _SH3_VMPARAM_H_
     42 #define	_SH3_VMPARAM_H_
     43 
     44 /*
     45  * Machine dependent constants for NetBSD/sh3.
     46  */
     47 
     48 /*
     49  * Virtual address space arrangement.
     50  * USRTEXT is the start of the user text/data space, while USRSTACK
     51  * is the top (end) of the user stack.
     52  */
     53 #define	USRTEXT		NBPG
     54 #define	USRSTACK	VM_MAXUSER_ADDRESS
     55 
     56 /*
     57  * Virtual memory related constants, all in bytes
     58  */
     59 #define	MAXTSIZ		(64*1024*1024)		/* max text size */
     60 #ifndef DFLDSIZ
     61 #define	DFLDSIZ		(128*1024*1024)		/* initial data size limit */
     62 #endif
     63 #ifndef MAXDSIZ
     64 #define	MAXDSIZ		(1*1024*1024*1024)	/* max data size */
     65 #endif
     66 #ifndef	DFLSSIZ
     67 #define	DFLSSIZ		(2*1024*1024)		/* initial stack size limit */
     68 #endif
     69 #ifndef	MAXSSIZ
     70 #define	MAXSSIZ		(32*1024*1024)		/* max stack size */
     71 #endif
     72 
     73 /*
     74  * Size of shared memory map
     75  */
     76 #ifndef SHMMAXPGS
     77 #define	SHMMAXPGS	1024
     78 #endif
     79 
     80 /*
     81  * Size of User Raw I/O map
     82  */
     83 #define	USRIOSIZE 	300
     84 
     85 /*
     86  * Mach derived constants
     87  */
     88 
     89 /* user/kernel map constants */
     90 #define	VM_MIN_ADDRESS		((vaddr_t)0)
     91 /* PTDPTDI<<PDSHIFT - UPAGES*NBPG */
     92 #define	VM_MAXUSER_ADDRESS	((vaddr_t)0x7fffe000)
     93 /* PTDPTDI<<PDSHIFT + PTDPTDI<<PGSHIFT */
     94 #define	VM_MAX_ADDRESS		((vaddr_t)0xcffbf000)
     95 /* KPTDI<<PDSHIFT */
     96 #define	VM_MIN_KERNEL_ADDRESS	((vaddr_t)0xd0000000)
     97 /* APTDPTDI<<PDSHIFT */
     98 #define	VM_MAX_KERNEL_ADDRESS	((vaddr_t)0xdfc00000)
     99 
    100 /* XXX max. amount of KVM to be used by buffers. */
    101 #ifndef VM_MAX_KERNEL_BUF
    102 #define	VM_MAX_KERNEL_BUF						\
    103 	((VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) * 7 / 10)
    104 #endif
    105 
    106 /* virtual sizes (bytes) for various kernel submaps */
    107 #define	VM_PHYS_SIZE		(USRIOSIZE*NBPG)
    108 
    109 #define	VM_PHYSSEG_STRAT	VM_PSTRAT_BSEARCH
    110 #define	VM_PHYSSEG_NOADD		/* no more after vm_mem_init */
    111 
    112 #define	__HAVE_PMAP_PHYSSEG
    113 
    114 /*
    115  * pmap specific data stored in the vm_physmem[] array
    116  */
    117 struct pmap_physseg {
    118 	struct pv_head *pvhead;		/* pv_head array */
    119 	char *attrs;			/* attrs array */
    120 };
    121 
    122 #endif /* !_SH3_VMPARAM_H_ */
    123