You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.3 KiB
74 lines
1.3 KiB
![]()
20 years ago
|
#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;
|
||
![]()
18 years ago
|
char *p = &init_utsname()->machine[2]; /* "sh" */
|
||
![]()
20 years ago
|
|
||
![]()
18 years ago
|
current_cpu_data.loops_per_jiffy = loops_per_jiffy;
|
||
![]()
20 years ago
|
|
||
![]()
18 years ago
|
switch (current_cpu_data.type) {
|
||
![]()
18 years ago
|
case CPU_SH7619:
|
||
![]()
20 years ago
|
*p++ = '2';
|
||
|
break;
|
||
![]()
17 years ago
|
case CPU_SH7203 ... CPU_MXG:
|
||
![]()
19 years ago
|
*p++ = '2';
|
||
|
*p++ = 'a';
|
||
|
break;
|
||
![]()
18 years ago
|
case CPU_SH7705 ... CPU_SH7729:
|
||
![]()
20 years ago
|
*p++ = '3';
|
||
|
break;
|
||
|
case CPU_SH7750 ... CPU_SH4_501:
|
||
|
*p++ = '4';
|
||
|
break;
|
||
![]()
17 years ago
|
case CPU_SH7763 ... CPU_SHX3:
|
||
![]()
19 years ago
|
*p++ = '4';
|
||
|
*p++ = 'a';
|
||
|
break;
|
||
![]()
17 years ago
|
case CPU_SH7343 ... CPU_SH7366:
|
||
![]()
18 years ago
|
*p++ = '4';
|
||
|
*p++ = 'a';
|
||
|
*p++ = 'l';
|
||
|
*p++ = '-';
|
||
|
*p++ = 'd';
|
||
|
*p++ = 's';
|
||
|
*p++ = 'p';
|
||
|
break;
|
||
![]()
17 years ago
|
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.
|
||
|
*/
|
||
![]()
20 years ago
|
break;
|
||
|
}
|
||
|
|
||
![]()
18 years ago
|
printk("CPU: %s\n", get_cpu_subtype(¤t_cpu_data));
|
||
![]()
20 years ago
|
|
||
|
#ifndef __LITTLE_ENDIAN__
|
||
|
/* 'eb' means 'Endian Big' */
|
||
|
*p++ = 'e';
|
||
|
*p++ = 'b';
|
||
|
#endif
|
||
|
*p = '\0';
|
||
|
}
|
||
|
#endif /* __ASM_SH_BUGS_H */
|