]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/cpuhotplug.h
perf/core: Convert to hotplug state machine
[mirror_ubuntu-artful-kernel.git] / include / linux / cpuhotplug.h
CommitLineData
cff7d378
TG
1#ifndef __CPUHOTPLUG_H
2#define __CPUHOTPLUG_H
3
4enum cpuhp_state {
5 CPUHP_OFFLINE,
6 CPUHP_CREATE_THREADS,
00e16c3d 7 CPUHP_PERF_PREPARE,
cff7d378
TG
8 CPUHP_NOTIFY_PREPARE,
9 CPUHP_BRINGUP_CPU,
e69aab13 10 CPUHP_AP_IDLE_DEAD,
4baa0afc 11 CPUHP_AP_OFFLINE,
9cf7243d 12 CPUHP_AP_SCHED_STARTING,
93131f7a 13 CPUHP_AP_IRQ_GIC_STARTING,
6670a6d8 14 CPUHP_AP_IRQ_GICV3_STARTING,
6c034d17 15 CPUHP_AP_IRQ_HIP04_STARTING,
cb5ff2d2
RC
16 CPUHP_AP_IRQ_ARMADA_XP_STARTING,
17 CPUHP_AP_IRQ_ARMADA_CASC_STARTING,
7ca04bc2 18 CPUHP_AP_IRQ_BCM2836_STARTING,
7fbbaebf 19 CPUHP_AP_ARM_MVEBU_COHERENCY,
4baa0afc
TG
20 CPUHP_AP_NOTIFY_STARTING,
21 CPUHP_AP_ONLINE,
22 CPUHP_TEARDOWN_CPU,
fc6d73d6 23 CPUHP_AP_ONLINE_IDLE,
1cf4f629 24 CPUHP_AP_SMPBOOT_THREADS,
07d36c9e 25 CPUHP_AP_X86_VDSO_VMA_ONLINE,
00e16c3d 26 CPUHP_AP_PERF_ONLINE,
1cf4f629
TG
27 CPUHP_AP_NOTIFY_ONLINE,
28 CPUHP_AP_ONLINE_DYN,
29 CPUHP_AP_ONLINE_DYN_END = CPUHP_AP_ONLINE_DYN + 30,
aaddd7d1 30 CPUHP_AP_ACTIVE,
cff7d378
TG
31 CPUHP_ONLINE,
32};
33
5b7aa87e
TG
34int __cpuhp_setup_state(enum cpuhp_state state, const char *name, bool invoke,
35 int (*startup)(unsigned int cpu),
36 int (*teardown)(unsigned int cpu));
37
38/**
39 * cpuhp_setup_state - Setup hotplug state callbacks with calling the callbacks
40 * @state: The state for which the calls are installed
41 * @name: Name of the callback (will be used in debug output)
42 * @startup: startup callback function
43 * @teardown: teardown callback function
44 *
45 * Installs the callback functions and invokes the startup callback on
46 * the present cpus which have already reached the @state.
47 */
48static inline int cpuhp_setup_state(enum cpuhp_state state,
49 const char *name,
50 int (*startup)(unsigned int cpu),
51 int (*teardown)(unsigned int cpu))
52{
53 return __cpuhp_setup_state(state, name, true, startup, teardown);
54}
55
56/**
57 * cpuhp_setup_state_nocalls - Setup hotplug state callbacks without calling the
58 * callbacks
59 * @state: The state for which the calls are installed
60 * @name: Name of the callback.
61 * @startup: startup callback function
62 * @teardown: teardown callback function
63 *
64 * Same as @cpuhp_setup_state except that no calls are executed are invoked
65 * during installation of this callback. NOP if SMP=n or HOTPLUG_CPU=n.
66 */
67static inline int cpuhp_setup_state_nocalls(enum cpuhp_state state,
68 const char *name,
69 int (*startup)(unsigned int cpu),
70 int (*teardown)(unsigned int cpu))
71{
72 return __cpuhp_setup_state(state, name, false, startup, teardown);
73}
74
75void __cpuhp_remove_state(enum cpuhp_state state, bool invoke);
76
77/**
78 * cpuhp_remove_state - Remove hotplug state callbacks and invoke the teardown
79 * @state: The state for which the calls are removed
80 *
81 * Removes the callback functions and invokes the teardown callback on
82 * the present cpus which have already reached the @state.
83 */
84static inline void cpuhp_remove_state(enum cpuhp_state state)
85{
86 __cpuhp_remove_state(state, true);
87}
88
89/**
90 * cpuhp_remove_state_nocalls - Remove hotplug state callbacks without invoking
91 * teardown
92 * @state: The state for which the calls are removed
93 */
94static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state)
95{
96 __cpuhp_remove_state(state, false);
97}
98
8df3e07e
TG
99#ifdef CONFIG_SMP
100void cpuhp_online_idle(enum cpuhp_state state);
101#else
102static inline void cpuhp_online_idle(enum cpuhp_state state) { }
103#endif
104
cff7d378 105#endif