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)) && \
26 !defined(CONFIG_CPU_CAVIUM_OCTEON) && !defined(CONFIG_LOONGSON3_ENHANCEMENT)
29 * MIPSR2 defines ehb for hazard avoidance
32 #define __mtc0_tlbw_hazard \
35 #define __mtc0_tlbr_hazard \
38 #define __tlbw_use_hazard \
41 #define __tlb_read_hazard \
44 #define __tlb_probe_hazard \
47 #define __irq_enable_hazard \
50 #define __irq_disable_hazard \
53 #define __back_to_back_c0_hazard \
57 * gcc has a tradition of misscompiling the previous construct using the
58 * address of a label as argument to inline assembler. Gas otoh has the
59 * annoying difference between la and dla which are only usable for 32-bit
60 * rsp. 64-bit code, so can't be used without conditional compilation.
61 * The alternative is switching the assembler to 64-bit code which happens
62 * to work right even for 32-bit code...
64 #define instruction_hazard() \
68 __asm__ __volatile__( \
69 " .set "MIPS_ISA_LEVEL" \n" \
77 #elif (defined(CONFIG_CPU_MIPSR1) && !defined(CONFIG_MIPS_ALCHEMY)) || \
78 defined(CONFIG_CPU_BMIPS)
81 * These are slightly complicated by the fact that we guarantee R1 kernels to
82 * run fine on R2 processors.
85 #define __mtc0_tlbw_hazard \
90 #define __mtc0_tlbr_hazard \
95 #define __tlbw_use_hazard \
101 #define __tlb_read_hazard \
107 #define __tlb_probe_hazard \
113 #define __irq_enable_hazard \
119 #define __irq_disable_hazard \
125 #define __back_to_back_c0_hazard \
132 * gcc has a tradition of misscompiling the previous construct using the
133 * address of a label as argument to inline assembler. Gas otoh has the
134 * annoying difference between la and dla which are only usable for 32-bit
135 * rsp. 64-bit code, so can't be used without conditional compilation.
136 * The alternative is switching the assembler to 64-bit code which happens
137 * to work right even for 32-bit code...
139 #define __instruction_hazard() \
143 __asm__ __volatile__( \
144 " .set mips64r2 \n" \
152 #define instruction_hazard() \
154 if (cpu_has_mips_r2_r6) \
155 __instruction_hazard(); \
158 #elif defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_CPU_CAVIUM_OCTEON) || \
159 defined(CONFIG_CPU_LOONGSON2) || defined(CONFIG_LOONGSON3_ENHANCEMENT) || \
160 defined(CONFIG_CPU_R10000) || defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_XLR)
163 * R10000 rocks - all hazards handled in hardware, so this becomes a nobrainer.
166 #define __mtc0_tlbw_hazard
168 #define __mtc0_tlbr_hazard
170 #define __tlbw_use_hazard
172 #define __tlb_read_hazard
174 #define __tlb_probe_hazard
176 #define __irq_enable_hazard
178 #define __irq_disable_hazard
180 #define __back_to_back_c0_hazard
182 #define instruction_hazard() do { } while (0)
184 #elif defined(CONFIG_CPU_SB1)
187 * Mostly like R4000 for historic reasons
189 #define __mtc0_tlbw_hazard
191 #define __mtc0_tlbr_hazard
193 #define __tlbw_use_hazard
195 #define __tlb_read_hazard
197 #define __tlb_probe_hazard
199 #define __irq_enable_hazard
201 #define __irq_disable_hazard \
206 #define __back_to_back_c0_hazard
208 #define instruction_hazard() do { } while (0)
213 * Finally the catchall case for all other processors including R4000, R4400,
214 * R4600, R4700, R5000, RM7000, NEC VR41xx etc.
216 * The taken branch will result in a two cycle penalty for the two killed
217 * instructions on R4000 / R4400. Other processors only have a single cycle
218 * hazard so this is nice trick to have an optimal code for a range of
221 #define __mtc0_tlbw_hazard \
225 #define __mtc0_tlbr_hazard \
229 #define __tlbw_use_hazard \
234 #define __tlb_read_hazard \
239 #define __tlb_probe_hazard \
244 #define __irq_enable_hazard \
249 #define __irq_disable_hazard \
254 #define __back_to_back_c0_hazard \
259 #define instruction_hazard() do { } while (0)
266 #if defined(CONFIG_CPU_SB1)
268 #define __enable_fpu_hazard \
277 #define __disable_fpu_hazard
279 #elif defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
281 #define __enable_fpu_hazard \
284 #define __disable_fpu_hazard \
289 #define __enable_fpu_hazard \
295 #define __disable_fpu_hazard \
302 #define _ssnop ___ssnop
304 #define mtc0_tlbw_hazard __mtc0_tlbw_hazard
305 #define mtc0_tlbr_hazard __mtc0_tlbr_hazard
306 #define tlbw_use_hazard __tlbw_use_hazard
307 #define tlb_read_hazard __tlb_read_hazard
308 #define tlb_probe_hazard __tlb_probe_hazard
309 #define irq_enable_hazard __irq_enable_hazard
310 #define irq_disable_hazard __irq_disable_hazard
311 #define back_to_back_c0_hazard __back_to_back_c0_hazard
312 #define enable_fpu_hazard __enable_fpu_hazard
313 #define disable_fpu_hazard __disable_fpu_hazard
319 __asm__ __volatile__( \
320 __stringify(___ssnop) \
326 __asm__ __volatile__( \
327 __stringify(___ehb) \
332 #define mtc0_tlbw_hazard() \
334 __asm__ __volatile__( \
335 __stringify(__mtc0_tlbw_hazard) \
340 #define mtc0_tlbr_hazard() \
342 __asm__ __volatile__( \
343 __stringify(__mtc0_tlbr_hazard) \
348 #define tlbw_use_hazard() \
350 __asm__ __volatile__( \
351 __stringify(__tlbw_use_hazard) \
356 #define tlb_read_hazard() \
358 __asm__ __volatile__( \
359 __stringify(__tlb_read_hazard) \
364 #define tlb_probe_hazard() \
366 __asm__ __volatile__( \
367 __stringify(__tlb_probe_hazard) \
372 #define irq_enable_hazard() \
374 __asm__ __volatile__( \
375 __stringify(__irq_enable_hazard) \
380 #define irq_disable_hazard() \
382 __asm__ __volatile__( \
383 __stringify(__irq_disable_hazard) \
388 #define back_to_back_c0_hazard() \
390 __asm__ __volatile__( \
391 __stringify(__back_to_back_c0_hazard) \
396 #define enable_fpu_hazard() \
398 __asm__ __volatile__( \
399 __stringify(__enable_fpu_hazard) \
404 #define disable_fpu_hazard() \
406 __asm__ __volatile__( \
407 __stringify(__disable_fpu_hazard) \
412 * MIPS R2 instruction hazard barrier. Needs to be called as a subroutine.
414 extern void mips_ihb(void);
416 #endif /* __ASSEMBLY__ */
418 #endif /* _ASM_HAZARDS_H */