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 " .macro local_irq_disable\n"
54 #ifdef CONFIG_CPU_MIPSR2
63 " irq_disable_hazard \n"
67 static inline void local_irq_disable(void)
77 " .macro local_save_flags flags \n"
80 " mfc0 \\flags, $12 \n"
84 #define local_save_flags(x) \
85 __asm__ __volatile__( \
86 "local_save_flags %0" \
90 " .macro local_irq_save result \n"
94 #ifdef CONFIG_CPU_MIPSR2
97 " mfc0 \\result, $12 \n"
98 " ori $1, \\result, 1 \n"
103 " irq_disable_hazard \n"
107 #define local_irq_save(x) \
108 __asm__ __volatile__( \
109 "local_irq_save\t%0" \
115 " .macro local_irq_restore flags \n"
118 #if defined(CONFIG_CPU_MIPSR2) && defined(CONFIG_IRQ_CPU)
120 * Slow, but doesn't suffer from a relativly unlikely race
121 * condition we're having since days 1.
123 " beqz \\flags, 1f \n"
127 #elif defined(CONFIG_CPU_MIPSR2)
129 * Fast, dangerous. Life is fun, life is good.
132 " ins $1, \\flags, 0, 1 \n"
136 " andi \\flags, 1 \n"
140 " mtc0 \\flags, $12 \n"
142 " irq_disable_hazard \n"
147 #define local_irq_restore(flags) \
149 unsigned long __tmp1; \
151 __asm__ __volatile__( \
152 "local_irq_restore\t%0" \
158 #define irqs_disabled() \
160 unsigned long flags; \
161 local_save_flags(flags); \
165 #endif /* _ASM_INTERRUPT_H */