Merge tag 'kbuild-v5.3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy...
[linux-2.6-block.git] / include / linux / nmi.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/*
3 * linux/include/linux/nmi.h
4 */
5#ifndef LINUX_NMI_H
6#define LINUX_NMI_H
7
9938406a 8#include <linux/sched.h>
1da177e4 9#include <asm/irq.h>
f2e0cff8
NP
10#if defined(CONFIG_HAVE_NMI_WATCHDOG)
11#include <asm/nmi.h>
12#endif
1da177e4 13
d151b27d 14#ifdef CONFIG_LOCKUP_DETECTOR
05a4a952 15void lockup_detector_init(void);
6554fd8c 16void lockup_detector_soft_poweroff(void);
941154bd 17void lockup_detector_cleanup(void);
3b371b59
TG
18bool is_hardlockup(void);
19
20extern int watchdog_user_enabled;
7feeb9cd
TG
21extern int nmi_watchdog_user_enabled;
22extern int soft_watchdog_user_enabled;
3b371b59
TG
23extern int watchdog_thresh;
24extern unsigned long watchdog_enabled;
25
26extern struct cpumask watchdog_cpumask;
27extern unsigned long *watchdog_cpumask_bits;
28#ifdef CONFIG_SMP
29extern int sysctl_softlockup_all_cpu_backtrace;
30extern int sysctl_hardlockup_all_cpu_backtrace;
05a4a952 31#else
3b371b59
TG
32#define sysctl_softlockup_all_cpu_backtrace 0
33#define sysctl_hardlockup_all_cpu_backtrace 0
34#endif /* !CONFIG_SMP */
35
36#else /* CONFIG_LOCKUP_DETECTOR */
6554fd8c
TG
37static inline void lockup_detector_init(void) { }
38static inline void lockup_detector_soft_poweroff(void) { }
941154bd 39static inline void lockup_detector_cleanup(void) { }
3b371b59 40#endif /* !CONFIG_LOCKUP_DETECTOR */
05a4a952
NP
41
42#ifdef CONFIG_SOFTLOCKUP_DETECTOR
d151b27d
IM
43extern void touch_softlockup_watchdog_sched(void);
44extern void touch_softlockup_watchdog(void);
45extern void touch_softlockup_watchdog_sync(void);
46extern void touch_all_softlockup_watchdogs(void);
d151b27d 47extern unsigned int softlockup_panic;
aef92a8b
PZ
48
49extern int lockup_detector_online_cpu(unsigned int cpu);
50extern int lockup_detector_offline_cpu(unsigned int cpu);
51#else /* CONFIG_SOFTLOCKUP_DETECTOR */
3b371b59
TG
52static inline void touch_softlockup_watchdog_sched(void) { }
53static inline void touch_softlockup_watchdog(void) { }
54static inline void touch_softlockup_watchdog_sync(void) { }
55static inline void touch_all_softlockup_watchdogs(void) { }
aef92a8b
PZ
56
57#define lockup_detector_online_cpu NULL
58#define lockup_detector_offline_cpu NULL
59#endif /* CONFIG_SOFTLOCKUP_DETECTOR */
d151b27d
IM
60
61#ifdef CONFIG_DETECT_HUNG_TASK
62void reset_hung_task_detector(void);
63#else
3b371b59 64static inline void reset_hung_task_detector(void) { }
d151b27d
IM
65#endif
66
249e52e3
BM
67/*
68 * The run state of the lockup detectors is controlled by the content of the
69 * 'watchdog_enabled' variable. Each lockup detector has its dedicated bit -
70 * bit 0 for the hard lockup detector and bit 1 for the soft lockup detector.
71 *
7feeb9cd
TG
72 * 'watchdog_user_enabled', 'nmi_watchdog_user_enabled' and
73 * 'soft_watchdog_user_enabled' are variables that are only used as an
74 * 'interface' between the parameters in /proc/sys/kernel and the internal
75 * state bits in 'watchdog_enabled'. The 'watchdog_thresh' variable is
76 * handled differently because its value is not boolean, and the lockup
77 * detectors are 'suspended' while 'watchdog_thresh' is equal zero.
249e52e3
BM
78 */
79#define NMI_WATCHDOG_ENABLED_BIT 0
80#define SOFT_WATCHDOG_ENABLED_BIT 1
81#define NMI_WATCHDOG_ENABLED (1 << NMI_WATCHDOG_ENABLED_BIT)
82#define SOFT_WATCHDOG_ENABLED (1 << SOFT_WATCHDOG_ENABLED_BIT)
83
f2e0cff8
NP
84#if defined(CONFIG_HARDLOCKUP_DETECTOR)
85extern void hardlockup_detector_disable(void);
05a4a952 86extern unsigned int hardlockup_panic;
f2e0cff8
NP
87#else
88static inline void hardlockup_detector_disable(void) {}
89#endif
90
51d4052b
TG
91#if defined(CONFIG_HAVE_NMI_WATCHDOG) || defined(CONFIG_HARDLOCKUP_DETECTOR)
92# define NMI_WATCHDOG_SYSCTL_PERM 0644
93#else
94# define NMI_WATCHDOG_SYSCTL_PERM 0444
95#endif
96
05a4a952 97#if defined(CONFIG_HARDLOCKUP_DETECTOR_PERF)
f2e0cff8 98extern void arch_touch_nmi_watchdog(void);
d0b6e0a8
PZ
99extern void hardlockup_detector_perf_stop(void);
100extern void hardlockup_detector_perf_restart(void);
941154bd 101extern void hardlockup_detector_perf_disable(void);
2a1b8ee4 102extern void hardlockup_detector_perf_enable(void);
941154bd 103extern void hardlockup_detector_perf_cleanup(void);
178b9f7a 104extern int hardlockup_detector_perf_init(void);
f2e0cff8 105#else
d0b6e0a8
PZ
106static inline void hardlockup_detector_perf_stop(void) { }
107static inline void hardlockup_detector_perf_restart(void) { }
941154bd 108static inline void hardlockup_detector_perf_disable(void) { }
2a1b8ee4 109static inline void hardlockup_detector_perf_enable(void) { }
941154bd 110static inline void hardlockup_detector_perf_cleanup(void) { }
178b9f7a
TG
111# if !defined(CONFIG_HAVE_NMI_WATCHDOG)
112static inline int hardlockup_detector_perf_init(void) { return -ENODEV; }
f2e0cff8 113static inline void arch_touch_nmi_watchdog(void) {}
178b9f7a
TG
114# else
115static inline int hardlockup_detector_perf_init(void) { return 0; }
116# endif
05a4a952 117#endif
f2e0cff8 118
6b9dc480
TG
119void watchdog_nmi_stop(void);
120void watchdog_nmi_start(void);
34ddaa3e 121int watchdog_nmi_probe(void);
81bd415c
MM
122int watchdog_nmi_enable(unsigned int cpu);
123void watchdog_nmi_disable(unsigned int cpu);
6592ad2f 124
1da177e4
LT
125/**
126 * touch_nmi_watchdog - restart NMI watchdog timeout.
3b371b59 127 *
1da177e4
LT
128 * If the architecture supports the NMI watchdog, touch_nmi_watchdog()
129 * may be used to reset the timeout - for code which intentionally
130 * disables interrupts for a long time. This call is stateless.
131 */
5d0e600d
IM
132static inline void touch_nmi_watchdog(void)
133{
f2e0cff8 134 arch_touch_nmi_watchdog();
5d0e600d
IM
135 touch_softlockup_watchdog();
136}
6e7458a6 137
47cab6a7
IM
138/*
139 * Create trigger_all_cpu_backtrace() out of the arch-provided
140 * base function. Return whether such support was available,
141 * to allow calling code to fall back to some other mechanism:
142 */
9a01c3ed 143#ifdef arch_trigger_cpumask_backtrace
47cab6a7
IM
144static inline bool trigger_all_cpu_backtrace(void)
145{
9a01c3ed 146 arch_trigger_cpumask_backtrace(cpu_online_mask, false);
47cab6a7
IM
147 return true;
148}
9a01c3ed 149
f3aca3d0
AT
150static inline bool trigger_allbutself_cpu_backtrace(void)
151{
9a01c3ed
CM
152 arch_trigger_cpumask_backtrace(cpu_online_mask, true);
153 return true;
154}
155
156static inline bool trigger_cpumask_backtrace(struct cpumask *mask)
157{
158 arch_trigger_cpumask_backtrace(mask, false);
159 return true;
160}
161
162static inline bool trigger_single_cpu_backtrace(int cpu)
163{
164 arch_trigger_cpumask_backtrace(cpumask_of(cpu), false);
f3aca3d0
AT
165 return true;
166}
b2c0b2cb
RK
167
168/* generic implementation */
9a01c3ed
CM
169void nmi_trigger_cpumask_backtrace(const cpumask_t *mask,
170 bool exclude_self,
b2c0b2cb
RK
171 void (*raise)(cpumask_t *mask));
172bool nmi_cpu_backtrace(struct pt_regs *regs);
173
47cab6a7
IM
174#else
175static inline bool trigger_all_cpu_backtrace(void)
176{
177 return false;
178}
f3aca3d0
AT
179static inline bool trigger_allbutself_cpu_backtrace(void)
180{
181 return false;
182}
9a01c3ed
CM
183static inline bool trigger_cpumask_backtrace(struct cpumask *mask)
184{
185 return false;
186}
187static inline bool trigger_single_cpu_backtrace(int cpu)
188{
189 return false;
190}
bb81a09e
AM
191#endif
192
05a4a952 193#ifdef CONFIG_HARDLOCKUP_DETECTOR_PERF
4eec42f3 194u64 hw_nmi_get_sample_period(int watchdog_thresh);
05a4a952
NP
195#endif
196
7edaeb68
TG
197#if defined(CONFIG_HARDLOCKUP_CHECK_TIMESTAMP) && \
198 defined(CONFIG_HARDLOCKUP_DETECTOR)
199void watchdog_update_hrtimer_threshold(u64 period);
200#else
201static inline void watchdog_update_hrtimer_threshold(u64 period) { }
202#endif
203
504d7cf1 204struct ctl_table;
83a80a39
UO
205extern int proc_watchdog(struct ctl_table *, int ,
206 void __user *, size_t *, loff_t *);
207extern int proc_nmi_watchdog(struct ctl_table *, int ,
208 void __user *, size_t *, loff_t *);
209extern int proc_soft_watchdog(struct ctl_table *, int ,
210 void __user *, size_t *, loff_t *);
211extern int proc_watchdog_thresh(struct ctl_table *, int ,
212 void __user *, size_t *, loff_t *);
fe4ba3c3
CM
213extern int proc_watchdog_cpumask(struct ctl_table *, int,
214 void __user *, size_t *, loff_t *);
84e478c6 215
44a69f61
TN
216#ifdef CONFIG_HAVE_ACPI_APEI_NMI
217#include <asm/nmi.h>
218#endif
219
1da177e4 220#endif