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