summaryrefslogtreecommitdiffstats
path: root/include/asm-mips/bugs.h
blob: 41ca733661c12d713fa5b7c420813056e6c39594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 *  include/asm-mips/bugs.h
 *
 *  Copyright (C) 1995  Waldorf Electronics
 *  written by Ralf Baechle
 */
#include <asm/bootinfo.h>

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

extern struct bootinfo boot_info;

static void check_wait(void)
{
	printk("Checking for 'wait' instruction... ");
	switch(boot_info.cputype) {
		case CPU_R4200: 
		case CPU_R4600: 
			wait_available = 1;
			printk(" available.\n");
			break;
		default:
			printk(" unavailable.\n");
			break;
		}
}

static void check_bugs(void)
{
	check_wait();
}