smp.h 1.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8
#ifndef __ASM_SH_SMP_H
#define __ASM_SH_SMP_H

#include <linux/bitops.h>
#include <linux/cpumask.h>

#ifdef CONFIG_SMP

E
Evgeniy Polyakov 已提交
9
#include <linux/spinlock.h>
L
Linus Torvalds 已提交
10 11 12
#include <asm/atomic.h>
#include <asm/current.h>

I
Ingo Molnar 已提交
13
#define raw_smp_processor_id()	(current_thread_info()->cpu)
14 15 16 17 18 19 20 21 22
#define hard_smp_processor_id()	plat_smp_processor_id()

/* 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]
L
Linus Torvalds 已提交
23

P
Paul Mundt 已提交
24 25 26 27 28 29 30 31
enum {
	SMP_MSG_FUNCTION,
	SMP_MSG_RESCHEDULE,
	SMP_MSG_FUNCTION_SINGLE,
	SMP_MSG_TIMER,

	SMP_MSG_NR,	/* must be last */
};
L
Linus Torvalds 已提交
32

33
void smp_message_recv(unsigned int msg);
34
void smp_timer_broadcast(const struct cpumask *mask);
P
Paul Mundt 已提交
35

36 37 38
void local_timer_interrupt(void);
void local_timer_setup(unsigned int cpu);

39 40 41 42 43
void plat_smp_setup(void);
void plat_prepare_cpus(unsigned int max_cpus);
int plat_smp_processor_id(void);
void plat_start_cpu(unsigned int cpu, unsigned long entry_point);
void plat_send_ipi(unsigned int cpu, unsigned int message);
P
Paul Mundt 已提交
44 45 46

void arch_send_call_function_single_ipi(int cpu);
void arch_send_call_function_ipi(cpumask_t mask);
47 48

#else
L
Linus Torvalds 已提交
49

50 51
#define hard_smp_processor_id()	(0)

52 53
#endif /* CONFIG_SMP */

L
Linus Torvalds 已提交
54
#endif /* __ASM_SH_SMP_H */