mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 14:52:32 +00:00
9715b8c7d5
This provides percpu CPU states in preparation for CPU hotplug and the associated notifier chains. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
62 lines
1.3 KiB
C
62 lines
1.3 KiB
C
#ifndef __ASM_SH_SMP_H
|
|
#define __ASM_SH_SMP_H
|
|
|
|
#include <linux/bitops.h>
|
|
#include <linux/cpumask.h>
|
|
#include <asm/smp-ops.h>
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
#include <linux/spinlock.h>
|
|
#include <asm/atomic.h>
|
|
#include <asm/current.h>
|
|
#include <asm/percpu.h>
|
|
|
|
#define raw_smp_processor_id() (current_thread_info()->cpu)
|
|
|
|
/* 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]
|
|
|
|
enum {
|
|
SMP_MSG_FUNCTION,
|
|
SMP_MSG_RESCHEDULE,
|
|
SMP_MSG_FUNCTION_SINGLE,
|
|
SMP_MSG_TIMER,
|
|
|
|
SMP_MSG_NR, /* must be last */
|
|
};
|
|
|
|
DECLARE_PER_CPU(int, cpu_state);
|
|
|
|
void smp_message_recv(unsigned int msg);
|
|
void smp_timer_broadcast(const struct cpumask *mask);
|
|
|
|
void local_timer_interrupt(void);
|
|
void local_timer_setup(unsigned int cpu);
|
|
|
|
void arch_send_call_function_single_ipi(int cpu);
|
|
extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);
|
|
|
|
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();
|
|
}
|
|
|
|
#else
|
|
|
|
#define hard_smp_processor_id() (0)
|
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
#endif /* __ASM_SH_SMP_H */
|