blob: 78cc7d6fc845ff9858cc1e9595de0428e718522c [file] [log] [blame]
Ralf Baechle49f2ec92013-05-21 10:53:37 +02001/*
2 * MIPS idle loop and WAIT instruction support.
3 *
4 * Copyright (C) xxxx the Anonymous
5 * Copyright (C) 1994 - 2006 Ralf Baechle
6 * Copyright (C) 2003, 2004 Maciej W. Rozycki
7 * Copyright (C) 2001, 2004, 2011, 2012 MIPS Technologies, Inc.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14#include <linux/export.h>
15#include <linux/init.h>
16#include <linux/irqflags.h>
17#include <linux/printk.h>
18#include <linux/sched.h>
19#include <asm/cpu.h>
20#include <asm/cpu-info.h>
21#include <asm/mipsregs.h>
22
23/*
24 * Not all of the MIPS CPUs have the "wait" instruction available. Moreover,
25 * the implementation of the "wait" feature differs between CPU families. This
26 * points to the function that implements CPU specific wait.
27 * The wait instruction stops the pipeline and reduces the power consumption of
28 * the CPU very much.
29 */
30void (*cpu_wait)(void);
31EXPORT_SYMBOL(cpu_wait);
32
33static void r3081_wait(void)
34{
35 unsigned long cfg = read_c0_conf();
36 write_c0_conf(cfg | R30XX_CONF_HALT);
Ralf Baechlefb40bc32013-05-21 14:05:27 +020037 local_irq_enable();
Ralf Baechle49f2ec92013-05-21 10:53:37 +020038}
39
40static void r39xx_wait(void)
41{
42 local_irq_disable();
43 if (!need_resched())
44 write_c0_conf(read_c0_conf() | TX39_CONF_HALT);
45 local_irq_enable();
46}
47
48extern void r4k_wait(void);
49
50/*
51 * This variant is preferable as it allows testing need_resched and going to
52 * sleep depending on the outcome atomically. Unfortunately the "It is
53 * implementation-dependent whether the pipeline restarts when a non-enabled
54 * interrupt is requested" restriction in the MIPS32/MIPS64 architecture makes
55 * using this version a gamble.
56 */
57void r4k_wait_irqoff(void)
58{
59 local_irq_disable();
60 if (!need_resched())
Ralf Baechlef91a1482013-05-21 12:58:08 +020061 __asm__(
62 " .set push \n"
63 " .set mips3 \n"
64 " wait \n"
65 " .set pop \n");
Ralf Baechle49f2ec92013-05-21 10:53:37 +020066 local_irq_enable();
Ralf Baechlef91a1482013-05-21 12:58:08 +020067 __asm__(
68 " .globl __pastwait \n"
69 "__pastwait: \n");
Ralf Baechle49f2ec92013-05-21 10:53:37 +020070}
71
72/*
73 * The RM7000 variant has to handle erratum 38. The workaround is to not
74 * have any pending stores when the WAIT instruction is executed.
75 */
76static void rm7k_wait_irqoff(void)
77{
78 local_irq_disable();
79 if (!need_resched())
80 __asm__(
81 " .set push \n"
82 " .set mips3 \n"
83 " .set noat \n"
84 " mfc0 $1, $12 \n"
85 " sync \n"
86 " mtc0 $1, $12 # stalls until W stage \n"
87 " wait \n"
88 " mtc0 $1, $12 # stalls until W stage \n"
89 " .set pop \n");
90 local_irq_enable();
91}
92
93/*
94 * The Au1xxx wait is available only if using 32khz counter or
95 * external timer source, but specifically not CP0 Counter.
96 * alchemy/common/time.c may override cpu_wait!
97 */
98static void au1k_wait(void)
99{
Ralf Baechlef91a1482013-05-21 12:58:08 +0200100 __asm__(
101 " .set mips3 \n"
102 " cache 0x14, 0(%0) \n"
103 " cache 0x14, 32(%0) \n"
104 " sync \n"
105 " nop \n"
106 " wait \n"
107 " nop \n"
108 " nop \n"
109 " nop \n"
110 " nop \n"
111 " .set mips0 \n"
112 : : "r" (au1k_wait));
Ralf Baechlefb40bc32013-05-21 14:05:27 +0200113 local_irq_enable();
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200114}
115
116static int __initdata nowait;
117
118static int __init wait_disable(char *s)
119{
120 nowait = 1;
121
122 return 1;
123}
124
125__setup("nowait", wait_disable);
126
127void __init check_wait(void)
128{
129 struct cpuinfo_mips *c = &current_cpu_data;
130
131 if (nowait) {
132 printk("Wait instruction disabled.\n");
133 return;
134 }
135
136 switch (c->cputype) {
137 case CPU_R3081:
138 case CPU_R3081E:
139 cpu_wait = r3081_wait;
140 break;
141 case CPU_TX3927:
142 cpu_wait = r39xx_wait;
143 break;
144 case CPU_R4200:
145/* case CPU_R4300: */
146 case CPU_R4600:
147 case CPU_R4640:
148 case CPU_R4650:
149 case CPU_R4700:
150 case CPU_R5000:
151 case CPU_R5500:
152 case CPU_NEVADA:
153 case CPU_4KC:
154 case CPU_4KEC:
155 case CPU_4KSC:
156 case CPU_5KC:
157 case CPU_25KF:
158 case CPU_PR4450:
159 case CPU_BMIPS3300:
160 case CPU_BMIPS4350:
161 case CPU_BMIPS4380:
162 case CPU_BMIPS5000:
163 case CPU_CAVIUM_OCTEON:
164 case CPU_CAVIUM_OCTEON_PLUS:
165 case CPU_CAVIUM_OCTEON2:
166 case CPU_JZRISC:
167 case CPU_LOONGSON1:
168 case CPU_XLR:
169 case CPU_XLP:
170 cpu_wait = r4k_wait;
171 break;
172
173 case CPU_RM7000:
174 cpu_wait = rm7k_wait_irqoff;
175 break;
176
177 case CPU_M14KC:
178 case CPU_M14KEC:
179 case CPU_24K:
180 case CPU_34K:
181 case CPU_1004K:
182 cpu_wait = r4k_wait;
183 if (read_c0_config7() & MIPS_CONF7_WII)
184 cpu_wait = r4k_wait_irqoff;
185 break;
186
187 case CPU_74K:
188 cpu_wait = r4k_wait;
189 if ((c->processor_id & 0xff) >= PRID_REV_ENCODE_332(2, 1, 0))
190 cpu_wait = r4k_wait_irqoff;
191 break;
192
193 case CPU_TX49XX:
194 cpu_wait = r4k_wait_irqoff;
195 break;
196 case CPU_ALCHEMY:
197 cpu_wait = au1k_wait;
198 break;
199 case CPU_20KC:
200 /*
201 * WAIT on Rev1.0 has E1, E2, E3 and E16.
202 * WAIT on Rev2.0 and Rev3.0 has E16.
203 * Rev3.1 WAIT is nop, why bother
204 */
205 if ((c->processor_id & 0xff) <= 0x64)
206 break;
207
208 /*
209 * Another rev is incremeting c0_count at a reduced clock
210 * rate while in WAIT mode. So we basically have the choice
211 * between using the cp0 timer as clocksource or avoiding
212 * the WAIT instruction. Until more details are known,
213 * disable the use of WAIT for 20Kc entirely.
214 cpu_wait = r4k_wait;
215 */
216 break;
217 case CPU_RM9000:
218 if ((c->processor_id & 0x00ff) >= 0x40)
219 cpu_wait = r4k_wait;
220 break;
221 default:
222 break;
223 }
224}
225
Ralf Baechle00baf852013-05-21 12:47:26 +0200226static void smtc_idle_hook(void)
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200227{
228#ifdef CONFIG_MIPS_MT_SMTC
Ralf Baechle00baf852013-05-21 12:47:26 +0200229 void smtc_idle_loop_hook(void);
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200230
231 smtc_idle_loop_hook();
232#endif
Ralf Baechle00baf852013-05-21 12:47:26 +0200233}
234
235void arch_cpu_idle(void)
236{
237 smtc_idle_hook();
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200238 if (cpu_wait)
Ralf Baechlec9b68692013-05-21 13:02:12 +0200239 cpu_wait();
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200240 else
241 local_irq_enable();
242}