vmparam.h revision 101653
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 * Copyright (c) 1994 John S. Dyson
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 *	from: @(#)vmparam.h     5.9 (Berkeley) 5/12/91
39 *	from: FreeBSD: src/sys/i386/include/vmparam.h,v 1.33 2000/03/30
40 * $FreeBSD: head/sys/sparc64/include/vmparam.h 101653 2002-08-10 22:14:16Z jake $
41 */
42
43
44#ifndef	_MACHINE_VMPARAM_H_
45#define	_MACHINE_VMPARAM_H_
46
47/*
48 * Virtual memory related constants, all in bytes
49 */
50#ifndef MAXTSIZ
51#define	MAXTSIZ		(1*1024*1024*1024)	/* max text size */
52#endif
53#ifndef DFLDSIZ
54#define	DFLDSIZ		(128*1024*1024)		/* initial data size limit */
55#endif
56#ifndef MAXDSIZ
57#define	MAXDSIZ		(1*1024*1024*1024)	/* max data size */
58#endif
59#ifndef	DFLSSIZ
60#define	DFLSSIZ		(128*1024*1024)		/* initial stack size limit */
61#endif
62#ifndef	MAXSSIZ
63#define	MAXSSIZ		(1*1024*1024*1024)	/* max stack size */
64#endif
65#ifndef	SGROWSIZ
66#define	SGROWSIZ	(128*1024)		/* amount to grow stack */
67#endif
68
69/*
70 * The time for a process to be blocked before being very swappable.
71 * This is a number of seconds which the system takes as being a non-trivial
72 * amount of real time.  You probably shouldn't change this;
73 * it is used in subtle ways (fractions and multiples of it are, that is, like
74 * half of a ``long time'', almost a long time, etc.)
75 * It is related to human patience and other factors which don't really
76 * change over time.
77 */
78#define	MAXSLP			20
79
80/*
81 * Highest user address.  Also address of initial user stack.  This is
82 * arbitrary, neither the structure or size of the user page table (tsb)
83 * nor the location or size of the kernel virtual address space have any
84 * bearing on what we use for user addresses.  We want something relatively
85 * high to give a large address space, but we also have to take the out of
86 * range va hole into account.  So we pick an address just before the start
87 * of the hole, which gives a user address space of just under 8TB.  Note
88 * that if this moves above the va hole, we will have to deal with sign
89 * extension of virtual addresses.
90 */
91#define	VM_MAXUSER_ADDRESS	(0x7fe00000000UL)
92
93#define	VM_MIN_ADDRESS		(0UL)
94#define	VM_MAX_ADDRESS		(VM_MAXUSER_ADDRESS)
95
96/*
97 * Initial user stack address for 64 bit processes.  Should be highest user
98 * virtual address.
99 */
100#define	USRSTACK		VM_MAXUSER_ADDRESS
101
102/*
103 * Virtual size (bytes) for various kernel submaps.
104 */
105#ifndef	VM_KMEM_SIZE
106#define	VM_KMEM_SIZE		(16*1024*1024)
107#endif
108
109/*
110 * How many physical pages per KVA page allocated.
111 * min(max(VM_KMEM_SIZE, Physical memory/VM_KMEM_SIZE_SCALE), VM_KMEM_SIZE_MAX)
112 * is the total KVA space allocated for kmem_map.
113 */
114#ifndef VM_KMEM_SIZE_SCALE
115#define	VM_KMEM_SIZE_SCALE	(3)
116#endif
117
118/*
119 * Lowest kernel virtual address, where the kernel is loaded.  This is also
120 * arbitrary.  We pick a resonably low address, which allows all of kernel
121 * text, data and bss to be below the 4 gigabyte mark, yet still high enough
122 * to cover the prom addresses with 1 tsb page.  This also happens to be the
123 * same as for x86 with default KVA_PAGES...
124 */
125#define	VM_MIN_KERNEL_ADDRESS	(0xc0000000)
126#define	VM_MIN_PROM_ADDRESS	(0xf0000000)
127#define	VM_MAX_PROM_ADDRESS	(0xffffe000)
128
129#define	KERNBASE		(VM_MIN_KERNEL_ADDRESS)
130#define	VM_MAX_KERNEL_ADDRESS	(vm_max_kernel_address)
131
132/*
133 * Initial pagein size of beginning of executable file.
134 */
135#ifndef	VM_INITIAL_PAGEIN
136#define	VM_INITIAL_PAGEIN	16
137#endif
138
139extern vm_offset_t vm_max_kernel_address;
140
141#endif /* !_MACHINE_VMPARAM_H_ */
142