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

Linux/Unix编程

开发平台:

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