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$
40178172Simp */
41178172Simp
42196994Sphk#ifndef _MIPS_INCLUDE_PARAM_H_
43196994Sphk#define	_MIPS_INCLUDE_PARAM_H_
44178172Simp
45196994Sphk#include <machine/_align.h>
46196994Sphk
47178172Simp#include <sys/cdefs.h>
48178172Simp#ifdef _KERNEL
49206717Sjmallett#ifndef _LOCORE
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
60215971Sjmallett#if _BYTE_ORDER == _BIG_ENDIAN
61215971Sjmallett#ifdef __mips_n64
62215971Sjmallett#define	MACHINE_ARCH	"mips64eb"
63215971Sjmallett#elif defined(__mips_n32)
64215971Sjmallett#define	MACHINE_ARCH	"mipsn32eb"
65215971Sjmallett#else
66215971Sjmallett#define	MACHINE_ARCH	"mipseb"
67178172Simp#endif
68215971Sjmallett#else
69215971Sjmallett#ifdef __mips_n64
70215971Sjmallett#define	MACHINE_ARCH	"mips64el"
71215971Sjmallett#elif defined(__mips_n32)
72215971Sjmallett#define	MACHINE_ARCH	"mipsn32el"
73215971Sjmallett#else
74215971Sjmallett#define	MACHINE_ARCH	"mipsel"
75215971Sjmallett#endif
76215971Sjmallett#endif
77215971Sjmallett#endif
78178172Simp
79178172Simp/*
80178172Simp * OBJFORMAT_NAMES is a comma-separated list of the object formats
81178172Simp * that are supported on the architecture.
82178172Simp */
83178172Simp#define	OBJFORMAT_NAMES		"elf"
84178172Simp#define	OBJFORMAT_DEFAULT	"elf"
85178172Simp
86178172Simp#define	MID_MACHINE	0	/* None but has to be defined */
87178172Simp
88178172Simp#ifdef SMP
89208165Srrs#define	MAXSMPCPU	32
90224207Sattilio#ifndef MAXCPU
91178172Simp#define	MAXCPU		MAXSMPCPU
92224207Sattilio#endif
93178172Simp#else
94178172Simp#define	MAXSMPCPU	1
95178172Simp#define	MAXCPU		1
96178172Simp#endif
97178172Simp
98178172Simp/*
99178172Simp * Round p (pointer or byte index) up to a correctly-aligned value for all
100178172Simp * data types (int, long, ...).	  The result is u_int and must be cast to
101178172Simp * any desired pointer type.
102178172Simp */
103178172Simp
104178172Simp#define	ALIGNBYTES	_ALIGNBYTES
105178172Simp#define	ALIGN(p)	_ALIGN(p)
106195376Ssam/*
107195376Ssam * ALIGNED_POINTER is a boolean macro that checks whether an address
108195376Ssam * is valid to fetch data elements of type t from on this architecture.
109195376Ssam * This does not reflect the optimal alignment, just the possibility
110195376Ssam * (within reasonable limits).
111195376Ssam */
112202031Simp#define	ALIGNED_POINTER(p, t)	((((unsigned long)(p)) & (sizeof (t) - 1)) == 0)
113178172Simp
114191278Srwatson/*
115191278Srwatson * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
116191278Srwatson * architecture.  It should be used with appropriate caution.
117191278Srwatson */
118191276Srwatson#define	CACHE_LINE_SHIFT	6
119191276Srwatson#define	CACHE_LINE_SIZE		(1 << CACHE_LINE_SHIFT)
120191276Srwatson
121217354Sjchandra#define	PAGE_SHIFT		12		/* LOG2(PAGE_SIZE) */
122217354Sjchandra#define	PAGE_SIZE		(1<<PAGE_SHIFT) /* bytes/page */
123217354Sjchandra#define	PAGE_MASK		(PAGE_SIZE-1)
124210627Sjchandra
125217354Sjchandra#define	NPTEPG			(PAGE_SIZE/(sizeof (pt_entry_t)))
126217354Sjchandra#define	NPDEPG			(PAGE_SIZE/(sizeof (pd_entry_t)))
127178172Simp
128217354Sjchandra#if defined(__mips_n32) || defined(__mips_n64) /*  PHYSADDR_64_BIT */
129217354Sjchandra#define	NPTEPGSHIFT		9               /* LOG2(NPTEPG) */
130210846Sjchandra#else
131217354Sjchandra#define	NPTEPGSHIFT		10               /* LOG2(NPTEPG) */
132210846Sjchandra#endif
133210627Sjchandra
134217354Sjchandra#ifdef __mips_n64
135217354Sjchandra#define	NPDEPGSHIFT		9               /* LOG2(NPTEPG) */
136217354Sjchandra#define	SEGSHIFT		(PAGE_SHIFT + NPTEPGSHIFT + NPDEPGSHIFT)
137217354Sjchandra#define	NBSEG			(1ul << SEGSHIFT)
138217354Sjchandra#define	PDRSHIFT		(PAGE_SHIFT + NPTEPGSHIFT)
139217354Sjchandra#define	PDRMASK			((1 << PDRSHIFT) - 1)
140217354Sjchandra#else
141217354Sjchandra#define	NPDEPGSHIFT		10               /* LOG2(NPTEPG) */
142217354Sjchandra#define	SEGSHIFT		(PAGE_SHIFT + NPTEPGSHIFT)
143217354Sjchandra#define	NBSEG			(1 << SEGSHIFT)	/* bytes/segment */
144217354Sjchandra#define	PDRSHIFT		SEGSHIFT	/* alias for SEG in 32 bit */
145217354Sjchandra#define	PDRMASK			((1 << PDRSHIFT) - 1)
146217354Sjchandra#endif
147217354Sjchandra#define	NBPDR			(1 << PDRSHIFT)	/* bytes/pagedir */
148217354Sjchandra#define	SEGMASK			(NBSEG - 1)	/* byte offset into segment */
149197316Salc
150217354Sjchandra#define	MAXPAGESIZES		1		/* max supported pagesizes */
151178172Simp
152217354Sjchandra#define	BLKDEV_IOSIZE		2048		/* xxx: Why is this 1/2 page? */
153217354Sjchandra#define	MAXDUMPPGS		1		/* xxx: why is this only one? */
154217354Sjchandra
155178172Simp/*
156205072Sneel * The kernel stack needs to be aligned on a (PAGE_SIZE * 2) boundary.
157178172Simp */
158210846Sjchandra#define	KSTACK_PAGES		2	/* kernel stack */
159206819Sjmallett#define	KSTACK_GUARD_PAGES	2	/* pages of kstack guard; 0 disables */
160178172Simp
161178172Simp#define	UPAGES			2
162178172Simp
163178172Simp/* pages ("clicks") (4096 bytes) to disk blocks */
164217354Sjchandra#define	ctod(x)			((x) << (PAGE_SHIFT - DEV_BSHIFT))
165217354Sjchandra#define	dtoc(x)			((x) >> (PAGE_SHIFT - DEV_BSHIFT))
166178172Simp
167178172Simp/*
168178172Simp * Map a ``block device block'' to a file system block.
169178172Simp * This should be device dependent, and should use the bsize
170178172Simp * field from the disk label.
171178172Simp * For now though just use DEV_BSIZE.
172178172Simp */
173217354Sjchandra#define	bdbtofsb(bn)		((bn) / (BLKDEV_IOSIZE/DEV_BSIZE))
174178172Simp
175178172Simp/*
176206746Sjmallett * Mach derived conversion macros
177178172Simp */
178217354Sjchandra#define	round_page(x)		(((x) + PAGE_MASK) & ~PAGE_MASK)
179217354Sjchandra#define	trunc_page(x)		((x) & ~PAGE_MASK)
180178172Simp
181217354Sjchandra#define	atop(x)			((x) >> PAGE_SHIFT)
182217354Sjchandra#define	ptoa(x)			((x) << PAGE_SHIFT)
183178172Simp
184217354Sjchandra#define	pgtok(x)		((x) * (PAGE_SIZE / 1024))
185206746Sjmallett
186196994Sphk#endif /* !_MIPS_INCLUDE_PARAM_H_ */
187