sdmmc: In order to improve the timing,set HOLD_REG to 1,mainly used in RK2928 and...
[firefly-linux-kernel-4.4.55.git] / arch / arm / kernel / smp.c
1 /*
2  *  linux/arch/arm/kernel/smp.c
3  *
4  *  Copyright (C) 2002 ARM Limited, All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10 #include <linux/module.h>
11 #include <linux/delay.h>
12 #include <linux/init.h>
13 #include <linux/spinlock.h>
14 #include <linux/sched.h>
15 #include <linux/interrupt.h>
16 #include <linux/cache.h>
17 #include <linux/profile.h>
18 #include <linux/errno.h>
19 #include <linux/ftrace.h>
20 #include <linux/mm.h>
21 #include <linux/err.h>
22 #include <linux/cpu.h>
23 #include <linux/smp.h>
24 #include <linux/seq_file.h>
25 #include <linux/irq.h>
26 #include <linux/percpu.h>
27 #include <linux/clockchips.h>
28 #include <linux/completion.h>
29
30 #include <asm/atomic.h>
31 #include <asm/cacheflush.h>
32 #include <asm/cpu.h>
33 #include <asm/cputype.h>
34 #include <asm/mmu_context.h>
35 #include <asm/pgtable.h>
36 #include <asm/pgalloc.h>
37 #include <asm/processor.h>
38 #include <asm/sections.h>
39 #include <asm/tlbflush.h>
40 #include <asm/ptrace.h>
41 #include <asm/localtimer.h>
42
43 /*
44  * as from 2.5, kernels no longer have an init_tasks structure
45  * so we need some other way of telling a new secondary core
46  * where to place its SVC stack
47  */
48 struct secondary_data secondary_data;
49
50 enum ipi_msg_type {
51         IPI_TIMER = 2,
52         IPI_RESCHEDULE,
53         IPI_CALL_FUNC,
54         IPI_CALL_FUNC_SINGLE,
55         IPI_CPU_STOP,
56         IPI_CPU_BACKTRACE,
57 };
58
59 int __cpuinit __cpu_up(unsigned int cpu)
60 {
61         struct cpuinfo_arm *ci = &per_cpu(cpu_data, cpu);
62         struct task_struct *idle = ci->idle;
63         pgd_t *pgd;
64         int ret;
65
66         /*
67          * Spawn a new process manually, if not already done.
68          * Grab a pointer to its task struct so we can mess with it
69          */
70         if (!idle) {
71                 idle = fork_idle(cpu);
72                 if (IS_ERR(idle)) {
73                         printk(KERN_ERR "CPU%u: fork() failed\n", cpu);
74                         return PTR_ERR(idle);
75                 }
76                 ci->idle = idle;
77         } else {
78                 /*
79                  * Since this idle thread is being re-used, call
80                  * init_idle() to reinitialize the thread structure.
81                  */
82                 init_idle(idle, cpu);
83         }
84
85         /*
86          * Allocate initial page tables to allow the new CPU to
87          * enable the MMU safely.  This essentially means a set
88          * of our "standard" page tables, with the addition of
89          * a 1:1 mapping for the physical address of the kernel.
90          */
91         pgd = pgd_alloc(&init_mm);
92         if (!pgd)
93                 return -ENOMEM;
94
95         if (PHYS_OFFSET != PAGE_OFFSET) {
96 #ifndef CONFIG_HOTPLUG_CPU
97                 identity_mapping_add(pgd, __pa(__init_begin), __pa(__init_end));
98 #endif
99                 identity_mapping_add(pgd, __pa(_stext), __pa(_etext));
100                 identity_mapping_add(pgd, __pa(_sdata), __pa(_edata));
101         }
102
103         /*
104          * We need to tell the secondary core where to find
105          * its stack and the page tables.
106          */
107         secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
108         secondary_data.pgdir = virt_to_phys(pgd);
109         secondary_data.swapper_pg_dir = virt_to_phys(swapper_pg_dir);
110         __cpuc_flush_dcache_area(&secondary_data, sizeof(secondary_data));
111         outer_clean_range(__pa(&secondary_data), __pa(&secondary_data + 1));
112
113         /*
114          * Now bring the CPU into our world.
115          */
116         ret = boot_secondary(cpu, idle);
117         if (ret == 0) {
118                 unsigned long timeout;
119
120                 /*
121                  * CPU was successfully started, wait for it
122                  * to come online or time out.
123                  */
124                 timeout = jiffies + HZ;
125                 while (time_before(jiffies, timeout)) {
126                         if (cpu_online(cpu))
127                                 break;
128
129                         udelay(10);
130                         barrier();
131                 }
132
133                 if (!cpu_online(cpu)) {
134                         pr_crit("CPU%u: failed to come online\n", cpu);
135                         ret = -EIO;
136                 }
137         } else {
138                 pr_err("CPU%u: failed to boot: %d\n", cpu, ret);
139         }
140
141         secondary_data.stack = NULL;
142         secondary_data.pgdir = 0;
143
144         if (PHYS_OFFSET != PAGE_OFFSET) {
145 #ifndef CONFIG_HOTPLUG_CPU
146                 identity_mapping_del(pgd, __pa(__init_begin), __pa(__init_end));
147 #endif
148                 identity_mapping_del(pgd, __pa(_stext), __pa(_etext));
149                 identity_mapping_del(pgd, __pa(_sdata), __pa(_edata));
150         }
151
152         pgd_free(&init_mm, pgd);
153
154         return ret;
155 }
156
157 #ifdef CONFIG_HOTPLUG_CPU
158 static void percpu_timer_stop(void);
159
160 /*
161  * __cpu_disable runs on the processor to be shutdown.
162  */
163 int __cpu_disable(void)
164 {
165         unsigned int cpu = smp_processor_id();
166         struct task_struct *p;
167         int ret;
168
169         ret = platform_cpu_disable(cpu);
170         if (ret)
171                 return ret;
172
173         /*
174          * Take this CPU offline.  Once we clear this, we can't return,
175          * and we must not schedule until we're ready to give up the cpu.
176          */
177         set_cpu_online(cpu, false);
178
179         /*
180          * OK - migrate IRQs away from this CPU
181          */
182         migrate_irqs();
183
184         /*
185          * Stop the local timer for this CPU.
186          */
187         percpu_timer_stop();
188
189         /*
190          * Flush user cache and TLB mappings, and then remove this CPU
191          * from the vm mask set of all processes.
192          */
193         flush_cache_all();
194         local_flush_tlb_all();
195
196         read_lock(&tasklist_lock);
197         for_each_process(p) {
198                 if (p->mm)
199                         cpumask_clear_cpu(cpu, mm_cpumask(p->mm));
200         }
201         read_unlock(&tasklist_lock);
202
203         return 0;
204 }
205
206 static DECLARE_COMPLETION(cpu_died);
207
208 /*
209  * called on the thread which is asking for a CPU to be shutdown -
210  * waits until shutdown has completed, or it is timed out.
211  */
212 void __cpu_die(unsigned int cpu)
213 {
214         if (!wait_for_completion_timeout(&cpu_died, msecs_to_jiffies(5000))) {
215                 pr_err("CPU%u: cpu didn't die\n", cpu);
216                 return;
217         }
218         printk(KERN_NOTICE "CPU%u: shutdown\n", cpu);
219
220         if (!platform_cpu_kill(cpu))
221                 printk("CPU%u: unable to kill\n", cpu);
222 }
223
224 /*
225  * Called from the idle thread for the CPU which has been shutdown.
226  *
227  * Note that we disable IRQs here, but do not re-enable them
228  * before returning to the caller. This is also the behaviour
229  * of the other hotplug-cpu capable cores, so presumably coming
230  * out of idle fixes this.
231  */
232 void __ref cpu_die(void)
233 {
234         unsigned int cpu = smp_processor_id();
235
236         idle_task_exit();
237
238         local_irq_disable();
239         mb();
240
241         /* Tell __cpu_die() that this CPU is now safe to dispose of */
242         complete(&cpu_died);
243
244         /*
245          * actual CPU shutdown procedure is at least platform (if not
246          * CPU) specific.
247          */
248         platform_cpu_die(cpu);
249
250         /*
251          * Do not return to the idle loop - jump back to the secondary
252          * cpu initialisation.  There's some initialisation which needs
253          * to be repeated to undo the effects of taking the CPU offline.
254          */
255         __asm__("mov    sp, %0\n"
256         "       mov     fp, #0\n"
257         "       b       secondary_start_kernel"
258                 :
259                 : "r" (task_stack_page(current) + THREAD_SIZE - 8));
260 }
261 #endif /* CONFIG_HOTPLUG_CPU */
262
263 /*
264  * Called by both boot and secondaries to move global data into
265  * per-processor storage.
266  */
267 static void __cpuinit smp_store_cpu_info(unsigned int cpuid)
268 {
269         struct cpuinfo_arm *cpu_info = &per_cpu(cpu_data, cpuid);
270
271         cpu_info->loops_per_jiffy = loops_per_jiffy;
272 }
273
274 /*
275  * This is the secondary CPU boot entry.  We're using this CPUs
276  * idle thread stack, but a set of temporary page tables.
277  */
278 asmlinkage void __cpuinit secondary_start_kernel(void)
279 {
280         struct mm_struct *mm = &init_mm;
281         unsigned int cpu = smp_processor_id();
282
283         printk("CPU%u: Booted secondary processor\n", cpu);
284
285         /*
286          * All kernel threads share the same mm context; grab a
287          * reference and switch to it.
288          */
289         atomic_inc(&mm->mm_count);
290         current->active_mm = mm;
291         cpumask_set_cpu(cpu, mm_cpumask(mm));
292         cpu_switch_mm(mm->pgd, mm);
293         enter_lazy_tlb(mm, current);
294         local_flush_tlb_all();
295
296         cpu_init();
297         preempt_disable();
298         trace_hardirqs_off();
299
300         /*
301          * Give the platform a chance to do its own initialisation.
302          */
303         platform_secondary_init(cpu);
304
305         notify_cpu_starting(cpu);
306
307 #ifndef CONFIG_PLAT_RK
308         calibrate_delay();
309 #endif
310
311         smp_store_cpu_info(cpu);
312
313         /*
314          * OK, now it's safe to let the boot CPU continue.  Wait for
315          * the CPU migration code to notice that the CPU is online
316          * before we continue.
317          */
318         set_cpu_online(cpu, true);
319
320         /*
321          * Setup the percpu timer for this CPU.
322          */
323         percpu_timer_setup();
324
325         local_irq_enable();
326         local_fiq_enable();
327
328         /*
329          * OK, it's off to the idle thread for us
330          */
331         cpu_idle();
332 }
333
334 void __init smp_cpus_done(unsigned int max_cpus)
335 {
336         int cpu;
337         unsigned long bogosum = 0;
338
339         for_each_online_cpu(cpu)
340                 bogosum += per_cpu(cpu_data, cpu).loops_per_jiffy;
341
342         printk(KERN_INFO "SMP: Total of %d processors activated "
343                "(%lu.%02lu BogoMIPS).\n",
344                num_online_cpus(),
345                bogosum / (500000/HZ),
346                (bogosum / (5000/HZ)) % 100);
347 }
348
349 void __init smp_prepare_boot_cpu(void)
350 {
351         unsigned int cpu = smp_processor_id();
352
353         per_cpu(cpu_data, cpu).idle = current;
354 }
355
356 void __init smp_prepare_cpus(unsigned int max_cpus)
357 {
358         unsigned int ncores = num_possible_cpus();
359
360         smp_store_cpu_info(smp_processor_id());
361
362         /*
363          * are we trying to boot more cores than exist?
364          */
365         if (max_cpus > ncores)
366                 max_cpus = ncores;
367
368         if (max_cpus > 1) {
369                 /*
370                  * Enable the local timer or broadcast device for the
371                  * boot CPU, but only if we have more than one CPU.
372                  */
373                 percpu_timer_setup();
374
375                 /*
376                  * Initialise the SCU if there are more than one CPU
377                  * and let them know where to start.
378                  */
379                 platform_smp_prepare_cpus(max_cpus);
380         }
381 }
382
383 static void (*smp_cross_call)(const struct cpumask *, unsigned int);
384
385 void __init set_smp_cross_call(void (*fn)(const struct cpumask *, unsigned int))
386 {
387         smp_cross_call = fn;
388 }
389
390 void arch_send_call_function_ipi_mask(const struct cpumask *mask)
391 {
392         smp_cross_call(mask, IPI_CALL_FUNC);
393 }
394
395 void arch_send_call_function_single_ipi(int cpu)
396 {
397         smp_cross_call(cpumask_of(cpu), IPI_CALL_FUNC_SINGLE);
398 }
399
400 static const char *ipi_types[NR_IPI] = {
401 #define S(x,s)  [x - IPI_TIMER] = s
402         S(IPI_TIMER, "Timer broadcast interrupts"),
403         S(IPI_RESCHEDULE, "Rescheduling interrupts"),
404         S(IPI_CALL_FUNC, "Function call interrupts"),
405         S(IPI_CALL_FUNC_SINGLE, "Single function call interrupts"),
406         S(IPI_CPU_STOP, "CPU stop interrupts"),
407         S(IPI_CPU_BACKTRACE, "CPU backtrace"),
408 };
409
410 void show_ipi_list(struct seq_file *p, int prec)
411 {
412         unsigned int cpu, i;
413
414         for (i = 0; i < NR_IPI; i++) {
415                 seq_printf(p, "%*s%u: ", prec - 1, "IPI", i);
416
417                 for_each_present_cpu(cpu)
418                         seq_printf(p, "%10u ",
419                                    __get_irq_stat(cpu, ipi_irqs[i]));
420
421                 seq_printf(p, " %s\n", ipi_types[i]);
422         }
423 }
424
425 u64 smp_irq_stat_cpu(unsigned int cpu)
426 {
427         u64 sum = 0;
428         int i;
429
430         for (i = 0; i < NR_IPI; i++)
431                 sum += __get_irq_stat(cpu, ipi_irqs[i]);
432
433 #ifdef CONFIG_LOCAL_TIMERS
434         sum += __get_irq_stat(cpu, local_timer_irqs);
435 #endif
436
437         return sum;
438 }
439
440 /*
441  * Timer (local or broadcast) support
442  */
443 static DEFINE_PER_CPU(struct clock_event_device, percpu_clockevent);
444
445 static void ipi_timer(void)
446 {
447         struct clock_event_device *evt = &__get_cpu_var(percpu_clockevent);
448         irq_enter();
449         evt->event_handler(evt);
450         irq_exit();
451 }
452
453 #ifdef CONFIG_LOCAL_TIMERS
454 asmlinkage void __exception_irq_entry do_local_timer(struct pt_regs *regs)
455 {
456         struct pt_regs *old_regs = set_irq_regs(regs);
457         int cpu = smp_processor_id();
458
459         if (local_timer_ack()) {
460                 __inc_irq_stat(cpu, local_timer_irqs);
461                 ipi_timer();
462         }
463
464         set_irq_regs(old_regs);
465 }
466
467 void show_local_irqs(struct seq_file *p, int prec)
468 {
469         unsigned int cpu;
470
471         seq_printf(p, "%*s: ", prec, "LOC");
472
473         for_each_present_cpu(cpu)
474                 seq_printf(p, "%10u ", __get_irq_stat(cpu, local_timer_irqs));
475
476         seq_printf(p, " Local timer interrupts\n");
477 }
478 #endif
479
480 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
481 static void smp_timer_broadcast(const struct cpumask *mask)
482 {
483         smp_cross_call(mask, IPI_TIMER);
484 }
485 #else
486 #define smp_timer_broadcast     NULL
487 #endif
488
489 static void broadcast_timer_set_mode(enum clock_event_mode mode,
490         struct clock_event_device *evt)
491 {
492 }
493
494 static void __cpuinit broadcast_timer_setup(struct clock_event_device *evt)
495 {
496         evt->name       = "dummy_timer";
497         evt->features   = CLOCK_EVT_FEAT_ONESHOT |
498                           CLOCK_EVT_FEAT_PERIODIC |
499                           CLOCK_EVT_FEAT_DUMMY;
500         evt->rating     = 400;
501         evt->mult       = 1;
502         evt->set_mode   = broadcast_timer_set_mode;
503
504         clockevents_register_device(evt);
505 }
506
507 void __cpuinit percpu_timer_setup(void)
508 {
509         unsigned int cpu = smp_processor_id();
510         struct clock_event_device *evt = &per_cpu(percpu_clockevent, cpu);
511
512         evt->cpumask = cpumask_of(cpu);
513         evt->broadcast = smp_timer_broadcast;
514
515         if (local_timer_setup(evt))
516                 broadcast_timer_setup(evt);
517 }
518
519 #ifdef CONFIG_HOTPLUG_CPU
520 /*
521  * The generic clock events code purposely does not stop the local timer
522  * on CPU_DEAD/CPU_DEAD_FROZEN hotplug events, so we have to do it
523  * manually here.
524  */
525 static void percpu_timer_stop(void)
526 {
527         unsigned int cpu = smp_processor_id();
528         struct clock_event_device *evt = &per_cpu(percpu_clockevent, cpu);
529
530         evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
531 }
532 #endif
533
534 static DEFINE_SPINLOCK(stop_lock);
535
536 /*
537  * ipi_cpu_stop - handle IPI from smp_send_stop()
538  */
539 static void ipi_cpu_stop(unsigned int cpu)
540 {
541         if (system_state == SYSTEM_BOOTING ||
542             system_state == SYSTEM_RUNNING) {
543                 spin_lock(&stop_lock);
544                 printk(KERN_CRIT "CPU%u: stopping\n", cpu);
545                 dump_stack();
546                 spin_unlock(&stop_lock);
547         }
548
549         set_cpu_online(cpu, false);
550
551         local_fiq_disable();
552         local_irq_disable();
553
554         while (1)
555                 cpu_relax();
556 }
557
558 static cpumask_t backtrace_mask;
559 static DEFINE_RAW_SPINLOCK(backtrace_lock);
560
561 /* "in progress" flag of arch_trigger_all_cpu_backtrace */
562 static unsigned long backtrace_flag;
563
564 void smp_send_all_cpu_backtrace(void)
565 {
566         unsigned int this_cpu = smp_processor_id();
567         int i;
568
569         if (test_and_set_bit(0, &backtrace_flag))
570                 /*
571                  * If there is already a trigger_all_cpu_backtrace() in progress
572                  * (backtrace_flag == 1), don't output double cpu dump infos.
573                  */
574                 return;
575
576         cpumask_copy(&backtrace_mask, cpu_online_mask);
577         cpu_clear(this_cpu, backtrace_mask);
578
579         pr_info("Backtrace for cpu %d (current):\n", this_cpu);
580         dump_stack();
581
582         pr_info("\nsending IPI to all other CPUs:\n");
583         smp_cross_call(&backtrace_mask, IPI_CPU_BACKTRACE);
584
585         /* Wait for up to 10 seconds for all other CPUs to do the backtrace */
586         for (i = 0; i < 10 * 1000; i++) {
587                 if (cpumask_empty(&backtrace_mask))
588                         break;
589                 mdelay(1);
590         }
591
592         clear_bit(0, &backtrace_flag);
593         smp_mb__after_clear_bit();
594 }
595
596 /*
597  * ipi_cpu_backtrace - handle IPI from smp_send_all_cpu_backtrace()
598  */
599 static void ipi_cpu_backtrace(unsigned int cpu, struct pt_regs *regs)
600 {
601         if (cpu_isset(cpu, backtrace_mask)) {
602                 raw_spin_lock(&backtrace_lock);
603                 pr_warning("IPI backtrace for cpu %d\n", cpu);
604                 show_regs(regs);
605                 raw_spin_unlock(&backtrace_lock);
606                 cpu_clear(cpu, backtrace_mask);
607         }
608 }
609
610 /*
611  * Main handler for inter-processor interrupts
612  */
613 asmlinkage void __exception_irq_entry do_IPI(int ipinr, struct pt_regs *regs)
614 {
615         unsigned int cpu = smp_processor_id();
616         struct pt_regs *old_regs = set_irq_regs(regs);
617
618         if (ipinr >= IPI_TIMER && ipinr < IPI_TIMER + NR_IPI)
619                 __inc_irq_stat(cpu, ipi_irqs[ipinr - IPI_TIMER]);
620
621         switch (ipinr) {
622         case IPI_TIMER:
623                 ipi_timer();
624                 break;
625
626         case IPI_RESCHEDULE:
627                 scheduler_ipi();
628                 break;
629
630         case IPI_CALL_FUNC:
631                 generic_smp_call_function_interrupt();
632                 break;
633
634         case IPI_CALL_FUNC_SINGLE:
635                 generic_smp_call_function_single_interrupt();
636                 break;
637
638         case IPI_CPU_STOP:
639                 ipi_cpu_stop(cpu);
640                 break;
641
642         case IPI_CPU_BACKTRACE:
643                 ipi_cpu_backtrace(cpu, regs);
644                 break;
645
646         default:
647                 printk(KERN_CRIT "CPU%u: Unknown IPI message 0x%x\n",
648                        cpu, ipinr);
649                 break;
650         }
651         set_irq_regs(old_regs);
652 }
653
654 void smp_send_reschedule(int cpu)
655 {
656         smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
657 }
658
659 void smp_send_stop(void)
660 {
661         unsigned long timeout;
662
663         if (num_online_cpus() > 1) {
664                 cpumask_t mask = cpu_online_map;
665                 cpu_clear(smp_processor_id(), mask);
666
667                 smp_cross_call(&mask, IPI_CPU_STOP);
668         }
669
670         /* Wait up to one second for other CPUs to stop */
671         timeout = USEC_PER_SEC;
672         while (num_online_cpus() > 1 && timeout--)
673                 udelay(1);
674
675         if (num_online_cpus() > 1)
676                 pr_warning("SMP: failed to stop secondary CPUs\n");
677 }
678
679 /*
680  * not supported here
681  */
682 int setup_profiling_timer(unsigned int multiplier)
683 {
684         return -EINVAL;
685 }