| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/common/bL_switcher.c -- big.LITTLE cluster switcher core driver |
| 3 | * |
| 4 | * Created by: Nicolas Pitre, March 2012 |
| 5 | * Copyright: (C) 2012-2013 Linaro Limited |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 12 | #include <linux/atomic.h> |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 13 | #include <linux/init.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/sched.h> |
| 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/cpu_pm.h> |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 19 | #include <linux/cpu.h> |
| Lorenzo Pieralisi | 3f09d47 | 2012-05-16 15:55:54 +0100 | [diff] [blame] | 20 | #include <linux/cpumask.h> |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 21 | #include <linux/kthread.h> |
| 22 | #include <linux/wait.h> |
| Lorenzo Pieralisi | 3f09d47 | 2012-05-16 15:55:54 +0100 | [diff] [blame] | 23 | #include <linux/clockchips.h> |
| 24 | #include <linux/hrtimer.h> |
| 25 | #include <linux/tick.h> |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 26 | #include <linux/notifier.h> |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 27 | #include <linux/mm.h> |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 28 | #include <linux/mutex.h> |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 29 | #include <linux/spinlock.h> |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 30 | #include <linux/string.h> |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 31 | #include <linux/sysfs.h> |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 32 | #include <linux/irqchip/arm-gic.h> |
| Nicolas Pitre | c4821c0 | 2012-11-22 13:33:35 -0500 | [diff] [blame] | 33 | #include <linux/moduleparam.h> |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 34 | |
| 35 | #include <asm/smp_plat.h> |
| 36 | #include <asm/suspend.h> |
| 37 | #include <asm/mcpm.h> |
| 38 | #include <asm/bL_switcher.h> |
| 39 | |
| 40 | |
| 41 | /* |
| 42 | * Use our own MPIDR accessors as the generic ones in asm/cputype.h have |
| 43 | * __attribute_const__ and we don't want the compiler to assume any |
| 44 | * constness here as the value _does_ change along some code paths. |
| 45 | */ |
| 46 | |
| 47 | static int read_mpidr(void) |
| 48 | { |
| 49 | unsigned int id; |
| 50 | asm volatile ("mrc p15, 0, %0, c0, c0, 5" : "=r" (id)); |
| 51 | return id & MPIDR_HWID_BITMASK; |
| 52 | } |
| 53 | |
| 54 | /* |
| 55 | * bL switcher core code. |
| 56 | */ |
| 57 | |
| 58 | static void bL_do_switch(void *_unused) |
| 59 | { |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 60 | unsigned ib_mpidr, ib_cpu, ib_cluster; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 61 | |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 62 | pr_debug("%s\n", __func__); |
| 63 | |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 64 | ib_mpidr = cpu_logical_map(smp_processor_id()); |
| 65 | ib_cpu = MPIDR_AFFINITY_LEVEL(ib_mpidr, 0); |
| 66 | ib_cluster = MPIDR_AFFINITY_LEVEL(ib_mpidr, 1); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * Our state has been saved at this point. Let's release our |
| 70 | * inbound CPU. |
| 71 | */ |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 72 | mcpm_set_entry_vector(ib_cpu, ib_cluster, cpu_resume); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 73 | sev(); |
| 74 | |
| 75 | /* |
| 76 | * From this point, we must assume that our counterpart CPU might |
| 77 | * have taken over in its parallel world already, as if execution |
| 78 | * just returned from cpu_suspend(). It is therefore important to |
| 79 | * be very careful not to make any change the other guy is not |
| 80 | * expecting. This is why we need stack isolation. |
| 81 | * |
| 82 | * Fancy under cover tasks could be performed here. For now |
| 83 | * we have none. |
| 84 | */ |
| 85 | |
| 86 | /* Let's put ourself down. */ |
| 87 | mcpm_cpu_power_down(); |
| 88 | |
| 89 | /* should never get here */ |
| 90 | BUG(); |
| 91 | } |
| 92 | |
| 93 | /* |
| Nicolas Pitre | c052de2 | 2012-11-27 15:55:33 -0500 | [diff] [blame] | 94 | * Stack isolation. To ensure 'current' remains valid, we just use another |
| 95 | * piece of our thread's stack space which should be fairly lightly used. |
| 96 | * The selected area starts just above the thread_info structure located |
| 97 | * at the very bottom of the stack, aligned to a cache line, and indexed |
| 98 | * with the cluster number. |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 99 | */ |
| Nicolas Pitre | c052de2 | 2012-11-27 15:55:33 -0500 | [diff] [blame] | 100 | #define STACK_SIZE 512 |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 101 | extern void call_with_stack(void (*fn)(void *), void *arg, void *sp); |
| 102 | static int bL_switchpoint(unsigned long _arg) |
| 103 | { |
| 104 | unsigned int mpidr = read_mpidr(); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 105 | unsigned int clusterid = MPIDR_AFFINITY_LEVEL(mpidr, 1); |
| Nicolas Pitre | c052de2 | 2012-11-27 15:55:33 -0500 | [diff] [blame] | 106 | void *stack = current_thread_info() + 1; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 107 | stack = PTR_ALIGN(stack, L1_CACHE_BYTES); |
| Nicolas Pitre | c052de2 | 2012-11-27 15:55:33 -0500 | [diff] [blame] | 108 | stack += clusterid * STACK_SIZE + STACK_SIZE; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 109 | call_with_stack(bL_do_switch, (void *)_arg, stack); |
| 110 | BUG(); |
| 111 | } |
| 112 | |
| 113 | /* |
| 114 | * Generic switcher interface |
| 115 | */ |
| 116 | |
| Nicolas Pitre | ed96762 | 2012-07-05 21:33:26 -0400 | [diff] [blame] | 117 | static unsigned int bL_gic_id[MAX_CPUS_PER_CLUSTER][MAX_NR_CLUSTERS]; |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 118 | static int bL_switcher_cpu_pairing[NR_CPUS]; |
| Nicolas Pitre | ed96762 | 2012-07-05 21:33:26 -0400 | [diff] [blame] | 119 | |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 120 | /* |
| 121 | * bL_switch_to - Switch to a specific cluster for the current CPU |
| 122 | * @new_cluster_id: the ID of the cluster to switch to. |
| 123 | * |
| 124 | * This function must be called on the CPU to be switched. |
| 125 | * Returns 0 on success, else a negative status code. |
| 126 | */ |
| 127 | static int bL_switch_to(unsigned int new_cluster_id) |
| 128 | { |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 129 | unsigned int mpidr, this_cpu, that_cpu; |
| 130 | unsigned int ob_mpidr, ob_cpu, ob_cluster, ib_mpidr, ib_cpu, ib_cluster; |
| Lorenzo Pieralisi | 3f09d47 | 2012-05-16 15:55:54 +0100 | [diff] [blame] | 131 | struct tick_device *tdev; |
| 132 | enum clock_event_mode tdev_mode; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 133 | int ret; |
| 134 | |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 135 | this_cpu = smp_processor_id(); |
| 136 | ob_mpidr = read_mpidr(); |
| 137 | ob_cpu = MPIDR_AFFINITY_LEVEL(ob_mpidr, 0); |
| 138 | ob_cluster = MPIDR_AFFINITY_LEVEL(ob_mpidr, 1); |
| 139 | BUG_ON(cpu_logical_map(this_cpu) != ob_mpidr); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 140 | |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 141 | if (new_cluster_id == ob_cluster) |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 142 | return 0; |
| 143 | |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 144 | that_cpu = bL_switcher_cpu_pairing[this_cpu]; |
| 145 | ib_mpidr = cpu_logical_map(that_cpu); |
| 146 | ib_cpu = MPIDR_AFFINITY_LEVEL(ib_mpidr, 0); |
| 147 | ib_cluster = MPIDR_AFFINITY_LEVEL(ib_mpidr, 1); |
| 148 | |
| 149 | pr_debug("before switch: CPU %d MPIDR %#x -> %#x\n", |
| 150 | this_cpu, ob_mpidr, ib_mpidr); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 151 | |
| 152 | /* Close the gate for our entry vectors */ |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 153 | mcpm_set_entry_vector(ob_cpu, ob_cluster, NULL); |
| 154 | mcpm_set_entry_vector(ib_cpu, ib_cluster, NULL); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 155 | |
| 156 | /* |
| 157 | * Let's wake up the inbound CPU now in case it requires some delay |
| 158 | * to come online, but leave it gated in our entry vector code. |
| 159 | */ |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 160 | ret = mcpm_cpu_power_up(ib_cpu, ib_cluster); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 161 | if (ret) { |
| 162 | pr_err("%s: mcpm_cpu_power_up() returned %d\n", __func__, ret); |
| 163 | return ret; |
| 164 | } |
| 165 | |
| 166 | /* |
| 167 | * From this point we are entering the switch critical zone |
| 168 | * and can't take any interrupts anymore. |
| 169 | */ |
| 170 | local_irq_disable(); |
| 171 | local_fiq_disable(); |
| 172 | |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 173 | /* redirect GIC's SGIs to our counterpart */ |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 174 | gic_migrate_target(bL_gic_id[ib_cpu][ib_cluster]); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 175 | |
| 176 | /* |
| 177 | * Raise a SGI on the inbound CPU to make sure it doesn't stall |
| 178 | * in a possible WFI, such as in mcpm_power_down(). |
| 179 | */ |
| 180 | arch_send_wakeup_ipi_mask(cpumask_of(this_cpu)); |
| 181 | |
| Lorenzo Pieralisi | 3f09d47 | 2012-05-16 15:55:54 +0100 | [diff] [blame] | 182 | tdev = tick_get_device(this_cpu); |
| 183 | if (tdev && !cpumask_equal(tdev->evtdev->cpumask, cpumask_of(this_cpu))) |
| 184 | tdev = NULL; |
| 185 | if (tdev) { |
| 186 | tdev_mode = tdev->evtdev->mode; |
| 187 | clockevents_set_mode(tdev->evtdev, CLOCK_EVT_MODE_SHUTDOWN); |
| 188 | } |
| 189 | |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 190 | ret = cpu_pm_enter(); |
| 191 | |
| 192 | /* we can not tolerate errors at this point */ |
| 193 | if (ret) |
| 194 | panic("%s: cpu_pm_enter() returned %d\n", __func__, ret); |
| 195 | |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 196 | /* Swap the physical CPUs in the logical map for this logical CPU. */ |
| 197 | cpu_logical_map(this_cpu) = ib_mpidr; |
| 198 | cpu_logical_map(that_cpu) = ob_mpidr; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 199 | |
| 200 | /* Let's do the actual CPU switch. */ |
| 201 | ret = cpu_suspend(0, bL_switchpoint); |
| 202 | if (ret > 0) |
| 203 | panic("%s: cpu_suspend() returned %d\n", __func__, ret); |
| 204 | |
| 205 | /* We are executing on the inbound CPU at this point */ |
| 206 | mpidr = read_mpidr(); |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 207 | pr_debug("after switch: CPU %d MPIDR %#x\n", this_cpu, mpidr); |
| 208 | BUG_ON(mpidr != ib_mpidr); |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 209 | |
| 210 | mcpm_cpu_powered_up(); |
| 211 | |
| 212 | ret = cpu_pm_exit(); |
| 213 | |
| Lorenzo Pieralisi | 3f09d47 | 2012-05-16 15:55:54 +0100 | [diff] [blame] | 214 | if (tdev) { |
| 215 | clockevents_set_mode(tdev->evtdev, tdev_mode); |
| 216 | clockevents_program_event(tdev->evtdev, |
| 217 | tdev->evtdev->next_event, 1); |
| 218 | } |
| 219 | |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 220 | local_fiq_enable(); |
| 221 | local_irq_enable(); |
| 222 | |
| 223 | if (ret) |
| 224 | pr_err("%s exiting with error %d\n", __func__, ret); |
| 225 | return ret; |
| 226 | } |
| 227 | |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 228 | struct bL_thread { |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 229 | spinlock_t lock; |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 230 | struct task_struct *task; |
| 231 | wait_queue_head_t wq; |
| 232 | int wanted_cluster; |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 233 | struct completion started; |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 234 | bL_switch_completion_handler completer; |
| 235 | void *completer_cookie; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 236 | }; |
| 237 | |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 238 | static struct bL_thread bL_threads[NR_CPUS]; |
| 239 | |
| 240 | static int bL_switcher_thread(void *arg) |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 241 | { |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 242 | struct bL_thread *t = arg; |
| 243 | struct sched_param param = { .sched_priority = 1 }; |
| 244 | int cluster; |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 245 | bL_switch_completion_handler completer; |
| 246 | void *completer_cookie; |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 247 | |
| 248 | sched_setscheduler_nocheck(current, SCHED_FIFO, ¶m); |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 249 | complete(&t->started); |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 250 | |
| 251 | do { |
| 252 | if (signal_pending(current)) |
| 253 | flush_signals(current); |
| 254 | wait_event_interruptible(t->wq, |
| 255 | t->wanted_cluster != -1 || |
| 256 | kthread_should_stop()); |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 257 | |
| 258 | spin_lock(&t->lock); |
| 259 | cluster = t->wanted_cluster; |
| 260 | completer = t->completer; |
| 261 | completer_cookie = t->completer_cookie; |
| 262 | t->wanted_cluster = -1; |
| 263 | t->completer = NULL; |
| 264 | spin_unlock(&t->lock); |
| 265 | |
| 266 | if (cluster != -1) { |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 267 | bL_switch_to(cluster); |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 268 | |
| 269 | if (completer) |
| 270 | completer(completer_cookie); |
| 271 | } |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 272 | } while (!kthread_should_stop()); |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 277 | static struct task_struct *bL_switcher_thread_create(int cpu, void *arg) |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 278 | { |
| 279 | struct task_struct *task; |
| 280 | |
| 281 | task = kthread_create_on_node(bL_switcher_thread, arg, |
| 282 | cpu_to_node(cpu), "kswitcher_%d", cpu); |
| 283 | if (!IS_ERR(task)) { |
| 284 | kthread_bind(task, cpu); |
| 285 | wake_up_process(task); |
| 286 | } else |
| 287 | pr_err("%s failed for CPU %d\n", __func__, cpu); |
| 288 | return task; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | /* |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 292 | * bL_switch_request_cb - Switch to a specific cluster for the given CPU, |
| 293 | * with completion notification via a callback |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 294 | * |
| 295 | * @cpu: the CPU to switch |
| 296 | * @new_cluster_id: the ID of the cluster to switch to. |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 297 | * @completer: switch completion callback. if non-NULL, |
| 298 | * @completer(@completer_cookie) will be called on completion of |
| 299 | * the switch, in non-atomic context. |
| 300 | * @completer_cookie: opaque context argument for @completer. |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 301 | * |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 302 | * This function causes a cluster switch on the given CPU by waking up |
| 303 | * the appropriate switcher thread. This function may or may not return |
| 304 | * before the switch has occurred. |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 305 | * |
| 306 | * If a @completer callback function is supplied, it will be called when |
| 307 | * the switch is complete. This can be used to determine asynchronously |
| 308 | * when the switch is complete, regardless of when bL_switch_request() |
| 309 | * returns. When @completer is supplied, no new switch request is permitted |
| 310 | * for the affected CPU until after the switch is complete, and @completer |
| 311 | * has returned. |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 312 | */ |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 313 | int bL_switch_request_cb(unsigned int cpu, unsigned int new_cluster_id, |
| 314 | bL_switch_completion_handler completer, |
| 315 | void *completer_cookie) |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 316 | { |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 317 | struct bL_thread *t; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 318 | |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 319 | if (cpu >= ARRAY_SIZE(bL_threads)) { |
| 320 | pr_err("%s: cpu %d out of bounds\n", __func__, cpu); |
| 321 | return -EINVAL; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 322 | } |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 323 | |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 324 | t = &bL_threads[cpu]; |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 325 | |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 326 | if (IS_ERR(t->task)) |
| 327 | return PTR_ERR(t->task); |
| 328 | if (!t->task) |
| 329 | return -ESRCH; |
| 330 | |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 331 | spin_lock(&t->lock); |
| 332 | if (t->completer) { |
| 333 | spin_unlock(&t->lock); |
| 334 | return -EBUSY; |
| 335 | } |
| 336 | t->completer = completer; |
| 337 | t->completer_cookie = completer_cookie; |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 338 | t->wanted_cluster = new_cluster_id; |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 339 | spin_unlock(&t->lock); |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 340 | wake_up(&t->wq); |
| 341 | return 0; |
| Nicolas Pitre | 1c33be5 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 342 | } |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 343 | EXPORT_SYMBOL_GPL(bL_switch_request_cb); |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 344 | |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 345 | /* |
| 346 | * Activation and configuration code. |
| 347 | */ |
| 348 | |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 349 | static DEFINE_MUTEX(bL_switcher_activation_lock); |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 350 | static BLOCKING_NOTIFIER_HEAD(bL_activation_notifier); |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 351 | static unsigned int bL_switcher_active; |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 352 | static unsigned int bL_switcher_cpu_original_cluster[NR_CPUS]; |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 353 | static cpumask_t bL_switcher_removed_logical_cpus; |
| 354 | |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 355 | int bL_switcher_register_notifier(struct notifier_block *nb) |
| 356 | { |
| 357 | return blocking_notifier_chain_register(&bL_activation_notifier, nb); |
| 358 | } |
| 359 | EXPORT_SYMBOL_GPL(bL_switcher_register_notifier); |
| 360 | |
| 361 | int bL_switcher_unregister_notifier(struct notifier_block *nb) |
| 362 | { |
| 363 | return blocking_notifier_chain_unregister(&bL_activation_notifier, nb); |
| 364 | } |
| 365 | EXPORT_SYMBOL_GPL(bL_switcher_unregister_notifier); |
| 366 | |
| 367 | static int bL_activation_notify(unsigned long val) |
| 368 | { |
| 369 | int ret; |
| 370 | |
| 371 | ret = blocking_notifier_call_chain(&bL_activation_notifier, val, NULL); |
| 372 | if (ret & NOTIFY_STOP_MASK) |
| 373 | pr_err("%s: notifier chain failed with status 0x%x\n", |
| 374 | __func__, ret); |
| 375 | return notifier_to_errno(ret); |
| 376 | } |
| 377 | |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 378 | static void bL_switcher_restore_cpus(void) |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 379 | { |
| 380 | int i; |
| 381 | |
| 382 | for_each_cpu(i, &bL_switcher_removed_logical_cpus) |
| 383 | cpu_up(i); |
| 384 | } |
| 385 | |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 386 | static int bL_switcher_halve_cpus(void) |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 387 | { |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 388 | int i, j, cluster_0, gic_id, ret; |
| 389 | unsigned int cpu, cluster, mask; |
| 390 | cpumask_t available_cpus; |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 391 | |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 392 | /* First pass to validate what we have */ |
| 393 | mask = 0; |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 394 | for_each_online_cpu(i) { |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 395 | cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 0); |
| 396 | cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 1); |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 397 | if (cluster >= 2) { |
| 398 | pr_err("%s: only dual cluster systems are supported\n", __func__); |
| 399 | return -EINVAL; |
| 400 | } |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 401 | if (WARN_ON(cpu >= MAX_CPUS_PER_CLUSTER)) |
| 402 | return -EINVAL; |
| 403 | mask |= (1 << cluster); |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 404 | } |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 405 | if (mask != 3) { |
| 406 | pr_err("%s: no CPU pairing possible\n", __func__); |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 407 | return -EINVAL; |
| 408 | } |
| 409 | |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 410 | /* |
| 411 | * Now let's do the pairing. We match each CPU with another CPU |
| 412 | * from a different cluster. To get a uniform scheduling behavior |
| 413 | * without fiddling with CPU topology and compute capacity data, |
| 414 | * we'll use logical CPUs initially belonging to the same cluster. |
| 415 | */ |
| 416 | memset(bL_switcher_cpu_pairing, -1, sizeof(bL_switcher_cpu_pairing)); |
| 417 | cpumask_copy(&available_cpus, cpu_online_mask); |
| 418 | cluster_0 = -1; |
| 419 | for_each_cpu(i, &available_cpus) { |
| 420 | int match = -1; |
| 421 | cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 1); |
| 422 | if (cluster_0 == -1) |
| 423 | cluster_0 = cluster; |
| 424 | if (cluster != cluster_0) |
| 425 | continue; |
| 426 | cpumask_clear_cpu(i, &available_cpus); |
| 427 | for_each_cpu(j, &available_cpus) { |
| 428 | cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(j), 1); |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 429 | /* |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 430 | * Let's remember the last match to create "odd" |
| 431 | * pairings on purpose in order for other code not |
| 432 | * to assume any relation between physical and |
| 433 | * logical CPU numbers. |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 434 | */ |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 435 | if (cluster != cluster_0) |
| 436 | match = j; |
| 437 | } |
| 438 | if (match != -1) { |
| 439 | bL_switcher_cpu_pairing[i] = match; |
| 440 | cpumask_clear_cpu(match, &available_cpus); |
| 441 | pr_info("CPU%d paired with CPU%d\n", i, match); |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | /* |
| 446 | * Now we disable the unwanted CPUs i.e. everything that has no |
| 447 | * pairing information (that includes the pairing counterparts). |
| 448 | */ |
| 449 | cpumask_clear(&bL_switcher_removed_logical_cpus); |
| 450 | for_each_online_cpu(i) { |
| 451 | cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 0); |
| 452 | cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 1); |
| 453 | |
| 454 | /* Let's take note of the GIC ID for this CPU */ |
| 455 | gic_id = gic_get_cpu_id(i); |
| 456 | if (gic_id < 0) { |
| 457 | pr_err("%s: bad GIC ID for CPU %d\n", __func__, i); |
| 458 | bL_switcher_restore_cpus(); |
| 459 | return -EINVAL; |
| 460 | } |
| 461 | bL_gic_id[cpu][cluster] = gic_id; |
| 462 | pr_info("GIC ID for CPU %u cluster %u is %u\n", |
| 463 | cpu, cluster, gic_id); |
| 464 | |
| 465 | if (bL_switcher_cpu_pairing[i] != -1) { |
| 466 | bL_switcher_cpu_original_cluster[i] = cluster; |
| 467 | continue; |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | ret = cpu_down(i); |
| 471 | if (ret) { |
| 472 | bL_switcher_restore_cpus(); |
| 473 | return ret; |
| 474 | } |
| 475 | cpumask_set_cpu(i, &bL_switcher_removed_logical_cpus); |
| 476 | } |
| 477 | |
| 478 | return 0; |
| 479 | } |
| 480 | |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 481 | static int bL_switcher_enable(void) |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 482 | { |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 483 | int cpu, ret; |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 484 | |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 485 | mutex_lock(&bL_switcher_activation_lock); |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 486 | cpu_hotplug_driver_lock(); |
| 487 | if (bL_switcher_active) { |
| 488 | cpu_hotplug_driver_unlock(); |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 489 | mutex_unlock(&bL_switcher_activation_lock); |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 490 | return 0; |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 491 | } |
| 492 | |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 493 | pr_info("big.LITTLE switcher initializing\n"); |
| 494 | |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 495 | ret = bL_activation_notify(BL_NOTIFY_PRE_ENABLE); |
| 496 | if (ret) |
| 497 | goto error; |
| 498 | |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 499 | ret = bL_switcher_halve_cpus(); |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 500 | if (ret) |
| 501 | goto error; |
| Nicolas Pitre | 9797a0e | 2012-11-21 11:53:27 -0500 | [diff] [blame] | 502 | |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 503 | for_each_online_cpu(cpu) { |
| 504 | struct bL_thread *t = &bL_threads[cpu]; |
| Dave Martin | 0577fee | 2013-05-22 19:08:16 +0100 | [diff] [blame^] | 505 | spin_lock_init(&t->lock); |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 506 | init_waitqueue_head(&t->wq); |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 507 | init_completion(&t->started); |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 508 | t->wanted_cluster = -1; |
| 509 | t->task = bL_switcher_thread_create(cpu, t); |
| 510 | } |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 511 | |
| 512 | bL_switcher_active = 1; |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 513 | bL_activation_notify(BL_NOTIFY_POST_ENABLE); |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 514 | pr_info("big.LITTLE switcher initialized\n"); |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 515 | goto out; |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 516 | |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 517 | error: |
| 518 | pr_warn("big.LITTLE switcher initialization failed\n"); |
| 519 | bL_activation_notify(BL_NOTIFY_POST_DISABLE); |
| 520 | |
| 521 | out: |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 522 | cpu_hotplug_driver_unlock(); |
| 523 | mutex_unlock(&bL_switcher_activation_lock); |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 524 | return ret; |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 525 | } |
| 526 | |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 527 | #ifdef CONFIG_SYSFS |
| 528 | |
| 529 | static void bL_switcher_disable(void) |
| 530 | { |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 531 | unsigned int cpu, cluster; |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 532 | struct bL_thread *t; |
| 533 | struct task_struct *task; |
| 534 | |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 535 | mutex_lock(&bL_switcher_activation_lock); |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 536 | cpu_hotplug_driver_lock(); |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 537 | |
| 538 | if (!bL_switcher_active) |
| 539 | goto out; |
| 540 | |
| 541 | if (bL_activation_notify(BL_NOTIFY_PRE_DISABLE) != 0) { |
| 542 | bL_activation_notify(BL_NOTIFY_POST_ENABLE); |
| 543 | goto out; |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 544 | } |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 545 | |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 546 | bL_switcher_active = 0; |
| 547 | |
| 548 | /* |
| 549 | * To deactivate the switcher, we must shut down the switcher |
| 550 | * threads to prevent any other requests from being accepted. |
| 551 | * Then, if the final cluster for given logical CPU is not the |
| 552 | * same as the original one, we'll recreate a switcher thread |
| 553 | * just for the purpose of switching the CPU back without any |
| 554 | * possibility for interference from external requests. |
| 555 | */ |
| 556 | for_each_online_cpu(cpu) { |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 557 | t = &bL_threads[cpu]; |
| 558 | task = t->task; |
| 559 | t->task = NULL; |
| 560 | if (!task || IS_ERR(task)) |
| 561 | continue; |
| 562 | kthread_stop(task); |
| 563 | /* no more switch may happen on this CPU at this point */ |
| 564 | cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(cpu), 1); |
| 565 | if (cluster == bL_switcher_cpu_original_cluster[cpu]) |
| 566 | continue; |
| 567 | init_completion(&t->started); |
| 568 | t->wanted_cluster = bL_switcher_cpu_original_cluster[cpu]; |
| 569 | task = bL_switcher_thread_create(cpu, t); |
| 570 | if (!IS_ERR(task)) { |
| 571 | wait_for_completion(&t->started); |
| 572 | kthread_stop(task); |
| 573 | cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(cpu), 1); |
| 574 | if (cluster == bL_switcher_cpu_original_cluster[cpu]) |
| 575 | continue; |
| 576 | } |
| 577 | /* If execution gets here, we're in trouble. */ |
| 578 | pr_crit("%s: unable to restore original cluster for CPU %d\n", |
| 579 | __func__, cpu); |
| Nicolas Pitre | 38c35d4 | 2013-06-13 23:42:46 -0400 | [diff] [blame] | 580 | pr_crit("%s: CPU %d can't be restored\n", |
| 581 | __func__, bL_switcher_cpu_pairing[cpu]); |
| 582 | cpumask_clear_cpu(bL_switcher_cpu_pairing[cpu], |
| 583 | &bL_switcher_removed_logical_cpus); |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | bL_switcher_restore_cpus(); |
| Dave Martin | 491990e | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 587 | bL_activation_notify(BL_NOTIFY_POST_DISABLE); |
| 588 | |
| 589 | out: |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 590 | cpu_hotplug_driver_unlock(); |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 591 | mutex_unlock(&bL_switcher_activation_lock); |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | static ssize_t bL_switcher_active_show(struct kobject *kobj, |
| 595 | struct kobj_attribute *attr, char *buf) |
| 596 | { |
| 597 | return sprintf(buf, "%u\n", bL_switcher_active); |
| 598 | } |
| 599 | |
| 600 | static ssize_t bL_switcher_active_store(struct kobject *kobj, |
| 601 | struct kobj_attribute *attr, const char *buf, size_t count) |
| 602 | { |
| 603 | int ret; |
| 604 | |
| 605 | switch (buf[0]) { |
| 606 | case '0': |
| 607 | bL_switcher_disable(); |
| 608 | ret = 0; |
| 609 | break; |
| 610 | case '1': |
| 611 | ret = bL_switcher_enable(); |
| 612 | break; |
| 613 | default: |
| 614 | ret = -EINVAL; |
| 615 | } |
| 616 | |
| 617 | return (ret >= 0) ? count : ret; |
| 618 | } |
| 619 | |
| 620 | static struct kobj_attribute bL_switcher_active_attr = |
| 621 | __ATTR(active, 0644, bL_switcher_active_show, bL_switcher_active_store); |
| 622 | |
| 623 | static struct attribute *bL_switcher_attrs[] = { |
| 624 | &bL_switcher_active_attr.attr, |
| 625 | NULL, |
| 626 | }; |
| 627 | |
| 628 | static struct attribute_group bL_switcher_attr_group = { |
| 629 | .attrs = bL_switcher_attrs, |
| 630 | }; |
| 631 | |
| 632 | static struct kobject *bL_switcher_kobj; |
| 633 | |
| 634 | static int __init bL_switcher_sysfs_init(void) |
| 635 | { |
| 636 | int ret; |
| 637 | |
| 638 | bL_switcher_kobj = kobject_create_and_add("bL_switcher", kernel_kobj); |
| 639 | if (!bL_switcher_kobj) |
| 640 | return -ENOMEM; |
| 641 | ret = sysfs_create_group(bL_switcher_kobj, &bL_switcher_attr_group); |
| 642 | if (ret) |
| 643 | kobject_put(bL_switcher_kobj); |
| 644 | return ret; |
| 645 | } |
| 646 | |
| 647 | #endif /* CONFIG_SYSFS */ |
| 648 | |
| Dave Martin | c0f4375 | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 649 | bool bL_switcher_get_enabled(void) |
| 650 | { |
| 651 | mutex_lock(&bL_switcher_activation_lock); |
| 652 | |
| 653 | return bL_switcher_active; |
| 654 | } |
| 655 | EXPORT_SYMBOL_GPL(bL_switcher_get_enabled); |
| 656 | |
| 657 | void bL_switcher_put_enabled(void) |
| 658 | { |
| 659 | mutex_unlock(&bL_switcher_activation_lock); |
| 660 | } |
| 661 | EXPORT_SYMBOL_GPL(bL_switcher_put_enabled); |
| 662 | |
| Nicolas Pitre | 27261435 | 2012-11-26 22:48:55 -0500 | [diff] [blame] | 663 | /* |
| 664 | * Veto any CPU hotplug operation on those CPUs we've removed |
| 665 | * while the switcher is active. |
| 666 | * We're just not ready to deal with that given the trickery involved. |
| 667 | */ |
| 668 | static int bL_switcher_hotplug_callback(struct notifier_block *nfb, |
| 669 | unsigned long action, void *hcpu) |
| 670 | { |
| 671 | if (bL_switcher_active) { |
| 672 | int pairing = bL_switcher_cpu_pairing[(unsigned long)hcpu]; |
| 673 | switch (action & 0xf) { |
| 674 | case CPU_UP_PREPARE: |
| 675 | case CPU_DOWN_PREPARE: |
| 676 | if (pairing == -1) |
| 677 | return NOTIFY_BAD; |
| 678 | } |
| 679 | } |
| 680 | return NOTIFY_DONE; |
| 681 | } |
| 682 | |
| Nicolas Pitre | c4821c0 | 2012-11-22 13:33:35 -0500 | [diff] [blame] | 683 | static bool no_bL_switcher; |
| 684 | core_param(no_bL_switcher, no_bL_switcher, bool, 0644); |
| 685 | |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 686 | static int __init bL_switcher_init(void) |
| 687 | { |
| 688 | int ret; |
| 689 | |
| 690 | if (MAX_NR_CLUSTERS != 2) { |
| 691 | pr_err("%s: only dual cluster systems are supported\n", __func__); |
| 692 | return -EINVAL; |
| 693 | } |
| 694 | |
| Nicolas Pitre | 27261435 | 2012-11-26 22:48:55 -0500 | [diff] [blame] | 695 | cpu_notifier(bL_switcher_hotplug_callback, 0); |
| 696 | |
| Nicolas Pitre | c4821c0 | 2012-11-22 13:33:35 -0500 | [diff] [blame] | 697 | if (!no_bL_switcher) { |
| 698 | ret = bL_switcher_enable(); |
| 699 | if (ret) |
| 700 | return ret; |
| 701 | } |
| Nicolas Pitre | 6b7437a | 2012-11-22 00:05:07 -0500 | [diff] [blame] | 702 | |
| 703 | #ifdef CONFIG_SYSFS |
| 704 | ret = bL_switcher_sysfs_init(); |
| 705 | if (ret) |
| 706 | pr_err("%s: unable to create sysfs entry\n", __func__); |
| 707 | #endif |
| 708 | |
| 709 | return 0; |
| 710 | } |
| 711 | |
| Nicolas Pitre | 71ce1de | 2012-10-26 02:36:17 -0400 | [diff] [blame] | 712 | late_initcall(bL_switcher_init); |