smp.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  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/mm.h>
  20. #include <linux/err.h>
  21. #include <linux/cpu.h>
  22. #include <linux/seq_file.h>
  23. #include <linux/irq.h>
  24. #include <linux/percpu.h>
  25. #include <linux/clockchips.h>
  26. #include <linux/completion.h>
  27. #include <linux/atomic.h>
  28. #include <asm/smp.h>
  29. #include <asm/cacheflush.h>
  30. #include <asm/cpu.h>
  31. #include <asm/cputype.h>
  32. #include <asm/exception.h>
  33. #include <asm/idmap.h>
  34. #include <asm/topology.h>
  35. #include <asm/mmu_context.h>
  36. #include <asm/pgtable.h>
  37. #include <asm/pgalloc.h>
  38. #include <asm/processor.h>
  39. #include <asm/sections.h>
  40. #include <asm/tlbflush.h>
  41. #include <asm/ptrace.h>
  42. #include <asm/localtimer.h>
  43. #include <asm/smp_plat.h>
  44. #include <asm/mach/arch.h>
  45. /*
  46. * as from 2.5, kernels no longer have an init_tasks structure
  47. * so we need some other way of telling a new secondary core
  48. * where to place its SVC stack
  49. */
  50. struct secondary_data secondary_data;
  51. /*
  52. * control for which core is the next to come out of the secondary
  53. * boot "holding pen"
  54. */
  55. volatile int __cpuinitdata pen_release = -1;
  56. enum ipi_msg_type {
  57. IPI_TIMER = 2,
  58. IPI_RESCHEDULE,
  59. IPI_CALL_FUNC,
  60. IPI_CALL_FUNC_SINGLE,
  61. IPI_CPU_STOP,
  62. };
  63. static DECLARE_COMPLETION(cpu_running);
  64. static struct smp_operations smp_ops;
  65. void __init smp_set_ops(struct smp_operations *ops)
  66. {
  67. if (ops)
  68. smp_ops = *ops;
  69. };
  70. int __cpuinit __cpu_up(unsigned int cpu, struct task_struct *idle)
  71. {
  72. int ret;
  73. /*
  74. * We need to tell the secondary core where to find
  75. * its stack and the page tables.
  76. */
  77. secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
  78. secondary_data.pgdir = virt_to_phys(idmap_pgd);
  79. secondary_data.swapper_pg_dir = virt_to_phys(swapper_pg_dir);
  80. __cpuc_flush_dcache_area(&secondary_data, sizeof(secondary_data));
  81. outer_clean_range(__pa(&secondary_data), __pa(&secondary_data + 1));
  82. /*
  83. * Now bring the CPU into our world.
  84. */
  85. ret = boot_secondary(cpu, idle);
  86. if (ret == 0) {
  87. /*
  88. * CPU was successfully started, wait for it
  89. * to come online or time out.
  90. */
  91. wait_for_completion_timeout(&cpu_running,
  92. msecs_to_jiffies(1000));
  93. if (!cpu_online(cpu)) {
  94. pr_crit("CPU%u: failed to come online\n", cpu);
  95. ret = -EIO;
  96. }
  97. } else {
  98. pr_err("CPU%u: failed to boot: %d\n", cpu, ret);
  99. }
  100. secondary_data.stack = NULL;
  101. secondary_data.pgdir = 0;
  102. return ret;
  103. }
  104. /* platform specific SMP operations */
  105. void __init smp_init_cpus(void)
  106. {
  107. if (smp_ops.smp_init_cpus)
  108. smp_ops.smp_init_cpus();
  109. }
  110. static void __init platform_smp_prepare_cpus(unsigned int max_cpus)
  111. {
  112. if (smp_ops.smp_prepare_cpus)
  113. smp_ops.smp_prepare_cpus(max_cpus);
  114. }
  115. static void __cpuinit platform_secondary_init(unsigned int cpu)
  116. {
  117. if (smp_ops.smp_secondary_init)
  118. smp_ops.smp_secondary_init(cpu);
  119. }
  120. int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
  121. {
  122. if (smp_ops.smp_boot_secondary)
  123. return smp_ops.smp_boot_secondary(cpu, idle);
  124. return -ENOSYS;
  125. }
  126. #ifdef CONFIG_HOTPLUG_CPU
  127. static void percpu_timer_stop(void);
  128. static int platform_cpu_kill(unsigned int cpu)
  129. {
  130. if (smp_ops.cpu_kill)
  131. return smp_ops.cpu_kill(cpu);
  132. return 1;
  133. }
  134. static void platform_cpu_die(unsigned int cpu)
  135. {
  136. if (smp_ops.cpu_die)
  137. smp_ops.cpu_die(cpu);
  138. }
  139. static int platform_cpu_disable(unsigned int cpu)
  140. {
  141. if (smp_ops.cpu_disable)
  142. return smp_ops.cpu_disable(cpu);
  143. /*
  144. * By default, allow disabling all CPUs except the first one,
  145. * since this is special on a lot of platforms, e.g. because
  146. * of clock tick interrupts.
  147. */
  148. return cpu == 0 ? -EPERM : 0;
  149. }
  150. /*
  151. * __cpu_disable runs on the processor to be shutdown.
  152. */
  153. int __cpuinit __cpu_disable(void)
  154. {
  155. unsigned int cpu = smp_processor_id();
  156. int ret;
  157. ret = platform_cpu_disable(cpu);
  158. if (ret)
  159. return ret;
  160. /*
  161. * Take this CPU offline. Once we clear this, we can't return,
  162. * and we must not schedule until we're ready to give up the cpu.
  163. */
  164. set_cpu_online(cpu, false);
  165. /*
  166. * OK - migrate IRQs away from this CPU
  167. */
  168. migrate_irqs();
  169. /*
  170. * Stop the local timer for this CPU.
  171. */
  172. percpu_timer_stop();
  173. /*
  174. * Flush user cache and TLB mappings, and then remove this CPU
  175. * from the vm mask set of all processes.
  176. */
  177. flush_cache_all();
  178. local_flush_tlb_all();
  179. clear_tasks_mm_cpumask(cpu);
  180. return 0;
  181. }
  182. static DECLARE_COMPLETION(cpu_died);
  183. /*
  184. * called on the thread which is asking for a CPU to be shutdown -
  185. * waits until shutdown has completed, or it is timed out.
  186. */
  187. void __cpuinit __cpu_die(unsigned int cpu)
  188. {
  189. if (!wait_for_completion_timeout(&cpu_died, msecs_to_jiffies(5000))) {
  190. pr_err("CPU%u: cpu didn't die\n", cpu);
  191. return;
  192. }
  193. printk(KERN_NOTICE "CPU%u: shutdown\n", cpu);
  194. if (!platform_cpu_kill(cpu))
  195. printk("CPU%u: unable to kill\n", cpu);
  196. }
  197. /*
  198. * Called from the idle thread for the CPU which has been shutdown.
  199. *
  200. * Note that we disable IRQs here, but do not re-enable them
  201. * before returning to the caller. This is also the behaviour
  202. * of the other hotplug-cpu capable cores, so presumably coming
  203. * out of idle fixes this.
  204. */
  205. void __ref cpu_die(void)
  206. {
  207. unsigned int cpu = smp_processor_id();
  208. idle_task_exit();
  209. local_irq_disable();
  210. mb();
  211. /* Tell __cpu_die() that this CPU is now safe to dispose of */
  212. RCU_NONIDLE(complete(&cpu_died));
  213. /*
  214. * actual CPU shutdown procedure is at least platform (if not
  215. * CPU) specific.
  216. */
  217. platform_cpu_die(cpu);
  218. /*
  219. * Do not return to the idle loop - jump back to the secondary
  220. * cpu initialisation. There's some initialisation which needs
  221. * to be repeated to undo the effects of taking the CPU offline.
  222. */
  223. __asm__("mov sp, %0\n"
  224. " mov fp, #0\n"
  225. " b secondary_start_kernel"
  226. :
  227. : "r" (task_stack_page(current) + THREAD_SIZE - 8));
  228. }
  229. #endif /* CONFIG_HOTPLUG_CPU */
  230. /*
  231. * Called by both boot and secondaries to move global data into
  232. * per-processor storage.
  233. */
  234. static void __cpuinit smp_store_cpu_info(unsigned int cpuid)
  235. {
  236. struct cpuinfo_arm *cpu_info = &per_cpu(cpu_data, cpuid);
  237. cpu_info->loops_per_jiffy = loops_per_jiffy;
  238. store_cpu_topology(cpuid);
  239. }
  240. static void percpu_timer_setup(void);
  241. /*
  242. * This is the secondary CPU boot entry. We're using this CPUs
  243. * idle thread stack, but a set of temporary page tables.
  244. */
  245. asmlinkage void __cpuinit secondary_start_kernel(void)
  246. {
  247. struct mm_struct *mm = &init_mm;
  248. unsigned int cpu = smp_processor_id();
  249. /*
  250. * All kernel threads share the same mm context; grab a
  251. * reference and switch to it.
  252. */
  253. atomic_inc(&mm->mm_count);
  254. current->active_mm = mm;
  255. cpumask_set_cpu(cpu, mm_cpumask(mm));
  256. cpu_switch_mm(mm->pgd, mm);
  257. enter_lazy_tlb(mm, current);
  258. local_flush_tlb_all();
  259. printk("CPU%u: Booted secondary processor\n", cpu);
  260. cpu_init();
  261. preempt_disable();
  262. trace_hardirqs_off();
  263. /*
  264. * Give the platform a chance to do its own initialisation.
  265. */
  266. platform_secondary_init(cpu);
  267. notify_cpu_starting(cpu);
  268. calibrate_delay();
  269. smp_store_cpu_info(cpu);
  270. /*
  271. * OK, now it's safe to let the boot CPU continue. Wait for
  272. * the CPU migration code to notice that the CPU is online
  273. * before we continue - which happens after __cpu_up returns.
  274. */
  275. set_cpu_online(cpu, true);
  276. complete(&cpu_running);
  277. /*
  278. * Setup the percpu timer for this CPU.
  279. */
  280. percpu_timer_setup();
  281. local_irq_enable();
  282. local_fiq_enable();
  283. /*
  284. * OK, it's off to the idle thread for us
  285. */
  286. cpu_idle();
  287. }
  288. void __init smp_cpus_done(unsigned int max_cpus)
  289. {
  290. int cpu;
  291. unsigned long bogosum = 0;
  292. for_each_online_cpu(cpu)
  293. bogosum += per_cpu(cpu_data, cpu).loops_per_jiffy;
  294. printk(KERN_INFO "SMP: Total of %d processors activated "
  295. "(%lu.%02lu BogoMIPS).\n",
  296. num_online_cpus(),
  297. bogosum / (500000/HZ),
  298. (bogosum / (5000/HZ)) % 100);
  299. }
  300. void __init smp_prepare_boot_cpu(void)
  301. {
  302. }
  303. void __init smp_prepare_cpus(unsigned int max_cpus)
  304. {
  305. unsigned int ncores = num_possible_cpus();
  306. init_cpu_topology();
  307. smp_store_cpu_info(smp_processor_id());
  308. /*
  309. * are we trying to boot more cores than exist?
  310. */
  311. if (max_cpus > ncores)
  312. max_cpus = ncores;
  313. if (ncores > 1 && max_cpus) {
  314. /*
  315. * Enable the local timer or broadcast device for the
  316. * boot CPU, but only if we have more than one CPU.
  317. */
  318. percpu_timer_setup();
  319. /*
  320. * Initialise the present map, which describes the set of CPUs
  321. * actually populated at the present time. A platform should
  322. * re-initialize the map in platform_smp_prepare_cpus() if
  323. * present != possible (e.g. physical hotplug).
  324. */
  325. init_cpu_present(cpu_possible_mask);
  326. /*
  327. * Initialise the SCU if there are more than one CPU
  328. * and let them know where to start.
  329. */
  330. platform_smp_prepare_cpus(max_cpus);
  331. }
  332. }
  333. static void (*smp_cross_call)(const struct cpumask *, unsigned int);
  334. void __init set_smp_cross_call(void (*fn)(const struct cpumask *, unsigned int))
  335. {
  336. smp_cross_call = fn;
  337. }
  338. void arch_send_call_function_ipi_mask(const struct cpumask *mask)
  339. {
  340. smp_cross_call(mask, IPI_CALL_FUNC);
  341. }
  342. void arch_send_call_function_single_ipi(int cpu)
  343. {
  344. smp_cross_call(cpumask_of(cpu), IPI_CALL_FUNC_SINGLE);
  345. }
  346. static const char *ipi_types[NR_IPI] = {
  347. #define S(x,s) [x - IPI_TIMER] = s
  348. S(IPI_TIMER, "Timer broadcast interrupts"),
  349. S(IPI_RESCHEDULE, "Rescheduling interrupts"),
  350. S(IPI_CALL_FUNC, "Function call interrupts"),
  351. S(IPI_CALL_FUNC_SINGLE, "Single function call interrupts"),
  352. S(IPI_CPU_STOP, "CPU stop interrupts"),
  353. };
  354. void show_ipi_list(struct seq_file *p, int prec)
  355. {
  356. unsigned int cpu, i;
  357. for (i = 0; i < NR_IPI; i++) {
  358. seq_printf(p, "%*s%u: ", prec - 1, "IPI", i);
  359. for_each_present_cpu(cpu)
  360. seq_printf(p, "%10u ",
  361. __get_irq_stat(cpu, ipi_irqs[i]));
  362. seq_printf(p, " %s\n", ipi_types[i]);
  363. }
  364. }
  365. u64 smp_irq_stat_cpu(unsigned int cpu)
  366. {
  367. u64 sum = 0;
  368. int i;
  369. for (i = 0; i < NR_IPI; i++)
  370. sum += __get_irq_stat(cpu, ipi_irqs[i]);
  371. return sum;
  372. }
  373. /*
  374. * Timer (local or broadcast) support
  375. */
  376. static DEFINE_PER_CPU(struct clock_event_device, percpu_clockevent);
  377. static void ipi_timer(void)
  378. {
  379. struct clock_event_device *evt = &__get_cpu_var(percpu_clockevent);
  380. evt->event_handler(evt);
  381. }
  382. #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
  383. static void smp_timer_broadcast(const struct cpumask *mask)
  384. {
  385. smp_cross_call(mask, IPI_TIMER);
  386. }
  387. #else
  388. #define smp_timer_broadcast NULL
  389. #endif
  390. static void broadcast_timer_set_mode(enum clock_event_mode mode,
  391. struct clock_event_device *evt)
  392. {
  393. }
  394. static void __cpuinit broadcast_timer_setup(struct clock_event_device *evt)
  395. {
  396. evt->name = "dummy_timer";
  397. evt->features = CLOCK_EVT_FEAT_ONESHOT |
  398. CLOCK_EVT_FEAT_PERIODIC |
  399. CLOCK_EVT_FEAT_DUMMY;
  400. evt->rating = 400;
  401. evt->mult = 1;
  402. evt->set_mode = broadcast_timer_set_mode;
  403. clockevents_register_device(evt);
  404. }
  405. static struct local_timer_ops *lt_ops;
  406. #ifdef CONFIG_LOCAL_TIMERS
  407. int local_timer_register(struct local_timer_ops *ops)
  408. {
  409. if (!is_smp() || !setup_max_cpus)
  410. return -ENXIO;
  411. if (lt_ops)
  412. return -EBUSY;
  413. lt_ops = ops;
  414. return 0;
  415. }
  416. #endif
  417. static void __cpuinit percpu_timer_setup(void)
  418. {
  419. unsigned int cpu = smp_processor_id();
  420. struct clock_event_device *evt = &per_cpu(percpu_clockevent, cpu);
  421. evt->cpumask = cpumask_of(cpu);
  422. evt->broadcast = smp_timer_broadcast;
  423. if (!lt_ops || lt_ops->setup(evt))
  424. broadcast_timer_setup(evt);
  425. }
  426. #ifdef CONFIG_HOTPLUG_CPU
  427. /*
  428. * The generic clock events code purposely does not stop the local timer
  429. * on CPU_DEAD/CPU_DEAD_FROZEN hotplug events, so we have to do it
  430. * manually here.
  431. */
  432. static void percpu_timer_stop(void)
  433. {
  434. unsigned int cpu = smp_processor_id();
  435. struct clock_event_device *evt = &per_cpu(percpu_clockevent, cpu);
  436. if (lt_ops)
  437. lt_ops->stop(evt);
  438. }
  439. #endif
  440. static DEFINE_RAW_SPINLOCK(stop_lock);
  441. /*
  442. * ipi_cpu_stop - handle IPI from smp_send_stop()
  443. */
  444. static void ipi_cpu_stop(unsigned int cpu)
  445. {
  446. if (system_state == SYSTEM_BOOTING ||
  447. system_state == SYSTEM_RUNNING) {
  448. raw_spin_lock(&stop_lock);
  449. printk(KERN_CRIT "CPU%u: stopping\n", cpu);
  450. dump_stack();
  451. raw_spin_unlock(&stop_lock);
  452. }
  453. set_cpu_online(cpu, false);
  454. local_fiq_disable();
  455. local_irq_disable();
  456. while (1)
  457. cpu_relax();
  458. }
  459. /*
  460. * Main handler for inter-processor interrupts
  461. */
  462. asmlinkage void __exception_irq_entry do_IPI(int ipinr, struct pt_regs *regs)
  463. {
  464. handle_IPI(ipinr, regs);
  465. }
  466. void handle_IPI(int ipinr, struct pt_regs *regs)
  467. {
  468. unsigned int cpu = smp_processor_id();
  469. struct pt_regs *old_regs = set_irq_regs(regs);
  470. if (ipinr >= IPI_TIMER && ipinr < IPI_TIMER + NR_IPI)
  471. __inc_irq_stat(cpu, ipi_irqs[ipinr - IPI_TIMER]);
  472. switch (ipinr) {
  473. case IPI_TIMER:
  474. irq_enter();
  475. ipi_timer();
  476. irq_exit();
  477. break;
  478. case IPI_RESCHEDULE:
  479. scheduler_ipi();
  480. break;
  481. case IPI_CALL_FUNC:
  482. irq_enter();
  483. generic_smp_call_function_interrupt();
  484. irq_exit();
  485. break;
  486. case IPI_CALL_FUNC_SINGLE:
  487. irq_enter();
  488. generic_smp_call_function_single_interrupt();
  489. irq_exit();
  490. break;
  491. case IPI_CPU_STOP:
  492. irq_enter();
  493. ipi_cpu_stop(cpu);
  494. irq_exit();
  495. break;
  496. default:
  497. printk(KERN_CRIT "CPU%u: Unknown IPI message 0x%x\n",
  498. cpu, ipinr);
  499. break;
  500. }
  501. set_irq_regs(old_regs);
  502. }
  503. void smp_send_reschedule(int cpu)
  504. {
  505. smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
  506. }
  507. #ifdef CONFIG_HOTPLUG_CPU
  508. static void smp_kill_cpus(cpumask_t *mask)
  509. {
  510. unsigned int cpu;
  511. for_each_cpu(cpu, mask)
  512. platform_cpu_kill(cpu);
  513. }
  514. #else
  515. static void smp_kill_cpus(cpumask_t *mask) { }
  516. #endif
  517. void smp_send_stop(void)
  518. {
  519. unsigned long timeout;
  520. struct cpumask mask;
  521. cpumask_copy(&mask, cpu_online_mask);
  522. cpumask_clear_cpu(smp_processor_id(), &mask);
  523. if (!cpumask_empty(&mask))
  524. smp_cross_call(&mask, IPI_CPU_STOP);
  525. /* Wait up to one second for other CPUs to stop */
  526. timeout = USEC_PER_SEC;
  527. while (num_online_cpus() > 1 && timeout--)
  528. udelay(1);
  529. if (num_online_cpus() > 1)
  530. pr_warning("SMP: failed to stop secondary CPUs\n");
  531. smp_kill_cpus(&mask);
  532. }
  533. /*
  534. * not supported here
  535. */
  536. int setup_profiling_timer(unsigned int multiplier)
  537. {
  538. return -EINVAL;
  539. }