sh/perf: Convert the hotplug notifiers to state machine callbacks
[deliverable/linux.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_NOTIFY_PREPARE,
16 CPUHP_BRINGUP_CPU,
17 CPUHP_AP_IDLE_DEAD,
18 CPUHP_AP_OFFLINE,
19 CPUHP_AP_SCHED_STARTING,
20 CPUHP_AP_IRQ_GIC_STARTING,
21 CPUHP_AP_IRQ_GICV3_STARTING,
22 CPUHP_AP_IRQ_HIP04_STARTING,
23 CPUHP_AP_IRQ_ARMADA_XP_STARTING,
24 CPUHP_AP_IRQ_ARMADA_CASC_STARTING,
25 CPUHP_AP_IRQ_BCM2836_STARTING,
26 CPUHP_AP_ARM_MVEBU_COHERENCY,
27 CPUHP_AP_PERF_X86_UNCORE_STARTING,
28 CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING,
29 CPUHP_AP_PERF_X86_STARTING,
30 CPUHP_AP_PERF_X86_AMD_IBS_STARTING,
31 CPUHP_AP_PERF_X86_CQM_STARTING,
32 CPUHP_AP_PERF_X86_CSTATE_STARTING,
33 CPUHP_AP_NOTIFY_STARTING,
34 CPUHP_AP_ONLINE,
35 CPUHP_TEARDOWN_CPU,
36 CPUHP_AP_ONLINE_IDLE,
37 CPUHP_AP_SMPBOOT_THREADS,
38 CPUHP_AP_X86_VDSO_VMA_ONLINE,
39 CPUHP_AP_PERF_ONLINE,
40 CPUHP_AP_PERF_X86_ONLINE,
41 CPUHP_AP_PERF_X86_UNCORE_ONLINE,
42 CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE,
43 CPUHP_AP_PERF_X86_RAPL_ONLINE,
44 CPUHP_AP_PERF_X86_CQM_ONLINE,
45 CPUHP_AP_PERF_X86_CSTATE_ONLINE,
46 CPUHP_AP_PERF_S390_CF_ONLINE,
47 CPUHP_AP_PERF_S390_SF_ONLINE,
48 CPUHP_AP_NOTIFY_ONLINE,
49 CPUHP_AP_ONLINE_DYN,
50 CPUHP_AP_ONLINE_DYN_END = CPUHP_AP_ONLINE_DYN + 30,
51 CPUHP_AP_ACTIVE,
52 CPUHP_ONLINE,
53 };
54
55 int __cpuhp_setup_state(enum cpuhp_state state, const char *name, bool invoke,
56 int (*startup)(unsigned int cpu),
57 int (*teardown)(unsigned int cpu));
58
59 /**
60 * cpuhp_setup_state - Setup hotplug state callbacks with calling the callbacks
61 * @state: The state for which the calls are installed
62 * @name: Name of the callback (will be used in debug output)
63 * @startup: startup callback function
64 * @teardown: teardown callback function
65 *
66 * Installs the callback functions and invokes the startup callback on
67 * the present cpus which have already reached the @state.
68 */
69 static inline int cpuhp_setup_state(enum cpuhp_state state,
70 const char *name,
71 int (*startup)(unsigned int cpu),
72 int (*teardown)(unsigned int cpu))
73 {
74 return __cpuhp_setup_state(state, name, true, startup, teardown);
75 }
76
77 /**
78 * cpuhp_setup_state_nocalls - Setup hotplug state callbacks without calling the
79 * callbacks
80 * @state: The state for which the calls are installed
81 * @name: Name of the callback.
82 * @startup: startup callback function
83 * @teardown: teardown callback function
84 *
85 * Same as @cpuhp_setup_state except that no calls are executed are invoked
86 * during installation of this callback. NOP if SMP=n or HOTPLUG_CPU=n.
87 */
88 static inline int cpuhp_setup_state_nocalls(enum cpuhp_state state,
89 const char *name,
90 int (*startup)(unsigned int cpu),
91 int (*teardown)(unsigned int cpu))
92 {
93 return __cpuhp_setup_state(state, name, false, startup, teardown);
94 }
95
96 void __cpuhp_remove_state(enum cpuhp_state state, bool invoke);
97
98 /**
99 * cpuhp_remove_state - Remove hotplug state callbacks and invoke the teardown
100 * @state: The state for which the calls are removed
101 *
102 * Removes the callback functions and invokes the teardown callback on
103 * the present cpus which have already reached the @state.
104 */
105 static inline void cpuhp_remove_state(enum cpuhp_state state)
106 {
107 __cpuhp_remove_state(state, true);
108 }
109
110 /**
111 * cpuhp_remove_state_nocalls - Remove hotplug state callbacks without invoking
112 * teardown
113 * @state: The state for which the calls are removed
114 */
115 static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state)
116 {
117 __cpuhp_remove_state(state, false);
118 }
119
120 #ifdef CONFIG_SMP
121 void cpuhp_online_idle(enum cpuhp_state state);
122 #else
123 static inline void cpuhp_online_idle(enum cpuhp_state state) { }
124 #endif
125
126 #endif
This page took 0.034351 seconds and 6 git commands to generate.