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.
7 * Copyright (C) 2000 - 2001 by Silicon Graphics, Inc.
8 * Copyright (C) 2000, 2001, 2002 Ralf Baechle
9 * Copyright (C) 2000, 2001 Broadcom Corporation
11 #ifndef __ASM_SMP_OPS_H
12 #define __ASM_SMP_OPS_H
14 #include <linux/errno.h>
18 #include <linux/cpumask.h>
23 void (*send_ipi_single)(int cpu, unsigned int action);
24 void (*send_ipi_mask)(const struct cpumask *mask, unsigned int action);
25 void (*init_secondary)(void);
26 void (*smp_finish)(void);
27 int (*boot_secondary)(int cpu, struct task_struct *idle);
28 void (*smp_setup)(void);
29 void (*prepare_cpus)(unsigned int max_cpus);
30 void (*prepare_boot_cpu)(void);
31 #ifdef CONFIG_HOTPLUG_CPU
32 int (*cpu_disable)(void);
33 void (*cpu_die)(unsigned int cpu);
34 void (*cleanup_dead_cpu)(unsigned cpu);
36 #ifdef CONFIG_KEXEC_CORE
37 void (*kexec_nonboot_cpu)(void);
41 extern void register_smp_ops(const struct plat_smp_ops *ops);
43 static inline void plat_smp_setup(void)
45 extern const struct plat_smp_ops *mp_ops; /* private */
50 extern void mips_smp_send_ipi_single(int cpu, unsigned int action);
51 extern void mips_smp_send_ipi_mask(const struct cpumask *mask,
54 #else /* !CONFIG_SMP */
58 static inline void plat_smp_setup(void)
60 /* UP, nothing to do ... */
63 static inline void register_smp_ops(const struct plat_smp_ops *ops)
67 #endif /* !CONFIG_SMP */
69 static inline int register_up_smp_ops(void)
72 extern const struct plat_smp_ops up_smp_ops;
74 register_smp_ops(&up_smp_ops);
82 static inline int register_vsmp_smp_ops(void)
84 #ifdef CONFIG_MIPS_MT_SMP
85 extern const struct plat_smp_ops vsmp_smp_ops;
90 register_smp_ops(&vsmp_smp_ops);
98 #ifdef CONFIG_MIPS_CPS
99 extern int register_cps_smp_ops(void);
101 static inline int register_cps_smp_ops(void)
107 #endif /* __ASM_SMP_OPS_H */