sched: Fix cpupri build on !CONFIG_SMP
[deliverable/linux.git] / include / linux / hardirq.h
CommitLineData
1da177e4
LT
1#ifndef LINUX_HARDIRQ_H
2#define LINUX_HARDIRQ_H
3
67bc4eb0 4#include <linux/preempt.h>
405f5571 5#ifdef CONFIG_PREEMPT
1da177e4 6#include <linux/smp_lock.h>
405f5571 7#endif
fbb9ce95 8#include <linux/lockdep.h>
6a60dd12 9#include <linux/ftrace_irq.h>
1da177e4
LT
10#include <asm/hardirq.h>
11#include <asm/system.h>
12
13/*
14 * We put the hardirq and softirq counter into the preemption
15 * counter. The bitmask has the following meaning:
16 *
17 * - bits 0-7 are the preemption count (max preemption depth: 256)
18 * - bits 8-15 are the softirq count (max # of softirqs: 256)
19 *
5a5fb7db
SR
20 * The hardirq count can in theory reach the same as NR_IRQS.
21 * In reality, the number of nested IRQS is limited to the stack
22 * size as well. For archs with over 1000 IRQS it is not practical
23 * to expect that they will all nest. We give a max of 10 bits for
24 * hardirq nesting. An arch may choose to give less than 10 bits.
25 * m68k expects it to be 8.
1da177e4 26 *
5a5fb7db
SR
27 * - bits 16-25 are the hardirq count (max # of nested hardirqs: 1024)
28 * - bit 26 is the NMI_MASK
29 * - bit 28 is the PREEMPT_ACTIVE flag
1da177e4
LT
30 *
31 * PREEMPT_MASK: 0x000000ff
32 * SOFTIRQ_MASK: 0x0000ff00
5a5fb7db
SR
33 * HARDIRQ_MASK: 0x03ff0000
34 * NMI_MASK: 0x04000000
1da177e4
LT
35 */
36#define PREEMPT_BITS 8
37#define SOFTIRQ_BITS 8
5a5fb7db 38#define NMI_BITS 1
1da177e4 39
5a5fb7db 40#define MAX_HARDIRQ_BITS 10
23d0b8b0 41
5a5fb7db
SR
42#ifndef HARDIRQ_BITS
43# define HARDIRQ_BITS MAX_HARDIRQ_BITS
23d0b8b0
EB
44#endif
45
5a5fb7db
SR
46#if HARDIRQ_BITS > MAX_HARDIRQ_BITS
47#error HARDIRQ_BITS too high!
1da177e4
LT
48#endif
49
50#define PREEMPT_SHIFT 0
51#define SOFTIRQ_SHIFT (PREEMPT_SHIFT + PREEMPT_BITS)
52#define HARDIRQ_SHIFT (SOFTIRQ_SHIFT + SOFTIRQ_BITS)
5a5fb7db 53#define NMI_SHIFT (HARDIRQ_SHIFT + HARDIRQ_BITS)
1da177e4
LT
54
55#define __IRQ_MASK(x) ((1UL << (x))-1)
56
57#define PREEMPT_MASK (__IRQ_MASK(PREEMPT_BITS) << PREEMPT_SHIFT)
1da177e4 58#define SOFTIRQ_MASK (__IRQ_MASK(SOFTIRQ_BITS) << SOFTIRQ_SHIFT)
8f28e8fa 59#define HARDIRQ_MASK (__IRQ_MASK(HARDIRQ_BITS) << HARDIRQ_SHIFT)
5a5fb7db 60#define NMI_MASK (__IRQ_MASK(NMI_BITS) << NMI_SHIFT)
1da177e4
LT
61
62#define PREEMPT_OFFSET (1UL << PREEMPT_SHIFT)
63#define SOFTIRQ_OFFSET (1UL << SOFTIRQ_SHIFT)
64#define HARDIRQ_OFFSET (1UL << HARDIRQ_SHIFT)
5a5fb7db 65#define NMI_OFFSET (1UL << NMI_SHIFT)
1da177e4 66
5a5fb7db 67#if PREEMPT_ACTIVE < (1 << (NMI_SHIFT + NMI_BITS))
8f28e8fa
PBG
68#error PREEMPT_ACTIVE is too low!
69#endif
70
1da177e4
LT
71#define hardirq_count() (preempt_count() & HARDIRQ_MASK)
72#define softirq_count() (preempt_count() & SOFTIRQ_MASK)
5a5fb7db
SR
73#define irq_count() (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK \
74 | NMI_MASK))
1da177e4
LT
75
76/*
77 * Are we doing bottom half or hardware interrupt processing?
78 * Are we in a softirq context? Interrupt context?
79 */
80#define in_irq() (hardirq_count())
81#define in_softirq() (softirq_count())
82#define in_interrupt() (irq_count())
83
375b38b4
SR
84/*
85 * Are we in NMI context?
86 */
5a5fb7db 87#define in_nmi() (preempt_count() & NMI_MASK)
375b38b4 88
8e3e076c
LT
89#if defined(CONFIG_PREEMPT)
90# define PREEMPT_INATOMIC_BASE kernel_locked()
91# define PREEMPT_CHECK_OFFSET 1
92#else
93# define PREEMPT_INATOMIC_BASE 0
94# define PREEMPT_CHECK_OFFSET 0
95#endif
96
8c703d35
JC
97/*
98 * Are we running in atomic context? WARNING: this macro cannot
99 * always detect atomic context; in particular, it cannot know about
100 * held spinlocks in non-preemptible kernels. Thus it should not be
101 * used in the general case to determine whether sleeping is possible.
102 * Do not use in_atomic() in driver code.
103 */
8e3e076c 104#define in_atomic() ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_INATOMIC_BASE)
4da1ce6d
IM
105
106/*
107 * Check whether we were atomic before we did preempt_disable():
8e3e076c 108 * (used by the scheduler, *after* releasing the kernel lock)
4da1ce6d
IM
109 */
110#define in_atomic_preempt_off() \
111 ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_CHECK_OFFSET)
112
1da177e4
LT
113#ifdef CONFIG_PREEMPT
114# define preemptible() (preempt_count() == 0 && !irqs_disabled())
115# define IRQ_EXIT_OFFSET (HARDIRQ_OFFSET-1)
116#else
117# define preemptible() 0
118# define IRQ_EXIT_OFFSET HARDIRQ_OFFSET
119#endif
120
3aa551c9 121#if defined(CONFIG_SMP) || defined(CONFIG_GENERIC_HARDIRQS)
1da177e4
LT
122extern void synchronize_irq(unsigned int irq);
123#else
124# define synchronize_irq(irq) barrier()
125#endif
126
f037360f
AV
127struct task_struct;
128
1da177e4 129#ifndef CONFIG_VIRT_CPU_ACCOUNTING
1da177e4
LT
130static inline void account_system_vtime(struct task_struct *tsk)
131{
132}
133#endif
134
64db4cff 135#if defined(CONFIG_NO_HZ) && !defined(CONFIG_CLASSIC_RCU)
2232c2d8
SR
136extern void rcu_irq_enter(void);
137extern void rcu_irq_exit(void);
64db4cff
PM
138extern void rcu_nmi_enter(void);
139extern void rcu_nmi_exit(void);
2232c2d8
SR
140#else
141# define rcu_irq_enter() do { } while (0)
142# define rcu_irq_exit() do { } while (0)
64db4cff
PM
143# define rcu_nmi_enter() do { } while (0)
144# define rcu_nmi_exit() do { } while (0)
145#endif /* #if defined(CONFIG_NO_HZ) && !defined(CONFIG_CLASSIC_RCU) */
2232c2d8 146
de30a2b3
IM
147/*
148 * It is safe to do non-atomic ops on ->hardirq_context,
149 * because NMI handlers may not preempt and the ops are
150 * always balanced, so the interrupted value of ->hardirq_context
151 * will always be restored.
152 */
79bf2bb3
TG
153#define __irq_enter() \
154 do { \
155 account_system_vtime(current); \
156 add_preempt_count(HARDIRQ_OFFSET); \
157 trace_hardirq_enter(); \
158 } while (0)
159
160/*
161 * Enter irq context (on NO_HZ, update jiffies):
162 */
dde4b2b5 163extern void irq_enter(void);
de30a2b3
IM
164
165/*
166 * Exit irq context without processing softirqs:
167 */
168#define __irq_exit() \
169 do { \
170 trace_hardirq_exit(); \
171 account_system_vtime(current); \
172 sub_preempt_count(HARDIRQ_OFFSET); \
1da177e4
LT
173 } while (0)
174
de30a2b3
IM
175/*
176 * Exit irq context and process softirqs if needed:
177 */
1da177e4
LT
178extern void irq_exit(void);
179
2a7b8df0
SR
180#define nmi_enter() \
181 do { \
182 ftrace_nmi_enter(); \
183 BUG_ON(in_nmi()); \
184 add_preempt_count(NMI_OFFSET + HARDIRQ_OFFSET); \
185 lockdep_off(); \
186 rcu_nmi_enter(); \
187 trace_hardirq_enter(); \
17666f02 188 } while (0)
5f34fe1c 189
2a7b8df0
SR
190#define nmi_exit() \
191 do { \
192 trace_hardirq_exit(); \
193 rcu_nmi_exit(); \
194 lockdep_on(); \
195 BUG_ON(!in_nmi()); \
196 sub_preempt_count(NMI_OFFSET + HARDIRQ_OFFSET); \
197 ftrace_nmi_exit(); \
17666f02 198 } while (0)
de30a2b3 199
1da177e4 200#endif /* LINUX_HARDIRQ_H */
This page took 0.59505 seconds and 5 git commands to generate.