mips_param.h revision 1.56 1 1.56 riastrad /* $NetBSD: mips_param.h,v 1.56 2025/05/03 02:00:57 riastradh Exp $ */
2 1.16 simonb
3 1.34 christos /*-
4 1.34 christos * Copyright (c) 2013 The NetBSD Foundation, Inc.
5 1.34 christos * All rights reserved.
6 1.34 christos *
7 1.34 christos * Redistribution and use in source and binary forms, with or without
8 1.34 christos * modification, are permitted provided that the following conditions
9 1.34 christos * are met:
10 1.34 christos * 1. Redistributions of source code must retain the above copyright
11 1.34 christos * notice, this list of conditions and the following disclaimer.
12 1.34 christos * 2. Redistributions in binary form must reproduce the above copyright
13 1.34 christos * notice, this list of conditions and the following disclaimer in the
14 1.34 christos * documentation and/or other materials provided with the distribution.
15 1.34 christos *
16 1.34 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.34 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.34 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.34 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.34 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.34 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.34 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.34 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.34 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.34 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.34 christos * POSSIBILITY OF SUCH DAMAGE.
27 1.34 christos */
28 1.51 simonb
29 1.56 riastrad #ifndef _MIPS_MIPS_PARAM_H_
30 1.56 riastrad #define _MIPS_MIPS_PARAM_H_
31 1.56 riastrad
32 1.51 simonb #ifdef _KERNEL_OPT
33 1.55 riastrad #include "opt_cputype.h"
34 1.51 simonb #include "opt_param.h"
35 1.51 simonb #endif
36 1.51 simonb
37 1.5 jonathan /*
38 1.26 matt * No reason this can't be common
39 1.26 matt */
40 1.26 matt #if defined(__MIPSEB__)
41 1.48 christos # define _MACHINE_SUFFIX eb
42 1.48 christos # define MACHINE_SUFFIX "eb"
43 1.26 matt #elif defined(__MIPSEL__)
44 1.48 christos # define _MACHINE_SUFFIX el
45 1.48 christos # define MACHINE_SUFFIX "el"
46 1.48 christos #else
47 1.48 christos # error neither __MIPSEL__ nor __MIPSEB__ are defined.
48 1.26 matt #endif
49 1.48 christos
50 1.50 mrg #define ___MACHINE32_OARCH mips##_MACHINE_SUFFIX
51 1.50 mrg #define __MACHINE32_OARCH "mips" MACHINE_SUFFIX
52 1.50 mrg #define ___MACHINE32_NARCH mips64##_MACHINE_SUFFIX
53 1.50 mrg #define __MACHINE32_NARCH "mips64" MACHINE_SUFFIX
54 1.50 mrg #define ___MACHINE64_NARCH mipsn64##_MACHINE_SUFFIX
55 1.50 mrg #define __MACHINE64_NARCH "mipsn64" MACHINE_SUFFIX
56 1.50 mrg
57 1.48 christos #if defined(__mips_n32) || defined(__mips_n64)
58 1.48 christos # if defined(__mips_n32)
59 1.50 mrg # define _MACHINE_ARCH ___MACHINE32_NARCH
60 1.50 mrg # define MACHINE_ARCH __MACHINE32_NARCH
61 1.48 christos # else /* __mips_n64 */
62 1.50 mrg # define _MACHINE_ARCH ___MACHINE64_NARCH
63 1.50 mrg # define MACHINE_ARCH __MACHINE64_NARCH
64 1.50 mrg # define _MACHINE32_NARCH ___MACHINE32_NARCH
65 1.50 mrg # define MACHINE32_NARCH __MACHINE32_NARCH
66 1.48 christos # endif
67 1.50 mrg # define _MACHINE32_OARCH ___MACHINE32_OARCH
68 1.50 mrg # define MACHINE32_OARCH __MACHINE32_OARCH
69 1.48 christos #else /* o32 */
70 1.50 mrg # define _MACHINE_ARCH ___MACHINE32_OARCH
71 1.50 mrg # define MACHINE_ARCH __MACHINE32_OARCH
72 1.26 matt #endif
73 1.26 matt
74 1.26 matt /*
75 1.29 matt * Userland code should be using uname/sysctl to get MACHINE so simply
76 1.29 matt * export a generic MACHINE of "mips"
77 1.29 matt */
78 1.29 matt #ifndef _KERNEL
79 1.29 matt #undef MACHINE
80 1.45 simonb #define MACHINE "mips"
81 1.29 matt #endif
82 1.29 matt
83 1.53 riastrad #if defined(__mips_n64) || defined(__mips_n32)
84 1.53 riastrad #define STACK_ALIGNBYTES (16 - 1)
85 1.53 riastrad #else
86 1.53 riastrad #define STACK_ALIGNBYTES (8 - 1)
87 1.53 riastrad #endif
88 1.53 riastrad
89 1.54 riastrad #define STACK_ALIGNBYTES_O32 (8 - 1)
90 1.54 riastrad
91 1.45 simonb #define ALIGNBYTES32 (sizeof(double) - 1)
92 1.45 simonb #define ALIGN32(p) (((uintptr_t)(p) + ALIGNBYTES32) &~ALIGNBYTES32)
93 1.33 matt
94 1.29 matt /*
95 1.5 jonathan * On mips, UPAGES is fixed by sys/arch/mips/mips/locore code
96 1.5 jonathan * to be the number of per-process-wired kernel-stack pages/PTES.
97 1.5 jonathan */
98 1.5 jonathan
99 1.6 jonathan #define SSIZE 1 /* initial stack size/NBPG */
100 1.6 jonathan #define SINCR 1 /* increment of stack/NBPG */
101 1.6 jonathan
102 1.38 matt #if (ENABLE_MIPS_16KB_PAGE + ENABLE_MIPS_8KB_PAGE + ENABLE_MIPS_4KB_PAGE) > 1
103 1.38 matt #error only one of ENABLE_MIPS_{4,8,16}KB_PAGE can be defined.
104 1.24 matt #endif
105 1.5 jonathan
106 1.7 leo #ifndef MSGBUFSIZE
107 1.45 simonb #define MSGBUFSIZE NBPG /* default message buffer size */
108 1.7 leo #endif
109 1.1 jonathan
110 1.43 skrll /*
111 1.43 skrll * Most MIPS have a cache line size of 32 bytes, but Cavium chips
112 1.44 simonb * have a line size 128 bytes and we need to cover the larger size.
113 1.43 skrll */
114 1.45 simonb #define COHERENCY_UNIT 128
115 1.45 simonb #define CACHE_LINE_SIZE 128
116 1.28 matt
117 1.24 matt #ifdef ENABLE_MIPS_16KB_PAGE
118 1.24 matt #define PGSHIFT 14 /* LOG2(NBPG) */
119 1.38 matt #elif defined(ENABLE_MIPS_8KB_PAGE) \
120 1.38 matt || (!defined(ENABLE_MIPS_4KB_PAGE) && __mips >= 3)
121 1.38 matt #define PGSHIFT 13 /* LOG2(NBPG) */
122 1.24 matt #else
123 1.24 matt #define PGSHIFT 12 /* LOG2(NBPG) */
124 1.24 matt #endif
125 1.38 matt #define NBPG (1 << PGSHIFT) /* bytes/page */
126 1.40 skrll #define PGOFSET (NBPG - 1) /* byte offset into page */
127 1.38 matt #define PTPSHIFT 2
128 1.40 skrll #define PTPLENGTH (PGSHIFT - PTPSHIFT)
129 1.38 matt #define NPTEPG (1 << PTPLENGTH)
130 1.1 jonathan
131 1.40 skrll #define SEGSHIFT (PGSHIFT + PTPLENGTH) /* LOG2(NBSEG) */
132 1.40 skrll #define NBSEG (1 << SEGSHIFT) /* bytes/segment */
133 1.49 skrll #define SEGOFSET (NBSEG - 1) /* byte offset into segment */
134 1.28 matt
135 1.28 matt #ifdef _LP64
136 1.40 skrll #define SEGLENGTH (PGSHIFT - 3)
137 1.40 skrll #define XSEGSHIFT (SEGSHIFT + SEGLENGTH) /* LOG2(NBXSEG) */
138 1.39 skrll #define NBXSEG (1UL << XSEGSHIFT) /* bytes/xsegment */
139 1.40 skrll #define XSEGOFSET (NBXSEG - 1) /* byte offset into xsegment */
140 1.40 skrll #define XSEGLENGTH (PGSHIFT - 3)
141 1.38 matt #define NXSEGPG (1 << XSEGLENGTH)
142 1.38 matt #else
143 1.40 skrll #define SEGLENGTH (31 - SEGSHIFT)
144 1.28 matt #endif
145 1.38 matt #define NSEGPG (1 << SEGLENGTH)
146 1.38 matt
147 1.46 simonb #ifdef _LP64
148 1.46 simonb #define __MIN_USPACE 16384 /* LP64 needs a 16kB stack */
149 1.38 matt #else
150 1.46 simonb /*
151 1.46 simonb * Note for the non-LP64 case, cpu_switch_resume has the assumption
152 1.46 simonb * that UPAGES == 2. For MIPS-I we wire USPACE in TLB #0 and #1.
153 1.52 andvar * For MIPS3+ we wire USPACE in the TLB #0 pair.
154 1.46 simonb */
155 1.46 simonb #define __MIN_USPACE 8192 /* otherwise use an 8kB stack */
156 1.38 matt #endif
157 1.46 simonb #define USPACE MAX(__MIN_USPACE, PAGE_SIZE)
158 1.46 simonb #define UPAGES (USPACE / PAGE_SIZE) /* number of pages for u-area */
159 1.38 matt #define USPACE_ALIGN USPACE /* make sure it starts on a even VA */
160 1.47 simonb #define UPAGES_MAX 8 /* a (constant) max for userland use */
161 1.1 jonathan
162 1.1 jonathan /*
163 1.17 thorpej * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized
164 1.17 thorpej * logical pages.
165 1.13 simonb */
166 1.17 thorpej #define NKMEMPAGES_MIN_DEFAULT ((8 * 1024 * 1024) >> PAGE_SHIFT)
167 1.17 thorpej #define NKMEMPAGES_MAX_DEFAULT ((128 * 1024 * 1024) >> PAGE_SHIFT)
168 1.1 jonathan
169 1.1 jonathan /*
170 1.1 jonathan * Mach derived conversion macros
171 1.1 jonathan */
172 1.45 simonb #define mips_round_page(x) ((((uintptr_t)(x)) + NBPG - 1) & ~(NBPG-1))
173 1.45 simonb #define mips_trunc_page(x) ((uintptr_t)(x) & ~(NBPG-1))
174 1.45 simonb #define mips_btop(x) ((paddr_t)(x) >> PGSHIFT)
175 1.45 simonb #define mips_ptob(x) ((paddr_t)(x) << PGSHIFT)
176 1.25 matt
177 1.25 matt #ifdef __MIPSEL__
178 1.26 matt #define MID_MACHINE MID_PMAX /* MID_PMAX (little-endian) */
179 1.25 matt #endif
180 1.25 matt #ifdef __MIPSEB__
181 1.26 matt #define MID_MACHINE MID_MIPS /* MID_MIPS (big-endian) */
182 1.25 matt #endif
183 1.25 matt
184 1.26 matt /*
185 1.26 matt * Constants related to network buffer management.
186 1.26 matt * MCLBYTES must be no larger than NBPG (the software page size), and,
187 1.26 matt * on machines that exchange pages of input or output buffers with mbuf
188 1.26 matt * clusters (MAPPED_MBUFS), MCLBYTES must also be an integral multiple
189 1.26 matt * of the hardware page size.
190 1.26 matt */
191 1.26 matt #ifndef MSIZE
192 1.26 matt #ifdef _LP64
193 1.26 matt #define MSIZE 512 /* size of an mbuf */
194 1.26 matt #else
195 1.26 matt #define MSIZE 256 /* size of an mbuf */
196 1.26 matt #endif
197 1.26 matt
198 1.26 matt #ifndef MCLSHIFT
199 1.26 matt # define MCLSHIFT 11 /* convert bytes to m_buf clusters */
200 1.26 matt #endif /* MCLSHIFT */
201 1.26 matt
202 1.26 matt #define MCLBYTES (1 << MCLSHIFT) /* size of a m_buf cluster */
203 1.26 matt
204 1.26 matt #endif
205 1.56 riastrad
206 1.56 riastrad #endif /* _MIPS_MIPS_PARAM_H_ */
207