blob: 34316be404d51c3c4a02068d53f85944ec9a15cb [file] [log] [blame]
Nicolas Pitre1c33be52012-04-12 02:56:10 -04001/*
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 Martin0577fee2013-05-22 19:08:16 +010012#include <linux/atomic.h>
Nicolas Pitre1c33be52012-04-12 02:56:10 -040013#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 Pitre71ce1de2012-10-26 02:36:17 -040019#include <linux/cpu.h>
Lorenzo Pieralisi3f09d472012-05-16 15:55:54 +010020#include <linux/cpumask.h>
Nicolas Pitre71ce1de2012-10-26 02:36:17 -040021#include <linux/kthread.h>
22#include <linux/wait.h>
Lorenzo Pieralisi3f09d472012-05-16 15:55:54 +010023#include <linux/clockchips.h>
24#include <linux/hrtimer.h>
25#include <linux/tick.h>
Dave Martin491990e2012-12-10 17:19:58 +000026#include <linux/notifier.h>
Nicolas Pitre1c33be52012-04-12 02:56:10 -040027#include <linux/mm.h>
Dave Martinc0f43752012-12-10 17:19:57 +000028#include <linux/mutex.h>
Dave Martin0577fee2013-05-22 19:08:16 +010029#include <linux/spinlock.h>
Nicolas Pitre1c33be52012-04-12 02:56:10 -040030#include <linux/string.h>
Nicolas Pitre6b7437a2012-11-22 00:05:07 -050031#include <linux/sysfs.h>
Nicolas Pitre1c33be52012-04-12 02:56:10 -040032#include <linux/irqchip/arm-gic.h>
Nicolas Pitrec4821c02012-11-22 13:33:35 -050033#include <linux/moduleparam.h>
Nicolas Pitre1c33be52012-04-12 02:56:10 -040034
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
47static 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
58static void bL_do_switch(void *_unused)
59{
Nicolas Pitre38c35d42013-06-13 23:42:46 -040060 unsigned ib_mpidr, ib_cpu, ib_cluster;
Nicolas Pitre1c33be52012-04-12 02:56:10 -040061
Nicolas Pitre1c33be52012-04-12 02:56:10 -040062 pr_debug("%s\n", __func__);
63
Nicolas Pitre38c35d42013-06-13 23:42:46 -040064 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 Pitre1c33be52012-04-12 02:56:10 -040067
68 /*
69 * Our state has been saved at this point. Let's release our
70 * inbound CPU.
71 */
Nicolas Pitre38c35d42013-06-13 23:42:46 -040072 mcpm_set_entry_vector(ib_cpu, ib_cluster, cpu_resume);
Nicolas Pitre1c33be52012-04-12 02:56:10 -040073 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 Pitrec052de22012-11-27 15:55:33 -050094 * 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 Pitre1c33be52012-04-12 02:56:10 -040099 */
Nicolas Pitrec052de22012-11-27 15:55:33 -0500100#define STACK_SIZE 512
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400101extern void call_with_stack(void (*fn)(void *), void *arg, void *sp);
102static int bL_switchpoint(unsigned long _arg)
103{
104 unsigned int mpidr = read_mpidr();
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400105 unsigned int clusterid = MPIDR_AFFINITY_LEVEL(mpidr, 1);
Nicolas Pitrec052de22012-11-27 15:55:33 -0500106 void *stack = current_thread_info() + 1;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400107 stack = PTR_ALIGN(stack, L1_CACHE_BYTES);
Nicolas Pitrec052de22012-11-27 15:55:33 -0500108 stack += clusterid * STACK_SIZE + STACK_SIZE;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400109 call_with_stack(bL_do_switch, (void *)_arg, stack);
110 BUG();
111}
112
113/*
114 * Generic switcher interface
115 */
116
Nicolas Pitreed967622012-07-05 21:33:26 -0400117static unsigned int bL_gic_id[MAX_CPUS_PER_CLUSTER][MAX_NR_CLUSTERS];
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400118static int bL_switcher_cpu_pairing[NR_CPUS];
Nicolas Pitreed967622012-07-05 21:33:26 -0400119
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400120/*
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 */
127static int bL_switch_to(unsigned int new_cluster_id)
128{
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400129 unsigned int mpidr, this_cpu, that_cpu;
130 unsigned int ob_mpidr, ob_cpu, ob_cluster, ib_mpidr, ib_cpu, ib_cluster;
Lorenzo Pieralisi3f09d472012-05-16 15:55:54 +0100131 struct tick_device *tdev;
132 enum clock_event_mode tdev_mode;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400133 int ret;
134
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400135 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 Pitre1c33be52012-04-12 02:56:10 -0400140
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400141 if (new_cluster_id == ob_cluster)
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400142 return 0;
143
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400144 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 Pitre1c33be52012-04-12 02:56:10 -0400151
152 /* Close the gate for our entry vectors */
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400153 mcpm_set_entry_vector(ob_cpu, ob_cluster, NULL);
154 mcpm_set_entry_vector(ib_cpu, ib_cluster, NULL);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400155
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 Pitre38c35d42013-06-13 23:42:46 -0400160 ret = mcpm_cpu_power_up(ib_cpu, ib_cluster);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400161 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 Pitre1c33be52012-04-12 02:56:10 -0400173 /* redirect GIC's SGIs to our counterpart */
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400174 gic_migrate_target(bL_gic_id[ib_cpu][ib_cluster]);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400175
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 Pieralisi3f09d472012-05-16 15:55:54 +0100182 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 Pitre1c33be52012-04-12 02:56:10 -0400190 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 Pitre38c35d42013-06-13 23:42:46 -0400196 /* 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 Pitre1c33be52012-04-12 02:56:10 -0400199
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 Pitre38c35d42013-06-13 23:42:46 -0400207 pr_debug("after switch: CPU %d MPIDR %#x\n", this_cpu, mpidr);
208 BUG_ON(mpidr != ib_mpidr);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400209
210 mcpm_cpu_powered_up();
211
212 ret = cpu_pm_exit();
213
Lorenzo Pieralisi3f09d472012-05-16 15:55:54 +0100214 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 Pitre1c33be52012-04-12 02:56:10 -0400220 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 Pitre71ce1de2012-10-26 02:36:17 -0400228struct bL_thread {
Dave Martin0577fee2013-05-22 19:08:16 +0100229 spinlock_t lock;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400230 struct task_struct *task;
231 wait_queue_head_t wq;
232 int wanted_cluster;
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500233 struct completion started;
Dave Martin0577fee2013-05-22 19:08:16 +0100234 bL_switch_completion_handler completer;
235 void *completer_cookie;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400236};
237
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400238static struct bL_thread bL_threads[NR_CPUS];
239
240static int bL_switcher_thread(void *arg)
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400241{
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400242 struct bL_thread *t = arg;
243 struct sched_param param = { .sched_priority = 1 };
244 int cluster;
Dave Martin0577fee2013-05-22 19:08:16 +0100245 bL_switch_completion_handler completer;
246 void *completer_cookie;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400247
248 sched_setscheduler_nocheck(current, SCHED_FIFO, &param);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500249 complete(&t->started);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400250
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 Martin0577fee2013-05-22 19:08:16 +0100257
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 Pitre71ce1de2012-10-26 02:36:17 -0400267 bL_switch_to(cluster);
Dave Martin0577fee2013-05-22 19:08:16 +0100268
269 if (completer)
270 completer(completer_cookie);
271 }
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400272 } while (!kthread_should_stop());
273
274 return 0;
275}
276
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500277static struct task_struct *bL_switcher_thread_create(int cpu, void *arg)
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400278{
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 Pitre1c33be52012-04-12 02:56:10 -0400289}
290
291/*
Dave Martin0577fee2013-05-22 19:08:16 +0100292 * bL_switch_request_cb - Switch to a specific cluster for the given CPU,
293 * with completion notification via a callback
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400294 *
295 * @cpu: the CPU to switch
296 * @new_cluster_id: the ID of the cluster to switch to.
Dave Martin0577fee2013-05-22 19:08:16 +0100297 * @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 Pitre1c33be52012-04-12 02:56:10 -0400301 *
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400302 * 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 Martin0577fee2013-05-22 19:08:16 +0100305 *
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 Pitre1c33be52012-04-12 02:56:10 -0400312 */
Dave Martin0577fee2013-05-22 19:08:16 +0100313int bL_switch_request_cb(unsigned int cpu, unsigned int new_cluster_id,
314 bL_switch_completion_handler completer,
315 void *completer_cookie)
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400316{
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400317 struct bL_thread *t;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400318
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400319 if (cpu >= ARRAY_SIZE(bL_threads)) {
320 pr_err("%s: cpu %d out of bounds\n", __func__, cpu);
321 return -EINVAL;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400322 }
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400323
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400324 t = &bL_threads[cpu];
Dave Martin0577fee2013-05-22 19:08:16 +0100325
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400326 if (IS_ERR(t->task))
327 return PTR_ERR(t->task);
328 if (!t->task)
329 return -ESRCH;
330
Dave Martin0577fee2013-05-22 19:08:16 +0100331 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 Pitre71ce1de2012-10-26 02:36:17 -0400338 t->wanted_cluster = new_cluster_id;
Dave Martin0577fee2013-05-22 19:08:16 +0100339 spin_unlock(&t->lock);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400340 wake_up(&t->wq);
341 return 0;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400342}
Dave Martin0577fee2013-05-22 19:08:16 +0100343EXPORT_SYMBOL_GPL(bL_switch_request_cb);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400344
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500345/*
346 * Activation and configuration code.
347 */
348
Dave Martinc0f43752012-12-10 17:19:57 +0000349static DEFINE_MUTEX(bL_switcher_activation_lock);
Dave Martin491990e2012-12-10 17:19:58 +0000350static BLOCKING_NOTIFIER_HEAD(bL_activation_notifier);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500351static unsigned int bL_switcher_active;
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400352static unsigned int bL_switcher_cpu_original_cluster[NR_CPUS];
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500353static cpumask_t bL_switcher_removed_logical_cpus;
354
Dave Martin491990e2012-12-10 17:19:58 +0000355int bL_switcher_register_notifier(struct notifier_block *nb)
356{
357 return blocking_notifier_chain_register(&bL_activation_notifier, nb);
358}
359EXPORT_SYMBOL_GPL(bL_switcher_register_notifier);
360
361int bL_switcher_unregister_notifier(struct notifier_block *nb)
362{
363 return blocking_notifier_chain_unregister(&bL_activation_notifier, nb);
364}
365EXPORT_SYMBOL_GPL(bL_switcher_unregister_notifier);
366
367static 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 Pitre6b7437a2012-11-22 00:05:07 -0500378static void bL_switcher_restore_cpus(void)
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500379{
380 int i;
381
382 for_each_cpu(i, &bL_switcher_removed_logical_cpus)
383 cpu_up(i);
384}
385
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500386static int bL_switcher_halve_cpus(void)
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500387{
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400388 int i, j, cluster_0, gic_id, ret;
389 unsigned int cpu, cluster, mask;
390 cpumask_t available_cpus;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500391
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400392 /* First pass to validate what we have */
393 mask = 0;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500394 for_each_online_cpu(i) {
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400395 cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 0);
396 cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 1);
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500397 if (cluster >= 2) {
398 pr_err("%s: only dual cluster systems are supported\n", __func__);
399 return -EINVAL;
400 }
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400401 if (WARN_ON(cpu >= MAX_CPUS_PER_CLUSTER))
402 return -EINVAL;
403 mask |= (1 << cluster);
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500404 }
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400405 if (mask != 3) {
406 pr_err("%s: no CPU pairing possible\n", __func__);
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500407 return -EINVAL;
408 }
409
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400410 /*
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 Pitre9797a0e2012-11-21 11:53:27 -0500429 /*
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400430 * 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 Pitre9797a0e2012-11-21 11:53:27 -0500434 */
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400435 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 Pitre9797a0e2012-11-21 11:53:27 -0500468 }
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 Pitre6b7437a2012-11-22 00:05:07 -0500481static int bL_switcher_enable(void)
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400482{
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500483 int cpu, ret;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400484
Dave Martinc0f43752012-12-10 17:19:57 +0000485 mutex_lock(&bL_switcher_activation_lock);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500486 cpu_hotplug_driver_lock();
487 if (bL_switcher_active) {
488 cpu_hotplug_driver_unlock();
Dave Martinc0f43752012-12-10 17:19:57 +0000489 mutex_unlock(&bL_switcher_activation_lock);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500490 return 0;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500491 }
492
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500493 pr_info("big.LITTLE switcher initializing\n");
494
Dave Martin491990e2012-12-10 17:19:58 +0000495 ret = bL_activation_notify(BL_NOTIFY_PRE_ENABLE);
496 if (ret)
497 goto error;
498
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500499 ret = bL_switcher_halve_cpus();
Dave Martin491990e2012-12-10 17:19:58 +0000500 if (ret)
501 goto error;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500502
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400503 for_each_online_cpu(cpu) {
504 struct bL_thread *t = &bL_threads[cpu];
Dave Martin0577fee2013-05-22 19:08:16 +0100505 spin_lock_init(&t->lock);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400506 init_waitqueue_head(&t->wq);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500507 init_completion(&t->started);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400508 t->wanted_cluster = -1;
509 t->task = bL_switcher_thread_create(cpu, t);
510 }
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500511
512 bL_switcher_active = 1;
Dave Martin491990e2012-12-10 17:19:58 +0000513 bL_activation_notify(BL_NOTIFY_POST_ENABLE);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400514 pr_info("big.LITTLE switcher initialized\n");
Dave Martin491990e2012-12-10 17:19:58 +0000515 goto out;
Dave Martinc0f43752012-12-10 17:19:57 +0000516
Dave Martin491990e2012-12-10 17:19:58 +0000517error:
518 pr_warn("big.LITTLE switcher initialization failed\n");
519 bL_activation_notify(BL_NOTIFY_POST_DISABLE);
520
521out:
Dave Martinc0f43752012-12-10 17:19:57 +0000522 cpu_hotplug_driver_unlock();
523 mutex_unlock(&bL_switcher_activation_lock);
Dave Martin491990e2012-12-10 17:19:58 +0000524 return ret;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400525}
526
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500527#ifdef CONFIG_SYSFS
528
529static void bL_switcher_disable(void)
530{
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400531 unsigned int cpu, cluster;
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500532 struct bL_thread *t;
533 struct task_struct *task;
534
Dave Martinc0f43752012-12-10 17:19:57 +0000535 mutex_lock(&bL_switcher_activation_lock);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500536 cpu_hotplug_driver_lock();
Dave Martin491990e2012-12-10 17:19:58 +0000537
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 Pitre6b7437a2012-11-22 00:05:07 -0500544 }
Dave Martin491990e2012-12-10 17:19:58 +0000545
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500546 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 Pitre6b7437a2012-11-22 00:05:07 -0500557 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 Pitre38c35d42013-06-13 23:42:46 -0400580 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 Pitre6b7437a2012-11-22 00:05:07 -0500584 }
585
586 bL_switcher_restore_cpus();
Dave Martin491990e2012-12-10 17:19:58 +0000587 bL_activation_notify(BL_NOTIFY_POST_DISABLE);
588
589out:
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500590 cpu_hotplug_driver_unlock();
Dave Martinc0f43752012-12-10 17:19:57 +0000591 mutex_unlock(&bL_switcher_activation_lock);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500592}
593
594static 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
600static 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
620static struct kobj_attribute bL_switcher_active_attr =
621 __ATTR(active, 0644, bL_switcher_active_show, bL_switcher_active_store);
622
623static struct attribute *bL_switcher_attrs[] = {
624 &bL_switcher_active_attr.attr,
625 NULL,
626};
627
628static struct attribute_group bL_switcher_attr_group = {
629 .attrs = bL_switcher_attrs,
630};
631
632static struct kobject *bL_switcher_kobj;
633
634static 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 Martinc0f43752012-12-10 17:19:57 +0000649bool bL_switcher_get_enabled(void)
650{
651 mutex_lock(&bL_switcher_activation_lock);
652
653 return bL_switcher_active;
654}
655EXPORT_SYMBOL_GPL(bL_switcher_get_enabled);
656
657void bL_switcher_put_enabled(void)
658{
659 mutex_unlock(&bL_switcher_activation_lock);
660}
661EXPORT_SYMBOL_GPL(bL_switcher_put_enabled);
662
Nicolas Pitre272614352012-11-26 22:48:55 -0500663/*
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 */
668static 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 Pitrec4821c02012-11-22 13:33:35 -0500683static bool no_bL_switcher;
684core_param(no_bL_switcher, no_bL_switcher, bool, 0644);
685
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500686static 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 Pitre272614352012-11-26 22:48:55 -0500695 cpu_notifier(bL_switcher_hotplug_callback, 0);
696
Nicolas Pitrec4821c02012-11-22 13:33:35 -0500697 if (!no_bL_switcher) {
698 ret = bL_switcher_enable();
699 if (ret)
700 return ret;
701 }
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500702
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 Pitre71ce1de2012-10-26 02:36:17 -0400712late_initcall(bL_switcher_init);