blob: d4d0711de0f9f5031439927d02517d6a5e743509 [file] [log] [blame]
Sam Ravnborga439fe52008-07-27 23:00:59 +02001/*
2 * include/asm/irqflags.h
3 *
4 * IRQ flags handling
5 *
6 * This file gets included from lowlevel asm headers too, to provide
7 * wrapped versions of the local_irq_*() APIs, based on the
David Howellsdf9ee292010-10-07 14:08:55 +01008 * arch_local_irq_*() functions from the lowlevel headers.
Sam Ravnborga439fe52008-07-27 23:00:59 +02009 */
10#ifndef _ASM_IRQFLAGS_H
11#define _ASM_IRQFLAGS_H
12
13#ifndef __ASSEMBLY__
14
David Howellsdf9ee292010-10-07 14:08:55 +010015#include <linux/types.h>
Sam Ravnborga439fe52008-07-27 23:00:59 +020016
David Howellsdf9ee292010-10-07 14:08:55 +010017extern void arch_local_irq_restore(unsigned long);
18extern unsigned long arch_local_irq_save(void);
19extern void arch_local_irq_enable(void);
20
21static inline unsigned long arch_local_save_flags(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020022{
David Howellsdf9ee292010-10-07 14:08:55 +010023 unsigned long flags;
Sam Ravnborga439fe52008-07-27 23:00:59 +020024
David Howellsdf9ee292010-10-07 14:08:55 +010025 asm volatile("rd %%psr, %0" : "=r" (flags));
26 return flags;
Sam Ravnborga439fe52008-07-27 23:00:59 +020027}
28
David Howellsdf9ee292010-10-07 14:08:55 +010029static inline void arch_local_irq_disable(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020030{
David Howellsdf9ee292010-10-07 14:08:55 +010031 arch_local_irq_save();
32}
33
34static inline bool arch_irqs_disabled_flags(unsigned long flags)
35{
36 return (flags & PSR_PIL) != 0;
37}
38
39static inline bool arch_irqs_disabled(void)
40{
41 return arch_irqs_disabled_flags(arch_local_save_flags());
Sam Ravnborga439fe52008-07-27 23:00:59 +020042}
43
44#endif /* (__ASSEMBLY__) */
45
46#endif /* !(_ASM_IRQFLAGS_H) */