1 /*
2  * Copyright (c) 2006 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  * $DragonFly: src/sys/platform/vkernel/include/vmparam.h,v 1.5 2007/01/14 00:01:07 dillon Exp $
35  */
36 
37 #ifndef _MACHINE_VMPARAM_H_
38 #define _MACHINE_VMPARAM_H_
39 
40 /*
41  * Indicate that read access also means execution access (XXX newer PCs
42  * have a separate bit).
43  */
44 #define VM_PROT_READ_IS_EXEC
45 
46 /*
47  * Virtual memory related constants, all in bytes
48  */
49 #define	MAXTSIZ		(32UL*1024*1024*1024)	/* max text size */
50 
51 #ifndef DFLDSIZ
52 #define	DFLDSIZ		(128UL*1024*1024)	/* initial data size limit */
53 #endif
54 #ifndef MAXDSIZ
55 #define	MAXDSIZ		(32UL*1024*1024*1024)	/* max data size */
56 #endif
57 #ifndef	DFLSSIZ
58 #define	DFLSSIZ		(8UL*1024*1024)		/* initial stack size limit */
59 #endif
60 #ifndef	MAXSSIZ
61 #define	MAXSSIZ		(512UL*1024*1024)	/* max stack size */
62 #endif
63 #ifndef	MAXTHRSSIZ
64 #define	MAXTHRSSIZ	(128UL*1024*1024*1024) /* thread stack area */
65 #endif
66 #ifndef SGROWSIZ
67 #define	SGROWSIZ	(128UL*1024)		/* amount to grow stack */
68 #endif
69 
70 /*
71  * After this period of time allow a process to become swappable.  This
72  * parameter is mostly obsolete now.
73  */
74 #define	MAXSLP 		20
75 
76 /*
77  * For virtual kernels running as userland processes the user and kernel
78  * address spaces exist in different VM spaces and can overlap.
79  */
80 #define KERNEL_KVA_START	(512ULL << 30)	/* From 512GB */
81 #define KERNEL_KVA_SIZE		(512UL * 1024 * 1024 * 1024)
82 #define KERNEL_STACK_SIZE	(512 * PAGE_SIZE)
83 
84 #define VKERNEL_USEABLE_PHYS_RAM_BASE (128ULL << 30) /* from 32GB */
85 
86 /*
87  * Do not allow the top 2MB of the user stack to be mapped to work around
88  * an AMD bug wherein the cpu can lockup or destabilize if the instruction
89  * prefetcher crosses over into non-canonical address space.  Only the top
90  * 4KB needs to be disallowed, but taking out the whole 2MB allows potential
91  * 2MB PTE optimizations to be retained.
92  */
93 #define VM_MIN_USER_ADDRESS	((vm_offset_t)0)
94 #define VM_MAX_USER_ADDRESS	UVADDR(NUPML4E - 1, NPDPEPG - 1, NPDEPG - 1, 0)
95 
96 #define DMAP_SIZE		(512UL * 1024 * 1024 * 1024)
97 
98 #define KERNBASE		0xC0000000	/* XXX totally wrong */
99 
100 #define USRSTACK		VM_MAX_USER_ADDRESS
101 
102 extern void *dmap_min_address;
103 #define	PHYS_TO_DMAP(x)		((uint64_t)(x) + (uint64_t)dmap_min_address)
104 #define	DMAP_TO_PHYS(x)		((uint64_t)(x) - (uint64_t)dmap_min_address)
105 
106 /*
107  * Initial memory map preload
108  */
109 #ifndef VM_INITIAL_PAGEIN
110 #define	VM_INITIAL_PAGEIN	16
111 #endif
112 
113 #endif /* _MACHINE_VMPARAM_H_ */
114