blob: 16ab41779ca74b736ed9827a797c0bb6cb224c0b [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,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00007 CPUHP_PERF_PREPARE,
Thomas Gleixner95ca7922016-07-13 17:16:10 +00008 CPUHP_PERF_X86_PREPARE,
Thomas Gleixner1a246b92016-07-13 17:16:12 +00009 CPUHP_PERF_X86_UNCORE_PREP,
Richard Cochran96b2bd32016-07-13 17:16:13 +000010 CPUHP_PERF_X86_AMD_UNCORE_PREP,
Richard Cochran8b5b7732016-07-13 17:16:15 +000011 CPUHP_PERF_X86_RAPL_PREP,
Thomas Gleixnera409f5e2016-07-13 17:16:19 +000012 CPUHP_PERF_BFIN,
Thomas Gleixner57ecde42016-07-13 17:16:20 +000013 CPUHP_PERF_POWER,
Thomas Gleixnere3cfce12016-07-13 17:16:23 +000014 CPUHP_PERF_SUPERH,
Thomas Gleixnercff7d372016-02-26 18:43:28 +000015 CPUHP_NOTIFY_PREPARE,
16 CPUHP_BRINGUP_CPU,
Thomas Gleixnere69aab12016-02-26 18:43:43 +000017 CPUHP_AP_IDLE_DEAD,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +000018 CPUHP_AP_OFFLINE,
Thomas Gleixner9cf72432016-03-10 12:54:09 +010019 CPUHP_AP_SCHED_STARTING,
Richard Cochran93131f72016-07-13 17:16:04 +000020 CPUHP_AP_IRQ_GIC_STARTING,
Richard Cochran6670a6d2016-07-13 17:16:05 +000021 CPUHP_AP_IRQ_GICV3_STARTING,
Richard Cochran6c034d12016-07-13 17:16:06 +000022 CPUHP_AP_IRQ_HIP04_STARTING,
Richard Cochrancb5ff2d2016-07-13 17:16:07 +000023 CPUHP_AP_IRQ_ARMADA_XP_STARTING,
24 CPUHP_AP_IRQ_ARMADA_CASC_STARTING,
Sebastian Andrzej Siewior7ca04bc2016-07-13 17:16:07 +000025 CPUHP_AP_IRQ_BCM2836_STARTING,
Sebastian Andrzej Siewior7fbbaeb2016-07-13 17:16:08 +000026 CPUHP_AP_ARM_MVEBU_COHERENCY,
Thomas Gleixner1a246b92016-07-13 17:16:12 +000027 CPUHP_AP_PERF_X86_UNCORE_STARTING,
Richard Cochran96b2bd32016-07-13 17:16:13 +000028 CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING,
Thomas Gleixner95ca7922016-07-13 17:16:10 +000029 CPUHP_AP_PERF_X86_STARTING,
Thomas Gleixner9744f7b2016-07-13 17:16:14 +000030 CPUHP_AP_PERF_X86_AMD_IBS_STARTING,
Richard Cochranf0704822016-07-13 17:16:16 +000031 CPUHP_AP_PERF_X86_CQM_STARTING,
Sebastian Andrzej Siewior77c34ef2016-07-13 17:16:18 +000032 CPUHP_AP_PERF_X86_CSTATE_STARTING,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +000033 CPUHP_AP_NOTIFY_STARTING,
34 CPUHP_AP_ONLINE,
35 CPUHP_TEARDOWN_CPU,
Thomas Gleixnerfc6d73d2016-02-26 18:43:40 +000036 CPUHP_AP_ONLINE_IDLE,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +000037 CPUHP_AP_SMPBOOT_THREADS,
Sebastian Andrzej Siewior07d36c92016-07-13 17:16:03 +000038 CPUHP_AP_X86_VDSO_VMA_ONLINE,
Thomas Gleixner00e16c32016-07-13 17:16:09 +000039 CPUHP_AP_PERF_ONLINE,
Thomas Gleixner95ca7922016-07-13 17:16:10 +000040 CPUHP_AP_PERF_X86_ONLINE,
Thomas Gleixner1a246b92016-07-13 17:16:12 +000041 CPUHP_AP_PERF_X86_UNCORE_ONLINE,
Richard Cochran96b2bd32016-07-13 17:16:13 +000042 CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE,
Richard Cochran8b5b7732016-07-13 17:16:15 +000043 CPUHP_AP_PERF_X86_RAPL_ONLINE,
Richard Cochranf0704822016-07-13 17:16:16 +000044 CPUHP_AP_PERF_X86_CQM_ONLINE,
Sebastian Andrzej Siewior77c34ef2016-07-13 17:16:18 +000045 CPUHP_AP_PERF_X86_CSTATE_ONLINE,
Thomas Gleixner4f0f8212016-07-13 17:16:21 +000046 CPUHP_AP_PERF_S390_CF_ONLINE,
Sebastian Andrzej Siewiore3d617f2016-07-13 17:16:22 +000047 CPUHP_AP_PERF_S390_SF_ONLINE,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +000048 CPUHP_AP_NOTIFY_ONLINE,
49 CPUHP_AP_ONLINE_DYN,
50 CPUHP_AP_ONLINE_DYN_END = CPUHP_AP_ONLINE_DYN + 30,
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +010051 CPUHP_AP_ACTIVE,
Thomas Gleixnercff7d372016-02-26 18:43:28 +000052 CPUHP_ONLINE,
53};
54
Thomas Gleixner5b7aa872016-02-26 18:43:33 +000055int __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 */
69static 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 */
88static 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
96void __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 */
105static 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 */
115static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state)
116{
117 __cpuhp_remove_state(state, false);
118}
119
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000120#ifdef CONFIG_SMP
121void cpuhp_online_idle(enum cpuhp_state state);
122#else
123static inline void cpuhp_online_idle(enum cpuhp_state state) { }
124#endif
125
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000126#endif