2005-04-17 02:20:36 +04:00
|
|
|
/*
|
2012-03-11 19:59:26 +04:00
|
|
|
* Copyright IBM Corp. 1999,2012
|
2009-12-07 14:52:07 +03:00
|
|
|
* Author(s): Denis Joseph Barrow,
|
|
|
|
* Martin Schwidefsky <schwidefsky@de.ibm.com>,
|
|
|
|
* Heiko Carstens <heiko.carstens@de.ibm.com>,
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
#ifndef __ASM_SMP_H
|
|
|
|
#define __ASM_SMP_H
|
|
|
|
|
2009-12-07 14:52:07 +03:00
|
|
|
#ifdef CONFIG_SMP
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2012-03-28 21:30:02 +04:00
|
|
|
#include <asm/lowcore.h>
|
2007-02-05 23:16:47 +03:00
|
|
|
|
2009-03-26 17:24:42 +03:00
|
|
|
#define raw_smp_processor_id() (S390_lowcore.cpu_nr)
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-17 09:46:12 +04:00
|
|
|
extern struct mutex smp_cpu_state_mutex;
|
2012-03-11 19:59:26 +04:00
|
|
|
extern struct save_area *zfcpdump_save_areas[NR_CPUS + 1];
|
|
|
|
|
|
|
|
extern int __cpu_up(unsigned int cpu);
|
2008-04-17 09:46:12 +04:00
|
|
|
|
2008-12-25 15:38:39 +03:00
|
|
|
extern void arch_send_call_function_single_ipi(int cpu);
|
2009-09-24 19:34:45 +04:00
|
|
|
extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);
|
2008-12-25 15:38:39 +03:00
|
|
|
|
2012-03-11 19:59:26 +04:00
|
|
|
extern void smp_call_online_cpu(void (*func)(void *), void *);
|
|
|
|
extern void smp_call_ipl_cpu(void (*func)(void *), void *);
|
2010-02-27 00:37:34 +03:00
|
|
|
|
2012-03-11 19:59:26 +04:00
|
|
|
extern int smp_find_processor_id(u16 address);
|
|
|
|
extern int smp_store_status(int cpu);
|
|
|
|
extern int smp_vcpu_scheduled(int cpu);
|
|
|
|
extern void smp_yield_cpu(int cpu);
|
|
|
|
extern void smp_yield(void);
|
|
|
|
extern void smp_stop_cpu(void);
|
2010-02-27 00:37:40 +03:00
|
|
|
|
2010-02-27 00:37:34 +03:00
|
|
|
#else /* CONFIG_SMP */
|
|
|
|
|
2012-03-11 19:59:26 +04:00
|
|
|
static inline void smp_call_ipl_cpu(void (*func)(void *), void *data)
|
2010-02-27 00:37:34 +03:00
|
|
|
{
|
|
|
|
func(data);
|
|
|
|
}
|
|
|
|
|
2012-03-11 19:59:26 +04:00
|
|
|
static inline void smp_call_online_cpu(void (*func)(void *), void *data)
|
2011-10-30 18:16:38 +04:00
|
|
|
{
|
2012-03-11 19:59:26 +04:00
|
|
|
func(data);
|
2011-10-30 18:16:38 +04:00
|
|
|
}
|
|
|
|
|
2012-03-11 19:59:26 +04:00
|
|
|
static inline int smp_find_processor_id(int address) { return 0; }
|
|
|
|
static inline int smp_vcpu_scheduled(int cpu) { return 1; }
|
|
|
|
static inline void smp_yield_cpu(int cpu) { }
|
|
|
|
static inline void smp_yield(void) { }
|
|
|
|
static inline void smp_stop_cpu(void) { }
|
2010-02-27 00:37:40 +03:00
|
|
|
|
2009-12-07 14:52:07 +03:00
|
|
|
#endif /* CONFIG_SMP */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-30 15:38:37 +04:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
extern int smp_rescan_cpus(void);
|
2011-01-05 14:48:09 +03:00
|
|
|
extern void __noreturn cpu_die(void);
|
2012-03-11 19:59:26 +04:00
|
|
|
extern void __cpu_die(unsigned int cpu);
|
|
|
|
extern int __cpu_disable(void);
|
2008-04-30 15:38:37 +04:00
|
|
|
#else
|
|
|
|
static inline int smp_rescan_cpus(void) { return 0; }
|
2011-01-05 14:48:09 +03:00
|
|
|
static inline void cpu_die(void) { }
|
2008-04-30 15:38:37 +04:00
|
|
|
#endif
|
|
|
|
|
2009-12-07 14:52:07 +03:00
|
|
|
#endif /* __ASM_SMP_H */
|