Merge branch 'linux-linaro-lsk' into linux-linaro-lsk-android
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / kernel / smp.c
1 /*
2  * SMP initialisation and IPI support
3  * Based on arch/arm/kernel/smp.c
4  *
5  * Copyright (C) 2012 ARM Ltd.
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  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <linux/delay.h>
21 #include <linux/init.h>
22 #include <linux/spinlock.h>
23 #include <linux/sched.h>
24 #include <linux/interrupt.h>
25 #include <linux/cache.h>
26 #include <linux/profile.h>
27 #include <linux/errno.h>
28 #include <linux/mm.h>
29 #include <linux/err.h>
30 #include <linux/cpu.h>
31 #include <linux/smp.h>
32 #include <linux/seq_file.h>
33 #include <linux/irq.h>
34 #include <linux/percpu.h>
35 #include <linux/clockchips.h>
36 #include <linux/completion.h>
37 #include <linux/of.h>
38
39 #include <asm/atomic.h>
40 #include <asm/cacheflush.h>
41 #include <asm/cputype.h>
42 #include <asm/cpu_ops.h>
43 #include <asm/mmu_context.h>
44 #include <asm/pgtable.h>
45 #include <asm/pgalloc.h>
46 #include <asm/processor.h>
47 #include <asm/smp_plat.h>
48 #include <asm/sections.h>
49 #include <asm/tlbflush.h>
50 #include <asm/ptrace.h>
51
52 #define CREATE_TRACE_POINTS
53 #include <trace/events/arm-ipi.h>
54
55 /*
56  * as from 2.5, kernels no longer have an init_tasks structure
57  * so we need some other way of telling a new secondary core
58  * where to place its SVC stack
59  */
60 struct secondary_data secondary_data;
61
62 enum ipi_msg_type {
63         IPI_RESCHEDULE,
64         IPI_CALL_FUNC,
65         IPI_CALL_FUNC_SINGLE,
66         IPI_CPU_STOP,
67         IPI_TIMER,
68 };
69
70 /*
71  * Boot a secondary CPU, and assign it the specified idle task.
72  * This also gives us the initial stack to use for this CPU.
73  */
74 static int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
75 {
76         if (cpu_ops[cpu]->cpu_boot)
77                 return cpu_ops[cpu]->cpu_boot(cpu);
78
79         return -EOPNOTSUPP;
80 }
81
82 static DECLARE_COMPLETION(cpu_running);
83
84 int __cpuinit __cpu_up(unsigned int cpu, struct task_struct *idle)
85 {
86         int ret;
87
88         /*
89          * We need to tell the secondary core where to find its stack and the
90          * page tables.
91          */
92         secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
93         __flush_dcache_area(&secondary_data, sizeof(secondary_data));
94
95         /*
96          * Now bring the CPU into our world.
97          */
98         ret = boot_secondary(cpu, idle);
99         if (ret == 0) {
100                 /*
101                  * CPU was successfully started, wait for it to come online or
102                  * time out.
103                  */
104                 wait_for_completion_timeout(&cpu_running,
105                                             msecs_to_jiffies(1000));
106
107                 if (!cpu_online(cpu)) {
108                         pr_crit("CPU%u: failed to come online\n", cpu);
109                         ret = -EIO;
110                 }
111         } else {
112                 pr_err("CPU%u: failed to boot: %d\n", cpu, ret);
113         }
114
115         secondary_data.stack = NULL;
116
117         return ret;
118 }
119
120 static void __cpuinit smp_store_cpu_info(unsigned int cpuid)
121 {
122         store_cpu_topology(cpuid);
123 }
124
125 /*
126  * This is the secondary CPU boot entry.  We're using this CPUs
127  * idle thread stack, but a set of temporary page tables.
128  */
129 asmlinkage void __cpuinit secondary_start_kernel(void)
130 {
131         struct mm_struct *mm = &init_mm;
132         unsigned int cpu = smp_processor_id();
133
134         /*
135          * All kernel threads share the same mm context; grab a
136          * reference and switch to it.
137          */
138         atomic_inc(&mm->mm_count);
139         current->active_mm = mm;
140         cpumask_set_cpu(cpu, mm_cpumask(mm));
141
142         set_my_cpu_offset(per_cpu_offset(smp_processor_id()));
143         printk("CPU%u: Booted secondary processor\n", cpu);
144
145         /*
146          * TTBR0 is only used for the identity mapping at this stage. Make it
147          * point to zero page to avoid speculatively fetching new entries.
148          */
149         cpu_set_reserved_ttbr0();
150         flush_tlb_all();
151
152         preempt_disable();
153         trace_hardirqs_off();
154
155         if (cpu_ops[cpu]->cpu_postboot)
156                 cpu_ops[cpu]->cpu_postboot();
157
158         /*
159          * Enable GIC and timers.
160          */
161         notify_cpu_starting(cpu);
162
163         smp_store_cpu_info(cpu);
164
165         /*
166          * Log the CPU info before it is marked online and might get read.
167          */
168         cpuinfo_store_cpu();
169
170         /*
171          * OK, now it's safe to let the boot CPU continue.  Wait for
172          * the CPU migration code to notice that the CPU is online
173          * before we continue.
174          */
175         set_cpu_online(cpu, true);
176         complete(&cpu_running);
177
178         local_dbg_enable();
179         local_irq_enable();
180         local_fiq_enable();
181
182         /*
183          * OK, it's off to the idle thread for us
184          */
185         cpu_startup_entry(CPUHP_ONLINE);
186 }
187
188 #ifdef CONFIG_HOTPLUG_CPU
189 static int op_cpu_disable(unsigned int cpu)
190 {
191         /*
192          * If we don't have a cpu_die method, abort before we reach the point
193          * of no return. CPU0 may not have an cpu_ops, so test for it.
194          */
195         if (!cpu_ops[cpu] || !cpu_ops[cpu]->cpu_die)
196                 return -EOPNOTSUPP;
197
198         /*
199          * We may need to abort a hot unplug for some other mechanism-specific
200          * reason.
201          */
202         if (cpu_ops[cpu]->cpu_disable)
203                 return cpu_ops[cpu]->cpu_disable(cpu);
204
205         return 0;
206 }
207
208 /*
209  * __cpu_disable runs on the processor to be shutdown.
210  */
211 int __cpu_disable(void)
212 {
213         unsigned int cpu = smp_processor_id();
214         int ret;
215
216         ret = op_cpu_disable(cpu);
217         if (ret)
218                 return ret;
219
220         /*
221          * Take this CPU offline.  Once we clear this, we can't return,
222          * and we must not schedule until we're ready to give up the cpu.
223          */
224         set_cpu_online(cpu, false);
225
226         /*
227          * OK - migrate IRQs away from this CPU
228          */
229         migrate_irqs();
230
231         /*
232          * Remove this CPU from the vm mask set of all processes.
233          */
234         clear_tasks_mm_cpumask(cpu);
235
236         return 0;
237 }
238
239 static int op_cpu_kill(unsigned int cpu)
240 {
241         /*
242          * If we have no means of synchronising with the dying CPU, then assume
243          * that it is really dead. We can only wait for an arbitrary length of
244          * time and hope that it's dead, so let's skip the wait and just hope.
245          */
246         if (!cpu_ops[cpu]->cpu_kill)
247                 return 1;
248
249         return cpu_ops[cpu]->cpu_kill(cpu);
250 }
251
252 static DECLARE_COMPLETION(cpu_died);
253
254 /*
255  * called on the thread which is asking for a CPU to be shutdown -
256  * waits until shutdown has completed, or it is timed out.
257  */
258 void __cpu_die(unsigned int cpu)
259 {
260         if (!wait_for_completion_timeout(&cpu_died, msecs_to_jiffies(5000))) {
261                 pr_crit("CPU%u: cpu didn't die\n", cpu);
262                 return;
263         }
264         pr_notice("CPU%u: shutdown\n", cpu);
265
266         /*
267          * Now that the dying CPU is beyond the point of no return w.r.t.
268          * in-kernel synchronisation, try to get the firwmare to help us to
269          * verify that it has really left the kernel before we consider
270          * clobbering anything it might still be using.
271          */
272         if (!op_cpu_kill(cpu))
273                 pr_warn("CPU%d may not have shut down cleanly\n", cpu);
274 }
275
276 /*
277  * Called from the idle thread for the CPU which has been shutdown.
278  *
279  * Note that we disable IRQs here, but do not re-enable them
280  * before returning to the caller. This is also the behaviour
281  * of the other hotplug-cpu capable cores, so presumably coming
282  * out of idle fixes this.
283  */
284 void cpu_die(void)
285 {
286         unsigned int cpu = smp_processor_id();
287
288         idle_task_exit();
289
290         local_irq_disable();
291
292         /* Tell __cpu_die() that this CPU is now safe to dispose of */
293         complete(&cpu_died);
294
295         /*
296          * Actually shutdown the CPU. This must never fail. The specific hotplug
297          * mechanism must perform all required cache maintenance to ensure that
298          * no dirty lines are lost in the process of shutting down the CPU.
299          */
300         cpu_ops[cpu]->cpu_die(cpu);
301
302         BUG();
303 }
304 #endif
305
306 void __init smp_cpus_done(unsigned int max_cpus)
307 {
308         unsigned long bogosum = loops_per_jiffy * num_online_cpus();
309
310         pr_info("SMP: Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
311                 num_online_cpus(), bogosum / (500000/HZ),
312                 (bogosum / (5000/HZ)) % 100);
313 }
314
315 void __init smp_prepare_boot_cpu(void)
316 {
317         set_my_cpu_offset(per_cpu_offset(smp_processor_id()));
318 }
319
320 static void (*smp_cross_call)(const struct cpumask *, unsigned int);
321
322 /*
323  * Enumerate the possible CPU set from the device tree and build the
324  * cpu logical map array containing MPIDR values related to logical
325  * cpus. Assumes that cpu_logical_map(0) has already been initialized.
326  */
327 void __init smp_init_cpus(void)
328 {
329         struct device_node *dn = NULL;
330         unsigned int i, cpu = 1;
331         bool bootcpu_valid = false;
332
333         while ((dn = of_find_node_by_type(dn, "cpu"))) {
334                 const u32 *cell;
335                 u64 hwid;
336
337                 /*
338                  * A cpu node with missing "reg" property is
339                  * considered invalid to build a cpu_logical_map
340                  * entry.
341                  */
342                 cell = of_get_property(dn, "reg", NULL);
343                 if (!cell) {
344                         pr_err("%s: missing reg property\n", dn->full_name);
345                         goto next;
346                 }
347                 hwid = of_read_number(cell, of_n_addr_cells(dn));
348
349                 /*
350                  * Non affinity bits must be set to 0 in the DT
351                  */
352                 if (hwid & ~MPIDR_HWID_BITMASK) {
353                         pr_err("%s: invalid reg property\n", dn->full_name);
354                         goto next;
355                 }
356
357                 /*
358                  * Duplicate MPIDRs are a recipe for disaster. Scan
359                  * all initialized entries and check for
360                  * duplicates. If any is found just ignore the cpu.
361                  * cpu_logical_map was initialized to INVALID_HWID to
362                  * avoid matching valid MPIDR values.
363                  */
364                 for (i = 1; (i < cpu) && (i < NR_CPUS); i++) {
365                         if (cpu_logical_map(i) == hwid) {
366                                 pr_err("%s: duplicate cpu reg properties in the DT\n",
367                                         dn->full_name);
368                                 goto next;
369                         }
370                 }
371
372                 /*
373                  * The numbering scheme requires that the boot CPU
374                  * must be assigned logical id 0. Record it so that
375                  * the logical map built from DT is validated and can
376                  * be used.
377                  */
378                 if (hwid == cpu_logical_map(0)) {
379                         if (bootcpu_valid) {
380                                 pr_err("%s: duplicate boot cpu reg property in DT\n",
381                                         dn->full_name);
382                                 goto next;
383                         }
384
385                         bootcpu_valid = true;
386
387                         /*
388                          * cpu_logical_map has already been
389                          * initialized and the boot cpu doesn't need
390                          * the enable-method so continue without
391                          * incrementing cpu.
392                          */
393                         continue;
394                 }
395
396                 if (cpu >= NR_CPUS)
397                         goto next;
398
399                 if (cpu_read_ops(dn, cpu) != 0)
400                         goto next;
401
402                 if (cpu_ops[cpu]->cpu_init(dn, cpu))
403                         goto next;
404
405                 pr_debug("cpu logical map 0x%llx\n", hwid);
406                 cpu_logical_map(cpu) = hwid;
407 next:
408                 cpu++;
409         }
410
411         /* sanity check */
412         if (cpu > NR_CPUS)
413                 pr_warning("no. of cores (%d) greater than configured maximum of %d - clipping\n",
414                            cpu, NR_CPUS);
415
416         if (!bootcpu_valid) {
417                 pr_err("DT missing boot CPU MPIDR, not enabling secondaries\n");
418                 return;
419         }
420
421         /*
422          * All the cpus that made it to the cpu_logical_map have been
423          * validated so set them as possible cpus.
424          */
425         for (i = 0; i < NR_CPUS; i++)
426                 if (cpu_logical_map(i) != INVALID_HWID)
427                         set_cpu_possible(i, true);
428 }
429
430 void __init smp_prepare_cpus(unsigned int max_cpus)
431 {
432         int err;
433         unsigned int cpu, ncores = num_possible_cpus();
434
435         init_cpu_topology();
436
437         smp_store_cpu_info(smp_processor_id());
438
439         /*
440          * are we trying to boot more cores than exist?
441          */
442         if (max_cpus > ncores)
443                 max_cpus = ncores;
444
445         /* Don't bother if we're effectively UP */
446         if (max_cpus <= 1)
447                 return;
448
449         /*
450          * Initialise the present map (which describes the set of CPUs
451          * actually populated at the present time) and release the
452          * secondaries from the bootloader.
453          *
454          * Make sure we online at most (max_cpus - 1) additional CPUs.
455          */
456         max_cpus--;
457         for_each_possible_cpu(cpu) {
458                 if (max_cpus == 0)
459                         break;
460
461                 if (cpu == smp_processor_id())
462                         continue;
463
464                 if (!cpu_ops[cpu])
465                         continue;
466
467                 err = cpu_ops[cpu]->cpu_prepare(cpu);
468                 if (err)
469                         continue;
470
471                 set_cpu_present(cpu, true);
472                 max_cpus--;
473         }
474 }
475
476
477 void __init set_smp_cross_call(void (*fn)(const struct cpumask *, unsigned int))
478 {
479         smp_cross_call = fn;
480 }
481
482 void arch_send_call_function_ipi_mask(const struct cpumask *mask)
483 {
484         smp_cross_call(mask, IPI_CALL_FUNC);
485 }
486
487 void arch_send_call_function_single_ipi(int cpu)
488 {
489         smp_cross_call(cpumask_of(cpu), IPI_CALL_FUNC_SINGLE);
490 }
491
492 static const char *ipi_types[NR_IPI] = {
493 #define S(x,s)  [x - IPI_RESCHEDULE] = s
494         S(IPI_RESCHEDULE, "Rescheduling interrupts"),
495         S(IPI_CALL_FUNC, "Function call interrupts"),
496         S(IPI_CALL_FUNC_SINGLE, "Single function call interrupts"),
497         S(IPI_CPU_STOP, "CPU stop interrupts"),
498         S(IPI_TIMER, "Timer broadcast interrupts"),
499 };
500
501 void show_ipi_list(struct seq_file *p, int prec)
502 {
503         unsigned int cpu, i;
504
505         for (i = 0; i < NR_IPI; i++) {
506                 seq_printf(p, "%*s%u:%s", prec - 1, "IPI", i + IPI_RESCHEDULE,
507                            prec >= 4 ? " " : "");
508                 for_each_online_cpu(cpu)
509                         seq_printf(p, "%10u ",
510                                    __get_irq_stat(cpu, ipi_irqs[i]));
511                 seq_printf(p, "      %s\n", ipi_types[i]);
512         }
513 }
514
515 u64 smp_irq_stat_cpu(unsigned int cpu)
516 {
517         u64 sum = 0;
518         int i;
519
520         for (i = 0; i < NR_IPI; i++)
521                 sum += __get_irq_stat(cpu, ipi_irqs[i]);
522
523         return sum;
524 }
525
526 static DEFINE_RAW_SPINLOCK(stop_lock);
527
528 /*
529  * ipi_cpu_stop - handle IPI from smp_send_stop()
530  */
531 static void ipi_cpu_stop(unsigned int cpu)
532 {
533         if (system_state == SYSTEM_BOOTING ||
534             system_state == SYSTEM_RUNNING) {
535                 raw_spin_lock(&stop_lock);
536                 pr_crit("CPU%u: stopping\n", cpu);
537                 dump_stack();
538                 raw_spin_unlock(&stop_lock);
539         }
540
541         set_cpu_online(cpu, false);
542
543         local_fiq_disable();
544         local_irq_disable();
545
546         while (1)
547                 cpu_relax();
548 }
549
550 /*
551  * Main handler for inter-processor interrupts
552  */
553 void handle_IPI(int ipinr, struct pt_regs *regs)
554 {
555         unsigned int cpu = smp_processor_id();
556         struct pt_regs *old_regs = set_irq_regs(regs);
557
558         if (ipinr >= IPI_RESCHEDULE && ipinr < IPI_RESCHEDULE + NR_IPI)
559                 __inc_irq_stat(cpu, ipi_irqs[ipinr - IPI_RESCHEDULE]);
560
561         switch (ipinr) {
562         case IPI_RESCHEDULE:
563                 scheduler_ipi();
564                 break;
565
566         case IPI_CALL_FUNC:
567                 irq_enter();
568                 generic_smp_call_function_interrupt();
569                 irq_exit();
570                 break;
571
572         case IPI_CALL_FUNC_SINGLE:
573                 irq_enter();
574                 generic_smp_call_function_single_interrupt();
575                 irq_exit();
576                 break;
577
578         case IPI_CPU_STOP:
579                 irq_enter();
580                 ipi_cpu_stop(cpu);
581                 irq_exit();
582                 break;
583
584 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
585         case IPI_TIMER:
586                 irq_enter();
587                 tick_receive_broadcast();
588                 irq_exit();
589                 break;
590 #endif
591
592         default:
593                 pr_crit("CPU%u: Unknown IPI message 0x%x\n", cpu, ipinr);
594                 break;
595         }
596         set_irq_regs(old_regs);
597 }
598
599 void smp_send_reschedule(int cpu)
600 {
601         smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
602 }
603
604 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
605 void tick_broadcast(const struct cpumask *mask)
606 {
607         smp_cross_call(mask, IPI_TIMER);
608 }
609 #endif
610
611 void smp_send_stop(void)
612 {
613         unsigned long timeout;
614
615         if (num_online_cpus() > 1) {
616                 cpumask_t mask;
617
618                 cpumask_copy(&mask, cpu_online_mask);
619                 cpu_clear(smp_processor_id(), mask);
620
621                 smp_cross_call(&mask, IPI_CPU_STOP);
622         }
623
624         /* Wait up to one second for other CPUs to stop */
625         timeout = USEC_PER_SEC;
626         while (num_online_cpus() > 1 && timeout--)
627                 udelay(1);
628
629         if (num_online_cpus() > 1)
630                 pr_warning("SMP: failed to stop secondary CPUs\n");
631 }
632
633 /*
634  * not supported here
635  */
636 int setup_profiling_timer(unsigned int multiplier)
637 {
638         return -EINVAL;
639 }