smp.h 3.5 KB

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