xref: /netbsd-src/sys/arch/vax/include/param.h (revision e4d7c2e329d54c97e0c0bd3016bbe74f550c3d5e)
1 /*      $NetBSD: param.h,v 1.41 2000/02/11 19:30:30 thorpej Exp $    */
2 /*-
3  * Copyright (c) 1990 The Regents of the University of California.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * William Jolitz.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *	This product includes software developed by the University of
20  *	California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  *	@(#)param.h	5.8 (Berkeley) 6/28/91
38  */
39 
40 #ifndef _VAX_PARAM_H_
41 #define _VAX_PARAM_H_
42 
43 /*
44  * Machine dependent constants for VAX.
45  */
46 
47 #define	_MACHINE	vax
48 #define	MACHINE		"vax"
49 #define	_MACHINE_ARCH	vax
50 #define	MACHINE_ARCH	"vax"
51 #define	MID_MACHINE	MID_VAX
52 
53 /*
54  * Round p (pointer or byte index) up to a correctly-aligned value
55  * for all data types (int, long, ...).   The result is u_int and
56  * must be cast to any desired pointer type.
57  *
58  * ALIGNED_POINTER is a boolean macro that checks whether an address
59  * is valid to fetch data elements of type t from on this architecture.
60  * This does not reflect the optimal alignment, just the possibility
61  * (within reasonable limits).
62  *
63  */
64 
65 #define ALIGNBYTES		(sizeof(int) - 1)
66 #define ALIGN(p)		(((u_int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
67 #define ALIGNED_POINTER(p,t)	((((u_long)(p)) & (sizeof(t)-1)) == 0)
68 
69 #define	PGSHIFT		12			/* LOG2(NBPG) */
70 #define	NBPG		(1 << PGSHIFT)		/* (1 << PGSHIFT) bytes/page */
71 #define	PGOFSET		(NBPG - 1)               /* byte offset into page */
72 
73 #define	VAX_PGSHIFT	9
74 #define	VAX_NBPG	(1 << VAX_PGSHIFT)
75 #define	VAX_PGOFSET	(VAX_NBPG - 1)
76 
77 #define	KERNBASE	0x80000000		/* start of kernel virtual */
78 
79 #define	DEV_BSHIFT	9		               /* log2(DEV_BSIZE) */
80 #define	DEV_BSIZE	(1 << DEV_BSHIFT)
81 
82 #define BLKDEV_IOSIZE	2048
83 #define	MAXPHYS		(63 * 1024)	/* max raw I/O transfer size */
84 #define	MAXBSIZE	0x4000		/* max FS block size - XXX */
85 
86 #define	UPAGES		2		/* pages of u-area */
87 #define USPACE		(NBPG*UPAGES)
88 #define	REDZONEADDR	(VAX_NBPG*3)	/* Must be > sizeof(struct user) */
89 
90 #ifndef MSGBUFSIZE
91 #define MSGBUFSIZE	NBPG		/* default message buffer size */
92 #endif
93 
94 /*
95  * Constants related to network buffer management.
96  * MCLBYTES must be no larger than NBPG (the software page size), and,
97  * on machines that exchange pages of input or output buffers with mbuf
98  * clusters (MAPPED_MBUFS), MCLBYTES must also be an integral multiple
99  * of the hardware page size.
100  */
101 
102 #ifndef	MSIZE
103 #define	MSIZE		128		/* size of an mbuf */
104 #endif	/* MSIZE */
105 
106 #ifndef	MCLSHIFT
107 #define	MCLSHIFT	11		/* convert bytes to m_buf clusters */
108 #endif	/* MCLSHIFT */
109 #define	MCLBYTES	(1 << MCLSHIFT)	/* size of an m_buf cluster */
110 #define	MCLOFSET	(MCLBYTES - 1)	/* offset within an m_buf cluster */
111 
112 #ifndef NMBCLUSTERS
113 
114 #if defined(_KERNEL) && !defined(_LKM)
115 #include "opt_gateway.h"
116 #endif /* _KERNEL && ! _LKM */
117 
118 #ifdef GATEWAY
119 #define	NMBCLUSTERS	512		/* map size, max cluster allocation */
120 #else
121 #define	NMBCLUSTERS	256		/* map size, max cluster allocation */
122 #endif	/* GATEWAY */
123 #endif	/* NMBCLUSTERS */
124 
125 /*
126  * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized
127  * logical pages.
128  */
129 #define	NKMEMPAGES_MIN_DEFAULT	((4 * 1024 * 1024) >> PAGE_SHIFT)
130 #define	NKMEMPAGES_MAX_DEFAULT	((4 * 1024 * 1024) >> PAGE_SHIFT)
131 
132 /*
133  * Some macros for units conversion
134  */
135 
136 /* pages ("clicks") to disk blocks */
137 #define	ctod(x)		((x) << (PGSHIFT - DEV_BSHIFT))
138 #define	dtoc(x)		((x) >> (PGSHIFT - DEV_BSHIFT))
139 
140 /* clicks to bytes */
141 #define	ctob(x)		((x) << PGSHIFT)
142 #define	btoc(x)		(((unsigned)(x) + PGOFSET) >> PGSHIFT)
143 #define	btop(x)		(((unsigned)(x)) >> PGSHIFT)
144 
145 /* bytes to disk blocks */
146 #define	btodb(x)	((x) >> DEV_BSHIFT)
147 #define	dbtob(x)	((x) << DEV_BSHIFT)
148 
149 /* MD conversion macros */
150 #define	vax_btoc(x)	(((unsigned)(x) + VAX_PGOFSET) >> VAX_PGSHIFT)
151 #define	vax_btop(x)	(((unsigned)(x)) >> VAX_PGSHIFT)
152 
153 /*
154  * Map a ``block device block'' to a file system block.
155  * This should be device dependent, and will be if we
156  * add an entry to cdevsw/bdevsw for that purpose.
157  * For now though just use DEV_BSIZE.
158  */
159 
160 #define	bdbtofsb(bn)	((bn) / (BLKDEV_IOSIZE/DEV_BSIZE))
161 
162 #ifdef _KERNEL
163 #ifndef lint
164 #define splx(reg)						\
165 ({								\
166 	register int val;					\
167 	__asm __volatile ("mfpr $0x12,%0;mtpr %1,$0x12"		\
168 				: "&=g" (val)			\
169 				: "g" (reg));			\
170 	val;							\
171 })
172 
173 #define	_splraise(reg)						\
174 ({								\
175 	register int val;					\
176 	__asm __volatile ("mfpr $0x12,%0"			\
177 				: "&=g" (val)			\
178 				: );				\
179 	if ((reg) > val) {					\
180 		__asm __volatile ("mtpr %0,$0x12"		\
181 				:				\
182 				: "g" (reg));			\
183 	}							\
184 	val;							\
185 })
186 #endif
187 
188 #define	spl0()		splx(0)		/* IPL0  */
189 #define spllowersoftclock() splx(8)	/* IPL08 */
190 #define splsoftclock()	_splraise(8)	/* IPL08 */
191 #define splsoftnet()	_splraise(0xc)	/* IPL0C */
192 #define	splddb()	_splraise(0xf)	/* IPL0F */
193 #define splbio()	_splraise(0x15)	/* IPL15 */
194 #define splnet()	_splraise(0x15)	/* IPL15 */
195 #define spltty()	_splraise(0x15)	/* IPL15 */
196 #define splimp()	_splraise(0x17)	/* IPL17 */
197 #define splclock()	_splraise(0x18)	/* IPL18 */
198 #define splhigh()	_splraise(0x1f)	/* IPL1F */
199 #define	splstatclock()	splclock()
200 
201 /* These are better to use when playing with VAX buses */
202 #define	spl4()		splx(0x14)
203 #define	spl5()		splx(0x15)
204 #define	spl6()		splx(0x16)
205 #define	spl7()		splx(0x17)
206 
207 #define vmapbuf(p,q)
208 #define vunmapbuf(p,q)
209 
210 /* Prototype needed for delay() */
211 #ifndef	_LOCORE
212 void	delay __P((int));
213 /* inline macros used inside kernel */
214 #include <machine/macros.h>
215 #endif
216 
217 #define	DELAY(x) delay(x)
218 #endif /* _KERNEL */
219 
220 #endif /* _VAX_PARAM_H_ */
221