bugs.h 1.31 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef __ASM_SH_BUGS_H
#define __ASM_SH_BUGS_H

/*
 * This is included by init/main.c to check for architecture-dependent bugs.
 *
 * Needs:
 *	void check_bugs(void);
 */

/*
 * I don't know of any Super-H bugs yet.
 */

#include <asm/processor.h>

static void __init check_bugs(void)
{
	extern unsigned long loops_per_jiffy;
20
	char *p = &init_utsname()->machine[2]; /* "sh" */
Linus Torvalds's avatar
Linus Torvalds committed
21

22
	current_cpu_data.loops_per_jiffy = loops_per_jiffy;
Linus Torvalds's avatar
Linus Torvalds committed
23

24
	switch (current_cpu_data.type) {
25
	case CPU_SH7619:
Linus Torvalds's avatar
Linus Torvalds committed
26 27
		*p++ = '2';
		break;
Paul Mundt's avatar
Paul Mundt committed
28
	case CPU_SH7203 ... CPU_SH7263:
29 30 31
		*p++ = '2';
		*p++ = 'a';
		break;
32
	case CPU_SH7705 ... CPU_SH7729:
Linus Torvalds's avatar
Linus Torvalds committed
33 34 35 36 37
		*p++ = '3';
		break;
	case CPU_SH7750 ... CPU_SH4_501:
		*p++ = '4';
		break;
38
	case CPU_SH7763 ... CPU_SHX3:
39 40 41
		*p++ = '4';
		*p++ = 'a';
		break;
42
	case CPU_SH7343 ... CPU_SH7722:
43 44 45 46 47 48 49 50
		*p++ = '4';
		*p++ = 'a';
		*p++ = 'l';
		*p++ = '-';
		*p++ = 'd';
		*p++ = 's';
		*p++ = 'p';
		break;
51 52 53 54 55 56 57 58 59 60
	case CPU_SH5_101 ... CPU_SH5_103:
		*p++ = '6';
		*p++ = '4';
		break;
	case CPU_SH_NONE:
		/*
		 * Specifically use CPU_SH_NONE rather than default:,
		 * so we're able to have the compiler whine about
		 * unhandled enumerations.
		 */
Linus Torvalds's avatar
Linus Torvalds committed
61 62 63
		break;
	}

64
	printk("CPU: %s\n", get_cpu_subtype(&current_cpu_data));
Linus Torvalds's avatar
Linus Torvalds committed
65 66 67 68 69 70 71 72 73

#ifndef __LITTLE_ENDIAN__
	/* 'eb' means 'Endian Big' */
	*p++ = 'e';
	*p++ = 'b';
#endif
	*p = '\0';
}
#endif /* __ASM_SH_BUGS_H */