smp.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General
  3. * Public License. See the file "COPYING" in the main directory of this
  4. * archive for more details.
  5. *
  6. * Copyright (C) 2000 - 2001 by Kanoj Sarcar (kanoj@sgi.com)
  7. * Copyright (C) 2000 - 2001 by Silicon Graphics, Inc.
  8. * Copyright (C) 2000, 2001, 2002 Ralf Baechle
  9. * Copyright (C) 2000, 2001 Broadcom Corporation
  10. */
  11. #ifndef __ASM_SMP_H
  12. #define __ASM_SMP_H
  13. #include <linux/bitops.h>
  14. #include <linux/linkage.h>
  15. #include <linux/threads.h>
  16. #include <linux/cpumask.h>
  17. #include <asm/atomic.h>
  18. #include <asm/smp-ops.h>
  19. extern int smp_num_siblings;
  20. extern cpumask_t cpu_sibling_map[];
  21. #define raw_smp_processor_id() (current_thread_info()->cpu)
  22. /* Map from cpu id to sequential logical cpu number. This will only
  23. not be idempotent when cpus failed to come on-line. */
  24. extern int __cpu_number_map[NR_CPUS];
  25. #define cpu_number_map(cpu) __cpu_number_map[cpu]
  26. /* The reverse map from sequential logical cpu number to cpu id. */
  27. extern int __cpu_logical_map[NR_CPUS];
  28. #define cpu_logical_map(cpu) __cpu_logical_map[cpu]
  29. #define NO_PROC_ID (-1)
  30. #define SMP_RESCHEDULE_YOURSELF 0x1 /* XXX braindead */
  31. #define SMP_CALL_FUNCTION 0x2
  32. /* Octeon - Tell another core to flush its icache */
  33. #define SMP_ICACHE_FLUSH 0x4
  34. extern void asmlinkage smp_bootstrap(void);
  35. /*
  36. * this function sends a 'reschedule' IPI to another CPU.
  37. * it goes straight through and wastes no time serializing
  38. * anything. Worst case is that we lose a reschedule ...
  39. */
  40. static inline void smp_send_reschedule(int cpu)
  41. {
  42. extern struct plat_smp_ops *mp_ops; /* private */
  43. mp_ops->send_ipi_single(cpu, SMP_RESCHEDULE_YOURSELF);
  44. }
  45. extern asmlinkage void smp_call_function_interrupt(void);
  46. extern void arch_send_call_function_single_ipi(int cpu);
  47. extern void arch_send_call_function_ipi(cpumask_t mask);
  48. #endif /* __ASM_SMP_H */