blob: cc04b74fbb84c69a2c2c8aead224450da90f0034 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04002 * SMP related functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 1999, 2012
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04005 * Author(s): Denis Joseph Barrow,
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>,
7 * Heiko Carstens <heiko.carstens@de.ibm.com>,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Heiko Carstens39ce0102007-04-27 16:02:00 +02009 * based on other smp stuff by
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * (c) 1995 Alan Cox, CymruNET Ltd <alan@cymru.net>
11 * (c) 1998 Ingo Molnar
12 *
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040013 * The code outside of smp.c uses logical cpu numbers, only smp.c does
14 * the translation of logical to physical cpu ids. All new code that
15 * operates on physical cpu numbers needs to go into smp.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Martin Schwidefsky395d31d2008-12-25 13:39:50 +010018#define KMSG_COMPONENT "cpu"
19#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
20
Heiko Carstensf2308862011-01-05 12:48:08 +010021#include <linux/workqueue.h>
Heiko Carstensaf51160e2016-12-03 09:48:01 +010022#include <linux/bootmem.h>
Paul Gortmaker3994a522017-02-09 15:20:23 -050023#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040026#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/spinlock.h>
28#include <linux/kernel_stat.h>
Christian Borntraeger9cf8edb2017-05-18 13:04:16 +020029#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/interrupt.h>
Christian Borntraeger3324e602009-03-26 15:23:56 +010032#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Ingo Molnaref8bd772017-02-08 18:51:36 +010035#include <linux/sched/hotplug.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010036#include <linux/sched/task_stack.h>
Michael Holzheu60a0c682011-10-30 15:16:40 +010037#include <linux/crash_dump.h>
Michael Holzheu1592a8e2015-05-26 19:05:23 +020038#include <linux/memblock.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010039#include <asm/asm-offsets.h>
Martin Schwidefsky1ec27722015-08-20 17:28:44 +020040#include <asm/diag.h>
Heiko Carstens1e3cab22012-03-30 09:40:55 +020041#include <asm/switch_to.h>
42#include <asm/facility.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010043#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010044#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/tlbflush.h>
Martin Schwidefsky27f6b412012-07-20 11:15:08 +020047#include <asm/vtimer.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020048#include <asm/lowcore.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010049#include <asm/sclp.h>
Martin Schwidefskyc742b312008-12-31 15:11:42 +010050#include <asm/vdso.h>
Michael Holzheu3ab121a2012-03-11 11:59:32 -040051#include <asm/debug.h>
Michael Holzheu4857d4b2012-03-11 11:59:34 -040052#include <asm/os_info.h>
Heiko Carstensa9ae32c2012-06-04 12:55:15 +020053#include <asm/sigp.h>
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +020054#include <asm/idle.h>
Martin Schwidefsky916cda12016-01-26 14:10:34 +010055#include <asm/nmi.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020056#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040058enum {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040059 ec_schedule = 0,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040060 ec_call_function_single,
61 ec_stop_cpu,
62};
Heiko Carstens08d07962008-01-26 14:10:56 +010063
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040064enum {
Heiko Carstens08d07962008-01-26 14:10:56 +010065 CPU_STATE_STANDBY,
66 CPU_STATE_CONFIGURED,
67};
68
Heiko Carstens2f859d02015-02-11 12:31:03 +010069static DEFINE_PER_CPU(struct cpu *, cpu_device);
70
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040071struct pcpu {
Heiko Carstensc667aea2015-12-31 10:29:00 +010072 struct lowcore *lowcore; /* lowcore page(s) for the cpu */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040073 unsigned long ec_mask; /* bit mask for ec_xxx functions */
Heiko Carstens3dbc78d2015-12-08 14:10:12 +010074 unsigned long ec_clk; /* sigp timestamp for ec_xxx */
Heiko Carstens2f859d02015-02-11 12:31:03 +010075 signed char state; /* physical cpu state */
76 signed char polarization; /* physical polarization */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040077 u16 address; /* physical cpu address */
78};
79
Martin Schwidefskyd08d9432015-06-18 14:23:00 +020080static u8 boot_core_type;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040081static struct pcpu pcpu_devices[NR_CPUS];
82
Martin Schwidefsky916cda12016-01-26 14:10:34 +010083static struct kmem_cache *pcpu_mcesa_cache;
84
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010085unsigned int smp_cpu_mt_shift;
86EXPORT_SYMBOL(smp_cpu_mt_shift);
87
88unsigned int smp_cpu_mtid;
89EXPORT_SYMBOL(smp_cpu_mtid);
90
Martin Schwidefsky1a36a392015-10-29 10:28:26 +010091#ifdef CONFIG_CRASH_DUMP
92__vector128 __initdata boot_cpu_vector_save_area[__NUM_VXRS];
93#endif
94
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010095static unsigned int smp_max_threads __initdata = -1U;
96
97static int __init early_nosmt(char *s)
98{
99 smp_max_threads = 1;
100 return 0;
101}
102early_param("nosmt", early_nosmt);
103
104static int __init early_smt(char *s)
105{
106 get_option(&s, &smp_max_threads);
107 return 0;
108}
109early_param("smt", early_smt);
110
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200111/*
112 * The smp_cpu_state_mutex must be held when changing the state or polarization
113 * member of a pcpu data structure within the pcpu_devices arreay.
114 */
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200115DEFINE_MUTEX(smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100116
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400117/*
118 * Signal processor helper functions.
119 */
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100120static inline int __pcpu_sigp_relax(u16 addr, u8 order, unsigned long parm)
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100121{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400122 int cc;
123
124 while (1) {
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200125 cc = __pcpu_sigp(addr, order, parm, NULL);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200126 if (cc != SIGP_CC_BUSY)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400127 return cc;
128 cpu_relax();
129 }
130}
131
132static int pcpu_sigp_retry(struct pcpu *pcpu, u8 order, u32 parm)
133{
134 int cc, retry;
135
136 for (retry = 0; ; retry++) {
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200137 cc = __pcpu_sigp(pcpu->address, order, parm, NULL);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200138 if (cc != SIGP_CC_BUSY)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400139 break;
140 if (retry >= 3)
141 udelay(10);
142 }
143 return cc;
144}
145
146static inline int pcpu_stopped(struct pcpu *pcpu)
147{
Heiko Carstens41459d36cf2012-09-14 11:09:52 +0200148 u32 uninitialized_var(status);
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200149
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200150 if (__pcpu_sigp(pcpu->address, SIGP_SENSE,
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200151 0, &status) != SIGP_CC_STATUS_STORED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400152 return 0;
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200153 return !!(status & (SIGP_STATUS_CHECK_STOP|SIGP_STATUS_STOPPED));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400154}
155
156static inline int pcpu_running(struct pcpu *pcpu)
157{
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200158 if (__pcpu_sigp(pcpu->address, SIGP_SENSE_RUNNING,
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200159 0, NULL) != SIGP_CC_STATUS_STORED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400160 return 1;
Heiko Carstens524b24a2012-06-04 12:11:41 +0200161 /* Status stored condition code is equivalent to cpu not running. */
162 return 0;
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100163}
164
Michael Holzheu1943f532011-10-30 15:16:38 +0100165/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400166 * Find struct pcpu by cpu address.
Michael Holzheu1943f532011-10-30 15:16:38 +0100167 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100168static struct pcpu *pcpu_find_address(const struct cpumask *mask, u16 address)
Michael Holzheu1943f532011-10-30 15:16:38 +0100169{
170 int cpu;
171
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400172 for_each_cpu(cpu, mask)
173 if (pcpu_devices[cpu].address == address)
174 return pcpu_devices + cpu;
175 return NULL;
176}
177
178static void pcpu_ec_call(struct pcpu *pcpu, int ec_bit)
179{
180 int order;
181
Heiko Carstensdea24192013-12-03 10:06:29 +0100182 if (test_and_set_bit(ec_bit, &pcpu->ec_mask))
183 return;
184 order = pcpu_running(pcpu) ? SIGP_EXTERNAL_CALL : SIGP_EMERGENCY_SIGNAL;
Heiko Carstens3dbc78d2015-12-08 14:10:12 +0100185 pcpu->ec_clk = get_tod_clock_fast();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400186 pcpu_sigp_retry(pcpu, order, 0);
187}
188
Heiko Carstens2f859d02015-02-11 12:31:03 +0100189#define ASYNC_FRAME_OFFSET (ASYNC_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE)
190#define PANIC_FRAME_OFFSET (PAGE_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE)
191
Paul Gortmakere2741f12013-06-18 17:04:52 -0400192static int pcpu_alloc_lowcore(struct pcpu *pcpu, int cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400193{
Heiko Carstens2f859d02015-02-11 12:31:03 +0100194 unsigned long async_stack, panic_stack;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100195 unsigned long mcesa_origin, mcesa_bits;
Heiko Carstensc667aea2015-12-31 10:29:00 +0100196 struct lowcore *lc;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400197
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100198 mcesa_origin = mcesa_bits = 0;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400199 if (pcpu != &pcpu_devices[0]) {
Heiko Carstensc667aea2015-12-31 10:29:00 +0100200 pcpu->lowcore = (struct lowcore *)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400201 __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100202 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
203 panic_stack = __get_free_page(GFP_KERNEL);
204 if (!pcpu->lowcore || !panic_stack || !async_stack)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400205 goto out;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100206 if (MACHINE_HAS_VX || MACHINE_HAS_GS) {
207 mcesa_origin = (unsigned long)
208 kmem_cache_alloc(pcpu_mcesa_cache, GFP_KERNEL);
209 if (!mcesa_origin)
210 goto out;
Christian Borntraeger9cf8edb2017-05-18 13:04:16 +0200211 /* The pointer is stored with mcesa_bits ORed in */
212 kmemleak_not_leak((void *) mcesa_origin);
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100213 mcesa_bits = MACHINE_HAS_GS ? 11 : 0;
214 }
Heiko Carstens2f859d02015-02-11 12:31:03 +0100215 } else {
216 async_stack = pcpu->lowcore->async_stack - ASYNC_FRAME_OFFSET;
217 panic_stack = pcpu->lowcore->panic_stack - PANIC_FRAME_OFFSET;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100218 mcesa_origin = pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK;
219 mcesa_bits = pcpu->lowcore->mcesad & MCESA_LC_MASK;
Michael Holzheu1943f532011-10-30 15:16:38 +0100220 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400221 lc = pcpu->lowcore;
222 memcpy(lc, &S390_lowcore, 512);
223 memset((char *) lc + 512, 0, sizeof(*lc) - 512);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100224 lc->async_stack = async_stack + ASYNC_FRAME_OFFSET;
225 lc->panic_stack = panic_stack + PANIC_FRAME_OFFSET;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100226 lc->mcesad = mcesa_origin | mcesa_bits;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400227 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200228 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefskyb96f7d82017-03-24 17:25:02 +0100229 lc->spinlock_index = 0;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400230 if (vdso_alloc_per_cpu(lc))
231 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400232 lowcore_ptr[cpu] = lc;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200233 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, (u32)(unsigned long) lc);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400234 return 0;
235out:
236 if (pcpu != &pcpu_devices[0]) {
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100237 if (mcesa_origin)
238 kmem_cache_free(pcpu_mcesa_cache,
239 (void *) mcesa_origin);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100240 free_page(panic_stack);
241 free_pages(async_stack, ASYNC_ORDER);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400242 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
243 }
244 return -ENOMEM;
Michael Holzheu1943f532011-10-30 15:16:38 +0100245}
246
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200247#ifdef CONFIG_HOTPLUG_CPU
248
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400249static void pcpu_free_lowcore(struct pcpu *pcpu)
Heiko Carstens2c2df112010-02-26 22:37:34 +0100250{
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100251 unsigned long mcesa_origin;
252
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200253 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400254 lowcore_ptr[pcpu - pcpu_devices] = NULL;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400255 vdso_free_per_cpu(pcpu->lowcore);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100256 if (pcpu == &pcpu_devices[0])
257 return;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100258 if (MACHINE_HAS_VX || MACHINE_HAS_GS) {
259 mcesa_origin = pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK;
260 kmem_cache_free(pcpu_mcesa_cache, (void *) mcesa_origin);
261 }
Heiko Carstens2f859d02015-02-11 12:31:03 +0100262 free_page(pcpu->lowcore->panic_stack-PANIC_FRAME_OFFSET);
263 free_pages(pcpu->lowcore->async_stack-ASYNC_FRAME_OFFSET, ASYNC_ORDER);
264 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
Heiko Carstens2c2df112010-02-26 22:37:34 +0100265}
266
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200267#endif /* CONFIG_HOTPLUG_CPU */
268
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400269static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu)
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100270{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100271 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400272
Martin Schwidefsky64f31d52016-05-25 09:45:26 +0200273 cpumask_set_cpu(cpu, &init_mm.context.cpu_attach_mask);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200274 cpumask_set_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400275 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200276 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefskyb96f7d82017-03-24 17:25:02 +0100277 lc->spinlock_index = 0;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400278 lc->percpu_offset = __per_cpu_offset[cpu];
279 lc->kernel_asce = S390_lowcore.kernel_asce;
280 lc->machine_flags = S390_lowcore.machine_flags;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400281 lc->user_timer = lc->system_timer = lc->steal_timer = 0;
282 __ctl_store(lc->cregs_save_area, 0, 15);
283 save_access_regs((unsigned int *) lc->access_regs_save_area);
284 memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list,
285 MAX_FACILITY_BIT/8);
Martin Schwidefskyb96f7d82017-03-24 17:25:02 +0100286 arch_spin_lock_setup(cpu);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100287}
288
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400289static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk)
290{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100291 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400292
Martin Schwidefskydc7ee002013-04-24 10:20:43 +0200293 lc->kernel_stack = (unsigned long) task_stack_page(tsk)
294 + THREAD_SIZE - STACK_FRAME_OVERHEAD - sizeof(struct pt_regs);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400295 lc->current_task = (unsigned long) tsk;
Christian Borntraegere22cf8c2015-10-06 18:06:15 +0200296 lc->lpp = LPP_MAGIC;
297 lc->current_pid = tsk->pid;
Martin Schwidefsky90c53e62016-11-08 12:15:59 +0100298 lc->user_timer = tsk->thread.user_timer;
299 lc->system_timer = tsk->thread.system_timer;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400300 lc->steal_timer = 0;
301}
302
303static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data)
304{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100305 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400306
307 lc->restart_stack = lc->kernel_stack;
308 lc->restart_fn = (unsigned long) func;
309 lc->restart_data = (unsigned long) data;
310 lc->restart_source = -1UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200311 pcpu_sigp_retry(pcpu, SIGP_RESTART, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400312}
313
314/*
315 * Call function via PSW restart on pcpu and stop the current cpu.
316 */
317static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *),
318 void *data, unsigned long stack)
319{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100320 struct lowcore *lc = lowcore_ptr[pcpu - pcpu_devices];
Heiko Carstensfbe76562012-06-05 09:59:52 +0200321 unsigned long source_cpu = stap();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400322
Martin Schwidefskye258d712013-09-24 09:14:56 +0200323 __load_psw_mask(PSW_KERNEL_BITS);
Heiko Carstensfbe76562012-06-05 09:59:52 +0200324 if (pcpu->address == source_cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400325 func(data); /* should not return */
326 /* Stop target cpu (if func returns this stops the current cpu). */
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200327 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400328 /* Restart func on the target cpu and stop the current cpu. */
Heiko Carstensfbe76562012-06-05 09:59:52 +0200329 mem_assign_absolute(lc->restart_stack, stack);
330 mem_assign_absolute(lc->restart_fn, (unsigned long) func);
331 mem_assign_absolute(lc->restart_data, (unsigned long) data);
332 mem_assign_absolute(lc->restart_source, source_cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400333 asm volatile(
Heiko Carstenseb546192012-06-04 15:05:43 +0200334 "0: sigp 0,%0,%2 # sigp restart to target cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400335 " brc 2,0b # busy, try again\n"
Heiko Carstenseb546192012-06-04 15:05:43 +0200336 "1: sigp 0,%1,%3 # sigp stop to current cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400337 " brc 2,1b # busy, try again\n"
Heiko Carstensfbe76562012-06-05 09:59:52 +0200338 : : "d" (pcpu->address), "d" (source_cpu),
Heiko Carstenseb546192012-06-04 15:05:43 +0200339 "K" (SIGP_RESTART), "K" (SIGP_STOP)
340 : "0", "1", "cc");
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400341 for (;;) ;
342}
343
344/*
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100345 * Enable additional logical cpus for multi-threading.
346 */
347static int pcpu_set_smt(unsigned int mtid)
348{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100349 int cc;
350
351 if (smp_cpu_mtid == mtid)
352 return 0;
Heiko Carstens80a60f62016-06-20 14:04:17 +0200353 cc = __pcpu_sigp(0, SIGP_SET_MULTI_THREADING, mtid, NULL);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100354 if (cc == 0) {
355 smp_cpu_mtid = mtid;
356 smp_cpu_mt_shift = 0;
357 while (smp_cpu_mtid >= (1U << smp_cpu_mt_shift))
358 smp_cpu_mt_shift++;
359 pcpu_devices[0].address = stap();
360 }
361 return cc;
362}
363
364/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400365 * Call function on an online CPU.
366 */
367void smp_call_online_cpu(void (*func)(void *), void *data)
368{
369 struct pcpu *pcpu;
370
371 /* Use the current cpu if it is online. */
372 pcpu = pcpu_find_address(cpu_online_mask, stap());
373 if (!pcpu)
374 /* Use the first online cpu. */
375 pcpu = pcpu_devices + cpumask_first(cpu_online_mask);
376 pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack);
377}
378
379/*
380 * Call function on the ipl CPU.
381 */
382void smp_call_ipl_cpu(void (*func)(void *), void *data)
383{
Michael Holzheuc6da39f2012-03-13 11:25:08 -0400384 pcpu_delegate(&pcpu_devices[0], func, data,
Heiko Carstens2f859d02015-02-11 12:31:03 +0100385 pcpu_devices->lowcore->panic_stack -
386 PANIC_FRAME_OFFSET + PAGE_SIZE);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400387}
388
389int smp_find_processor_id(u16 address)
390{
391 int cpu;
392
393 for_each_present_cpu(cpu)
394 if (pcpu_devices[cpu].address == address)
395 return cpu;
396 return -1;
397}
398
Christian Borntraeger760928c2016-11-02 05:08:32 -0400399bool arch_vcpu_is_preempted(int cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400400{
Christian Borntraeger760928c2016-11-02 05:08:32 -0400401 if (test_cpu_flag_of(CIF_ENABLED_WAIT, cpu))
402 return false;
403 if (pcpu_running(pcpu_devices + cpu))
404 return false;
405 return true;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400406}
Christian Borntraeger760928c2016-11-02 05:08:32 -0400407EXPORT_SYMBOL(arch_vcpu_is_preempted);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400408
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400409void smp_yield_cpu(int cpu)
410{
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200411 if (MACHINE_HAS_DIAG9C) {
Martin Schwidefskyb5a6b712015-08-21 16:05:32 +0200412 diag_stat_inc_norecursion(DIAG_STAT_X09C);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400413 asm volatile("diag %0,0,0x9c"
414 : : "d" (pcpu_devices[cpu].address));
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200415 } else if (MACHINE_HAS_DIAG44) {
Martin Schwidefskyb5a6b712015-08-21 16:05:32 +0200416 diag_stat_inc_norecursion(DIAG_STAT_X044);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400417 asm volatile("diag 0,0,0x44");
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200418 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400419}
420
421/*
422 * Send cpus emergency shutdown signal. This gives the cpus the
423 * opportunity to complete outstanding interrupts.
424 */
Heiko Carstens63df41d62013-09-06 19:10:48 +0200425static void smp_emergency_stop(cpumask_t *cpumask)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400426{
427 u64 end;
428 int cpu;
429
Heiko Carstens1aae0562013-01-30 09:49:40 +0100430 end = get_tod_clock() + (1000000UL << 12);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400431 for_each_cpu(cpu, cpumask) {
432 struct pcpu *pcpu = pcpu_devices + cpu;
433 set_bit(ec_stop_cpu, &pcpu->ec_mask);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200434 while (__pcpu_sigp(pcpu->address, SIGP_EMERGENCY_SIGNAL,
435 0, NULL) == SIGP_CC_BUSY &&
Heiko Carstens1aae0562013-01-30 09:49:40 +0100436 get_tod_clock() < end)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400437 cpu_relax();
438 }
Heiko Carstens1aae0562013-01-30 09:49:40 +0100439 while (get_tod_clock() < end) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400440 for_each_cpu(cpu, cpumask)
441 if (pcpu_stopped(pcpu_devices + cpu))
442 cpumask_clear_cpu(cpu, cpumask);
443 if (cpumask_empty(cpumask))
444 break;
445 cpu_relax();
446 }
447}
448
449/*
450 * Stop all cpus but the current one.
451 */
Heiko Carstens677d7622007-11-20 11:13:37 +0100452void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100454 cpumask_t cpumask;
455 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Heiko Carstens677d7622007-11-20 11:13:37 +0100457 /* Disable all interrupts/machine checks */
Martin Schwidefskye258d712013-09-24 09:14:56 +0200458 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Christian Borntraeger3324e602009-03-26 15:23:56 +0100459 trace_hardirqs_off();
Heiko Carstens677d7622007-11-20 11:13:37 +0100460
Michael Holzheu3ab121a2012-03-11 11:59:32 -0400461 debug_set_critical();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100462 cpumask_copy(&cpumask, cpu_online_mask);
463 cpumask_clear_cpu(smp_processor_id(), &cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400465 if (oops_in_progress)
466 smp_emergency_stop(&cpumask);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100467
468 /* stop all processors */
469 for_each_cpu(cpu, &cpumask) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400470 struct pcpu *pcpu = pcpu_devices + cpu;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200471 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400472 while (!pcpu_stopped(pcpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100473 cpu_relax();
474 }
475}
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * This is the main routine where commands issued by other
479 * cpus are handled.
480 */
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200481static void smp_handle_ext_call(void)
482{
483 unsigned long bits;
484
485 /* handle bit signal external calls */
486 bits = xchg(&pcpu_devices[smp_processor_id()].ec_mask, 0);
487 if (test_bit(ec_stop_cpu, &bits))
488 smp_stop_cpu();
489 if (test_bit(ec_schedule, &bits))
490 scheduler_ipi();
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200491 if (test_bit(ec_call_function_single, &bits))
492 generic_smp_call_function_single_interrupt();
493}
494
Heiko Carstensfde15c32012-03-11 11:59:31 -0400495static void do_ext_call_interrupt(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200496 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200498 inc_irq_stat(ext_code.code == 0x1202 ? IRQEXT_EXC : IRQEXT_EMS);
499 smp_handle_ext_call();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Rusty Russell630cd042009-09-24 09:34:45 -0600502void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100503{
504 int cpu;
505
Rusty Russell630cd042009-09-24 09:34:45 -0600506 for_each_cpu(cpu, mask)
Heiko Carstensb6ed49e2013-05-21 15:34:56 +0200507 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100508}
509
510void arch_send_call_function_single_ipi(int cpu)
511{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400512 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515/*
516 * this function sends a 'reschedule' IPI to another CPU.
517 * it goes straight through and wastes no time serializing
518 * anything. Worst case is that we lose a reschedule ...
519 */
520void smp_send_reschedule(int cpu)
521{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400522 pcpu_ec_call(pcpu_devices + cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525/*
526 * parameter area for the set/clear control bit callbacks
527 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200528struct ec_creg_mask_parms {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400529 unsigned long orval;
530 unsigned long andval;
531 int cr;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200532};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534/*
535 * callback for setting/clearing control bits
536 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200537static void smp_ctl_bit_callback(void *info)
538{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200539 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 unsigned long cregs[16];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200541
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200542 __ctl_store(cregs, 0, 15);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400543 cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200544 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547/*
548 * Set a bit in a control register of all cpus
549 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200550void smp_ctl_set_bit(int cr, int bit)
551{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400552 struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200554 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200556EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558/*
559 * Clear a bit in a control register of all cpus
560 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200561void smp_ctl_clear_bit(int cr, int bit)
562{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400563 struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200565 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200567EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Michael Holzheubf28a592014-04-14 10:38:05 +0200569#ifdef CONFIG_CRASH_DUMP
Michael Holzheu411ed322007-04-27 16:01:49 +0200570
Heiko Carstens1af135a2015-06-26 12:10:49 +0200571int smp_store_status(int cpu)
572{
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100573 struct pcpu *pcpu = pcpu_devices + cpu;
574 unsigned long pa;
Heiko Carstens1af135a2015-06-26 12:10:49 +0200575
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100576 pa = __pa(&pcpu->lowcore->floating_pt_save_area);
577 if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_STATUS_AT_ADDRESS,
578 pa) != SIGP_CC_ORDER_CODE_ACCEPTED)
Heiko Carstens1af135a2015-06-26 12:10:49 +0200579 return -EIO;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100580 if (!MACHINE_HAS_VX && !MACHINE_HAS_GS)
Heiko Carstens1af135a2015-06-26 12:10:49 +0200581 return 0;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100582 pa = __pa(pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK);
583 if (MACHINE_HAS_GS)
584 pa |= pcpu->lowcore->mcesad & MCESA_LC_MASK;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100585 if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_ADDITIONAL_STATUS,
586 pa) != SIGP_CC_ORDER_CODE_ACCEPTED)
587 return -EIO;
Heiko Carstens1af135a2015-06-26 12:10:49 +0200588 return 0;
589}
590
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100591/*
592 * Collect CPU state of the previous, crashed system.
593 * There are four cases:
594 * 1) standard zfcp dump
595 * condition: OLDMEM_BASE == NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
596 * The state for all CPUs except the boot CPU needs to be collected
597 * with sigp stop-and-store-status. The boot CPU state is located in
598 * the absolute lowcore of the memory stored in the HSA. The zcore code
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100599 * will copy the boot CPU state from the HSA.
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100600 * 2) stand-alone kdump for SCSI (zfcp dump with swapped memory)
601 * condition: OLDMEM_BASE != NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
602 * The state for all CPUs except the boot CPU needs to be collected
603 * with sigp stop-and-store-status. The firmware or the boot-loader
604 * stored the registers of the boot CPU in the absolute lowcore in the
605 * memory of the old system.
606 * 3) kdump and the old kernel did not store the CPU state,
607 * or stand-alone kdump for DASD
608 * condition: OLDMEM_BASE != NULL && !is_kdump_kernel()
609 * The state for all CPUs except the boot CPU needs to be collected
610 * with sigp stop-and-store-status. The kexec code or the boot-loader
611 * stored the registers of the boot CPU in the memory of the old system.
612 * 4) kdump and the old kernel stored the CPU state
613 * condition: OLDMEM_BASE != NULL && is_kdump_kernel()
Martin Schwidefsky8a07dd02015-10-14 15:53:06 +0200614 * This case does not exist for s390 anymore, setup_arch explicitly
615 * deactivates the elfcorehdr= kernel parameter
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100616 */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100617static __init void smp_save_cpu_vxrs(struct save_area *sa, u16 addr,
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100618 bool is_boot_cpu, unsigned long page)
619{
620 __vector128 *vxrs = (__vector128 *) page;
621
622 if (is_boot_cpu)
623 vxrs = boot_cpu_vector_save_area;
624 else
625 __pcpu_sigp_relax(addr, SIGP_STORE_ADDITIONAL_STATUS, page);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100626 save_area_add_vxrs(sa, vxrs);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100627}
628
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100629static __init void smp_save_cpu_regs(struct save_area *sa, u16 addr,
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100630 bool is_boot_cpu, unsigned long page)
631{
632 void *regs = (void *) page;
633
634 if (is_boot_cpu)
635 copy_oldmem_kernel(regs, (void *) __LC_FPREGS_SAVE_AREA, 512);
636 else
637 __pcpu_sigp_relax(addr, SIGP_STORE_STATUS_AT_ADDRESS, page);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100638 save_area_add_regs(sa, regs);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100639}
640
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200641void __init smp_save_dump_cpus(void)
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100642{
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100643 int addr, boot_cpu_addr, max_cpu_addr;
644 struct save_area *sa;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100645 unsigned long page;
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200646 bool is_boot_cpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100647
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100648 if (!(OLDMEM_BASE || ipl_info.type == IPL_TYPE_FCP_DUMP))
649 /* No previous system present, normal boot. */
650 return;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100651 /* Allocate a page as dumping area for the store status sigps */
652 page = memblock_alloc_base(PAGE_SIZE, PAGE_SIZE, 1UL << 31);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100653 /* Set multi-threading state to the previous system. */
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200654 pcpu_set_smt(sclp.mtid_prev);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200655 boot_cpu_addr = stap();
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100656 max_cpu_addr = SCLP_MAX_CORES << sclp.mtid_prev;
657 for (addr = 0; addr <= max_cpu_addr; addr++) {
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100658 if (__pcpu_sigp_relax(addr, SIGP_SENSE, 0) ==
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200659 SIGP_CC_NOT_OPERATIONAL)
660 continue;
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200661 is_boot_cpu = (addr == boot_cpu_addr);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100662 /* Allocate save area */
663 sa = save_area_alloc(is_boot_cpu);
664 if (!sa)
665 panic("could not allocate memory for save area\n");
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100666 if (MACHINE_HAS_VX)
667 /* Get the vector registers */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100668 smp_save_cpu_vxrs(sa, addr, is_boot_cpu, page);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100669 /*
670 * For a zfcp dump OLDMEM_BASE == NULL and the registers
671 * of the boot CPU are stored in the HSA. To retrieve
672 * these registers an SCLP request is required which is
673 * done by drivers/s390/char/zcore.c:init_cpu_info()
674 */
675 if (!is_boot_cpu || OLDMEM_BASE)
676 /* Get the CPU registers */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100677 smp_save_cpu_regs(sa, addr, is_boot_cpu, page);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200678 }
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100679 memblock_free(page, PAGE_SIZE);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200680 diag308_reset();
681 pcpu_set_smt(0);
Heiko Carstens1af135a2015-06-26 12:10:49 +0200682}
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100683#endif /* CONFIG_CRASH_DUMP */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400684
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200685void smp_cpu_set_polarization(int cpu, int val)
686{
687 pcpu_devices[cpu].polarization = val;
688}
689
690int smp_cpu_get_polarization(int cpu)
691{
692 return pcpu_devices[cpu].polarization;
693}
694
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100695static void __ref smp_get_core_info(struct sclp_core_info *info, int early)
Heiko Carstens08d07962008-01-26 14:10:56 +0100696{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400697 static int use_sigp_detection;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400698 int address;
Heiko Carstens08d07962008-01-26 14:10:56 +0100699
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100700 if (use_sigp_detection || sclp_get_core_info(info, early)) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400701 use_sigp_detection = 1;
Martin Schwidefskye7086eb2015-06-17 10:45:31 +0200702 for (address = 0;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200703 address < (SCLP_MAX_CORES << smp_cpu_mt_shift);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100704 address += (1U << smp_cpu_mt_shift)) {
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100705 if (__pcpu_sigp_relax(address, SIGP_SENSE, 0) ==
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200706 SIGP_CC_NOT_OPERATIONAL)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400707 continue;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200708 info->core[info->configured].core_id =
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100709 address >> smp_cpu_mt_shift;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400710 info->configured++;
711 }
712 info->combined = info->configured;
Heiko Carstens08d07962008-01-26 14:10:56 +0100713 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100714}
715
Paul Gortmakere2741f12013-06-18 17:04:52 -0400716static int smp_add_present_cpu(int cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100717
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200718static int __smp_rescan_cpus(struct sclp_core_info *info, int sysfs_add)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400719{
720 struct pcpu *pcpu;
721 cpumask_t avail;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100722 int cpu, nr, i, j;
723 u16 address;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400724
725 nr = 0;
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200726 cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400727 cpu = cpumask_first(&avail);
728 for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200729 if (sclp.has_core_type && info->core[i].type != boot_core_type)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400730 continue;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200731 address = info->core[i].core_id << smp_cpu_mt_shift;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100732 for (j = 0; j <= smp_cpu_mtid; j++) {
733 if (pcpu_find_address(cpu_present_mask, address + j))
734 continue;
735 pcpu = pcpu_devices + cpu;
736 pcpu->address = address + j;
737 pcpu->state =
738 (cpu >= info->configured*(smp_cpu_mtid + 1)) ?
739 CPU_STATE_STANDBY : CPU_STATE_CONFIGURED;
740 smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
741 set_cpu_present(cpu, true);
742 if (sysfs_add && smp_add_present_cpu(cpu) != 0)
743 set_cpu_present(cpu, false);
744 else
745 nr++;
746 cpu = cpumask_next(cpu, &avail);
747 if (cpu >= nr_cpu_ids)
748 break;
749 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400750 }
751 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100754void __init smp_detect_cpus(void)
Heiko Carstens48483b32008-01-26 14:11:05 +0100755{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100756 unsigned int cpu, mtid, c_cpus, s_cpus;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200757 struct sclp_core_info *info;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100758 u16 address;
Heiko Carstens48483b32008-01-26 14:11:05 +0100759
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100760 /* Get CPU information */
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100761 info = memblock_virt_alloc(sizeof(*info), 8);
762 smp_get_core_info(info, 1);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100763 /* Find boot CPU type */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200764 if (sclp.has_core_type) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100765 address = stap();
766 for (cpu = 0; cpu < info->combined; cpu++)
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200767 if (info->core[cpu].core_id == address) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100768 /* The boot cpu dictates the cpu type. */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200769 boot_core_type = info->core[cpu].type;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100770 break;
771 }
772 if (cpu >= info->combined)
773 panic("Could not find boot CPU type");
Heiko Carstens48483b32008-01-26 14:11:05 +0100774 }
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100775
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100776 /* Set multi-threading state for the current system */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200777 mtid = boot_core_type ? sclp.mtid : sclp.mtid_cp;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100778 mtid = (mtid < smp_max_threads) ? mtid : smp_max_threads - 1;
779 pcpu_set_smt(mtid);
780
781 /* Print number of CPUs */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400782 c_cpus = s_cpus = 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100783 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200784 if (sclp.has_core_type &&
785 info->core[cpu].type != boot_core_type)
Heiko Carstens48483b32008-01-26 14:11:05 +0100786 continue;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100787 if (cpu < info->configured)
788 c_cpus += smp_cpu_mtid + 1;
789 else
790 s_cpus += smp_cpu_mtid + 1;
Heiko Carstens48483b32008-01-26 14:11:05 +0100791 }
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100792 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100793
794 /* Add CPUs present at boot */
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100795 get_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400796 __smp_rescan_cpus(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100797 put_online_cpus();
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100798 memblock_free_early((unsigned long)info, sizeof(*info));
Heiko Carstens48483b32008-01-26 14:11:05 +0100799}
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200802 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400804static void smp_start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Martin Schwidefsky1887aa02017-09-22 14:17:41 +0200806 int cpu = smp_processor_id();
807
Heiko Carstens1aae0562013-01-30 09:49:40 +0100808 S390_lowcore.last_update_clock = get_tod_clock();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400809 S390_lowcore.restart_stack = (unsigned long) restart_stack;
810 S390_lowcore.restart_fn = (unsigned long) do_restart;
811 S390_lowcore.restart_data = 0;
812 S390_lowcore.restart_source = -1UL;
813 restore_access_regs(S390_lowcore.access_regs_save_area);
814 __ctl_load(S390_lowcore.cregs_save_area, 0, 15);
Martin Schwidefskye258d712013-09-24 09:14:56 +0200815 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200816 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800817 preempt_disable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200818 init_cpu_timer();
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +0200819 vtime_init();
Heiko Carstens29b08d22006-12-04 15:40:40 +0100820 pfault_init();
Martin Schwidefsky1887aa02017-09-22 14:17:41 +0200821 notify_cpu_starting(cpu);
822 if (topology_cpu_dedicated(cpu))
823 set_cpu_flag(CIF_DEDICATED_CPU);
824 else
825 clear_cpu_flag(CIF_DEDICATED_CPU);
826 set_cpu_online(cpu, true);
Heiko Carstens93f3b2e2013-01-02 16:54:12 +0100827 inc_irq_stat(CPU_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 local_irq_enable();
Thomas Gleixnerfc6d73d2016-02-26 18:43:40 +0000829 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832/* Upping and downing of CPUs */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400833int __cpu_up(unsigned int cpu, struct task_struct *tidle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400835 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100836 int base, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400838 pcpu = pcpu_devices + cpu;
839 if (pcpu->state != CPU_STATE_CONFIGURED)
Heiko Carstens08d07962008-01-26 14:10:56 +0100840 return -EIO;
Heiko Carstens54231452016-12-05 21:18:58 +0100841 base = smp_get_base_cpu(cpu);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100842 for (i = 0; i <= smp_cpu_mtid; i++) {
843 if (base + i < nr_cpu_ids)
844 if (cpu_online(base + i))
845 break;
846 }
847 /*
848 * If this is the first CPU of the core to get online
849 * do an initial CPU reset.
850 */
851 if (i > smp_cpu_mtid &&
852 pcpu_sigp_retry(pcpu_devices + base, SIGP_INITIAL_CPU_RESET, 0) !=
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200853 SIGP_CC_ORDER_CODE_ACCEPTED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400854 return -EIO;
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000855
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400856 rc = pcpu_alloc_lowcore(pcpu, cpu);
857 if (rc)
858 return rc;
859 pcpu_prepare_secondary(pcpu, cpu);
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000860 pcpu_attach_task(pcpu, tidle);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400861 pcpu_start_fn(pcpu, smp_start_secondary, NULL);
Heiko Carstensa1307bb2015-03-30 12:51:42 +0200862 /* Wait until cpu puts itself in the online & active maps */
Peter Zijlstra (Intel)e9d867a2016-03-10 12:54:08 +0100863 while (!cpu_online(cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 cpu_relax();
865 return 0;
866}
867
Heiko Carstensd80512f2013-12-16 14:31:26 +0100868static unsigned int setup_possible_cpus __initdata;
Heiko Carstens48483b32008-01-26 14:11:05 +0100869
Heiko Carstensd80512f2013-12-16 14:31:26 +0100870static int __init _setup_possible_cpus(char *s)
871{
872 get_option(&s, &setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800873 return 0;
874}
Heiko Carstensd80512f2013-12-16 14:31:26 +0100875early_param("possible_cpus", _setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800876
Heiko Carstens48483b32008-01-26 14:11:05 +0100877#ifdef CONFIG_HOTPLUG_CPU
878
Heiko Carstens39ce0102007-04-27 16:02:00 +0200879int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400881 unsigned long cregs[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200883 /* Handle possible pending IPIs */
884 smp_handle_ext_call();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400885 set_cpu_online(smp_processor_id(), false);
886 /* Disable pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100887 pfault_fini();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400888 /* Disable interrupt sources via control register. */
889 __ctl_store(cregs, 0, 15);
890 cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */
891 cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */
892 cregs[14] &= ~0x1f000000UL; /* disable most machine checks */
893 __ctl_load(cregs, 0, 15);
Martin Schwidefskyfe0f4972014-09-30 17:37:52 +0200894 clear_cpu_flag(CIF_NOHZ_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return 0;
896}
897
Heiko Carstens39ce0102007-04-27 16:02:00 +0200898void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400900 struct pcpu *pcpu;
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 /* Wait until target cpu is down */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400903 pcpu = pcpu_devices + cpu;
904 while (!pcpu_stopped(pcpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 cpu_relax();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400906 pcpu_free_lowcore(pcpu);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200907 cpumask_clear_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky64f31d52016-05-25 09:45:26 +0200908 cpumask_clear_cpu(cpu, &init_mm.context.cpu_attach_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
Heiko Carstensb456d942011-05-23 10:24:33 +0200911void __noreturn cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 idle_task_exit();
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200914 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400915 for (;;) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
Heiko Carstens255acee2006-02-17 13:52:46 -0800918#endif /* CONFIG_HOTPLUG_CPU */
919
Heiko Carstensd80512f2013-12-16 14:31:26 +0100920void __init smp_fill_possible_mask(void)
921{
David Hildenbrand9747bc42015-05-06 09:29:53 +0200922 unsigned int possible, sclp_max, cpu;
Heiko Carstensd80512f2013-12-16 14:31:26 +0100923
David Hildenbrand3a9f3fe2015-05-06 13:19:29 +0200924 sclp_max = max(sclp.mtid, sclp.mtid_cp) + 1;
925 sclp_max = min(smp_max_threads, sclp_max);
Dan Carpenter61282af2016-07-18 09:02:56 +0200926 sclp_max = (sclp.max_cores * sclp_max) ?: nr_cpu_ids;
Heiko Carstenscf813db2014-03-10 14:50:16 +0100927 possible = setup_possible_cpus ?: nr_cpu_ids;
David Hildenbrand9747bc42015-05-06 09:29:53 +0200928 possible = min(possible, sclp_max);
Heiko Carstensd80512f2013-12-16 14:31:26 +0100929 for (cpu = 0; cpu < possible && cpu < nr_cpu_ids; cpu++)
930 set_cpu_possible(cpu, true);
931}
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933void __init smp_prepare_cpus(unsigned int max_cpus)
934{
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100935 unsigned long size;
936
Heiko Carstens39ce0102007-04-27 16:02:00 +0200937 /* request the 0x1201 emergency signal external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200938 if (register_external_irq(EXT_IRQ_EMERGENCY_SIG, do_ext_call_interrupt))
Heiko Carstens39ce0102007-04-27 16:02:00 +0200939 panic("Couldn't request external interrupt 0x1201");
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100940 /* request the 0x1202 external call external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200941 if (register_external_irq(EXT_IRQ_EXTERNAL_CALL, do_ext_call_interrupt))
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100942 panic("Couldn't request external interrupt 0x1202");
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100943 /* create slab cache for the machine-check-extended-save-areas */
944 if (MACHINE_HAS_VX || MACHINE_HAS_GS) {
945 size = 1UL << (MACHINE_HAS_GS ? 11 : 10);
946 pcpu_mcesa_cache = kmem_cache_create("nmi_save_areas",
947 size, size, 0, NULL);
948 if (!pcpu_mcesa_cache)
949 panic("Couldn't create nmi save area cache");
950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200953void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400955 struct pcpu *pcpu = pcpu_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Heiko Carstens0861b5a2017-03-16 11:02:36 +0100957 WARN_ON(!cpu_present(0) || !cpu_online(0));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400958 pcpu->state = CPU_STATE_CONFIGURED;
Heiko Carstensc667aea2015-12-31 10:29:00 +0100959 pcpu->lowcore = (struct lowcore *)(unsigned long) store_prefix();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400960 S390_lowcore.percpu_offset = __per_cpu_offset[0];
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200961 smp_cpu_set_polarization(0, POLARIZATION_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200964void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
Heiko Carstens02beacc2010-01-13 20:44:34 +0100968void __init smp_setup_processor_id(void)
969{
Heiko Carstens0861b5a2017-03-16 11:02:36 +0100970 pcpu_devices[0].address = stap();
Heiko Carstens02beacc2010-01-13 20:44:34 +0100971 S390_lowcore.cpu_nr = 0;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200972 S390_lowcore.spinlock_lockval = arch_spin_lockval(0);
Martin Schwidefskyb96f7d82017-03-24 17:25:02 +0100973 S390_lowcore.spinlock_index = 0;
Heiko Carstens02beacc2010-01-13 20:44:34 +0100974}
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976/*
977 * the frequency of the profiling timer can be changed
978 * by writing a multiplier value into /proc/profile.
979 *
980 * usually you want to run this on all CPUs ;)
981 */
982int setup_profiling_timer(unsigned int multiplier)
983{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200984 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Heiko Carstens08d07962008-01-26 14:10:56 +0100987#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800988static ssize_t cpu_configure_show(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400989 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100990{
991 ssize_t count;
992
993 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400994 count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state);
Heiko Carstens08d07962008-01-26 14:10:56 +0100995 mutex_unlock(&smp_cpu_state_mutex);
996 return count;
997}
998
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800999static ssize_t cpu_configure_store(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001000 struct device_attribute *attr,
1001 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +01001002{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001003 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001004 int cpu, val, rc, i;
Heiko Carstens08d07962008-01-26 14:10:56 +01001005 char delim;
1006
1007 if (sscanf(buf, "%d %c", &val, &delim) != 1)
1008 return -EINVAL;
1009 if (val != 0 && val != 1)
1010 return -EINVAL;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001011 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001012 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +01001013 rc = -EBUSY;
Heiko Carstens2c2df112010-02-26 22:37:34 +01001014 /* disallow configuration changes of online cpus and cpu 0 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001015 cpu = dev->id;
Heiko Carstens54231452016-12-05 21:18:58 +01001016 cpu = smp_get_base_cpu(cpu);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001017 if (cpu == 0)
Heiko Carstens08d07962008-01-26 14:10:56 +01001018 goto out;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001019 for (i = 0; i <= smp_cpu_mtid; i++)
1020 if (cpu_online(cpu + i))
1021 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001022 pcpu = pcpu_devices + cpu;
Heiko Carstens08d07962008-01-26 14:10:56 +01001023 rc = 0;
1024 switch (val) {
1025 case 0:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001026 if (pcpu->state != CPU_STATE_CONFIGURED)
1027 break;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001028 rc = sclp_core_deconfigure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001029 if (rc)
1030 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001031 for (i = 0; i <= smp_cpu_mtid; i++) {
1032 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
1033 continue;
1034 pcpu[i].state = CPU_STATE_STANDBY;
1035 smp_cpu_set_polarization(cpu + i,
1036 POLARIZATION_UNKNOWN);
1037 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001038 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001039 break;
1040 case 1:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001041 if (pcpu->state != CPU_STATE_STANDBY)
1042 break;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001043 rc = sclp_core_configure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001044 if (rc)
1045 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001046 for (i = 0; i <= smp_cpu_mtid; i++) {
1047 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
1048 continue;
1049 pcpu[i].state = CPU_STATE_CONFIGURED;
1050 smp_cpu_set_polarization(cpu + i,
1051 POLARIZATION_UNKNOWN);
1052 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001053 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001054 break;
1055 default:
1056 break;
1057 }
1058out:
Heiko Carstens08d07962008-01-26 14:10:56 +01001059 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001060 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001061 return rc ? rc : count;
1062}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001063static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001064#endif /* CONFIG_HOTPLUG_CPU */
1065
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001066static ssize_t show_cpu_address(struct device *dev,
1067 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +01001068{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001069 return sprintf(buf, "%d\n", pcpu_devices[dev->id].address);
Heiko Carstens08d07962008-01-26 14:10:56 +01001070}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001071static DEVICE_ATTR(address, 0444, show_cpu_address, NULL);
Heiko Carstens08d07962008-01-26 14:10:56 +01001072
Heiko Carstens08d07962008-01-26 14:10:56 +01001073static struct attribute *cpu_common_attrs[] = {
1074#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001075 &dev_attr_configure.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001076#endif
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001077 &dev_attr_address.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001078 NULL,
1079};
1080
1081static struct attribute_group cpu_common_attr_group = {
1082 .attrs = cpu_common_attrs,
1083};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Heiko Carstens08d07962008-01-26 14:10:56 +01001085static struct attribute *cpu_online_attrs[] = {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001086 &dev_attr_idle_count.attr,
1087 &dev_attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001088 NULL,
1089};
1090
Heiko Carstens08d07962008-01-26 14:10:56 +01001091static struct attribute_group cpu_online_attr_group = {
1092 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001093};
1094
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001095static int smp_cpu_online(unsigned int cpu)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001096{
Heiko Carstens2f859d02015-02-11 12:31:03 +01001097 struct device *s = &per_cpu(cpu_device, cpu)->dev;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001098
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001099 return sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1100}
1101static int smp_cpu_pre_down(unsigned int cpu)
1102{
1103 struct device *s = &per_cpu(cpu_device, cpu)->dev;
1104
1105 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
1106 return 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001107}
1108
Paul Gortmakere2741f12013-06-18 17:04:52 -04001109static int smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +01001110{
Heiko Carstens96619fc2013-12-05 12:42:09 +01001111 struct device *s;
1112 struct cpu *c;
Heiko Carstens08d07962008-01-26 14:10:56 +01001113 int rc;
1114
Heiko Carstens96619fc2013-12-05 12:42:09 +01001115 c = kzalloc(sizeof(*c), GFP_KERNEL);
1116 if (!c)
1117 return -ENOMEM;
Heiko Carstens2f859d02015-02-11 12:31:03 +01001118 per_cpu(cpu_device, cpu) = c;
Heiko Carstens96619fc2013-12-05 12:42:09 +01001119 s = &c->dev;
Heiko Carstens08d07962008-01-26 14:10:56 +01001120 c->hotpluggable = 1;
1121 rc = register_cpu(c, cpu);
1122 if (rc)
1123 goto out;
1124 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1125 if (rc)
1126 goto out_cpu;
Heiko Carstens83a24e32011-12-27 11:27:09 +01001127 rc = topology_cpu_init(c);
1128 if (rc)
1129 goto out_topology;
1130 return 0;
1131
1132out_topology:
Heiko Carstens08d07962008-01-26 14:10:56 +01001133 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1134out_cpu:
1135#ifdef CONFIG_HOTPLUG_CPU
1136 unregister_cpu(c);
1137#endif
1138out:
1139 return rc;
1140}
1141
1142#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001143
Heiko Carstens67060d92008-05-30 10:03:27 +02001144int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001145{
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001146 struct sclp_core_info *info;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001147 int nr;
Heiko Carstens08d07962008-01-26 14:10:56 +01001148
Heiko Carstensaf51160e2016-12-03 09:48:01 +01001149 info = kzalloc(sizeof(*info), GFP_KERNEL);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001150 if (!info)
1151 return -ENOMEM;
Heiko Carstensaf51160e2016-12-03 09:48:01 +01001152 smp_get_core_info(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001153 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001154 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001155 nr = __smp_rescan_cpus(info, 1);
Heiko Carstens08d07962008-01-26 14:10:56 +01001156 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001157 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001158 kfree(info);
1159 if (nr)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001160 topology_schedule_update();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001161 return 0;
Heiko Carstens1e489512008-04-30 13:38:37 +02001162}
1163
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001164static ssize_t __ref rescan_store(struct device *dev,
1165 struct device_attribute *attr,
Andi Kleenc9be0a32010-01-05 12:47:58 +01001166 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001167 size_t count)
1168{
1169 int rc;
1170
1171 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001172 return rc ? rc : count;
1173}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001174static DEVICE_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001175#endif /* CONFIG_HOTPLUG_CPU */
1176
Heiko Carstens83a24e32011-12-27 11:27:09 +01001177static int __init s390_smp_init(void)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001178{
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301179 int cpu, rc = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001180
Heiko Carstens08d07962008-01-26 14:10:56 +01001181#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001182 rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001183 if (rc)
1184 return rc;
1185#endif
1186 for_each_present_cpu(cpu) {
1187 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001188 if (rc)
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301189 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301191
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001192 rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "s390/smp:online",
1193 smp_cpu_online, smp_cpu_pre_down);
Heiko Carstense1108e82017-08-14 07:54:32 +02001194 rc = rc <= 0 ? rc : 0;
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301195out:
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301196 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
Heiko Carstens83a24e32011-12-27 11:27:09 +01001198subsys_initcall(s390_smp_init);