smpboot.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * SMP boot-related support
  3.  *
  4.  * Copyright (C) 2001 David Mosberger-Tang <davidm@hpl.hp.com>
  5.  *
  6.  * 01/05/16 Rohit Seth <rohit.seth@intel.com> Moved SMP booting functions from smp.c to here.
  7.  * 01/04/27 David Mosberger <davidm@hpl.hp.com> Added ITC synching code.
  8.  */
  9. #define __KERNEL_SYSCALLS__
  10. #include <linux/config.h>
  11. #include <linux/bootmem.h>
  12. #include <linux/delay.h>
  13. #include <linux/init.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/irq.h>
  16. #include <linux/kernel.h>
  17. #include <linux/kernel_stat.h>
  18. #include <linux/mm.h>
  19. #include <linux/smp.h>
  20. #include <linux/smp_lock.h>
  21. #include <linux/spinlock.h>
  22. #include <asm/atomic.h>
  23. #include <asm/bitops.h>
  24. #include <asm/cache.h>
  25. #include <asm/current.h>
  26. #include <asm/delay.h>
  27. #include <asm/efi.h>
  28. #include <asm/io.h>
  29. #include <asm/irq.h>
  30. #include <asm/machvec.h>
  31. #include <asm/mca.h>
  32. #include <asm/page.h>
  33. #include <asm/pgalloc.h>
  34. #include <asm/pgtable.h>
  35. #include <asm/processor.h>
  36. #include <asm/ptrace.h>
  37. #include <asm/sal.h>
  38. #include <asm/system.h>
  39. #include <asm/unistd.h>
  40. #define SMP_DEBUG 0
  41. #if SMP_DEBUG
  42. #define Dprintk(x...)  printk(x)
  43. #else
  44. #define Dprintk(x...)
  45. #endif
  46. /*
  47.  * ITC synchronization related stuff:
  48.  */
  49. #define MASTER 0
  50. #define SLAVE (SMP_CACHE_BYTES/8)
  51. #define NUM_ROUNDS 64 /* magic value */
  52. #define NUM_ITERS 5 /* likewise */
  53. static spinlock_t itc_sync_lock = SPIN_LOCK_UNLOCKED;
  54. static volatile unsigned long go[SLAVE + 1];
  55. #define DEBUG_ITC_SYNC 0
  56. extern void __init calibrate_delay(void);
  57. extern void start_ap(void);
  58. int cpucount;
  59. /* Setup configured maximum number of CPUs to activate */
  60. static int max_cpus = -1;
  61. /* Total count of live CPUs */
  62. int smp_num_cpus = 1;
  63. /* Bitmask of currently online CPUs */
  64. volatile unsigned long cpu_online_map;
  65. /* which logical CPU number maps to which CPU (physical APIC ID) */
  66. volatile int ia64_cpu_to_sapicid[NR_CPUS];
  67. static volatile unsigned long cpu_callin_map;
  68. struct smp_boot_data smp_boot_data __initdata;
  69. /* Set when the idlers are all forked */
  70. volatile int smp_threads_ready;
  71. unsigned long ap_wakeup_vector = -1; /* External Int use to wakeup APs */
  72. char __initdata no_int_routing;
  73. unsigned char smp_int_redirect; /* are INT and IPI redirectable by the chipset? */
  74. /*
  75.  * Setup routine for controlling SMP activation
  76.  *
  77.  * Command-line option of "nosmp" or "maxcpus=0" will disable SMP
  78.  * activation entirely (the MPS table probe still happens, though).
  79.  *
  80.  * Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
  81.  * greater than 0, limits the maximum number of CPUs activated in
  82.  * SMP mode to <NUM>.
  83.  */
  84. static int __init
  85. nosmp (char *str)
  86. {
  87. max_cpus = 0;
  88. return 1;
  89. }
  90. __setup("nosmp", nosmp);
  91. static int __init
  92. maxcpus (char *str)
  93. {
  94. get_option(&str, &max_cpus);
  95. return 1;
  96. }
  97. __setup("maxcpus=", maxcpus);
  98. static int __init
  99. nointroute (char *str)
  100. {
  101. no_int_routing = 1;
  102. return 1;
  103. }
  104. __setup("nointroute", nointroute);
  105. void
  106. sync_master (void *arg)
  107. {
  108. unsigned long flags, i;
  109. go[MASTER] = 0;
  110. local_irq_save(flags);
  111. {
  112. for (i = 0; i < NUM_ROUNDS*NUM_ITERS; ++i) {
  113. while (!go[MASTER]);
  114. go[MASTER] = 0;
  115. go[SLAVE] = ia64_get_itc();
  116. }
  117. }
  118. local_irq_restore(flags);
  119. }
  120. /*
  121.  * Return the number of cycles by which our itc differs from the itc on the master
  122.  * (time-keeper) CPU.  A positive number indicates our itc is ahead of the master,
  123.  * negative that it is behind.
  124.  */
  125. static inline long
  126. get_delta (long *rt, long *master)
  127. {
  128. unsigned long best_t0 = 0, best_t1 = ~0UL, best_tm = 0;
  129. unsigned long tcenter, t0, t1, tm;
  130. long i;
  131. for (i = 0; i < NUM_ITERS; ++i) {
  132. t0 = ia64_get_itc();
  133. go[MASTER] = 1;
  134. while (!(tm = go[SLAVE]));
  135. go[SLAVE] = 0;
  136. t1 = ia64_get_itc();
  137. if (t1 - t0 < best_t1 - best_t0)
  138. best_t0 = t0, best_t1 = t1, best_tm = tm;
  139. }
  140. *rt = best_t1 - best_t0;
  141. *master = best_tm - best_t0;
  142. /* average best_t0 and best_t1 without overflow: */
  143. tcenter = (best_t0/2 + best_t1/2);
  144. if (best_t0 % 2 + best_t1 % 2 == 2)
  145. ++tcenter;
  146. return tcenter - best_tm;
  147. }
  148. /*
  149.  * Synchronize ar.itc of the current (slave) CPU with the ar.itc of the MASTER CPU
  150.  * (normally the time-keeper CPU).  We use a closed loop to eliminate the possibility of
  151.  * unaccounted-for errors (such as getting a machine check in the middle of a calibration
  152.  * step).  The basic idea is for the slave to ask the master what itc value it has and to
  153.  * read its own itc before and after the master responds.  Each iteration gives us three
  154.  * timestamps:
  155.  *
  156.  * slave master
  157.  *
  158.  * t0 ---
  159.  *             ---
  160.  *    --->
  161.  * tm
  162.  *    /---
  163.  *        /---
  164.  * t1 <---
  165.  *
  166.  *
  167.  * The goal is to adjust the slave's ar.itc such that tm falls exactly half-way between t0
  168.  * and t1.  If we achieve this, the clocks are synchronized provided the interconnect
  169.  * between the slave and the master is symmetric.  Even if the interconnect were
  170.  * asymmetric, we would still know that the synchronization error is smaller than the
  171.  * roundtrip latency (t0 - t1).
  172.  *
  173.  * When the interconnect is quiet and symmetric, this lets us synchronize the itc to
  174.  * within one or two cycles.  However, we can only *guarantee* that the synchronization is
  175.  * accurate to within a round-trip time, which is typically in the range of several
  176.  * hundred cycles (e.g., ~500 cycles).  In practice, this means that the itc's are usually
  177.  * almost perfectly synchronized, but we shouldn't assume that the accuracy is much better
  178.  * than half a micro second or so.
  179.  */
  180. void
  181. ia64_sync_itc (unsigned int master)
  182. {
  183. long i, delta, adj, adjust_latency = 0, done = 0;
  184. unsigned long flags, rt, master_time_stamp, bound;
  185. #if DEBUG_ITC_SYNC
  186. struct {
  187. long rt; /* roundtrip time */
  188. long master; /* master's timestamp */
  189. long diff; /* difference between midpoint and master's timestamp */
  190. long lat; /* estimate of itc adjustment latency */
  191. } t[NUM_ROUNDS];
  192. #endif
  193. go[MASTER] = 1;
  194. if (smp_call_function_single(master, sync_master, NULL, 1, 0) < 0) {
  195. printk("sync_itc: failed to get attention of CPU %u!n", master);
  196. return;
  197. }
  198. while (go[MASTER]); /* wait for master to be ready */
  199. spin_lock_irqsave(&itc_sync_lock, flags);
  200. {
  201. for (i = 0; i < NUM_ROUNDS; ++i) {
  202. delta = get_delta(&rt, &master_time_stamp);
  203. if (delta == 0) {
  204. done = 1; /* let's lock on to this... */
  205. bound = rt;
  206. }
  207. if (!done) {
  208. if (i > 0) {
  209. adjust_latency += -delta;
  210. adj = -delta + adjust_latency/4;
  211. } else
  212. adj = -delta;
  213. ia64_set_itc(ia64_get_itc() + adj);
  214. }
  215. #if DEBUG_ITC_SYNC
  216. t[i].rt = rt;
  217. t[i].master = master_time_stamp;
  218. t[i].diff = delta;
  219. t[i].lat = adjust_latency/4;
  220. #endif
  221. }
  222. }
  223. spin_unlock_irqrestore(&itc_sync_lock, flags);
  224. #if DEBUG_ITC_SYNC
  225. for (i = 0; i < NUM_ROUNDS; ++i)
  226. printk("rt=%5ld master=%5ld diff=%5ld adjlat=%5ldn",
  227.        t[i].rt, t[i].master, t[i].diff, t[i].lat);
  228. #endif
  229. printk("CPU %d: synchronized ITC with CPU %u (last diff %ld cycles, maxerr %lu cycles)n",
  230.        smp_processor_id(), master, delta, rt);
  231. }
  232. /*
  233.  * Ideally sets up per-cpu profiling hooks.  Doesn't do much now...
  234.  */
  235. static inline void __init
  236. smp_setup_percpu_timer (void)
  237. {
  238. local_cpu_data->prof_counter = 1;
  239. local_cpu_data->prof_multiplier = 1;
  240. }
  241. /*
  242.  * Architecture specific routine called by the kernel just before init is
  243.  * fired off. This allows the BP to have everything in order [we hope].
  244.  * At the end of this all the APs will hit the system scheduling and off
  245.  * we go. Each AP will jump through the kernel
  246.  * init into idle(). At this point the scheduler will one day take over
  247.  * and give them jobs to do. smp_callin is a standard routine
  248.  * we use to track CPUs as they power up.
  249.  */
  250. static volatile atomic_t smp_commenced = ATOMIC_INIT(0);
  251. void __init
  252. smp_commence (void)
  253. {
  254. /*
  255.  * Lets the callins below out of their loop.
  256.  */
  257. Dprintk("Setting commenced=1, go go gon");
  258. wmb();
  259. atomic_set(&smp_commenced,1);
  260. }
  261. static void __init
  262. smp_callin (void)
  263. {
  264. int cpuid, phys_id;
  265. extern void ia64_init_itm(void);
  266. #ifdef CONFIG_PERFMON
  267. extern void perfmon_init_percpu(void);
  268. #endif
  269. cpuid = smp_processor_id();
  270. phys_id = hard_smp_processor_id();
  271. if (test_and_set_bit(cpuid, &cpu_online_map)) {
  272. printk("huh, phys CPU#0x%x, CPU#0x%x already present??n", phys_id, cpuid);
  273. BUG();
  274. }
  275. smp_setup_percpu_timer();
  276. /*
  277.  * Synchronize the ITC with the BP
  278.  */
  279. Dprintk("Going to syncup ITC with BP.n");
  280. ia64_sync_itc(0);
  281. /*
  282.  * Get our bogomips.
  283.  */
  284. ia64_init_itm();
  285. #ifdef CONFIG_IA64_MCA
  286. ia64_mca_cmc_vector_setup(); /* Setup vector on AP & enable */
  287. ia64_mca_check_errors(); /* For post-failure MCA error logging */
  288. #endif
  289. #ifdef CONFIG_PERFMON
  290. perfmon_init_percpu();
  291. #endif
  292. local_irq_enable();
  293. calibrate_delay();
  294. local_cpu_data->loops_per_jiffy = loops_per_jiffy;
  295. /*
  296.  * Allow the master to continue.
  297.  */
  298. set_bit(cpuid, &cpu_callin_map);
  299. Dprintk("Stack on CPU %d at about %pn",cpuid, &cpuid);
  300. }
  301. /*
  302.  * Activate a secondary processor.  head.S calls this.
  303.  */
  304. int __init
  305. start_secondary (void *unused)
  306. {
  307. extern int cpu_idle (void);
  308. Dprintk("start_secondary: starting CPU 0x%xn", hard_smp_processor_id());
  309. efi_map_pal_code();
  310. cpu_init();
  311. smp_callin();
  312. Dprintk("CPU %d is set to go.n", smp_processor_id());
  313. while (!atomic_read(&smp_commenced))
  314. ;
  315. Dprintk("CPU %d is starting idle.n", smp_processor_id());
  316. return cpu_idle();
  317. }
  318. static int __init
  319. fork_by_hand (void)
  320. {
  321. /*
  322.  * don't care about the eip and regs settings since
  323.  * we'll never reschedule the forked task.
  324.  */
  325. return do_fork(CLONE_VM|CLONE_PID, 0, 0, 0);
  326. }
  327. static void __init
  328. do_boot_cpu (int sapicid)
  329. {
  330. struct task_struct *idle;
  331. int timeout, cpu;
  332. cpu = ++cpucount;
  333. /*
  334.  * We can't use kernel_thread since we must avoid to
  335.  * reschedule the child.
  336.  */
  337. if (fork_by_hand() < 0)
  338. panic("failed fork for CPU %d", cpu);
  339. /*
  340.  * We remove it from the pidhash and the runqueue
  341.  * once we got the process:
  342.  */
  343. idle = init_task.prev_task;
  344. if (!idle)
  345. panic("No idle process for CPU %d", cpu);
  346. idle->processor = cpu;
  347. ia64_cpu_to_sapicid[cpu] = sapicid;
  348. idle->cpus_runnable = 1 << cpu; /* we schedule the first task manually */
  349. del_from_runqueue(idle);
  350. unhash_process(idle);
  351. init_tasks[cpu] = idle;
  352. Dprintk("Sending wakeup vector %u to AP 0x%x/0x%x.n", ap_wakeup_vector, cpu, sapicid);
  353. platform_send_ipi(cpu, ap_wakeup_vector, IA64_IPI_DM_INT, 0);
  354. /*
  355.  * Wait 10s total for the AP to start
  356.  */
  357. Dprintk("Waiting on callin_map ...");
  358. for (timeout = 0; timeout < 100000; timeout++) {
  359. if (test_bit(cpu, &cpu_callin_map))
  360. break;  /* It has booted */
  361. udelay(100);
  362. }
  363. Dprintk("n");
  364. if (test_bit(cpu, &cpu_callin_map)) {
  365. /* number CPUs logically, starting from 1 (BSP is 0) */
  366. printk("CPU%d: ", cpu);
  367. /*print_cpu_info(&cpu_data[cpu]); */
  368. printk("CPU has booted.n");
  369. } else {
  370. printk(KERN_ERR "Processor 0x%x/0x%x is stuck.n", cpu, sapicid);
  371. ia64_cpu_to_sapicid[cpu] = -1;
  372. cpucount--;
  373. }
  374. }
  375. /*
  376.  * Cycle through the APs sending Wakeup IPIs to boot each.
  377.  */
  378. void __init
  379. smp_boot_cpus (void)
  380. {
  381. int sapicid, cpu;
  382. int boot_cpu_id = hard_smp_processor_id();
  383. /*
  384.  * Initialize the logical to physical CPU number mapping
  385.  * and the per-CPU profiling counter/multiplier
  386.  */
  387. for (cpu = 0; cpu < NR_CPUS; cpu++)
  388. ia64_cpu_to_sapicid[cpu] = -1;
  389. smp_setup_percpu_timer();
  390. /*
  391. * We have the boot CPU online for sure.
  392. */
  393. set_bit(0, &cpu_online_map);
  394. set_bit(0, &cpu_callin_map);
  395. local_cpu_data->loops_per_jiffy = loops_per_jiffy;
  396. ia64_cpu_to_sapicid[0] = boot_cpu_id;
  397. printk("Boot processor id 0x%x/0x%xn", 0, boot_cpu_id);
  398. global_irq_holder = 0;
  399. current->processor = 0;
  400. init_idle();
  401. /*
  402.  * If SMP should be disabled, then really disable it!
  403.  */
  404. if (!max_cpus || (max_cpus < -1)) {
  405. printk(KERN_INFO "SMP mode deactivated.n");
  406. cpu_online_map =  1;
  407. smp_num_cpus = 1;
  408. goto smp_done;
  409. }
  410. if  (max_cpus != -1)
  411. printk (KERN_INFO "Limiting CPUs to %dn", max_cpus);
  412. if (smp_boot_data.cpu_count > 1) {
  413. printk(KERN_INFO "SMP: starting up secondaries.n");
  414. for (cpu = 0; cpu < smp_boot_data.cpu_count; cpu++) {
  415. /*
  416.  * Don't even attempt to start the boot CPU!
  417.  */
  418. sapicid = smp_boot_data.cpu_phys_id[cpu];
  419. if ((sapicid == -1) || (sapicid == hard_smp_processor_id()))
  420. continue;
  421. if ((max_cpus > 0) && (cpucount + 1 >= max_cpus))
  422. break;
  423. do_boot_cpu(sapicid);
  424. /*
  425.  * Make sure we unmap all failed CPUs
  426.  */
  427. if (ia64_cpu_to_sapicid[cpu] == -1)
  428. printk("phys CPU#%d not responding - cannot use it.n", cpu);
  429. }
  430. smp_num_cpus = cpucount + 1;
  431. /*
  432.  * Allow the user to impress friends.
  433.  */
  434. printk("Before bogomips.n");
  435. if (!cpucount) {
  436. printk(KERN_ERR "Error: only one processor found.n");
  437. } else {
  438. unsigned long bogosum = 0;
  439.    for (cpu = 0; cpu < NR_CPUS; cpu++)
  440. if (cpu_online_map & (1<<cpu))
  441. bogosum += cpu_data(cpu)->loops_per_jiffy;
  442. printk(KERN_INFO"Total of %d processors activated (%lu.%02lu BogoMIPS).n",
  443.        cpucount + 1, bogosum/(500000/HZ), (bogosum/(5000/HZ))%100);
  444. }
  445. }
  446.   smp_done:
  447. ;
  448. }
  449. /*
  450.  * Assume that CPU's have been discovered by some platform-dependant interface.  For
  451.  * SoftSDV/Lion, that would be ACPI.
  452.  *
  453.  * Setup of the IPI irq handler is done in irq.c:init_IRQ_SMP().
  454.  */
  455. void __init
  456. init_smp_config(void)
  457. {
  458. struct fptr {
  459. unsigned long fp;
  460. unsigned long gp;
  461. } *ap_startup;
  462. long sal_ret;
  463. /* Tell SAL where to drop the AP's.  */
  464. ap_startup = (struct fptr *) start_ap;
  465. sal_ret = ia64_sal_set_vectors(SAL_VECTOR_OS_BOOT_RENDEZ,
  466.        __pa(ap_startup->fp), __pa(ap_startup->gp), 0, 0, 0, 0);
  467. if (sal_ret < 0) {
  468. printk("SMP: Can't set SAL AP Boot Rendezvous: %sn     Forcing UP moden",
  469.        ia64_sal_strerror(sal_ret));
  470. max_cpus = 0;
  471. smp_num_cpus = 1;
  472. }
  473. }