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>
14 #include <asm/compiler.h>
25 #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) && !defined(CONFIG_CPU_CAVIUM_OCTEON)
28 * MIPSR2 defines ehb for hazard avoidance
31 #define __mtc0_tlbw_hazard \
34 #define __mtc0_tlbr_hazard \
37 #define __tlbw_use_hazard \
40 #define __tlb_read_hazard \
43 #define __tlb_probe_hazard \
46 #define __irq_enable_hazard \
49 #define __irq_disable_hazard \
52 #define __back_to_back_c0_hazard \
56 * gcc has a tradition of misscompiling the previous construct using the
57 * address of a label as argument to inline assembler. Gas otoh has the
58 * annoying difference between la and dla which are only usable for 32-bit
59 * rsp. 64-bit code, so can't be used without conditional compilation.
60 * The alterantive is switching the assembler to 64-bit code which happens
61 * to work right even for 32-bit code ...
63 #define instruction_hazard() \
67 __asm__ __volatile__( \
68 " .set "MIPS_ISA_LEVEL" \n" \
76 #elif (defined(CONFIG_CPU_MIPSR1) && !defined(CONFIG_MIPS_ALCHEMY)) || \
77 defined(CONFIG_CPU_BMIPS)
80 * These are slightly complicated by the fact that we guarantee R1 kernels to
81 * run fine on R2 processors.
84 #define __mtc0_tlbw_hazard \
89 #define __mtc0_tlbr_hazard \
94 #define __tlbw_use_hazard \
100 #define __tlb_read_hazard \
106 #define __tlb_probe_hazard \
112 #define __irq_enable_hazard \
118 #define __irq_disable_hazard \
124 #define __back_to_back_c0_hazard \
131 * gcc has a tradition of misscompiling the previous construct using the
132 * address of a label as argument to inline assembler. Gas otoh has the
133 * annoying difference between la and dla which are only usable for 32-bit
134 * rsp. 64-bit code, so can't be used without conditional compilation.
135 * The alterantive is switching the assembler to 64-bit code which happens
136 * to work right even for 32-bit code ...
138 #define __instruction_hazard() \
142 __asm__ __volatile__( \
143 " .set mips64r2 \n" \
151 #define instruction_hazard() \
153 if (cpu_has_mips_r2_r6) \
154 __instruction_hazard(); \
157 #elif defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_CPU_CAVIUM_OCTEON) || \
158 defined(CONFIG_CPU_LOONGSON2) || defined(CONFIG_CPU_R10000) || \
159 defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_XLR)
162 * R10000 rocks - all hazards handled in hardware, so this becomes a nobrainer.
165 #define __mtc0_tlbw_hazard
167 #define __mtc0_tlbr_hazard
169 #define __tlbw_use_hazard
171 #define __tlb_read_hazard
173 #define __tlb_probe_hazard
175 #define __irq_enable_hazard
177 #define __irq_disable_hazard
179 #define __back_to_back_c0_hazard
181 #define instruction_hazard() do { } while (0)
183 #elif defined(CONFIG_CPU_SB1)
186 * Mostly like R4000 for historic reasons
188 #define __mtc0_tlbw_hazard
190 #define __mtc0_tlbr_hazard
192 #define __tlbw_use_hazard
194 #define __tlb_read_hazard
196 #define __tlb_probe_hazard
198 #define __irq_enable_hazard
200 #define __irq_disable_hazard \
205 #define __back_to_back_c0_hazard
207 #define instruction_hazard() do { } while (0)
212 * Finally the catchall case for all other processors including R4000, R4400,
213 * R4600, R4700, R5000, RM7000, NEC VR41xx etc.
215 * The taken branch will result in a two cycle penalty for the two killed
216 * instructions on R4000 / R4400. Other processors only have a single cycle
217 * hazard so this is nice trick to have an optimal code for a range of
220 #define __mtc0_tlbw_hazard \
224 #define __mtc0_tlbr_hazard \
228 #define __tlbw_use_hazard \
233 #define __tlb_read_hazard \
238 #define __tlb_probe_hazard \
243 #define __irq_enable_hazard \
248 #define __irq_disable_hazard \
253 #define __back_to_back_c0_hazard \
258 #define instruction_hazard() do { } while (0)
265 #if defined(CONFIG_CPU_SB1)
267 #define __enable_fpu_hazard \
276 #define __disable_fpu_hazard
278 #elif defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
280 #define __enable_fpu_hazard \
283 #define __disable_fpu_hazard \
288 #define __enable_fpu_hazard \
294 #define __disable_fpu_hazard \
301 #define _ssnop ___ssnop
303 #define mtc0_tlbw_hazard __mtc0_tlbw_hazard
304 #define mtc0_tlbr_hazard __mtc0_tlbr_hazard
305 #define tlbw_use_hazard __tlbw_use_hazard
306 #define tlb_read_hazard __tlb_read_hazard
307 #define tlb_probe_hazard __tlb_probe_hazard
308 #define irq_enable_hazard __irq_enable_hazard
309 #define irq_disable_hazard __irq_disable_hazard
310 #define back_to_back_c0_hazard __back_to_back_c0_hazard
311 #define enable_fpu_hazard __enable_fpu_hazard
312 #define disable_fpu_hazard __disable_fpu_hazard
318 __asm__ __volatile__( \
319 __stringify(___ssnop) \
325 __asm__ __volatile__( \
326 __stringify(___ehb) \
331 #define mtc0_tlbw_hazard() \
333 __asm__ __volatile__( \
334 __stringify(__mtc0_tlbw_hazard) \
339 #define mtc0_tlbr_hazard() \
341 __asm__ __volatile__( \
342 __stringify(__mtc0_tlbr_hazard) \
347 #define tlbw_use_hazard() \
349 __asm__ __volatile__( \
350 __stringify(__tlbw_use_hazard) \
355 #define tlb_read_hazard() \
357 __asm__ __volatile__( \
358 __stringify(__tlb_read_hazard) \
363 #define tlb_probe_hazard() \
365 __asm__ __volatile__( \
366 __stringify(__tlb_probe_hazard) \
371 #define irq_enable_hazard() \
373 __asm__ __volatile__( \
374 __stringify(__irq_enable_hazard) \
379 #define irq_disable_hazard() \
381 __asm__ __volatile__( \
382 __stringify(__irq_disable_hazard) \
387 #define back_to_back_c0_hazard() \
389 __asm__ __volatile__( \
390 __stringify(__back_to_back_c0_hazard) \
395 #define enable_fpu_hazard() \
397 __asm__ __volatile__( \
398 __stringify(__enable_fpu_hazard) \
403 #define disable_fpu_hazard() \
405 __asm__ __volatile__( \
406 __stringify(__disable_fpu_hazard) \
411 * MIPS R2 instruction hazard barrier. Needs to be called as a subroutine.
413 extern void mips_ihb(void);
415 #endif /* __ASSEMBLY__ */
417 #endif /* _ASM_HAZARDS_H */