1 #ifndef _M68K_IRQFLAGS_H
2 #define _M68K_IRQFLAGS_H
4 #include <linux/types.h>
6 #include <linux/hardirq.h>
8 #include <linux/preempt.h>
9 #include <asm/thread_info.h>
10 #include <asm/entry.h>
12 static inline unsigned long arch_local_save_flags(void)
15 asm volatile ("movew %%sr,%0" : "=d" (flags
) : : "memory");
19 static inline void arch_local_irq_disable(void)
21 #ifdef CONFIG_COLDFIRE
24 "ori.l #0x0700,%%d0 \n\t"
28 : "cc", "%d0", "memory");
30 asm volatile ("oriw #0x0700,%%sr" : : : "memory");
34 static inline void arch_local_irq_enable(void)
36 #if defined(CONFIG_COLDFIRE)
39 "andi.l #0xf8ff,%%d0 \n\t"
43 : "cc", "%d0", "memory");
45 # if defined(CONFIG_MMU)
46 if (MACH_IS_Q40
|| !hardirq_count())
56 static inline unsigned long arch_local_irq_save(void)
58 unsigned long flags
= arch_local_save_flags();
59 arch_local_irq_disable();
63 static inline void arch_local_irq_restore(unsigned long flags
)
65 asm volatile ("movew %0,%%sr" : : "d" (flags
) : "memory");
68 static inline bool arch_irqs_disabled_flags(unsigned long flags
)
70 return (flags
& ~ALLOWINT
) != 0;
73 static inline bool arch_irqs_disabled(void)
75 return arch_irqs_disabled_flags(arch_local_save_flags());
78 #endif /* _M68K_IRQFLAGS_H */