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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* smp.c: Sparc SMP support.
  2.  *
  3.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  4.  * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  5.  */
  6. #include <asm/head.h>
  7. #include <linux/kernel.h>
  8. #include <linux/sched.h>
  9. #include <linux/threads.h>
  10. #include <linux/smp.h>
  11. #include <linux/smp_lock.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/kernel_stat.h>
  14. #include <linux/init.h>
  15. #include <linux/spinlock.h>
  16. #include <linux/mm.h>
  17. #include <linux/fs.h>
  18. #include <linux/seq_file.h>
  19. #include <linux/cache.h>
  20. #include <asm/ptrace.h>
  21. #include <asm/atomic.h>
  22. #include <asm/delay.h>
  23. #include <asm/irq.h>
  24. #include <asm/page.h>
  25. #include <asm/pgalloc.h>
  26. #include <asm/pgtable.h>
  27. #include <asm/oplib.h>
  28. #include <asm/hardirq.h>
  29. #include <asm/softirq.h>
  30. #define __KERNEL_SYSCALLS__
  31. #include <linux/unistd.h>
  32. #define IRQ_RESCHEDULE 13
  33. #define IRQ_STOP_CPU 14
  34. #define IRQ_CROSS_CALL 15
  35. volatile int smp_processors_ready = 0;
  36. unsigned long cpu_present_map = 0;
  37. int smp_num_cpus = 1;
  38. int smp_threads_ready=0;
  39. unsigned char mid_xlate[NR_CPUS] = { 0, 0, 0, 0, };
  40. volatile unsigned long cpu_callin_map[NR_CPUS] __initdata = {0,};
  41. #ifdef NOTUSED
  42. volatile unsigned long smp_spinning[NR_CPUS] = { 0, };
  43. #endif
  44. unsigned long smp_proc_in_lock[NR_CPUS] = { 0, };
  45. struct cpuinfo_sparc cpu_data[NR_CPUS];
  46. unsigned long cpu_offset[NR_CPUS];
  47. unsigned char boot_cpu_id = 0;
  48. unsigned char boot_cpu_id4 = 0; /* boot_cpu_id << 2 */
  49. int smp_activated = 0;
  50. volatile int __cpu_number_map[NR_CPUS];
  51. volatile int __cpu_logical_map[NR_CPUS];
  52. cycles_t cacheflush_time = 0; /* XXX */
  53. /* The only guaranteed locking primitive available on all Sparc
  54.  * processors is 'ldstub [%reg + immediate], %dest_reg' which atomically
  55.  * places the current byte at the effective address into dest_reg and
  56.  * places 0xff there afterwards.  Pretty lame locking primitive
  57.  * compared to the Alpha and the Intel no?  Most Sparcs have 'swap'
  58.  * instruction which is much better...
  59.  */
  60. /* Kernel spinlock */
  61. spinlock_t kernel_flag __cacheline_aligned_in_smp = SPIN_LOCK_UNLOCKED;
  62. /* Used to make bitops atomic */
  63. unsigned char bitops_spinlock = 0;
  64. volatile unsigned long ipi_count;
  65. volatile int smp_process_available=0;
  66. volatile int smp_commenced = 0;
  67. /* Not supported on Sparc yet. */
  68. void __init smp_setup(char *str, int *ints)
  69. {
  70. }
  71. /*
  72.  * The bootstrap kernel entry code has set these up. Save them for
  73.  * a given CPU
  74.  */
  75. void __init smp_store_cpu_info(int id)
  76. {
  77. cpu_data[id].udelay_val = loops_per_jiffy; /* this is it on sparc. */
  78. }
  79. void __init smp_commence(void)
  80. {
  81. /*
  82.  * Lets the callin's below out of their loop.
  83.  */
  84. local_flush_cache_all();
  85. local_flush_tlb_all();
  86. smp_commenced = 1;
  87. local_flush_cache_all();
  88. local_flush_tlb_all();
  89. }
  90. /* Only broken Intel needs this, thus it should not even be referenced
  91.  * globally...
  92.  */
  93. void __init initialize_secondary(void)
  94. {
  95. }
  96. extern int cpu_idle(void);
  97. /* Activate a secondary processor. */
  98. int start_secondary(void *unused)
  99. {
  100. prom_printf("Start secondary called. Should not happenn");
  101. return cpu_idle();
  102. }
  103. void cpu_panic(void)
  104. {
  105. printk("CPU[%d]: Returns from cpu_idle!n", smp_processor_id());
  106. panic("SMP bolixedn");
  107. }
  108. /*
  109.  * Cycle through the processors asking the PROM to start each one.
  110.  */
  111.  
  112. extern struct prom_cpuinfo linux_cpus[NR_CPUS];
  113. struct linux_prom_registers smp_penguin_ctable __initdata = { 0 };
  114. void __init smp_boot_cpus(void)
  115. {
  116. extern void smp4m_boot_cpus(void);
  117. extern void smp4d_boot_cpus(void);
  118. if (sparc_cpu_model == sun4m)
  119. smp4m_boot_cpus();
  120. else
  121. smp4d_boot_cpus();
  122. }
  123. void smp_flush_cache_all(void)
  124. {
  125. xc0((smpfunc_t) BTFIXUP_CALL(local_flush_cache_all));
  126. local_flush_cache_all();
  127. }
  128. void smp_flush_tlb_all(void)
  129. {
  130. xc0((smpfunc_t) BTFIXUP_CALL(local_flush_tlb_all));
  131. local_flush_tlb_all();
  132. }
  133. void smp_flush_cache_mm(struct mm_struct *mm)
  134. {
  135. if(mm->context != NO_CONTEXT) {
  136. if(mm->cpu_vm_mask != (1 << smp_processor_id()))
  137. xc1((smpfunc_t) BTFIXUP_CALL(local_flush_cache_mm), (unsigned long) mm);
  138. local_flush_cache_mm(mm);
  139. }
  140. }
  141. void smp_flush_tlb_mm(struct mm_struct *mm)
  142. {
  143. if(mm->context != NO_CONTEXT) {
  144. if(mm->cpu_vm_mask != (1 << smp_processor_id())) {
  145. xc1((smpfunc_t) BTFIXUP_CALL(local_flush_tlb_mm), (unsigned long) mm);
  146. if(atomic_read(&mm->mm_users) == 1 && current->active_mm == mm)
  147. mm->cpu_vm_mask = (1 << smp_processor_id());
  148. }
  149. local_flush_tlb_mm(mm);
  150. }
  151. }
  152. void smp_flush_cache_range(struct mm_struct *mm, unsigned long start,
  153.    unsigned long end)
  154. {
  155. if(mm->context != NO_CONTEXT) {
  156. if(mm->cpu_vm_mask != (1 << smp_processor_id()))
  157. xc3((smpfunc_t) BTFIXUP_CALL(local_flush_cache_range), (unsigned long) mm, start, end);
  158. local_flush_cache_range(mm, start, end);
  159. }
  160. }
  161. void smp_flush_tlb_range(struct mm_struct *mm, unsigned long start,
  162.  unsigned long end)
  163. {
  164. if(mm->context != NO_CONTEXT) {
  165. if(mm->cpu_vm_mask != (1 << smp_processor_id()))
  166. xc3((smpfunc_t) BTFIXUP_CALL(local_flush_tlb_range), (unsigned long) mm, start, end);
  167. local_flush_tlb_range(mm, start, end);
  168. }
  169. }
  170. void smp_flush_cache_page(struct vm_area_struct *vma, unsigned long page)
  171. {
  172. struct mm_struct *mm = vma->vm_mm;
  173. if(mm->context != NO_CONTEXT) {
  174. if(mm->cpu_vm_mask != (1 << smp_processor_id()))
  175. xc2((smpfunc_t) BTFIXUP_CALL(local_flush_cache_page), (unsigned long) vma, page);
  176. local_flush_cache_page(vma, page);
  177. }
  178. }
  179. void smp_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
  180. {
  181. struct mm_struct *mm = vma->vm_mm;
  182. if(mm->context != NO_CONTEXT) {
  183. if(mm->cpu_vm_mask != (1 << smp_processor_id()))
  184. xc2((smpfunc_t) BTFIXUP_CALL(local_flush_tlb_page), (unsigned long) vma, page);
  185. local_flush_tlb_page(vma, page);
  186. }
  187. }
  188. void smp_flush_page_to_ram(unsigned long page)
  189. {
  190. /* Current theory is that those who call this are the one's
  191.  * who have just dirtied their cache with the pages contents
  192.  * in kernel space, therefore we only run this on local cpu.
  193.  *
  194.  * XXX This experiment failed, research further... -DaveM
  195.  */
  196. #if 1
  197. xc1((smpfunc_t) BTFIXUP_CALL(local_flush_page_to_ram), page);
  198. #endif
  199. local_flush_page_to_ram(page);
  200. }
  201. void smp_flush_sig_insns(struct mm_struct *mm, unsigned long insn_addr)
  202. {
  203. if(mm->cpu_vm_mask != (1 << smp_processor_id()))
  204. xc2((smpfunc_t) BTFIXUP_CALL(local_flush_sig_insns), (unsigned long) mm, insn_addr);
  205. local_flush_sig_insns(mm, insn_addr);
  206. }
  207. /* Reschedule call back. */
  208. void smp_reschedule_irq(void)
  209. {
  210. current->need_resched = 1;
  211. }
  212. /* Stopping processors. */
  213. void smp_stop_cpu_irq(void)
  214. {
  215. __sti();
  216. while(1)
  217. barrier();
  218. }
  219. unsigned int prof_multiplier[NR_CPUS];
  220. unsigned int prof_counter[NR_CPUS];
  221. extern unsigned int lvl14_resolution;
  222. int setup_profiling_timer(unsigned int multiplier)
  223. {
  224. int i;
  225. unsigned long flags;
  226. /* Prevent level14 ticker IRQ flooding. */
  227. if((!multiplier) || (lvl14_resolution / multiplier) < 500)
  228. return -EINVAL;
  229. save_and_cli(flags);
  230. for(i = 0; i < NR_CPUS; i++) {
  231. if(cpu_present_map & (1 << i)) {
  232. load_profile_irq(mid_xlate[i], lvl14_resolution / multiplier);
  233. prof_multiplier[i] = multiplier;
  234. }
  235. }
  236. restore_flags(flags);
  237. return 0;
  238. }
  239. void smp_bogo_info(struct seq_file *m)
  240. {
  241. int i;
  242. for (i = 0; i < NR_CPUS; i++) {
  243. if (cpu_present_map & (1 << i))
  244. seq_printf(m,
  245.    "Cpu%dBogot: %lu.%02lun", 
  246.    i,
  247.    cpu_data[i].udelay_val/(500000/HZ),
  248.    (cpu_data[i].udelay_val/(5000/HZ))%100);
  249. }
  250. }
  251. void smp_info(struct seq_file *m)
  252. {
  253. int i;
  254. for (i = 0; i < NR_CPUS; i++) {
  255. if (cpu_present_map & (1 << i))
  256. seq_printf(m, "CPU%dtt: onlinen", i);
  257. }
  258. }