2008-07-18 06:55:51 +02:00
|
|
|
/*
|
2008-07-27 23:00:59 +02:00
|
|
|
* include/asm/irqflags.h
|
2008-07-18 06:55:51 +02:00
|
|
|
*
|
|
|
|
* IRQ flags handling
|
|
|
|
*
|
|
|
|
* This file gets included from lowlevel asm headers too, to provide
|
|
|
|
* wrapped versions of the local_irq_*() APIs, based on the
|
2010-10-07 15:08:55 +02:00
|
|
|
* arch_local_irq_*() functions from the lowlevel headers.
|
2008-07-18 06:55:51 +02:00
|
|
|
*/
|
|
|
|
#ifndef _ASM_IRQFLAGS_H
|
|
|
|
#define _ASM_IRQFLAGS_H
|
|
|
|
|
2008-11-24 06:55:29 +01:00
|
|
|
#include <asm/pil.h>
|
|
|
|
|
2008-07-18 06:55:51 +02:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2011-07-06 17:00:29 +02:00
|
|
|
static inline notrace unsigned long arch_local_save_flags(void)
|
2008-07-18 06:55:51 +02:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
"rdpr %%pil, %0"
|
|
|
|
: "=r" (flags)
|
|
|
|
);
|
|
|
|
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2011-07-06 17:00:29 +02:00
|
|
|
static inline notrace void arch_local_irq_restore(unsigned long flags)
|
2008-07-18 06:55:51 +02:00
|
|
|
{
|
|
|
|
__asm__ __volatile__(
|
|
|
|
"wrpr %0, %%pil"
|
|
|
|
: /* no output */
|
|
|
|
: "r" (flags)
|
|
|
|
: "memory"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-07-06 17:00:29 +02:00
|
|
|
static inline notrace void arch_local_irq_disable(void)
|
2008-07-18 06:55:51 +02:00
|
|
|
{
|
|
|
|
__asm__ __volatile__(
|
2008-11-24 06:55:29 +01:00
|
|
|
"wrpr %0, %%pil"
|
2008-07-18 06:55:51 +02:00
|
|
|
: /* no outputs */
|
2008-11-24 06:55:29 +01:00
|
|
|
: "i" (PIL_NORMAL_MAX)
|
2008-07-18 06:55:51 +02:00
|
|
|
: "memory"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-07-06 17:00:29 +02:00
|
|
|
static inline notrace void arch_local_irq_enable(void)
|
2008-07-18 06:55:51 +02:00
|
|
|
{
|
|
|
|
__asm__ __volatile__(
|
|
|
|
"wrpr 0, %%pil"
|
|
|
|
: /* no outputs */
|
|
|
|
: /* no inputs */
|
|
|
|
: "memory"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-07-06 17:00:29 +02:00
|
|
|
static inline notrace int arch_irqs_disabled_flags(unsigned long flags)
|
2008-07-18 06:55:51 +02:00
|
|
|
{
|
|
|
|
return (flags > 0);
|
|
|
|
}
|
|
|
|
|
2011-07-06 17:00:29 +02:00
|
|
|
static inline notrace int arch_irqs_disabled(void)
|
2008-07-18 06:55:51 +02:00
|
|
|
{
|
2010-10-07 15:08:55 +02:00
|
|
|
return arch_irqs_disabled_flags(arch_local_save_flags());
|
2008-07-18 06:55:51 +02:00
|
|
|
}
|
|
|
|
|
2011-07-06 17:00:29 +02:00
|
|
|
static inline notrace unsigned long arch_local_irq_save(void)
|
2008-07-18 06:55:51 +02:00
|
|
|
{
|
2010-04-13 07:21:52 +02:00
|
|
|
unsigned long flags, tmp;
|
2008-07-18 06:55:51 +02:00
|
|
|
|
2010-04-13 07:21:52 +02:00
|
|
|
/* Disable interrupts to PIL_NORMAL_MAX unless we already
|
|
|
|
* are using PIL_NMI, in which case PIL_NMI is retained.
|
2010-04-13 10:50:43 +02:00
|
|
|
*
|
|
|
|
* The only values we ever program into the %pil are 0,
|
|
|
|
* PIL_NORMAL_MAX and PIL_NMI.
|
|
|
|
*
|
|
|
|
* Since PIL_NMI is the largest %pil value and all bits are
|
|
|
|
* set in it (0xf), it doesn't matter what PIL_NORMAL_MAX
|
|
|
|
* actually is.
|
2010-04-13 07:21:52 +02:00
|
|
|
*/
|
|
|
|
__asm__ __volatile__(
|
|
|
|
"rdpr %%pil, %0\n\t"
|
|
|
|
"or %0, %2, %1\n\t"
|
|
|
|
"wrpr %1, 0x0, %%pil"
|
|
|
|
: "=r" (flags), "=r" (tmp)
|
|
|
|
: "i" (PIL_NORMAL_MAX)
|
|
|
|
: "memory"
|
|
|
|
);
|
2008-07-18 06:55:51 +02:00
|
|
|
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* (__ASSEMBLY__) */
|
|
|
|
|
|
|
|
#endif /* !(_ASM_IRQFLAGS_H) */
|