smp.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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/config.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. #include <asm/bug.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. extern int smp_call_function (void (*func) (void *info), void *info,
  44. int retry, int wait);
  45. /*
  46. * Call a function on all processors
  47. */
  48. static inline int on_each_cpu(void (*func) (void *info), void *info,
  49. int retry, int wait)
  50. {
  51. int ret = 0;
  52. preempt_disable();
  53. ret = smp_call_function(func, info, retry, wait);
  54. func(info);
  55. preempt_enable();
  56. return ret;
  57. }
  58. #define MSG_ALL_BUT_SELF 0x8000 /* Assume <32768 CPU's */
  59. #define MSG_ALL 0x8001
  60. #define MSG_INVALIDATE_TLB 0x0001 /* Remote processor TLB invalidate */
  61. #define MSG_STOP_CPU 0x0002 /* Sent to shut down slave CPU's
  62. * when rebooting
  63. */
  64. #define MSG_RESCHEDULE 0x0003 /* Reschedule request from master CPU*/
  65. #define MSG_CALL_FUNCTION 0x0004 /* Call function on all other CPUs */
  66. /*
  67. * Mark the boot cpu "online" so that it can call console drivers in
  68. * printk() and can access its per-cpu storage.
  69. */
  70. void smp_prepare_boot_cpu(void);
  71. #else /* !SMP */
  72. /*
  73. * These macros fold the SMP functionality into a single CPU system
  74. */
  75. #if !defined(__smp_processor_id) || !defined(CONFIG_PREEMPT)
  76. # define smp_processor_id() 0
  77. #endif
  78. #define hard_smp_processor_id() 0
  79. #define smp_call_function(func,info,retry,wait) ({ 0; })
  80. #define on_each_cpu(func,info,retry,wait) ({ func(info); 0; })
  81. static inline void smp_send_reschedule(int cpu) { }
  82. #define num_booting_cpus() 1
  83. #define smp_prepare_boot_cpu() do {} while (0)
  84. #endif /* !SMP */
  85. /*
  86. * DEBUG_PREEMPT support: check whether smp_processor_id() is being
  87. * used in a preemption-safe way.
  88. *
  89. * An architecture has to enable this debugging code explicitly.
  90. * It can do so by renaming the smp_processor_id() macro to
  91. * __smp_processor_id(). This should only be done after some minimal
  92. * testing, because usually there are a number of false positives
  93. * that an architecture will trigger.
  94. *
  95. * To fix a false positive (i.e. smp_processor_id() use that the
  96. * debugging code reports but which use for some reason is legal),
  97. * change the smp_processor_id() reference to _smp_processor_id(),
  98. * which is the nondebug variant. NOTE: don't use this to hack around
  99. * real bugs.
  100. */
  101. #ifdef __smp_processor_id
  102. # if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
  103. extern unsigned int smp_processor_id(void);
  104. # else
  105. # define smp_processor_id() __smp_processor_id()
  106. # endif
  107. # define _smp_processor_id() __smp_processor_id()
  108. #else
  109. # define _smp_processor_id() smp_processor_id()
  110. #endif
  111. #define get_cpu() ({ preempt_disable(); smp_processor_id(); })
  112. #define put_cpu() preempt_enable()
  113. #define put_cpu_no_resched() preempt_enable_no_resched()
  114. #endif /* __LINUX_SMP_H */