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. #include <asm/pda.h>
  25. /*
  26.  * Private routines/data
  27.  */
  28.  
  29. extern void smp_alloc_memory(void);
  30. extern unsigned long phys_cpu_present_map;
  31. extern unsigned long cpu_online_map;
  32. extern volatile unsigned long smp_invalidate_needed;
  33. extern int pic_mode;
  34. extern void smp_flush_tlb(void);
  35. extern void smp_message_irq(int cpl, void *dev_id, struct pt_regs *regs);
  36. extern void smp_send_reschedule(int cpu);
  37. extern void smp_invalidate_rcv(void); /* Process an NMI */
  38. extern void (*mtrr_hook) (void);
  39. extern void zap_low_mappings (void);
  40. /*
  41.  * On x86 all CPUs are mapped 1:1 to the APIC space.
  42.  * This simplifies scheduling and IPI sending and
  43.  * compresses data structures.
  44.  */
  45. extern inline int cpu_logical_map(int cpu)
  46. {
  47. return cpu;
  48. }
  49. extern inline int cpu_number_map(int cpu)
  50. {
  51. return cpu;
  52. }
  53. /*
  54.  * Some lowlevel functions might want to know about
  55.  * the real APIC ID <-> CPU # mapping.
  56.  */
  57. extern volatile int x86_apicid_to_cpu[NR_CPUS];
  58. extern volatile int x86_cpu_to_apicid[NR_CPUS];
  59. /*
  60.  * General functions that each host system must provide.
  61.  */
  62.  
  63. extern void smp_boot_cpus(void);
  64. extern void smp_store_cpu_info(int id); /* Store per CPU info (like the initial udelay numbers */
  65. /*
  66.  * This function is needed by all SMP systems. It must _always_ be valid
  67.  * from the initial startup. We map APIC_BASE very early in page_setup(),
  68.  * so this is correct in the x86 case.
  69.  */
  70. #define smp_processor_id() read_pda(cpunumber)
  71. #define stack_smp_processor_id() (stack_current()->processor)
  72. extern __inline int hard_smp_processor_id(void)
  73. {
  74. /* we don't want to mark this access volatile - bad code generation */
  75. return GET_APIC_ID(*(unsigned long *)(APIC_BASE+APIC_ID));
  76. }
  77. #endif /* !ASSEMBLY */
  78. #define NO_PROC_ID 0xFF /* No processor magic marker */
  79. /*
  80.  * This magic constant controls our willingness to transfer
  81.  * a process across CPUs. Such a transfer incurs misses on the L1
  82.  * cache, and on a P6 or P5 with multiple L2 caches L2 hits. My
  83.  * gut feeling is this will vary by board in value. For a board
  84.  * with separate L2 cache it probably depends also on the RSS, and
  85.  * for a board with shared L2 cache it ought to decay fast as other
  86.  * processes are run.
  87.  */
  88.  
  89. #define PROC_CHANGE_PENALTY 15 /* Schedule penalty */
  90. #endif
  91. #define INT_DELIVERY_MODE 1     /* logical delivery */
  92. #define TARGET_CPUS 1
  93. #ifndef CONFIG_SMP
  94. #define stack_smp_processor_id() 0
  95. #endif
  96. #endif