smp.c 13 KB

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