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, 2004 Ralf Baechle
11 #include <linux/config.h>
24 * RM9000 hazards. When the JTLB is updated by tlbwi or tlbwr, a subsequent
25 * use of the JTLB for instructions should not occur for 4 cpu cycles and use
26 * for data translations should not occur for 3 cpu cycles.
28 #ifdef CONFIG_CPU_RM9000
30 .macro mtc0_tlbw_hazard
33 _ssnop
; _ssnop
; _ssnop
; _ssnop
37 .macro tlbw_eret_hazard
40 _ssnop
; _ssnop
; _ssnop
; _ssnop
47 * The taken branch will result in a two cycle penalty for the two killed
48 * instructions on R4000 / R4400. Other processors only have a single cycle
49 * hazard so this is nice trick to have an optimal code for a range of
52 .macro mtc0_tlbw_hazard
56 .macro tlbw_eret_hazard
62 * The 24K has a 2 cycle mtc0/mfc0 execution hazard.
63 * It is a MIPS32R2 processor so ehb will clear the hazard.
66 #ifdef CONFIG_CPU_MIPSR2
68 * Use a macro for ehb unless explicit support for MIPSR2 is enabled
71 #define irq_enable_hazard
74 #define irq_disable_hazard
77 #elif defined(CONFIG_CPU_R10000) || defined(CONFIG_CPU_RM9000)
80 * R10000 rocks - all hazards handled in hardware, so this becomes a nobrainer.
83 #define irq_enable_hazard
85 #define irq_disable_hazard
90 * Classic MIPS needs 1 - 3 nops or ssnops
92 #define irq_enable_hazard
93 #define irq_disable_hazard \
94 _ssnop; _ssnop; _ssnop
98 #else /* __ASSEMBLY__ */
101 " .macro _ssnop \n\t"
102 " sll $0, $2, 1 \n\t"
106 " sll $0, $0, 3 \n\t"
109 #ifdef CONFIG_CPU_RM9000
111 * RM9000 hazards. When the JTLB is updated by tlbwi or tlbwr, a subsequent
112 * use of the JTLB for instructions should not occur for 4 cpu cycles and use
113 * for data translations should not occur for 3 cpu cycles.
116 #define mtc0_tlbw_hazard() \
117 __asm__ __volatile__( \
119 "_ssnop; _ssnop; _ssnop; _ssnop\n\t" \
122 #define tlbw_use_hazard() \
123 __asm__ __volatile__( \
125 "_ssnop; _ssnop; _ssnop; _ssnop\n\t" \
130 * Overkill warning ...
132 #define mtc0_tlbw_hazard() \
133 __asm__ __volatile__( \
134 ".set noreorder\n\t" \
135 "nop; nop; nop; nop; nop; nop;\n\t" \
138 #define tlbw_use_hazard() \
139 __asm__ __volatile__( \
140 ".set noreorder\n\t" \
141 "nop; nop; nop; nop; nop; nop;\n\t" \
148 * The 24K has a 2 cycle mtc0/mfc0 execution hazard.
149 * It is a MIPS32R2 processor so ehb will clear the hazard.
152 #ifdef CONFIG_CPU_MIPSR2
154 * Use a macro for ehb unless explicit support for MIPSR2 is enabled
157 " .macro\tirq_enable_hazard \n\t"
161 " .macro\tirq_disable_hazard \n\t"
165 #define irq_enable_hazard() \
166 __asm__ __volatile__( \
167 "_ehb\t\t\t\t# irq_enable_hazard")
169 #define irq_disable_hazard() \
170 __asm__ __volatile__( \
171 "_ehb\t\t\t\t# irq_disable_hazard")
173 #elif defined(CONFIG_CPU_R10000) || defined(CONFIG_CPU_RM9000)
176 * R10000 rocks - all hazards handled in hardware, so this becomes a nobrainer.
180 " .macro\tirq_enable_hazard \n\t"
183 " .macro\tirq_disable_hazard \n\t"
186 #define irq_enable_hazard() do { } while (0)
187 #define irq_disable_hazard() do { } while (0)
192 * Default for classic MIPS processors. Assume worst case hazards but don't
193 * care about the irq_enable_hazard - sooner or later the hardware will
194 * enable it and we don't care when exactly.
199 " # There is a hazard but we do not care \n\t"
201 " .macro\tirq_enable_hazard \n\t"
204 " .macro\tirq_disable_hazard \n\t"
205 " _ssnop; _ssnop; _ssnop \n\t"
208 #define irq_enable_hazard() do { } while (0)
209 #define irq_disable_hazard() \
210 __asm__ __volatile__( \
211 "_ssnop; _ssnop; _ssnop;\t\t# irq_disable_hazard")
215 #endif /* __ASSEMBLY__ */
217 #endif /* _ASM_HAZARDS_H */