smp.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:28k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/alpha/kernel/smp.c
  3.  *
  4.  *      2001-07-09 Phil Ezolt (Phillip.Ezolt@compaq.com)
  5.  *            Renamed modified smp_call_function to smp_call_function_on_cpu()
  6.  *            Created an function that conforms to the old calling convention
  7.  *            of smp_call_function().
  8.  *
  9.  *            This is helpful for DCPI.
  10.  *
  11.  */
  12. #include <linux/errno.h>
  13. #include <linux/kernel.h>
  14. #include <linux/kernel_stat.h>
  15. #include <linux/sched.h>
  16. #include <linux/mm.h>
  17. #include <linux/threads.h>
  18. #include <linux/smp.h>
  19. #include <linux/smp_lock.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/init.h>
  22. #include <linux/delay.h>
  23. #include <linux/spinlock.h>
  24. #include <linux/irq.h>
  25. #include <linux/cache.h>
  26. #include <asm/hwrpb.h>
  27. #include <asm/ptrace.h>
  28. #include <asm/atomic.h>
  29. #include <asm/io.h>
  30. #include <asm/irq.h>
  31. #include <asm/bitops.h>
  32. #include <asm/pgtable.h>
  33. #include <asm/pgalloc.h>
  34. #include <asm/hardirq.h>
  35. #include <asm/softirq.h>
  36. #include <asm/mmu_context.h>
  37. #define __KERNEL_SYSCALLS__
  38. #include <asm/unistd.h>
  39. #include "proto.h"
  40. #include "irq_impl.h"
  41. #define DEBUG_SMP 0
  42. #if DEBUG_SMP
  43. #define DBGS(args) printk args
  44. #else
  45. #define DBGS(args)
  46. #endif
  47. /* A collection of per-processor data.  */
  48. struct cpuinfo_alpha cpu_data[NR_CPUS];
  49. /* A collection of single bit ipi messages.  */
  50. static struct {
  51. unsigned long bits ____cacheline_aligned;
  52. } ipi_data[NR_CPUS] __cacheline_aligned;
  53. enum ipi_message_type {
  54. IPI_RESCHEDULE,
  55. IPI_CALL_FUNC,
  56. IPI_CPU_STOP,
  57. };
  58. spinlock_t kernel_flag __cacheline_aligned_in_smp = SPIN_LOCK_UNLOCKED;
  59. /* Set to a secondary's cpuid when it comes online.  */
  60. static unsigned long smp_secondary_alive;
  61. /* Which cpus ids came online.  */
  62. unsigned long cpu_present_mask;
  63. /* cpus reported in the hwrpb */
  64. static unsigned long hwrpb_cpu_present_mask __initdata = 0;
  65. static int max_cpus = -1; /* Command-line limitation.  */
  66. int smp_num_probed; /* Internal processor count */
  67. int smp_num_cpus = 1; /* Number that came online.  */
  68. int smp_threads_ready; /* True once the per process idle is forked. */
  69. cycles_t cacheflush_time;
  70. int __cpu_number_map[NR_CPUS];
  71. int __cpu_logical_map[NR_CPUS];
  72. extern void calibrate_delay(void);
  73. extern asmlinkage void entInt(void);
  74. static int __init nosmp(char *str)
  75. {
  76. max_cpus = 0;
  77. return 1;
  78. }
  79. __setup("nosmp", nosmp);
  80. static int __init maxcpus(char *str)
  81. {
  82. get_option(&str, &max_cpus);
  83. return 1;
  84. }
  85. __setup("maxcpus", maxcpus);
  86. /*
  87.  * Called by both boot and secondaries to move global data into
  88.  *  per-processor storage.
  89.  */
  90. static inline void __init
  91. smp_store_cpu_info(int cpuid)
  92. {
  93. cpu_data[cpuid].loops_per_jiffy = loops_per_jiffy;
  94. cpu_data[cpuid].last_asn = ASN_FIRST_VERSION;
  95. cpu_data[cpuid].need_new_asn = 0;
  96. cpu_data[cpuid].asn_lock = 0;
  97. local_irq_count(cpuid) = 0;
  98. local_bh_count(cpuid) = 0;
  99. }
  100. /*
  101.  * Ideally sets up per-cpu profiling hooks.  Doesn't do much now...
  102.  */
  103. static inline void __init
  104. smp_setup_percpu_timer(int cpuid)
  105. {
  106. cpu_data[cpuid].prof_counter = 1;
  107. cpu_data[cpuid].prof_multiplier = 1;
  108. }
  109. static void __init
  110. wait_boot_cpu_to_stop(int cpuid)
  111. {
  112. long stop = jiffies + 10*HZ;
  113. while (time_before(jiffies, stop)) {
  114.         if (!smp_secondary_alive)
  115. return;
  116. barrier();
  117. }
  118. printk("wait_boot_cpu_to_stop: FAILED on CPU %d, hanging nown", cpuid);
  119. for (;;)
  120. barrier();
  121. }
  122. /*
  123.  * Where secondaries begin a life of C.
  124.  */
  125. void __init
  126. smp_callin(void)
  127. {
  128. int cpuid = hard_smp_processor_id();
  129. if (current != init_tasks[cpu_number_map(cpuid)]) {
  130. printk("BUG: smp_calling: cpu %d current %p init_tasks[cpu_number_map(cpuid)] %pn",
  131.        cpuid, current, init_tasks[cpu_number_map(cpuid)]);
  132. }
  133. DBGS(("CALLIN %d state 0x%lxn", cpuid, current->state));
  134. /* Turn on machine checks.  */
  135. wrmces(7);
  136. /* Set trap vectors.  */
  137. trap_init();
  138. /* Set interrupt vector.  */
  139. wrent(entInt, 0);
  140. /* Get our local ticker going. */
  141. smp_setup_percpu_timer(cpuid);
  142. /* Must have completely accurate bogos.  */
  143. __sti();
  144. /*
  145.  * Wait boot CPU to stop with irq enabled before
  146.  * running calibrate_delay().
  147.  */
  148. wait_boot_cpu_to_stop(cpuid);
  149. mb();
  150.  try_again:
  151. calibrate_delay();
  152. smp_store_cpu_info(cpuid);
  153. {
  154. #define LPJ(c) ((long)cpu_data[c].loops_per_jiffy)
  155.   static int tries = 3;
  156.   long diff = LPJ(boot_cpuid) - LPJ(cpuid);
  157.   if (diff < 0) diff = -diff;
  158.   if (diff > LPJ(boot_cpuid)/10 && --tries) {
  159.     printk("Bogus BogoMIPS for cpu %d - retrying...n", cpuid);
  160.     goto try_again;
  161.   }
  162. }
  163. /*
  164.  * Allow master to continue only after we written
  165.  * the loops_per_jiffy.
  166.  */
  167. wmb();
  168. smp_secondary_alive = 1;
  169. /* Wait for the go code.  */
  170. while (!smp_threads_ready)
  171. barrier();
  172. DBGS(("smp_callin: commencing CPU %d current %pn",
  173.       cpuid, current));
  174. /* Setup the scheduler for this processor.  */
  175. init_idle();
  176. /* ??? This should be in init_idle.  */
  177. atomic_inc(&init_mm.mm_count);
  178. current->active_mm = &init_mm;
  179. /* Do nothing.  */
  180. cpu_idle();
  181. }
  182. /*
  183.  * Rough estimation for SMP scheduling, this is the number of cycles it
  184.  * takes for a fully memory-limited process to flush the SMP-local cache.
  185.  *
  186.  * We are not told how much cache there is, so we have to guess.
  187.  */
  188. static void __init
  189. smp_tune_scheduling (int cpuid)
  190. {
  191. struct percpu_struct *cpu;
  192. unsigned long on_chip_cache;
  193. unsigned long freq;
  194. cpu = (struct percpu_struct*)((char*)hwrpb + hwrpb->processor_offset
  195.       + cpuid * hwrpb->processor_size);
  196. switch (cpu->type)
  197. {
  198. case EV45_CPU:
  199. on_chip_cache = 16 + 16;
  200. break;
  201. case EV5_CPU:
  202. case EV56_CPU:
  203. on_chip_cache = 8 + 8 + 96;
  204. break;
  205. case PCA56_CPU:
  206. on_chip_cache = 16 + 8;
  207. break;
  208. case EV6_CPU:
  209. case EV67_CPU:
  210. on_chip_cache = 64 + 64;
  211. break;
  212. default:
  213. on_chip_cache = 8 + 8;
  214. break;
  215. }
  216. freq = hwrpb->cycle_freq ? : est_cycle_freq;
  217. #if 0
  218. /* Magic estimation stolen from x86 port.  */
  219. cacheflush_time = freq / 1024L * on_chip_cache / 5000L;
  220.         printk("Using heuristic of %d cycles.n",
  221.                cacheflush_time);
  222. #else
  223. /* Magic value to force potential preemption of other CPUs.  */
  224. cacheflush_time = INT_MAX;
  225.         printk("Using heuristic of %d cycles.n",
  226.                cacheflush_time);
  227. #endif
  228. }
  229. /*
  230.  * Send a message to a secondary's console.  "START" is one such
  231.  * interesting message.  ;-)
  232.  */
  233. static void
  234. send_secondary_console_msg(char *str, int cpuid)
  235. {
  236. struct percpu_struct *cpu;
  237. register char *cp1, *cp2;
  238. unsigned long cpumask;
  239. size_t len;
  240. long timeout;
  241. cpu = (struct percpu_struct *)
  242. ((char*)hwrpb
  243.  + hwrpb->processor_offset
  244.  + cpuid * hwrpb->processor_size);
  245. cpumask = (1UL << cpuid);
  246. if (hwrpb->txrdy & cpumask)
  247. goto delay1;
  248. ready1:
  249. cp2 = str;
  250. len = strlen(cp2);
  251. *(unsigned int *)&cpu->ipc_buffer[0] = len;
  252. cp1 = (char *) &cpu->ipc_buffer[1];
  253. memcpy(cp1, cp2, len);
  254. /* atomic test and set */
  255. wmb();
  256. set_bit(cpuid, &hwrpb->rxrdy);
  257. if (hwrpb->txrdy & cpumask)
  258. goto delay2;
  259. ready2:
  260. return;
  261. delay1:
  262. /* Wait 10 seconds.  Note that jiffies aren't ticking yet.  */
  263. for (timeout = 1000000; timeout > 0; --timeout) {
  264. if (!(hwrpb->txrdy & cpumask))
  265. goto ready1;
  266. udelay(10);
  267. barrier();
  268. }
  269. goto timeout;
  270. delay2:
  271. /* Wait 10 seconds.  */
  272. for (timeout = 1000000; timeout > 0; --timeout) {
  273. if (!(hwrpb->txrdy & cpumask))
  274. goto ready2;
  275. udelay(10);
  276. barrier();
  277. }
  278. goto timeout;
  279. timeout:
  280. printk("Processor %x not readyn", cpuid);
  281. return;
  282. }
  283. /*
  284.  * A secondary console wants to send a message.  Receive it.
  285.  */
  286. static void
  287. recv_secondary_console_msg(void)
  288. {
  289. int mycpu, i, cnt;
  290. unsigned long txrdy = hwrpb->txrdy;
  291. char *cp1, *cp2, buf[80];
  292. struct percpu_struct *cpu;
  293. DBGS(("recv_secondary_console_msg: TXRDY 0x%lx.n", txrdy));
  294. mycpu = hard_smp_processor_id();
  295. for (i = 0; i < NR_CPUS; i++) {
  296. if (!(txrdy & (1UL << i)))
  297. continue;
  298. DBGS(("recv_secondary_console_msg: "
  299.       "TXRDY contains CPU %d.n", i));
  300. cpu = (struct percpu_struct *)
  301.   ((char*)hwrpb
  302.    + hwrpb->processor_offset
  303.    + i * hwrpb->processor_size);
  304.   DBGS(("recv_secondary_console_msg: on %d from %d"
  305.       " HALT_REASON 0x%lx FLAGS 0x%lxn",
  306.       mycpu, i, cpu->halt_reason, cpu->flags));
  307. cnt = cpu->ipc_buffer[0] >> 32;
  308. if (cnt <= 0 || cnt >= 80)
  309. strcpy(buf, "<<< BOGUS MSG >>>");
  310. else {
  311. cp1 = (char *) &cpu->ipc_buffer[11];
  312. cp2 = buf;
  313. strcpy(cp2, cp1);
  314. while ((cp2 = strchr(cp2, 'r')) != 0) {
  315. *cp2 = ' ';
  316. if (cp2[1] == 'n')
  317. cp2[1] = ' ';
  318. }
  319. }
  320. DBGS((KERN_INFO "recv_secondary_console_msg: on %d "
  321.       "message is '%s'n", mycpu, buf));
  322. }
  323. hwrpb->txrdy = 0;
  324. }
  325. /*
  326.  * Convince the console to have a secondary cpu begin execution.
  327.  */
  328. static int __init
  329. secondary_cpu_start(int cpuid, struct task_struct *idle)
  330. {
  331. struct percpu_struct *cpu;
  332. struct pcb_struct *hwpcb;
  333. long timeout;
  334.   
  335. cpu = (struct percpu_struct *)
  336. ((char*)hwrpb
  337.  + hwrpb->processor_offset
  338.  + cpuid * hwrpb->processor_size);
  339. hwpcb = (struct pcb_struct *) cpu->hwpcb;
  340. /* Initialize the CPU's HWPCB to something just good enough for
  341.    us to get started.  Immediately after starting, we'll swpctx
  342.    to the target idle task's ptb.  Reuse the stack in the mean
  343.    time.  Precalculate the target PCBB.  */
  344. hwpcb->ksp = (unsigned long) idle + sizeof(union task_union) - 16;
  345. hwpcb->usp = 0;
  346. hwpcb->ptbr = idle->thread.ptbr;
  347. hwpcb->pcc = 0;
  348. hwpcb->asn = 0;
  349. hwpcb->unique = virt_to_phys(&idle->thread);
  350. hwpcb->flags = idle->thread.pal_flags;
  351. hwpcb->res1 = hwpcb->res2 = 0;
  352. #if 0
  353. DBGS(("KSP 0x%lx PTBR 0x%lx VPTBR 0x%lx UNIQUE 0x%lxn",
  354.       hwpcb->ksp, hwpcb->ptbr, hwrpb->vptb, hwpcb->unique));
  355. #endif
  356. DBGS(("Starting secondary cpu %d: state 0x%lx pal_flags 0x%lxn",
  357.       cpuid, idle->state, idle->thread.pal_flags));
  358. /* Setup HWRPB fields that SRM uses to activate secondary CPU */
  359. hwrpb->CPU_restart = __smp_callin;
  360. hwrpb->CPU_restart_data = (unsigned long) __smp_callin;
  361. /* Recalculate and update the HWRPB checksum */
  362. hwrpb_update_checksum(hwrpb);
  363. /*
  364.  * Send a "start" command to the specified processor.
  365.  */
  366. /* SRM III 3.4.1.3 */
  367. cpu->flags |= 0x22; /* turn on Context Valid and Restart Capable */
  368. cpu->flags &= ~1; /* turn off Bootstrap In Progress */
  369. wmb();
  370. send_secondary_console_msg("STARTrn", cpuid);
  371. /* Wait 10 seconds for an ACK from the console.  Note that jiffies 
  372.    aren't ticking yet.  */
  373. for (timeout = 1000000; timeout > 0; timeout--) {
  374. if (cpu->flags & 1)
  375. goto started;
  376. udelay(10);
  377. barrier();
  378. }
  379. printk(KERN_ERR "SMP: Processor %d failed to start.n", cpuid);
  380. return -1;
  381. started:
  382. DBGS(("secondary_cpu_start: SUCCESS for CPU %d!!!n", cpuid));
  383. return 0;
  384. }
  385. static int __init fork_by_hand(void)
  386. {
  387. struct pt_regs regs;
  388. /*
  389.  * don't care about the regs settings since
  390.  * we'll never reschedule the forked task.
  391.  */
  392. return do_fork(CLONE_VM|CLONE_PID, 0, &regs, 0);
  393. }
  394. /*
  395.  * Bring one cpu online.
  396.  */
  397. static int __init
  398. smp_boot_one_cpu(int cpuid, int cpunum)
  399. {
  400. struct task_struct *idle;
  401. long timeout;
  402. /* Cook up an idler for this guy.  Note that the address we give
  403.    to kernel_thread is irrelevant -- it's going to start where
  404.    HWRPB.CPU_restart says to start.  But this gets all the other
  405.    task-y sort of data structures set up like we wish.  */
  406. /*
  407.  * We can't use kernel_thread since we must avoid to
  408.  * reschedule the child.
  409.  */
  410. if (fork_by_hand() < 0)
  411. panic("failed fork for CPU %d", cpuid);
  412. idle = init_task.prev_task;
  413. if (!idle)
  414. panic("No idle process for CPU %d", cpuid);
  415. if (idle == &init_task)
  416. panic("idle process is init_task for CPU %d", cpuid);
  417. idle->processor = cpuid;
  418. idle->cpus_runnable = 1 << cpuid; /* we schedule the first task manually */
  419. __cpu_logical_map[cpunum] = cpuid;
  420. __cpu_number_map[cpuid] = cpunum;
  421.  
  422. del_from_runqueue(idle);
  423. unhash_process(idle);
  424. init_tasks[cpunum] = idle;
  425. DBGS(("smp_boot_one_cpu: CPU %d state 0x%lx flags 0x%lxn",
  426.       cpuid, idle->state, idle->flags));
  427. /* The secondary will change this once it is happy.  Note that
  428.    secondary_cpu_start contains the necessary memory barrier.  */
  429. smp_secondary_alive = -1;
  430. /* Whirrr, whirrr, whirrrrrrrrr... */
  431. if (secondary_cpu_start(cpuid, idle))
  432. return -1;
  433. mb();
  434. /* Notify the secondary CPU it can run calibrate_delay() */
  435. smp_secondary_alive = 0;
  436. /* We've been acked by the console; wait one second for the task
  437.    to start up for real.  Note that jiffies aren't ticking yet.  */
  438. for (timeout = 0; timeout < 1000000; timeout++) {
  439. if (smp_secondary_alive == 1)
  440. goto alive;
  441. udelay(10);
  442. barrier();
  443. }
  444. /* we must invalidate our stuff as we failed to boot the CPU */
  445. __cpu_logical_map[cpunum] = -1;
  446. __cpu_number_map[cpuid] = -1;
  447. /* the idle task is local to us so free it as we don't use it */
  448. free_task_struct(idle);
  449. printk(KERN_ERR "SMP: Processor %d is stuck.n", cpuid);
  450. return -1;
  451. alive:
  452. /* Another "Red Snapper". */
  453. return 0;
  454. }
  455. /*
  456.  * Called from setup_arch.  Detect an SMP system and which processors
  457.  * are present.
  458.  */
  459. void __init
  460. setup_smp(void)
  461. {
  462. struct percpu_struct *cpubase, *cpu;
  463. int i;
  464. if (boot_cpuid != 0) {
  465. printk(KERN_WARNING "SMP: Booting off cpu %d instead of 0?n",
  466.        boot_cpuid);
  467. }
  468. if (hwrpb->nr_processors > 1) {
  469. int boot_cpu_palrev;
  470. DBGS(("setup_smp: nr_processors %ldn",
  471.       hwrpb->nr_processors));
  472. cpubase = (struct percpu_struct *)
  473. ((char*)hwrpb + hwrpb->processor_offset);
  474. boot_cpu_palrev = cpubase->pal_revision;
  475. for (i = 0; i < hwrpb->nr_processors; i++ ) {
  476. cpu = (struct percpu_struct *)
  477. ((char *)cpubase + i*hwrpb->processor_size);
  478. if ((cpu->flags & 0x1cc) == 0x1cc) {
  479. smp_num_probed++;
  480. /* Assume here that "whami" == index */
  481. hwrpb_cpu_present_mask |= (1UL << i);
  482. cpu->pal_revision = boot_cpu_palrev;
  483. }
  484. DBGS(("setup_smp: CPU %d: flags 0x%lx type 0x%lxn",
  485.       i, cpu->flags, cpu->type));
  486. DBGS(("setup_smp: CPU %d: PAL rev 0x%lxn",
  487.       i, cpu->pal_revision));
  488. }
  489. } else {
  490. smp_num_probed = 1;
  491. hwrpb_cpu_present_mask = (1UL << boot_cpuid);
  492. }
  493. cpu_present_mask = 1UL << boot_cpuid;
  494. printk(KERN_INFO "SMP: %d CPUs probed -- cpu_present_mask = %lxn",
  495.        smp_num_probed, hwrpb_cpu_present_mask);
  496. }
  497. /*
  498.  * Called by smp_init bring all the secondaries online and hold them.
  499.  */
  500. void __init
  501. smp_boot_cpus(void)
  502. {
  503. int cpu_count, i;
  504. unsigned long bogosum;
  505. /* Take care of some initial bookkeeping.  */
  506. memset(__cpu_number_map, -1, sizeof(__cpu_number_map));
  507. memset(__cpu_logical_map, -1, sizeof(__cpu_logical_map));
  508. memset(ipi_data, 0, sizeof(ipi_data));
  509. __cpu_number_map[boot_cpuid] = 0;
  510. __cpu_logical_map[0] = boot_cpuid;
  511. current->processor = boot_cpuid;
  512. smp_store_cpu_info(boot_cpuid);
  513. smp_tune_scheduling(boot_cpuid);
  514. smp_setup_percpu_timer(boot_cpuid);
  515. init_idle();
  516. /* ??? This should be in init_idle.  */
  517. atomic_inc(&init_mm.mm_count);
  518. current->active_mm = &init_mm;
  519. /* Nothing to do on a UP box, or when told not to.  */
  520. if (smp_num_probed == 1 || max_cpus == 0) {
  521. printk(KERN_INFO "SMP mode deactivated.n");
  522. return;
  523. }
  524. printk(KERN_INFO "SMP starting up secondaries.n");
  525. cpu_count = 1;
  526. for (i = 0; i < NR_CPUS; i++) {
  527. if (i == boot_cpuid)
  528. continue;
  529. if (((hwrpb_cpu_present_mask >> i) & 1) == 0)
  530. continue;
  531. if (smp_boot_one_cpu(i, cpu_count))
  532. continue;
  533. cpu_present_mask |= 1UL << i;
  534. cpu_count++;
  535. }
  536. if (cpu_count == 1) {
  537. printk(KERN_ERR "SMP: Only one lonely processor alive.n");
  538. return;
  539. }
  540. bogosum = 0;
  541. for (i = 0; i < NR_CPUS; i++) {
  542. if (cpu_present_mask & (1UL << i))
  543. bogosum += cpu_data[i].loops_per_jiffy;
  544. }
  545. printk(KERN_INFO "SMP: Total of %d processors activated "
  546.        "(%lu.%02lu BogoMIPS).n",
  547.        cpu_count, (bogosum + 2500) / (500000/HZ),
  548.        ((bogosum + 2500) / (5000/HZ)) % 100);
  549. smp_num_cpus = cpu_count;
  550. }
  551. /*
  552.  * Called by smp_init to release the blocking online cpus once they 
  553.  * are all started.
  554.  */
  555. void __init
  556. smp_commence(void)
  557. {
  558. /* smp_init sets smp_threads_ready -- that's enough.  */
  559. mb();
  560. }
  561. void
  562. smp_percpu_timer_interrupt(struct pt_regs *regs)
  563. {
  564. int cpu = smp_processor_id();
  565. unsigned long user = user_mode(regs);
  566. struct cpuinfo_alpha *data = &cpu_data[cpu];
  567. /* Record kernel PC.  */
  568. if (!user)
  569. alpha_do_profile(regs->pc);
  570. if (!--data->prof_counter) {
  571. /* We need to make like a normal interrupt -- otherwise
  572.    timer interrupts ignore the global interrupt lock,
  573.    which would be a Bad Thing.  */
  574. irq_enter(cpu, RTC_IRQ);
  575. update_process_times(user);
  576. data->prof_counter = data->prof_multiplier;
  577. irq_exit(cpu, RTC_IRQ);
  578. if (softirq_pending(cpu))
  579. do_softirq();
  580. }
  581. }
  582. int __init
  583. setup_profiling_timer(unsigned int multiplier)
  584. {
  585. return -EINVAL;
  586. }
  587. static void
  588. send_ipi_message(unsigned long to_whom, enum ipi_message_type operation)
  589. {
  590. long i, j;
  591. /* Reduce the number of memory barriers by doing two loops,
  592.    one to set the bits, one to invoke the interrupts.  */
  593. mb(); /* Order out-of-band data and bit setting. */
  594. for (i = 0, j = 1; i < NR_CPUS; ++i, j <<= 1) {
  595. if (to_whom & j)
  596. set_bit(operation, &ipi_data[i].bits);
  597. }
  598. mb(); /* Order bit setting and interrupt. */
  599. for (i = 0, j = 1; i < NR_CPUS; ++i, j <<= 1) {
  600. if (to_whom & j)
  601. wripir(i);
  602. }
  603. }
  604. /* Structure and data for smp_call_function.  This is designed to 
  605.    minimize static memory requirements.  Plus it looks cleaner.  */
  606. struct smp_call_struct {
  607. void (*func) (void *info);
  608. void *info;
  609. long wait;
  610. atomic_t unstarted_count;
  611. atomic_t unfinished_count;
  612. };
  613. static struct smp_call_struct *smp_call_function_data;
  614. /* Atomicly drop data into a shared pointer.  The pointer is free if
  615.    it is initially locked.  If retry, spin until free.  */
  616. static inline int
  617. pointer_lock (void *lock, void *data, int retry)
  618. {
  619. void *old, *tmp;
  620. mb();
  621. again:
  622. /* Compare and swap with zero.  */
  623. asm volatile (
  624. "1: ldq_l %0,%1n"
  625. " mov %3,%2n"
  626. " bne %0,2fn"
  627. " stq_c %2,%1n"
  628. " beq %2,1bn"
  629. "2:"
  630. : "=&r"(old), "=m"(*(void **)lock), "=&r"(tmp)
  631. : "r"(data)
  632. : "memory");
  633. if (old == 0)
  634. return 0;
  635. if (! retry)
  636. return -EBUSY;
  637. while (*(void **)lock)
  638. barrier();
  639. goto again;
  640. }
  641. void
  642. handle_ipi(struct pt_regs *regs)
  643. {
  644. int this_cpu = smp_processor_id();
  645. unsigned long *pending_ipis = &ipi_data[this_cpu].bits;
  646. unsigned long ops;
  647. #if 0
  648. DBGS(("handle_ipi: on CPU %d ops 0x%lx PC 0x%lxn",
  649.       this_cpu, *pending_ipis, regs->pc));
  650. #endif
  651. mb(); /* Order interrupt and bit testing. */
  652. while ((ops = xchg(pending_ipis, 0)) != 0) {
  653.   mb(); /* Order bit clearing and data access. */
  654.   do {
  655. unsigned long which;
  656. which = ops & -ops;
  657. ops &= ~which;
  658. which = ffz(~which);
  659. if (which == IPI_RESCHEDULE) {
  660. /* Reschedule callback.  Everything to be done
  661.    is done by the interrupt return path.  */
  662. }
  663. else if (which == IPI_CALL_FUNC) {
  664. struct smp_call_struct *data;
  665. void (*func)(void *info);
  666. void *info;
  667. int wait;
  668. data = smp_call_function_data;
  669. func = data->func;
  670. info = data->info;
  671. wait = data->wait;
  672. /* Notify the sending CPU that the data has been
  673.    received, and execution is about to begin.  */
  674. mb();
  675. atomic_dec (&data->unstarted_count);
  676. /* At this point the structure may be gone unless
  677.    wait is true.  */
  678. (*func)(info);
  679. /* Notify the sending CPU that the task is done.  */
  680. mb();
  681. if (wait) atomic_dec (&data->unfinished_count);
  682. }
  683. else if (which == IPI_CPU_STOP) {
  684. halt();
  685. }
  686. else {
  687. printk(KERN_CRIT "Unknown IPI on CPU %d: %lun",
  688.        this_cpu, which);
  689. }
  690.   } while (ops);
  691.   mb(); /* Order data access and bit testing. */
  692. }
  693. cpu_data[this_cpu].ipi_count++;
  694. if (hwrpb->txrdy)
  695. recv_secondary_console_msg();
  696. }
  697. void
  698. smp_send_reschedule(int cpu)
  699. {
  700. #if DEBUG_IPI_MSG
  701. if (cpu == hard_smp_processor_id())
  702. printk(KERN_WARNING
  703.        "smp_send_reschedule: Sending IPI to self.n");
  704. #endif
  705. send_ipi_message(1UL << cpu, IPI_RESCHEDULE);
  706. }
  707. void
  708. smp_send_stop(void)
  709. {
  710. unsigned long to_whom = cpu_present_mask ^ (1UL << smp_processor_id());
  711. #if DEBUG_IPI_MSG
  712. if (hard_smp_processor_id() != boot_cpu_id)
  713. printk(KERN_WARNING "smp_send_stop: Not on boot cpu.n");
  714. #endif
  715. send_ipi_message(to_whom, IPI_CPU_STOP);
  716. }
  717. /*
  718.  * Run a function on all other CPUs.
  719.  *  <func> The function to run. This must be fast and non-blocking.
  720.  *  <info> An arbitrary pointer to pass to the function.
  721.  *  <retry> If true, keep retrying until ready.
  722.  *  <wait> If true, wait until function has completed on other CPUs.
  723.  *  [RETURNS]   0 on success, else a negative status code.
  724.  *
  725.  * Does not return until remote CPUs are nearly ready to execute <func>
  726.  * or are or have executed.
  727.  */
  728. int
  729. smp_call_function_on_cpu (void (*func) (void *info), void *info, int retry,
  730.   int wait, unsigned long to_whom)
  731. {
  732. struct smp_call_struct data;
  733. long timeout;
  734. int num_cpus_to_call;
  735. long i,j;
  736. data.func = func;
  737. data.info = info;
  738. data.wait = wait;
  739. to_whom &= ~(1L << smp_processor_id());
  740. for (i = 0, j = 1, num_cpus_to_call = 0; i < NR_CPUS; ++i, j <<= 1)
  741. if (to_whom & j)
  742. num_cpus_to_call++;
  743. atomic_set(&data.unstarted_count, num_cpus_to_call);
  744. atomic_set(&data.unfinished_count, num_cpus_to_call);
  745. /* Acquire the smp_call_function_data mutex.  */
  746. if (pointer_lock(&smp_call_function_data, &data, retry))
  747. return -EBUSY;
  748. /* Send a message to the requested CPUs.  */
  749. send_ipi_message(to_whom, IPI_CALL_FUNC);
  750. /* Wait for a minimal response.  */
  751. timeout = jiffies + HZ;
  752. while (atomic_read (&data.unstarted_count) > 0
  753.        && time_before (jiffies, timeout))
  754. barrier();
  755. /* We either got one or timed out -- clear the lock.  */
  756. mb();
  757. smp_call_function_data = 0;
  758. if (atomic_read (&data.unstarted_count) > 0)
  759. return -ETIMEDOUT;
  760. /* Wait for a complete response, if needed.  */
  761. if (wait) {
  762. while (atomic_read (&data.unfinished_count) > 0)
  763. barrier();
  764. }
  765. return 0;
  766. }
  767. int
  768. smp_call_function (void (*func) (void *info), void *info, int retry, int wait)
  769. {
  770. return smp_call_function_on_cpu (func, info, retry, wait,
  771.  cpu_present_mask);
  772. }
  773. static void
  774. ipi_imb(void *ignored)
  775. {
  776. imb();
  777. }
  778. void
  779. smp_imb(void)
  780. {
  781. /* Must wait other processors to flush their icache before continue. */
  782. if (smp_call_function(ipi_imb, NULL, 1, 1))
  783. printk(KERN_CRIT "smp_imb: timed outn");
  784. imb();
  785. }
  786. static void
  787. ipi_flush_tlb_all(void *ignored)
  788. {
  789. tbia();
  790. }
  791. void
  792. flush_tlb_all(void)
  793. {
  794. /* Although we don't have any data to pass, we do want to
  795.    synchronize with the other processors.  */
  796. if (smp_call_function(ipi_flush_tlb_all, NULL, 1, 1)) {
  797. printk(KERN_CRIT "flush_tlb_all: timed outn");
  798. }
  799. tbia();
  800. }
  801. #define asn_locked() (cpu_data[smp_processor_id()].asn_lock)
  802. static void
  803. ipi_flush_tlb_mm(void *x)
  804. {
  805. struct mm_struct *mm = (struct mm_struct *) x;
  806. if (mm == current->active_mm && !asn_locked())
  807. flush_tlb_current(mm);
  808. else
  809. flush_tlb_other(mm);
  810. }
  811. void
  812. flush_tlb_mm(struct mm_struct *mm)
  813. {
  814. if (mm == current->active_mm) {
  815. flush_tlb_current(mm);
  816. if (atomic_read(&mm->mm_users) <= 1) {
  817. int i, cpu, this_cpu = smp_processor_id();
  818. for (i = 0; i < smp_num_cpus; i++) {
  819. cpu = cpu_logical_map(i);
  820. if (cpu == this_cpu)
  821. continue;
  822. if (mm->context[cpu])
  823. mm->context[cpu] = 0;
  824. }
  825. return;
  826. }
  827. }
  828. if (smp_call_function(ipi_flush_tlb_mm, mm, 1, 1)) {
  829. printk(KERN_CRIT "flush_tlb_mm: timed outn");
  830. }
  831. }
  832. struct flush_tlb_page_struct {
  833. struct vm_area_struct *vma;
  834. struct mm_struct *mm;
  835. unsigned long addr;
  836. };
  837. static void
  838. ipi_flush_tlb_page(void *x)
  839. {
  840. struct flush_tlb_page_struct *data = (struct flush_tlb_page_struct *)x;
  841. struct mm_struct * mm = data->mm;
  842. if (mm == current->active_mm && !asn_locked())
  843. flush_tlb_current_page(mm, data->vma, data->addr);
  844. else
  845. flush_tlb_other(mm);
  846. }
  847. void
  848. flush_tlb_page(struct vm_area_struct *vma, unsigned long addr)
  849. {
  850. struct flush_tlb_page_struct data;
  851. struct mm_struct *mm = vma->vm_mm;
  852. if (mm == current->active_mm) {
  853. flush_tlb_current_page(mm, vma, addr);
  854. if (atomic_read(&mm->mm_users) <= 1) {
  855. int i, cpu, this_cpu = smp_processor_id();
  856. for (i = 0; i < smp_num_cpus; i++) {
  857. cpu = cpu_logical_map(i);
  858. if (cpu == this_cpu)
  859. continue;
  860. if (mm->context[cpu])
  861. mm->context[cpu] = 0;
  862. }
  863. return;
  864. }
  865. }
  866. data.vma = vma;
  867. data.mm = mm;
  868. data.addr = addr;
  869. if (smp_call_function(ipi_flush_tlb_page, &data, 1, 1)) {
  870. printk(KERN_CRIT "flush_tlb_page: timed outn");
  871. }
  872. }
  873. void
  874. flush_tlb_range(struct mm_struct *mm, unsigned long start, unsigned long end)
  875. {
  876. /* On the Alpha we always flush the whole user tlb.  */
  877. flush_tlb_mm(mm);
  878. }
  879. static void
  880. ipi_flush_icache_page(void *x)
  881. {
  882. struct mm_struct *mm = (struct mm_struct *) x;
  883. if (mm == current->active_mm && !asn_locked())
  884. __load_new_mm_context(mm);
  885. else
  886. flush_tlb_other(mm);
  887. }
  888. void
  889. flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
  890. unsigned long addr, int len)
  891. {
  892. struct mm_struct *mm = vma->vm_mm;
  893. if ((vma->vm_flags & VM_EXEC) == 0)
  894. return;
  895. if (mm == current->active_mm) {
  896. __load_new_mm_context(mm);
  897. if (atomic_read(&mm->mm_users) <= 1) {
  898. int i, cpu, this_cpu = smp_processor_id();
  899. for (i = 0; i < smp_num_cpus; i++) {
  900. cpu = cpu_logical_map(i);
  901. if (cpu == this_cpu)
  902. continue;
  903. if (mm->context[cpu])
  904. mm->context[cpu] = 0;
  905. }
  906. return;
  907. }
  908. }
  909. if (smp_call_function(ipi_flush_icache_page, mm, 1, 1)) {
  910. printk(KERN_CRIT "flush_icache_page: timed outn");
  911. }
  912. }
  913. #ifdef CONFIG_DEBUG_SPINLOCK
  914. void
  915. spin_unlock(spinlock_t * lock)
  916. {
  917. mb();
  918. lock->lock = 0;
  919. lock->on_cpu = -1;
  920. lock->previous = NULL;
  921. lock->task = NULL;
  922. lock->base_file = "none";
  923. lock->line_no = 0;
  924. }
  925. void
  926. debug_spin_lock(spinlock_t * lock, const char *base_file, int line_no)
  927. {
  928. long tmp;
  929. long stuck;
  930. void *inline_pc = __builtin_return_address(0);
  931. unsigned long started = jiffies;
  932. int printed = 0;
  933. int cpu = smp_processor_id();
  934. stuck = 1L << 30;
  935.  try_again:
  936. /* Use sub-sections to put the actual loop at the end
  937.    of this object file's text section so as to perfect
  938.    branch prediction.  */
  939. __asm__ __volatile__(
  940. "1: ldl_l %0,%1n"
  941. " subq %2,1,%2n"
  942. " blbs %0,2fn"
  943. " or %0,1,%0n"
  944. " stl_c %0,%1n"
  945. " beq %0,3fn"
  946. "4: mbn"
  947. ".subsection 2n"
  948. "2: ldl %0,%1n"
  949. " subq %2,1,%2n"
  950. "3: blt %2,4bn"
  951. " blbs %0,2bn"
  952. " br 1bn"
  953. ".previous"
  954. : "=r" (tmp), "=m" (lock->lock), "=r" (stuck)
  955. : "1" (lock->lock), "2" (stuck) : "memory");
  956. if (stuck < 0) {
  957. printk(KERN_WARNING
  958.        "%s:%d spinlock stuck in %s at %p(%d)"
  959.        " owner %s at %p(%d) %s:%dn",
  960.        base_file, line_no,
  961.        current->comm, inline_pc, cpu,
  962.        lock->task->comm, lock->previous,
  963.        lock->on_cpu, lock->base_file, lock->line_no);
  964. stuck = 1L << 36;
  965. printed = 1;
  966. goto try_again;
  967. }
  968. /* Exiting.  Got the lock.  */
  969. lock->on_cpu = cpu;
  970. lock->previous = inline_pc;
  971. lock->task = current;
  972. lock->base_file = base_file;
  973. lock->line_no = line_no;
  974. if (printed) {
  975. printk(KERN_WARNING
  976.        "%s:%d spinlock grabbed in %s at %p(%d) %ld ticksn",
  977.        base_file, line_no, current->comm, inline_pc,
  978.        cpu, jiffies - started);
  979. }
  980. }
  981. int
  982. debug_spin_trylock(spinlock_t * lock, const char *base_file, int line_no)
  983. {
  984. int ret;
  985. if ((ret = !test_and_set_bit(0, lock))) {
  986. lock->on_cpu = smp_processor_id();
  987. lock->previous = __builtin_return_address(0);
  988. lock->task = current;
  989. } else {
  990. lock->base_file = base_file;
  991. lock->line_no = line_no;
  992. }
  993. return ret;
  994. }
  995. #endif /* CONFIG_DEBUG_SPINLOCK */
  996. #ifdef CONFIG_DEBUG_RWLOCK
  997. void write_lock(rwlock_t * lock)
  998. {
  999. long regx, regy;
  1000. int stuck_lock, stuck_reader;
  1001. void *inline_pc = __builtin_return_address(0);
  1002.  try_again:
  1003. stuck_lock = 1<<30;
  1004. stuck_reader = 1<<30;
  1005. __asm__ __volatile__(
  1006. "1: ldl_l %1,%0n"
  1007. " blbs %1,6fn"
  1008. " blt %1,8fn"
  1009. " mov 1,%1n"
  1010. " stl_c %1,%0n"
  1011. " beq %1,6fn"
  1012. "4: mbn"
  1013. ".subsection 2n"
  1014. "6: blt %3,4b # debugn"
  1015. " subl %3,1,%3 # debugn"
  1016. " ldl %1,%0n"
  1017. " blbs %1,6bn"
  1018. "8: blt %4,4b # debugn"
  1019. " subl %4,1,%4 # debugn"
  1020. " ldl %1,%0n"
  1021. " blt %1,8bn"
  1022. " br 1bn"
  1023. ".previous"
  1024. : "=m" (*(volatile int *)lock), "=&r" (regx), "=&r" (regy),
  1025.   "=&r" (stuck_lock), "=&r" (stuck_reader)
  1026. : "0" (*(volatile int *)lock), "3" (stuck_lock), "4" (stuck_reader) : "memory");
  1027. if (stuck_lock < 0) {
  1028. printk(KERN_WARNING "write_lock stuck at %pn", inline_pc);
  1029. goto try_again;
  1030. }
  1031. if (stuck_reader < 0) {
  1032. printk(KERN_WARNING "write_lock stuck on readers at %pn",
  1033.        inline_pc);
  1034. goto try_again;
  1035. }
  1036. }
  1037. void read_lock(rwlock_t * lock)
  1038. {
  1039. long regx;
  1040. int stuck_lock;
  1041. void *inline_pc = __builtin_return_address(0);
  1042.  try_again:
  1043. stuck_lock = 1<<30;
  1044. __asm__ __volatile__(
  1045. "1: ldl_l %1,%0;"
  1046. " blbs %1,6f;"
  1047. " subl %1,2,%1;"
  1048. " stl_c %1,%0;"
  1049. " beq %1,6f;"
  1050. "4: mbn"
  1051. ".subsection 2n"
  1052. "6: ldl %1,%0;"
  1053. " blt %2,4b # debugn"
  1054. " subl %2,1,%2 # debugn"
  1055. " blbs %1,6b;"
  1056. " br 1bn"
  1057. ".previous"
  1058. : "=m" (*(volatile int *)lock), "=&r" (regx), "=&r" (stuck_lock)
  1059. : "0" (*(volatile int *)lock), "2" (stuck_lock) : "memory");
  1060. if (stuck_lock < 0) {
  1061. printk(KERN_WARNING "read_lock stuck at %pn", inline_pc);
  1062. goto try_again;
  1063. }
  1064. }
  1065. #endif /* CONFIG_DEBUG_RWLOCK */