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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2001 Broadcom Corporation
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include <linux/init.h>
  19. #include <linux/delay.h>
  20. #include <linux/smp.h>
  21. #include <linux/kernel_stat.h>
  22. #include <asm/mmu_context.h>
  23. #include <asm/sibyte/64bit.h>
  24. #include <asm/sibyte/sb1250.h>
  25. #include <asm/sibyte/sb1250_regs.h>
  26. #include <asm/sibyte/sb1250_int.h>
  27. extern void smp_call_function_interrupt(void);
  28. /*
  29.  * These are routines for dealing with the sb1250 smp capabilities
  30.  * independent of board/firmware
  31.  */
  32. static u64 mailbox_set_regs[] = {
  33. KSEG1 + A_IMR_CPU0_BASE + R_IMR_MAILBOX_SET_CPU,
  34. KSEG1 + A_IMR_CPU1_BASE + R_IMR_MAILBOX_SET_CPU
  35. };
  36. static u64 mailbox_clear_regs[] = {
  37. KSEG1 + A_IMR_CPU0_BASE + R_IMR_MAILBOX_CLR_CPU,
  38. KSEG1 + A_IMR_CPU1_BASE + R_IMR_MAILBOX_CLR_CPU
  39. };
  40. static u64 mailbox_regs[] = {
  41. KSEG1 + A_IMR_CPU0_BASE + R_IMR_MAILBOX_CPU,
  42. KSEG1 + A_IMR_CPU1_BASE + R_IMR_MAILBOX_CPU
  43. };
  44. /*
  45.  * Simple enough; everything is set up, so just poke the appropriate mailbox
  46.  * register, and we should be set
  47.  */
  48. void core_send_ipi(int cpu, unsigned int action)
  49. {
  50. out64((((u64)action)<< 48), mailbox_set_regs[cpu]);
  51. }
  52. void sb1250_smp_finish(void)
  53. {
  54. extern void sb1_sanitize_tlb(void);
  55. sb1_sanitize_tlb();
  56. sb1250_time_init();
  57. }
  58. void sb1250_mailbox_interrupt(struct pt_regs *regs)
  59. {
  60. int cpu = smp_processor_id();
  61. unsigned int action;
  62. kstat.irqs[cpu][K_INT_MBOX_0]++;
  63. /* Load the mailbox register to figure out what we're supposed to do */
  64. action = (in64(mailbox_regs[cpu]) >> 48) & 0xffff;
  65. /* Clear the mailbox to clear the interrupt */
  66. out64(((u64)action)<<48, mailbox_clear_regs[cpu]);
  67. /*
  68.  * Nothing to do for SMP_RESCHEDULE_YOURSELF; returning from the
  69.  * interrupt will do the reschedule for us
  70.  */
  71. if (action & SMP_CALL_FUNCTION) {
  72. smp_call_function_interrupt();
  73. }
  74. }
  75. extern atomic_t cpus_booted;
  76. extern int prom_setup_smp(void);
  77. extern int prom_boot_secondary(int cpu, unsigned long sp, unsigned long gp);
  78. void __init smp_boot_cpus(void)
  79. {
  80. int i;
  81. int cur_cpu = 0;
  82. smp_num_cpus = prom_setup_smp();
  83. init_new_context(current, &init_mm);
  84. current->processor = 0;
  85. cpu_data[0].udelay_val = loops_per_jiffy;
  86. cpu_data[0].asid_cache = ASID_FIRST_VERSION;
  87. CPUMASK_CLRALL(cpu_online_map);
  88. CPUMASK_SETB(cpu_online_map, 0);
  89. atomic_set(&cpus_booted, 1);  /* Master CPU is already booted... */
  90. init_idle();
  91. /*
  92.  * This loop attempts to compensate for "holes" in the CPU
  93.  * numbering.  It's overkill, but general.
  94.  */
  95. for (i = 1; i < smp_num_cpus; ) {
  96. struct task_struct *p;
  97. struct pt_regs regs;
  98. int retval;
  99. printk("Starting CPU %d... ", i);
  100. /* Spawn a new process normally.  Grab a pointer to
  101.    its task struct so we can mess with it */
  102. do_fork(CLONE_VM|CLONE_PID, 0, &regs, 0);
  103. p = init_task.prev_task;
  104. /* Schedule the first task manually */
  105. p->processor = i;
  106. p->cpus_runnable = 1 << i; /* we schedule the first task manually */
  107. /* Attach to the address space of init_task. */
  108. atomic_inc(&init_mm.mm_count);
  109. p->active_mm = &init_mm;
  110. init_tasks[i] = p;
  111. del_from_runqueue(p);
  112. unhash_process(p);
  113. do {
  114. /* Iterate until we find a CPU that comes up */
  115. cur_cpu++;
  116. retval = prom_boot_secondary(cur_cpu,
  117.     (unsigned long)p + KERNEL_STACK_SIZE - 32,
  118.     (unsigned long)p);
  119. } while (!retval && (cur_cpu < NR_CPUS));
  120. if (retval) {
  121. i++;
  122. } else {
  123. panic("CPU discovery disaster");
  124. }
  125. }
  126. /* Wait for everyone to come up */
  127. while (atomic_read(&cpus_booted) != smp_num_cpus);
  128. smp_threads_ready = 1;
  129. }