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) 1994, 95, 96, 97, 98, 99, 2003 by Ralf Baechle
7 * Copyright (C) 1996 by Paul M. Antoine
8 * Copyright (C) 1999 Silicon Graphics
9 * Copyright (C) 2000 MIPS Technologies, Inc.
11 #ifndef _ASM_INTERRUPT_H
12 #define _ASM_INTERRUPT_H
14 #include <linux/config.h>
15 #include <asm/hazards.h>
18 " .macro local_irq_enable \n"
22 #ifdef CONFIG_CPU_MIPSR2
30 " irq_enable_hazard \n"
34 static inline void local_irq_enable(void)
44 * For cli() we have to insert nops to make sure that the new value
45 * has actually arrived in the status register before the end of this
47 * R4000/R4400 need three nops, the R4600 two nops and the R10000 needs
51 * For TX49, operating only IE bit is not enough.
53 * If mfc0 $12 follows store and the mfc0 is last instruction of a
54 * page and fetching the next instruction causes TLB miss, the result
55 * of the mfc0 might wrongly contain EXL bit.
57 * ERT-TX49H2-027, ERT-TX49H3-012, ERT-TX49HL3-006, ERT-TX49H4-008
59 * Workaround: mask EXL bit of the result or place a nop before mfc0.
62 " .macro local_irq_disable\n"
65 #ifdef CONFIG_CPU_MIPSR2
74 " irq_disable_hazard \n"
78 static inline void local_irq_disable(void)
88 " .macro local_save_flags flags \n"
91 " mfc0 \\flags, $12 \n"
95 #define local_save_flags(x) \
96 __asm__ __volatile__( \
97 "local_save_flags %0" \
101 " .macro local_irq_save result \n"
105 #ifdef CONFIG_CPU_MIPSR2
107 " andi \\result, 1 \n"
109 " mfc0 \\result, $12 \n"
110 " ori $1, \\result, 0x1f \n"
115 " irq_disable_hazard \n"
119 #define local_irq_save(x) \
120 __asm__ __volatile__( \
121 "local_irq_save\t%0" \
127 " .macro local_irq_restore flags \n"
131 #if defined(CONFIG_CPU_MIPSR2) && defined(CONFIG_IRQ_CPU)
133 * Slow, but doesn't suffer from a relativly unlikely race
134 * condition we're having since days 1.
136 " beqz \\flags, 1f \n"
140 #elif defined(CONFIG_CPU_MIPSR2)
142 * Fast, dangerous. Life is fun, life is good.
145 " ins $1, \\flags, 0, 1 \n"
149 " andi \\flags, 1 \n"
153 " mtc0 \\flags, $12 \n"
155 " irq_disable_hazard \n"
159 #define local_irq_restore(flags) \
161 unsigned long __tmp1; \
163 __asm__ __volatile__( \
164 "local_irq_restore\t%0" \
170 #define irqs_disabled() \
172 unsigned long flags; \
173 local_save_flags(flags); \
177 #endif /* _ASM_INTERRUPT_H */