blob: 50edb9cbbd26e21def075e8bba53472335592638 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ingo Molnarde30a2b2006-07-03 00:24:42 -07002/*
3 * include/linux/irqflags.h
4 *
5 * IRQ flags tracing: follow the state of the hardirq and softirq flags and
6 * provide callbacks for transitions between ON and OFF states.
7 *
8 * This file gets included from lowlevel asm headers too, to provide
9 * wrapped versions of the local_irq_*() APIs, based on the
10 * raw_local_irq_*() macros from the lowlevel headers.
11 */
12#ifndef _LINUX_TRACE_IRQFLAGS_H
13#define _LINUX_TRACE_IRQFLAGS_H
14
Steven Rostedt3f3078912008-07-25 01:45:25 -070015#include <linux/typecheck.h>
David Howellsdf9ee292010-10-07 14:08:55 +010016#include <asm/irqflags.h>
Steven Rostedt3f3078912008-07-25 01:45:25 -070017
Joel Fernandes (Google)c3bc8fd2018-07-30 15:24:23 -070018/* Currently trace_softirqs_on/off is used only by lockdep */
19#ifdef CONFIG_PROVE_LOCKING
Ingo Molnarde30a2b2006-07-03 00:24:42 -070020 extern void trace_softirqs_on(unsigned long ip);
21 extern void trace_softirqs_off(unsigned long ip);
Joel Fernandes (Google)c3bc8fd2018-07-30 15:24:23 -070022#else
23# define trace_softirqs_on(ip) do { } while (0)
24# define trace_softirqs_off(ip) do { } while (0)
25#endif
26
27#ifdef CONFIG_TRACE_IRQFLAGS
Steven Rostedt81d68a92008-05-12 21:20:42 +020028 extern void trace_hardirqs_on(void);
29 extern void trace_hardirqs_off(void);
Ingo Molnarde30a2b2006-07-03 00:24:42 -070030# define trace_hardirq_context(p) ((p)->hardirq_context)
31# define trace_softirq_context(p) ((p)->softirq_context)
32# define trace_hardirqs_enabled(p) ((p)->hardirqs_enabled)
33# define trace_softirqs_enabled(p) ((p)->softirqs_enabled)
Byungchul Parkb09be672017-08-07 16:12:52 +090034# define trace_hardirq_enter() \
35do { \
36 current->hardirq_context++; \
Byungchul Parkb09be672017-08-07 16:12:52 +090037} while (0)
38# define trace_hardirq_exit() \
39do { \
40 current->hardirq_context--; \
Byungchul Parkb09be672017-08-07 16:12:52 +090041} while (0)
42# define lockdep_softirq_enter() \
43do { \
44 current->softirq_context++; \
Byungchul Parkb09be672017-08-07 16:12:52 +090045} while (0)
46# define lockdep_softirq_exit() \
47do { \
48 current->softirq_context--; \
Byungchul Parkb09be672017-08-07 16:12:52 +090049} while (0)
Ingo Molnarde30a2b2006-07-03 00:24:42 -070050#else
51# define trace_hardirqs_on() do { } while (0)
52# define trace_hardirqs_off() do { } while (0)
Ingo Molnarde30a2b2006-07-03 00:24:42 -070053# define trace_hardirq_context(p) 0
54# define trace_softirq_context(p) 0
55# define trace_hardirqs_enabled(p) 0
56# define trace_softirqs_enabled(p) 0
57# define trace_hardirq_enter() do { } while (0)
58# define trace_hardirq_exit() do { } while (0)
Ingo Molnard820ac42009-03-13 01:30:40 +010059# define lockdep_softirq_enter() do { } while (0)
60# define lockdep_softirq_exit() do { } while (0)
Ingo Molnarde30a2b2006-07-03 00:24:42 -070061#endif
62
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +020063#if defined(CONFIG_IRQSOFF_TRACER) || \
64 defined(CONFIG_PREEMPT_TRACER)
Steven Rostedt81d68a92008-05-12 21:20:42 +020065 extern void stop_critical_timings(void);
66 extern void start_critical_timings(void);
67#else
68# define stop_critical_timings() do { } while (0)
69# define start_critical_timings() do { } while (0)
70#endif
71
David Howellsdf9ee292010-10-07 14:08:55 +010072/*
73 * Wrap the arch provided IRQ routines to provide appropriate checks.
74 */
75#define raw_local_irq_disable() arch_local_irq_disable()
76#define raw_local_irq_enable() arch_local_irq_enable()
77#define raw_local_irq_save(flags) \
78 do { \
79 typecheck(unsigned long, flags); \
80 flags = arch_local_irq_save(); \
81 } while (0)
82#define raw_local_irq_restore(flags) \
83 do { \
84 typecheck(unsigned long, flags); \
85 arch_local_irq_restore(flags); \
86 } while (0)
87#define raw_local_save_flags(flags) \
88 do { \
89 typecheck(unsigned long, flags); \
90 flags = arch_local_save_flags(); \
91 } while (0)
92#define raw_irqs_disabled_flags(flags) \
93 ({ \
94 typecheck(unsigned long, flags); \
95 arch_irqs_disabled_flags(flags); \
96 })
97#define raw_irqs_disabled() (arch_irqs_disabled())
98#define raw_safe_halt() arch_safe_halt()
99
100/*
101 * The local_irq_*() APIs are equal to the raw_local_irq*()
102 * if !TRACE_IRQFLAGS.
103 */
Jan Beulichdb2dcb42015-01-20 13:00:46 +0000104#ifdef CONFIG_TRACE_IRQFLAGS
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700105#define local_irq_enable() \
106 do { trace_hardirqs_on(); raw_local_irq_enable(); } while (0)
107#define local_irq_disable() \
108 do { raw_local_irq_disable(); trace_hardirqs_off(); } while (0)
Steven Rostedt3f3078912008-07-25 01:45:25 -0700109#define local_irq_save(flags) \
110 do { \
Steven Rostedt3f3078912008-07-25 01:45:25 -0700111 raw_local_irq_save(flags); \
112 trace_hardirqs_off(); \
113 } while (0)
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700114
Steven Rostedt3f3078912008-07-25 01:45:25 -0700115
116#define local_irq_restore(flags) \
117 do { \
Steven Rostedt3f3078912008-07-25 01:45:25 -0700118 if (raw_irqs_disabled_flags(flags)) { \
119 raw_local_irq_restore(flags); \
120 trace_hardirqs_off(); \
121 } else { \
122 trace_hardirqs_on(); \
123 raw_local_irq_restore(flags); \
124 } \
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700125 } while (0)
David Howellsdf9ee292010-10-07 14:08:55 +0100126
127#define safe_halt() \
128 do { \
129 trace_hardirqs_on(); \
130 raw_safe_halt(); \
131 } while (0)
132
133
Jan Beulichdb2dcb42015-01-20 13:00:46 +0000134#else /* !CONFIG_TRACE_IRQFLAGS */
David Howellsdf9ee292010-10-07 14:08:55 +0100135
136#define local_irq_enable() do { raw_local_irq_enable(); } while (0)
137#define local_irq_disable() do { raw_local_irq_disable(); } while (0)
138#define local_irq_save(flags) \
139 do { \
140 raw_local_irq_save(flags); \
141 } while (0)
142#define local_irq_restore(flags) do { raw_local_irq_restore(flags); } while (0)
David Howellsdf9ee292010-10-07 14:08:55 +0100143#define safe_halt() do { raw_safe_halt(); } while (0)
144
Jan Beulichdb2dcb42015-01-20 13:00:46 +0000145#endif /* CONFIG_TRACE_IRQFLAGS */
146
147#define local_save_flags(flags) raw_local_save_flags(flags)
148
149/*
150 * Some architectures don't define arch_irqs_disabled(), so even if either
151 * definition would be fine we need to use different ones for the time being
152 * to avoid build issues.
153 */
154#ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
155#define irqs_disabled() \
156 ({ \
157 unsigned long _flags; \
158 raw_local_save_flags(_flags); \
159 raw_irqs_disabled_flags(_flags); \
160 })
161#else /* !CONFIG_TRACE_IRQFLAGS_SUPPORT */
162#define irqs_disabled() raw_irqs_disabled()
Michael Neuling40b1f4e2009-10-22 14:39:28 +1100163#endif /* CONFIG_TRACE_IRQFLAGS_SUPPORT */
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700164
Jan Beulichdb2dcb42015-01-20 13:00:46 +0000165#define irqs_disabled_flags(flags) raw_irqs_disabled_flags(flags)
166
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700167#endif