2 * SHmedia irqflags support
4 * Copyright (C) 2006 - 2009 Paul Mundt
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 #include <linux/irqflags.h>
11 #include <linux/module.h>
12 #include <cpu/registers.h>
14 void notrace
raw_local_irq_restore(unsigned long flags
)
16 unsigned long long __dummy
;
18 if (flags
== RAW_IRQ_DISABLED
) {
19 __asm__
__volatile__ (
20 "getcon " __SR
", %0\n\t"
22 "putcon %0, " __SR
"\n\t"
24 : "r" (RAW_IRQ_DISABLED
)
27 __asm__
__volatile__ (
28 "getcon " __SR
", %0\n\t"
30 "putcon %0, " __SR
"\n\t"
32 : "r" (~RAW_IRQ_DISABLED
)
36 EXPORT_SYMBOL(raw_local_irq_restore
);
38 unsigned long notrace
__raw_local_save_flags(void)
42 __asm__
__volatile__ (
43 "getcon " __SR
", %0\n\t"
46 : "r" (RAW_IRQ_DISABLED
)
51 EXPORT_SYMBOL(__raw_local_save_flags
);