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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_SMP_H
  2. #define __ASM_SMP_H
  3. #include <linux/config.h>
  4. #include <asm/pal.h>
  5. /* HACK: Cabrio WHAMI return value is bogus if more than 8 bits used.. :-( */
  6. static __inline__ unsigned char
  7. __hard_smp_processor_id(void)
  8. {
  9. register unsigned char __r0 __asm__("$0");
  10. __asm__ __volatile__(
  11. "call_pal %1 #whami"
  12. : "=r"(__r0)
  13. :"i" (PAL_whami)
  14. : "$1", "$22", "$23", "$24", "$25");
  15. return __r0;
  16. }
  17. #ifdef CONFIG_SMP
  18. #include <linux/threads.h>
  19. #include <asm/irq.h>
  20. struct cpuinfo_alpha {
  21. unsigned long loops_per_jiffy;
  22. unsigned long last_asn;
  23. int need_new_asn;
  24. int asn_lock;
  25. unsigned long *pgd_cache;
  26. unsigned long *pmd_cache;
  27. unsigned long *pte_cache;
  28. unsigned long pgtable_cache_sz;
  29. unsigned long ipi_count;
  30. unsigned long irq_attempt[NR_IRQS];
  31. unsigned long prof_multiplier;
  32. unsigned long prof_counter;
  33. unsigned char mcheck_expected;
  34. unsigned char mcheck_taken;
  35. unsigned char mcheck_extra;
  36. } __attribute__((aligned(64)));
  37. extern struct cpuinfo_alpha cpu_data[NR_CPUS];
  38. #define PROC_CHANGE_PENALTY     20
  39. /* Map from cpu id to sequential logical cpu number.  This will only
  40.    not be idempotent when cpus failed to come on-line.  */
  41. extern int __cpu_number_map[NR_CPUS];
  42. #define cpu_number_map(cpu)  __cpu_number_map[cpu]
  43. /* The reverse map from sequential logical cpu number to cpu id.  */
  44. extern int __cpu_logical_map[NR_CPUS];
  45. #define cpu_logical_map(cpu)  __cpu_logical_map[cpu]
  46. #define hard_smp_processor_id() __hard_smp_processor_id()
  47. #define smp_processor_id() (current->processor)
  48. extern unsigned long cpu_present_mask;
  49. #define cpu_online_map cpu_present_mask
  50. extern int smp_call_function_on_cpu(void (*func) (void *info), void *info,int retry, int wait, unsigned long cpu);
  51. #else /* CONFIG_SMP */
  52. #define smp_call_function_on_cpu(func,info,retry,wait,cpu)    ({ 0; })
  53. #endif /* CONFIG_SMP */
  54. #define NO_PROC_ID (-1)
  55. #endif