blob: b8d868d23e797b3cd80303c9c8f531300e4ee62b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/include/linux/nmi.h
4 */
5#ifndef LINUX_NMI_H
6#define LINUX_NMI_H
7
Michal Schmidt99384062006-09-29 01:59:03 -07008#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <asm/irq.h>
Nicholas Pigginf2e0cff2017-07-12 14:35:43 -070010#if defined(CONFIG_HAVE_NMI_WATCHDOG)
11#include <asm/nmi.h>
12#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Ingo Molnard151b272017-02-02 11:17:23 +010014#ifdef CONFIG_LOCKUP_DETECTOR
Nicholas Piggin05a4a952017-07-12 14:35:46 -070015void lockup_detector_init(void);
Thomas Gleixner6554fd82017-09-12 21:36:57 +020016void lockup_detector_soft_poweroff(void);
Thomas Gleixner941154b2017-09-12 21:37:04 +020017void lockup_detector_cleanup(void);
Thomas Gleixner3b371b52017-09-12 21:37:13 +020018bool is_hardlockup(void);
19
20extern int watchdog_user_enabled;
Thomas Gleixner7feeb9c2017-09-12 21:37:15 +020021extern int nmi_watchdog_user_enabled;
22extern int soft_watchdog_user_enabled;
Thomas Gleixner3b371b52017-09-12 21:37:13 +020023extern 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;
Nicholas Piggin05a4a952017-07-12 14:35:46 -070031#else
Thomas Gleixner3b371b52017-09-12 21:37:13 +020032#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 */
Thomas Gleixner6554fd82017-09-12 21:36:57 +020037static inline void lockup_detector_init(void) { }
38static inline void lockup_detector_soft_poweroff(void) { }
Thomas Gleixner941154b2017-09-12 21:37:04 +020039static inline void lockup_detector_cleanup(void) { }
Thomas Gleixner3b371b52017-09-12 21:37:13 +020040#endif /* !CONFIG_LOCKUP_DETECTOR */
Nicholas Piggin05a4a952017-07-12 14:35:46 -070041
42#ifdef CONFIG_SOFTLOCKUP_DETECTOR
Ingo Molnard151b272017-02-02 11:17:23 +010043extern 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);
Ingo Molnard151b272017-02-02 11:17:23 +010047extern unsigned int softlockup_panic;
Ingo Molnard151b272017-02-02 11:17:23 +010048#else
Thomas Gleixner3b371b52017-09-12 21:37:13 +020049static inline void touch_softlockup_watchdog_sched(void) { }
50static inline void touch_softlockup_watchdog(void) { }
51static inline void touch_softlockup_watchdog_sync(void) { }
52static inline void touch_all_softlockup_watchdogs(void) { }
Ingo Molnard151b272017-02-02 11:17:23 +010053#endif
54
55#ifdef CONFIG_DETECT_HUNG_TASK
56void reset_hung_task_detector(void);
57#else
Thomas Gleixner3b371b52017-09-12 21:37:13 +020058static inline void reset_hung_task_detector(void) { }
Ingo Molnard151b272017-02-02 11:17:23 +010059#endif
60
Babu Moger249e52e2016-12-14 15:06:21 -080061/*
62 * The run state of the lockup detectors is controlled by the content of the
63 * 'watchdog_enabled' variable. Each lockup detector has its dedicated bit -
64 * bit 0 for the hard lockup detector and bit 1 for the soft lockup detector.
65 *
Thomas Gleixner7feeb9c2017-09-12 21:37:15 +020066 * 'watchdog_user_enabled', 'nmi_watchdog_user_enabled' and
67 * 'soft_watchdog_user_enabled' are variables that are only used as an
68 * 'interface' between the parameters in /proc/sys/kernel and the internal
69 * state bits in 'watchdog_enabled'. The 'watchdog_thresh' variable is
70 * handled differently because its value is not boolean, and the lockup
71 * detectors are 'suspended' while 'watchdog_thresh' is equal zero.
Babu Moger249e52e2016-12-14 15:06:21 -080072 */
73#define NMI_WATCHDOG_ENABLED_BIT 0
74#define SOFT_WATCHDOG_ENABLED_BIT 1
75#define NMI_WATCHDOG_ENABLED (1 << NMI_WATCHDOG_ENABLED_BIT)
76#define SOFT_WATCHDOG_ENABLED (1 << SOFT_WATCHDOG_ENABLED_BIT)
77
Nicholas Pigginf2e0cff2017-07-12 14:35:43 -070078#if defined(CONFIG_HARDLOCKUP_DETECTOR)
79extern void hardlockup_detector_disable(void);
Nicholas Piggin05a4a952017-07-12 14:35:46 -070080extern unsigned int hardlockup_panic;
Nicholas Pigginf2e0cff2017-07-12 14:35:43 -070081#else
82static inline void hardlockup_detector_disable(void) {}
83#endif
84
Thomas Gleixner51d40522017-09-12 21:37:14 +020085#if defined(CONFIG_HAVE_NMI_WATCHDOG) || defined(CONFIG_HARDLOCKUP_DETECTOR)
86# define NMI_WATCHDOG_SYSCTL_PERM 0644
87#else
88# define NMI_WATCHDOG_SYSCTL_PERM 0444
89#endif
90
Nicholas Piggin05a4a952017-07-12 14:35:46 -070091#if defined(CONFIG_HARDLOCKUP_DETECTOR_PERF)
Nicholas Pigginf2e0cff2017-07-12 14:35:43 -070092extern void arch_touch_nmi_watchdog(void);
Peter Zijlstrad0b6e0a2017-09-12 21:36:55 +020093extern void hardlockup_detector_perf_stop(void);
94extern void hardlockup_detector_perf_restart(void);
Thomas Gleixner941154b2017-09-12 21:37:04 +020095extern void hardlockup_detector_perf_disable(void);
Thomas Gleixner2a1b8ee2017-09-12 21:37:20 +020096extern void hardlockup_detector_perf_enable(void);
Thomas Gleixner941154b2017-09-12 21:37:04 +020097extern void hardlockup_detector_perf_cleanup(void);
Thomas Gleixner178b9f72017-09-12 21:37:18 +020098extern int hardlockup_detector_perf_init(void);
Nicholas Pigginf2e0cff2017-07-12 14:35:43 -070099#else
Peter Zijlstrad0b6e0a2017-09-12 21:36:55 +0200100static inline void hardlockup_detector_perf_stop(void) { }
101static inline void hardlockup_detector_perf_restart(void) { }
Thomas Gleixner941154b2017-09-12 21:37:04 +0200102static inline void hardlockup_detector_perf_disable(void) { }
Thomas Gleixner2a1b8ee2017-09-12 21:37:20 +0200103static inline void hardlockup_detector_perf_enable(void) { }
Thomas Gleixner941154b2017-09-12 21:37:04 +0200104static inline void hardlockup_detector_perf_cleanup(void) { }
Thomas Gleixner178b9f72017-09-12 21:37:18 +0200105# if !defined(CONFIG_HAVE_NMI_WATCHDOG)
106static inline int hardlockup_detector_perf_init(void) { return -ENODEV; }
Nicholas Pigginf2e0cff2017-07-12 14:35:43 -0700107static inline void arch_touch_nmi_watchdog(void) {}
Thomas Gleixner178b9f72017-09-12 21:37:18 +0200108# else
109static inline int hardlockup_detector_perf_init(void) { return 0; }
110# endif
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700111#endif
Nicholas Pigginf2e0cff2017-07-12 14:35:43 -0700112
Thomas Gleixner6b9dc482017-10-02 12:34:50 +0200113void watchdog_nmi_stop(void);
114void watchdog_nmi_start(void);
Thomas Gleixner34ddaa32017-10-03 16:39:02 +0200115int watchdog_nmi_probe(void);
Thomas Gleixner6592ad22017-09-12 21:37:16 +0200116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/**
118 * touch_nmi_watchdog - restart NMI watchdog timeout.
Thomas Gleixner3b371b52017-09-12 21:37:13 +0200119 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 * If the architecture supports the NMI watchdog, touch_nmi_watchdog()
121 * may be used to reset the timeout - for code which intentionally
122 * disables interrupts for a long time. This call is stateless.
123 */
Ingo Molnar5d0e6002007-02-13 13:26:24 +0100124static inline void touch_nmi_watchdog(void)
125{
Nicholas Pigginf2e0cff2017-07-12 14:35:43 -0700126 arch_touch_nmi_watchdog();
Ingo Molnar5d0e6002007-02-13 13:26:24 +0100127 touch_softlockup_watchdog();
128}
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700129
Ingo Molnar47cab6a2009-08-03 09:31:54 +0200130/*
131 * Create trigger_all_cpu_backtrace() out of the arch-provided
132 * base function. Return whether such support was available,
133 * to allow calling code to fall back to some other mechanism:
134 */
Chris Metcalf9a01c3e2016-10-07 17:02:45 -0700135#ifdef arch_trigger_cpumask_backtrace
Ingo Molnar47cab6a2009-08-03 09:31:54 +0200136static inline bool trigger_all_cpu_backtrace(void)
137{
Chris Metcalf9a01c3e2016-10-07 17:02:45 -0700138 arch_trigger_cpumask_backtrace(cpu_online_mask, false);
Ingo Molnar47cab6a2009-08-03 09:31:54 +0200139 return true;
140}
Chris Metcalf9a01c3e2016-10-07 17:02:45 -0700141
Aaron Tomlinf3aca3d02014-06-23 13:22:05 -0700142static inline bool trigger_allbutself_cpu_backtrace(void)
143{
Chris Metcalf9a01c3e2016-10-07 17:02:45 -0700144 arch_trigger_cpumask_backtrace(cpu_online_mask, true);
145 return true;
146}
147
148static inline bool trigger_cpumask_backtrace(struct cpumask *mask)
149{
150 arch_trigger_cpumask_backtrace(mask, false);
151 return true;
152}
153
154static inline bool trigger_single_cpu_backtrace(int cpu)
155{
156 arch_trigger_cpumask_backtrace(cpumask_of(cpu), false);
Aaron Tomlinf3aca3d02014-06-23 13:22:05 -0700157 return true;
158}
Russell Kingb2c0b2c2014-09-03 23:57:13 +0100159
160/* generic implementation */
Chris Metcalf9a01c3e2016-10-07 17:02:45 -0700161void nmi_trigger_cpumask_backtrace(const cpumask_t *mask,
162 bool exclude_self,
Russell Kingb2c0b2c2014-09-03 23:57:13 +0100163 void (*raise)(cpumask_t *mask));
164bool nmi_cpu_backtrace(struct pt_regs *regs);
165
Ingo Molnar47cab6a2009-08-03 09:31:54 +0200166#else
167static inline bool trigger_all_cpu_backtrace(void)
168{
169 return false;
170}
Aaron Tomlinf3aca3d02014-06-23 13:22:05 -0700171static inline bool trigger_allbutself_cpu_backtrace(void)
172{
173 return false;
174}
Chris Metcalf9a01c3e2016-10-07 17:02:45 -0700175static inline bool trigger_cpumask_backtrace(struct cpumask *mask)
176{
177 return false;
178}
179static inline bool trigger_single_cpu_backtrace(int cpu)
180{
181 return false;
182}
Andrew Mortonbb81a092006-12-07 02:14:01 +0100183#endif
184
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700185#ifdef CONFIG_HARDLOCKUP_DETECTOR_PERF
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700186u64 hw_nmi_get_sample_period(int watchdog_thresh);
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700187#endif
188
Thomas Gleixner7edaeb62017-08-15 09:50:13 +0200189#if defined(CONFIG_HARDLOCKUP_CHECK_TIMESTAMP) && \
190 defined(CONFIG_HARDLOCKUP_DETECTOR)
191void watchdog_update_hrtimer_threshold(u64 period);
192#else
193static inline void watchdog_update_hrtimer_threshold(u64 period) { }
194#endif
195
Don Zickus504d7cf2010-02-12 17:19:19 -0500196struct ctl_table;
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700197extern int proc_watchdog(struct ctl_table *, int ,
198 void __user *, size_t *, loff_t *);
199extern int proc_nmi_watchdog(struct ctl_table *, int ,
200 void __user *, size_t *, loff_t *);
201extern int proc_soft_watchdog(struct ctl_table *, int ,
202 void __user *, size_t *, loff_t *);
203extern int proc_watchdog_thresh(struct ctl_table *, int ,
204 void __user *, size_t *, loff_t *);
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700205extern int proc_watchdog_cpumask(struct ctl_table *, int,
206 void __user *, size_t *, loff_t *);
Don Zickus84e478c2010-02-05 21:47:05 -0500207
Tomasz Nowicki44a69f62014-07-22 11:20:12 +0200208#ifdef CONFIG_HAVE_ACPI_APEI_NMI
209#include <asm/nmi.h>
210#endif
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#endif