1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_SH_BUGS_H
3 #define __ASM_SH_BUGS_H
6 * This is included by init/main.c to check for architecture-dependent bugs.
9 * void check_bugs(void);
13 * I don't know of any Super-H bugs yet.
16 #include <asm/processor.h>
18 extern void select_idle_routine(void);
20 static void __init
check_bugs(void)
22 extern unsigned long loops_per_jiffy
;
23 char *p
= &init_utsname()->machine
[2]; /* "sh" */
25 select_idle_routine();
27 current_cpu_data
.loops_per_jiffy
= loops_per_jiffy
;
29 switch (current_cpu_data
.family
) {
47 case CPU_FAMILY_SH4AL_DSP
:
60 case CPU_FAMILY_UNKNOWN
:
62 * Specifically use CPU_FAMILY_UNKNOWN rather than
63 * default:, so we're able to have the compiler whine
64 * about unhandled enumerations.
69 printk("CPU: %s\n", get_cpu_subtype(¤t_cpu_data
));
71 #ifndef __LITTLE_ENDIAN__
72 /* 'eb' means 'Endian Big' */
78 #endif /* __ASM_SH_BUGS_H */