Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/bitops.h> |
| 15 | #include <linux/linkage.h> |
| 16 | #include <linux/threads.h> |
| 17 | #include <linux/cpumask.h> |
Ralf Baechle | 87353d8 | 2007-11-19 12:23:51 +0000 | [diff] [blame] | 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/atomic.h> |
Ralf Baechle | 87353d8 | 2007-11-19 12:23:51 +0000 | [diff] [blame] | 20 | #include <asm/smp-ops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Ralf Baechle | 0ab7aef | 2007-03-02 20:42:04 +0000 | [diff] [blame] | 22 | extern int smp_num_siblings; |
| 23 | extern cpumask_t cpu_sibling_map[]; |
| 24 | |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 25 | #define raw_smp_processor_id() (current_thread_info()->cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | /* Map from cpu id to sequential logical cpu number. This will only |
| 28 | not be idempotent when cpus failed to come on-line. */ |
| 29 | extern int __cpu_number_map[NR_CPUS]; |
| 30 | #define cpu_number_map(cpu) __cpu_number_map[cpu] |
| 31 | |
| 32 | /* The reverse map from sequential logical cpu number to cpu id. */ |
| 33 | extern int __cpu_logical_map[NR_CPUS]; |
| 34 | #define cpu_logical_map(cpu) __cpu_logical_map[cpu] |
| 35 | |
| 36 | #define NO_PROC_ID (-1) |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #define SMP_RESCHEDULE_YOURSELF 0x1 /* XXX braindead */ |
| 39 | #define SMP_CALL_FUNCTION 0x2 |
David Daney | ddcdb1b | 2008-12-11 15:33:32 -0800 | [diff] [blame] | 40 | /* Octeon - Tell another core to flush its icache */ |
| 41 | #define SMP_ICACHE_FLUSH 0x4 |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | extern void asmlinkage smp_bootstrap(void); |
| 45 | |
| 46 | /* |
| 47 | * this function sends a 'reschedule' IPI to another CPU. |
| 48 | * it goes straight through and wastes no time serializing |
| 49 | * anything. Worst case is that we lose a reschedule ... |
| 50 | */ |
| 51 | static inline void smp_send_reschedule(int cpu) |
| 52 | { |
Ralf Baechle | 87353d8 | 2007-11-19 12:23:51 +0000 | [diff] [blame] | 53 | extern struct plat_smp_ops *mp_ops; /* private */ |
| 54 | |
| 55 | mp_ops->send_ipi_single(cpu, SMP_RESCHEDULE_YOURSELF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | extern asmlinkage void smp_call_function_interrupt(void); |
| 59 | |
Jens Axboe | 2f304c0 | 2008-06-17 10:45:23 +0200 | [diff] [blame] | 60 | extern void arch_send_call_function_single_ipi(int cpu); |
| 61 | extern void arch_send_call_function_ipi(cpumask_t mask); |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #endif /* __ASM_SMP_H */ |