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