1 /* $OpenBSD: param.h,v 1.5 2018/08/09 12:19:32 patrick Exp $ */ 2 3 /* Public Domain */ 4 5 #ifndef _MACHINE_PARAM_H_ 6 #define _MACHINE_PARAM_H_ 7 8 #define MACHINE "octeon" 9 #define _MACHINE octeon 10 #define MACHINE_ARCH "mips64" 11 #define _MACHINE_ARCH mips64 12 #define MID_MACHINE MID_MIPS64 13 14 #define PAGE_SHIFT 14 15 16 #include <mips64/param.h> 17 18 #ifdef _KERNEL 19 #define __HAVE_FDT 20 #endif 21 22 #endif /* _MACHINE_PARAM_H_ */ 23