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.         int 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.         do {
  210.                 bits = atomic_read(&S390_lowcore.ext_call_fast);
  211.         } while (atomic_compare_and_swap(bits,0,&S390_lowcore.ext_call_fast));
  212.         if (test_bit(ec_restart, &bits))
  213. do_machine_restart();
  214.         if (test_bit(ec_halt, &bits))
  215. do_machine_halt();
  216.         if (test_bit(ec_power_off, &bits))
  217. do_machine_power_off();
  218. if (test_bit(ec_call_function, &bits)) 
  219. do_call_function();
  220. }
  221. /*
  222.  * Send an external call sigp to another cpu and return without waiting
  223.  * for its completion.
  224.  */
  225. static sigp_ccode smp_ext_bitcall(int cpu, ec_bit_sig sig)
  226. {
  227.         struct _lowcore *lowcore = &get_cpu_lowcore(cpu);
  228.         sigp_ccode ccode;
  229.         /*
  230.          * Set signaling bit in lowcore of target cpu and kick it
  231.          */
  232.         atomic_set_mask(1<<sig, &lowcore->ext_call_fast);
  233.         ccode = signal_processor(cpu, sigp_external_call);
  234.         return ccode;
  235. }
  236. /*
  237.  * Send an external call sigp to every other cpu in the system and
  238.  * return without waiting for its completion.
  239.  */
  240. static void smp_ext_bitcall_others(ec_bit_sig sig)
  241. {
  242.         struct _lowcore *lowcore;
  243.         sigp_ccode ccode;
  244.         int i;
  245.         for (i = 0; i < smp_num_cpus; i++) {
  246.                 if (smp_processor_id() == i)
  247.                         continue;
  248.                 lowcore = &get_cpu_lowcore(i);
  249.                 /*
  250.                  * Set signaling bit in lowcore of target cpu and kick it
  251.                  */
  252.                 atomic_set_mask(1<<sig, &lowcore->ext_call_fast);
  253.                 ccode = signal_processor(i, sigp_external_call);
  254.         }
  255. }
  256. /*
  257.  * this function sends a 'stop' sigp to all other CPUs in the system.
  258.  * it goes straight through.
  259.  */
  260. void smp_send_stop(void)
  261. {
  262.         int i;
  263.         u32 dummy;
  264.         unsigned long low_core_addr;
  265.         /* write magic number to zero page (absolute 0) */
  266.         get_cpu_lowcore(smp_processor_id()).panic_magic = __PANIC_MAGIC;
  267.         /* stop all processors */
  268.         for (i =  0; i < smp_num_cpus; i++) {
  269.                 if (smp_processor_id() != i) {
  270.                         int ccode;
  271.                         do {
  272.                                 ccode = signal_processor_ps(
  273.                                    &dummy,
  274.                                    0,
  275.                                    i,
  276.                                    sigp_stop);
  277.                         } while(ccode == sigp_busy);
  278.                 }
  279.         }
  280.         /* store status of all processors in their lowcores (real 0) */
  281.         for (i =  0; i < smp_num_cpus; i++) {
  282.                 if (smp_processor_id() != i) {
  283.                         int ccode;
  284.                         low_core_addr = (unsigned long)&get_cpu_lowcore(i);
  285.                         do {
  286.                                 ccode = signal_processor_ps(
  287.                                    &dummy,
  288.                                    low_core_addr,
  289.                                    i,
  290.                                    sigp_store_status_at_address);
  291.                         } while(ccode == sigp_busy);
  292.                 }
  293.         }
  294. }
  295. /*
  296.  * this function sends a 'purge tlb' signal to another CPU.
  297.  */
  298. void smp_ptlb_callback(void *info)
  299. {
  300. local_flush_tlb();
  301. }
  302. void smp_ptlb_all(void)
  303. {
  304.         smp_call_function(smp_ptlb_callback, NULL, 0, 1);
  305. local_flush_tlb();
  306. }
  307. /*
  308.  * this function sends a 'reschedule' IPI to another CPU.
  309.  * it goes straight through and wastes no time serializing
  310.  * anything. Worst case is that we lose a reschedule ...
  311.  */
  312. void smp_send_reschedule(int cpu)
  313. {
  314.         smp_ext_bitcall(cpu, ec_schedule);
  315. }
  316. /*
  317.  * parameter area for the set/clear control bit callbacks
  318.  */
  319. typedef struct
  320. {
  321. __u16 start_ctl;
  322. __u16 end_ctl;
  323. __u32 orvals[16];
  324. __u32 andvals[16];
  325. } ec_creg_mask_parms;
  326. /*
  327.  * callback for setting/clearing control bits
  328.  */
  329. void smp_ctl_bit_callback(void *info) {
  330. ec_creg_mask_parms *pp;
  331. u32 cregs[16];
  332. int i;
  333. pp = (ec_creg_mask_parms *) info;
  334. asm volatile ("   bras  1,0fn"
  335.       "   stctl 0,0,0(%0)n"
  336.       "0: ex    %1,0(1)n"
  337.       : : "a" (cregs+pp->start_ctl),
  338.           "a" ((pp->start_ctl<<4) + pp->end_ctl)
  339.       : "memory", "1" );
  340. for (i = pp->start_ctl; i <= pp->end_ctl; i++)
  341. cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
  342. asm volatile ("   bras  1,0fn"
  343.       "   lctl 0,0,0(%0)n"
  344.       "0: ex    %1,0(1)n"
  345.       : : "a" (cregs+pp->start_ctl),
  346.           "a" ((pp->start_ctl<<4) + pp->end_ctl)
  347.       : "memory", "1" );
  348. return;
  349. }
  350. /*
  351.  * Set a bit in a control register of all cpus
  352.  */
  353. void smp_ctl_set_bit(int cr, int bit) {
  354.         ec_creg_mask_parms parms;
  355.         if (atomic_read(&smp_commenced) != 0) {
  356.                 parms.start_ctl = cr;
  357.                 parms.end_ctl = cr;
  358.                 parms.orvals[cr] = 1 << bit;
  359.                 parms.andvals[cr] = 0xFFFFFFFF;
  360.                 smp_call_function(smp_ctl_bit_callback, &parms, 0, 1);
  361.         }
  362.         __ctl_set_bit(cr, bit);
  363. }
  364. /*
  365.  * Clear a bit in a control register of all cpus
  366.  */
  367. void smp_ctl_clear_bit(int cr, int bit) {
  368.         ec_creg_mask_parms parms;
  369.         if (atomic_read(&smp_commenced) != 0) {
  370.                 parms.start_ctl = cr;
  371.                 parms.end_ctl = cr;
  372.                 parms.orvals[cr] = 0x00000000;
  373.                 parms.andvals[cr] = ~(1 << bit);
  374.                 smp_call_function(smp_ctl_bit_callback, &parms, 0, 1);
  375.         }
  376.         __ctl_clear_bit(cr, bit);
  377. }
  378. /*
  379.  * Lets check how many CPUs we have.
  380.  */
  381. void smp_count_cpus(void)
  382. {
  383.         int curr_cpu;
  384.         current->processor = 0;
  385.         smp_num_cpus = 1;
  386. cpu_online_map = 1;
  387.         for (curr_cpu = 0;
  388.              curr_cpu <= 65535 && smp_num_cpus < max_cpus; curr_cpu++) {
  389.                 if ((__u16) curr_cpu == boot_cpu_addr)
  390.                         continue;
  391.                 __cpu_logical_map[smp_num_cpus] = (__u16) curr_cpu;
  392.                 if (signal_processor(smp_num_cpus, sigp_sense) ==
  393.                     sigp_not_operational)
  394.                         continue;
  395.                 smp_num_cpus++;
  396.         }
  397.         printk("Detected %d CPU'sn",(int) smp_num_cpus);
  398.         printk("Boot cpu address %2Xn", boot_cpu_addr);
  399. }
  400. /*
  401.  *      Activate a secondary processor.
  402.  */
  403. extern void init_cpu_timer(void);
  404. extern int pfault_init(void);
  405. extern int pfault_token(void);
  406. int __init start_secondary(void *cpuvoid)
  407. {
  408.         /* Setup the cpu */
  409.         cpu_init();
  410.         /* Print info about this processor */
  411.         print_cpu_info(&safe_get_cpu_lowcore(smp_processor_id()).cpu_data);
  412.         /* Wait for completion of smp startup */
  413.         while (!atomic_read(&smp_commenced))
  414.                 /* nothing */ ;
  415.         /* init per CPU timer */
  416.         init_cpu_timer();
  417. #ifdef CONFIG_PFAULT
  418. /* Enable pfault pseudo page faults on this cpu. */
  419. pfault_init();
  420. #endif
  421.         /* cpu_idle will call schedule for us */
  422.         return cpu_idle(NULL);
  423. }
  424. /*
  425.  * The restart interrupt handler jumps to start_secondary directly
  426.  * without the detour over initialize_secondary. We defined it here
  427.  * so that the linker doesn't complain.
  428.  */
  429. void __init initialize_secondary(void)
  430. {
  431. }
  432. static int __init fork_by_hand(void)
  433. {
  434.        struct pt_regs regs;
  435.        /* don't care about the psw and regs settings since we'll never
  436.           reschedule the forked task. */
  437.        memset(&regs,0,sizeof(struct pt_regs));
  438.        return do_fork(CLONE_VM|CLONE_PID, 0, &regs, 0);
  439. }
  440. static void __init do_boot_cpu(int cpu)
  441. {
  442.         struct task_struct *idle;
  443.         struct _lowcore    *cpu_lowcore;
  444.         /* We can't use kernel_thread since we must _avoid_ to reschedule
  445.            the child. */
  446.         if (fork_by_hand() < 0)
  447.                 panic("failed fork for CPU %d", cpu);
  448.         /*
  449.          * We remove it from the pidhash and the runqueue
  450.          * once we got the process:
  451.          */
  452.         idle = init_task.prev_task;
  453.         if (!idle)
  454.                 panic("No idle process for CPU %d",cpu);
  455.         idle->processor = cpu;
  456. idle->cpus_runnable = 1 << cpu; /* we schedule the first task manually */
  457.         del_from_runqueue(idle);
  458.         unhash_process(idle);
  459.         init_tasks[cpu] = idle;
  460.         cpu_lowcore=&get_cpu_lowcore(cpu);
  461. cpu_lowcore->save_area[15] = idle->thread.ksp;
  462. cpu_lowcore->kernel_stack = (__u32) idle + 8192;
  463.         __asm__ __volatile__("la    1,%0nt"
  464.      "stctl 0,15,0(1)nt"
  465.      "la    1,%1nt"
  466.                              "stam  0,15,0(1)"
  467.                              : "=m" (cpu_lowcore->cregs_save_area[0]),
  468.                                "=m" (cpu_lowcore->access_regs_save_area[0])
  469.                              : : "1", "memory");
  470.         eieio();
  471.         signal_processor(cpu,sigp_restart);
  472. /* Mark this cpu as online */
  473. set_bit(cpu, &cpu_online_map);
  474. }
  475. /*
  476.  *      Architecture specific routine called by the kernel just before init is
  477.  *      fired off. This allows the BP to have everything in order [we hope].
  478.  *      At the end of this all the APs will hit the system scheduling and off
  479.  *      we go. Each AP will load the system gdt's and jump through the kernel
  480.  *      init into idle(). At this point the scheduler will one day take over
  481.  *      and give them jobs to do. smp_callin is a standard routine
  482.  *      we use to track CPUs as they power up.
  483.  */
  484. void __init smp_commence(void)
  485. {
  486.         /*
  487.          *      Lets the callins below out of their loop.
  488.          */
  489.         atomic_set(&smp_commenced,1);
  490. }
  491. /*
  492.  * Cycle through the processors sending sigp_restart to boot each.
  493.  */
  494. void __init smp_boot_cpus(void)
  495. {
  496. unsigned long async_stack;
  497.         sigp_ccode   ccode;
  498.         int i;
  499.         /* request the 0x1202 external interrupt */
  500.         if (register_external_interrupt(0x1202, do_ext_call_interrupt) != 0)
  501.                 panic("Couldn't request external interrupt 0x1202");
  502.         smp_count_cpus();
  503.         memset(lowcore_ptr,0,sizeof(lowcore_ptr));  
  504.         
  505.         /*
  506.          *      Initialize the logical to physical CPU number mapping
  507.          */
  508.         print_cpu_info(&safe_get_cpu_lowcore(0).cpu_data);
  509.         for(i = 0; i < smp_num_cpus; i++)
  510.         {
  511. lowcore_ptr[i] = (struct _lowcore *)
  512. __get_free_page(GFP_KERNEL|GFP_DMA);
  513.                 if (lowcore_ptr[i] == NULL)
  514.                         panic("smp_boot_cpus failed to "
  515.       "allocate prefix memoryn");
  516. async_stack = __get_free_pages(GFP_KERNEL,1);
  517. if (async_stack == 0)
  518. panic("smp_boot_cpus failed to allocate "
  519.       "asyncronous interrupt stackn");
  520.                 memcpy(lowcore_ptr[i], &S390_lowcore, sizeof(struct _lowcore));
  521. lowcore_ptr[i]->async_stack = async_stack + (2 * PAGE_SIZE);
  522.                 /*
  523.                  * Most of the parameters are set up when the cpu is
  524.                  * started up.
  525.                  */
  526. if (smp_processor_id() == i)
  527. set_prefix((u32) lowcore_ptr[i]);
  528. else {
  529. ccode = signal_processor_p((u32)(lowcore_ptr[i]),
  530.    i, sigp_set_prefix);
  531. if (ccode)
  532. /* if this gets troublesome I'll have to do
  533.  * something about it. */
  534. printk("ccode %d for cpu %d  returned when "
  535.        "setting prefix in smp_boot_cpus not good.n",
  536.        (int) ccode, (int) i);
  537. else
  538. do_boot_cpu(i);
  539. }
  540. }
  541. }
  542. /*
  543.  * the frequency of the profiling timer can be changed
  544.  * by writing a multiplier value into /proc/profile.
  545.  *
  546.  * usually you want to run this on all CPUs ;)
  547.  */
  548. int setup_profiling_timer(unsigned int multiplier)
  549. {
  550.         return 0;
  551. }
  552. EXPORT_SYMBOL(lowcore_ptr);
  553. EXPORT_SYMBOL(kernel_flag);
  554. EXPORT_SYMBOL(smp_ctl_set_bit);
  555. EXPORT_SYMBOL(smp_ctl_clear_bit);
  556. EXPORT_SYMBOL(smp_num_cpus);