blob: 23cd27f6beb47e689842fbfdafc3bbf5826c7977 [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
David S. Millerb4f43722008-11-23 21:55:29 -080013#include <asm/pil.h>
14
Sam Ravnborga439fe52008-07-27 23:00:59 +020015#ifndef __ASSEMBLY__
16
Steven Rostedt18d85bc2011-07-06 08:00:29 -070017static inline notrace unsigned long arch_local_save_flags(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020018{
19 unsigned long flags;
20
21 __asm__ __volatile__(
22 "rdpr %%pil, %0"
23 : "=r" (flags)
24 );
25
26 return flags;
27}
28
Steven Rostedt18d85bc2011-07-06 08:00:29 -070029static inline notrace void arch_local_irq_restore(unsigned long flags)
Sam Ravnborga439fe52008-07-27 23:00:59 +020030{
31 __asm__ __volatile__(
32 "wrpr %0, %%pil"
33 : /* no output */
34 : "r" (flags)
35 : "memory"
36 );
37}
38
Steven Rostedt18d85bc2011-07-06 08:00:29 -070039static inline notrace void arch_local_irq_disable(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020040{
41 __asm__ __volatile__(
David S. Millerb4f43722008-11-23 21:55:29 -080042 "wrpr %0, %%pil"
Sam Ravnborga439fe52008-07-27 23:00:59 +020043 : /* no outputs */
David S. Millerb4f43722008-11-23 21:55:29 -080044 : "i" (PIL_NORMAL_MAX)
Sam Ravnborga439fe52008-07-27 23:00:59 +020045 : "memory"
46 );
47}
48
Steven Rostedt18d85bc2011-07-06 08:00:29 -070049static inline notrace void arch_local_irq_enable(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020050{
51 __asm__ __volatile__(
52 "wrpr 0, %%pil"
53 : /* no outputs */
54 : /* no inputs */
55 : "memory"
56 );
57}
58
Steven Rostedt18d85bc2011-07-06 08:00:29 -070059static inline notrace int arch_irqs_disabled_flags(unsigned long flags)
Sam Ravnborga439fe52008-07-27 23:00:59 +020060{
61 return (flags > 0);
62}
63
Steven Rostedt18d85bc2011-07-06 08:00:29 -070064static inline notrace int arch_irqs_disabled(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020065{
David Howellsdf9ee292010-10-07 14:08:55 +010066 return arch_irqs_disabled_flags(arch_local_save_flags());
Sam Ravnborga439fe52008-07-27 23:00:59 +020067}
68
Steven Rostedt18d85bc2011-07-06 08:00:29 -070069static inline notrace unsigned long arch_local_irq_save(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020070{
David S. Miller0c25e9e2010-04-12 22:21:52 -070071 unsigned long flags, tmp;
Sam Ravnborga439fe52008-07-27 23:00:59 +020072
David S. Miller0c25e9e2010-04-12 22:21:52 -070073 /* Disable interrupts to PIL_NORMAL_MAX unless we already
74 * are using PIL_NMI, in which case PIL_NMI is retained.
David S. Millerc011f802010-04-13 01:50:43 -070075 *
76 * The only values we ever program into the %pil are 0,
77 * PIL_NORMAL_MAX and PIL_NMI.
78 *
79 * Since PIL_NMI is the largest %pil value and all bits are
80 * set in it (0xf), it doesn't matter what PIL_NORMAL_MAX
81 * actually is.
David S. Miller0c25e9e2010-04-12 22:21:52 -070082 */
83 __asm__ __volatile__(
84 "rdpr %%pil, %0\n\t"
85 "or %0, %2, %1\n\t"
86 "wrpr %1, 0x0, %%pil"
87 : "=r" (flags), "=r" (tmp)
88 : "i" (PIL_NORMAL_MAX)
89 : "memory"
90 );
Sam Ravnborga439fe52008-07-27 23:00:59 +020091
92 return flags;
93}
94
Sam Ravnborga439fe52008-07-27 23:00:59 +020095#endif /* (__ASSEMBLY__) */
96
97#endif /* !(_ASM_IRQFLAGS_H) */