blob: 6f91e94c9cc9966ff028e635fb456e4a994f7afb [file] [log] [blame]
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001#ifndef __CPUHOTPLUG_H
2#define __CPUHOTPLUG_H
3
4enum cpuhp_state {
5 CPUHP_OFFLINE,
6 CPUHP_CREATE_THREADS,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00007 CPUHP_PERF_PREPARE,
Thomas Gleixner95ca7922016-07-13 17:16:10 +00008 CPUHP_PERF_X86_PREPARE,
Thomas Gleixner1a246b92016-07-13 17:16:12 +00009 CPUHP_PERF_X86_UNCORE_PREP,
Thomas Gleixnercff7d372016-02-26 18:43:28 +000010 CPUHP_NOTIFY_PREPARE,
11 CPUHP_BRINGUP_CPU,
Thomas Gleixnere69aab12016-02-26 18:43:43 +000012 CPUHP_AP_IDLE_DEAD,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +000013 CPUHP_AP_OFFLINE,
Thomas Gleixner9cf72432016-03-10 12:54:09 +010014 CPUHP_AP_SCHED_STARTING,
Richard Cochran93131f72016-07-13 17:16:04 +000015 CPUHP_AP_IRQ_GIC_STARTING,
Richard Cochran6670a6d2016-07-13 17:16:05 +000016 CPUHP_AP_IRQ_GICV3_STARTING,
Richard Cochran6c034d12016-07-13 17:16:06 +000017 CPUHP_AP_IRQ_HIP04_STARTING,
Richard Cochrancb5ff2d2016-07-13 17:16:07 +000018 CPUHP_AP_IRQ_ARMADA_XP_STARTING,
19 CPUHP_AP_IRQ_ARMADA_CASC_STARTING,
Sebastian Andrzej Siewior7ca04bc2016-07-13 17:16:07 +000020 CPUHP_AP_IRQ_BCM2836_STARTING,
Sebastian Andrzej Siewior7fbbaeb2016-07-13 17:16:08 +000021 CPUHP_AP_ARM_MVEBU_COHERENCY,
Thomas Gleixner1a246b92016-07-13 17:16:12 +000022 CPUHP_AP_PERF_X86_UNCORE_STARTING,
Thomas Gleixner95ca7922016-07-13 17:16:10 +000023 CPUHP_AP_PERF_X86_STARTING,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +000024 CPUHP_AP_NOTIFY_STARTING,
25 CPUHP_AP_ONLINE,
26 CPUHP_TEARDOWN_CPU,
Thomas Gleixnerfc6d73d2016-02-26 18:43:40 +000027 CPUHP_AP_ONLINE_IDLE,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +000028 CPUHP_AP_SMPBOOT_THREADS,
Sebastian Andrzej Siewior07d36c92016-07-13 17:16:03 +000029 CPUHP_AP_X86_VDSO_VMA_ONLINE,
Thomas Gleixner00e16c32016-07-13 17:16:09 +000030 CPUHP_AP_PERF_ONLINE,
Thomas Gleixner95ca7922016-07-13 17:16:10 +000031 CPUHP_AP_PERF_X86_ONLINE,
Thomas Gleixner1a246b92016-07-13 17:16:12 +000032 CPUHP_AP_PERF_X86_UNCORE_ONLINE,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +000033 CPUHP_AP_NOTIFY_ONLINE,
34 CPUHP_AP_ONLINE_DYN,
35 CPUHP_AP_ONLINE_DYN_END = CPUHP_AP_ONLINE_DYN + 30,
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +010036 CPUHP_AP_ACTIVE,
Thomas Gleixnercff7d372016-02-26 18:43:28 +000037 CPUHP_ONLINE,
38};
39
Thomas Gleixner5b7aa872016-02-26 18:43:33 +000040int __cpuhp_setup_state(enum cpuhp_state state, const char *name, bool invoke,
41 int (*startup)(unsigned int cpu),
42 int (*teardown)(unsigned int cpu));
43
44/**
45 * cpuhp_setup_state - Setup hotplug state callbacks with calling the callbacks
46 * @state: The state for which the calls are installed
47 * @name: Name of the callback (will be used in debug output)
48 * @startup: startup callback function
49 * @teardown: teardown callback function
50 *
51 * Installs the callback functions and invokes the startup callback on
52 * the present cpus which have already reached the @state.
53 */
54static inline int cpuhp_setup_state(enum cpuhp_state state,
55 const char *name,
56 int (*startup)(unsigned int cpu),
57 int (*teardown)(unsigned int cpu))
58{
59 return __cpuhp_setup_state(state, name, true, startup, teardown);
60}
61
62/**
63 * cpuhp_setup_state_nocalls - Setup hotplug state callbacks without calling the
64 * callbacks
65 * @state: The state for which the calls are installed
66 * @name: Name of the callback.
67 * @startup: startup callback function
68 * @teardown: teardown callback function
69 *
70 * Same as @cpuhp_setup_state except that no calls are executed are invoked
71 * during installation of this callback. NOP if SMP=n or HOTPLUG_CPU=n.
72 */
73static inline int cpuhp_setup_state_nocalls(enum cpuhp_state state,
74 const char *name,
75 int (*startup)(unsigned int cpu),
76 int (*teardown)(unsigned int cpu))
77{
78 return __cpuhp_setup_state(state, name, false, startup, teardown);
79}
80
81void __cpuhp_remove_state(enum cpuhp_state state, bool invoke);
82
83/**
84 * cpuhp_remove_state - Remove hotplug state callbacks and invoke the teardown
85 * @state: The state for which the calls are removed
86 *
87 * Removes the callback functions and invokes the teardown callback on
88 * the present cpus which have already reached the @state.
89 */
90static inline void cpuhp_remove_state(enum cpuhp_state state)
91{
92 __cpuhp_remove_state(state, true);
93}
94
95/**
96 * cpuhp_remove_state_nocalls - Remove hotplug state callbacks without invoking
97 * teardown
98 * @state: The state for which the calls are removed
99 */
100static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state)
101{
102 __cpuhp_remove_state(state, false);
103}
104
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000105#ifdef CONFIG_SMP
106void cpuhp_online_idle(enum cpuhp_state state);
107#else
108static inline void cpuhp_online_idle(enum cpuhp_state state) { }
109#endif
110
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000111#endif