Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-mips / bugs.h
blob9dc10df32078e10475dd49c60248c06d31461139
1 /*
2 * This is included by init/main.c to check for architecture-dependent bugs.
4 * Copyright (C) 2007 Maciej W. Rozycki
6 * Needs:
7 * void check_bugs(void);
8 */
9 #ifndef _ASM_BUGS_H
10 #define _ASM_BUGS_H
12 #include <linux/bug.h>
13 #include <linux/delay.h>
15 #include <asm/cpu.h>
16 #include <asm/cpu-info.h>
18 extern int daddiu_bug;
20 extern void check_bugs64_early(void);
22 extern void check_bugs32(void);
23 extern void check_bugs64(void);
25 static inline void check_bugs_early(void)
27 #ifdef CONFIG_64BIT
28 check_bugs64_early();
29 #endif
32 static inline void check_bugs(void)
34 unsigned int cpu = smp_processor_id();
36 cpu_data[cpu].udelay_val = loops_per_jiffy;
37 check_bugs32();
38 #ifdef CONFIG_64BIT
39 check_bugs64();
40 #endif
43 static inline int r4k_daddiu_bug(void)
45 #ifdef CONFIG_64BIT
46 WARN_ON(daddiu_bug < 0);
47 return daddiu_bug != 0;
48 #else
49 return 0;
50 #endif
53 #endif /* _ASM_BUGS_H */