Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This is included by init/main.c to check for architecture-dependent bugs. |
| 3 | * |
| 4 | * Needs: |
| 5 | * void check_bugs(void); |
| 6 | */ |
| 7 | #ifndef _ASM_BUGS_H |
| 8 | #define _ASM_BUGS_H |
| 9 | |
Ralf Baechle | 3855157 | 2005-04-13 17:36:49 +0000 | [diff] [blame] | 10 | #include <linux/delay.h> |
Ralf Baechle | f03da6e | 2005-04-13 13:37:32 +0000 | [diff] [blame] | 11 | #include <asm/cpu.h> |
| 12 | #include <asm/cpu-info.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | extern void check_bugs32(void); |
| 15 | extern void check_bugs64(void); |
| 16 | |
| 17 | static inline void check_bugs(void) |
| 18 | { |
Ralf Baechle | f03da6e | 2005-04-13 13:37:32 +0000 | [diff] [blame] | 19 | unsigned int cpu = smp_processor_id(); |
| 20 | |
| 21 | cpu_data[cpu].udelay_val = loops_per_jiffy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | check_bugs32(); |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 23 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | check_bugs64(); |
| 25 | #endif |
| 26 | } |
| 27 | |
| 28 | #endif /* _ASM_BUGS_H */ |