param.h revision 191276
1178172Simp/*	$OpenBSD: param.h,v 1.11 1998/08/30 22:05:35 millert Exp $ */
2178172Simp
3178172Simp/*-
4178172Simp * Copyright (c) 1988 University of Utah.
5178172Simp * Copyright (c) 1992, 1993
6178172Simp *	The Regents of the University of California.  All rights reserved.
7178172Simp *
8178172Simp * This code is derived from software contributed to Berkeley by
9178172Simp * the Systems Programming Group of the University of Utah Computer
10178172Simp * Science Department and Ralph Campbell.
11178172Simp *
12178172Simp * Redistribution and use in source and binary forms, with or without
13178172Simp * modification, are permitted provided that the following conditions
14178172Simp * are met:
15178172Simp * 1. Redistributions of source code must retain the above copyright
16178172Simp *    notice, this list of conditions and the following disclaimer.
17178172Simp * 2. Redistributions in binary form must reproduce the above copyright
18178172Simp *    notice, this list of conditions and the following disclaimer in the
19178172Simp *    documentation and/or other materials provided with the distribution.
20178172Simp * 4. Neither the name of the University nor the names of its contributors
21178172Simp *    may be used to endorse or promote products derived from this software
22178172Simp *    without specific prior written permission.
23178172Simp *
24178172Simp * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25178172Simp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26178172Simp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27178172Simp * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28178172Simp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29178172Simp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30178172Simp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31178172Simp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32178172Simp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33178172Simp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34178172Simp * SUCH DAMAGE.
35178172Simp *
36178172Simp *	from: Utah Hdr: machparam.h 1.11 89/08/14
37178172Simp *	from: @(#)param.h	8.1 (Berkeley) 6/10/93
38178172Simp *	JNPR: param.h,v 1.6.2.1 2007/09/10 07:49:36 girish
39178172Simp * $FreeBSD: head/sys/mips/include/param.h 191276 2009-04-19 20:19:13Z rwatson $
40178172Simp */
41178172Simp
42178172Simp#ifndef _MACHINE_PARAM_H_
43178172Simp#define	_MACHINE_PARAM_H_
44178172Simp
45178172Simp#include <sys/cdefs.h>
46178172Simp#ifdef _KERNEL
47178172Simp#ifdef _LOCORE
48178172Simp#include <machine/psl.h>
49178172Simp#else
50178172Simp#include <machine/cpu.h>
51178172Simp#endif
52178172Simp#endif
53178172Simp
54178172Simp#define __PCI_REROUTE_INTERRUPT
55178172Simp
56178172Simp#ifndef MACHINE
57178172Simp#define	MACHINE		"mips"
58178172Simp#endif
59178172Simp#ifndef MACHINE_ARCH
60178172Simp#define	MACHINE_ARCH	"mips"
61178172Simp#endif
62178172Simp
63178172Simp/*
64178172Simp * OBJFORMAT_NAMES is a comma-separated list of the object formats
65178172Simp * that are supported on the architecture.
66178172Simp */
67178172Simp#define	OBJFORMAT_NAMES		"elf"
68178172Simp#define	OBJFORMAT_DEFAULT	"elf"
69178172Simp
70178172Simp#define	MID_MACHINE	0	/* None but has to be defined */
71178172Simp
72178172Simp#ifdef SMP
73178172Simp#define	MAXSMPCPU	16
74178172Simp#define	MAXCPU		MAXSMPCPU
75178172Simp#else
76178172Simp#define	MAXSMPCPU	1
77178172Simp#define	MAXCPU		1
78178172Simp#endif
79178172Simp
80178172Simp/*
81178172Simp * Round p (pointer or byte index) up to a correctly-aligned value for all
82178172Simp * data types (int, long, ...).	  The result is u_int and must be cast to
83178172Simp * any desired pointer type.
84178172Simp */
85178172Simp#define	_ALIGNBYTES	7
86178172Simp#define	_ALIGN(p)	(((u_int)(p) + _ALIGNBYTES) &~ _ALIGNBYTES)
87178172Simp#define	ALIGNED_POINTER(p, t)	((((u_int32_t)(p)) & (sizeof (t) - 1)) == 0)
88178172Simp
89178172Simp#define	ALIGNBYTES	_ALIGNBYTES
90178172Simp#define	ALIGN(p)	_ALIGN(p)
91178172Simp
92191276Srwatson#ifndef CACHE_LINE_SHIFT
93191276Srwatson#define	CACHE_LINE_SHIFT	6
94191276Srwatson#endif
95191276Srwatson#define	CACHE_LINE_SIZE		(1 << CACHE_LINE_SHIFT)
96191276Srwatson
97178172Simp#define	NBPG		4096		/* bytes/page */
98178172Simp#define	PGOFSET		(NBPG-1)	/* byte offset into page */
99178172Simp#define	PGSHIFT		12		/* LOG2(NBPG) */
100178172Simp
101178172Simp#define	PAGE_SHIFT	12		/* LOG2(PAGE_SIZE) */
102178172Simp#define	PAGE_SIZE	(1<<PAGE_SHIFT) /* bytes/page */
103178172Simp#define	PAGE_MASK	(PAGE_SIZE-1)
104178172Simp#define	NPTEPG		(PAGE_SIZE/(sizeof (pt_entry_t)))
105178172Simp
106178172Simp#define	NBSEG		0x400000	/* bytes/segment */
107178172Simp#define	SEGOFSET	(NBSEG-1)	/* byte offset into segment */
108178172Simp#define	SEGSHIFT	22		/* LOG2(NBSEG) */
109178172Simp
110178172Simp/* XXXimp: This has moved to vmparam.h */
111178172Simp/* Also, this differs from the mips2 definition, but likely is better */
112178172Simp/* since this means the kernel won't chew up TLBs when it is executing */
113178172Simp/* code */
114178172Simp#define	KERNBASE	0x80000000	/* start of kernel virtual */
115178172Simp#define	BTOPKERNBASE	((u_long)KERNBASE >> PGSHIFT)
116178172Simp
117183441Simp#define	BLKDEV_IOSIZE	2048		/* xxx: Why is this 1/2 page? */
118183441Simp#define	MAXDUMPPGS	1		/* xxx: why is this only one? */
119178172Simp
120178172Simp/*
121178172Simp * NOTE: In FreeBSD, Uarea's don't have a fixed address.
122178172Simp *	 Therefore, any code imported from OpenBSD which depends on
123178172Simp *	 UADDR, UVPN and KERNELSTACK requires porting.
124183441Simp * XXX: 3 stack pages?  Not 4 which would be more efficient from a tlb
125183441Simp * XXX: point of view.
126178172Simp */
127178172Simp#define	KSTACK_PAGES		3	/* kernel stack*/
128178172Simp#define	KSTACK_GUARD_PAGES	0	/* pages of kstack guard; 0 disables */
129178172Simp
130178172Simp#define	UPAGES			2
131178172Simp
132178172Simp/* pages ("clicks") (4096 bytes) to disk blocks */
133178172Simp#define	ctod(x)		((x) << (PGSHIFT - DEV_BSHIFT))
134178172Simp#define	dtoc(x)		((x) >> (PGSHIFT - DEV_BSHIFT))
135178172Simp
136178172Simp/*
137178172Simp * Map a ``block device block'' to a file system block.
138178172Simp * This should be device dependent, and should use the bsize
139178172Simp * field from the disk label.
140178172Simp * For now though just use DEV_BSIZE.
141178172Simp */
142178172Simp#define	bdbtofsb(bn)	((bn) / (BLKDEV_IOSIZE/DEV_BSIZE))
143178172Simp
144178172Simp/*
145178172Simp * Conversion macros
146178172Simp */
147178172Simp#define	mips_round_page(x)	((((unsigned)(x)) + NBPG - 1) & ~(NBPG-1))
148178172Simp#define	mips_trunc_page(x)	((unsigned)(x) & ~(NBPG-1))
149178172Simp#define	mips_btop(x)		((unsigned)(x) >> PGSHIFT)
150178172Simp#define	mips_ptob(x)		((unsigned)(x) << PGSHIFT)
151178172Simp#define	round_page		mips_round_page
152178172Simp#define	trunc_page		mips_trunc_page
153178172Simp#define	atop(x)			((unsigned long)(x) >> PAGE_SHIFT)
154178172Simp#define	ptoa(x)			((unsigned long)(x) << PAGE_SHIFT)
155178172Simp
156178172Simp#define	pgtok(x)		((x) * (PAGE_SIZE / 1024))
157178172Simp
158178172Simp#ifndef _KERNEL
159178172Simp#define	DELAY(n)	{ register int N = (n); while (--N > 0); }
160178172Simp#endif /* !_KERNEL */
161178172Simp
162178172Simp#endif /* !_MACHINE_PARAM_H_ */
163