2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2003, 04, 07 Ralf Baechle <ralf@linux-mips.org>
7 * Copyright (C) MIPS Technologies, Inc.
8 * written by Ralf Baechle <ralf@linux-mips.org>
10 #ifndef _ASM_HAZARDS_H
11 #define _ASM_HAZARDS_H
13 #include <linux/stringify.h>
24 #if defined(CONFIG_CPU_MIPSR2) && !defined(CONFIG_CPU_CAVIUM_OCTEON)
27 * MIPSR2 defines ehb for hazard avoidance
30 #define __mtc0_tlbw_hazard \
33 #define __tlbw_use_hazard \
36 #define __tlb_probe_hazard \
39 #define __irq_enable_hazard \
42 #define __irq_disable_hazard \
45 #define __back_to_back_c0_hazard \
49 * gcc has a tradition of misscompiling the previous construct using the
50 * address of a label as argument to inline assembler. Gas otoh has the
51 * annoying difference between la and dla which are only usable for 32-bit
52 * rsp. 64-bit code, so can't be used without conditional compilation.
53 * The alterantive is switching the assembler to 64-bit code which happens
54 * to work right even for 32-bit code ...
56 #define instruction_hazard() \
60 __asm__ __volatile__( \
69 #elif (defined(CONFIG_CPU_MIPSR1) && !defined(CONFIG_MIPS_ALCHEMY)) || \
70 defined(CONFIG_CPU_BMIPS)
73 * These are slightly complicated by the fact that we guarantee R1 kernels to
74 * run fine on R2 processors.
77 #define __mtc0_tlbw_hazard \
82 #define __tlbw_use_hazard \
88 #define __tlb_probe_hazard \
94 #define __irq_enable_hazard \
100 #define __irq_disable_hazard \
106 #define __back_to_back_c0_hazard \
113 * gcc has a tradition of misscompiling the previous construct using the
114 * address of a label as argument to inline assembler. Gas otoh has the
115 * annoying difference between la and dla which are only usable for 32-bit
116 * rsp. 64-bit code, so can't be used without conditional compilation.
117 * The alterantive is switching the assembler to 64-bit code which happens
118 * to work right even for 32-bit code ...
120 #define __instruction_hazard() \
124 __asm__ __volatile__( \
125 " .set mips64r2 \n" \
133 #define instruction_hazard() \
135 if (cpu_has_mips_r2) \
136 __instruction_hazard(); \
139 #elif defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_CPU_CAVIUM_OCTEON) || \
140 defined(CONFIG_CPU_LOONGSON2) || defined(CONFIG_CPU_R10000) || \
141 defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_XLR)
144 * R10000 rocks - all hazards handled in hardware, so this becomes a nobrainer.
147 #define __mtc0_tlbw_hazard
149 #define __tlbw_use_hazard
151 #define __tlb_probe_hazard
153 #define __irq_enable_hazard
155 #define __irq_disable_hazard
157 #define __back_to_back_c0_hazard
159 #define instruction_hazard() do { } while (0)
161 #elif defined(CONFIG_CPU_SB1)
164 * Mostly like R4000 for historic reasons
166 #define __mtc0_tlbw_hazard
168 #define __tlbw_use_hazard
170 #define __tlb_probe_hazard
172 #define __irq_enable_hazard
174 #define __irq_disable_hazard \
179 #define __back_to_back_c0_hazard
181 #define instruction_hazard() do { } while (0)
186 * Finally the catchall case for all other processors including R4000, R4400,
187 * R4600, R4700, R5000, RM7000, NEC VR41xx etc.
189 * The taken branch will result in a two cycle penalty for the two killed
190 * instructions on R4000 / R4400. Other processors only have a single cycle
191 * hazard so this is nice trick to have an optimal code for a range of
194 #define __mtc0_tlbw_hazard \
198 #define __tlbw_use_hazard \
203 #define __tlb_probe_hazard \
208 #define __irq_enable_hazard \
213 #define __irq_disable_hazard \
218 #define __back_to_back_c0_hazard \
223 #define instruction_hazard() do { } while (0)
230 #if defined(CONFIG_CPU_SB1)
232 #define __enable_fpu_hazard \
241 #define __disable_fpu_hazard
243 #elif defined(CONFIG_CPU_MIPSR2)
245 #define __enable_fpu_hazard \
248 #define __disable_fpu_hazard \
253 #define __enable_fpu_hazard \
259 #define __disable_fpu_hazard \
266 #define _ssnop ___ssnop
268 #define mtc0_tlbw_hazard __mtc0_tlbw_hazard
269 #define tlbw_use_hazard __tlbw_use_hazard
270 #define tlb_probe_hazard __tlb_probe_hazard
271 #define irq_enable_hazard __irq_enable_hazard
272 #define irq_disable_hazard __irq_disable_hazard
273 #define back_to_back_c0_hazard __back_to_back_c0_hazard
274 #define enable_fpu_hazard __enable_fpu_hazard
275 #define disable_fpu_hazard __disable_fpu_hazard
281 __asm__ __volatile__( \
282 __stringify(___ssnop) \
288 __asm__ __volatile__( \
289 __stringify(___ehb) \
294 #define mtc0_tlbw_hazard() \
296 __asm__ __volatile__( \
297 __stringify(__mtc0_tlbw_hazard) \
302 #define tlbw_use_hazard() \
304 __asm__ __volatile__( \
305 __stringify(__tlbw_use_hazard) \
310 #define tlb_probe_hazard() \
312 __asm__ __volatile__( \
313 __stringify(__tlb_probe_hazard) \
318 #define irq_enable_hazard() \
320 __asm__ __volatile__( \
321 __stringify(__irq_enable_hazard) \
326 #define irq_disable_hazard() \
328 __asm__ __volatile__( \
329 __stringify(__irq_disable_hazard) \
334 #define back_to_back_c0_hazard() \
336 __asm__ __volatile__( \
337 __stringify(__back_to_back_c0_hazard) \
342 #define enable_fpu_hazard() \
344 __asm__ __volatile__( \
345 __stringify(__enable_fpu_hazard) \
350 #define disable_fpu_hazard() \
352 __asm__ __volatile__( \
353 __stringify(__disable_fpu_hazard) \
358 * MIPS R2 instruction hazard barrier. Needs to be called as a subroutine.
360 extern void mips_ihb(void);
362 #endif /* __ASSEMBLY__ */
364 #endif /* _ASM_HAZARDS_H */