blob: 44d6a5bde4a1cb9e8db930a11d1b07b23f383507 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
4 * for more details.
5 *
Ralf Baechle98de9202007-07-28 00:49:58 +01006 * Copyright (C) 2003, 04, 07 Ralf Baechle <ralf@linux-mips.org>
Ralf Baechlea3c49462006-03-13 16:16:29 +00007 * Copyright (C) MIPS Technologies, Inc.
8 * written by Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10#ifndef _ASM_HAZARDS_H
11#define _ASM_HAZARDS_H
12
Ralf Baechle36396f32006-09-25 15:49:49 +010013#ifdef __ASSEMBLY__
Ralf Baechled7d86aa2006-09-08 04:13:49 +020014#define ASMMACRO(name, code...) .macro name; code; .endm
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#else
16
Ralf Baechle572afc22007-09-21 13:05:44 +010017#include <asm/cpu-features.h>
18
Ralf Baechled7d86aa2006-09-08 04:13:49 +020019#define ASMMACRO(name, code...) \
20__asm__(".macro " #name "; " #code "; .endm"); \
21 \
22static inline void name(void) \
23{ \
24 __asm__ __volatile__ (#name); \
25}
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Ralf Baechle98de9202007-07-28 00:49:58 +010027/*
Ralf Baechle70342282013-01-22 12:59:30 +010028 * MIPS R2 instruction hazard barrier. Needs to be called as a subroutine.
Ralf Baechle98de9202007-07-28 00:49:58 +010029 */
30extern void mips_ihb(void);
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#endif
33
Ralf Baechled7d86aa2006-09-08 04:13:49 +020034ASMMACRO(_ssnop,
35 sll $0, $0, 1
36 )
37
38ASMMACRO(_ehb,
39 sll $0, $0, 3
40 )
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
Ralf Baechled7d86aa2006-09-08 04:13:49 +020043 * TLB hazards
44 */
David Daneybd6d85c2008-12-11 15:33:22 -080045#if defined(CONFIG_CPU_MIPSR2) && !defined(CONFIG_CPU_CAVIUM_OCTEON)
Ralf Baechled7d86aa2006-09-08 04:13:49 +020046
47/*
48 * MIPSR2 defines ehb for hazard avoidance
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 */
50
Ralf Baechled7d86aa2006-09-08 04:13:49 +020051ASMMACRO(mtc0_tlbw_hazard,
52 _ehb
53 )
54ASMMACRO(tlbw_use_hazard,
55 _ehb
56 )
57ASMMACRO(tlb_probe_hazard,
58 _ehb
59 )
60ASMMACRO(irq_enable_hazard,
Ralf Baechle7605b392007-03-20 13:56:50 +000061 _ehb
Ralf Baechled7d86aa2006-09-08 04:13:49 +020062 )
63ASMMACRO(irq_disable_hazard,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 _ehb
Ralf Baechled7d86aa2006-09-08 04:13:49 +020065 )
66ASMMACRO(back_to_back_c0_hazard,
67 _ehb
68 )
Ralf Baechle7043ad42005-12-22 13:41:29 +010069/*
70 * gcc has a tradition of misscompiling the previous construct using the
Ralf Baechle70342282013-01-22 12:59:30 +010071 * address of a label as argument to inline assembler. Gas otoh has the
Ralf Baechle7043ad42005-12-22 13:41:29 +010072 * annoying difference between la and dla which are only usable for 32-bit
73 * rsp. 64-bit code, so can't be used without conditional compilation.
74 * The alterantive is switching the assembler to 64-bit code which happens
75 * to work right even for 32-bit code ...
76 */
Ralf Baechlecc61c1f2005-07-12 18:35:38 +000077#define instruction_hazard() \
78do { \
Ralf Baechle7043ad42005-12-22 13:41:29 +010079 unsigned long tmp; \
80 \
Ralf Baechlecc61c1f2005-07-12 18:35:38 +000081 __asm__ __volatile__( \
Ralf Baechle7043ad42005-12-22 13:41:29 +010082 " .set mips64r2 \n" \
83 " dla %0, 1f \n" \
Ralf Baechlecc61c1f2005-07-12 18:35:38 +000084 " jr.hb %0 \n" \
Ralf Baechle7043ad42005-12-22 13:41:29 +010085 " .set mips0 \n" \
86 "1: \n" \
87 : "=r" (tmp)); \
Ralf Baechlecc61c1f2005-07-12 18:35:38 +000088} while (0)
89
Kevin Cernekee1c7c4452011-11-16 01:25:40 +000090#elif (defined(CONFIG_CPU_MIPSR1) && !defined(CONFIG_MIPS_ALCHEMY)) || \
91 defined(CONFIG_CPU_BMIPS)
Ralf Baechle572afc22007-09-21 13:05:44 +010092
93/*
94 * These are slightly complicated by the fact that we guarantee R1 kernels to
95 * run fine on R2 processors.
96 */
97ASMMACRO(mtc0_tlbw_hazard,
98 _ssnop; _ssnop; _ehb
99 )
100ASMMACRO(tlbw_use_hazard,
101 _ssnop; _ssnop; _ssnop; _ehb
102 )
103ASMMACRO(tlb_probe_hazard,
104 _ssnop; _ssnop; _ssnop; _ehb
105 )
106ASMMACRO(irq_enable_hazard,
107 _ssnop; _ssnop; _ssnop; _ehb
108 )
109ASMMACRO(irq_disable_hazard,
110 _ssnop; _ssnop; _ssnop; _ehb
111 )
112ASMMACRO(back_to_back_c0_hazard,
113 _ssnop; _ssnop; _ssnop; _ehb
114 )
115/*
116 * gcc has a tradition of misscompiling the previous construct using the
Ralf Baechle70342282013-01-22 12:59:30 +0100117 * address of a label as argument to inline assembler. Gas otoh has the
Ralf Baechle572afc22007-09-21 13:05:44 +0100118 * annoying difference between la and dla which are only usable for 32-bit
119 * rsp. 64-bit code, so can't be used without conditional compilation.
120 * The alterantive is switching the assembler to 64-bit code which happens
121 * to work right even for 32-bit code ...
122 */
123#define __instruction_hazard() \
124do { \
125 unsigned long tmp; \
126 \
127 __asm__ __volatile__( \
128 " .set mips64r2 \n" \
129 " dla %0, 1f \n" \
130 " jr.hb %0 \n" \
131 " .set mips0 \n" \
132 "1: \n" \
133 : "=r" (tmp)); \
134} while (0)
135
136#define instruction_hazard() \
137do { \
138 if (cpu_has_mips_r2) \
139 __instruction_hazard(); \
140} while (0)
141
Manuel Lauss42a4f172010-07-15 21:45:04 +0200142#elif defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_CPU_CAVIUM_OCTEON) || \
Kevin Cernekee15fb0a12011-11-10 22:30:25 -0800143 defined(CONFIG_CPU_LOONGSON2) || defined(CONFIG_CPU_R10000) || \
Jayachandran C5a4cbe32013-01-14 15:11:59 +0000144 defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_XLR)
Ralf Baechled7d86aa2006-09-08 04:13:49 +0200145
146/*
147 * R10000 rocks - all hazards handled in hardware, so this becomes a nobrainer.
148 */
149
150ASMMACRO(mtc0_tlbw_hazard,
151 )
152ASMMACRO(tlbw_use_hazard,
153 )
154ASMMACRO(tlb_probe_hazard,
155 )
156ASMMACRO(irq_enable_hazard,
157 )
158ASMMACRO(irq_disable_hazard,
159 )
160ASMMACRO(back_to_back_c0_hazard,
161 )
Ralf Baechlecc61c1f2005-07-12 18:35:38 +0000162#define instruction_hazard() do { } while (0)
Ralf Baechled7d86aa2006-09-08 04:13:49 +0200163
Ralf Baechled7d86aa2006-09-08 04:13:49 +0200164#elif defined(CONFIG_CPU_SB1)
165
166/*
167 * Mostly like R4000 for historic reasons
168 */
169ASMMACRO(mtc0_tlbw_hazard,
170 )
171ASMMACRO(tlbw_use_hazard,
172 )
173ASMMACRO(tlb_probe_hazard,
174 )
175ASMMACRO(irq_enable_hazard,
176 )
177ASMMACRO(irq_disable_hazard,
178 _ssnop; _ssnop; _ssnop
179 )
180ASMMACRO(back_to_back_c0_hazard,
181 )
182#define instruction_hazard() do { } while (0)
183
184#else
185
186/*
187 * Finally the catchall case for all other processors including R4000, R4400,
188 * R4600, R4700, R5000, RM7000, NEC VR41xx etc.
189 *
190 * The taken branch will result in a two cycle penalty for the two killed
191 * instructions on R4000 / R4400. Other processors only have a single cycle
192 * hazard so this is nice trick to have an optimal code for a range of
193 * processors.
194 */
195ASMMACRO(mtc0_tlbw_hazard,
Yoichi Yuasa3f318372007-01-24 22:22:06 +0900196 nop; nop
Ralf Baechled7d86aa2006-09-08 04:13:49 +0200197 )
198ASMMACRO(tlbw_use_hazard,
199 nop; nop; nop
200 )
201ASMMACRO(tlb_probe_hazard,
202 nop; nop; nop
203 )
204ASMMACRO(irq_enable_hazard,
Ralf Baechle7b0fdaa2007-09-03 16:22:26 +0200205 _ssnop; _ssnop; _ssnop;
Ralf Baechled7d86aa2006-09-08 04:13:49 +0200206 )
207ASMMACRO(irq_disable_hazard,
208 nop; nop; nop
209 )
210ASMMACRO(back_to_back_c0_hazard,
211 _ssnop; _ssnop; _ssnop;
212 )
213#define instruction_hazard() do { } while (0)
214
Ralf Baechlecc61c1f2005-07-12 18:35:38 +0000215#endif
216
Chris Dearman0b624952007-05-08 16:09:13 +0100217
218/* FPU hazards */
219
220#if defined(CONFIG_CPU_SB1)
221ASMMACRO(enable_fpu_hazard,
222 .set push;
223 .set mips64;
224 .set noreorder;
225 _ssnop;
Ralf Baechle21a151d2007-10-11 23:46:15 +0100226 bnezl $0, .+4;
Ralf Baechlea1b53a72007-05-09 17:49:53 +0100227 _ssnop;
Chris Dearman0b624952007-05-08 16:09:13 +0100228 .set pop
229)
230ASMMACRO(disable_fpu_hazard,
231)
232
233#elif defined(CONFIG_CPU_MIPSR2)
234ASMMACRO(enable_fpu_hazard,
235 _ehb
236)
237ASMMACRO(disable_fpu_hazard,
238 _ehb
239)
240#else
241ASMMACRO(enable_fpu_hazard,
242 nop; nop; nop; nop
243)
244ASMMACRO(disable_fpu_hazard,
245 _ehb
246)
247#endif
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#endif /* _ASM_HAZARDS_H */