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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_SMP_H
  2. #define __ASM_SMP_H
  3. /*
  4.  * We need the APIC definitions automatically as part of 'smp.h'
  5.  */
  6. #ifndef __ASSEMBLY__
  7. #include <linux/config.h>
  8. #include <linux/threads.h>
  9. #include <linux/ptrace.h>
  10. #endif
  11. #ifdef CONFIG_X86_LOCAL_APIC
  12. #ifndef __ASSEMBLY__
  13. #include <asm/fixmap.h>
  14. #include <asm/bitops.h>
  15. #include <asm/mpspec.h>
  16. #ifdef CONFIG_X86_IO_APIC
  17. #include <asm/io_apic.h>
  18. #endif
  19. #include <asm/apic.h>
  20. #endif
  21. #endif
  22. #ifdef CONFIG_SMP
  23. #ifndef __ASSEMBLY__
  24. /*
  25.  * Private routines/data
  26.  */
  27.  
  28. extern void smp_alloc_memory(void);
  29. extern unsigned long phys_cpu_present_map;
  30. extern unsigned long cpu_online_map;
  31. extern volatile unsigned long smp_invalidate_needed;
  32. extern int pic_mode;
  33. extern int smp_num_siblings;
  34. extern int cpu_sibling_map[];
  35. extern void smp_flush_tlb(void);
  36. extern void smp_message_irq(int cpl, void *dev_id, struct pt_regs *regs);
  37. extern void smp_send_reschedule(int cpu);
  38. extern void smp_invalidate_rcv(void); /* Process an NMI */
  39. extern void (*mtrr_hook) (void);
  40. extern void zap_low_mappings (void);
  41. /*
  42.  * On x86 all CPUs are mapped 1:1 to the APIC space.
  43.  * This simplifies scheduling and IPI sending and
  44.  * compresses data structures.
  45.  */
  46. static inline int cpu_logical_map(int cpu)
  47. {
  48. return cpu;
  49. }
  50. static inline int cpu_number_map(int cpu)
  51. {
  52. return cpu;
  53. }
  54. /*
  55.  * Some lowlevel functions might want to know about
  56.  * the real APIC ID <-> CPU # mapping.
  57.  */
  58. #define MAX_APICID 256
  59. extern volatile int cpu_to_physical_apicid[NR_CPUS];
  60. extern volatile int physical_apicid_to_cpu[MAX_APICID];
  61. extern volatile int cpu_to_logical_apicid[NR_CPUS];
  62. extern volatile int logical_apicid_to_cpu[MAX_APICID];
  63. /*
  64.  * General functions that each host system must provide.
  65.  */
  66.  
  67. extern void smp_boot_cpus(void);
  68. extern void smp_store_cpu_info(int id); /* Store per CPU info (like the initial udelay numbers */
  69. /*
  70.  * This function is needed by all SMP systems. It must _always_ be valid
  71.  * from the initial startup. We map APIC_BASE very early in page_setup(),
  72.  * so this is correct in the x86 case.
  73.  */
  74. #define smp_processor_id() (current->processor)
  75. static __inline int hard_smp_processor_id(void)
  76. {
  77. /* we don't want to mark this access volatile - bad code generation */
  78. return GET_APIC_ID(*(unsigned long *)(APIC_BASE+APIC_ID));
  79. }
  80. static __inline int logical_smp_processor_id(void)
  81. {
  82. /* we don't want to mark this access volatile - bad code generation */
  83. return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
  84. }
  85. #endif /* !__ASSEMBLY__ */
  86. #define NO_PROC_ID 0xFF /* No processor magic marker */
  87. /*
  88.  * This magic constant controls our willingness to transfer
  89.  * a process across CPUs. Such a transfer incurs misses on the L1
  90.  * cache, and on a P6 or P5 with multiple L2 caches L2 hits. My
  91.  * gut feeling is this will vary by board in value. For a board
  92.  * with separate L2 cache it probably depends also on the RSS, and
  93.  * for a board with shared L2 cache it ought to decay fast as other
  94.  * processes are run.
  95.  */
  96.  
  97. #define PROC_CHANGE_PENALTY 15 /* Schedule penalty */
  98. #endif
  99. #endif