2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2012-07-20 09:15:04 +00:00
|
|
|
* Copyright IBM Corp. 1999, 2012
|
2009-12-07 11:52:07 +00:00
|
|
|
* Author(s): Denis Joseph Barrow,
|
|
|
|
* Martin Schwidefsky <schwidefsky@de.ibm.com>,
|
|
|
|
* Heiko Carstens <heiko.carstens@de.ibm.com>,
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
#ifndef __ASM_SMP_H
|
|
|
|
#define __ASM_SMP_H
|
|
|
|
|
2014-04-04 09:23:03 +00:00
|
|
|
#include <asm/sigp.h>
|
|
|
|
|
2009-12-07 11:52:07 +00:00
|
|
|
#ifdef CONFIG_SMP
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-03-28 17:30:02 +00:00
|
|
|
#include <asm/lowcore.h>
|
2007-02-05 20:16:47 +00:00
|
|
|
|
2009-03-26 14:24:42 +00:00
|
|
|
#define raw_smp_processor_id() (S390_lowcore.cpu_nr)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-17 05:46:12 +00:00
|
|
|
extern struct mutex smp_cpu_state_mutex;
|
2015-01-14 16:52:10 +00:00
|
|
|
extern unsigned int smp_cpu_mt_shift;
|
|
|
|
extern unsigned int smp_cpu_mtid;
|
2015-10-29 09:28:26 +00:00
|
|
|
extern __vector128 __initdata boot_cpu_vector_save_area[__NUM_VXRS];
|
2012-03-11 15:59:26 +00:00
|
|
|
|
2012-04-20 13:05:42 +00:00
|
|
|
extern int __cpu_up(unsigned int cpu, struct task_struct *tidle);
|
2008-04-17 05:46:12 +00:00
|
|
|
|
2008-12-25 12:38:39 +00:00
|
|
|
extern void arch_send_call_function_single_ipi(int cpu);
|
2009-09-24 15:34:45 +00:00
|
|
|
extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);
|
2008-12-25 12:38:39 +00:00
|
|
|
|
2012-03-11 15:59:26 +00:00
|
|
|
extern void smp_call_online_cpu(void (*func)(void *), void *);
|
|
|
|
extern void smp_call_ipl_cpu(void (*func)(void *), void *);
|
2010-02-26 21:37:34 +00:00
|
|
|
|
2012-03-11 15:59:26 +00:00
|
|
|
extern int smp_find_processor_id(u16 address);
|
|
|
|
extern int smp_store_status(int cpu);
|
2015-05-26 17:05:23 +00:00
|
|
|
extern void smp_save_dump_cpus(void);
|
2012-03-11 15:59:26 +00:00
|
|
|
extern int smp_vcpu_scheduled(int cpu);
|
|
|
|
extern void smp_yield_cpu(int cpu);
|
2012-09-04 15:36:16 +00:00
|
|
|
extern void smp_cpu_set_polarization(int cpu, int val);
|
|
|
|
extern int smp_cpu_get_polarization(int cpu);
|
2013-12-16 13:31:26 +00:00
|
|
|
extern void smp_fill_possible_mask(void);
|
2010-02-26 21:37:40 +00:00
|
|
|
|
2010-02-26 21:37:34 +00:00
|
|
|
#else /* CONFIG_SMP */
|
|
|
|
|
2015-01-14 16:52:10 +00:00
|
|
|
#define smp_cpu_mtid 0
|
|
|
|
|
2012-03-11 15:59:26 +00:00
|
|
|
static inline void smp_call_ipl_cpu(void (*func)(void *), void *data)
|
2010-02-26 21:37:34 +00:00
|
|
|
{
|
|
|
|
func(data);
|
|
|
|
}
|
|
|
|
|
2012-03-11 15:59:26 +00:00
|
|
|
static inline void smp_call_online_cpu(void (*func)(void *), void *data)
|
2011-10-30 14:16:38 +00:00
|
|
|
{
|
2012-03-11 15:59:26 +00:00
|
|
|
func(data);
|
2011-10-30 14:16:38 +00:00
|
|
|
}
|
|
|
|
|
2012-08-27 13:38:19 +00:00
|
|
|
static inline int smp_find_processor_id(u16 address) { return 0; }
|
2012-08-27 13:18:45 +00:00
|
|
|
static inline int smp_store_status(int cpu) { return 0; }
|
2012-03-11 15:59:26 +00:00
|
|
|
static inline int smp_vcpu_scheduled(int cpu) { return 1; }
|
|
|
|
static inline void smp_yield_cpu(int cpu) { }
|
2013-12-16 13:31:26 +00:00
|
|
|
static inline void smp_fill_possible_mask(void) { }
|
2010-02-26 21:37:40 +00:00
|
|
|
|
2014-04-15 09:25:28 +00:00
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
2014-04-04 09:23:03 +00:00
|
|
|
static inline void smp_stop_cpu(void)
|
|
|
|
{
|
|
|
|
u16 pcpu = stap();
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
__pcpu_sigp(pcpu, SIGP_STOP, 0, NULL);
|
|
|
|
cpu_relax();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-02 12:16:02 +00:00
|
|
|
/* Return thread 0 CPU number as base CPU */
|
|
|
|
static inline int smp_get_base_cpu(int cpu)
|
|
|
|
{
|
|
|
|
return cpu - (cpu % (smp_cpu_mtid + 1));
|
|
|
|
}
|
|
|
|
|
2008-04-30 11:38:37 +00:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
extern int smp_rescan_cpus(void);
|
2011-01-05 11:48:09 +00:00
|
|
|
extern void __noreturn cpu_die(void);
|
2012-03-11 15:59:26 +00:00
|
|
|
extern void __cpu_die(unsigned int cpu);
|
|
|
|
extern int __cpu_disable(void);
|
2008-04-30 11:38:37 +00:00
|
|
|
#else
|
|
|
|
static inline int smp_rescan_cpus(void) { return 0; }
|
2011-01-05 11:48:09 +00:00
|
|
|
static inline void cpu_die(void) { }
|
2008-04-30 11:38:37 +00:00
|
|
|
#endif
|
|
|
|
|
2009-12-07 11:52:07 +00:00
|
|
|
#endif /* __ASM_SMP_H */
|