Add platform vkernel64.
[dragonfly.git] / sys / platform / vkernel64 / include / vmparam.h
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         (128UL*1024*1024)       /* max text size */
50 #ifndef DFLDSIZ
51 #define DFLDSIZ         (128UL*1024*1024)       /* initial data size limit */
52 #endif
53 #ifndef MAXDSIZ
54 #define MAXDSIZ         (32768UL*1024*1024)     /* max data size */
55 #endif
56 #ifndef DFLSSIZ
57 #define DFLSSIZ         (8UL*1024*1024)         /* initial stack size limit */
58 #endif
59 #ifndef MAXSSIZ
60 #define MAXSSIZ         (512UL*1024*1024)       /* max stack size */
61 #endif
62 #ifndef SGROWSIZ
63 #define SGROWSIZ        (128UL*1024)            /* amount to grow stack */
64 #endif
65
66 /*
67  * After this period of time allow a process to become swappable.  This
68  * parameter is mostly obsolete now.
69  */
70 #define MAXSLP          20
71
72 /*
73  * For virtual kernels running as userland processes the user and kernel
74  * address spaces exist in different VM spaces and can overlap.
75  */
76 #define KERNEL_KVA_SIZE         (2UL * 1024 * 1024 * 1024)
77
78 #define VM_MIN_USER_ADDRESS     ((vm_offset_t)0)
79 #define VM_MAX_USER_ADDRESS     UVADDR(NUPML4E, 0, 0, 0)
80
81 #define DMAP_SIZE               (512UL * 1024 * 1024 * 1024)
82
83 #define KERNBASE                0xC0000000      /* XXX totally wrong */
84
85 #define USRSTACK                VM_MAX_USER_ADDRESS
86
87 extern void *dmap_min_address;
88 #define PHYS_TO_DMAP(x)         ((uint64_t)(x) + (uint64_t)dmap_min_address)
89 #define DMAP_TO_PHYS(x)         ((uint64_t)(x) - (uint64_t)dmap_min_address)
90
91 /*
92  * Initial memory map preload
93  */
94 #ifndef VM_INITIAL_PAGEIN
95 #define VM_INITIAL_PAGEIN       16
96 #endif
97
98 #endif /* _MACHINE_VMPARAM_H_ */