Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1 | #ifndef __CPUHOTPLUG_H |
| 2 | #define __CPUHOTPLUG_H |
| 3 | |
| 4 | enum cpuhp_state { |
| 5 | CPUHP_OFFLINE, |
| 6 | CPUHP_CREATE_THREADS, |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 7 | CPUHP_PERF_PREPARE, |
Thomas Gleixner | 95ca792 | 2016-07-13 17:16:10 +0000 | [diff] [blame] | 8 | CPUHP_PERF_X86_PREPARE, |
Thomas Gleixner | 1a246b9 | 2016-07-13 17:16:12 +0000 | [diff] [blame] | 9 | CPUHP_PERF_X86_UNCORE_PREP, |
Richard Cochran | 96b2bd3 | 2016-07-13 17:16:13 +0000 | [diff] [blame] | 10 | CPUHP_PERF_X86_AMD_UNCORE_PREP, |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 11 | CPUHP_NOTIFY_PREPARE, |
| 12 | CPUHP_BRINGUP_CPU, |
Thomas Gleixner | e69aab1 | 2016-02-26 18:43:43 +0000 | [diff] [blame] | 13 | CPUHP_AP_IDLE_DEAD, |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 14 | CPUHP_AP_OFFLINE, |
Thomas Gleixner | 9cf7243 | 2016-03-10 12:54:09 +0100 | [diff] [blame] | 15 | CPUHP_AP_SCHED_STARTING, |
Richard Cochran | 93131f7 | 2016-07-13 17:16:04 +0000 | [diff] [blame] | 16 | CPUHP_AP_IRQ_GIC_STARTING, |
Richard Cochran | 6670a6d | 2016-07-13 17:16:05 +0000 | [diff] [blame] | 17 | CPUHP_AP_IRQ_GICV3_STARTING, |
Richard Cochran | 6c034d1 | 2016-07-13 17:16:06 +0000 | [diff] [blame] | 18 | CPUHP_AP_IRQ_HIP04_STARTING, |
Richard Cochran | cb5ff2d | 2016-07-13 17:16:07 +0000 | [diff] [blame] | 19 | CPUHP_AP_IRQ_ARMADA_XP_STARTING, |
| 20 | CPUHP_AP_IRQ_ARMADA_CASC_STARTING, |
Sebastian Andrzej Siewior | 7ca04bc | 2016-07-13 17:16:07 +0000 | [diff] [blame] | 21 | CPUHP_AP_IRQ_BCM2836_STARTING, |
Sebastian Andrzej Siewior | 7fbbaeb | 2016-07-13 17:16:08 +0000 | [diff] [blame] | 22 | CPUHP_AP_ARM_MVEBU_COHERENCY, |
Thomas Gleixner | 1a246b9 | 2016-07-13 17:16:12 +0000 | [diff] [blame] | 23 | CPUHP_AP_PERF_X86_UNCORE_STARTING, |
Richard Cochran | 96b2bd3 | 2016-07-13 17:16:13 +0000 | [diff] [blame] | 24 | CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING, |
Thomas Gleixner | 95ca792 | 2016-07-13 17:16:10 +0000 | [diff] [blame] | 25 | CPUHP_AP_PERF_X86_STARTING, |
Thomas Gleixner | 9744f7b | 2016-07-13 17:16:14 +0000 | [diff] [blame^] | 26 | CPUHP_AP_PERF_X86_AMD_IBS_STARTING, |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 27 | CPUHP_AP_NOTIFY_STARTING, |
| 28 | CPUHP_AP_ONLINE, |
| 29 | CPUHP_TEARDOWN_CPU, |
Thomas Gleixner | fc6d73d | 2016-02-26 18:43:40 +0000 | [diff] [blame] | 30 | CPUHP_AP_ONLINE_IDLE, |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 31 | CPUHP_AP_SMPBOOT_THREADS, |
Sebastian Andrzej Siewior | 07d36c9 | 2016-07-13 17:16:03 +0000 | [diff] [blame] | 32 | CPUHP_AP_X86_VDSO_VMA_ONLINE, |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 33 | CPUHP_AP_PERF_ONLINE, |
Thomas Gleixner | 95ca792 | 2016-07-13 17:16:10 +0000 | [diff] [blame] | 34 | CPUHP_AP_PERF_X86_ONLINE, |
Thomas Gleixner | 1a246b9 | 2016-07-13 17:16:12 +0000 | [diff] [blame] | 35 | CPUHP_AP_PERF_X86_UNCORE_ONLINE, |
Richard Cochran | 96b2bd3 | 2016-07-13 17:16:13 +0000 | [diff] [blame] | 36 | CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE, |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 37 | CPUHP_AP_NOTIFY_ONLINE, |
| 38 | CPUHP_AP_ONLINE_DYN, |
| 39 | CPUHP_AP_ONLINE_DYN_END = CPUHP_AP_ONLINE_DYN + 30, |
Thomas Gleixner | aaddd7d | 2016-03-10 12:54:19 +0100 | [diff] [blame] | 40 | CPUHP_AP_ACTIVE, |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 41 | CPUHP_ONLINE, |
| 42 | }; |
| 43 | |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 44 | int __cpuhp_setup_state(enum cpuhp_state state, const char *name, bool invoke, |
| 45 | int (*startup)(unsigned int cpu), |
| 46 | int (*teardown)(unsigned int cpu)); |
| 47 | |
| 48 | /** |
| 49 | * cpuhp_setup_state - Setup hotplug state callbacks with calling the callbacks |
| 50 | * @state: The state for which the calls are installed |
| 51 | * @name: Name of the callback (will be used in debug output) |
| 52 | * @startup: startup callback function |
| 53 | * @teardown: teardown callback function |
| 54 | * |
| 55 | * Installs the callback functions and invokes the startup callback on |
| 56 | * the present cpus which have already reached the @state. |
| 57 | */ |
| 58 | static inline int cpuhp_setup_state(enum cpuhp_state state, |
| 59 | const char *name, |
| 60 | int (*startup)(unsigned int cpu), |
| 61 | int (*teardown)(unsigned int cpu)) |
| 62 | { |
| 63 | return __cpuhp_setup_state(state, name, true, startup, teardown); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * cpuhp_setup_state_nocalls - Setup hotplug state callbacks without calling the |
| 68 | * callbacks |
| 69 | * @state: The state for which the calls are installed |
| 70 | * @name: Name of the callback. |
| 71 | * @startup: startup callback function |
| 72 | * @teardown: teardown callback function |
| 73 | * |
| 74 | * Same as @cpuhp_setup_state except that no calls are executed are invoked |
| 75 | * during installation of this callback. NOP if SMP=n or HOTPLUG_CPU=n. |
| 76 | */ |
| 77 | static inline int cpuhp_setup_state_nocalls(enum cpuhp_state state, |
| 78 | const char *name, |
| 79 | int (*startup)(unsigned int cpu), |
| 80 | int (*teardown)(unsigned int cpu)) |
| 81 | { |
| 82 | return __cpuhp_setup_state(state, name, false, startup, teardown); |
| 83 | } |
| 84 | |
| 85 | void __cpuhp_remove_state(enum cpuhp_state state, bool invoke); |
| 86 | |
| 87 | /** |
| 88 | * cpuhp_remove_state - Remove hotplug state callbacks and invoke the teardown |
| 89 | * @state: The state for which the calls are removed |
| 90 | * |
| 91 | * Removes the callback functions and invokes the teardown callback on |
| 92 | * the present cpus which have already reached the @state. |
| 93 | */ |
| 94 | static inline void cpuhp_remove_state(enum cpuhp_state state) |
| 95 | { |
| 96 | __cpuhp_remove_state(state, true); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * cpuhp_remove_state_nocalls - Remove hotplug state callbacks without invoking |
| 101 | * teardown |
| 102 | * @state: The state for which the calls are removed |
| 103 | */ |
| 104 | static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state) |
| 105 | { |
| 106 | __cpuhp_remove_state(state, false); |
| 107 | } |
| 108 | |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 109 | #ifdef CONFIG_SMP |
| 110 | void cpuhp_online_idle(enum cpuhp_state state); |
| 111 | #else |
| 112 | static inline void cpuhp_online_idle(enum cpuhp_state state) { } |
| 113 | #endif |
| 114 | |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 115 | #endif |