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