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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* smp.h: Sparc specific SMP stuff.
  2.  *
  3.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  4.  */
  5. #ifndef _SPARC_SMP_H
  6. #define _SPARC_SMP_H
  7. #include <linux/config.h>
  8. #include <linux/threads.h>
  9. #include <asm/head.h>
  10. #include <asm/btfixup.h>
  11. #ifndef __ASSEMBLY__
  12. /* PROM provided per-processor information we need
  13.  * to start them all up.
  14.  */
  15. struct prom_cpuinfo {
  16. int prom_node;
  17. int mid;
  18. };
  19. extern int linux_num_cpus; /* number of CPUs probed  */
  20. #endif /* !(__ASSEMBLY__) */
  21. #ifdef CONFIG_SMP
  22. #ifndef __ASSEMBLY__
  23. #include <asm/ptrace.h>
  24. #include <asm/asi.h>
  25. extern struct prom_cpuinfo linux_cpus[NR_CPUS];
  26. /* Per processor Sparc parameters we need. */
  27. struct cpuinfo_sparc {
  28. unsigned long udelay_val; /* that's it */
  29. unsigned short next;
  30. unsigned short mid;
  31. };
  32. extern struct cpuinfo_sparc cpu_data[NR_CPUS];
  33. extern unsigned long cpu_offset[NR_CPUS];
  34. /*
  35.  * Private routines/data
  36.  */
  37.  
  38. extern int smp_found_cpus;
  39. extern unsigned char boot_cpu_id;
  40. extern unsigned long cpu_present_map;
  41. #define cpu_online_map cpu_present_map
  42. typedef void (*smpfunc_t)(unsigned long, unsigned long, unsigned long,
  43.        unsigned long, unsigned long);
  44. /*
  45.  * General functions that each host system must provide.
  46.  */
  47.  
  48. void sun4m_init_smp(void);
  49. void sun4d_init_smp(void);
  50. void smp_callin(void);
  51. void smp_boot_cpus(void);
  52. void smp_store_cpu_info(int);
  53. struct seq_file;
  54. void smp_bogo_info(struct seq_file *);
  55. void smp_info(struct seq_file *);
  56. BTFIXUPDEF_CALL(void, smp_cross_call, smpfunc_t, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long)
  57. BTFIXUPDEF_CALL(void, smp_message_pass, int, int, unsigned long, int)
  58. BTFIXUPDEF_CALL(int, __smp_processor_id, void)
  59. BTFIXUPDEF_BLACKBOX(smp_processor_id)
  60. BTFIXUPDEF_BLACKBOX(load_current)
  61. #define smp_cross_call(func,arg1,arg2,arg3,arg4,arg5) BTFIXUP_CALL(smp_cross_call)(func,arg1,arg2,arg3,arg4,arg5)
  62. #define smp_message_pass(target,msg,data,wait) BTFIXUP_CALL(smp_message_pass)(target,msg,data,wait)
  63. extern __inline__ void xc0(smpfunc_t func) { smp_cross_call(func, 0, 0, 0, 0, 0); }
  64. extern __inline__ void xc1(smpfunc_t func, unsigned long arg1)
  65. { smp_cross_call(func, arg1, 0, 0, 0, 0); }
  66. extern __inline__ void xc2(smpfunc_t func, unsigned long arg1, unsigned long arg2)
  67. { smp_cross_call(func, arg1, arg2, 0, 0, 0); }
  68. extern __inline__ void xc3(smpfunc_t func, unsigned long arg1, unsigned long arg2,
  69.    unsigned long arg3)
  70. { smp_cross_call(func, arg1, arg2, arg3, 0, 0); }
  71. extern __inline__ void xc4(smpfunc_t func, unsigned long arg1, unsigned long arg2,
  72.    unsigned long arg3, unsigned long arg4)
  73. { smp_cross_call(func, arg1, arg2, arg3, arg4, 0); }
  74. extern __inline__ void xc5(smpfunc_t func, unsigned long arg1, unsigned long arg2,
  75.    unsigned long arg3, unsigned long arg4, unsigned long arg5)
  76. { smp_cross_call(func, arg1, arg2, arg3, arg4, arg5); }
  77. extern __inline__ int smp_call_function(void (*func)(void *info), void *info, int nonatomic, int wait)
  78. {
  79. xc1((smpfunc_t)func, (unsigned long)info);
  80. return 0;
  81. }
  82. extern __volatile__ int __cpu_number_map[NR_CPUS];
  83. extern __volatile__ int __cpu_logical_map[NR_CPUS];
  84. extern unsigned long smp_proc_in_lock[NR_CPUS];
  85. extern __inline__ int cpu_logical_map(int cpu)
  86. {
  87. return __cpu_logical_map[cpu];
  88. }
  89. extern __inline__ int cpu_number_map(int cpu)
  90. {
  91. return __cpu_number_map[cpu];
  92. }
  93. extern __inline__ int hard_smp4m_processor_id(void)
  94. {
  95. int cpuid;
  96. __asm__ __volatile__("rd %%tbr, %0nt"
  97.      "srl %0, 12, %0nt"
  98.      "and %0, 3, %0nt" :
  99.      "=&r" (cpuid));
  100. return cpuid;
  101. }
  102. extern __inline__ int hard_smp4d_processor_id(void)
  103. {
  104. int cpuid;
  105. __asm__ __volatile__("lda [%%g0] %1, %0nt" :
  106.      "=&r" (cpuid) : "i" (ASI_M_VIKING_TMP1));
  107. return cpuid;
  108. }
  109. #ifndef MODULE
  110. extern __inline__ int hard_smp_processor_id(void)
  111. {
  112. int cpuid;
  113. /* Black box - sun4m
  114. __asm__ __volatile__("rd %%tbr, %0nt"
  115.      "srl %0, 12, %0nt"
  116.      "and %0, 3, %0nt" :
  117.      "=&r" (cpuid));
  118.              - sun4d
  119.     __asm__ __volatile__("lda [%g0] ASI_M_VIKING_TMP1, %0nt"
  120.          "nop; nop" :
  121.          "=&r" (cpuid));
  122.    See btfixup.h and btfixupprep.c to understand how a blackbox works.
  123.  */
  124. __asm__ __volatile__("sethi %%hi(___b_smp_processor_id), %0nt"
  125.      "sethi %%hi(boot_cpu_id), %0nt"
  126.      "ldub [%0 + %%lo(boot_cpu_id)], %0nt" :
  127.      "=&r" (cpuid));
  128. return cpuid;
  129. }
  130. #else
  131. extern __inline__ int hard_smp_processor_id(void)
  132. {
  133. int cpuid;
  134. __asm__ __volatile__("mov %%o7, %%g1nt"
  135.      "call ___f___smp_processor_idnt"
  136.      " nopnt"
  137.      "mov %%g2, %0nt" : "=r"(cpuid) : : "g1", "g2");
  138. return cpuid;
  139. }
  140. #endif
  141. #define smp_processor_id() hard_smp_processor_id()
  142. /* XXX We really need to implement this now.  -DaveM */
  143. extern __inline__ void smp_send_reschedule(int cpu) { }
  144. extern __inline__ void smp_send_stop(void) { }
  145. #endif /* !(__ASSEMBLY__) */
  146. /* Sparc specific messages. */
  147. #define MSG_CROSS_CALL         0x0005       /* run func on cpus */
  148. /* Empirical PROM processor mailbox constants.  If the per-cpu mailbox
  149.  * contains something other than one of these then the ipi is from
  150.  * Linux's active_kernel_processor.  This facility exists so that
  151.  * the boot monitor can capture all the other cpus when one catches
  152.  * a watchdog reset or the user enters the monitor using L1-A keys.
  153.  */
  154. #define MBOX_STOPCPU          0xFB
  155. #define MBOX_IDLECPU          0xFC
  156. #define MBOX_IDLECPU2         0xFD
  157. #define MBOX_STOPCPU2         0xFE
  158. #define PROC_CHANGE_PENALTY     15
  159. #endif /* !(CONFIG_SMP) */
  160. #define NO_PROC_ID            0xFF
  161. #endif /* !(_SPARC_SMP_H) */