2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __ASM_SH_SMP_H
|
|
|
|
#define __ASM_SH_SMP_H
|
|
|
|
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
#include <linux/cpumask.h>
|
2010-03-30 11:38:01 +08:00
|
|
|
#include <asm/smp-ops.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
2007-05-31 12:46:21 +08:00
|
|
|
#include <linux/spinlock.h>
|
2011-07-27 07:09:06 +08:00
|
|
|
#include <linux/atomic.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/current.h>
|
2010-04-26 17:49:58 +08:00
|
|
|
#include <asm/percpu.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-06-22 08:14:34 +08:00
|
|
|
#define raw_smp_processor_id() (current_thread_info()->cpu)
|
2007-09-21 17:32:32 +08:00
|
|
|
|
|
|
|
/* Map from cpu id to sequential logical cpu number. */
|
|
|
|
extern int __cpu_number_map[NR_CPUS];
|
|
|
|
#define cpu_number_map(cpu) __cpu_number_map[cpu]
|
|
|
|
|
|
|
|
/* The reverse map from sequential logical cpu number to cpu id. */
|
|
|
|
extern int __cpu_logical_map[NR_CPUS];
|
|
|
|
#define cpu_logical_map(cpu) __cpu_logical_map[cpu]
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-08-06 17:21:03 +08:00
|
|
|
enum {
|
|
|
|
SMP_MSG_FUNCTION,
|
|
|
|
SMP_MSG_RESCHEDULE,
|
|
|
|
SMP_MSG_FUNCTION_SINGLE,
|
|
|
|
SMP_MSG_TIMER,
|
|
|
|
|
|
|
|
SMP_MSG_NR, /* must be last */
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-04-26 17:49:58 +08:00
|
|
|
DECLARE_PER_CPU(int, cpu_state);
|
|
|
|
|
2008-08-06 17:02:48 +08:00
|
|
|
void smp_message_recv(unsigned int msg);
|
2008-12-13 18:50:26 +08:00
|
|
|
void smp_timer_broadcast(const struct cpumask *mask);
|
2008-08-06 17:21:03 +08:00
|
|
|
|
2008-08-06 17:37:07 +08:00
|
|
|
void local_timer_interrupt(void);
|
|
|
|
void local_timer_setup(unsigned int cpu);
|
2010-04-26 18:08:55 +08:00
|
|
|
void local_timer_stop(unsigned int cpu);
|
2008-08-06 17:37:07 +08:00
|
|
|
|
2008-08-06 17:21:03 +08:00
|
|
|
void arch_send_call_function_single_ipi(int cpu);
|
2010-04-26 18:08:55 +08:00
|
|
|
void arch_send_call_function_ipi_mask(const struct cpumask *mask);
|
|
|
|
|
|
|
|
void native_play_dead(void);
|
|
|
|
void native_cpu_die(unsigned int cpu);
|
|
|
|
int native_cpu_disable(unsigned int cpu);
|
|
|
|
|
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
void play_dead_common(void);
|
|
|
|
extern int __cpu_disable(void);
|
|
|
|
|
|
|
|
static inline void __cpu_die(unsigned int cpu)
|
|
|
|
{
|
|
|
|
extern struct plat_smp_ops *mp_ops; /* private */
|
|
|
|
|
|
|
|
mp_ops->cpu_die(cpu);
|
|
|
|
}
|
|
|
|
#endif
|
2007-09-21 17:32:32 +08:00
|
|
|
|
2010-03-30 11:38:01 +08:00
|
|
|
static inline int hard_smp_processor_id(void)
|
|
|
|
{
|
|
|
|
extern struct plat_smp_ops *mp_ops; /* private */
|
|
|
|
|
|
|
|
if (!mp_ops)
|
|
|
|
return 0; /* boot CPU */
|
|
|
|
|
|
|
|
return mp_ops->smp_processor_id();
|
|
|
|
}
|
|
|
|
|
2007-09-21 17:32:32 +08:00
|
|
|
#else
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-06-20 17:23:49 +08:00
|
|
|
#define hard_smp_processor_id() (0)
|
|
|
|
|
2007-09-21 17:32:32 +08:00
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* __ASM_SH_SMP_H */
|