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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/kernel/smp.c
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
  7.  *               Martin Schwidefsky (schwidefsky@de.ibm.com)
  8.  *
  9.  *  based on other smp stuff by 
  10.  *    (c) 1995 Alan Cox, CymruNET Ltd  <alan@cymru.net>
  11.  *    (c) 1998 Ingo Molnar
  12.  *
  13.  * We work with logical cpu numbering everywhere we can. The only
  14.  * functions using the real cpu address (got from STAP) are the sigp
  15.  * functions. For all other functions we use the identity mapping.
  16.  * That means that cpu_number_map[i] == i for every cpu. cpu_number_map is
  17.  * used e.g. to find the idle task belonging to a logical cpu. Every array
  18.  * in the kernel is sorted by the logical cpu number and not by the physical
  19.  * one which is causing all the confusion with __cpu_logical_map and
  20.  * cpu_number_map in other architectures.
  21.  */
  22. #include <linux/module.h>
  23. #include <linux/init.h>
  24. #include <linux/mm.h>
  25. #include <linux/spinlock.h>
  26. #include <linux/kernel_stat.h>
  27. #include <linux/smp_lock.h>
  28. #include <linux/delay.h>
  29. #include <linux/cache.h>
  30. #include <asm/sigp.h>
  31. #include <asm/pgalloc.h>
  32. #include <asm/irq.h>
  33. #include <asm/s390_ext.h>
  34. #include <asm/cpcmd.h>
  35. /* prototypes */
  36. extern int cpu_idle(void * unused);
  37. extern __u16 boot_cpu_addr;
  38. extern volatile int __cpu_logical_map[];
  39. /*
  40.  * An array with a pointer the lowcore of every CPU.
  41.  */
  42. static int       max_cpus = NR_CPUS;   /* Setup configured maximum number of CPUs to activate */
  43. int              smp_num_cpus;
  44. struct _lowcore *lowcore_ptr[NR_CPUS];
  45. cycles_t         cacheflush_time=0;
  46. int              smp_threads_ready=0;      /* Set when the idlers are all forked. */
  47. static atomic_t  smp_commenced = ATOMIC_INIT(0);
  48. spinlock_t       kernel_flag __cacheline_aligned_in_smp = SPIN_LOCK_UNLOCKED;
  49. unsigned long  cpu_online_map;
  50. /*
  51.  *      Setup routine for controlling SMP activation
  52.  *
  53.  *      Command-line option of "nosmp" or "maxcpus=0" will disable SMP
  54.  *      activation entirely (the MPS table probe still happens, though).
  55.  *
  56.  *      Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
  57.  *      greater than 0, limits the maximum number of CPUs activated in
  58.  *      SMP mode to <NUM>.
  59.  */
  60. static int __init nosmp(char *str)
  61. {
  62. max_cpus = 0;
  63. return 1;
  64. }
  65. __setup("nosmp", nosmp);
  66. static int __init maxcpus(char *str)
  67. {
  68. get_option(&str, &max_cpus);
  69. return 1;
  70. }
  71. __setup("maxcpus=", maxcpus);
  72. /*
  73.  * Reboot, halt and power_off routines for SMP.
  74.  */
  75. extern char vmhalt_cmd[];
  76. extern char vmpoff_cmd[];
  77. extern void reipl(unsigned long devno);
  78. static sigp_ccode smp_ext_bitcall(int, ec_bit_sig);
  79. static void smp_ext_bitcall_others(ec_bit_sig);
  80. /*
  81.  * Structure and data for smp_call_function(). This is designed to minimise
  82.  * static memory requirements. It also looks cleaner.
  83.  */
  84. static spinlock_t call_lock = SPIN_LOCK_UNLOCKED;
  85. struct call_data_struct {
  86. void (*func) (void *info);
  87. void *info;
  88. atomic_t started;
  89. atomic_t finished;
  90. int wait;
  91. };
  92. static struct call_data_struct * call_data;
  93. /*
  94.  * 'Call function' interrupt callback
  95.  */
  96. static void do_call_function(void)
  97. {
  98. void (*func) (void *info) = call_data->func;
  99. void *info = call_data->info;
  100. int wait = call_data->wait;
  101. atomic_inc(&call_data->started);
  102. (*func)(info);
  103. if (wait)
  104. atomic_inc(&call_data->finished);
  105. }
  106. /*
  107.  * this function sends a 'generic call function' IPI to all other CPUs
  108.  * in the system.
  109.  */
  110. int smp_call_function (void (*func) (void *info), void *info, int nonatomic,
  111. int wait)
  112. /*
  113.  * [SUMMARY] Run a function on all other CPUs.
  114.  * <func> The function to run. This must be fast and non-blocking.
  115.  * <info> An arbitrary pointer to pass to the function.
  116.  * <nonatomic> currently unused.
  117.  * <wait> If true, wait (atomically) until function has completed on other CPUs.
  118.  * [RETURNS] 0 on success, else a negative status code. Does not return until
  119.  * remote CPUs are nearly ready to execute <<func>> or are or have executed.
  120.  *
  121.  * You must not call this function with disabled interrupts or from a
  122.  * hardware interrupt handler, you may call it from a bottom half handler.
  123.  */
  124. {
  125. struct call_data_struct data;
  126. int cpus = smp_num_cpus-1;
  127. if (!cpus || !atomic_read(&smp_commenced))
  128. return 0;
  129. data.func = func;
  130. data.info = info;
  131. atomic_set(&data.started, 0);
  132. data.wait = wait;
  133. if (wait)
  134. atomic_set(&data.finished, 0);
  135. spin_lock_bh(&call_lock);
  136. call_data = &data;
  137. /* Send a message to all other CPUs and wait for them to respond */
  138.         smp_ext_bitcall_others(ec_call_function);
  139. /* Wait for response */
  140. while (atomic_read(&data.started) != cpus)
  141. barrier();
  142. if (wait)
  143. while (atomic_read(&data.finished) != cpus)
  144. barrier();
  145. spin_unlock_bh(&call_lock);
  146. return 0;
  147. }
  148. /*
  149.  * Various special callbacks
  150.  */
  151. void do_machine_restart(void)
  152. {
  153.         smp_send_stop();
  154. reipl(S390_lowcore.ipl_device);
  155. }
  156. void machine_restart(char * __unused) 
  157. {
  158.         if (smp_processor_id() != 0) {
  159.                 smp_ext_bitcall(0, ec_restart);
  160.                 for (;;);
  161.         } else
  162.                 do_machine_restart();
  163. }
  164. void do_machine_halt(void)
  165. {
  166.         smp_send_stop();
  167.         if (MACHINE_IS_VM && strlen(vmhalt_cmd) > 0)
  168.                 cpcmd(vmhalt_cmd, NULL, 0);
  169.         signal_processor(smp_processor_id(), sigp_stop_and_store_status);
  170. }
  171. void machine_halt(void)
  172. {
  173.         if (smp_processor_id() != 0) {
  174.                 smp_ext_bitcall(0, ec_halt);
  175.                 for (;;);
  176.         } else
  177.                 do_machine_halt();
  178. }
  179. void do_machine_power_off(void)
  180. {
  181.         smp_send_stop();
  182.         if (MACHINE_IS_VM && strlen(vmpoff_cmd) > 0)
  183.                 cpcmd(vmpoff_cmd, NULL, 0);
  184.         signal_processor(smp_processor_id(), sigp_stop_and_store_status);
  185. }
  186. void machine_power_off(void)
  187. {
  188.         if (smp_processor_id() != 0) {
  189.                 smp_ext_bitcall(0, ec_power_off);
  190.                 for (;;);
  191.         } else
  192.                 do_machine_power_off();
  193. }
  194. /*
  195.  * This is the main routine where commands issued by other
  196.  * cpus are handled.
  197.  */
  198. void do_ext_call_interrupt(struct pt_regs *regs, __u16 code)
  199. {
  200.         unsigned long bits;
  201.         /*
  202.          * handle bit signal external calls
  203.          *
  204.          * For the ec_schedule signal we have to do nothing. All the work
  205.          * is done automatically when we return from the interrupt.
  206.  * For the ec_restart, ec_halt and ec_power_off we call the
  207.          * appropriate routine.
  208.          */
  209. bits = xchg(&S390_lowcore.ext_call_fast, 0);
  210.         if (test_bit(ec_restart, &bits))
  211. do_machine_restart();
  212.         if (test_bit(ec_halt, &bits))
  213. do_machine_halt();
  214.         if (test_bit(ec_power_off, &bits))
  215. do_machine_power_off();
  216.         if (test_bit(ec_call_function, &bits))
  217. do_call_function();
  218. }
  219. /*
  220.  * Send an external call sigp to another cpu and return without waiting
  221.  * for its completion.
  222.  */
  223. static sigp_ccode smp_ext_bitcall(int cpu, ec_bit_sig sig)
  224. {
  225.         sigp_ccode ccode;
  226.         /*
  227.          * Set signaling bit in lowcore of target cpu and kick it
  228.          */
  229. set_bit(sig, &(get_cpu_lowcore(cpu).ext_call_fast));
  230.         ccode = signal_processor(cpu, sigp_external_call);
  231.         return ccode;
  232. }
  233. /*
  234.  * Send an external call sigp to every other cpu in the system and
  235.  * return without waiting for its completion.
  236.  */
  237. static void smp_ext_bitcall_others(ec_bit_sig sig)
  238. {
  239.         sigp_ccode ccode;
  240.         int i;
  241.         for (i = 0; i < smp_num_cpus; i++) {
  242.                 if (smp_processor_id() == i)
  243.                         continue;
  244.                 /*
  245.                  * Set signaling bit in lowcore of target cpu and kick it
  246.                  */
  247. set_bit(sig, &(get_cpu_lowcore(i).ext_call_fast));
  248.                 ccode = signal_processor(i, sigp_external_call);
  249.         }
  250. }
  251. /*
  252.  * this function sends a 'stop' sigp to all other CPUs in the system.
  253.  * it goes straight through.
  254.  */
  255. void smp_send_stop(void)
  256. {
  257.         int i;
  258.         u32 dummy;
  259.         unsigned long low_core_addr;
  260.         /* write magic number to zero page (absolute 0) */
  261.         get_cpu_lowcore(smp_processor_id()).panic_magic = __PANIC_MAGIC;
  262.         /* stop all processors */
  263.         for (i =  0; i < smp_num_cpus; i++) {
  264.                 if (smp_processor_id() != i) {
  265.                         int ccode;
  266.                         do {
  267.                                 ccode = signal_processor_ps(
  268.                                    &dummy,
  269.                                    0,
  270.                                    i,
  271.                                    sigp_stop);
  272.                         } while(ccode == sigp_busy);
  273.                 }
  274.         }
  275.         /* store status of all processors in their lowcores (real 0) */
  276.         for (i =  0; i < smp_num_cpus; i++) {
  277.                 if (smp_processor_id() != i) {
  278.                         int ccode;
  279.                         low_core_addr = (unsigned long)&get_cpu_lowcore(i);
  280.                         do {
  281.                                 ccode = signal_processor_ps(
  282.                                    &dummy,
  283.                                    low_core_addr,
  284.                                    i,
  285.                                    sigp_store_status_at_address);
  286.                         } while(ccode == sigp_busy);
  287.                 }
  288.         }
  289. }
  290. /*
  291.  * this function sends a 'reschedule' IPI to another CPU.
  292.  * it goes straight through and wastes no time serializing
  293.  * anything. Worst case is that we lose a reschedule ...
  294.  */
  295. void smp_send_reschedule(int cpu)
  296. {
  297.         smp_ext_bitcall(cpu, ec_schedule);
  298. }
  299. /*
  300.  * parameter area for the set/clear control bit callbacks
  301.  */
  302. typedef struct
  303. {
  304. __u16 start_ctl;
  305. __u16 end_ctl;
  306. __u64 orvals[16];
  307. __u64 andvals[16];
  308. } ec_creg_mask_parms;
  309. /*
  310.  * callback for setting/clearing control bits
  311.  */
  312. void smp_ctl_bit_callback(void *info) {
  313. ec_creg_mask_parms *pp;
  314. u64 cregs[16];
  315. int i;
  316. pp = (ec_creg_mask_parms *) info;
  317. asm volatile ("   bras  1,0fn"
  318.       "   stctg 0,0,0(%0)n"
  319.       "0: ex    %1,0(1)n"
  320.       : : "a" (cregs+pp->start_ctl),
  321.           "a" ((pp->start_ctl<<4) + pp->end_ctl)
  322.       : "memory", "1" );
  323. for (i = pp->start_ctl; i <= pp->end_ctl; i++)
  324. cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
  325. asm volatile ("   bras  1,0fn"
  326.       "   lctlg 0,0,0(%0)n"
  327.       "0: ex    %1,0(1)n"
  328.       : : "a" (cregs+pp->start_ctl),
  329.           "a" ((pp->start_ctl<<4) + pp->end_ctl)
  330.       : "memory", "1" );
  331. }
  332. /*
  333.  * Set a bit in a control register of all cpus
  334.  */
  335. void smp_ctl_set_bit(int cr, int bit) {
  336.         ec_creg_mask_parms parms;
  337.         if (atomic_read(&smp_commenced) != 0) {
  338.                 parms.start_ctl = cr;
  339.                 parms.end_ctl = cr;
  340.                 parms.orvals[cr] = 1 << bit;
  341.                 parms.andvals[cr] = -1L;
  342.                 smp_call_function(smp_ctl_bit_callback, &parms, 0, 1);
  343.         }
  344.         __ctl_set_bit(cr, bit);
  345. }
  346. /*
  347.  * Clear a bit in a control register of all cpus
  348.  */
  349. void smp_ctl_clear_bit(int cr, int bit) {
  350.         ec_creg_mask_parms parms;
  351.         if (atomic_read(&smp_commenced) != 0) {
  352.                 parms.start_ctl = cr;
  353.                 parms.end_ctl = cr;
  354.                 parms.orvals[cr] = 0;
  355.                 parms.andvals[cr] = ~(1L << bit);
  356.                 smp_call_function(smp_ctl_bit_callback, &parms, 0, 1);
  357.         }
  358.         __ctl_clear_bit(cr, bit);
  359. }
  360. /*
  361.  * Lets check how many CPUs we have.
  362.  */
  363. void smp_count_cpus(void)
  364. {
  365.         int curr_cpu;
  366.         current->processor = 0;
  367.         smp_num_cpus = 1;
  368.         for (curr_cpu = 0;
  369.              curr_cpu <= 65535 && smp_num_cpus < max_cpus; curr_cpu++) {
  370.                 if ((__u16) curr_cpu == boot_cpu_addr)
  371.                         continue;
  372.                 __cpu_logical_map[smp_num_cpus] = (__u16) curr_cpu;
  373.                 if (signal_processor(smp_num_cpus, sigp_sense) ==
  374.                     sigp_not_operational)
  375.                         continue;
  376.                 smp_num_cpus++;
  377.         }
  378.         printk("Detected %d CPU'sn",(int) smp_num_cpus);
  379.         printk("Boot cpu address %2Xn", boot_cpu_addr);
  380. }
  381. /*
  382.  *      Activate a secondary processor.
  383.  */
  384. extern void init_cpu_timer(void);
  385. extern int pfault_init(void);
  386. int __init start_secondary(void *cpuvoid)
  387. {
  388.         /* Setup the cpu */
  389.         cpu_init();
  390.         /* Print info about this processor */
  391.         print_cpu_info(&safe_get_cpu_lowcore(smp_processor_id()).cpu_data);
  392.         /* Wait for completion of smp startup */
  393.         while (!atomic_read(&smp_commenced))
  394.                 /* nothing */ ;
  395.         /* init per CPU timer */
  396.         init_cpu_timer();
  397. #ifdef CONFIG_PFAULT
  398. /* Enable pfault pseudo page faults on this cpu. */
  399. pfault_init();
  400. #endif
  401.         /* cpu_idle will call schedule for us */
  402.         return cpu_idle(NULL);
  403. }
  404. /*
  405.  * The restart interrupt handler jumps to start_secondary directly
  406.  * without the detour over initialize_secondary. We defined it here
  407.  * so that the linker doesn't complain.
  408.  */
  409. void __init initialize_secondary(void)
  410. {
  411. }
  412. static int __init fork_by_hand(void)
  413. {
  414.        struct pt_regs regs;
  415.        /* don't care about the psw and regs settings since we'll never
  416.           reschedule the forked task. */
  417.        memset(&regs,0,sizeof(struct pt_regs));
  418.        return do_fork(CLONE_VM|CLONE_PID, 0, &regs, 0);
  419. }
  420. static void __init do_boot_cpu(int cpu)
  421. {
  422.         struct task_struct *idle;
  423.         struct _lowcore    *cpu_lowcore;
  424.         /* We can't use kernel_thread since we must _avoid_ to reschedule
  425.            the child. */
  426.         if (fork_by_hand() < 0)
  427.                 panic("failed fork for CPU %d", cpu);
  428.         /*
  429.          * We remove it from the pidhash and the runqueue
  430.          * once we got the process:
  431.          */
  432.         idle = init_task.prev_task;
  433.         if (!idle)
  434.                 panic("No idle process for CPU %d",cpu);
  435.         idle->processor = cpu;
  436. idle->cpus_runnable = 1 << cpu; /* we schedule the first task manually */
  437.         del_from_runqueue(idle);
  438.         unhash_process(idle);
  439.         init_tasks[cpu] = idle;
  440.         cpu_lowcore=&get_cpu_lowcore(cpu);
  441. cpu_lowcore->save_area[15] = idle->thread.ksp;
  442. cpu_lowcore->kernel_stack = (__u64) idle + 16384;
  443.         __asm__ __volatile__("la    1,%0nt"
  444.      "stctg 0,15,0(1)nt"
  445.      "la    1,%1nt"
  446.                              "stam  0,15,0(1)"
  447.                              : "=m" (cpu_lowcore->cregs_save_area[0]),
  448.                                "=m" (cpu_lowcore->access_regs_save_area[0])
  449.                              : : "1", "memory");
  450.         eieio();
  451.         signal_processor(cpu,sigp_restart);
  452. /* Mark this cpu as online. */
  453. set_bit(cpu, &cpu_online_map);
  454. }
  455. /*
  456.  *      Architecture specific routine called by the kernel just before init is
  457.  *      fired off. This allows the BP to have everything in order [we hope].
  458.  *      At the end of this all the APs will hit the system scheduling and off
  459.  *      we go. Each AP will load the system gdt's and jump through the kernel
  460.  *      init into idle(). At this point the scheduler will one day take over
  461.  *      and give them jobs to do. smp_callin is a standard routine
  462.  *      we use to track CPUs as they power up.
  463.  */
  464. void __init smp_commence(void)
  465. {
  466.         /*
  467.          *      Lets the callins below out of their loop.
  468.          */
  469.         atomic_set(&smp_commenced,1);
  470. }
  471. /*
  472.  * Cycle through the processors sending restart sigps to boot each.
  473.  */
  474. void __init smp_boot_cpus(void)
  475. {
  476.         struct _lowcore *curr_lowcore;
  477. unsigned long async_stack;
  478.         sigp_ccode   ccode;
  479.         int i;
  480.         /* request the 0x1202 external interrupt */
  481.         if (register_external_interrupt(0x1202, do_ext_call_interrupt) != 0)
  482.                 panic("Couldn't request external interrupt 0x1202");
  483.         smp_count_cpus();
  484.         memset(lowcore_ptr,0,sizeof(lowcore_ptr));  
  485.         
  486.         /*
  487.          *      Initialize the logical to physical CPU number mapping
  488.          */
  489.         print_cpu_info(&safe_get_cpu_lowcore(0).cpu_data);
  490.         for(i = 0; i < smp_num_cpus; i++)
  491.         {
  492.                 curr_lowcore = (struct _lowcore *)
  493.                                     __get_free_pages(GFP_KERNEL|GFP_DMA, 1);
  494.                 if (curr_lowcore == NULL) {
  495.                         printk("smp_boot_cpus failed to allocate prefix memoryn");
  496.                         break;
  497.                 }
  498. async_stack = __get_free_pages(GFP_KERNEL,2);
  499. if (async_stack == 0) {
  500. printk("smp_boot_cpus failed to allocate asyncronous"
  501.        " interrupt stackn");
  502. free_page((unsigned long) curr_lowcore);
  503. break;
  504. }
  505.                 lowcore_ptr[i] = curr_lowcore;
  506.                 memcpy(curr_lowcore, &S390_lowcore, sizeof(struct _lowcore));
  507. curr_lowcore->async_stack = async_stack + (4 * PAGE_SIZE);
  508.                 /*
  509.                  * Most of the parameters are set up when the cpu is
  510.                  * started up.
  511.                  */
  512.                 if (smp_processor_id() == i)
  513.                         set_prefix((u32)(u64)curr_lowcore);
  514.                 else {
  515.                         ccode = signal_processor_p((u64)(curr_lowcore),
  516.                                                    i, sigp_set_prefix);
  517.                         if(ccode) {
  518.                                 /* if this gets troublesome I'll have to do
  519.                                  * something about it. */
  520.                                 printk("ccode %d for cpu %d  returned when "
  521.                                        "setting prefix in smp_boot_cpus not good.n",
  522.                                        (int) ccode, (int) i);
  523.                         }
  524.                         else
  525.                                 do_boot_cpu(i);
  526.                 }
  527.         }
  528. }
  529. /*
  530.  * the frequency of the profiling timer can be changed
  531.  * by writing a multiplier value into /proc/profile.
  532.  *
  533.  * usually you want to run this on all CPUs ;)
  534.  */
  535. int setup_profiling_timer(unsigned int multiplier)
  536. {
  537.         return 0;
  538. }
  539. EXPORT_SYMBOL(lowcore_ptr);
  540. EXPORT_SYMBOL(kernel_flag);
  541. EXPORT_SYMBOL(smp_ctl_set_bit);
  542. EXPORT_SYMBOL(smp_ctl_clear_bit);
  543. EXPORT_SYMBOL(smp_num_cpus);