mips_param.h revision 1.23.78.1 1 /* $NetBSD: mips_param.h,v 1.23.78.1 2009/08/20 07:47:52 matt Exp $ */
2
3 #ifdef _KERNEL
4 #include <machine/cpu.h>
5 #endif
6
7 /*
8 * On mips, UPAGES is fixed by sys/arch/mips/mips/locore code
9 * to be the number of per-process-wired kernel-stack pages/PTES.
10 */
11
12 #define SSIZE 1 /* initial stack size/NBPG */
13 #define SINCR 1 /* increment of stack/NBPG */
14
15 #define UPAGES 2 /* pages of u-area */
16 #define USPACE (UPAGES*NBPG) /* size of u-area in bytes */
17
18 #ifndef MSGBUFSIZE
19 #define MSGBUFSIZE NBPG /* default message buffer size */
20 #endif
21
22 /*
23 * Round p (pointer or byte index) up to a correctly-aligned value for all
24 * data types (int, long, ...). The result is u_int and must be cast to
25 * any desired pointer type.
26 *
27 * ALIGNED_POINTER is a boolean macro that checks whether an address
28 * is valid to fetch data elements of type t from on this architecture.
29 * This does not reflect the optimal alignment, just the possibility
30 * (within reasonable limits).
31 *
32 */
33 #define ALIGNBYTES 7
34 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES)
35 #define ALIGNED_POINTER(p,t) ((((uintptr_t)(p)) & (sizeof(t)-1)) == 0)
36
37 #define NBPG 4096 /* bytes/page */
38 #define PGOFSET (NBPG-1) /* byte offset into page */
39 #define PGSHIFT 12 /* LOG2(NBPG) */
40 #define NPTEPG (NBPG/4)
41
42 #define NBSEG 0x400000 /* bytes/segment */
43 #define SEGOFSET (NBSEG-1) /* byte offset into segment */
44 #define SEGSHIFT 22 /* LOG2(NBSEG) */
45
46 /*
47 * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized
48 * logical pages.
49 */
50 #define NKMEMPAGES_MIN_DEFAULT ((8 * 1024 * 1024) >> PAGE_SHIFT)
51 #define NKMEMPAGES_MAX_DEFAULT ((128 * 1024 * 1024) >> PAGE_SHIFT)
52
53 /*
54 * Mach derived conversion macros
55 */
56 #define mips_round_page(x) ((((uintptr_t)(x)) + NBPG - 1) & ~(NBPG-1))
57 #define mips_trunc_page(x) ((uintptr_t)(x) & ~(NBPG-1))
58 #define mips_btop(x) ((paddr_t)(x) >> PGSHIFT)
59 #define mips_ptob(x) ((paddr_t)(x) << PGSHIFT)
60
61 /*
62 * Constants related to network buffer management.
63 * MCLBYTES must be no larger than NBPG (the software page size), and,
64 * on machines that exchange pages of input or output buffers with mbuf
65 * clusters (MAPPED_MBUFS), MCLBYTES must also be an integral multiple
66 * of the hardware page size.
67 */
68 #ifndef MSIZE
69 #ifdef _LP64
70 #define MSIZE 512 /* size of an mbuf */
71 #else
72 #define MSIZE 256 /* size of an mbuf */
73 #endif
74
75 #ifndef MCLSHIFT
76 # define MCLSHIFT 11 /* convert bytes to m_buf clusters */
77 #endif /* MCLSHIFT */
78
79 #define MCLBYTES (1 << MCLSHIFT) /* size of a m_buf cluster */
80
81 #ifndef NMBCLUSTERS
82 #if defined(_KERNEL_OPT)
83 #include "opt_gateway.h"
84 #endif
85
86 #ifdef GATEWAY
87 #define NMBCLUSTERS 2048 /* map size, max cluster allocation */
88 #else
89 #define NMBCLUSTERS 1024 /* map size, max cluster allocation */
90 #endif
91 #endif
92 #endif
93