xref: /openbmc/linux/arch/parisc/include/asm/smp.h (revision ca481398)
1 #ifndef __ASM_SMP_H
2 #define __ASM_SMP_H
3 
4 extern int init_per_cpu(int cpuid);
5 
6 #if defined(CONFIG_SMP)
7 
8 /* Page Zero Location PDC will look for the address to branch to when we poke
9 ** slave CPUs still in "Icache loop".
10 */
11 #define PDC_OS_BOOT_RENDEZVOUS     0x10
12 #define PDC_OS_BOOT_RENDEZVOUS_HI  0x28
13 
14 #ifndef ASSEMBLY
15 #include <linux/bitops.h>
16 #include <linux/threads.h>	/* for NR_CPUS */
17 #include <linux/cpumask.h>
18 typedef unsigned long address_t;
19 
20 
21 /*
22  *	Private routines/data
23  *
24  *	physical and logical are equivalent until we support CPU hotplug.
25  */
26 #define cpu_number_map(cpu)	(cpu)
27 #define cpu_logical_map(cpu)	(cpu)
28 
29 extern void smp_send_all_nop(void);
30 
31 extern void arch_send_call_function_single_ipi(int cpu);
32 extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);
33 
34 #endif /* !ASSEMBLY */
35 
36 #define raw_smp_processor_id()	(current_thread_info()->cpu)
37 
38 #else /* CONFIG_SMP */
39 
40 static inline void smp_send_all_nop(void) { return; }
41 
42 #endif
43 
44 #define NO_PROC_ID		0xFF		/* No processor magic marker */
45 #define ANY_PROC_ID		0xFF		/* Any processor magic marker */
46 static inline int __cpu_disable (void) {
47   return 0;
48 }
49 static inline void __cpu_die (unsigned int cpu) {
50   while(1)
51     ;
52 }
53 
54 #endif /*  __ASM_SMP_H */
55