blob: b33875bf699da52646772dcb2bec7b72c09d1601 [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);
37}
38
39static void r39xx_wait(void)
40{
41 local_irq_disable();
42 if (!need_resched())
43 write_c0_conf(read_c0_conf() | TX39_CONF_HALT);
44 local_irq_enable();
45}
46
47extern void r4k_wait(void);
48
49/*
50 * This variant is preferable as it allows testing need_resched and going to
51 * sleep depending on the outcome atomically. Unfortunately the "It is
52 * implementation-dependent whether the pipeline restarts when a non-enabled
53 * interrupt is requested" restriction in the MIPS32/MIPS64 architecture makes
54 * using this version a gamble.
55 */
56void r4k_wait_irqoff(void)
57{
58 local_irq_disable();
59 if (!need_resched())
Ralf Baechlef91a1482013-05-21 12:58:08 +020060 __asm__(
61 " .set push \n"
62 " .set mips3 \n"
63 " wait \n"
64 " .set pop \n");
Ralf Baechle49f2ec92013-05-21 10:53:37 +020065 local_irq_enable();
Ralf Baechlef91a1482013-05-21 12:58:08 +020066 __asm__(
67 " .globl __pastwait \n"
68 "__pastwait: \n");
Ralf Baechle49f2ec92013-05-21 10:53:37 +020069}
70
71/*
72 * The RM7000 variant has to handle erratum 38. The workaround is to not
73 * have any pending stores when the WAIT instruction is executed.
74 */
75static void rm7k_wait_irqoff(void)
76{
77 local_irq_disable();
78 if (!need_resched())
79 __asm__(
80 " .set push \n"
81 " .set mips3 \n"
82 " .set noat \n"
83 " mfc0 $1, $12 \n"
84 " sync \n"
85 " mtc0 $1, $12 # stalls until W stage \n"
86 " wait \n"
87 " mtc0 $1, $12 # stalls until W stage \n"
88 " .set pop \n");
89 local_irq_enable();
90}
91
92/*
93 * The Au1xxx wait is available only if using 32khz counter or
94 * external timer source, but specifically not CP0 Counter.
95 * alchemy/common/time.c may override cpu_wait!
96 */
97static void au1k_wait(void)
98{
Ralf Baechlef91a1482013-05-21 12:58:08 +020099 __asm__(
100 " .set mips3 \n"
101 " cache 0x14, 0(%0) \n"
102 " cache 0x14, 32(%0) \n"
103 " sync \n"
104 " nop \n"
105 " wait \n"
106 " nop \n"
107 " nop \n"
108 " nop \n"
109 " nop \n"
110 " .set mips0 \n"
111 : : "r" (au1k_wait));
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200112}
113
114static int __initdata nowait;
115
116static int __init wait_disable(char *s)
117{
118 nowait = 1;
119
120 return 1;
121}
122
123__setup("nowait", wait_disable);
124
125void __init check_wait(void)
126{
127 struct cpuinfo_mips *c = &current_cpu_data;
128
129 if (nowait) {
130 printk("Wait instruction disabled.\n");
131 return;
132 }
133
134 switch (c->cputype) {
135 case CPU_R3081:
136 case CPU_R3081E:
137 cpu_wait = r3081_wait;
138 break;
139 case CPU_TX3927:
140 cpu_wait = r39xx_wait;
141 break;
142 case CPU_R4200:
143/* case CPU_R4300: */
144 case CPU_R4600:
145 case CPU_R4640:
146 case CPU_R4650:
147 case CPU_R4700:
148 case CPU_R5000:
149 case CPU_R5500:
150 case CPU_NEVADA:
151 case CPU_4KC:
152 case CPU_4KEC:
153 case CPU_4KSC:
154 case CPU_5KC:
155 case CPU_25KF:
156 case CPU_PR4450:
157 case CPU_BMIPS3300:
158 case CPU_BMIPS4350:
159 case CPU_BMIPS4380:
160 case CPU_BMIPS5000:
161 case CPU_CAVIUM_OCTEON:
162 case CPU_CAVIUM_OCTEON_PLUS:
163 case CPU_CAVIUM_OCTEON2:
164 case CPU_JZRISC:
165 case CPU_LOONGSON1:
166 case CPU_XLR:
167 case CPU_XLP:
168 cpu_wait = r4k_wait;
169 break;
170
171 case CPU_RM7000:
172 cpu_wait = rm7k_wait_irqoff;
173 break;
174
175 case CPU_M14KC:
176 case CPU_M14KEC:
177 case CPU_24K:
178 case CPU_34K:
179 case CPU_1004K:
180 cpu_wait = r4k_wait;
181 if (read_c0_config7() & MIPS_CONF7_WII)
182 cpu_wait = r4k_wait_irqoff;
183 break;
184
185 case CPU_74K:
186 cpu_wait = r4k_wait;
187 if ((c->processor_id & 0xff) >= PRID_REV_ENCODE_332(2, 1, 0))
188 cpu_wait = r4k_wait_irqoff;
189 break;
190
191 case CPU_TX49XX:
192 cpu_wait = r4k_wait_irqoff;
193 break;
194 case CPU_ALCHEMY:
195 cpu_wait = au1k_wait;
196 break;
197 case CPU_20KC:
198 /*
199 * WAIT on Rev1.0 has E1, E2, E3 and E16.
200 * WAIT on Rev2.0 and Rev3.0 has E16.
201 * Rev3.1 WAIT is nop, why bother
202 */
203 if ((c->processor_id & 0xff) <= 0x64)
204 break;
205
206 /*
207 * Another rev is incremeting c0_count at a reduced clock
208 * rate while in WAIT mode. So we basically have the choice
209 * between using the cp0 timer as clocksource or avoiding
210 * the WAIT instruction. Until more details are known,
211 * disable the use of WAIT for 20Kc entirely.
212 cpu_wait = r4k_wait;
213 */
214 break;
215 case CPU_RM9000:
216 if ((c->processor_id & 0x00ff) >= 0x40)
217 cpu_wait = r4k_wait;
218 break;
219 default:
220 break;
221 }
222}
223
Ralf Baechle00baf852013-05-21 12:47:26 +0200224static void smtc_idle_hook(void)
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200225{
226#ifdef CONFIG_MIPS_MT_SMTC
Ralf Baechle00baf852013-05-21 12:47:26 +0200227 void smtc_idle_loop_hook(void);
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200228
229 smtc_idle_loop_hook();
230#endif
Ralf Baechle00baf852013-05-21 12:47:26 +0200231}
232
233void arch_cpu_idle(void)
234{
235 smtc_idle_hook();
Ralf Baechle49f2ec92013-05-21 10:53:37 +0200236 if (cpu_wait)
237 (*cpu_wait)();
238 else
239 local_irq_enable();
240}