blob: 8246c697863d72cec6bae27889d0149a88ab830f [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>
Alexey Dobriyan405f5572009-07-11 22:08:37 +04005#ifdef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/smp_lock.h>
Alexey Dobriyan405f5572009-07-11 22:08:37 +04007#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07008#include <linux/lockdep.h>
Steven Rostedt6a60dd12008-11-06 15:55:21 -05009#include <linux/ftrace_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#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 *
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050020 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050027 * - 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 * PREEMPT_MASK: 0x000000ff
32 * SOFTIRQ_MASK: 0x0000ff00
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050033 * HARDIRQ_MASK: 0x03ff0000
34 * NMI_MASK: 0x04000000
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36#define PREEMPT_BITS 8
37#define SOFTIRQ_BITS 8
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050038#define NMI_BITS 1
39
40#define MAX_HARDIRQ_BITS 10
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#ifndef HARDIRQ_BITS
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050043# define HARDIRQ_BITS MAX_HARDIRQ_BITS
Eric W. Biederman23d0b8b2006-10-04 02:16:49 -070044#endif
45
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050046#if HARDIRQ_BITS > MAX_HARDIRQ_BITS
47#error HARDIRQ_BITS too high!
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#endif
49
50#define PREEMPT_SHIFT 0
51#define SOFTIRQ_SHIFT (PREEMPT_SHIFT + PREEMPT_BITS)
52#define HARDIRQ_SHIFT (SOFTIRQ_SHIFT + SOFTIRQ_BITS)
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050053#define NMI_SHIFT (HARDIRQ_SHIFT + HARDIRQ_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#define __IRQ_MASK(x) ((1UL << (x))-1)
56
57#define PREEMPT_MASK (__IRQ_MASK(PREEMPT_BITS) << PREEMPT_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define SOFTIRQ_MASK (__IRQ_MASK(SOFTIRQ_BITS) << SOFTIRQ_SHIFT)
Paolo 'Blaisorblade' Giarrusso8f28e8f2005-05-28 15:52:02 -070059#define HARDIRQ_MASK (__IRQ_MASK(HARDIRQ_BITS) << HARDIRQ_SHIFT)
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050060#define NMI_MASK (__IRQ_MASK(NMI_BITS) << NMI_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#define PREEMPT_OFFSET (1UL << PREEMPT_SHIFT)
63#define SOFTIRQ_OFFSET (1UL << SOFTIRQ_SHIFT)
64#define HARDIRQ_OFFSET (1UL << HARDIRQ_SHIFT)
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050065#define NMI_OFFSET (1UL << NMI_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050067#if PREEMPT_ACTIVE < (1 << (NMI_SHIFT + NMI_BITS))
Paolo 'Blaisorblade' Giarrusso8f28e8f2005-05-28 15:52:02 -070068#error PREEMPT_ACTIVE is too low!
69#endif
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define hardirq_count() (preempt_count() & HARDIRQ_MASK)
72#define softirq_count() (preempt_count() & SOFTIRQ_MASK)
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050073#define irq_count() (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK \
74 | NMI_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
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
Steven Rostedt375b38b2009-02-06 00:51:37 -050084/*
85 * Are we in NMI context?
86 */
Steven Rostedt5a5fb7d2009-02-12 10:53:37 -050087#define in_nmi() (preempt_count() & NMI_MASK)
Steven Rostedt375b38b2009-02-06 00:51:37 -050088
Linus Torvalds8e3e0762008-05-10 20:58:02 -070089#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
Jonathan Corbet8c703d32008-03-28 14:15:49 -070097/*
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 */
Linus Torvalds8e3e0762008-05-10 20:58:02 -0700104#define in_atomic() ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_INATOMIC_BASE)
Ingo Molnar4da1ce62007-07-09 18:51:58 +0200105
106/*
107 * Check whether we were atomic before we did preempt_disable():
Linus Torvalds8e3e0762008-05-10 20:58:02 -0700108 * (used by the scheduler, *after* releasing the kernel lock)
Ingo Molnar4da1ce62007-07-09 18:51:58 +0200109 */
110#define in_atomic_preempt_off() \
111 ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_CHECK_OFFSET)
112
113#ifdef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114# 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
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100121#if defined(CONFIG_SMP) || defined(CONFIG_GENERIC_HARDIRQS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122extern void synchronize_irq(unsigned int irq);
123#else
124# define synchronize_irq(irq) barrier()
125#endif
126
Al Virof0373602005-11-13 16:06:57 -0800127struct task_struct;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#ifndef CONFIG_VIRT_CPU_ACCOUNTING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static inline void account_system_vtime(struct task_struct *tsk)
131{
132}
133#endif
134
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100135#if defined(CONFIG_NO_HZ) && !defined(CONFIG_CLASSIC_RCU)
Steven Rostedt2232c2d2008-02-29 18:46:50 +0100136extern void rcu_irq_enter(void);
137extern void rcu_irq_exit(void);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100138extern void rcu_nmi_enter(void);
139extern void rcu_nmi_exit(void);
Steven Rostedt2232c2d2008-02-29 18:46:50 +0100140#else
141# define rcu_irq_enter() do { } while (0)
142# define rcu_irq_exit() do { } while (0)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100143# 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) */
Steven Rostedt2232c2d2008-02-29 18:46:50 +0100146
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700147/*
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 */
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800153#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 */
Ingo Molnardde4b2b2007-02-16 01:27:45 -0800163extern void irq_enter(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700165/*
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); \
173 } while (0)
174
175/*
176 * Exit irq context and process softirqs if needed:
177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178extern void irq_exit(void);
179
Steven Rostedt2a7b8df2009-02-12 14:16:46 -0500180#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(); \
Steven Rostedt17666f02008-10-30 16:08:32 -0400188 } while (0)
Linus Torvalds5f34fe12008-12-30 16:10:19 -0800189
Steven Rostedt2a7b8df2009-02-12 14:16:46 -0500190#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(); \
Steven Rostedt17666f02008-10-30 16:08:32 -0400198 } while (0)
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#endif /* LINUX_HARDIRQ_H */