blob: b9fc9b00d845fdd2ce8b2f83587ba3655dd736ef [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 Schwidefsky8b646bd2012-03-11 11:59:26 -0400229 if (vdso_alloc_per_cpu(lc))
230 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400231 lowcore_ptr[cpu] = lc;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200232 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, (u32)(unsigned long) lc);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400233 return 0;
234out:
235 if (pcpu != &pcpu_devices[0]) {
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100236 if (mcesa_origin)
237 kmem_cache_free(pcpu_mcesa_cache,
238 (void *) mcesa_origin);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100239 free_page(panic_stack);
240 free_pages(async_stack, ASYNC_ORDER);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400241 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
242 }
243 return -ENOMEM;
Michael Holzheu1943f532011-10-30 15:16:38 +0100244}
245
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200246#ifdef CONFIG_HOTPLUG_CPU
247
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400248static void pcpu_free_lowcore(struct pcpu *pcpu)
Heiko Carstens2c2df112010-02-26 22:37:34 +0100249{
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100250 unsigned long mcesa_origin;
251
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200252 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400253 lowcore_ptr[pcpu - pcpu_devices] = NULL;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400254 vdso_free_per_cpu(pcpu->lowcore);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100255 if (pcpu == &pcpu_devices[0])
256 return;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100257 if (MACHINE_HAS_VX || MACHINE_HAS_GS) {
258 mcesa_origin = pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK;
259 kmem_cache_free(pcpu_mcesa_cache, (void *) mcesa_origin);
260 }
Heiko Carstens2f859d02015-02-11 12:31:03 +0100261 free_page(pcpu->lowcore->panic_stack-PANIC_FRAME_OFFSET);
262 free_pages(pcpu->lowcore->async_stack-ASYNC_FRAME_OFFSET, ASYNC_ORDER);
263 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
Heiko Carstens2c2df112010-02-26 22:37:34 +0100264}
265
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200266#endif /* CONFIG_HOTPLUG_CPU */
267
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400268static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu)
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100269{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100270 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400271
Martin Schwidefsky64f31d52016-05-25 09:45:26 +0200272 cpumask_set_cpu(cpu, &init_mm.context.cpu_attach_mask);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200273 cpumask_set_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400274 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200275 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400276 lc->percpu_offset = __per_cpu_offset[cpu];
277 lc->kernel_asce = S390_lowcore.kernel_asce;
278 lc->machine_flags = S390_lowcore.machine_flags;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400279 lc->user_timer = lc->system_timer = lc->steal_timer = 0;
280 __ctl_store(lc->cregs_save_area, 0, 15);
281 save_access_regs((unsigned int *) lc->access_regs_save_area);
282 memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list,
283 MAX_FACILITY_BIT/8);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100284}
285
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400286static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk)
287{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100288 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400289
Martin Schwidefskydc7ee002013-04-24 10:20:43 +0200290 lc->kernel_stack = (unsigned long) task_stack_page(tsk)
291 + THREAD_SIZE - STACK_FRAME_OVERHEAD - sizeof(struct pt_regs);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400292 lc->current_task = (unsigned long) tsk;
Christian Borntraegere22cf8c2015-10-06 18:06:15 +0200293 lc->lpp = LPP_MAGIC;
294 lc->current_pid = tsk->pid;
Martin Schwidefsky90c53e62016-11-08 12:15:59 +0100295 lc->user_timer = tsk->thread.user_timer;
296 lc->system_timer = tsk->thread.system_timer;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400297 lc->steal_timer = 0;
298}
299
300static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data)
301{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100302 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400303
304 lc->restart_stack = lc->kernel_stack;
305 lc->restart_fn = (unsigned long) func;
306 lc->restart_data = (unsigned long) data;
307 lc->restart_source = -1UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200308 pcpu_sigp_retry(pcpu, SIGP_RESTART, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400309}
310
311/*
312 * Call function via PSW restart on pcpu and stop the current cpu.
313 */
314static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *),
315 void *data, unsigned long stack)
316{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100317 struct lowcore *lc = lowcore_ptr[pcpu - pcpu_devices];
Heiko Carstensfbe76562012-06-05 09:59:52 +0200318 unsigned long source_cpu = stap();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400319
Martin Schwidefskye258d712013-09-24 09:14:56 +0200320 __load_psw_mask(PSW_KERNEL_BITS);
Heiko Carstensfbe76562012-06-05 09:59:52 +0200321 if (pcpu->address == source_cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400322 func(data); /* should not return */
323 /* Stop target cpu (if func returns this stops the current cpu). */
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200324 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400325 /* Restart func on the target cpu and stop the current cpu. */
Heiko Carstensfbe76562012-06-05 09:59:52 +0200326 mem_assign_absolute(lc->restart_stack, stack);
327 mem_assign_absolute(lc->restart_fn, (unsigned long) func);
328 mem_assign_absolute(lc->restart_data, (unsigned long) data);
329 mem_assign_absolute(lc->restart_source, source_cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400330 asm volatile(
Heiko Carstenseb546192012-06-04 15:05:43 +0200331 "0: sigp 0,%0,%2 # sigp restart to target cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400332 " brc 2,0b # busy, try again\n"
Heiko Carstenseb546192012-06-04 15:05:43 +0200333 "1: sigp 0,%1,%3 # sigp stop to current cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400334 " brc 2,1b # busy, try again\n"
Heiko Carstensfbe76562012-06-05 09:59:52 +0200335 : : "d" (pcpu->address), "d" (source_cpu),
Heiko Carstenseb546192012-06-04 15:05:43 +0200336 "K" (SIGP_RESTART), "K" (SIGP_STOP)
337 : "0", "1", "cc");
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400338 for (;;) ;
339}
340
341/*
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100342 * Enable additional logical cpus for multi-threading.
343 */
344static int pcpu_set_smt(unsigned int mtid)
345{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100346 int cc;
347
348 if (smp_cpu_mtid == mtid)
349 return 0;
Heiko Carstens80a60f62016-06-20 14:04:17 +0200350 cc = __pcpu_sigp(0, SIGP_SET_MULTI_THREADING, mtid, NULL);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100351 if (cc == 0) {
352 smp_cpu_mtid = mtid;
353 smp_cpu_mt_shift = 0;
354 while (smp_cpu_mtid >= (1U << smp_cpu_mt_shift))
355 smp_cpu_mt_shift++;
356 pcpu_devices[0].address = stap();
357 }
358 return cc;
359}
360
361/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400362 * Call function on an online CPU.
363 */
364void smp_call_online_cpu(void (*func)(void *), void *data)
365{
366 struct pcpu *pcpu;
367
368 /* Use the current cpu if it is online. */
369 pcpu = pcpu_find_address(cpu_online_mask, stap());
370 if (!pcpu)
371 /* Use the first online cpu. */
372 pcpu = pcpu_devices + cpumask_first(cpu_online_mask);
373 pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack);
374}
375
376/*
377 * Call function on the ipl CPU.
378 */
379void smp_call_ipl_cpu(void (*func)(void *), void *data)
380{
Michael Holzheuc6da39f2012-03-13 11:25:08 -0400381 pcpu_delegate(&pcpu_devices[0], func, data,
Heiko Carstens2f859d02015-02-11 12:31:03 +0100382 pcpu_devices->lowcore->panic_stack -
383 PANIC_FRAME_OFFSET + PAGE_SIZE);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400384}
385
386int smp_find_processor_id(u16 address)
387{
388 int cpu;
389
390 for_each_present_cpu(cpu)
391 if (pcpu_devices[cpu].address == address)
392 return cpu;
393 return -1;
394}
395
Christian Borntraeger760928c2016-11-02 05:08:32 -0400396bool arch_vcpu_is_preempted(int cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400397{
Christian Borntraeger760928c2016-11-02 05:08:32 -0400398 if (test_cpu_flag_of(CIF_ENABLED_WAIT, cpu))
399 return false;
400 if (pcpu_running(pcpu_devices + cpu))
401 return false;
402 return true;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400403}
Christian Borntraeger760928c2016-11-02 05:08:32 -0400404EXPORT_SYMBOL(arch_vcpu_is_preempted);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400405
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400406void smp_yield_cpu(int cpu)
407{
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200408 if (MACHINE_HAS_DIAG9C) {
Martin Schwidefskyb5a6b712015-08-21 16:05:32 +0200409 diag_stat_inc_norecursion(DIAG_STAT_X09C);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400410 asm volatile("diag %0,0,0x9c"
411 : : "d" (pcpu_devices[cpu].address));
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200412 } else if (MACHINE_HAS_DIAG44) {
Martin Schwidefskyb5a6b712015-08-21 16:05:32 +0200413 diag_stat_inc_norecursion(DIAG_STAT_X044);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400414 asm volatile("diag 0,0,0x44");
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200415 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400416}
417
418/*
419 * Send cpus emergency shutdown signal. This gives the cpus the
420 * opportunity to complete outstanding interrupts.
421 */
Heiko Carstens63df41d62013-09-06 19:10:48 +0200422static void smp_emergency_stop(cpumask_t *cpumask)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400423{
424 u64 end;
425 int cpu;
426
Heiko Carstens1aae0562013-01-30 09:49:40 +0100427 end = get_tod_clock() + (1000000UL << 12);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400428 for_each_cpu(cpu, cpumask) {
429 struct pcpu *pcpu = pcpu_devices + cpu;
430 set_bit(ec_stop_cpu, &pcpu->ec_mask);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200431 while (__pcpu_sigp(pcpu->address, SIGP_EMERGENCY_SIGNAL,
432 0, NULL) == SIGP_CC_BUSY &&
Heiko Carstens1aae0562013-01-30 09:49:40 +0100433 get_tod_clock() < end)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400434 cpu_relax();
435 }
Heiko Carstens1aae0562013-01-30 09:49:40 +0100436 while (get_tod_clock() < end) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400437 for_each_cpu(cpu, cpumask)
438 if (pcpu_stopped(pcpu_devices + cpu))
439 cpumask_clear_cpu(cpu, cpumask);
440 if (cpumask_empty(cpumask))
441 break;
442 cpu_relax();
443 }
444}
445
446/*
447 * Stop all cpus but the current one.
448 */
Heiko Carstens677d7622007-11-20 11:13:37 +0100449void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100451 cpumask_t cpumask;
452 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Heiko Carstens677d7622007-11-20 11:13:37 +0100454 /* Disable all interrupts/machine checks */
Martin Schwidefskye258d712013-09-24 09:14:56 +0200455 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Christian Borntraeger3324e602009-03-26 15:23:56 +0100456 trace_hardirqs_off();
Heiko Carstens677d7622007-11-20 11:13:37 +0100457
Michael Holzheu3ab121a2012-03-11 11:59:32 -0400458 debug_set_critical();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100459 cpumask_copy(&cpumask, cpu_online_mask);
460 cpumask_clear_cpu(smp_processor_id(), &cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400462 if (oops_in_progress)
463 smp_emergency_stop(&cpumask);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100464
465 /* stop all processors */
466 for_each_cpu(cpu, &cpumask) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400467 struct pcpu *pcpu = pcpu_devices + cpu;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200468 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400469 while (!pcpu_stopped(pcpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100470 cpu_relax();
471 }
472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * This is the main routine where commands issued by other
476 * cpus are handled.
477 */
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200478static void smp_handle_ext_call(void)
479{
480 unsigned long bits;
481
482 /* handle bit signal external calls */
483 bits = xchg(&pcpu_devices[smp_processor_id()].ec_mask, 0);
484 if (test_bit(ec_stop_cpu, &bits))
485 smp_stop_cpu();
486 if (test_bit(ec_schedule, &bits))
487 scheduler_ipi();
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200488 if (test_bit(ec_call_function_single, &bits))
489 generic_smp_call_function_single_interrupt();
490}
491
Heiko Carstensfde15c32012-03-11 11:59:31 -0400492static void do_ext_call_interrupt(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200493 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200495 inc_irq_stat(ext_code.code == 0x1202 ? IRQEXT_EXC : IRQEXT_EMS);
496 smp_handle_ext_call();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Rusty Russell630cd042009-09-24 09:34:45 -0600499void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100500{
501 int cpu;
502
Rusty Russell630cd042009-09-24 09:34:45 -0600503 for_each_cpu(cpu, mask)
Heiko Carstensb6ed49e2013-05-21 15:34:56 +0200504 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100505}
506
507void arch_send_call_function_single_ipi(int cpu)
508{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400509 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100510}
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/*
513 * this function sends a 'reschedule' IPI to another CPU.
514 * it goes straight through and wastes no time serializing
515 * anything. Worst case is that we lose a reschedule ...
516 */
517void smp_send_reschedule(int cpu)
518{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400519 pcpu_ec_call(pcpu_devices + cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522/*
523 * parameter area for the set/clear control bit callbacks
524 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200525struct ec_creg_mask_parms {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400526 unsigned long orval;
527 unsigned long andval;
528 int cr;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200529};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531/*
532 * callback for setting/clearing control bits
533 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200534static void smp_ctl_bit_callback(void *info)
535{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200536 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 unsigned long cregs[16];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200538
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200539 __ctl_store(cregs, 0, 15);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400540 cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200541 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544/*
545 * Set a bit in a control register of all cpus
546 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200547void smp_ctl_set_bit(int cr, int bit)
548{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400549 struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200551 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200553EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555/*
556 * Clear a bit in a control register of all cpus
557 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200558void smp_ctl_clear_bit(int cr, int bit)
559{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400560 struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200562 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200564EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Michael Holzheubf28a592014-04-14 10:38:05 +0200566#ifdef CONFIG_CRASH_DUMP
Michael Holzheu411ed322007-04-27 16:01:49 +0200567
Heiko Carstens1af135a2015-06-26 12:10:49 +0200568int smp_store_status(int cpu)
569{
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100570 struct pcpu *pcpu = pcpu_devices + cpu;
571 unsigned long pa;
Heiko Carstens1af135a2015-06-26 12:10:49 +0200572
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100573 pa = __pa(&pcpu->lowcore->floating_pt_save_area);
574 if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_STATUS_AT_ADDRESS,
575 pa) != SIGP_CC_ORDER_CODE_ACCEPTED)
Heiko Carstens1af135a2015-06-26 12:10:49 +0200576 return -EIO;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100577 if (!MACHINE_HAS_VX && !MACHINE_HAS_GS)
Heiko Carstens1af135a2015-06-26 12:10:49 +0200578 return 0;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100579 pa = __pa(pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK);
580 if (MACHINE_HAS_GS)
581 pa |= pcpu->lowcore->mcesad & MCESA_LC_MASK;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100582 if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_ADDITIONAL_STATUS,
583 pa) != SIGP_CC_ORDER_CODE_ACCEPTED)
584 return -EIO;
Heiko Carstens1af135a2015-06-26 12:10:49 +0200585 return 0;
586}
587
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100588/*
589 * Collect CPU state of the previous, crashed system.
590 * There are four cases:
591 * 1) standard zfcp dump
592 * condition: OLDMEM_BASE == NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
593 * The state for all CPUs except the boot CPU needs to be collected
594 * with sigp stop-and-store-status. The boot CPU state is located in
595 * the absolute lowcore of the memory stored in the HSA. The zcore code
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100596 * will copy the boot CPU state from the HSA.
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100597 * 2) stand-alone kdump for SCSI (zfcp dump with swapped memory)
598 * condition: OLDMEM_BASE != NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
599 * The state for all CPUs except the boot CPU needs to be collected
600 * with sigp stop-and-store-status. The firmware or the boot-loader
601 * stored the registers of the boot CPU in the absolute lowcore in the
602 * memory of the old system.
603 * 3) kdump and the old kernel did not store the CPU state,
604 * or stand-alone kdump for DASD
605 * condition: OLDMEM_BASE != NULL && !is_kdump_kernel()
606 * The state for all CPUs except the boot CPU needs to be collected
607 * with sigp stop-and-store-status. The kexec code or the boot-loader
608 * stored the registers of the boot CPU in the memory of the old system.
609 * 4) kdump and the old kernel stored the CPU state
610 * condition: OLDMEM_BASE != NULL && is_kdump_kernel()
Martin Schwidefsky8a07dd02015-10-14 15:53:06 +0200611 * This case does not exist for s390 anymore, setup_arch explicitly
612 * deactivates the elfcorehdr= kernel parameter
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100613 */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100614static __init void smp_save_cpu_vxrs(struct save_area *sa, u16 addr,
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100615 bool is_boot_cpu, unsigned long page)
616{
617 __vector128 *vxrs = (__vector128 *) page;
618
619 if (is_boot_cpu)
620 vxrs = boot_cpu_vector_save_area;
621 else
622 __pcpu_sigp_relax(addr, SIGP_STORE_ADDITIONAL_STATUS, page);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100623 save_area_add_vxrs(sa, vxrs);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100624}
625
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100626static __init void smp_save_cpu_regs(struct save_area *sa, u16 addr,
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100627 bool is_boot_cpu, unsigned long page)
628{
629 void *regs = (void *) page;
630
631 if (is_boot_cpu)
632 copy_oldmem_kernel(regs, (void *) __LC_FPREGS_SAVE_AREA, 512);
633 else
634 __pcpu_sigp_relax(addr, SIGP_STORE_STATUS_AT_ADDRESS, page);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100635 save_area_add_regs(sa, regs);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100636}
637
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200638void __init smp_save_dump_cpus(void)
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100639{
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100640 int addr, boot_cpu_addr, max_cpu_addr;
641 struct save_area *sa;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100642 unsigned long page;
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200643 bool is_boot_cpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100644
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100645 if (!(OLDMEM_BASE || ipl_info.type == IPL_TYPE_FCP_DUMP))
646 /* No previous system present, normal boot. */
647 return;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100648 /* Allocate a page as dumping area for the store status sigps */
649 page = memblock_alloc_base(PAGE_SIZE, PAGE_SIZE, 1UL << 31);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100650 /* Set multi-threading state to the previous system. */
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200651 pcpu_set_smt(sclp.mtid_prev);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200652 boot_cpu_addr = stap();
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100653 max_cpu_addr = SCLP_MAX_CORES << sclp.mtid_prev;
654 for (addr = 0; addr <= max_cpu_addr; addr++) {
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100655 if (__pcpu_sigp_relax(addr, SIGP_SENSE, 0) ==
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200656 SIGP_CC_NOT_OPERATIONAL)
657 continue;
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200658 is_boot_cpu = (addr == boot_cpu_addr);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100659 /* Allocate save area */
660 sa = save_area_alloc(is_boot_cpu);
661 if (!sa)
662 panic("could not allocate memory for save area\n");
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100663 if (MACHINE_HAS_VX)
664 /* Get the vector registers */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100665 smp_save_cpu_vxrs(sa, addr, is_boot_cpu, page);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100666 /*
667 * For a zfcp dump OLDMEM_BASE == NULL and the registers
668 * of the boot CPU are stored in the HSA. To retrieve
669 * these registers an SCLP request is required which is
670 * done by drivers/s390/char/zcore.c:init_cpu_info()
671 */
672 if (!is_boot_cpu || OLDMEM_BASE)
673 /* Get the CPU registers */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100674 smp_save_cpu_regs(sa, addr, is_boot_cpu, page);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200675 }
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100676 memblock_free(page, PAGE_SIZE);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200677 diag308_reset();
678 pcpu_set_smt(0);
Heiko Carstens1af135a2015-06-26 12:10:49 +0200679}
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100680#endif /* CONFIG_CRASH_DUMP */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400681
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200682void smp_cpu_set_polarization(int cpu, int val)
683{
684 pcpu_devices[cpu].polarization = val;
685}
686
687int smp_cpu_get_polarization(int cpu)
688{
689 return pcpu_devices[cpu].polarization;
690}
691
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100692static void __ref smp_get_core_info(struct sclp_core_info *info, int early)
Heiko Carstens08d07962008-01-26 14:10:56 +0100693{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400694 static int use_sigp_detection;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400695 int address;
Heiko Carstens08d07962008-01-26 14:10:56 +0100696
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100697 if (use_sigp_detection || sclp_get_core_info(info, early)) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400698 use_sigp_detection = 1;
Martin Schwidefskye7086eb2015-06-17 10:45:31 +0200699 for (address = 0;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200700 address < (SCLP_MAX_CORES << smp_cpu_mt_shift);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100701 address += (1U << smp_cpu_mt_shift)) {
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100702 if (__pcpu_sigp_relax(address, SIGP_SENSE, 0) ==
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200703 SIGP_CC_NOT_OPERATIONAL)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400704 continue;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200705 info->core[info->configured].core_id =
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100706 address >> smp_cpu_mt_shift;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400707 info->configured++;
708 }
709 info->combined = info->configured;
Heiko Carstens08d07962008-01-26 14:10:56 +0100710 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100711}
712
Paul Gortmakere2741f12013-06-18 17:04:52 -0400713static int smp_add_present_cpu(int cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100714
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200715static int __smp_rescan_cpus(struct sclp_core_info *info, int sysfs_add)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400716{
717 struct pcpu *pcpu;
718 cpumask_t avail;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100719 int cpu, nr, i, j;
720 u16 address;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400721
722 nr = 0;
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200723 cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400724 cpu = cpumask_first(&avail);
725 for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200726 if (sclp.has_core_type && info->core[i].type != boot_core_type)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400727 continue;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200728 address = info->core[i].core_id << smp_cpu_mt_shift;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100729 for (j = 0; j <= smp_cpu_mtid; j++) {
730 if (pcpu_find_address(cpu_present_mask, address + j))
731 continue;
732 pcpu = pcpu_devices + cpu;
733 pcpu->address = address + j;
734 pcpu->state =
735 (cpu >= info->configured*(smp_cpu_mtid + 1)) ?
736 CPU_STATE_STANDBY : CPU_STATE_CONFIGURED;
737 smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
738 set_cpu_present(cpu, true);
739 if (sysfs_add && smp_add_present_cpu(cpu) != 0)
740 set_cpu_present(cpu, false);
741 else
742 nr++;
743 cpu = cpumask_next(cpu, &avail);
744 if (cpu >= nr_cpu_ids)
745 break;
746 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400747 }
748 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100751void __init smp_detect_cpus(void)
Heiko Carstens48483b32008-01-26 14:11:05 +0100752{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100753 unsigned int cpu, mtid, c_cpus, s_cpus;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200754 struct sclp_core_info *info;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100755 u16 address;
Heiko Carstens48483b32008-01-26 14:11:05 +0100756
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100757 /* Get CPU information */
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100758 info = memblock_virt_alloc(sizeof(*info), 8);
759 smp_get_core_info(info, 1);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100760 /* Find boot CPU type */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200761 if (sclp.has_core_type) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100762 address = stap();
763 for (cpu = 0; cpu < info->combined; cpu++)
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200764 if (info->core[cpu].core_id == address) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100765 /* The boot cpu dictates the cpu type. */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200766 boot_core_type = info->core[cpu].type;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100767 break;
768 }
769 if (cpu >= info->combined)
770 panic("Could not find boot CPU type");
Heiko Carstens48483b32008-01-26 14:11:05 +0100771 }
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100772
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100773 /* Set multi-threading state for the current system */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200774 mtid = boot_core_type ? sclp.mtid : sclp.mtid_cp;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100775 mtid = (mtid < smp_max_threads) ? mtid : smp_max_threads - 1;
776 pcpu_set_smt(mtid);
777
778 /* Print number of CPUs */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400779 c_cpus = s_cpus = 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100780 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200781 if (sclp.has_core_type &&
782 info->core[cpu].type != boot_core_type)
Heiko Carstens48483b32008-01-26 14:11:05 +0100783 continue;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100784 if (cpu < info->configured)
785 c_cpus += smp_cpu_mtid + 1;
786 else
787 s_cpus += smp_cpu_mtid + 1;
Heiko Carstens48483b32008-01-26 14:11:05 +0100788 }
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100789 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100790
791 /* Add CPUs present at boot */
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100792 get_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400793 __smp_rescan_cpus(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100794 put_online_cpus();
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100795 memblock_free_early((unsigned long)info, sizeof(*info));
Heiko Carstens48483b32008-01-26 14:11:05 +0100796}
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200799 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400801static void smp_start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Martin Schwidefsky1887aa02017-09-22 14:17:41 +0200803 int cpu = smp_processor_id();
804
Heiko Carstens1aae0562013-01-30 09:49:40 +0100805 S390_lowcore.last_update_clock = get_tod_clock();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400806 S390_lowcore.restart_stack = (unsigned long) restart_stack;
807 S390_lowcore.restart_fn = (unsigned long) do_restart;
808 S390_lowcore.restart_data = 0;
809 S390_lowcore.restart_source = -1UL;
810 restore_access_regs(S390_lowcore.access_regs_save_area);
811 __ctl_load(S390_lowcore.cregs_save_area, 0, 15);
Martin Schwidefskye258d712013-09-24 09:14:56 +0200812 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200813 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800814 preempt_disable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200815 init_cpu_timer();
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +0200816 vtime_init();
Heiko Carstens29b08d22006-12-04 15:40:40 +0100817 pfault_init();
Martin Schwidefsky1887aa02017-09-22 14:17:41 +0200818 notify_cpu_starting(cpu);
819 if (topology_cpu_dedicated(cpu))
820 set_cpu_flag(CIF_DEDICATED_CPU);
821 else
822 clear_cpu_flag(CIF_DEDICATED_CPU);
823 set_cpu_online(cpu, true);
Heiko Carstens93f3b2e2013-01-02 16:54:12 +0100824 inc_irq_stat(CPU_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 local_irq_enable();
Thomas Gleixnerfc6d73d2016-02-26 18:43:40 +0000826 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829/* Upping and downing of CPUs */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400830int __cpu_up(unsigned int cpu, struct task_struct *tidle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400832 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100833 int base, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400835 pcpu = pcpu_devices + cpu;
836 if (pcpu->state != CPU_STATE_CONFIGURED)
Heiko Carstens08d07962008-01-26 14:10:56 +0100837 return -EIO;
Heiko Carstens54231452016-12-05 21:18:58 +0100838 base = smp_get_base_cpu(cpu);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100839 for (i = 0; i <= smp_cpu_mtid; i++) {
840 if (base + i < nr_cpu_ids)
841 if (cpu_online(base + i))
842 break;
843 }
844 /*
845 * If this is the first CPU of the core to get online
846 * do an initial CPU reset.
847 */
848 if (i > smp_cpu_mtid &&
849 pcpu_sigp_retry(pcpu_devices + base, SIGP_INITIAL_CPU_RESET, 0) !=
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200850 SIGP_CC_ORDER_CODE_ACCEPTED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400851 return -EIO;
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000852
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400853 rc = pcpu_alloc_lowcore(pcpu, cpu);
854 if (rc)
855 return rc;
856 pcpu_prepare_secondary(pcpu, cpu);
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000857 pcpu_attach_task(pcpu, tidle);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400858 pcpu_start_fn(pcpu, smp_start_secondary, NULL);
Heiko Carstensa1307bb2015-03-30 12:51:42 +0200859 /* Wait until cpu puts itself in the online & active maps */
Peter Zijlstra (Intel)e9d867a2016-03-10 12:54:08 +0100860 while (!cpu_online(cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 cpu_relax();
862 return 0;
863}
864
Heiko Carstensd80512f2013-12-16 14:31:26 +0100865static unsigned int setup_possible_cpus __initdata;
Heiko Carstens48483b32008-01-26 14:11:05 +0100866
Heiko Carstensd80512f2013-12-16 14:31:26 +0100867static int __init _setup_possible_cpus(char *s)
868{
869 get_option(&s, &setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800870 return 0;
871}
Heiko Carstensd80512f2013-12-16 14:31:26 +0100872early_param("possible_cpus", _setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800873
Heiko Carstens48483b32008-01-26 14:11:05 +0100874#ifdef CONFIG_HOTPLUG_CPU
875
Heiko Carstens39ce0102007-04-27 16:02:00 +0200876int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400878 unsigned long cregs[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200880 /* Handle possible pending IPIs */
881 smp_handle_ext_call();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400882 set_cpu_online(smp_processor_id(), false);
883 /* Disable pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100884 pfault_fini();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400885 /* Disable interrupt sources via control register. */
886 __ctl_store(cregs, 0, 15);
887 cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */
888 cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */
889 cregs[14] &= ~0x1f000000UL; /* disable most machine checks */
890 __ctl_load(cregs, 0, 15);
Martin Schwidefskyfe0f4972014-09-30 17:37:52 +0200891 clear_cpu_flag(CIF_NOHZ_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return 0;
893}
894
Heiko Carstens39ce0102007-04-27 16:02:00 +0200895void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400897 struct pcpu *pcpu;
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /* Wait until target cpu is down */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400900 pcpu = pcpu_devices + cpu;
901 while (!pcpu_stopped(pcpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 cpu_relax();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400903 pcpu_free_lowcore(pcpu);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200904 cpumask_clear_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky64f31d52016-05-25 09:45:26 +0200905 cpumask_clear_cpu(cpu, &init_mm.context.cpu_attach_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907
Heiko Carstensb456d942011-05-23 10:24:33 +0200908void __noreturn cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 idle_task_exit();
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200911 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400912 for (;;) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Heiko Carstens255acee2006-02-17 13:52:46 -0800915#endif /* CONFIG_HOTPLUG_CPU */
916
Heiko Carstensd80512f2013-12-16 14:31:26 +0100917void __init smp_fill_possible_mask(void)
918{
David Hildenbrand9747bc42015-05-06 09:29:53 +0200919 unsigned int possible, sclp_max, cpu;
Heiko Carstensd80512f2013-12-16 14:31:26 +0100920
David Hildenbrand3a9f3fe2015-05-06 13:19:29 +0200921 sclp_max = max(sclp.mtid, sclp.mtid_cp) + 1;
922 sclp_max = min(smp_max_threads, sclp_max);
Dan Carpenter61282af2016-07-18 09:02:56 +0200923 sclp_max = (sclp.max_cores * sclp_max) ?: nr_cpu_ids;
Heiko Carstenscf813db2014-03-10 14:50:16 +0100924 possible = setup_possible_cpus ?: nr_cpu_ids;
David Hildenbrand9747bc42015-05-06 09:29:53 +0200925 possible = min(possible, sclp_max);
Heiko Carstensd80512f2013-12-16 14:31:26 +0100926 for (cpu = 0; cpu < possible && cpu < nr_cpu_ids; cpu++)
927 set_cpu_possible(cpu, true);
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930void __init smp_prepare_cpus(unsigned int max_cpus)
931{
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100932 unsigned long size;
933
Heiko Carstens39ce0102007-04-27 16:02:00 +0200934 /* request the 0x1201 emergency signal external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200935 if (register_external_irq(EXT_IRQ_EMERGENCY_SIG, do_ext_call_interrupt))
Heiko Carstens39ce0102007-04-27 16:02:00 +0200936 panic("Couldn't request external interrupt 0x1201");
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100937 /* request the 0x1202 external call external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200938 if (register_external_irq(EXT_IRQ_EXTERNAL_CALL, do_ext_call_interrupt))
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100939 panic("Couldn't request external interrupt 0x1202");
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100940 /* create slab cache for the machine-check-extended-save-areas */
941 if (MACHINE_HAS_VX || MACHINE_HAS_GS) {
942 size = 1UL << (MACHINE_HAS_GS ? 11 : 10);
943 pcpu_mcesa_cache = kmem_cache_create("nmi_save_areas",
944 size, size, 0, NULL);
945 if (!pcpu_mcesa_cache)
946 panic("Couldn't create nmi save area cache");
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200950void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400952 struct pcpu *pcpu = pcpu_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Heiko Carstens0861b5a2017-03-16 11:02:36 +0100954 WARN_ON(!cpu_present(0) || !cpu_online(0));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400955 pcpu->state = CPU_STATE_CONFIGURED;
Heiko Carstensc667aea2015-12-31 10:29:00 +0100956 pcpu->lowcore = (struct lowcore *)(unsigned long) store_prefix();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400957 S390_lowcore.percpu_offset = __per_cpu_offset[0];
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200958 smp_cpu_set_polarization(0, POLARIZATION_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200961void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Heiko Carstens02beacc2010-01-13 20:44:34 +0100965void __init smp_setup_processor_id(void)
966{
Heiko Carstens0861b5a2017-03-16 11:02:36 +0100967 pcpu_devices[0].address = stap();
Heiko Carstens02beacc2010-01-13 20:44:34 +0100968 S390_lowcore.cpu_nr = 0;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200969 S390_lowcore.spinlock_lockval = arch_spin_lockval(0);
Heiko Carstens02beacc2010-01-13 20:44:34 +0100970}
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972/*
973 * the frequency of the profiling timer can be changed
974 * by writing a multiplier value into /proc/profile.
975 *
976 * usually you want to run this on all CPUs ;)
977 */
978int setup_profiling_timer(unsigned int multiplier)
979{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200980 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
Heiko Carstens08d07962008-01-26 14:10:56 +0100983#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800984static ssize_t cpu_configure_show(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400985 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100986{
987 ssize_t count;
988
989 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400990 count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state);
Heiko Carstens08d07962008-01-26 14:10:56 +0100991 mutex_unlock(&smp_cpu_state_mutex);
992 return count;
993}
994
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800995static ssize_t cpu_configure_store(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400996 struct device_attribute *attr,
997 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100998{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400999 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001000 int cpu, val, rc, i;
Heiko Carstens08d07962008-01-26 14:10:56 +01001001 char delim;
1002
1003 if (sscanf(buf, "%d %c", &val, &delim) != 1)
1004 return -EINVAL;
1005 if (val != 0 && val != 1)
1006 return -EINVAL;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001007 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001008 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +01001009 rc = -EBUSY;
Heiko Carstens2c2df112010-02-26 22:37:34 +01001010 /* disallow configuration changes of online cpus and cpu 0 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001011 cpu = dev->id;
Heiko Carstens54231452016-12-05 21:18:58 +01001012 cpu = smp_get_base_cpu(cpu);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001013 if (cpu == 0)
Heiko Carstens08d07962008-01-26 14:10:56 +01001014 goto out;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001015 for (i = 0; i <= smp_cpu_mtid; i++)
1016 if (cpu_online(cpu + i))
1017 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001018 pcpu = pcpu_devices + cpu;
Heiko Carstens08d07962008-01-26 14:10:56 +01001019 rc = 0;
1020 switch (val) {
1021 case 0:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001022 if (pcpu->state != CPU_STATE_CONFIGURED)
1023 break;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001024 rc = sclp_core_deconfigure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001025 if (rc)
1026 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001027 for (i = 0; i <= smp_cpu_mtid; i++) {
1028 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
1029 continue;
1030 pcpu[i].state = CPU_STATE_STANDBY;
1031 smp_cpu_set_polarization(cpu + i,
1032 POLARIZATION_UNKNOWN);
1033 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001034 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001035 break;
1036 case 1:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001037 if (pcpu->state != CPU_STATE_STANDBY)
1038 break;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001039 rc = sclp_core_configure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001040 if (rc)
1041 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001042 for (i = 0; i <= smp_cpu_mtid; i++) {
1043 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
1044 continue;
1045 pcpu[i].state = CPU_STATE_CONFIGURED;
1046 smp_cpu_set_polarization(cpu + i,
1047 POLARIZATION_UNKNOWN);
1048 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001049 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001050 break;
1051 default:
1052 break;
1053 }
1054out:
Heiko Carstens08d07962008-01-26 14:10:56 +01001055 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001056 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001057 return rc ? rc : count;
1058}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001059static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001060#endif /* CONFIG_HOTPLUG_CPU */
1061
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001062static ssize_t show_cpu_address(struct device *dev,
1063 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +01001064{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001065 return sprintf(buf, "%d\n", pcpu_devices[dev->id].address);
Heiko Carstens08d07962008-01-26 14:10:56 +01001066}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001067static DEVICE_ATTR(address, 0444, show_cpu_address, NULL);
Heiko Carstens08d07962008-01-26 14:10:56 +01001068
Heiko Carstens08d07962008-01-26 14:10:56 +01001069static struct attribute *cpu_common_attrs[] = {
1070#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001071 &dev_attr_configure.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001072#endif
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001073 &dev_attr_address.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001074 NULL,
1075};
1076
1077static struct attribute_group cpu_common_attr_group = {
1078 .attrs = cpu_common_attrs,
1079};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Heiko Carstens08d07962008-01-26 14:10:56 +01001081static struct attribute *cpu_online_attrs[] = {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001082 &dev_attr_idle_count.attr,
1083 &dev_attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001084 NULL,
1085};
1086
Heiko Carstens08d07962008-01-26 14:10:56 +01001087static struct attribute_group cpu_online_attr_group = {
1088 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001089};
1090
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001091static int smp_cpu_online(unsigned int cpu)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001092{
Heiko Carstens2f859d02015-02-11 12:31:03 +01001093 struct device *s = &per_cpu(cpu_device, cpu)->dev;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001094
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001095 return sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1096}
1097static int smp_cpu_pre_down(unsigned int cpu)
1098{
1099 struct device *s = &per_cpu(cpu_device, cpu)->dev;
1100
1101 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
1102 return 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001103}
1104
Paul Gortmakere2741f12013-06-18 17:04:52 -04001105static int smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +01001106{
Heiko Carstens96619fc2013-12-05 12:42:09 +01001107 struct device *s;
1108 struct cpu *c;
Heiko Carstens08d07962008-01-26 14:10:56 +01001109 int rc;
1110
Heiko Carstens96619fc2013-12-05 12:42:09 +01001111 c = kzalloc(sizeof(*c), GFP_KERNEL);
1112 if (!c)
1113 return -ENOMEM;
Heiko Carstens2f859d02015-02-11 12:31:03 +01001114 per_cpu(cpu_device, cpu) = c;
Heiko Carstens96619fc2013-12-05 12:42:09 +01001115 s = &c->dev;
Heiko Carstens08d07962008-01-26 14:10:56 +01001116 c->hotpluggable = 1;
1117 rc = register_cpu(c, cpu);
1118 if (rc)
1119 goto out;
1120 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1121 if (rc)
1122 goto out_cpu;
Heiko Carstens83a24e32011-12-27 11:27:09 +01001123 rc = topology_cpu_init(c);
1124 if (rc)
1125 goto out_topology;
1126 return 0;
1127
1128out_topology:
Heiko Carstens08d07962008-01-26 14:10:56 +01001129 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1130out_cpu:
1131#ifdef CONFIG_HOTPLUG_CPU
1132 unregister_cpu(c);
1133#endif
1134out:
1135 return rc;
1136}
1137
1138#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001139
Heiko Carstens67060d92008-05-30 10:03:27 +02001140int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001141{
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001142 struct sclp_core_info *info;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001143 int nr;
Heiko Carstens08d07962008-01-26 14:10:56 +01001144
Heiko Carstensaf51160e2016-12-03 09:48:01 +01001145 info = kzalloc(sizeof(*info), GFP_KERNEL);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001146 if (!info)
1147 return -ENOMEM;
Heiko Carstensaf51160e2016-12-03 09:48:01 +01001148 smp_get_core_info(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001149 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001150 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001151 nr = __smp_rescan_cpus(info, 1);
Heiko Carstens08d07962008-01-26 14:10:56 +01001152 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001153 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001154 kfree(info);
1155 if (nr)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001156 topology_schedule_update();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001157 return 0;
Heiko Carstens1e489512008-04-30 13:38:37 +02001158}
1159
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001160static ssize_t __ref rescan_store(struct device *dev,
1161 struct device_attribute *attr,
Andi Kleenc9be0a32010-01-05 12:47:58 +01001162 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001163 size_t count)
1164{
1165 int rc;
1166
1167 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001168 return rc ? rc : count;
1169}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001170static DEVICE_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001171#endif /* CONFIG_HOTPLUG_CPU */
1172
Heiko Carstens83a24e32011-12-27 11:27:09 +01001173static int __init s390_smp_init(void)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001174{
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301175 int cpu, rc = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001176
Heiko Carstens08d07962008-01-26 14:10:56 +01001177#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001178 rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001179 if (rc)
1180 return rc;
1181#endif
1182 for_each_present_cpu(cpu) {
1183 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001184 if (rc)
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301185 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301187
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001188 rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "s390/smp:online",
1189 smp_cpu_online, smp_cpu_pre_down);
Heiko Carstense1108e82017-08-14 07:54:32 +02001190 rc = rc <= 0 ? rc : 0;
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301191out:
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301192 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
Heiko Carstens83a24e32011-12-27 11:27:09 +01001194subsys_initcall(s390_smp_init);