smp.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

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