blob: cd4334e80b64cdb7908842f44015183be17c62f2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04003 * SMP related functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02005 * Copyright IBM Corp. 1999, 2012
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04006 * Author(s): Denis Joseph Barrow,
7 * Martin Schwidefsky <schwidefsky@de.ibm.com>,
8 * Heiko Carstens <heiko.carstens@de.ibm.com>,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Heiko Carstens39ce0102007-04-27 16:02:00 +020010 * based on other smp stuff by
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * (c) 1995 Alan Cox, CymruNET Ltd <alan@cymru.net>
12 * (c) 1998 Ingo Molnar
13 *
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040014 * The code outside of smp.c uses logical cpu numbers, only smp.c does
15 * the translation of logical to physical cpu ids. All new code that
16 * operates on physical cpu numbers needs to go into smp.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
Martin Schwidefsky395d31d2008-12-25 13:39:50 +010019#define KMSG_COMPONENT "cpu"
20#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
21
Heiko Carstensf2308862011-01-05 12:48:08 +010022#include <linux/workqueue.h>
Heiko Carstensaf51160e2016-12-03 09:48:01 +010023#include <linux/bootmem.h>
Paul Gortmaker3994a522017-02-09 15:20:23 -050024#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040027#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/spinlock.h>
29#include <linux/kernel_stat.h>
Christian Borntraeger9cf8edb2017-05-18 13:04:16 +020030#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/interrupt.h>
Christian Borntraeger3324e602009-03-26 15:23:56 +010033#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Ingo Molnaref8bd772017-02-08 18:51:36 +010036#include <linux/sched/hotplug.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010037#include <linux/sched/task_stack.h>
Michael Holzheu60a0c682011-10-30 15:16:40 +010038#include <linux/crash_dump.h>
Michael Holzheu1592a8e2015-05-26 19:05:23 +020039#include <linux/memblock.h>
Martin Schwidefsky00a8f882017-09-15 16:24:31 +020040#include <linux/kprobes.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010041#include <asm/asm-offsets.h>
Martin Schwidefsky1ec27722015-08-20 17:28:44 +020042#include <asm/diag.h>
Heiko Carstens1e3cab22012-03-30 09:40:55 +020043#include <asm/switch_to.h>
44#include <asm/facility.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010045#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010046#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/tlbflush.h>
Martin Schwidefsky27f6b412012-07-20 11:15:08 +020049#include <asm/vtimer.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020050#include <asm/lowcore.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010051#include <asm/sclp.h>
Martin Schwidefskyc742b312008-12-31 15:11:42 +010052#include <asm/vdso.h>
Michael Holzheu3ab121a2012-03-11 11:59:32 -040053#include <asm/debug.h>
Michael Holzheu4857d4b2012-03-11 11:59:34 -040054#include <asm/os_info.h>
Heiko Carstensa9ae32c2012-06-04 12:55:15 +020055#include <asm/sigp.h>
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +020056#include <asm/idle.h>
Martin Schwidefsky916cda12016-01-26 14:10:34 +010057#include <asm/nmi.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020058#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040060enum {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040061 ec_schedule = 0,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040062 ec_call_function_single,
63 ec_stop_cpu,
64};
Heiko Carstens08d07962008-01-26 14:10:56 +010065
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040066enum {
Heiko Carstens08d07962008-01-26 14:10:56 +010067 CPU_STATE_STANDBY,
68 CPU_STATE_CONFIGURED,
69};
70
Heiko Carstens2f859d02015-02-11 12:31:03 +010071static DEFINE_PER_CPU(struct cpu *, cpu_device);
72
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040073struct pcpu {
Heiko Carstensc667aea2015-12-31 10:29:00 +010074 struct lowcore *lowcore; /* lowcore page(s) for the cpu */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040075 unsigned long ec_mask; /* bit mask for ec_xxx functions */
Heiko Carstens3dbc78d2015-12-08 14:10:12 +010076 unsigned long ec_clk; /* sigp timestamp for ec_xxx */
Heiko Carstens2f859d02015-02-11 12:31:03 +010077 signed char state; /* physical cpu state */
78 signed char polarization; /* physical polarization */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040079 u16 address; /* physical cpu address */
80};
81
Martin Schwidefskyd08d9432015-06-18 14:23:00 +020082static u8 boot_core_type;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040083static struct pcpu pcpu_devices[NR_CPUS];
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;
Heiko Carstensc667aea2015-12-31 10:29:00 +0100195 struct lowcore *lc;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400196
197 if (pcpu != &pcpu_devices[0]) {
Heiko Carstensc667aea2015-12-31 10:29:00 +0100198 pcpu->lowcore = (struct lowcore *)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400199 __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100200 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
201 panic_stack = __get_free_page(GFP_KERNEL);
202 if (!pcpu->lowcore || !panic_stack || !async_stack)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400203 goto out;
Heiko Carstens2f859d02015-02-11 12:31:03 +0100204 } else {
205 async_stack = pcpu->lowcore->async_stack - ASYNC_FRAME_OFFSET;
206 panic_stack = pcpu->lowcore->panic_stack - PANIC_FRAME_OFFSET;
Michael Holzheu1943f532011-10-30 15:16:38 +0100207 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400208 lc = pcpu->lowcore;
209 memcpy(lc, &S390_lowcore, 512);
210 memset((char *) lc + 512, 0, sizeof(*lc) - 512);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100211 lc->async_stack = async_stack + ASYNC_FRAME_OFFSET;
212 lc->panic_stack = panic_stack + PANIC_FRAME_OFFSET;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400213 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200214 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefskyb96f7d82017-03-24 17:25:02 +0100215 lc->spinlock_index = 0;
Martin Schwidefsky6c815112017-10-12 13:24:47 +0200216 if (nmi_alloc_per_cpu(lc))
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400217 goto out;
Martin Schwidefsky6c815112017-10-12 13:24:47 +0200218 if (vdso_alloc_per_cpu(lc))
219 goto out_mcesa;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400220 lowcore_ptr[cpu] = lc;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200221 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, (u32)(unsigned long) lc);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400222 return 0;
Martin Schwidefsky6c815112017-10-12 13:24:47 +0200223
224out_mcesa:
225 nmi_free_per_cpu(lc);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400226out:
227 if (pcpu != &pcpu_devices[0]) {
Heiko Carstens2f859d02015-02-11 12:31:03 +0100228 free_page(panic_stack);
229 free_pages(async_stack, ASYNC_ORDER);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400230 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
231 }
232 return -ENOMEM;
Michael Holzheu1943f532011-10-30 15:16:38 +0100233}
234
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200235#ifdef CONFIG_HOTPLUG_CPU
236
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400237static void pcpu_free_lowcore(struct pcpu *pcpu)
Heiko Carstens2c2df112010-02-26 22:37:34 +0100238{
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200239 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400240 lowcore_ptr[pcpu - pcpu_devices] = NULL;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400241 vdso_free_per_cpu(pcpu->lowcore);
Martin Schwidefsky6c815112017-10-12 13:24:47 +0200242 nmi_free_per_cpu(pcpu->lowcore);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100243 if (pcpu == &pcpu_devices[0])
244 return;
245 free_page(pcpu->lowcore->panic_stack-PANIC_FRAME_OFFSET);
246 free_pages(pcpu->lowcore->async_stack-ASYNC_FRAME_OFFSET, ASYNC_ORDER);
247 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
Heiko Carstens2c2df112010-02-26 22:37:34 +0100248}
249
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200250#endif /* CONFIG_HOTPLUG_CPU */
251
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400252static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu)
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100253{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100254 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400255
Martin Schwidefsky64f31d52016-05-25 09:45:26 +0200256 cpumask_set_cpu(cpu, &init_mm.context.cpu_attach_mask);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200257 cpumask_set_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400258 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200259 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefskyb96f7d82017-03-24 17:25:02 +0100260 lc->spinlock_index = 0;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400261 lc->percpu_offset = __per_cpu_offset[cpu];
262 lc->kernel_asce = S390_lowcore.kernel_asce;
263 lc->machine_flags = S390_lowcore.machine_flags;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400264 lc->user_timer = lc->system_timer = lc->steal_timer = 0;
265 __ctl_store(lc->cregs_save_area, 0, 15);
266 save_access_regs((unsigned int *) lc->access_regs_save_area);
267 memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list,
268 MAX_FACILITY_BIT/8);
Martin Schwidefskyb96f7d82017-03-24 17:25:02 +0100269 arch_spin_lock_setup(cpu);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100270}
271
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400272static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk)
273{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100274 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400275
Martin Schwidefskydc7ee002013-04-24 10:20:43 +0200276 lc->kernel_stack = (unsigned long) task_stack_page(tsk)
277 + THREAD_SIZE - STACK_FRAME_OVERHEAD - sizeof(struct pt_regs);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400278 lc->current_task = (unsigned long) tsk;
Christian Borntraegere22cf8c2015-10-06 18:06:15 +0200279 lc->lpp = LPP_MAGIC;
280 lc->current_pid = tsk->pid;
Martin Schwidefsky90c53e62016-11-08 12:15:59 +0100281 lc->user_timer = tsk->thread.user_timer;
Christian Borntraegerb7662ee2017-10-04 14:46:17 +0200282 lc->guest_timer = tsk->thread.guest_timer;
Martin Schwidefsky90c53e62016-11-08 12:15:59 +0100283 lc->system_timer = tsk->thread.system_timer;
Christian Borntraegerb7662ee2017-10-04 14:46:17 +0200284 lc->hardirq_timer = tsk->thread.hardirq_timer;
285 lc->softirq_timer = tsk->thread.softirq_timer;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400286 lc->steal_timer = 0;
287}
288
289static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data)
290{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100291 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400292
293 lc->restart_stack = lc->kernel_stack;
294 lc->restart_fn = (unsigned long) func;
295 lc->restart_data = (unsigned long) data;
296 lc->restart_source = -1UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200297 pcpu_sigp_retry(pcpu, SIGP_RESTART, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400298}
299
300/*
301 * Call function via PSW restart on pcpu and stop the current cpu.
302 */
303static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *),
304 void *data, unsigned long stack)
305{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100306 struct lowcore *lc = lowcore_ptr[pcpu - pcpu_devices];
Heiko Carstensfbe76562012-06-05 09:59:52 +0200307 unsigned long source_cpu = stap();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400308
Martin Schwidefskye258d712013-09-24 09:14:56 +0200309 __load_psw_mask(PSW_KERNEL_BITS);
Heiko Carstensfbe76562012-06-05 09:59:52 +0200310 if (pcpu->address == source_cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400311 func(data); /* should not return */
312 /* Stop target cpu (if func returns this stops the current cpu). */
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200313 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400314 /* Restart func on the target cpu and stop the current cpu. */
Heiko Carstensfbe76562012-06-05 09:59:52 +0200315 mem_assign_absolute(lc->restart_stack, stack);
316 mem_assign_absolute(lc->restart_fn, (unsigned long) func);
317 mem_assign_absolute(lc->restart_data, (unsigned long) data);
318 mem_assign_absolute(lc->restart_source, source_cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400319 asm volatile(
Heiko Carstenseb546192012-06-04 15:05:43 +0200320 "0: sigp 0,%0,%2 # sigp restart to target cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400321 " brc 2,0b # busy, try again\n"
Heiko Carstenseb546192012-06-04 15:05:43 +0200322 "1: sigp 0,%1,%3 # sigp stop to current cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400323 " brc 2,1b # busy, try again\n"
Heiko Carstensfbe76562012-06-05 09:59:52 +0200324 : : "d" (pcpu->address), "d" (source_cpu),
Heiko Carstenseb546192012-06-04 15:05:43 +0200325 "K" (SIGP_RESTART), "K" (SIGP_STOP)
326 : "0", "1", "cc");
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400327 for (;;) ;
328}
329
330/*
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100331 * Enable additional logical cpus for multi-threading.
332 */
333static int pcpu_set_smt(unsigned int mtid)
334{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100335 int cc;
336
337 if (smp_cpu_mtid == mtid)
338 return 0;
Heiko Carstens80a60f62016-06-20 14:04:17 +0200339 cc = __pcpu_sigp(0, SIGP_SET_MULTI_THREADING, mtid, NULL);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100340 if (cc == 0) {
341 smp_cpu_mtid = mtid;
342 smp_cpu_mt_shift = 0;
343 while (smp_cpu_mtid >= (1U << smp_cpu_mt_shift))
344 smp_cpu_mt_shift++;
345 pcpu_devices[0].address = stap();
346 }
347 return cc;
348}
349
350/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400351 * Call function on an online CPU.
352 */
353void smp_call_online_cpu(void (*func)(void *), void *data)
354{
355 struct pcpu *pcpu;
356
357 /* Use the current cpu if it is online. */
358 pcpu = pcpu_find_address(cpu_online_mask, stap());
359 if (!pcpu)
360 /* Use the first online cpu. */
361 pcpu = pcpu_devices + cpumask_first(cpu_online_mask);
362 pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack);
363}
364
365/*
366 * Call function on the ipl CPU.
367 */
368void smp_call_ipl_cpu(void (*func)(void *), void *data)
369{
Michael Holzheuc6da39f2012-03-13 11:25:08 -0400370 pcpu_delegate(&pcpu_devices[0], func, data,
Heiko Carstens2f859d02015-02-11 12:31:03 +0100371 pcpu_devices->lowcore->panic_stack -
372 PANIC_FRAME_OFFSET + PAGE_SIZE);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400373}
374
375int smp_find_processor_id(u16 address)
376{
377 int cpu;
378
379 for_each_present_cpu(cpu)
380 if (pcpu_devices[cpu].address == address)
381 return cpu;
382 return -1;
383}
384
Christian Borntraeger760928c2016-11-02 05:08:32 -0400385bool arch_vcpu_is_preempted(int cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400386{
Christian Borntraeger760928c2016-11-02 05:08:32 -0400387 if (test_cpu_flag_of(CIF_ENABLED_WAIT, cpu))
388 return false;
389 if (pcpu_running(pcpu_devices + cpu))
390 return false;
391 return true;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400392}
Christian Borntraeger760928c2016-11-02 05:08:32 -0400393EXPORT_SYMBOL(arch_vcpu_is_preempted);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400394
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400395void smp_yield_cpu(int cpu)
396{
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200397 if (MACHINE_HAS_DIAG9C) {
Martin Schwidefskyb5a6b712015-08-21 16:05:32 +0200398 diag_stat_inc_norecursion(DIAG_STAT_X09C);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400399 asm volatile("diag %0,0,0x9c"
400 : : "d" (pcpu_devices[cpu].address));
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200401 } else if (MACHINE_HAS_DIAG44) {
Martin Schwidefskyb5a6b712015-08-21 16:05:32 +0200402 diag_stat_inc_norecursion(DIAG_STAT_X044);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400403 asm volatile("diag 0,0,0x44");
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200404 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400405}
406
407/*
408 * Send cpus emergency shutdown signal. This gives the cpus the
409 * opportunity to complete outstanding interrupts.
410 */
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200411void notrace smp_emergency_stop(void)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400412{
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200413 cpumask_t cpumask;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400414 u64 end;
415 int cpu;
416
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200417 cpumask_copy(&cpumask, cpu_online_mask);
418 cpumask_clear_cpu(smp_processor_id(), &cpumask);
419
Heiko Carstens1aae0562013-01-30 09:49:40 +0100420 end = get_tod_clock() + (1000000UL << 12);
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200421 for_each_cpu(cpu, &cpumask) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400422 struct pcpu *pcpu = pcpu_devices + cpu;
423 set_bit(ec_stop_cpu, &pcpu->ec_mask);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200424 while (__pcpu_sigp(pcpu->address, SIGP_EMERGENCY_SIGNAL,
425 0, NULL) == SIGP_CC_BUSY &&
Heiko Carstens1aae0562013-01-30 09:49:40 +0100426 get_tod_clock() < end)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400427 cpu_relax();
428 }
Heiko Carstens1aae0562013-01-30 09:49:40 +0100429 while (get_tod_clock() < end) {
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200430 for_each_cpu(cpu, &cpumask)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400431 if (pcpu_stopped(pcpu_devices + cpu))
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200432 cpumask_clear_cpu(cpu, &cpumask);
433 if (cpumask_empty(&cpumask))
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400434 break;
435 cpu_relax();
436 }
437}
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200438NOKPROBE_SYMBOL(smp_emergency_stop);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400439
440/*
441 * Stop all cpus but the current one.
442 */
Heiko Carstens677d7622007-11-20 11:13:37 +0100443void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100445 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Heiko Carstens677d7622007-11-20 11:13:37 +0100447 /* Disable all interrupts/machine checks */
Martin Schwidefskye258d712013-09-24 09:14:56 +0200448 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Christian Borntraeger3324e602009-03-26 15:23:56 +0100449 trace_hardirqs_off();
Heiko Carstens677d7622007-11-20 11:13:37 +0100450
Michael Holzheu3ab121a2012-03-11 11:59:32 -0400451 debug_set_critical();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400453 if (oops_in_progress)
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200454 smp_emergency_stop();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100455
456 /* stop all processors */
Martin Schwidefsky00a8f882017-09-15 16:24:31 +0200457 for_each_online_cpu(cpu) {
458 if (cpu == smp_processor_id())
459 continue;
460 pcpu_sigp_retry(pcpu_devices + cpu, SIGP_STOP, 0);
461 while (!pcpu_stopped(pcpu_devices + cpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100462 cpu_relax();
463 }
464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * This is the main routine where commands issued by other
468 * cpus are handled.
469 */
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200470static void smp_handle_ext_call(void)
471{
472 unsigned long bits;
473
474 /* handle bit signal external calls */
475 bits = xchg(&pcpu_devices[smp_processor_id()].ec_mask, 0);
476 if (test_bit(ec_stop_cpu, &bits))
477 smp_stop_cpu();
478 if (test_bit(ec_schedule, &bits))
479 scheduler_ipi();
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200480 if (test_bit(ec_call_function_single, &bits))
481 generic_smp_call_function_single_interrupt();
482}
483
Heiko Carstensfde15c32012-03-11 11:59:31 -0400484static void do_ext_call_interrupt(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200485 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200487 inc_irq_stat(ext_code.code == 0x1202 ? IRQEXT_EXC : IRQEXT_EMS);
488 smp_handle_ext_call();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Rusty Russell630cd042009-09-24 09:34:45 -0600491void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100492{
493 int cpu;
494
Rusty Russell630cd042009-09-24 09:34:45 -0600495 for_each_cpu(cpu, mask)
Heiko Carstensb6ed49e2013-05-21 15:34:56 +0200496 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100497}
498
499void arch_send_call_function_single_ipi(int cpu)
500{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400501 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100502}
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/*
505 * this function sends a 'reschedule' IPI to another CPU.
506 * it goes straight through and wastes no time serializing
507 * anything. Worst case is that we lose a reschedule ...
508 */
509void smp_send_reschedule(int cpu)
510{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400511 pcpu_ec_call(pcpu_devices + cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
514/*
515 * parameter area for the set/clear control bit callbacks
516 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200517struct ec_creg_mask_parms {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400518 unsigned long orval;
519 unsigned long andval;
520 int cr;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200521};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523/*
524 * callback for setting/clearing control bits
525 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200526static void smp_ctl_bit_callback(void *info)
527{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200528 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 unsigned long cregs[16];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200530
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200531 __ctl_store(cregs, 0, 15);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400532 cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200533 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536/*
537 * Set a bit in a control register of all cpus
538 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200539void smp_ctl_set_bit(int cr, int bit)
540{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400541 struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200543 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200545EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547/*
548 * Clear a bit in a control register of all cpus
549 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200550void smp_ctl_clear_bit(int cr, int bit)
551{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400552 struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), 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_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Michael Holzheubf28a592014-04-14 10:38:05 +0200558#ifdef CONFIG_CRASH_DUMP
Michael Holzheu411ed322007-04-27 16:01:49 +0200559
Heiko Carstens1af135a2015-06-26 12:10:49 +0200560int smp_store_status(int cpu)
561{
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100562 struct pcpu *pcpu = pcpu_devices + cpu;
563 unsigned long pa;
Heiko Carstens1af135a2015-06-26 12:10:49 +0200564
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100565 pa = __pa(&pcpu->lowcore->floating_pt_save_area);
566 if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_STATUS_AT_ADDRESS,
567 pa) != SIGP_CC_ORDER_CODE_ACCEPTED)
Heiko Carstens1af135a2015-06-26 12:10:49 +0200568 return -EIO;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100569 if (!MACHINE_HAS_VX && !MACHINE_HAS_GS)
Heiko Carstens1af135a2015-06-26 12:10:49 +0200570 return 0;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100571 pa = __pa(pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK);
572 if (MACHINE_HAS_GS)
573 pa |= pcpu->lowcore->mcesad & MCESA_LC_MASK;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100574 if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_ADDITIONAL_STATUS,
575 pa) != SIGP_CC_ORDER_CODE_ACCEPTED)
576 return -EIO;
Heiko Carstens1af135a2015-06-26 12:10:49 +0200577 return 0;
578}
579
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100580/*
581 * Collect CPU state of the previous, crashed system.
582 * There are four cases:
583 * 1) standard zfcp dump
584 * condition: OLDMEM_BASE == NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
585 * The state for all CPUs except the boot CPU needs to be collected
586 * with sigp stop-and-store-status. The boot CPU state is located in
587 * the absolute lowcore of the memory stored in the HSA. The zcore code
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100588 * will copy the boot CPU state from the HSA.
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100589 * 2) stand-alone kdump for SCSI (zfcp dump with swapped memory)
590 * condition: OLDMEM_BASE != NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
591 * The state for all CPUs except the boot CPU needs to be collected
592 * with sigp stop-and-store-status. The firmware or the boot-loader
593 * stored the registers of the boot CPU in the absolute lowcore in the
594 * memory of the old system.
595 * 3) kdump and the old kernel did not store the CPU state,
596 * or stand-alone kdump for DASD
597 * condition: OLDMEM_BASE != NULL && !is_kdump_kernel()
598 * The state for all CPUs except the boot CPU needs to be collected
599 * with sigp stop-and-store-status. The kexec code or the boot-loader
600 * stored the registers of the boot CPU in the memory of the old system.
601 * 4) kdump and the old kernel stored the CPU state
602 * condition: OLDMEM_BASE != NULL && is_kdump_kernel()
Martin Schwidefsky8a07dd02015-10-14 15:53:06 +0200603 * This case does not exist for s390 anymore, setup_arch explicitly
604 * deactivates the elfcorehdr= kernel parameter
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100605 */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100606static __init void smp_save_cpu_vxrs(struct save_area *sa, u16 addr,
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100607 bool is_boot_cpu, unsigned long page)
608{
609 __vector128 *vxrs = (__vector128 *) page;
610
611 if (is_boot_cpu)
612 vxrs = boot_cpu_vector_save_area;
613 else
614 __pcpu_sigp_relax(addr, SIGP_STORE_ADDITIONAL_STATUS, page);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100615 save_area_add_vxrs(sa, vxrs);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100616}
617
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100618static __init void smp_save_cpu_regs(struct save_area *sa, u16 addr,
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100619 bool is_boot_cpu, unsigned long page)
620{
621 void *regs = (void *) page;
622
623 if (is_boot_cpu)
624 copy_oldmem_kernel(regs, (void *) __LC_FPREGS_SAVE_AREA, 512);
625 else
626 __pcpu_sigp_relax(addr, SIGP_STORE_STATUS_AT_ADDRESS, page);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100627 save_area_add_regs(sa, regs);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100628}
629
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200630void __init smp_save_dump_cpus(void)
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100631{
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100632 int addr, boot_cpu_addr, max_cpu_addr;
633 struct save_area *sa;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100634 unsigned long page;
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200635 bool is_boot_cpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100636
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100637 if (!(OLDMEM_BASE || ipl_info.type == IPL_TYPE_FCP_DUMP))
638 /* No previous system present, normal boot. */
639 return;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100640 /* Allocate a page as dumping area for the store status sigps */
641 page = memblock_alloc_base(PAGE_SIZE, PAGE_SIZE, 1UL << 31);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100642 /* Set multi-threading state to the previous system. */
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200643 pcpu_set_smt(sclp.mtid_prev);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200644 boot_cpu_addr = stap();
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100645 max_cpu_addr = SCLP_MAX_CORES << sclp.mtid_prev;
646 for (addr = 0; addr <= max_cpu_addr; addr++) {
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100647 if (__pcpu_sigp_relax(addr, SIGP_SENSE, 0) ==
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200648 SIGP_CC_NOT_OPERATIONAL)
649 continue;
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200650 is_boot_cpu = (addr == boot_cpu_addr);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100651 /* Allocate save area */
652 sa = save_area_alloc(is_boot_cpu);
653 if (!sa)
654 panic("could not allocate memory for save area\n");
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100655 if (MACHINE_HAS_VX)
656 /* Get the vector registers */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100657 smp_save_cpu_vxrs(sa, addr, is_boot_cpu, page);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100658 /*
659 * For a zfcp dump OLDMEM_BASE == NULL and the registers
660 * of the boot CPU are stored in the HSA. To retrieve
661 * these registers an SCLP request is required which is
662 * done by drivers/s390/char/zcore.c:init_cpu_info()
663 */
664 if (!is_boot_cpu || OLDMEM_BASE)
665 /* Get the CPU registers */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100666 smp_save_cpu_regs(sa, addr, is_boot_cpu, page);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200667 }
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100668 memblock_free(page, PAGE_SIZE);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200669 diag308_reset();
670 pcpu_set_smt(0);
Heiko Carstens1af135a2015-06-26 12:10:49 +0200671}
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100672#endif /* CONFIG_CRASH_DUMP */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400673
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200674void smp_cpu_set_polarization(int cpu, int val)
675{
676 pcpu_devices[cpu].polarization = val;
677}
678
679int smp_cpu_get_polarization(int cpu)
680{
681 return pcpu_devices[cpu].polarization;
682}
683
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100684static void __ref smp_get_core_info(struct sclp_core_info *info, int early)
Heiko Carstens08d07962008-01-26 14:10:56 +0100685{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400686 static int use_sigp_detection;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400687 int address;
Heiko Carstens08d07962008-01-26 14:10:56 +0100688
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100689 if (use_sigp_detection || sclp_get_core_info(info, early)) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400690 use_sigp_detection = 1;
Martin Schwidefskye7086eb2015-06-17 10:45:31 +0200691 for (address = 0;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200692 address < (SCLP_MAX_CORES << smp_cpu_mt_shift);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100693 address += (1U << smp_cpu_mt_shift)) {
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100694 if (__pcpu_sigp_relax(address, SIGP_SENSE, 0) ==
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200695 SIGP_CC_NOT_OPERATIONAL)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400696 continue;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200697 info->core[info->configured].core_id =
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100698 address >> smp_cpu_mt_shift;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400699 info->configured++;
700 }
701 info->combined = info->configured;
Heiko Carstens08d07962008-01-26 14:10:56 +0100702 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100703}
704
Paul Gortmakere2741f12013-06-18 17:04:52 -0400705static int smp_add_present_cpu(int cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100706
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200707static int __smp_rescan_cpus(struct sclp_core_info *info, int sysfs_add)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400708{
709 struct pcpu *pcpu;
710 cpumask_t avail;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100711 int cpu, nr, i, j;
712 u16 address;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400713
714 nr = 0;
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200715 cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400716 cpu = cpumask_first(&avail);
717 for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200718 if (sclp.has_core_type && info->core[i].type != boot_core_type)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400719 continue;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200720 address = info->core[i].core_id << smp_cpu_mt_shift;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100721 for (j = 0; j <= smp_cpu_mtid; j++) {
722 if (pcpu_find_address(cpu_present_mask, address + j))
723 continue;
724 pcpu = pcpu_devices + cpu;
725 pcpu->address = address + j;
726 pcpu->state =
727 (cpu >= info->configured*(smp_cpu_mtid + 1)) ?
728 CPU_STATE_STANDBY : CPU_STATE_CONFIGURED;
729 smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
730 set_cpu_present(cpu, true);
731 if (sysfs_add && smp_add_present_cpu(cpu) != 0)
732 set_cpu_present(cpu, false);
733 else
734 nr++;
735 cpu = cpumask_next(cpu, &avail);
736 if (cpu >= nr_cpu_ids)
737 break;
738 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400739 }
740 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100743void __init smp_detect_cpus(void)
Heiko Carstens48483b32008-01-26 14:11:05 +0100744{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100745 unsigned int cpu, mtid, c_cpus, s_cpus;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200746 struct sclp_core_info *info;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100747 u16 address;
Heiko Carstens48483b32008-01-26 14:11:05 +0100748
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100749 /* Get CPU information */
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100750 info = memblock_virt_alloc(sizeof(*info), 8);
751 smp_get_core_info(info, 1);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100752 /* Find boot CPU type */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200753 if (sclp.has_core_type) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100754 address = stap();
755 for (cpu = 0; cpu < info->combined; cpu++)
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200756 if (info->core[cpu].core_id == address) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100757 /* The boot cpu dictates the cpu type. */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200758 boot_core_type = info->core[cpu].type;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100759 break;
760 }
761 if (cpu >= info->combined)
762 panic("Could not find boot CPU type");
Heiko Carstens48483b32008-01-26 14:11:05 +0100763 }
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100764
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100765 /* Set multi-threading state for the current system */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200766 mtid = boot_core_type ? sclp.mtid : sclp.mtid_cp;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100767 mtid = (mtid < smp_max_threads) ? mtid : smp_max_threads - 1;
768 pcpu_set_smt(mtid);
769
770 /* Print number of CPUs */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400771 c_cpus = s_cpus = 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100772 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200773 if (sclp.has_core_type &&
774 info->core[cpu].type != boot_core_type)
Heiko Carstens48483b32008-01-26 14:11:05 +0100775 continue;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100776 if (cpu < info->configured)
777 c_cpus += smp_cpu_mtid + 1;
778 else
779 s_cpus += smp_cpu_mtid + 1;
Heiko Carstens48483b32008-01-26 14:11:05 +0100780 }
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100781 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100782
783 /* Add CPUs present at boot */
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100784 get_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400785 __smp_rescan_cpus(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100786 put_online_cpus();
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100787 memblock_free_early((unsigned long)info, sizeof(*info));
Heiko Carstens48483b32008-01-26 14:11:05 +0100788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200791 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400793static void smp_start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Martin Schwidefsky1887aa02017-09-22 14:17:41 +0200795 int cpu = smp_processor_id();
796
Heiko Carstens1aae0562013-01-30 09:49:40 +0100797 S390_lowcore.last_update_clock = get_tod_clock();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400798 S390_lowcore.restart_stack = (unsigned long) restart_stack;
799 S390_lowcore.restart_fn = (unsigned long) do_restart;
800 S390_lowcore.restart_data = 0;
801 S390_lowcore.restart_source = -1UL;
802 restore_access_regs(S390_lowcore.access_regs_save_area);
803 __ctl_load(S390_lowcore.cregs_save_area, 0, 15);
Martin Schwidefskye258d712013-09-24 09:14:56 +0200804 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200805 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800806 preempt_disable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200807 init_cpu_timer();
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +0200808 vtime_init();
Heiko Carstens29b08d22006-12-04 15:40:40 +0100809 pfault_init();
Martin Schwidefsky1887aa02017-09-22 14:17:41 +0200810 notify_cpu_starting(cpu);
811 if (topology_cpu_dedicated(cpu))
812 set_cpu_flag(CIF_DEDICATED_CPU);
813 else
814 clear_cpu_flag(CIF_DEDICATED_CPU);
815 set_cpu_online(cpu, true);
Heiko Carstens93f3b2e2013-01-02 16:54:12 +0100816 inc_irq_stat(CPU_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 local_irq_enable();
Thomas Gleixnerfc6d73d2016-02-26 18:43:40 +0000818 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/* Upping and downing of CPUs */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400822int __cpu_up(unsigned int cpu, struct task_struct *tidle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400824 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100825 int base, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400827 pcpu = pcpu_devices + cpu;
828 if (pcpu->state != CPU_STATE_CONFIGURED)
Heiko Carstens08d07962008-01-26 14:10:56 +0100829 return -EIO;
Heiko Carstens54231452016-12-05 21:18:58 +0100830 base = smp_get_base_cpu(cpu);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100831 for (i = 0; i <= smp_cpu_mtid; i++) {
832 if (base + i < nr_cpu_ids)
833 if (cpu_online(base + i))
834 break;
835 }
836 /*
837 * If this is the first CPU of the core to get online
838 * do an initial CPU reset.
839 */
840 if (i > smp_cpu_mtid &&
841 pcpu_sigp_retry(pcpu_devices + base, SIGP_INITIAL_CPU_RESET, 0) !=
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200842 SIGP_CC_ORDER_CODE_ACCEPTED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400843 return -EIO;
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000844
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400845 rc = pcpu_alloc_lowcore(pcpu, cpu);
846 if (rc)
847 return rc;
848 pcpu_prepare_secondary(pcpu, cpu);
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000849 pcpu_attach_task(pcpu, tidle);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400850 pcpu_start_fn(pcpu, smp_start_secondary, NULL);
Heiko Carstensa1307bb2015-03-30 12:51:42 +0200851 /* Wait until cpu puts itself in the online & active maps */
Peter Zijlstra (Intel)e9d867a2016-03-10 12:54:08 +0100852 while (!cpu_online(cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 cpu_relax();
854 return 0;
855}
856
Heiko Carstensd80512f2013-12-16 14:31:26 +0100857static unsigned int setup_possible_cpus __initdata;
Heiko Carstens48483b32008-01-26 14:11:05 +0100858
Heiko Carstensd80512f2013-12-16 14:31:26 +0100859static int __init _setup_possible_cpus(char *s)
860{
861 get_option(&s, &setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800862 return 0;
863}
Heiko Carstensd80512f2013-12-16 14:31:26 +0100864early_param("possible_cpus", _setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800865
Heiko Carstens48483b32008-01-26 14:11:05 +0100866#ifdef CONFIG_HOTPLUG_CPU
867
Heiko Carstens39ce0102007-04-27 16:02:00 +0200868int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400870 unsigned long cregs[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200872 /* Handle possible pending IPIs */
873 smp_handle_ext_call();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400874 set_cpu_online(smp_processor_id(), false);
875 /* Disable pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100876 pfault_fini();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400877 /* Disable interrupt sources via control register. */
878 __ctl_store(cregs, 0, 15);
879 cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */
880 cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */
881 cregs[14] &= ~0x1f000000UL; /* disable most machine checks */
882 __ctl_load(cregs, 0, 15);
Martin Schwidefskyfe0f4972014-09-30 17:37:52 +0200883 clear_cpu_flag(CIF_NOHZ_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return 0;
885}
886
Heiko Carstens39ce0102007-04-27 16:02:00 +0200887void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400889 struct pcpu *pcpu;
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 /* Wait until target cpu is down */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400892 pcpu = pcpu_devices + cpu;
893 while (!pcpu_stopped(pcpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 cpu_relax();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400895 pcpu_free_lowcore(pcpu);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200896 cpumask_clear_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky64f31d52016-05-25 09:45:26 +0200897 cpumask_clear_cpu(cpu, &init_mm.context.cpu_attach_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Heiko Carstensb456d942011-05-23 10:24:33 +0200900void __noreturn cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 idle_task_exit();
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200903 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400904 for (;;) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
Heiko Carstens255acee2006-02-17 13:52:46 -0800907#endif /* CONFIG_HOTPLUG_CPU */
908
Heiko Carstensd80512f2013-12-16 14:31:26 +0100909void __init smp_fill_possible_mask(void)
910{
David Hildenbrand9747bc42015-05-06 09:29:53 +0200911 unsigned int possible, sclp_max, cpu;
Heiko Carstensd80512f2013-12-16 14:31:26 +0100912
David Hildenbrand3a9f3fe2015-05-06 13:19:29 +0200913 sclp_max = max(sclp.mtid, sclp.mtid_cp) + 1;
914 sclp_max = min(smp_max_threads, sclp_max);
Dan Carpenter61282af2016-07-18 09:02:56 +0200915 sclp_max = (sclp.max_cores * sclp_max) ?: nr_cpu_ids;
Heiko Carstenscf813db2014-03-10 14:50:16 +0100916 possible = setup_possible_cpus ?: nr_cpu_ids;
David Hildenbrand9747bc42015-05-06 09:29:53 +0200917 possible = min(possible, sclp_max);
Heiko Carstensd80512f2013-12-16 14:31:26 +0100918 for (cpu = 0; cpu < possible && cpu < nr_cpu_ids; cpu++)
919 set_cpu_possible(cpu, true);
920}
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922void __init smp_prepare_cpus(unsigned int max_cpus)
923{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200924 /* request the 0x1201 emergency signal external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200925 if (register_external_irq(EXT_IRQ_EMERGENCY_SIG, do_ext_call_interrupt))
Heiko Carstens39ce0102007-04-27 16:02:00 +0200926 panic("Couldn't request external interrupt 0x1201");
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100927 /* request the 0x1202 external call external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200928 if (register_external_irq(EXT_IRQ_EXTERNAL_CALL, do_ext_call_interrupt))
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100929 panic("Couldn't request external interrupt 0x1202");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200932void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400934 struct pcpu *pcpu = pcpu_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Heiko Carstens0861b5a2017-03-16 11:02:36 +0100936 WARN_ON(!cpu_present(0) || !cpu_online(0));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400937 pcpu->state = CPU_STATE_CONFIGURED;
Heiko Carstensc667aea2015-12-31 10:29:00 +0100938 pcpu->lowcore = (struct lowcore *)(unsigned long) store_prefix();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400939 S390_lowcore.percpu_offset = __per_cpu_offset[0];
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200940 smp_cpu_set_polarization(0, POLARIZATION_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200943void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Heiko Carstens02beacc2010-01-13 20:44:34 +0100947void __init smp_setup_processor_id(void)
948{
Heiko Carstens0861b5a2017-03-16 11:02:36 +0100949 pcpu_devices[0].address = stap();
Heiko Carstens02beacc2010-01-13 20:44:34 +0100950 S390_lowcore.cpu_nr = 0;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200951 S390_lowcore.spinlock_lockval = arch_spin_lockval(0);
Martin Schwidefskyb96f7d82017-03-24 17:25:02 +0100952 S390_lowcore.spinlock_index = 0;
Heiko Carstens02beacc2010-01-13 20:44:34 +0100953}
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955/*
956 * the frequency of the profiling timer can be changed
957 * by writing a multiplier value into /proc/profile.
958 *
959 * usually you want to run this on all CPUs ;)
960 */
961int setup_profiling_timer(unsigned int multiplier)
962{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200963 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
Heiko Carstens08d07962008-01-26 14:10:56 +0100966#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800967static ssize_t cpu_configure_show(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400968 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100969{
970 ssize_t count;
971
972 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400973 count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state);
Heiko Carstens08d07962008-01-26 14:10:56 +0100974 mutex_unlock(&smp_cpu_state_mutex);
975 return count;
976}
977
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800978static ssize_t cpu_configure_store(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400979 struct device_attribute *attr,
980 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100981{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400982 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100983 int cpu, val, rc, i;
Heiko Carstens08d07962008-01-26 14:10:56 +0100984 char delim;
985
986 if (sscanf(buf, "%d %c", &val, &delim) != 1)
987 return -EINVAL;
988 if (val != 0 && val != 1)
989 return -EINVAL;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100990 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +0200991 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100992 rc = -EBUSY;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100993 /* disallow configuration changes of online cpus and cpu 0 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400994 cpu = dev->id;
Heiko Carstens54231452016-12-05 21:18:58 +0100995 cpu = smp_get_base_cpu(cpu);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100996 if (cpu == 0)
Heiko Carstens08d07962008-01-26 14:10:56 +0100997 goto out;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100998 for (i = 0; i <= smp_cpu_mtid; i++)
999 if (cpu_online(cpu + i))
1000 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001001 pcpu = pcpu_devices + cpu;
Heiko Carstens08d07962008-01-26 14:10:56 +01001002 rc = 0;
1003 switch (val) {
1004 case 0:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001005 if (pcpu->state != CPU_STATE_CONFIGURED)
1006 break;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001007 rc = sclp_core_deconfigure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001008 if (rc)
1009 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001010 for (i = 0; i <= smp_cpu_mtid; i++) {
1011 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
1012 continue;
1013 pcpu[i].state = CPU_STATE_STANDBY;
1014 smp_cpu_set_polarization(cpu + i,
1015 POLARIZATION_UNKNOWN);
1016 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001017 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001018 break;
1019 case 1:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001020 if (pcpu->state != CPU_STATE_STANDBY)
1021 break;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001022 rc = sclp_core_configure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001023 if (rc)
1024 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001025 for (i = 0; i <= smp_cpu_mtid; i++) {
1026 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
1027 continue;
1028 pcpu[i].state = CPU_STATE_CONFIGURED;
1029 smp_cpu_set_polarization(cpu + i,
1030 POLARIZATION_UNKNOWN);
1031 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001032 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001033 break;
1034 default:
1035 break;
1036 }
1037out:
Heiko Carstens08d07962008-01-26 14:10:56 +01001038 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001039 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001040 return rc ? rc : count;
1041}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001042static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001043#endif /* CONFIG_HOTPLUG_CPU */
1044
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001045static ssize_t show_cpu_address(struct device *dev,
1046 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +01001047{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001048 return sprintf(buf, "%d\n", pcpu_devices[dev->id].address);
Heiko Carstens08d07962008-01-26 14:10:56 +01001049}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001050static DEVICE_ATTR(address, 0444, show_cpu_address, NULL);
Heiko Carstens08d07962008-01-26 14:10:56 +01001051
Heiko Carstens08d07962008-01-26 14:10:56 +01001052static struct attribute *cpu_common_attrs[] = {
1053#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001054 &dev_attr_configure.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001055#endif
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001056 &dev_attr_address.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001057 NULL,
1058};
1059
1060static struct attribute_group cpu_common_attr_group = {
1061 .attrs = cpu_common_attrs,
1062};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Heiko Carstens08d07962008-01-26 14:10:56 +01001064static struct attribute *cpu_online_attrs[] = {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001065 &dev_attr_idle_count.attr,
1066 &dev_attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001067 NULL,
1068};
1069
Heiko Carstens08d07962008-01-26 14:10:56 +01001070static struct attribute_group cpu_online_attr_group = {
1071 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001072};
1073
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001074static int smp_cpu_online(unsigned int cpu)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001075{
Heiko Carstens2f859d02015-02-11 12:31:03 +01001076 struct device *s = &per_cpu(cpu_device, cpu)->dev;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001077
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001078 return sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1079}
1080static int smp_cpu_pre_down(unsigned int cpu)
1081{
1082 struct device *s = &per_cpu(cpu_device, cpu)->dev;
1083
1084 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
1085 return 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001086}
1087
Paul Gortmakere2741f12013-06-18 17:04:52 -04001088static int smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +01001089{
Heiko Carstens96619fc2013-12-05 12:42:09 +01001090 struct device *s;
1091 struct cpu *c;
Heiko Carstens08d07962008-01-26 14:10:56 +01001092 int rc;
1093
Heiko Carstens96619fc2013-12-05 12:42:09 +01001094 c = kzalloc(sizeof(*c), GFP_KERNEL);
1095 if (!c)
1096 return -ENOMEM;
Heiko Carstens2f859d02015-02-11 12:31:03 +01001097 per_cpu(cpu_device, cpu) = c;
Heiko Carstens96619fc2013-12-05 12:42:09 +01001098 s = &c->dev;
Heiko Carstens08d07962008-01-26 14:10:56 +01001099 c->hotpluggable = 1;
1100 rc = register_cpu(c, cpu);
1101 if (rc)
1102 goto out;
1103 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1104 if (rc)
1105 goto out_cpu;
Heiko Carstens83a24e32011-12-27 11:27:09 +01001106 rc = topology_cpu_init(c);
1107 if (rc)
1108 goto out_topology;
1109 return 0;
1110
1111out_topology:
Heiko Carstens08d07962008-01-26 14:10:56 +01001112 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1113out_cpu:
1114#ifdef CONFIG_HOTPLUG_CPU
1115 unregister_cpu(c);
1116#endif
1117out:
1118 return rc;
1119}
1120
1121#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001122
Heiko Carstens67060d92008-05-30 10:03:27 +02001123int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001124{
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001125 struct sclp_core_info *info;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001126 int nr;
Heiko Carstens08d07962008-01-26 14:10:56 +01001127
Heiko Carstensaf51160e2016-12-03 09:48:01 +01001128 info = kzalloc(sizeof(*info), GFP_KERNEL);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001129 if (!info)
1130 return -ENOMEM;
Heiko Carstensaf51160e2016-12-03 09:48:01 +01001131 smp_get_core_info(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001132 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001133 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001134 nr = __smp_rescan_cpus(info, 1);
Heiko Carstens08d07962008-01-26 14:10:56 +01001135 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001136 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001137 kfree(info);
1138 if (nr)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001139 topology_schedule_update();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001140 return 0;
Heiko Carstens1e489512008-04-30 13:38:37 +02001141}
1142
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001143static ssize_t __ref rescan_store(struct device *dev,
1144 struct device_attribute *attr,
Andi Kleenc9be0a32010-01-05 12:47:58 +01001145 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001146 size_t count)
1147{
1148 int rc;
1149
1150 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001151 return rc ? rc : count;
1152}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001153static DEVICE_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001154#endif /* CONFIG_HOTPLUG_CPU */
1155
Heiko Carstens83a24e32011-12-27 11:27:09 +01001156static int __init s390_smp_init(void)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001157{
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301158 int cpu, rc = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001159
Heiko Carstens08d07962008-01-26 14:10:56 +01001160#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001161 rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001162 if (rc)
1163 return rc;
1164#endif
1165 for_each_present_cpu(cpu) {
1166 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001167 if (rc)
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301168 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301170
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001171 rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "s390/smp:online",
1172 smp_cpu_online, smp_cpu_pre_down);
Heiko Carstense1108e82017-08-14 07:54:32 +02001173 rc = rc <= 0 ? rc : 0;
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301174out:
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301175 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
Heiko Carstens83a24e32011-12-27 11:27:09 +01001177subsys_initcall(s390_smp_init);