/* SPDX-License-Identifier: GPL-2.0 */ #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 <linux/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 arch_send_call_function_single_ipi(int cpu); 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); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Paul Mundt | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Paul Mundt | 31 | 100.00% | 1 | 100.00% |
Total | 31 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Paul Mundt | 189 | 75.90% | 8 | 47.06% |
Rich Felker | 27 | 10.84% | 1 | 5.88% |
Jens Axboe | 12 | 4.82% | 1 | 5.88% |
Linus Torvalds (pre-git) | 9 | 3.61% | 1 | 5.88% |
Rusty Russell | 5 | 2.01% | 1 | 5.88% |
Andrew Morton | 3 | 1.20% | 1 | 5.88% |
Ingo Molnar | 1 | 0.40% | 1 | 5.88% |
Greg Kroah-Hartman | 1 | 0.40% | 1 | 5.88% |
Arun Sharma | 1 | 0.40% | 1 | 5.88% |
Evgeniy Polyakov | 1 | 0.40% | 1 | 5.88% |
Total | 249 | 100.00% | 17 | 100.00% |