blob: d6e4a06d502046a7fa479f45ac7cfc782b2a3ac4 [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,
7 CPUHP_NOTIFY_PREPARE,
8 CPUHP_BRINGUP_CPU,
Thomas Gleixnere69aab12016-02-26 18:43:43 +00009 CPUHP_AP_IDLE_DEAD,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +000010 CPUHP_AP_OFFLINE,
Thomas Gleixner9cf72432016-03-10 12:54:09 +010011 CPUHP_AP_SCHED_STARTING,
Richard Cochran93131f72016-07-13 17:16:04 +000012 CPUHP_AP_IRQ_GIC_STARTING,
Richard Cochran6670a6d2016-07-13 17:16:05 +000013 CPUHP_AP_IRQ_GICV3_STARTING,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +000014 CPUHP_AP_NOTIFY_STARTING,
15 CPUHP_AP_ONLINE,
16 CPUHP_TEARDOWN_CPU,
Thomas Gleixnerfc6d73d2016-02-26 18:43:40 +000017 CPUHP_AP_ONLINE_IDLE,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +000018 CPUHP_AP_SMPBOOT_THREADS,
Sebastian Andrzej Siewior07d36c92016-07-13 17:16:03 +000019 CPUHP_AP_X86_VDSO_VMA_ONLINE,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +000020 CPUHP_AP_NOTIFY_ONLINE,
21 CPUHP_AP_ONLINE_DYN,
22 CPUHP_AP_ONLINE_DYN_END = CPUHP_AP_ONLINE_DYN + 30,
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +010023 CPUHP_AP_ACTIVE,
Thomas Gleixnercff7d372016-02-26 18:43:28 +000024 CPUHP_ONLINE,
25};
26
Thomas Gleixner5b7aa872016-02-26 18:43:33 +000027int __cpuhp_setup_state(enum cpuhp_state state, const char *name, bool invoke,
28 int (*startup)(unsigned int cpu),
29 int (*teardown)(unsigned int cpu));
30
31/**
32 * cpuhp_setup_state - Setup hotplug state callbacks with calling the callbacks
33 * @state: The state for which the calls are installed
34 * @name: Name of the callback (will be used in debug output)
35 * @startup: startup callback function
36 * @teardown: teardown callback function
37 *
38 * Installs the callback functions and invokes the startup callback on
39 * the present cpus which have already reached the @state.
40 */
41static inline int cpuhp_setup_state(enum cpuhp_state state,
42 const char *name,
43 int (*startup)(unsigned int cpu),
44 int (*teardown)(unsigned int cpu))
45{
46 return __cpuhp_setup_state(state, name, true, startup, teardown);
47}
48
49/**
50 * cpuhp_setup_state_nocalls - Setup hotplug state callbacks without calling the
51 * callbacks
52 * @state: The state for which the calls are installed
53 * @name: Name of the callback.
54 * @startup: startup callback function
55 * @teardown: teardown callback function
56 *
57 * Same as @cpuhp_setup_state except that no calls are executed are invoked
58 * during installation of this callback. NOP if SMP=n or HOTPLUG_CPU=n.
59 */
60static inline int cpuhp_setup_state_nocalls(enum cpuhp_state state,
61 const char *name,
62 int (*startup)(unsigned int cpu),
63 int (*teardown)(unsigned int cpu))
64{
65 return __cpuhp_setup_state(state, name, false, startup, teardown);
66}
67
68void __cpuhp_remove_state(enum cpuhp_state state, bool invoke);
69
70/**
71 * cpuhp_remove_state - Remove hotplug state callbacks and invoke the teardown
72 * @state: The state for which the calls are removed
73 *
74 * Removes the callback functions and invokes the teardown callback on
75 * the present cpus which have already reached the @state.
76 */
77static inline void cpuhp_remove_state(enum cpuhp_state state)
78{
79 __cpuhp_remove_state(state, true);
80}
81
82/**
83 * cpuhp_remove_state_nocalls - Remove hotplug state callbacks without invoking
84 * teardown
85 * @state: The state for which the calls are removed
86 */
87static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state)
88{
89 __cpuhp_remove_state(state, false);
90}
91
Thomas Gleixner8df3e072016-02-26 18:43:41 +000092#ifdef CONFIG_SMP
93void cpuhp_online_idle(enum cpuhp_state state);
94#else
95static inline void cpuhp_online_idle(enum cpuhp_state state) { }
96#endif
97
Thomas Gleixnercff7d372016-02-26 18:43:28 +000098#endif