blob: aab7c12748858e0bcaaa80a60ea11d71e04d272f [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
Nicolas Pitre108a9642012-10-23 01:39:08 -040058static void bL_do_switch(void *_arg)
Nicolas Pitre1c33be52012-04-12 02:56:10 -040059{
Nicolas Pitre38c35d42013-06-13 23:42:46 -040060 unsigned ib_mpidr, ib_cpu, ib_cluster;
Nicolas Pitre108a9642012-10-23 01:39:08 -040061 long volatile handshake, **handshake_ptr = _arg;
Nicolas Pitre1c33be52012-04-12 02:56:10 -040062
Nicolas Pitre1c33be52012-04-12 02:56:10 -040063 pr_debug("%s\n", __func__);
64
Nicolas Pitre38c35d42013-06-13 23:42:46 -040065 ib_mpidr = cpu_logical_map(smp_processor_id());
66 ib_cpu = MPIDR_AFFINITY_LEVEL(ib_mpidr, 0);
67 ib_cluster = MPIDR_AFFINITY_LEVEL(ib_mpidr, 1);
Nicolas Pitre1c33be52012-04-12 02:56:10 -040068
Nicolas Pitre108a9642012-10-23 01:39:08 -040069 /* Advertise our handshake location */
70 if (handshake_ptr) {
71 handshake = 0;
72 *handshake_ptr = &handshake;
73 } else
74 handshake = -1;
75
Nicolas Pitre1c33be52012-04-12 02:56:10 -040076 /*
77 * Our state has been saved at this point. Let's release our
78 * inbound CPU.
79 */
Nicolas Pitre38c35d42013-06-13 23:42:46 -040080 mcpm_set_entry_vector(ib_cpu, ib_cluster, cpu_resume);
Nicolas Pitre1c33be52012-04-12 02:56:10 -040081 sev();
82
83 /*
84 * From this point, we must assume that our counterpart CPU might
85 * have taken over in its parallel world already, as if execution
86 * just returned from cpu_suspend(). It is therefore important to
87 * be very careful not to make any change the other guy is not
88 * expecting. This is why we need stack isolation.
89 *
90 * Fancy under cover tasks could be performed here. For now
91 * we have none.
92 */
93
Nicolas Pitre108a9642012-10-23 01:39:08 -040094 /*
95 * Let's wait until our inbound is alive.
96 */
97 while (!handshake) {
98 wfe();
99 smp_mb();
100 }
101
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400102 /* Let's put ourself down. */
103 mcpm_cpu_power_down();
104
105 /* should never get here */
106 BUG();
107}
108
109/*
Nicolas Pitrec052de22012-11-27 15:55:33 -0500110 * Stack isolation. To ensure 'current' remains valid, we just use another
111 * piece of our thread's stack space which should be fairly lightly used.
112 * The selected area starts just above the thread_info structure located
113 * at the very bottom of the stack, aligned to a cache line, and indexed
114 * with the cluster number.
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400115 */
Nicolas Pitrec052de22012-11-27 15:55:33 -0500116#define STACK_SIZE 512
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400117extern void call_with_stack(void (*fn)(void *), void *arg, void *sp);
118static int bL_switchpoint(unsigned long _arg)
119{
120 unsigned int mpidr = read_mpidr();
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400121 unsigned int clusterid = MPIDR_AFFINITY_LEVEL(mpidr, 1);
Nicolas Pitrec052de22012-11-27 15:55:33 -0500122 void *stack = current_thread_info() + 1;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400123 stack = PTR_ALIGN(stack, L1_CACHE_BYTES);
Nicolas Pitrec052de22012-11-27 15:55:33 -0500124 stack += clusterid * STACK_SIZE + STACK_SIZE;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400125 call_with_stack(bL_do_switch, (void *)_arg, stack);
126 BUG();
127}
128
129/*
130 * Generic switcher interface
131 */
132
Nicolas Pitreed967622012-07-05 21:33:26 -0400133static unsigned int bL_gic_id[MAX_CPUS_PER_CLUSTER][MAX_NR_CLUSTERS];
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400134static int bL_switcher_cpu_pairing[NR_CPUS];
Nicolas Pitreed967622012-07-05 21:33:26 -0400135
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400136/*
137 * bL_switch_to - Switch to a specific cluster for the current CPU
138 * @new_cluster_id: the ID of the cluster to switch to.
139 *
140 * This function must be called on the CPU to be switched.
141 * Returns 0 on success, else a negative status code.
142 */
143static int bL_switch_to(unsigned int new_cluster_id)
144{
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400145 unsigned int mpidr, this_cpu, that_cpu;
146 unsigned int ob_mpidr, ob_cpu, ob_cluster, ib_mpidr, ib_cpu, ib_cluster;
Lorenzo Pieralisi3f09d472012-05-16 15:55:54 +0100147 struct tick_device *tdev;
148 enum clock_event_mode tdev_mode;
Nicolas Pitre108a9642012-10-23 01:39:08 -0400149 long volatile *handshake_ptr;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400150 int ret;
151
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400152 this_cpu = smp_processor_id();
153 ob_mpidr = read_mpidr();
154 ob_cpu = MPIDR_AFFINITY_LEVEL(ob_mpidr, 0);
155 ob_cluster = MPIDR_AFFINITY_LEVEL(ob_mpidr, 1);
156 BUG_ON(cpu_logical_map(this_cpu) != ob_mpidr);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400157
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400158 if (new_cluster_id == ob_cluster)
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400159 return 0;
160
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400161 that_cpu = bL_switcher_cpu_pairing[this_cpu];
162 ib_mpidr = cpu_logical_map(that_cpu);
163 ib_cpu = MPIDR_AFFINITY_LEVEL(ib_mpidr, 0);
164 ib_cluster = MPIDR_AFFINITY_LEVEL(ib_mpidr, 1);
165
166 pr_debug("before switch: CPU %d MPIDR %#x -> %#x\n",
167 this_cpu, ob_mpidr, ib_mpidr);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400168
169 /* Close the gate for our entry vectors */
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400170 mcpm_set_entry_vector(ob_cpu, ob_cluster, NULL);
171 mcpm_set_entry_vector(ib_cpu, ib_cluster, NULL);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400172
173 /*
174 * Let's wake up the inbound CPU now in case it requires some delay
175 * to come online, but leave it gated in our entry vector code.
176 */
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400177 ret = mcpm_cpu_power_up(ib_cpu, ib_cluster);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400178 if (ret) {
179 pr_err("%s: mcpm_cpu_power_up() returned %d\n", __func__, ret);
180 return ret;
181 }
182
183 /*
184 * From this point we are entering the switch critical zone
185 * and can't take any interrupts anymore.
186 */
187 local_irq_disable();
188 local_fiq_disable();
189
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400190 /* redirect GIC's SGIs to our counterpart */
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400191 gic_migrate_target(bL_gic_id[ib_cpu][ib_cluster]);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400192
193 /*
194 * Raise a SGI on the inbound CPU to make sure it doesn't stall
195 * in a possible WFI, such as in mcpm_power_down().
196 */
197 arch_send_wakeup_ipi_mask(cpumask_of(this_cpu));
198
Lorenzo Pieralisi3f09d472012-05-16 15:55:54 +0100199 tdev = tick_get_device(this_cpu);
200 if (tdev && !cpumask_equal(tdev->evtdev->cpumask, cpumask_of(this_cpu)))
201 tdev = NULL;
202 if (tdev) {
203 tdev_mode = tdev->evtdev->mode;
204 clockevents_set_mode(tdev->evtdev, CLOCK_EVT_MODE_SHUTDOWN);
205 }
206
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400207 ret = cpu_pm_enter();
208
209 /* we can not tolerate errors at this point */
210 if (ret)
211 panic("%s: cpu_pm_enter() returned %d\n", __func__, ret);
212
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400213 /* Swap the physical CPUs in the logical map for this logical CPU. */
214 cpu_logical_map(this_cpu) = ib_mpidr;
215 cpu_logical_map(that_cpu) = ob_mpidr;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400216
217 /* Let's do the actual CPU switch. */
Nicolas Pitre108a9642012-10-23 01:39:08 -0400218 ret = cpu_suspend((unsigned long)&handshake_ptr, bL_switchpoint);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400219 if (ret > 0)
220 panic("%s: cpu_suspend() returned %d\n", __func__, ret);
221
222 /* We are executing on the inbound CPU at this point */
223 mpidr = read_mpidr();
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400224 pr_debug("after switch: CPU %d MPIDR %#x\n", this_cpu, mpidr);
225 BUG_ON(mpidr != ib_mpidr);
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400226
227 mcpm_cpu_powered_up();
228
229 ret = cpu_pm_exit();
230
Lorenzo Pieralisi3f09d472012-05-16 15:55:54 +0100231 if (tdev) {
232 clockevents_set_mode(tdev->evtdev, tdev_mode);
233 clockevents_program_event(tdev->evtdev,
234 tdev->evtdev->next_event, 1);
235 }
236
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400237 local_fiq_enable();
238 local_irq_enable();
239
Nicolas Pitre108a9642012-10-23 01:39:08 -0400240 *handshake_ptr = 1;
241 dsb_sev();
242
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400243 if (ret)
244 pr_err("%s exiting with error %d\n", __func__, ret);
245 return ret;
246}
247
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400248struct bL_thread {
Dave Martin0577fee2013-05-22 19:08:16 +0100249 spinlock_t lock;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400250 struct task_struct *task;
251 wait_queue_head_t wq;
252 int wanted_cluster;
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500253 struct completion started;
Dave Martin0577fee2013-05-22 19:08:16 +0100254 bL_switch_completion_handler completer;
255 void *completer_cookie;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400256};
257
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400258static struct bL_thread bL_threads[NR_CPUS];
259
260static int bL_switcher_thread(void *arg)
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400261{
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400262 struct bL_thread *t = arg;
263 struct sched_param param = { .sched_priority = 1 };
264 int cluster;
Dave Martin0577fee2013-05-22 19:08:16 +0100265 bL_switch_completion_handler completer;
266 void *completer_cookie;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400267
268 sched_setscheduler_nocheck(current, SCHED_FIFO, &param);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500269 complete(&t->started);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400270
271 do {
272 if (signal_pending(current))
273 flush_signals(current);
274 wait_event_interruptible(t->wq,
275 t->wanted_cluster != -1 ||
276 kthread_should_stop());
Dave Martin0577fee2013-05-22 19:08:16 +0100277
278 spin_lock(&t->lock);
279 cluster = t->wanted_cluster;
280 completer = t->completer;
281 completer_cookie = t->completer_cookie;
282 t->wanted_cluster = -1;
283 t->completer = NULL;
284 spin_unlock(&t->lock);
285
286 if (cluster != -1) {
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400287 bL_switch_to(cluster);
Dave Martin0577fee2013-05-22 19:08:16 +0100288
289 if (completer)
290 completer(completer_cookie);
291 }
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400292 } while (!kthread_should_stop());
293
294 return 0;
295}
296
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500297static struct task_struct *bL_switcher_thread_create(int cpu, void *arg)
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400298{
299 struct task_struct *task;
300
301 task = kthread_create_on_node(bL_switcher_thread, arg,
302 cpu_to_node(cpu), "kswitcher_%d", cpu);
303 if (!IS_ERR(task)) {
304 kthread_bind(task, cpu);
305 wake_up_process(task);
306 } else
307 pr_err("%s failed for CPU %d\n", __func__, cpu);
308 return task;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400309}
310
311/*
Dave Martin0577fee2013-05-22 19:08:16 +0100312 * bL_switch_request_cb - Switch to a specific cluster for the given CPU,
313 * with completion notification via a callback
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400314 *
315 * @cpu: the CPU to switch
316 * @new_cluster_id: the ID of the cluster to switch to.
Dave Martin0577fee2013-05-22 19:08:16 +0100317 * @completer: switch completion callback. if non-NULL,
318 * @completer(@completer_cookie) will be called on completion of
319 * the switch, in non-atomic context.
320 * @completer_cookie: opaque context argument for @completer.
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400321 *
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400322 * This function causes a cluster switch on the given CPU by waking up
323 * the appropriate switcher thread. This function may or may not return
324 * before the switch has occurred.
Dave Martin0577fee2013-05-22 19:08:16 +0100325 *
326 * If a @completer callback function is supplied, it will be called when
327 * the switch is complete. This can be used to determine asynchronously
328 * when the switch is complete, regardless of when bL_switch_request()
329 * returns. When @completer is supplied, no new switch request is permitted
330 * for the affected CPU until after the switch is complete, and @completer
331 * has returned.
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400332 */
Dave Martin0577fee2013-05-22 19:08:16 +0100333int bL_switch_request_cb(unsigned int cpu, unsigned int new_cluster_id,
334 bL_switch_completion_handler completer,
335 void *completer_cookie)
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400336{
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400337 struct bL_thread *t;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400338
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400339 if (cpu >= ARRAY_SIZE(bL_threads)) {
340 pr_err("%s: cpu %d out of bounds\n", __func__, cpu);
341 return -EINVAL;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400342 }
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400343
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400344 t = &bL_threads[cpu];
Dave Martin0577fee2013-05-22 19:08:16 +0100345
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400346 if (IS_ERR(t->task))
347 return PTR_ERR(t->task);
348 if (!t->task)
349 return -ESRCH;
350
Dave Martin0577fee2013-05-22 19:08:16 +0100351 spin_lock(&t->lock);
352 if (t->completer) {
353 spin_unlock(&t->lock);
354 return -EBUSY;
355 }
356 t->completer = completer;
357 t->completer_cookie = completer_cookie;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400358 t->wanted_cluster = new_cluster_id;
Dave Martin0577fee2013-05-22 19:08:16 +0100359 spin_unlock(&t->lock);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400360 wake_up(&t->wq);
361 return 0;
Nicolas Pitre1c33be52012-04-12 02:56:10 -0400362}
Dave Martin0577fee2013-05-22 19:08:16 +0100363EXPORT_SYMBOL_GPL(bL_switch_request_cb);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400364
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500365/*
366 * Activation and configuration code.
367 */
368
Dave Martinc0f43752012-12-10 17:19:57 +0000369static DEFINE_MUTEX(bL_switcher_activation_lock);
Dave Martin491990e2012-12-10 17:19:58 +0000370static BLOCKING_NOTIFIER_HEAD(bL_activation_notifier);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500371static unsigned int bL_switcher_active;
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400372static unsigned int bL_switcher_cpu_original_cluster[NR_CPUS];
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500373static cpumask_t bL_switcher_removed_logical_cpus;
374
Dave Martin491990e2012-12-10 17:19:58 +0000375int bL_switcher_register_notifier(struct notifier_block *nb)
376{
377 return blocking_notifier_chain_register(&bL_activation_notifier, nb);
378}
379EXPORT_SYMBOL_GPL(bL_switcher_register_notifier);
380
381int bL_switcher_unregister_notifier(struct notifier_block *nb)
382{
383 return blocking_notifier_chain_unregister(&bL_activation_notifier, nb);
384}
385EXPORT_SYMBOL_GPL(bL_switcher_unregister_notifier);
386
387static int bL_activation_notify(unsigned long val)
388{
389 int ret;
390
391 ret = blocking_notifier_call_chain(&bL_activation_notifier, val, NULL);
392 if (ret & NOTIFY_STOP_MASK)
393 pr_err("%s: notifier chain failed with status 0x%x\n",
394 __func__, ret);
395 return notifier_to_errno(ret);
396}
397
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500398static void bL_switcher_restore_cpus(void)
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500399{
400 int i;
401
402 for_each_cpu(i, &bL_switcher_removed_logical_cpus)
403 cpu_up(i);
404}
405
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500406static int bL_switcher_halve_cpus(void)
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500407{
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400408 int i, j, cluster_0, gic_id, ret;
409 unsigned int cpu, cluster, mask;
410 cpumask_t available_cpus;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500411
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400412 /* First pass to validate what we have */
413 mask = 0;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500414 for_each_online_cpu(i) {
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400415 cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 0);
416 cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 1);
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500417 if (cluster >= 2) {
418 pr_err("%s: only dual cluster systems are supported\n", __func__);
419 return -EINVAL;
420 }
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400421 if (WARN_ON(cpu >= MAX_CPUS_PER_CLUSTER))
422 return -EINVAL;
423 mask |= (1 << cluster);
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500424 }
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400425 if (mask != 3) {
426 pr_err("%s: no CPU pairing possible\n", __func__);
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500427 return -EINVAL;
428 }
429
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400430 /*
431 * Now let's do the pairing. We match each CPU with another CPU
432 * from a different cluster. To get a uniform scheduling behavior
433 * without fiddling with CPU topology and compute capacity data,
434 * we'll use logical CPUs initially belonging to the same cluster.
435 */
436 memset(bL_switcher_cpu_pairing, -1, sizeof(bL_switcher_cpu_pairing));
437 cpumask_copy(&available_cpus, cpu_online_mask);
438 cluster_0 = -1;
439 for_each_cpu(i, &available_cpus) {
440 int match = -1;
441 cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 1);
442 if (cluster_0 == -1)
443 cluster_0 = cluster;
444 if (cluster != cluster_0)
445 continue;
446 cpumask_clear_cpu(i, &available_cpus);
447 for_each_cpu(j, &available_cpus) {
448 cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(j), 1);
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500449 /*
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400450 * Let's remember the last match to create "odd"
451 * pairings on purpose in order for other code not
452 * to assume any relation between physical and
453 * logical CPU numbers.
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500454 */
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400455 if (cluster != cluster_0)
456 match = j;
457 }
458 if (match != -1) {
459 bL_switcher_cpu_pairing[i] = match;
460 cpumask_clear_cpu(match, &available_cpus);
461 pr_info("CPU%d paired with CPU%d\n", i, match);
462 }
463 }
464
465 /*
466 * Now we disable the unwanted CPUs i.e. everything that has no
467 * pairing information (that includes the pairing counterparts).
468 */
469 cpumask_clear(&bL_switcher_removed_logical_cpus);
470 for_each_online_cpu(i) {
471 cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 0);
472 cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(i), 1);
473
474 /* Let's take note of the GIC ID for this CPU */
475 gic_id = gic_get_cpu_id(i);
476 if (gic_id < 0) {
477 pr_err("%s: bad GIC ID for CPU %d\n", __func__, i);
478 bL_switcher_restore_cpus();
479 return -EINVAL;
480 }
481 bL_gic_id[cpu][cluster] = gic_id;
482 pr_info("GIC ID for CPU %u cluster %u is %u\n",
483 cpu, cluster, gic_id);
484
485 if (bL_switcher_cpu_pairing[i] != -1) {
486 bL_switcher_cpu_original_cluster[i] = cluster;
487 continue;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500488 }
489
490 ret = cpu_down(i);
491 if (ret) {
492 bL_switcher_restore_cpus();
493 return ret;
494 }
495 cpumask_set_cpu(i, &bL_switcher_removed_logical_cpus);
496 }
497
498 return 0;
499}
500
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500501static int bL_switcher_enable(void)
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400502{
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500503 int cpu, ret;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400504
Dave Martinc0f43752012-12-10 17:19:57 +0000505 mutex_lock(&bL_switcher_activation_lock);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500506 cpu_hotplug_driver_lock();
507 if (bL_switcher_active) {
508 cpu_hotplug_driver_unlock();
Dave Martinc0f43752012-12-10 17:19:57 +0000509 mutex_unlock(&bL_switcher_activation_lock);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500510 return 0;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500511 }
512
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500513 pr_info("big.LITTLE switcher initializing\n");
514
Dave Martin491990e2012-12-10 17:19:58 +0000515 ret = bL_activation_notify(BL_NOTIFY_PRE_ENABLE);
516 if (ret)
517 goto error;
518
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500519 ret = bL_switcher_halve_cpus();
Dave Martin491990e2012-12-10 17:19:58 +0000520 if (ret)
521 goto error;
Nicolas Pitre9797a0e2012-11-21 11:53:27 -0500522
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400523 for_each_online_cpu(cpu) {
524 struct bL_thread *t = &bL_threads[cpu];
Dave Martin0577fee2013-05-22 19:08:16 +0100525 spin_lock_init(&t->lock);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400526 init_waitqueue_head(&t->wq);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500527 init_completion(&t->started);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400528 t->wanted_cluster = -1;
529 t->task = bL_switcher_thread_create(cpu, t);
530 }
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500531
532 bL_switcher_active = 1;
Dave Martin491990e2012-12-10 17:19:58 +0000533 bL_activation_notify(BL_NOTIFY_POST_ENABLE);
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400534 pr_info("big.LITTLE switcher initialized\n");
Dave Martin491990e2012-12-10 17:19:58 +0000535 goto out;
Dave Martinc0f43752012-12-10 17:19:57 +0000536
Dave Martin491990e2012-12-10 17:19:58 +0000537error:
538 pr_warn("big.LITTLE switcher initialization failed\n");
539 bL_activation_notify(BL_NOTIFY_POST_DISABLE);
540
541out:
Dave Martinc0f43752012-12-10 17:19:57 +0000542 cpu_hotplug_driver_unlock();
543 mutex_unlock(&bL_switcher_activation_lock);
Dave Martin491990e2012-12-10 17:19:58 +0000544 return ret;
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400545}
546
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500547#ifdef CONFIG_SYSFS
548
549static void bL_switcher_disable(void)
550{
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400551 unsigned int cpu, cluster;
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500552 struct bL_thread *t;
553 struct task_struct *task;
554
Dave Martinc0f43752012-12-10 17:19:57 +0000555 mutex_lock(&bL_switcher_activation_lock);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500556 cpu_hotplug_driver_lock();
Dave Martin491990e2012-12-10 17:19:58 +0000557
558 if (!bL_switcher_active)
559 goto out;
560
561 if (bL_activation_notify(BL_NOTIFY_PRE_DISABLE) != 0) {
562 bL_activation_notify(BL_NOTIFY_POST_ENABLE);
563 goto out;
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500564 }
Dave Martin491990e2012-12-10 17:19:58 +0000565
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500566 bL_switcher_active = 0;
567
568 /*
569 * To deactivate the switcher, we must shut down the switcher
570 * threads to prevent any other requests from being accepted.
571 * Then, if the final cluster for given logical CPU is not the
572 * same as the original one, we'll recreate a switcher thread
573 * just for the purpose of switching the CPU back without any
574 * possibility for interference from external requests.
575 */
576 for_each_online_cpu(cpu) {
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500577 t = &bL_threads[cpu];
578 task = t->task;
579 t->task = NULL;
580 if (!task || IS_ERR(task))
581 continue;
582 kthread_stop(task);
583 /* no more switch may happen on this CPU at this point */
584 cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(cpu), 1);
585 if (cluster == bL_switcher_cpu_original_cluster[cpu])
586 continue;
587 init_completion(&t->started);
588 t->wanted_cluster = bL_switcher_cpu_original_cluster[cpu];
589 task = bL_switcher_thread_create(cpu, t);
590 if (!IS_ERR(task)) {
591 wait_for_completion(&t->started);
592 kthread_stop(task);
593 cluster = MPIDR_AFFINITY_LEVEL(cpu_logical_map(cpu), 1);
594 if (cluster == bL_switcher_cpu_original_cluster[cpu])
595 continue;
596 }
597 /* If execution gets here, we're in trouble. */
598 pr_crit("%s: unable to restore original cluster for CPU %d\n",
599 __func__, cpu);
Nicolas Pitre38c35d42013-06-13 23:42:46 -0400600 pr_crit("%s: CPU %d can't be restored\n",
601 __func__, bL_switcher_cpu_pairing[cpu]);
602 cpumask_clear_cpu(bL_switcher_cpu_pairing[cpu],
603 &bL_switcher_removed_logical_cpus);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500604 }
605
606 bL_switcher_restore_cpus();
Dave Martin491990e2012-12-10 17:19:58 +0000607 bL_activation_notify(BL_NOTIFY_POST_DISABLE);
608
609out:
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500610 cpu_hotplug_driver_unlock();
Dave Martinc0f43752012-12-10 17:19:57 +0000611 mutex_unlock(&bL_switcher_activation_lock);
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500612}
613
614static ssize_t bL_switcher_active_show(struct kobject *kobj,
615 struct kobj_attribute *attr, char *buf)
616{
617 return sprintf(buf, "%u\n", bL_switcher_active);
618}
619
620static ssize_t bL_switcher_active_store(struct kobject *kobj,
621 struct kobj_attribute *attr, const char *buf, size_t count)
622{
623 int ret;
624
625 switch (buf[0]) {
626 case '0':
627 bL_switcher_disable();
628 ret = 0;
629 break;
630 case '1':
631 ret = bL_switcher_enable();
632 break;
633 default:
634 ret = -EINVAL;
635 }
636
637 return (ret >= 0) ? count : ret;
638}
639
640static struct kobj_attribute bL_switcher_active_attr =
641 __ATTR(active, 0644, bL_switcher_active_show, bL_switcher_active_store);
642
643static struct attribute *bL_switcher_attrs[] = {
644 &bL_switcher_active_attr.attr,
645 NULL,
646};
647
648static struct attribute_group bL_switcher_attr_group = {
649 .attrs = bL_switcher_attrs,
650};
651
652static struct kobject *bL_switcher_kobj;
653
654static int __init bL_switcher_sysfs_init(void)
655{
656 int ret;
657
658 bL_switcher_kobj = kobject_create_and_add("bL_switcher", kernel_kobj);
659 if (!bL_switcher_kobj)
660 return -ENOMEM;
661 ret = sysfs_create_group(bL_switcher_kobj, &bL_switcher_attr_group);
662 if (ret)
663 kobject_put(bL_switcher_kobj);
664 return ret;
665}
666
667#endif /* CONFIG_SYSFS */
668
Dave Martinc0f43752012-12-10 17:19:57 +0000669bool bL_switcher_get_enabled(void)
670{
671 mutex_lock(&bL_switcher_activation_lock);
672
673 return bL_switcher_active;
674}
675EXPORT_SYMBOL_GPL(bL_switcher_get_enabled);
676
677void bL_switcher_put_enabled(void)
678{
679 mutex_unlock(&bL_switcher_activation_lock);
680}
681EXPORT_SYMBOL_GPL(bL_switcher_put_enabled);
682
Nicolas Pitre272614352012-11-26 22:48:55 -0500683/*
684 * Veto any CPU hotplug operation on those CPUs we've removed
685 * while the switcher is active.
686 * We're just not ready to deal with that given the trickery involved.
687 */
688static int bL_switcher_hotplug_callback(struct notifier_block *nfb,
689 unsigned long action, void *hcpu)
690{
691 if (bL_switcher_active) {
692 int pairing = bL_switcher_cpu_pairing[(unsigned long)hcpu];
693 switch (action & 0xf) {
694 case CPU_UP_PREPARE:
695 case CPU_DOWN_PREPARE:
696 if (pairing == -1)
697 return NOTIFY_BAD;
698 }
699 }
700 return NOTIFY_DONE;
701}
702
Nicolas Pitrec4821c02012-11-22 13:33:35 -0500703static bool no_bL_switcher;
704core_param(no_bL_switcher, no_bL_switcher, bool, 0644);
705
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500706static int __init bL_switcher_init(void)
707{
708 int ret;
709
710 if (MAX_NR_CLUSTERS != 2) {
711 pr_err("%s: only dual cluster systems are supported\n", __func__);
712 return -EINVAL;
713 }
714
Nicolas Pitre272614352012-11-26 22:48:55 -0500715 cpu_notifier(bL_switcher_hotplug_callback, 0);
716
Nicolas Pitrec4821c02012-11-22 13:33:35 -0500717 if (!no_bL_switcher) {
718 ret = bL_switcher_enable();
719 if (ret)
720 return ret;
721 }
Nicolas Pitre6b7437a2012-11-22 00:05:07 -0500722
723#ifdef CONFIG_SYSFS
724 ret = bL_switcher_sysfs_init();
725 if (ret)
726 pr_err("%s: unable to create sysfs entry\n", __func__);
727#endif
728
729 return 0;
730}
731
Nicolas Pitre71ce1de2012-10-26 02:36:17 -0400732late_initcall(bL_switcher_init);