blob: 714da7e5d10c3aadccf1a3a8b0038d9594139b22 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef LINUX_HARDIRQ_H
2#define LINUX_HARDIRQ_H
3
Randy Dunlap67bc4eb2005-07-12 13:58:36 -07004#include <linux/preempt.h>
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07005#include <linux/lockdep.h>
Steven Rostedt6a60dd12008-11-06 15:55:21 -05006#include <linux/ftrace_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <asm/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9/*
10 * We put the hardirq and softirq counter into the preemption
11 * counter. The bitmask has the following meaning:
12 *
13 * - bits 0-7 are the preemption count (max preemption depth: 256)
14 * - bits 8-15 are the softirq count (max # of softirqs: 256)
15 *
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050016 * The hardirq count can in theory reach the same as NR_IRQS.
17 * In reality, the number of nested IRQS is limited to the stack
18 * size as well. For archs with over 1000 IRQS it is not practical
19 * to expect that they will all nest. We give a max of 10 bits for
20 * hardirq nesting. An arch may choose to give less than 10 bits.
21 * m68k expects it to be 8.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050023 * - bits 16-25 are the hardirq count (max # of nested hardirqs: 1024)
24 * - bit 26 is the NMI_MASK
25 * - bit 28 is the PREEMPT_ACTIVE flag
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
27 * PREEMPT_MASK: 0x000000ff
28 * SOFTIRQ_MASK: 0x0000ff00
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050029 * HARDIRQ_MASK: 0x03ff0000
30 * NMI_MASK: 0x04000000
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
32#define PREEMPT_BITS 8
33#define SOFTIRQ_BITS 8
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050034#define NMI_BITS 1
35
36#define MAX_HARDIRQ_BITS 10
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#ifndef HARDIRQ_BITS
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050039# define HARDIRQ_BITS MAX_HARDIRQ_BITS
Eric W. Biederman23d0b8b2006-10-04 02:16:49 -070040#endif
41
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050042#if HARDIRQ_BITS > MAX_HARDIRQ_BITS
43#error HARDIRQ_BITS too high!
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#endif
45
46#define PREEMPT_SHIFT 0
47#define SOFTIRQ_SHIFT (PREEMPT_SHIFT + PREEMPT_BITS)
48#define HARDIRQ_SHIFT (SOFTIRQ_SHIFT + SOFTIRQ_BITS)
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050049#define NMI_SHIFT (HARDIRQ_SHIFT + HARDIRQ_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#define __IRQ_MASK(x) ((1UL << (x))-1)
52
53#define PREEMPT_MASK (__IRQ_MASK(PREEMPT_BITS) << PREEMPT_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define SOFTIRQ_MASK (__IRQ_MASK(SOFTIRQ_BITS) << SOFTIRQ_SHIFT)
Paolo 'Blaisorblade' Giarrusso8f28e8f2005-05-28 15:52:02 -070055#define HARDIRQ_MASK (__IRQ_MASK(HARDIRQ_BITS) << HARDIRQ_SHIFT)
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050056#define NMI_MASK (__IRQ_MASK(NMI_BITS) << NMI_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define PREEMPT_OFFSET (1UL << PREEMPT_SHIFT)
59#define SOFTIRQ_OFFSET (1UL << SOFTIRQ_SHIFT)
60#define HARDIRQ_OFFSET (1UL << HARDIRQ_SHIFT)
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050061#define NMI_OFFSET (1UL << NMI_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Venkatesh Pallipadi75e10562010-10-04 17:03:16 -070063#define SOFTIRQ_DISABLE_OFFSET (2 * SOFTIRQ_OFFSET)
64
Arnd Bergmann8e5b59a2009-08-06 16:02:50 -070065#ifndef PREEMPT_ACTIVE
66#define PREEMPT_ACTIVE_BITS 1
67#define PREEMPT_ACTIVE_SHIFT (NMI_SHIFT + NMI_BITS)
68#define PREEMPT_ACTIVE (__IRQ_MASK(PREEMPT_ACTIVE_BITS) << PREEMPT_ACTIVE_SHIFT)
69#endif
70
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050071#if PREEMPT_ACTIVE < (1 << (NMI_SHIFT + NMI_BITS))
Paolo 'Blaisorblade' Giarrusso8f28e8f2005-05-28 15:52:02 -070072#error PREEMPT_ACTIVE is too low!
73#endif
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define hardirq_count() (preempt_count() & HARDIRQ_MASK)
76#define softirq_count() (preempt_count() & SOFTIRQ_MASK)
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050077#define irq_count() (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK \
78 | NMI_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/*
81 * Are we doing bottom half or hardware interrupt processing?
82 * Are we in a softirq context? Interrupt context?
Venkatesh Pallipadi75e10562010-10-04 17:03:16 -070083 * in_softirq - Are we currently processing softirq or have bh disabled?
84 * in_serving_softirq - Are we currently processing softirq?
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 */
86#define in_irq() (hardirq_count())
87#define in_softirq() (softirq_count())
88#define in_interrupt() (irq_count())
Venkatesh Pallipadi75e10562010-10-04 17:03:16 -070089#define in_serving_softirq() (softirq_count() & SOFTIRQ_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Steven Rostedt375b38b2009-02-06 00:51:37 -050091/*
92 * Are we in NMI context?
93 */
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050094#define in_nmi() (preempt_count() & NMI_MASK)
Steven Rostedt375b38b2009-02-06 00:51:37 -050095
Arnd Bergmann7fe19da2010-10-28 16:12:33 +020096#if defined(CONFIG_PREEMPT) && defined(CONFIG_BKL)
Linus Torvalds7957f0a2010-11-17 14:58:36 -080097# define PREEMPT_INATOMIC_BASE (current->lock_depth >= 0)
Linus Torvalds8e3e0762008-05-10 20:58:02 -070098#else
99# define PREEMPT_INATOMIC_BASE 0
Arnd Bergmann7fe19da2010-10-28 16:12:33 +0200100#endif
101
102#if defined(CONFIG_PREEMPT)
103# define PREEMPT_CHECK_OFFSET 1
104#else
Linus Torvalds8e3e0762008-05-10 20:58:02 -0700105# define PREEMPT_CHECK_OFFSET 0
106#endif
107
Jonathan Corbet8c703d32008-03-28 14:15:49 -0700108/*
109 * Are we running in atomic context? WARNING: this macro cannot
110 * always detect atomic context; in particular, it cannot know about
111 * held spinlocks in non-preemptible kernels. Thus it should not be
112 * used in the general case to determine whether sleeping is possible.
113 * Do not use in_atomic() in driver code.
114 */
Linus Torvalds8e3e0762008-05-10 20:58:02 -0700115#define in_atomic() ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_INATOMIC_BASE)
Ingo Molnar4da1ce62007-07-09 18:51:58 +0200116
117/*
118 * Check whether we were atomic before we did preempt_disable():
Linus Torvalds8e3e0762008-05-10 20:58:02 -0700119 * (used by the scheduler, *after* releasing the kernel lock)
Ingo Molnar4da1ce62007-07-09 18:51:58 +0200120 */
121#define in_atomic_preempt_off() \
122 ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_CHECK_OFFSET)
123
124#ifdef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125# define preemptible() (preempt_count() == 0 && !irqs_disabled())
126# define IRQ_EXIT_OFFSET (HARDIRQ_OFFSET-1)
127#else
128# define preemptible() 0
129# define IRQ_EXIT_OFFSET HARDIRQ_OFFSET
130#endif
131
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100132#if defined(CONFIG_SMP) || defined(CONFIG_GENERIC_HARDIRQS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133extern void synchronize_irq(unsigned int irq);
134#else
135# define synchronize_irq(irq) barrier()
136#endif
137
Al Virof0373602005-11-13 16:06:57 -0800138struct task_struct;
139
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -0700140#if !defined(CONFIG_VIRT_CPU_ACCOUNTING) && !defined(CONFIG_IRQ_TIME_ACCOUNTING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static inline void account_system_vtime(struct task_struct *tsk)
142{
143}
Venkatesh Pallipadie1e10a22010-10-04 17:03:17 -0700144#else
145extern void account_system_vtime(struct task_struct *tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#endif
147
Paul E. McKenneyb560d8a2009-08-21 22:08:51 -0700148#if defined(CONFIG_NO_HZ)
Paul E. McKenneya57eb942010-06-29 16:49:16 -0700149#if defined(CONFIG_TINY_RCU) || defined(CONFIG_TINY_PREEMPT_RCU)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700150extern void rcu_enter_nohz(void);
151extern void rcu_exit_nohz(void);
152
153static inline void rcu_irq_enter(void)
154{
155 rcu_exit_nohz();
156}
157
158static inline void rcu_irq_exit(void)
159{
160 rcu_enter_nohz();
161}
162
163static inline void rcu_nmi_enter(void)
164{
165}
166
167static inline void rcu_nmi_exit(void)
168{
169}
170
171#else
Steven Rostedt2232c2d2008-02-29 18:46:50 +0100172extern void rcu_irq_enter(void);
173extern void rcu_irq_exit(void);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100174extern void rcu_nmi_enter(void);
175extern void rcu_nmi_exit(void);
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700176#endif
Steven Rostedt2232c2d2008-02-29 18:46:50 +0100177#else
178# define rcu_irq_enter() do { } while (0)
179# define rcu_irq_exit() do { } while (0)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100180# define rcu_nmi_enter() do { } while (0)
181# define rcu_nmi_exit() do { } while (0)
Paul E. McKenneyb560d8a2009-08-21 22:08:51 -0700182#endif /* #if defined(CONFIG_NO_HZ) */
Steven Rostedt2232c2d2008-02-29 18:46:50 +0100183
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700184/*
185 * It is safe to do non-atomic ops on ->hardirq_context,
186 * because NMI handlers may not preempt and the ops are
187 * always balanced, so the interrupted value of ->hardirq_context
188 * will always be restored.
189 */
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800190#define __irq_enter() \
191 do { \
192 account_system_vtime(current); \
193 add_preempt_count(HARDIRQ_OFFSET); \
194 trace_hardirq_enter(); \
195 } while (0)
196
197/*
198 * Enter irq context (on NO_HZ, update jiffies):
199 */
Ingo Molnardde4b2b2007-02-16 01:27:45 -0800200extern void irq_enter(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700202/*
203 * Exit irq context without processing softirqs:
204 */
205#define __irq_exit() \
206 do { \
207 trace_hardirq_exit(); \
208 account_system_vtime(current); \
209 sub_preempt_count(HARDIRQ_OFFSET); \
210 } while (0)
211
212/*
213 * Exit irq context and process softirqs if needed:
214 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215extern void irq_exit(void);
216
Steven Rostedt2a7b8df2009-02-12 14:16:46 -0500217#define nmi_enter() \
218 do { \
219 ftrace_nmi_enter(); \
220 BUG_ON(in_nmi()); \
221 add_preempt_count(NMI_OFFSET + HARDIRQ_OFFSET); \
222 lockdep_off(); \
223 rcu_nmi_enter(); \
224 trace_hardirq_enter(); \
Steven Rostedt17666f02008-10-30 16:08:32 -0400225 } while (0)
Linus Torvalds5f34fe12008-12-30 16:10:19 -0800226
Steven Rostedt2a7b8df2009-02-12 14:16:46 -0500227#define nmi_exit() \
228 do { \
229 trace_hardirq_exit(); \
230 rcu_nmi_exit(); \
231 lockdep_on(); \
232 BUG_ON(!in_nmi()); \
233 sub_preempt_count(NMI_OFFSET + HARDIRQ_OFFSET); \
234 ftrace_nmi_exit(); \
Steven Rostedt17666f02008-10-30 16:08:32 -0400235 } while (0)
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237#endif /* LINUX_HARDIRQ_H */