1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/threads.h>
6 #include <linux/cpumask.h>
7 #include <linux/bitops.h>
10 /* HACK: Cabrio WHAMI return value is bogus if more than 8 bits used.. :-( */
12 static __inline__
unsigned char
13 __hard_smp_processor_id(void)
15 register unsigned char __r0
__asm__("$0");
20 : "$1", "$22", "$23", "$24", "$25");
28 struct cpuinfo_alpha
{
29 unsigned long loops_per_jiffy
;
30 unsigned long last_asn
;
33 unsigned long ipi_count
;
34 unsigned long prof_multiplier
;
35 unsigned long prof_counter
;
36 unsigned char mcheck_expected
;
37 unsigned char mcheck_taken
;
38 unsigned char mcheck_extra
;
39 } __attribute__((aligned(64)));
41 extern struct cpuinfo_alpha cpu_data
[NR_CPUS
];
43 #define hard_smp_processor_id() __hard_smp_processor_id()
44 #define raw_smp_processor_id() (current_thread_info()->cpu)
46 extern int smp_num_cpus
;
48 extern void arch_send_call_function_single_ipi(int cpu
);
49 extern void arch_send_call_function_ipi_mask(const struct cpumask
*mask
);
51 #else /* CONFIG_SMP */
53 #define hard_smp_processor_id() 0
54 #define smp_call_function_on_cpu(func,info,wait,cpu) ({ 0; })
56 #endif /* CONFIG_SMP */
58 #define NO_PROC_ID (-1)