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 #include <asm/irqflags.h>
12 #include <asm/hazards.h>
13 #include <linux/compiler.h>
14 #include <linux/preempt.h>
15 #include <linux/export.h>
16 #include <linux/stringify.h>
18 #if !defined(CONFIG_CPU_MIPSR2) && !defined(CONFIG_CPU_MIPSR6)
21 * For cli() we have to insert nops to make sure that the new value
22 * has actually arrived in the status register before the end of this
24 * R4000/R4400 need three nops, the R4600 two nops and the R10000 needs
28 * For TX49, operating only IE bit is not enough.
30 * If mfc0 $12 follows store and the mfc0 is last instruction of a
31 * page and fetching the next instruction causes TLB miss, the result
32 * of the mfc0 might wrongly contain EXL bit.
34 * ERT-TX49H2-027, ERT-TX49H3-012, ERT-TX49HL3-006, ERT-TX49H4-008
36 * Workaround: mask EXL bit of the result or place a nop before mfc0.
38 notrace
void arch_local_irq_disable(void)
50 " " __stringify(__irq_disable_hazard
) " \n"
58 EXPORT_SYMBOL(arch_local_irq_disable
);
60 notrace
unsigned long arch_local_irq_save(void)
70 " mfc0 %[flags], $12 \n"
71 " ori $1, %[flags], 0x1f \n"
75 " " __stringify(__irq_disable_hazard
) " \n"
77 : [flags
] "=r" (flags
)
85 EXPORT_SYMBOL(arch_local_irq_save
);
87 notrace
void arch_local_irq_restore(unsigned long flags
)
98 " andi %[flags], 1 \n"
101 " or %[flags], $1 \n"
102 " mtc0 %[flags], $12 \n"
103 " " __stringify(__irq_disable_hazard
) " \n"
105 : [flags
] "=r" (__tmp1
)
111 EXPORT_SYMBOL(arch_local_irq_restore
);
113 #endif /* !CONFIG_CPU_MIPSR2 && !CONFIG_CPU_MIPSR6 */