aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2005-07-13 15:22:45 -0400
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 14:31:48 -0400
commit55d04dff0fcf5d1c3f0d6edf6df86d82fa4c053b (patch)
treef046b15a3c327c486dc871a4c810d013979b4a77 /arch/mips
parent569f75bd02d20043c4baf9fc38d937f37e7572b0 (diff)
New kernel option nowait allows disabling the use of the wait instruction.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/kernel/cpu-probe.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index e40bd6fccea..53e4496de6b 100644
--- a/arch/mips/kernel/cpu-probe.c
+++ b/arch/mips/kernel/cpu-probe.c
@@ -71,11 +71,27 @@ static void au1k_wait(void)
71 : : "r" (au1k_wait)); 71 : : "r" (au1k_wait));
72} 72}
73 73
74static int __initdata nowait = 0;
75
76int __init wait_disable(char *s)
77{
78 nowait = 1;
79
80 return 1;
81}
82
83__setup("nowait", wait_disable);
84
74static inline void check_wait(void) 85static inline void check_wait(void)
75{ 86{
76 struct cpuinfo_mips *c = &current_cpu_data; 87 struct cpuinfo_mips *c = &current_cpu_data;
77 88
78 printk("Checking for 'wait' instruction... "); 89 printk("Checking for 'wait' instruction... ");
90 if (nowait) {
91 printk (" disabled.\n");
92 return;
93 }
94
79 switch (c->cputype) { 95 switch (c->cputype) {
80 case CPU_R3081: 96 case CPU_R3081:
81 case CPU_R3081E: 97 case CPU_R3081E: