added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / include / linux / hardirq.h
blobff9599cdffb5f9d850c97d51041b49597fa643df
1 #ifndef LINUX_HARDIRQ_H
2 #define LINUX_HARDIRQ_H
4 #include <linux/preempt.h>
5 #include <linux/smp_lock.h>
6 #include <linux/lockdep.h>
7 #include <linux/ftrace_irq.h>
8 #include <asm/hardirq.h>
9 #include <asm/system.h>
12 * We put the hardirq and softirq counter into the preemption
13 * counter. The bitmask has the following meaning:
15 * - bits 0-7 are the preemption count (max preemption depth: 256)
16 * - bits 8-15 are the softirq count (max # of softirqs: 256)
18 * The hardirq count can in theory reach the same as NR_IRQS.
19 * In reality, the number of nested IRQS is limited to the stack
20 * size as well. For archs with over 1000 IRQS it is not practical
21 * to expect that they will all nest. We give a max of 10 bits for
22 * hardirq nesting. An arch may choose to give less than 10 bits.
23 * m68k expects it to be 8.
25 * - bits 16-25 are the hardirq count (max # of nested hardirqs: 1024)
26 * - bit 26 is the NMI_MASK
27 * - bit 28 is the PREEMPT_ACTIVE flag
29 * PREEMPT_MASK: 0x000000ff
30 * SOFTIRQ_MASK: 0x0000ff00
31 * HARDIRQ_MASK: 0x03ff0000
32 * NMI_MASK: 0x04000000
34 #define PREEMPT_BITS 8
35 #define SOFTIRQ_BITS 8
36 #define NMI_BITS 1
38 #define MAX_HARDIRQ_BITS 10
40 #ifndef HARDIRQ_BITS
41 # define HARDIRQ_BITS MAX_HARDIRQ_BITS
42 #endif
44 #if HARDIRQ_BITS > MAX_HARDIRQ_BITS
45 #error HARDIRQ_BITS too high!
46 #endif
48 #define PREEMPT_SHIFT 0
49 #define SOFTIRQ_SHIFT (PREEMPT_SHIFT + PREEMPT_BITS)
50 #define HARDIRQ_SHIFT (SOFTIRQ_SHIFT + SOFTIRQ_BITS)
51 #define NMI_SHIFT (HARDIRQ_SHIFT + HARDIRQ_BITS)
53 #define __IRQ_MASK(x) ((1UL << (x))-1)
55 #define PREEMPT_MASK (__IRQ_MASK(PREEMPT_BITS) << PREEMPT_SHIFT)
56 #define SOFTIRQ_MASK (__IRQ_MASK(SOFTIRQ_BITS) << SOFTIRQ_SHIFT)
57 #define HARDIRQ_MASK (__IRQ_MASK(HARDIRQ_BITS) << HARDIRQ_SHIFT)
58 #define NMI_MASK (__IRQ_MASK(NMI_BITS) << NMI_SHIFT)
60 #define PREEMPT_OFFSET (1UL << PREEMPT_SHIFT)
61 #define SOFTIRQ_OFFSET (1UL << SOFTIRQ_SHIFT)
62 #define HARDIRQ_OFFSET (1UL << HARDIRQ_SHIFT)
63 #define NMI_OFFSET (1UL << NMI_SHIFT)
65 #if PREEMPT_ACTIVE < (1 << (NMI_SHIFT + NMI_BITS))
66 #error PREEMPT_ACTIVE is too low!
67 #endif
69 #define hardirq_count() (preempt_count() & HARDIRQ_MASK)
70 #define softirq_count() (preempt_count() & SOFTIRQ_MASK)
71 #define irq_count() (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK \
72 | NMI_MASK))
75 * Are we doing bottom half or hardware interrupt processing?
76 * Are we in a softirq context? Interrupt context?
78 #define in_irq() (hardirq_count() || (current->flags & PF_HARDIRQ))
79 #define in_softirq() (softirq_count() || (current->flags & PF_SOFTIRQ))
80 #define in_interrupt() (irq_count())
83 * Are we in NMI context?
85 #define in_nmi() (preempt_count() & NMI_MASK)
88 * Are we running in atomic context? WARNING: this macro cannot
89 * always detect atomic context; in particular, it cannot know about
90 * held spinlocks in non-preemptible kernels. Thus it should not be
91 * used in the general case to determine whether sleeping is possible.
92 * Do not use in_atomic() in driver code.
94 #define in_atomic() ((preempt_count() & ~PREEMPT_ACTIVE) != 0)
96 #ifdef CONFIG_PREEMPT
97 # define preemptible() (preempt_count() == 0 && !irqs_disabled())
98 # define IRQ_EXIT_OFFSET (HARDIRQ_OFFSET-1)
99 #else
100 # define preemptible() 0
101 # define IRQ_EXIT_OFFSET HARDIRQ_OFFSET
102 #endif
104 #ifdef CONFIG_SMP
105 extern void synchronize_irq(unsigned int irq);
106 #else
107 # define synchronize_irq(irq) barrier()
108 #endif
110 struct task_struct;
112 #ifndef CONFIG_VIRT_CPU_ACCOUNTING
113 static inline void account_system_vtime(struct task_struct *tsk)
116 #endif
118 #if defined(CONFIG_NO_HZ) && !defined(CONFIG_CLASSIC_RCU)
119 extern void rcu_irq_enter(void);
120 extern void rcu_irq_exit(void);
121 extern void rcu_nmi_enter(void);
122 extern void rcu_nmi_exit(void);
123 #else
124 # define rcu_irq_enter() do { } while (0)
125 # define rcu_irq_exit() do { } while (0)
126 # define rcu_nmi_enter() do { } while (0)
127 # define rcu_nmi_exit() do { } while (0)
128 #endif /* #if defined(CONFIG_NO_HZ) && !defined(CONFIG_CLASSIC_RCU) */
131 * It is safe to do non-atomic ops on ->hardirq_context,
132 * because NMI handlers may not preempt and the ops are
133 * always balanced, so the interrupted value of ->hardirq_context
134 * will always be restored.
136 #define __irq_enter() \
137 do { \
138 account_system_vtime(current); \
139 add_preempt_count(HARDIRQ_OFFSET); \
140 trace_hardirq_enter(); \
141 } while (0)
144 * Enter irq context (on NO_HZ, update jiffies):
146 extern void irq_enter(void);
149 * Exit irq context without processing softirqs:
151 #define __irq_exit() \
152 do { \
153 trace_hardirq_exit(); \
154 account_system_vtime(current); \
155 sub_preempt_count(HARDIRQ_OFFSET); \
156 } while (0)
159 * Exit irq context and process softirqs if needed:
161 extern void irq_exit(void);
163 #define nmi_enter() \
164 do { \
165 ftrace_nmi_enter(); \
166 BUG_ON(in_nmi()); \
167 add_preempt_count(NMI_OFFSET + HARDIRQ_OFFSET); \
168 lockdep_off(); \
169 rcu_nmi_enter(); \
170 trace_hardirq_enter(); \
171 } while (0)
173 #define nmi_exit() \
174 do { \
175 trace_hardirq_exit(); \
176 rcu_nmi_exit(); \
177 lockdep_on(); \
178 BUG_ON(!in_nmi()); \
179 sub_preempt_count(NMI_OFFSET + HARDIRQ_OFFSET); \
180 ftrace_nmi_exit(); \
181 } while (0)
183 #endif /* LINUX_HARDIRQ_H */