relayfs: Convert to hotplug state machine
[sfrench/cifs-2.6.git] / include / linux / cpuhotplug.h
1 #ifndef __CPUHOTPLUG_H
2 #define __CPUHOTPLUG_H
3
4 enum cpuhp_state {
5         CPUHP_OFFLINE,
6         CPUHP_CREATE_THREADS,
7         CPUHP_PERF_PREPARE,
8         CPUHP_PERF_X86_PREPARE,
9         CPUHP_PERF_X86_UNCORE_PREP,
10         CPUHP_PERF_X86_AMD_UNCORE_PREP,
11         CPUHP_PERF_X86_RAPL_PREP,
12         CPUHP_PERF_BFIN,
13         CPUHP_PERF_POWER,
14         CPUHP_PERF_SUPERH,
15         CPUHP_X86_HPET_DEAD,
16         CPUHP_X86_APB_DEAD,
17         CPUHP_VIRT_NET_DEAD,
18         CPUHP_WORKQUEUE_PREP,
19         CPUHP_POWER_NUMA_PREPARE,
20         CPUHP_HRTIMERS_PREPARE,
21         CPUHP_PROFILE_PREPARE,
22         CPUHP_X2APIC_PREPARE,
23         CPUHP_SMPCFD_PREPARE,
24         CPUHP_RELAY_PREPARE,
25         CPUHP_RCUTREE_PREP,
26         CPUHP_NOTIFY_PREPARE,
27         CPUHP_TIMERS_DEAD,
28         CPUHP_BRINGUP_CPU,
29         CPUHP_AP_IDLE_DEAD,
30         CPUHP_AP_OFFLINE,
31         CPUHP_AP_SCHED_STARTING,
32         CPUHP_AP_RCUTREE_DYING,
33         CPUHP_AP_IRQ_GIC_STARTING,
34         CPUHP_AP_IRQ_GICV3_STARTING,
35         CPUHP_AP_IRQ_HIP04_STARTING,
36         CPUHP_AP_IRQ_ARMADA_XP_STARTING,
37         CPUHP_AP_IRQ_ARMADA_CASC_STARTING,
38         CPUHP_AP_IRQ_BCM2836_STARTING,
39         CPUHP_AP_ARM_MVEBU_COHERENCY,
40         CPUHP_AP_PERF_X86_UNCORE_STARTING,
41         CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING,
42         CPUHP_AP_PERF_X86_STARTING,
43         CPUHP_AP_PERF_X86_AMD_IBS_STARTING,
44         CPUHP_AP_PERF_X86_CQM_STARTING,
45         CPUHP_AP_PERF_X86_CSTATE_STARTING,
46         CPUHP_AP_PERF_XTENSA_STARTING,
47         CPUHP_AP_PERF_METAG_STARTING,
48         CPUHP_AP_MIPS_OP_LOONGSON3_STARTING,
49         CPUHP_AP_ARM_VFP_STARTING,
50         CPUHP_AP_PERF_ARM_STARTING,
51         CPUHP_AP_ARM_L2X0_STARTING,
52         CPUHP_AP_ARM_ARCH_TIMER_STARTING,
53         CPUHP_AP_ARM_GLOBAL_TIMER_STARTING,
54         CPUHP_AP_DUMMY_TIMER_STARTING,
55         CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING,
56         CPUHP_AP_ARM_TWD_STARTING,
57         CPUHP_AP_METAG_TIMER_STARTING,
58         CPUHP_AP_QCOM_TIMER_STARTING,
59         CPUHP_AP_ARMADA_TIMER_STARTING,
60         CPUHP_AP_MARCO_TIMER_STARTING,
61         CPUHP_AP_MIPS_GIC_TIMER_STARTING,
62         CPUHP_AP_ARC_TIMER_STARTING,
63         CPUHP_AP_KVM_STARTING,
64         CPUHP_AP_KVM_ARM_VGIC_INIT_STARTING,
65         CPUHP_AP_KVM_ARM_VGIC_STARTING,
66         CPUHP_AP_KVM_ARM_TIMER_STARTING,
67         CPUHP_AP_ARM_XEN_STARTING,
68         CPUHP_AP_ARM_CORESIGHT_STARTING,
69         CPUHP_AP_ARM_CORESIGHT4_STARTING,
70         CPUHP_AP_ARM64_ISNDEP_STARTING,
71         CPUHP_AP_SMPCFD_DYING,
72         CPUHP_AP_X86_TBOOT_DYING,
73         CPUHP_AP_ONLINE,
74         CPUHP_TEARDOWN_CPU,
75         CPUHP_AP_ONLINE_IDLE,
76         CPUHP_AP_SMPBOOT_THREADS,
77         CPUHP_AP_X86_VDSO_VMA_ONLINE,
78         CPUHP_AP_PERF_ONLINE,
79         CPUHP_AP_PERF_X86_ONLINE,
80         CPUHP_AP_PERF_X86_UNCORE_ONLINE,
81         CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE,
82         CPUHP_AP_PERF_X86_AMD_POWER_ONLINE,
83         CPUHP_AP_PERF_X86_RAPL_ONLINE,
84         CPUHP_AP_PERF_X86_CQM_ONLINE,
85         CPUHP_AP_PERF_X86_CSTATE_ONLINE,
86         CPUHP_AP_PERF_S390_CF_ONLINE,
87         CPUHP_AP_PERF_S390_SF_ONLINE,
88         CPUHP_AP_PERF_ARM_CCI_ONLINE,
89         CPUHP_AP_PERF_ARM_CCN_ONLINE,
90         CPUHP_AP_WORKQUEUE_ONLINE,
91         CPUHP_AP_RCUTREE_ONLINE,
92         CPUHP_AP_NOTIFY_ONLINE,
93         CPUHP_AP_ONLINE_DYN,
94         CPUHP_AP_ONLINE_DYN_END         = CPUHP_AP_ONLINE_DYN + 30,
95         CPUHP_AP_X86_HPET_ONLINE,
96         CPUHP_AP_X86_KVM_CLK_ONLINE,
97         CPUHP_AP_ACTIVE,
98         CPUHP_ONLINE,
99 };
100
101 int __cpuhp_setup_state(enum cpuhp_state state, const char *name, bool invoke,
102                         int (*startup)(unsigned int cpu),
103                         int (*teardown)(unsigned int cpu), bool multi_instance);
104
105 /**
106  * cpuhp_setup_state - Setup hotplug state callbacks with calling the callbacks
107  * @state:      The state for which the calls are installed
108  * @name:       Name of the callback (will be used in debug output)
109  * @startup:    startup callback function
110  * @teardown:   teardown callback function
111  *
112  * Installs the callback functions and invokes the startup callback on
113  * the present cpus which have already reached the @state.
114  */
115 static inline int cpuhp_setup_state(enum cpuhp_state state,
116                                     const char *name,
117                                     int (*startup)(unsigned int cpu),
118                                     int (*teardown)(unsigned int cpu))
119 {
120         return __cpuhp_setup_state(state, name, true, startup, teardown, false);
121 }
122
123 /**
124  * cpuhp_setup_state_nocalls - Setup hotplug state callbacks without calling the
125  *                             callbacks
126  * @state:      The state for which the calls are installed
127  * @name:       Name of the callback.
128  * @startup:    startup callback function
129  * @teardown:   teardown callback function
130  *
131  * Same as @cpuhp_setup_state except that no calls are executed are invoked
132  * during installation of this callback. NOP if SMP=n or HOTPLUG_CPU=n.
133  */
134 static inline int cpuhp_setup_state_nocalls(enum cpuhp_state state,
135                                             const char *name,
136                                             int (*startup)(unsigned int cpu),
137                                             int (*teardown)(unsigned int cpu))
138 {
139         return __cpuhp_setup_state(state, name, false, startup, teardown,
140                                    false);
141 }
142
143 /**
144  * cpuhp_setup_state_multi - Add callbacks for multi state
145  * @state:      The state for which the calls are installed
146  * @name:       Name of the callback.
147  * @startup:    startup callback function
148  * @teardown:   teardown callback function
149  *
150  * Sets the internal multi_instance flag and prepares a state to work as a multi
151  * instance callback. No callbacks are invoked at this point. The callbacks are
152  * invoked once an instance for this state are registered via
153  * @cpuhp_state_add_instance or @cpuhp_state_add_instance_nocalls.
154  */
155 static inline int cpuhp_setup_state_multi(enum cpuhp_state state,
156                                           const char *name,
157                                           int (*startup)(unsigned int cpu,
158                                                          struct hlist_node *node),
159                                           int (*teardown)(unsigned int cpu,
160                                                           struct hlist_node *node))
161 {
162         return __cpuhp_setup_state(state, name, false,
163                                    (void *) startup,
164                                    (void *) teardown, true);
165 }
166
167 int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node,
168                                bool invoke);
169
170 /**
171  * cpuhp_state_add_instance - Add an instance for a state and invoke startup
172  *                            callback.
173  * @state:      The state for which the instance is installed
174  * @node:       The node for this individual state.
175  *
176  * Installs the instance for the @state and invokes the startup callback on
177  * the present cpus which have already reached the @state. The @state must have
178  * been earlier marked as multi-instance by @cpuhp_setup_state_multi.
179  */
180 static inline int cpuhp_state_add_instance(enum cpuhp_state state,
181                                            struct hlist_node *node)
182 {
183         return __cpuhp_state_add_instance(state, node, true);
184 }
185
186 /**
187  * cpuhp_state_add_instance_nocalls - Add an instance for a state without
188  *                                    invoking the startup callback.
189  * @state:      The state for which the instance is installed
190  * @node:       The node for this individual state.
191  *
192  * Installs the instance for the @state The @state must have been earlier
193  * marked as multi-instance by @cpuhp_setup_state_multi.
194  */
195 static inline int cpuhp_state_add_instance_nocalls(enum cpuhp_state state,
196                                                    struct hlist_node *node)
197 {
198         return __cpuhp_state_add_instance(state, node, false);
199 }
200
201 void __cpuhp_remove_state(enum cpuhp_state state, bool invoke);
202
203 /**
204  * cpuhp_remove_state - Remove hotplug state callbacks and invoke the teardown
205  * @state:      The state for which the calls are removed
206  *
207  * Removes the callback functions and invokes the teardown callback on
208  * the present cpus which have already reached the @state.
209  */
210 static inline void cpuhp_remove_state(enum cpuhp_state state)
211 {
212         __cpuhp_remove_state(state, true);
213 }
214
215 /**
216  * cpuhp_remove_state_nocalls - Remove hotplug state callbacks without invoking
217  *                              teardown
218  * @state:      The state for which the calls are removed
219  */
220 static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state)
221 {
222         __cpuhp_remove_state(state, false);
223 }
224
225 /**
226  * cpuhp_remove_multi_state - Remove hotplug multi state callback
227  * @state:      The state for which the calls are removed
228  *
229  * Removes the callback functions from a multi state. This is the reverse of
230  * cpuhp_setup_state_multi(). All instances should have been removed before
231  * invoking this function.
232  */
233 static inline void cpuhp_remove_multi_state(enum cpuhp_state state)
234 {
235         __cpuhp_remove_state(state, false);
236 }
237
238 int __cpuhp_state_remove_instance(enum cpuhp_state state,
239                                   struct hlist_node *node, bool invoke);
240
241 /**
242  * cpuhp_state_remove_instance - Remove hotplug instance from state and invoke
243  *                               the teardown callback
244  * @state:      The state from which the instance is removed
245  * @node:       The node for this individual state.
246  *
247  * Removes the instance and invokes the teardown callback on the present cpus
248  * which have already reached the @state.
249  */
250 static inline int cpuhp_state_remove_instance(enum cpuhp_state state,
251                                               struct hlist_node *node)
252 {
253         return __cpuhp_state_remove_instance(state, node, true);
254 }
255
256 /**
257  * cpuhp_state_remove_instance_nocalls - Remove hotplug instance from state
258  *                                       without invoking the reatdown callback
259  * @state:      The state from which the instance is removed
260  * @node:       The node for this individual state.
261  *
262  * Removes the instance without invoking the teardown callback.
263  */
264 static inline int cpuhp_state_remove_instance_nocalls(enum cpuhp_state state,
265                                                       struct hlist_node *node)
266 {
267         return __cpuhp_state_remove_instance(state, node, false);
268 }
269
270 #ifdef CONFIG_SMP
271 void cpuhp_online_idle(enum cpuhp_state state);
272 #else
273 static inline void cpuhp_online_idle(enum cpuhp_state state) { }
274 #endif
275
276 #endif