smp.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #ifndef __LINUX_SMP_H
  2. #define __LINUX_SMP_H
  3. /*
  4. * Generic SMP support
  5. * Alan Cox. <alan@redhat.com>
  6. */
  7. #include <linux/errno.h>
  8. #include <asm/system.h>
  9. extern void cpu_idle(void);
  10. #ifdef CONFIG_SMP
  11. #include <linux/preempt.h>
  12. #include <linux/kernel.h>
  13. #include <linux/compiler.h>
  14. #include <linux/thread_info.h>
  15. #include <asm/smp.h>
  16. /*
  17. * main cross-CPU interfaces, handles INIT, TLB flush, STOP, etc.
  18. * (defined in asm header):
  19. */
  20. /*
  21. * stops all CPUs but the current one:
  22. */
  23. extern void smp_send_stop(void);
  24. /*
  25. * sends a 'reschedule' event to another CPU:
  26. */
  27. extern void smp_send_reschedule(int cpu);
  28. /*
  29. * Prepare machine for booting other CPUs.
  30. */
  31. extern void smp_prepare_cpus(unsigned int max_cpus);
  32. /*
  33. * Bring a CPU up
  34. */
  35. extern int __cpu_up(unsigned int cpunum);
  36. /*
  37. * Final polishing of CPUs
  38. */
  39. extern void smp_cpus_done(unsigned int max_cpus);
  40. /*
  41. * Call a function on all other processors
  42. */
  43. int smp_call_function(void(*func)(void *info), void *info, int retry, int wait);
  44. int smp_call_function_single(int cpuid, void (*func) (void *info), void *info,
  45. int retry, int wait);
  46. /*
  47. * Call a function on all processors
  48. */
  49. int on_each_cpu(void (*func) (void *info), void *info, int retry, int wait);
  50. #define MSG_ALL_BUT_SELF 0x8000 /* Assume <32768 CPU's */
  51. #define MSG_ALL 0x8001
  52. #define MSG_INVALIDATE_TLB 0x0001 /* Remote processor TLB invalidate */
  53. #define MSG_STOP_CPU 0x0002 /* Sent to shut down slave CPU's
  54. * when rebooting
  55. */
  56. #define MSG_RESCHEDULE 0x0003 /* Reschedule request from master CPU*/
  57. #define MSG_CALL_FUNCTION 0x0004 /* Call function on all other CPUs */
  58. /*
  59. * Mark the boot cpu "online" so that it can call console drivers in
  60. * printk() and can access its per-cpu storage.
  61. */
  62. void smp_prepare_boot_cpu(void);
  63. #else /* !SMP */
  64. /*
  65. * These macros fold the SMP functionality into a single CPU system
  66. */
  67. #define raw_smp_processor_id() 0
  68. static inline int up_smp_call_function(void)
  69. {
  70. return 0;
  71. }
  72. #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
  73. #define on_each_cpu(func,info,retry,wait) \
  74. ({ \
  75. local_irq_disable(); \
  76. func(info); \
  77. local_irq_enable(); \
  78. 0; \
  79. })
  80. static inline void smp_send_reschedule(int cpu) { }
  81. #define num_booting_cpus() 1
  82. #define smp_prepare_boot_cpu() do {} while (0)
  83. static inline int smp_call_function_single(int cpuid, void (*func) (void *info),
  84. void *info, int retry, int wait)
  85. {
  86. WARN_ON(cpuid != 0);
  87. local_irq_disable();
  88. func(info);
  89. local_irq_enable();
  90. return 0;
  91. }
  92. #endif /* !SMP */
  93. /*
  94. * smp_processor_id(): get the current CPU ID.
  95. *
  96. * if DEBUG_PREEMPT is enabled the we check whether it is
  97. * used in a preemption-safe way. (smp_processor_id() is safe
  98. * if it's used in a preemption-off critical section, or in
  99. * a thread that is bound to the current CPU.)
  100. *
  101. * NOTE: raw_smp_processor_id() is for internal use only
  102. * (smp_processor_id() is the preferred variant), but in rare
  103. * instances it might also be used to turn off false positives
  104. * (i.e. smp_processor_id() use that the debugging code reports but
  105. * which use for some reason is legal). Don't use this to hack around
  106. * the warning message, as your code might not work under PREEMPT.
  107. */
  108. #ifdef CONFIG_DEBUG_PREEMPT
  109. extern unsigned int debug_smp_processor_id(void);
  110. # define smp_processor_id() debug_smp_processor_id()
  111. #else
  112. # define smp_processor_id() raw_smp_processor_id()
  113. #endif
  114. #define get_cpu() ({ preempt_disable(); smp_processor_id(); })
  115. #define put_cpu() preempt_enable()
  116. #define put_cpu_no_resched() preempt_enable_no_resched()
  117. void smp_setup_processor_id(void);
  118. #endif /* __LINUX_SMP_H */