blob: 286bcee800f48a24b96e9512dd94cbc625cc9d72 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/interrupt.h>
Christian Borntraeger3324e602009-03-26 15:23:56 +010031#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Ingo Molnaref8bd772017-02-08 18:51:36 +010034#include <linux/sched/hotplug.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010035#include <linux/sched/task_stack.h>
Michael Holzheu60a0c682011-10-30 15:16:40 +010036#include <linux/crash_dump.h>
Michael Holzheu1592a8e2015-05-26 19:05:23 +020037#include <linux/memblock.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010038#include <asm/asm-offsets.h>
Martin Schwidefsky1ec27722015-08-20 17:28:44 +020039#include <asm/diag.h>
Heiko Carstens1e3cab22012-03-30 09:40:55 +020040#include <asm/switch_to.h>
41#include <asm/facility.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010042#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010043#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/tlbflush.h>
Martin Schwidefsky27f6b412012-07-20 11:15:08 +020046#include <asm/vtimer.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020047#include <asm/lowcore.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010048#include <asm/sclp.h>
Martin Schwidefskyc742b312008-12-31 15:11:42 +010049#include <asm/vdso.h>
Michael Holzheu3ab121a2012-03-11 11:59:32 -040050#include <asm/debug.h>
Michael Holzheu4857d4b2012-03-11 11:59:34 -040051#include <asm/os_info.h>
Heiko Carstensa9ae32c2012-06-04 12:55:15 +020052#include <asm/sigp.h>
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +020053#include <asm/idle.h>
Martin Schwidefsky916cda12016-01-26 14:10:34 +010054#include <asm/nmi.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020055#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040057enum {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040058 ec_schedule = 0,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040059 ec_call_function_single,
60 ec_stop_cpu,
61};
Heiko Carstens08d07962008-01-26 14:10:56 +010062
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040063enum {
Heiko Carstens08d07962008-01-26 14:10:56 +010064 CPU_STATE_STANDBY,
65 CPU_STATE_CONFIGURED,
66};
67
Heiko Carstens2f859d02015-02-11 12:31:03 +010068static DEFINE_PER_CPU(struct cpu *, cpu_device);
69
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040070struct pcpu {
Heiko Carstensc667aea2015-12-31 10:29:00 +010071 struct lowcore *lowcore; /* lowcore page(s) for the cpu */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040072 unsigned long ec_mask; /* bit mask for ec_xxx functions */
Heiko Carstens3dbc78d2015-12-08 14:10:12 +010073 unsigned long ec_clk; /* sigp timestamp for ec_xxx */
Heiko Carstens2f859d02015-02-11 12:31:03 +010074 signed char state; /* physical cpu state */
75 signed char polarization; /* physical polarization */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040076 u16 address; /* physical cpu address */
77};
78
Martin Schwidefskyd08d9432015-06-18 14:23:00 +020079static u8 boot_core_type;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040080static struct pcpu pcpu_devices[NR_CPUS];
81
Martin Schwidefsky916cda12016-01-26 14:10:34 +010082static struct kmem_cache *pcpu_mcesa_cache;
83
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010084unsigned int smp_cpu_mt_shift;
85EXPORT_SYMBOL(smp_cpu_mt_shift);
86
87unsigned int smp_cpu_mtid;
88EXPORT_SYMBOL(smp_cpu_mtid);
89
Martin Schwidefsky1a36a392015-10-29 10:28:26 +010090#ifdef CONFIG_CRASH_DUMP
91__vector128 __initdata boot_cpu_vector_save_area[__NUM_VXRS];
92#endif
93
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010094static unsigned int smp_max_threads __initdata = -1U;
95
96static int __init early_nosmt(char *s)
97{
98 smp_max_threads = 1;
99 return 0;
100}
101early_param("nosmt", early_nosmt);
102
103static int __init early_smt(char *s)
104{
105 get_option(&s, &smp_max_threads);
106 return 0;
107}
108early_param("smt", early_smt);
109
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200110/*
111 * The smp_cpu_state_mutex must be held when changing the state or polarization
112 * member of a pcpu data structure within the pcpu_devices arreay.
113 */
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200114DEFINE_MUTEX(smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100115
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400116/*
117 * Signal processor helper functions.
118 */
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100119static inline int __pcpu_sigp_relax(u16 addr, u8 order, unsigned long parm)
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100120{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400121 int cc;
122
123 while (1) {
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200124 cc = __pcpu_sigp(addr, order, parm, NULL);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200125 if (cc != SIGP_CC_BUSY)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400126 return cc;
127 cpu_relax();
128 }
129}
130
131static int pcpu_sigp_retry(struct pcpu *pcpu, u8 order, u32 parm)
132{
133 int cc, retry;
134
135 for (retry = 0; ; retry++) {
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200136 cc = __pcpu_sigp(pcpu->address, order, parm, NULL);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200137 if (cc != SIGP_CC_BUSY)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400138 break;
139 if (retry >= 3)
140 udelay(10);
141 }
142 return cc;
143}
144
145static inline int pcpu_stopped(struct pcpu *pcpu)
146{
Heiko Carstens41459d36cf2012-09-14 11:09:52 +0200147 u32 uninitialized_var(status);
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200148
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200149 if (__pcpu_sigp(pcpu->address, SIGP_SENSE,
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200150 0, &status) != SIGP_CC_STATUS_STORED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400151 return 0;
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200152 return !!(status & (SIGP_STATUS_CHECK_STOP|SIGP_STATUS_STOPPED));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400153}
154
155static inline int pcpu_running(struct pcpu *pcpu)
156{
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200157 if (__pcpu_sigp(pcpu->address, SIGP_SENSE_RUNNING,
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200158 0, NULL) != SIGP_CC_STATUS_STORED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400159 return 1;
Heiko Carstens524b24a2012-06-04 12:11:41 +0200160 /* Status stored condition code is equivalent to cpu not running. */
161 return 0;
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100162}
163
Michael Holzheu1943f532011-10-30 15:16:38 +0100164/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400165 * Find struct pcpu by cpu address.
Michael Holzheu1943f532011-10-30 15:16:38 +0100166 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100167static struct pcpu *pcpu_find_address(const struct cpumask *mask, u16 address)
Michael Holzheu1943f532011-10-30 15:16:38 +0100168{
169 int cpu;
170
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400171 for_each_cpu(cpu, mask)
172 if (pcpu_devices[cpu].address == address)
173 return pcpu_devices + cpu;
174 return NULL;
175}
176
177static void pcpu_ec_call(struct pcpu *pcpu, int ec_bit)
178{
179 int order;
180
Heiko Carstensdea24192013-12-03 10:06:29 +0100181 if (test_and_set_bit(ec_bit, &pcpu->ec_mask))
182 return;
183 order = pcpu_running(pcpu) ? SIGP_EXTERNAL_CALL : SIGP_EMERGENCY_SIGNAL;
Heiko Carstens3dbc78d2015-12-08 14:10:12 +0100184 pcpu->ec_clk = get_tod_clock_fast();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400185 pcpu_sigp_retry(pcpu, order, 0);
186}
187
Heiko Carstens2f859d02015-02-11 12:31:03 +0100188#define ASYNC_FRAME_OFFSET (ASYNC_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE)
189#define PANIC_FRAME_OFFSET (PAGE_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE)
190
Paul Gortmakere2741f12013-06-18 17:04:52 -0400191static int pcpu_alloc_lowcore(struct pcpu *pcpu, int cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400192{
Heiko Carstens2f859d02015-02-11 12:31:03 +0100193 unsigned long async_stack, panic_stack;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100194 unsigned long mcesa_origin, mcesa_bits;
Heiko Carstensc667aea2015-12-31 10:29:00 +0100195 struct lowcore *lc;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400196
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100197 mcesa_origin = mcesa_bits = 0;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400198 if (pcpu != &pcpu_devices[0]) {
Heiko Carstensc667aea2015-12-31 10:29:00 +0100199 pcpu->lowcore = (struct lowcore *)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400200 __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100201 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
202 panic_stack = __get_free_page(GFP_KERNEL);
203 if (!pcpu->lowcore || !panic_stack || !async_stack)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400204 goto out;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100205 if (MACHINE_HAS_VX || MACHINE_HAS_GS) {
206 mcesa_origin = (unsigned long)
207 kmem_cache_alloc(pcpu_mcesa_cache, GFP_KERNEL);
208 if (!mcesa_origin)
209 goto out;
210 mcesa_bits = MACHINE_HAS_GS ? 11 : 0;
211 }
Heiko Carstens2f859d02015-02-11 12:31:03 +0100212 } else {
213 async_stack = pcpu->lowcore->async_stack - ASYNC_FRAME_OFFSET;
214 panic_stack = pcpu->lowcore->panic_stack - PANIC_FRAME_OFFSET;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100215 mcesa_origin = pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK;
216 mcesa_bits = pcpu->lowcore->mcesad & MCESA_LC_MASK;
Michael Holzheu1943f532011-10-30 15:16:38 +0100217 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400218 lc = pcpu->lowcore;
219 memcpy(lc, &S390_lowcore, 512);
220 memset((char *) lc + 512, 0, sizeof(*lc) - 512);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100221 lc->async_stack = async_stack + ASYNC_FRAME_OFFSET;
222 lc->panic_stack = panic_stack + PANIC_FRAME_OFFSET;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100223 lc->mcesad = mcesa_origin | mcesa_bits;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400224 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200225 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400226 if (vdso_alloc_per_cpu(lc))
227 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400228 lowcore_ptr[cpu] = lc;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200229 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, (u32)(unsigned long) lc);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400230 return 0;
231out:
232 if (pcpu != &pcpu_devices[0]) {
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100233 if (mcesa_origin)
234 kmem_cache_free(pcpu_mcesa_cache,
235 (void *) mcesa_origin);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100236 free_page(panic_stack);
237 free_pages(async_stack, ASYNC_ORDER);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400238 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
239 }
240 return -ENOMEM;
Michael Holzheu1943f532011-10-30 15:16:38 +0100241}
242
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200243#ifdef CONFIG_HOTPLUG_CPU
244
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400245static void pcpu_free_lowcore(struct pcpu *pcpu)
Heiko Carstens2c2df112010-02-26 22:37:34 +0100246{
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100247 unsigned long mcesa_origin;
248
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200249 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400250 lowcore_ptr[pcpu - pcpu_devices] = NULL;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400251 vdso_free_per_cpu(pcpu->lowcore);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100252 if (pcpu == &pcpu_devices[0])
253 return;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100254 if (MACHINE_HAS_VX || MACHINE_HAS_GS) {
255 mcesa_origin = pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK;
256 kmem_cache_free(pcpu_mcesa_cache, (void *) mcesa_origin);
257 }
Heiko Carstens2f859d02015-02-11 12:31:03 +0100258 free_page(pcpu->lowcore->panic_stack-PANIC_FRAME_OFFSET);
259 free_pages(pcpu->lowcore->async_stack-ASYNC_FRAME_OFFSET, ASYNC_ORDER);
260 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
Heiko Carstens2c2df112010-02-26 22:37:34 +0100261}
262
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200263#endif /* CONFIG_HOTPLUG_CPU */
264
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400265static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu)
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100266{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100267 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400268
Martin Schwidefsky64f31d52016-05-25 09:45:26 +0200269 cpumask_set_cpu(cpu, &init_mm.context.cpu_attach_mask);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200270 cpumask_set_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400271 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200272 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400273 lc->percpu_offset = __per_cpu_offset[cpu];
274 lc->kernel_asce = S390_lowcore.kernel_asce;
275 lc->machine_flags = S390_lowcore.machine_flags;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400276 lc->user_timer = lc->system_timer = lc->steal_timer = 0;
277 __ctl_store(lc->cregs_save_area, 0, 15);
278 save_access_regs((unsigned int *) lc->access_regs_save_area);
279 memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list,
280 MAX_FACILITY_BIT/8);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100281}
282
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400283static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk)
284{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100285 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400286
Martin Schwidefskydc7ee002013-04-24 10:20:43 +0200287 lc->kernel_stack = (unsigned long) task_stack_page(tsk)
288 + THREAD_SIZE - STACK_FRAME_OVERHEAD - sizeof(struct pt_regs);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400289 lc->current_task = (unsigned long) tsk;
Christian Borntraegere22cf8c2015-10-06 18:06:15 +0200290 lc->lpp = LPP_MAGIC;
291 lc->current_pid = tsk->pid;
Martin Schwidefsky90c53e62016-11-08 12:15:59 +0100292 lc->user_timer = tsk->thread.user_timer;
293 lc->system_timer = tsk->thread.system_timer;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400294 lc->steal_timer = 0;
295}
296
297static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data)
298{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100299 struct lowcore *lc = pcpu->lowcore;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400300
301 lc->restart_stack = lc->kernel_stack;
302 lc->restart_fn = (unsigned long) func;
303 lc->restart_data = (unsigned long) data;
304 lc->restart_source = -1UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200305 pcpu_sigp_retry(pcpu, SIGP_RESTART, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400306}
307
308/*
309 * Call function via PSW restart on pcpu and stop the current cpu.
310 */
311static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *),
312 void *data, unsigned long stack)
313{
Heiko Carstensc667aea2015-12-31 10:29:00 +0100314 struct lowcore *lc = lowcore_ptr[pcpu - pcpu_devices];
Heiko Carstensfbe76562012-06-05 09:59:52 +0200315 unsigned long source_cpu = stap();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400316
Martin Schwidefskye258d712013-09-24 09:14:56 +0200317 __load_psw_mask(PSW_KERNEL_BITS);
Heiko Carstensfbe76562012-06-05 09:59:52 +0200318 if (pcpu->address == source_cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400319 func(data); /* should not return */
320 /* Stop target cpu (if func returns this stops the current cpu). */
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200321 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400322 /* Restart func on the target cpu and stop the current cpu. */
Heiko Carstensfbe76562012-06-05 09:59:52 +0200323 mem_assign_absolute(lc->restart_stack, stack);
324 mem_assign_absolute(lc->restart_fn, (unsigned long) func);
325 mem_assign_absolute(lc->restart_data, (unsigned long) data);
326 mem_assign_absolute(lc->restart_source, source_cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400327 asm volatile(
Heiko Carstenseb546192012-06-04 15:05:43 +0200328 "0: sigp 0,%0,%2 # sigp restart to target cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400329 " brc 2,0b # busy, try again\n"
Heiko Carstenseb546192012-06-04 15:05:43 +0200330 "1: sigp 0,%1,%3 # sigp stop to current cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400331 " brc 2,1b # busy, try again\n"
Heiko Carstensfbe76562012-06-05 09:59:52 +0200332 : : "d" (pcpu->address), "d" (source_cpu),
Heiko Carstenseb546192012-06-04 15:05:43 +0200333 "K" (SIGP_RESTART), "K" (SIGP_STOP)
334 : "0", "1", "cc");
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400335 for (;;) ;
336}
337
338/*
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100339 * Enable additional logical cpus for multi-threading.
340 */
341static int pcpu_set_smt(unsigned int mtid)
342{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100343 int cc;
344
345 if (smp_cpu_mtid == mtid)
346 return 0;
Heiko Carstens80a60f62016-06-20 14:04:17 +0200347 cc = __pcpu_sigp(0, SIGP_SET_MULTI_THREADING, mtid, NULL);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100348 if (cc == 0) {
349 smp_cpu_mtid = mtid;
350 smp_cpu_mt_shift = 0;
351 while (smp_cpu_mtid >= (1U << smp_cpu_mt_shift))
352 smp_cpu_mt_shift++;
353 pcpu_devices[0].address = stap();
354 }
355 return cc;
356}
357
358/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400359 * Call function on an online CPU.
360 */
361void smp_call_online_cpu(void (*func)(void *), void *data)
362{
363 struct pcpu *pcpu;
364
365 /* Use the current cpu if it is online. */
366 pcpu = pcpu_find_address(cpu_online_mask, stap());
367 if (!pcpu)
368 /* Use the first online cpu. */
369 pcpu = pcpu_devices + cpumask_first(cpu_online_mask);
370 pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack);
371}
372
373/*
374 * Call function on the ipl CPU.
375 */
376void smp_call_ipl_cpu(void (*func)(void *), void *data)
377{
Michael Holzheuc6da39f2012-03-13 11:25:08 -0400378 pcpu_delegate(&pcpu_devices[0], func, data,
Heiko Carstens2f859d02015-02-11 12:31:03 +0100379 pcpu_devices->lowcore->panic_stack -
380 PANIC_FRAME_OFFSET + PAGE_SIZE);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400381}
382
383int smp_find_processor_id(u16 address)
384{
385 int cpu;
386
387 for_each_present_cpu(cpu)
388 if (pcpu_devices[cpu].address == address)
389 return cpu;
390 return -1;
391}
392
Christian Borntraeger760928c2016-11-02 05:08:32 -0400393bool arch_vcpu_is_preempted(int cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400394{
Christian Borntraeger760928c2016-11-02 05:08:32 -0400395 if (test_cpu_flag_of(CIF_ENABLED_WAIT, cpu))
396 return false;
397 if (pcpu_running(pcpu_devices + cpu))
398 return false;
399 return true;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400400}
Christian Borntraeger760928c2016-11-02 05:08:32 -0400401EXPORT_SYMBOL(arch_vcpu_is_preempted);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400402
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400403void smp_yield_cpu(int cpu)
404{
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200405 if (MACHINE_HAS_DIAG9C) {
Martin Schwidefskyb5a6b712015-08-21 16:05:32 +0200406 diag_stat_inc_norecursion(DIAG_STAT_X09C);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400407 asm volatile("diag %0,0,0x9c"
408 : : "d" (pcpu_devices[cpu].address));
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200409 } else if (MACHINE_HAS_DIAG44) {
Martin Schwidefskyb5a6b712015-08-21 16:05:32 +0200410 diag_stat_inc_norecursion(DIAG_STAT_X044);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400411 asm volatile("diag 0,0,0x44");
Martin Schwidefsky1ec27722015-08-20 17:28:44 +0200412 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400413}
414
415/*
416 * Send cpus emergency shutdown signal. This gives the cpus the
417 * opportunity to complete outstanding interrupts.
418 */
Heiko Carstens63df41d62013-09-06 19:10:48 +0200419static void smp_emergency_stop(cpumask_t *cpumask)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400420{
421 u64 end;
422 int cpu;
423
Heiko Carstens1aae0562013-01-30 09:49:40 +0100424 end = get_tod_clock() + (1000000UL << 12);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400425 for_each_cpu(cpu, cpumask) {
426 struct pcpu *pcpu = pcpu_devices + cpu;
427 set_bit(ec_stop_cpu, &pcpu->ec_mask);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200428 while (__pcpu_sigp(pcpu->address, SIGP_EMERGENCY_SIGNAL,
429 0, NULL) == SIGP_CC_BUSY &&
Heiko Carstens1aae0562013-01-30 09:49:40 +0100430 get_tod_clock() < end)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400431 cpu_relax();
432 }
Heiko Carstens1aae0562013-01-30 09:49:40 +0100433 while (get_tod_clock() < end) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400434 for_each_cpu(cpu, cpumask)
435 if (pcpu_stopped(pcpu_devices + cpu))
436 cpumask_clear_cpu(cpu, cpumask);
437 if (cpumask_empty(cpumask))
438 break;
439 cpu_relax();
440 }
441}
442
443/*
444 * Stop all cpus but the current one.
445 */
Heiko Carstens677d7622007-11-20 11:13:37 +0100446void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100448 cpumask_t cpumask;
449 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Heiko Carstens677d7622007-11-20 11:13:37 +0100451 /* Disable all interrupts/machine checks */
Martin Schwidefskye258d712013-09-24 09:14:56 +0200452 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Christian Borntraeger3324e602009-03-26 15:23:56 +0100453 trace_hardirqs_off();
Heiko Carstens677d7622007-11-20 11:13:37 +0100454
Michael Holzheu3ab121a2012-03-11 11:59:32 -0400455 debug_set_critical();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100456 cpumask_copy(&cpumask, cpu_online_mask);
457 cpumask_clear_cpu(smp_processor_id(), &cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400459 if (oops_in_progress)
460 smp_emergency_stop(&cpumask);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100461
462 /* stop all processors */
463 for_each_cpu(cpu, &cpumask) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400464 struct pcpu *pcpu = pcpu_devices + cpu;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200465 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400466 while (!pcpu_stopped(pcpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100467 cpu_relax();
468 }
469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * This is the main routine where commands issued by other
473 * cpus are handled.
474 */
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200475static void smp_handle_ext_call(void)
476{
477 unsigned long bits;
478
479 /* handle bit signal external calls */
480 bits = xchg(&pcpu_devices[smp_processor_id()].ec_mask, 0);
481 if (test_bit(ec_stop_cpu, &bits))
482 smp_stop_cpu();
483 if (test_bit(ec_schedule, &bits))
484 scheduler_ipi();
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200485 if (test_bit(ec_call_function_single, &bits))
486 generic_smp_call_function_single_interrupt();
487}
488
Heiko Carstensfde15c32012-03-11 11:59:31 -0400489static void do_ext_call_interrupt(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200490 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200492 inc_irq_stat(ext_code.code == 0x1202 ? IRQEXT_EXC : IRQEXT_EMS);
493 smp_handle_ext_call();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Rusty Russell630cd042009-09-24 09:34:45 -0600496void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100497{
498 int cpu;
499
Rusty Russell630cd042009-09-24 09:34:45 -0600500 for_each_cpu(cpu, mask)
Heiko Carstensb6ed49e2013-05-21 15:34:56 +0200501 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100502}
503
504void arch_send_call_function_single_ipi(int cpu)
505{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400506 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/*
510 * this function sends a 'reschedule' IPI to another CPU.
511 * it goes straight through and wastes no time serializing
512 * anything. Worst case is that we lose a reschedule ...
513 */
514void smp_send_reschedule(int cpu)
515{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400516 pcpu_ec_call(pcpu_devices + cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
519/*
520 * parameter area for the set/clear control bit callbacks
521 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200522struct ec_creg_mask_parms {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400523 unsigned long orval;
524 unsigned long andval;
525 int cr;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200526};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528/*
529 * callback for setting/clearing control bits
530 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200531static void smp_ctl_bit_callback(void *info)
532{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200533 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 unsigned long cregs[16];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200535
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200536 __ctl_store(cregs, 0, 15);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400537 cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200538 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541/*
542 * Set a bit in a control register of all cpus
543 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200544void smp_ctl_set_bit(int cr, int bit)
545{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400546 struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200548 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200550EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552/*
553 * Clear a bit in a control register of all cpus
554 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200555void smp_ctl_clear_bit(int cr, int bit)
556{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400557 struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200559 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200561EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Michael Holzheubf28a592014-04-14 10:38:05 +0200563#ifdef CONFIG_CRASH_DUMP
Michael Holzheu411ed322007-04-27 16:01:49 +0200564
Heiko Carstens1af135a2015-06-26 12:10:49 +0200565int smp_store_status(int cpu)
566{
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100567 struct pcpu *pcpu = pcpu_devices + cpu;
568 unsigned long pa;
Heiko Carstens1af135a2015-06-26 12:10:49 +0200569
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100570 pa = __pa(&pcpu->lowcore->floating_pt_save_area);
571 if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_STATUS_AT_ADDRESS,
572 pa) != SIGP_CC_ORDER_CODE_ACCEPTED)
Heiko Carstens1af135a2015-06-26 12:10:49 +0200573 return -EIO;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100574 if (!MACHINE_HAS_VX && !MACHINE_HAS_GS)
Heiko Carstens1af135a2015-06-26 12:10:49 +0200575 return 0;
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100576 pa = __pa(pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK);
577 if (MACHINE_HAS_GS)
578 pa |= pcpu->lowcore->mcesad & MCESA_LC_MASK;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100579 if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_ADDITIONAL_STATUS,
580 pa) != SIGP_CC_ORDER_CODE_ACCEPTED)
581 return -EIO;
Heiko Carstens1af135a2015-06-26 12:10:49 +0200582 return 0;
583}
584
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100585/*
586 * Collect CPU state of the previous, crashed system.
587 * There are four cases:
588 * 1) standard zfcp dump
589 * condition: OLDMEM_BASE == NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
590 * The state for all CPUs except the boot CPU needs to be collected
591 * with sigp stop-and-store-status. The boot CPU state is located in
592 * the absolute lowcore of the memory stored in the HSA. The zcore code
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100593 * will copy the boot CPU state from the HSA.
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100594 * 2) stand-alone kdump for SCSI (zfcp dump with swapped memory)
595 * condition: OLDMEM_BASE != NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
596 * The state for all CPUs except the boot CPU needs to be collected
597 * with sigp stop-and-store-status. The firmware or the boot-loader
598 * stored the registers of the boot CPU in the absolute lowcore in the
599 * memory of the old system.
600 * 3) kdump and the old kernel did not store the CPU state,
601 * or stand-alone kdump for DASD
602 * condition: OLDMEM_BASE != NULL && !is_kdump_kernel()
603 * The state for all CPUs except the boot CPU needs to be collected
604 * with sigp stop-and-store-status. The kexec code or the boot-loader
605 * stored the registers of the boot CPU in the memory of the old system.
606 * 4) kdump and the old kernel stored the CPU state
607 * condition: OLDMEM_BASE != NULL && is_kdump_kernel()
Martin Schwidefsky8a07dd02015-10-14 15:53:06 +0200608 * This case does not exist for s390 anymore, setup_arch explicitly
609 * deactivates the elfcorehdr= kernel parameter
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100610 */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100611static __init void smp_save_cpu_vxrs(struct save_area *sa, u16 addr,
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100612 bool is_boot_cpu, unsigned long page)
613{
614 __vector128 *vxrs = (__vector128 *) page;
615
616 if (is_boot_cpu)
617 vxrs = boot_cpu_vector_save_area;
618 else
619 __pcpu_sigp_relax(addr, SIGP_STORE_ADDITIONAL_STATUS, page);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100620 save_area_add_vxrs(sa, vxrs);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100621}
622
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100623static __init void smp_save_cpu_regs(struct save_area *sa, u16 addr,
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100624 bool is_boot_cpu, unsigned long page)
625{
626 void *regs = (void *) page;
627
628 if (is_boot_cpu)
629 copy_oldmem_kernel(regs, (void *) __LC_FPREGS_SAVE_AREA, 512);
630 else
631 __pcpu_sigp_relax(addr, SIGP_STORE_STATUS_AT_ADDRESS, page);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100632 save_area_add_regs(sa, regs);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100633}
634
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200635void __init smp_save_dump_cpus(void)
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100636{
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100637 int addr, boot_cpu_addr, max_cpu_addr;
638 struct save_area *sa;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100639 unsigned long page;
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200640 bool is_boot_cpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100641
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100642 if (!(OLDMEM_BASE || ipl_info.type == IPL_TYPE_FCP_DUMP))
643 /* No previous system present, normal boot. */
644 return;
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100645 /* Allocate a page as dumping area for the store status sigps */
646 page = memblock_alloc_base(PAGE_SIZE, PAGE_SIZE, 1UL << 31);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100647 /* Set multi-threading state to the previous system. */
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200648 pcpu_set_smt(sclp.mtid_prev);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200649 boot_cpu_addr = stap();
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100650 max_cpu_addr = SCLP_MAX_CORES << sclp.mtid_prev;
651 for (addr = 0; addr <= max_cpu_addr; addr++) {
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100652 if (__pcpu_sigp_relax(addr, SIGP_SENSE, 0) ==
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200653 SIGP_CC_NOT_OPERATIONAL)
654 continue;
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200655 is_boot_cpu = (addr == boot_cpu_addr);
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100656 /* Allocate save area */
657 sa = save_area_alloc(is_boot_cpu);
658 if (!sa)
659 panic("could not allocate memory for save area\n");
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100660 if (MACHINE_HAS_VX)
661 /* Get the vector registers */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100662 smp_save_cpu_vxrs(sa, addr, is_boot_cpu, page);
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100663 /*
664 * For a zfcp dump OLDMEM_BASE == NULL and the registers
665 * of the boot CPU are stored in the HSA. To retrieve
666 * these registers an SCLP request is required which is
667 * done by drivers/s390/char/zcore.c:init_cpu_info()
668 */
669 if (!is_boot_cpu || OLDMEM_BASE)
670 /* Get the CPU registers */
Martin Schwidefsky1a2c5842015-10-29 10:59:15 +0100671 smp_save_cpu_regs(sa, addr, is_boot_cpu, page);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200672 }
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100673 memblock_free(page, PAGE_SIZE);
Michael Holzheu1592a8e2015-05-26 19:05:23 +0200674 diag308_reset();
675 pcpu_set_smt(0);
Heiko Carstens1af135a2015-06-26 12:10:49 +0200676}
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100677#endif /* CONFIG_CRASH_DUMP */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400678
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200679void smp_cpu_set_polarization(int cpu, int val)
680{
681 pcpu_devices[cpu].polarization = val;
682}
683
684int smp_cpu_get_polarization(int cpu)
685{
686 return pcpu_devices[cpu].polarization;
687}
688
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100689static void __ref smp_get_core_info(struct sclp_core_info *info, int early)
Heiko Carstens08d07962008-01-26 14:10:56 +0100690{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400691 static int use_sigp_detection;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400692 int address;
Heiko Carstens08d07962008-01-26 14:10:56 +0100693
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100694 if (use_sigp_detection || sclp_get_core_info(info, early)) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400695 use_sigp_detection = 1;
Martin Schwidefskye7086eb2015-06-17 10:45:31 +0200696 for (address = 0;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200697 address < (SCLP_MAX_CORES << smp_cpu_mt_shift);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100698 address += (1U << smp_cpu_mt_shift)) {
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100699 if (__pcpu_sigp_relax(address, SIGP_SENSE, 0) ==
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200700 SIGP_CC_NOT_OPERATIONAL)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400701 continue;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200702 info->core[info->configured].core_id =
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100703 address >> smp_cpu_mt_shift;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400704 info->configured++;
705 }
706 info->combined = info->configured;
Heiko Carstens08d07962008-01-26 14:10:56 +0100707 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100708}
709
Paul Gortmakere2741f12013-06-18 17:04:52 -0400710static int smp_add_present_cpu(int cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100711
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200712static int __smp_rescan_cpus(struct sclp_core_info *info, int sysfs_add)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400713{
714 struct pcpu *pcpu;
715 cpumask_t avail;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100716 int cpu, nr, i, j;
717 u16 address;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400718
719 nr = 0;
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200720 cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400721 cpu = cpumask_first(&avail);
722 for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200723 if (sclp.has_core_type && info->core[i].type != boot_core_type)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400724 continue;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200725 address = info->core[i].core_id << smp_cpu_mt_shift;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100726 for (j = 0; j <= smp_cpu_mtid; j++) {
727 if (pcpu_find_address(cpu_present_mask, address + j))
728 continue;
729 pcpu = pcpu_devices + cpu;
730 pcpu->address = address + j;
731 pcpu->state =
732 (cpu >= info->configured*(smp_cpu_mtid + 1)) ?
733 CPU_STATE_STANDBY : CPU_STATE_CONFIGURED;
734 smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
735 set_cpu_present(cpu, true);
736 if (sysfs_add && smp_add_present_cpu(cpu) != 0)
737 set_cpu_present(cpu, false);
738 else
739 nr++;
740 cpu = cpumask_next(cpu, &avail);
741 if (cpu >= nr_cpu_ids)
742 break;
743 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400744 }
745 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100748void __init smp_detect_cpus(void)
Heiko Carstens48483b32008-01-26 14:11:05 +0100749{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100750 unsigned int cpu, mtid, c_cpus, s_cpus;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200751 struct sclp_core_info *info;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100752 u16 address;
Heiko Carstens48483b32008-01-26 14:11:05 +0100753
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100754 /* Get CPU information */
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100755 info = memblock_virt_alloc(sizeof(*info), 8);
756 smp_get_core_info(info, 1);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100757 /* Find boot CPU type */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200758 if (sclp.has_core_type) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100759 address = stap();
760 for (cpu = 0; cpu < info->combined; cpu++)
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200761 if (info->core[cpu].core_id == address) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100762 /* The boot cpu dictates the cpu type. */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200763 boot_core_type = info->core[cpu].type;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100764 break;
765 }
766 if (cpu >= info->combined)
767 panic("Could not find boot CPU type");
Heiko Carstens48483b32008-01-26 14:11:05 +0100768 }
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100769
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100770 /* Set multi-threading state for the current system */
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200771 mtid = boot_core_type ? sclp.mtid : sclp.mtid_cp;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100772 mtid = (mtid < smp_max_threads) ? mtid : smp_max_threads - 1;
773 pcpu_set_smt(mtid);
774
775 /* Print number of CPUs */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400776 c_cpus = s_cpus = 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100777 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200778 if (sclp.has_core_type &&
779 info->core[cpu].type != boot_core_type)
Heiko Carstens48483b32008-01-26 14:11:05 +0100780 continue;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100781 if (cpu < info->configured)
782 c_cpus += smp_cpu_mtid + 1;
783 else
784 s_cpus += smp_cpu_mtid + 1;
Heiko Carstens48483b32008-01-26 14:11:05 +0100785 }
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100786 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100787
788 /* Add CPUs present at boot */
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100789 get_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400790 __smp_rescan_cpus(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100791 put_online_cpus();
Heiko Carstensaf51160e2016-12-03 09:48:01 +0100792 memblock_free_early((unsigned long)info, sizeof(*info));
Heiko Carstens48483b32008-01-26 14:11:05 +0100793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200796 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400798static void smp_start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Heiko Carstens1aae0562013-01-30 09:49:40 +0100800 S390_lowcore.last_update_clock = get_tod_clock();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400801 S390_lowcore.restart_stack = (unsigned long) restart_stack;
802 S390_lowcore.restart_fn = (unsigned long) do_restart;
803 S390_lowcore.restart_data = 0;
804 S390_lowcore.restart_source = -1UL;
805 restore_access_regs(S390_lowcore.access_regs_save_area);
806 __ctl_load(S390_lowcore.cregs_save_area, 0, 15);
Martin Schwidefskye258d712013-09-24 09:14:56 +0200807 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200808 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800809 preempt_disable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200810 init_cpu_timer();
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +0200811 vtime_init();
Heiko Carstens29b08d22006-12-04 15:40:40 +0100812 pfault_init();
Manfred Spraule545a612008-09-07 16:57:22 +0200813 notify_cpu_starting(smp_processor_id());
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200814 set_cpu_online(smp_processor_id(), true);
Heiko Carstens93f3b2e2013-01-02 16:54:12 +0100815 inc_irq_stat(CPU_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 local_irq_enable();
Thomas Gleixnerfc6d73d2016-02-26 18:43:40 +0000817 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820/* Upping and downing of CPUs */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400821int __cpu_up(unsigned int cpu, struct task_struct *tidle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400823 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100824 int base, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400826 pcpu = pcpu_devices + cpu;
827 if (pcpu->state != CPU_STATE_CONFIGURED)
Heiko Carstens08d07962008-01-26 14:10:56 +0100828 return -EIO;
Heiko Carstens54231452016-12-05 21:18:58 +0100829 base = smp_get_base_cpu(cpu);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100830 for (i = 0; i <= smp_cpu_mtid; i++) {
831 if (base + i < nr_cpu_ids)
832 if (cpu_online(base + i))
833 break;
834 }
835 /*
836 * If this is the first CPU of the core to get online
837 * do an initial CPU reset.
838 */
839 if (i > smp_cpu_mtid &&
840 pcpu_sigp_retry(pcpu_devices + base, SIGP_INITIAL_CPU_RESET, 0) !=
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200841 SIGP_CC_ORDER_CODE_ACCEPTED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400842 return -EIO;
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000843
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400844 rc = pcpu_alloc_lowcore(pcpu, cpu);
845 if (rc)
846 return rc;
847 pcpu_prepare_secondary(pcpu, cpu);
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000848 pcpu_attach_task(pcpu, tidle);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400849 pcpu_start_fn(pcpu, smp_start_secondary, NULL);
Heiko Carstensa1307bb2015-03-30 12:51:42 +0200850 /* Wait until cpu puts itself in the online & active maps */
Peter Zijlstra (Intel)e9d867a2016-03-10 12:54:08 +0100851 while (!cpu_online(cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 cpu_relax();
853 return 0;
854}
855
Heiko Carstensd80512f2013-12-16 14:31:26 +0100856static unsigned int setup_possible_cpus __initdata;
Heiko Carstens48483b32008-01-26 14:11:05 +0100857
Heiko Carstensd80512f2013-12-16 14:31:26 +0100858static int __init _setup_possible_cpus(char *s)
859{
860 get_option(&s, &setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800861 return 0;
862}
Heiko Carstensd80512f2013-12-16 14:31:26 +0100863early_param("possible_cpus", _setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800864
Heiko Carstens48483b32008-01-26 14:11:05 +0100865#ifdef CONFIG_HOTPLUG_CPU
866
Heiko Carstens39ce0102007-04-27 16:02:00 +0200867int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400869 unsigned long cregs[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200871 /* Handle possible pending IPIs */
872 smp_handle_ext_call();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400873 set_cpu_online(smp_processor_id(), false);
874 /* Disable pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100875 pfault_fini();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400876 /* Disable interrupt sources via control register. */
877 __ctl_store(cregs, 0, 15);
878 cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */
879 cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */
880 cregs[14] &= ~0x1f000000UL; /* disable most machine checks */
881 __ctl_load(cregs, 0, 15);
Martin Schwidefskyfe0f4972014-09-30 17:37:52 +0200882 clear_cpu_flag(CIF_NOHZ_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return 0;
884}
885
Heiko Carstens39ce0102007-04-27 16:02:00 +0200886void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400888 struct pcpu *pcpu;
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /* Wait until target cpu is down */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400891 pcpu = pcpu_devices + cpu;
892 while (!pcpu_stopped(pcpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 cpu_relax();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400894 pcpu_free_lowcore(pcpu);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200895 cpumask_clear_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky64f31d52016-05-25 09:45:26 +0200896 cpumask_clear_cpu(cpu, &init_mm.context.cpu_attach_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Heiko Carstensb456d942011-05-23 10:24:33 +0200899void __noreturn cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 idle_task_exit();
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200902 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400903 for (;;) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
Heiko Carstens255acee2006-02-17 13:52:46 -0800906#endif /* CONFIG_HOTPLUG_CPU */
907
Heiko Carstensd80512f2013-12-16 14:31:26 +0100908void __init smp_fill_possible_mask(void)
909{
David Hildenbrand9747bc42015-05-06 09:29:53 +0200910 unsigned int possible, sclp_max, cpu;
Heiko Carstensd80512f2013-12-16 14:31:26 +0100911
David Hildenbrand3a9f3fe2015-05-06 13:19:29 +0200912 sclp_max = max(sclp.mtid, sclp.mtid_cp) + 1;
913 sclp_max = min(smp_max_threads, sclp_max);
Dan Carpenter61282af2016-07-18 09:02:56 +0200914 sclp_max = (sclp.max_cores * sclp_max) ?: nr_cpu_ids;
Heiko Carstenscf813db2014-03-10 14:50:16 +0100915 possible = setup_possible_cpus ?: nr_cpu_ids;
David Hildenbrand9747bc42015-05-06 09:29:53 +0200916 possible = min(possible, sclp_max);
Heiko Carstensd80512f2013-12-16 14:31:26 +0100917 for (cpu = 0; cpu < possible && cpu < nr_cpu_ids; cpu++)
918 set_cpu_possible(cpu, true);
919}
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921void __init smp_prepare_cpus(unsigned int max_cpus)
922{
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100923 unsigned long size;
924
Heiko Carstens39ce0102007-04-27 16:02:00 +0200925 /* request the 0x1201 emergency signal external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200926 if (register_external_irq(EXT_IRQ_EMERGENCY_SIG, do_ext_call_interrupt))
Heiko Carstens39ce0102007-04-27 16:02:00 +0200927 panic("Couldn't request external interrupt 0x1201");
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100928 /* request the 0x1202 external call external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200929 if (register_external_irq(EXT_IRQ_EXTERNAL_CALL, do_ext_call_interrupt))
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100930 panic("Couldn't request external interrupt 0x1202");
Martin Schwidefsky916cda12016-01-26 14:10:34 +0100931 /* create slab cache for the machine-check-extended-save-areas */
932 if (MACHINE_HAS_VX || MACHINE_HAS_GS) {
933 size = 1UL << (MACHINE_HAS_GS ? 11 : 10);
934 pcpu_mcesa_cache = kmem_cache_create("nmi_save_areas",
935 size, size, 0, NULL);
936 if (!pcpu_mcesa_cache)
937 panic("Couldn't create nmi save area cache");
938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200941void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400943 struct pcpu *pcpu = pcpu_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400945 pcpu->state = CPU_STATE_CONFIGURED;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100946 pcpu->address = stap();
Heiko Carstensc667aea2015-12-31 10:29:00 +0100947 pcpu->lowcore = (struct lowcore *)(unsigned long) store_prefix();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400948 S390_lowcore.percpu_offset = __per_cpu_offset[0];
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200949 smp_cpu_set_polarization(0, POLARIZATION_UNKNOWN);
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200950 set_cpu_present(0, true);
951 set_cpu_online(0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200954void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
Heiko Carstens02beacc2010-01-13 20:44:34 +0100958void __init smp_setup_processor_id(void)
959{
960 S390_lowcore.cpu_nr = 0;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200961 S390_lowcore.spinlock_lockval = arch_spin_lockval(0);
Heiko Carstens02beacc2010-01-13 20:44:34 +0100962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964/*
965 * the frequency of the profiling timer can be changed
966 * by writing a multiplier value into /proc/profile.
967 *
968 * usually you want to run this on all CPUs ;)
969 */
970int setup_profiling_timer(unsigned int multiplier)
971{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200972 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Heiko Carstens08d07962008-01-26 14:10:56 +0100975#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800976static ssize_t cpu_configure_show(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400977 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100978{
979 ssize_t count;
980
981 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400982 count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state);
Heiko Carstens08d07962008-01-26 14:10:56 +0100983 mutex_unlock(&smp_cpu_state_mutex);
984 return count;
985}
986
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800987static ssize_t cpu_configure_store(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400988 struct device_attribute *attr,
989 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100990{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400991 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100992 int cpu, val, rc, i;
Heiko Carstens08d07962008-01-26 14:10:56 +0100993 char delim;
994
995 if (sscanf(buf, "%d %c", &val, &delim) != 1)
996 return -EINVAL;
997 if (val != 0 && val != 1)
998 return -EINVAL;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100999 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001000 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +01001001 rc = -EBUSY;
Heiko Carstens2c2df112010-02-26 22:37:34 +01001002 /* disallow configuration changes of online cpus and cpu 0 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001003 cpu = dev->id;
Heiko Carstens54231452016-12-05 21:18:58 +01001004 cpu = smp_get_base_cpu(cpu);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001005 if (cpu == 0)
Heiko Carstens08d07962008-01-26 14:10:56 +01001006 goto out;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001007 for (i = 0; i <= smp_cpu_mtid; i++)
1008 if (cpu_online(cpu + i))
1009 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001010 pcpu = pcpu_devices + cpu;
Heiko Carstens08d07962008-01-26 14:10:56 +01001011 rc = 0;
1012 switch (val) {
1013 case 0:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001014 if (pcpu->state != CPU_STATE_CONFIGURED)
1015 break;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001016 rc = sclp_core_deconfigure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001017 if (rc)
1018 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001019 for (i = 0; i <= smp_cpu_mtid; i++) {
1020 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
1021 continue;
1022 pcpu[i].state = CPU_STATE_STANDBY;
1023 smp_cpu_set_polarization(cpu + i,
1024 POLARIZATION_UNKNOWN);
1025 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001026 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001027 break;
1028 case 1:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001029 if (pcpu->state != CPU_STATE_STANDBY)
1030 break;
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001031 rc = sclp_core_configure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001032 if (rc)
1033 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +01001034 for (i = 0; i <= smp_cpu_mtid; i++) {
1035 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
1036 continue;
1037 pcpu[i].state = CPU_STATE_CONFIGURED;
1038 smp_cpu_set_polarization(cpu + i,
1039 POLARIZATION_UNKNOWN);
1040 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001041 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001042 break;
1043 default:
1044 break;
1045 }
1046out:
Heiko Carstens08d07962008-01-26 14:10:56 +01001047 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001048 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001049 return rc ? rc : count;
1050}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001051static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001052#endif /* CONFIG_HOTPLUG_CPU */
1053
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001054static ssize_t show_cpu_address(struct device *dev,
1055 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +01001056{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001057 return sprintf(buf, "%d\n", pcpu_devices[dev->id].address);
Heiko Carstens08d07962008-01-26 14:10:56 +01001058}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001059static DEVICE_ATTR(address, 0444, show_cpu_address, NULL);
Heiko Carstens08d07962008-01-26 14:10:56 +01001060
Heiko Carstens08d07962008-01-26 14:10:56 +01001061static struct attribute *cpu_common_attrs[] = {
1062#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001063 &dev_attr_configure.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001064#endif
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001065 &dev_attr_address.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001066 NULL,
1067};
1068
1069static struct attribute_group cpu_common_attr_group = {
1070 .attrs = cpu_common_attrs,
1071};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Heiko Carstens08d07962008-01-26 14:10:56 +01001073static struct attribute *cpu_online_attrs[] = {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001074 &dev_attr_idle_count.attr,
1075 &dev_attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001076 NULL,
1077};
1078
Heiko Carstens08d07962008-01-26 14:10:56 +01001079static struct attribute_group cpu_online_attr_group = {
1080 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001081};
1082
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001083static int smp_cpu_online(unsigned int cpu)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001084{
Heiko Carstens2f859d02015-02-11 12:31:03 +01001085 struct device *s = &per_cpu(cpu_device, cpu)->dev;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001086
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001087 return sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1088}
1089static int smp_cpu_pre_down(unsigned int cpu)
1090{
1091 struct device *s = &per_cpu(cpu_device, cpu)->dev;
1092
1093 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
1094 return 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001095}
1096
Paul Gortmakere2741f12013-06-18 17:04:52 -04001097static int smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +01001098{
Heiko Carstens96619fc2013-12-05 12:42:09 +01001099 struct device *s;
1100 struct cpu *c;
Heiko Carstens08d07962008-01-26 14:10:56 +01001101 int rc;
1102
Heiko Carstens96619fc2013-12-05 12:42:09 +01001103 c = kzalloc(sizeof(*c), GFP_KERNEL);
1104 if (!c)
1105 return -ENOMEM;
Heiko Carstens2f859d02015-02-11 12:31:03 +01001106 per_cpu(cpu_device, cpu) = c;
Heiko Carstens96619fc2013-12-05 12:42:09 +01001107 s = &c->dev;
Heiko Carstens08d07962008-01-26 14:10:56 +01001108 c->hotpluggable = 1;
1109 rc = register_cpu(c, cpu);
1110 if (rc)
1111 goto out;
1112 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1113 if (rc)
1114 goto out_cpu;
Heiko Carstens83a24e32011-12-27 11:27:09 +01001115 rc = topology_cpu_init(c);
1116 if (rc)
1117 goto out_topology;
1118 return 0;
1119
1120out_topology:
Heiko Carstens08d07962008-01-26 14:10:56 +01001121 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1122out_cpu:
1123#ifdef CONFIG_HOTPLUG_CPU
1124 unregister_cpu(c);
1125#endif
1126out:
1127 return rc;
1128}
1129
1130#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001131
Heiko Carstens67060d92008-05-30 10:03:27 +02001132int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001133{
Martin Schwidefskyd08d9432015-06-18 14:23:00 +02001134 struct sclp_core_info *info;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001135 int nr;
Heiko Carstens08d07962008-01-26 14:10:56 +01001136
Heiko Carstensaf51160e2016-12-03 09:48:01 +01001137 info = kzalloc(sizeof(*info), GFP_KERNEL);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001138 if (!info)
1139 return -ENOMEM;
Heiko Carstensaf51160e2016-12-03 09:48:01 +01001140 smp_get_core_info(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001141 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001142 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001143 nr = __smp_rescan_cpus(info, 1);
Heiko Carstens08d07962008-01-26 14:10:56 +01001144 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001145 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001146 kfree(info);
1147 if (nr)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001148 topology_schedule_update();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001149 return 0;
Heiko Carstens1e489512008-04-30 13:38:37 +02001150}
1151
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001152static ssize_t __ref rescan_store(struct device *dev,
1153 struct device_attribute *attr,
Andi Kleenc9be0a32010-01-05 12:47:58 +01001154 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001155 size_t count)
1156{
1157 int rc;
1158
1159 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001160 return rc ? rc : count;
1161}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001162static DEVICE_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001163#endif /* CONFIG_HOTPLUG_CPU */
1164
Heiko Carstens83a24e32011-12-27 11:27:09 +01001165static int __init s390_smp_init(void)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001166{
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301167 int cpu, rc = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001168
Heiko Carstens08d07962008-01-26 14:10:56 +01001169#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001170 rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001171 if (rc)
1172 return rc;
1173#endif
1174 for_each_present_cpu(cpu) {
1175 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001176 if (rc)
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301177 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301179
Sebastian Andrzej Siewiordfbbd862016-11-04 15:45:03 +01001180 rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "s390/smp:online",
1181 smp_cpu_online, smp_cpu_pre_down);
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301182out:
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301183 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
Heiko Carstens83a24e32011-12-27 11:27:09 +01001185subsys_initcall(s390_smp_init);