xref: /openbsd-src/sys/arch/octeon/include/param.h (revision 5483bc5650782f036096ae5803d9853d9761ecd0)
1*5483bc56Spatrick /* $OpenBSD: param.h,v 1.5 2018/08/09 12:19:32 patrick Exp $ */
2184e2458Sderaadt 
3184e2458Sderaadt /* Public Domain */
4c6b2ceb4Ssyuu 
5c6b2ceb4Ssyuu #ifndef	_MACHINE_PARAM_H_
6c6b2ceb4Ssyuu #define	_MACHINE_PARAM_H_
7c6b2ceb4Ssyuu 
8142e2471Ssyuu #define	MACHINE		"octeon"
9142e2471Ssyuu #define	_MACHINE	octeon
10142e2471Ssyuu #define	MACHINE_ARCH	"mips64"
11142e2471Ssyuu #define	_MACHINE_ARCH	mips64
12c6b2ceb4Ssyuu #define	MID_MACHINE	MID_MIPS64
13c6b2ceb4Ssyuu 
14c6b2ceb4Ssyuu #define	PAGE_SHIFT	14
15c6b2ceb4Ssyuu 
16c6b2ceb4Ssyuu #include <mips64/param.h>
17c6b2ceb4Ssyuu 
18*5483bc56Spatrick #ifdef _KERNEL
19*5483bc56Spatrick #define __HAVE_FDT
20*5483bc56Spatrick #endif
21*5483bc56Spatrick 
22c6b2ceb4Ssyuu #endif /* _MACHINE_PARAM_H_ */
23