xref: /freebsd-13-stable/sys/mips/include/param.h (revision 4b40a16f0d188422227478889b38cc341d50f88f)
1 /*	$OpenBSD: param.h,v 1.11 1998/08/30 22:05:35 millert Exp $ */
2 
3 /*-
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  * Copyright (c) 1988 University of Utah.
7  * Copyright (c) 1992, 1993
8  *	The Regents of the University of California.  All rights reserved.
9  *
10  * This code is derived from software contributed to Berkeley by
11  * the Systems Programming Group of the University of Utah Computer
12  * Science Department and Ralph Campbell.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions
16  * are met:
17  * 1. Redistributions of source code must retain the above copyright
18  *    notice, this list of conditions and the following disclaimer.
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  * 3. 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: Utah Hdr: machparam.h 1.11 89/08/14
39  *	from: @(#)param.h	8.1 (Berkeley) 6/10/93
40  *	JNPR: param.h,v 1.6.2.1 2007/09/10 07:49:36 girish
41  */
42 
43 #ifndef _MIPS_INCLUDE_PARAM_H_
44 #define	_MIPS_INCLUDE_PARAM_H_
45 
46 #include <machine/_align.h>
47 
48 #include <sys/cdefs.h>
49 #ifdef _KERNEL
50 #ifndef _LOCORE
51 #include <machine/cpu.h>
52 #endif
53 #endif
54 
55 #define __PCI_REROUTE_INTERRUPT
56 
57 #if _BYTE_ORDER == _BIG_ENDIAN
58 # define _EL_SUFFIX ""
59 #else
60 # define _EL_SUFFIX "el"
61 #endif
62 
63 #ifdef __mips_n64
64 # define _N64_SUFFIX "64"
65 #elif defined(__mips_n32)
66 # define _N64_SUFFIX "n32"
67 #else
68 # define _N64_SUFFIX ""
69 #endif
70 
71 #ifdef __mips_hard_float
72 # define _HF_SUFFIX "hf"
73 #else
74 # define _HF_SUFFIX ""
75 #endif
76 
77 #ifndef MACHINE
78 # define MACHINE	"mips"
79 #endif
80 #ifndef MACHINE_ARCH
81 # define MACHINE_ARCH 	"mips" _N64_SUFFIX _EL_SUFFIX _HF_SUFFIX
82 #endif
83 #ifdef __mips_n64
84 # ifndef MACHINE_ARCH32
85 #  define MACHINE_ARCH32 "mips" _EL_SUFFIX _HF_SUFFIX
86 # endif
87 #endif
88 
89 /*
90  * OBJFORMAT_NAMES is a comma-separated list of the object formats
91  * that are supported on the architecture.
92  */
93 #define	OBJFORMAT_NAMES		"elf"
94 #define	OBJFORMAT_DEFAULT	"elf"
95 
96 #define	MID_MACHINE	0	/* None but has to be defined */
97 
98 #ifdef SMP
99 #define	MAXSMPCPU	32
100 #ifndef MAXCPU
101 #define	MAXCPU		MAXSMPCPU
102 #endif
103 #else
104 #define	MAXSMPCPU	1
105 #define	MAXCPU		1
106 #endif
107 
108 #ifndef MAXMEMDOM
109 #define	MAXMEMDOM	1
110 #endif
111 
112 /*
113  * Round p (pointer or byte index) up to a correctly-aligned value for all
114  * data types (int, long, ...).	  The result is u_int and must be cast to
115  * any desired pointer type.
116  */
117 
118 #define	ALIGNBYTES	_ALIGNBYTES
119 #define	ALIGN(p)	_ALIGN(p)
120 /*
121  * ALIGNED_POINTER is a boolean macro that checks whether an address
122  * is valid to fetch data elements of type t from on this architecture.
123  * This does not reflect the optimal alignment, just the possibility
124  * (within reasonable limits).
125  */
126 #define	ALIGNED_POINTER(p, t)	((((unsigned long)(p)) & (sizeof (t) - 1)) == 0)
127 
128 /*
129  * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
130  * architecture.  It should be used with appropriate caution.
131  */
132 #define	CACHE_LINE_SHIFT	6
133 #define	CACHE_LINE_SIZE		(1 << CACHE_LINE_SHIFT)
134 
135 #define	PAGE_SHIFT		12		/* LOG2(PAGE_SIZE) */
136 #define	PAGE_SIZE		(1<<PAGE_SHIFT) /* bytes/page */
137 #define	PAGE_MASK		(PAGE_SIZE-1)
138 
139 #define	NPTEPG			(PAGE_SIZE/(sizeof (pt_entry_t)))
140 #define	NPDEPG			(PAGE_SIZE/(sizeof (pd_entry_t)))
141 
142 #if defined(__mips_n32) || defined(__mips_n64) /*  PHYSADDR_64_BIT */
143 #define	NPTEPGSHIFT		9               /* LOG2(NPTEPG) */
144 #else
145 #define	NPTEPGSHIFT		10               /* LOG2(NPTEPG) */
146 #endif
147 
148 #ifdef __mips_n64
149 #define	NPDEPGSHIFT		9               /* LOG2(NPTEPG) */
150 #define	SEGSHIFT		(PAGE_SHIFT + NPTEPGSHIFT + NPDEPGSHIFT)
151 #define	NBSEG			(1ul << SEGSHIFT)
152 #define	PDRSHIFT		(PAGE_SHIFT + NPTEPGSHIFT)
153 #define	PDRSIZE			(1ul << PDRSHIFT)
154 #define	PDRMASK			((1 << PDRSHIFT) - 1)
155 #else
156 #define	NPDEPGSHIFT		10               /* LOG2(NPTEPG) */
157 #define	SEGSHIFT		(PAGE_SHIFT + NPTEPGSHIFT)
158 #define	NBSEG			(1 << SEGSHIFT)	/* bytes/segment */
159 #define	PDRSHIFT		SEGSHIFT	/* alias for SEG in 32 bit */
160 #define	PDRSIZE			(1ul << PDRSHIFT)
161 #define	PDRMASK			((1 << PDRSHIFT) - 1)
162 #endif
163 #define	NBPDR			(1 << PDRSHIFT)	/* bytes/pagedir */
164 #define	SEGMASK			(NBSEG - 1)	/* byte offset into segment */
165 
166 #define	MAXPAGESIZES		1		/* max supported pagesizes */
167 
168 #define	MAXDUMPPGS		1		/* xxx: why is this only one? */
169 
170 /*
171  * The kernel stack needs to be aligned on a (PAGE_SIZE * 2) boundary.
172  */
173 #define	KSTACK_PAGES		2	/* kernel stack */
174 #define	KSTACK_GUARD_PAGES	2	/* pages of kstack guard; 0 disables */
175 
176 /*
177  * Mach derived conversion macros
178  */
179 #define	round_page(x)		(((x) + PAGE_MASK) & ~PAGE_MASK)
180 #define	trunc_page(x)		((x) & ~PAGE_MASK)
181 
182 #define	atop(x)			((x) >> PAGE_SHIFT)
183 #define	ptoa(x)			((x) << PAGE_SHIFT)
184 
185 #define	pgtok(x)		((x) * (PAGE_SIZE / 1024))
186 
187 #endif /* !_MIPS_INCLUDE_PARAM_H_ */
188