blob: efd2c1968000afadc669d1f23e740317a5b809be [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040025#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/spinlock.h>
27#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/interrupt.h>
Christian Borntraeger3324e602009-03-26 15:23:56 +010030#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Michael Holzheu60a0c682011-10-30 15:16:40 +010033#include <linux/crash_dump.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010034#include <asm/asm-offsets.h>
Heiko Carstens1e3cab22012-03-30 09:40:55 +020035#include <asm/switch_to.h>
36#include <asm/facility.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010037#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010038#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/tlbflush.h>
Martin Schwidefsky27f6b412012-07-20 11:15:08 +020041#include <asm/vtimer.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020042#include <asm/lowcore.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010043#include <asm/sclp.h>
Martin Schwidefskyc742b312008-12-31 15:11:42 +010044#include <asm/vdso.h>
Michael Holzheu3ab121a2012-03-11 11:59:32 -040045#include <asm/debug.h>
Michael Holzheu4857d4b2012-03-11 11:59:34 -040046#include <asm/os_info.h>
Heiko Carstensa9ae32c2012-06-04 12:55:15 +020047#include <asm/sigp.h>
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +020048#include <asm/idle.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020049#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040051enum {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040052 ec_schedule = 0,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040053 ec_call_function_single,
54 ec_stop_cpu,
55};
Heiko Carstens08d07962008-01-26 14:10:56 +010056
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040057enum {
Heiko Carstens08d07962008-01-26 14:10:56 +010058 CPU_STATE_STANDBY,
59 CPU_STATE_CONFIGURED,
60};
61
Heiko Carstens2f859d02015-02-11 12:31:03 +010062static DEFINE_PER_CPU(struct cpu *, cpu_device);
63
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040064struct pcpu {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040065 struct _lowcore *lowcore; /* lowcore page(s) for the cpu */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040066 unsigned long ec_mask; /* bit mask for ec_xxx functions */
Heiko Carstens2f859d02015-02-11 12:31:03 +010067 signed char state; /* physical cpu state */
68 signed char polarization; /* physical polarization */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040069 u16 address; /* physical cpu address */
70};
71
72static u8 boot_cpu_type;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040073static struct pcpu pcpu_devices[NR_CPUS];
74
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010075unsigned int smp_cpu_mt_shift;
76EXPORT_SYMBOL(smp_cpu_mt_shift);
77
78unsigned int smp_cpu_mtid;
79EXPORT_SYMBOL(smp_cpu_mtid);
80
81static unsigned int smp_max_threads __initdata = -1U;
82
83static int __init early_nosmt(char *s)
84{
85 smp_max_threads = 1;
86 return 0;
87}
88early_param("nosmt", early_nosmt);
89
90static int __init early_smt(char *s)
91{
92 get_option(&s, &smp_max_threads);
93 return 0;
94}
95early_param("smt", early_smt);
96
Heiko Carstens50ab9a92012-09-04 17:36:16 +020097/*
98 * The smp_cpu_state_mutex must be held when changing the state or polarization
99 * member of a pcpu data structure within the pcpu_devices arreay.
100 */
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200101DEFINE_MUTEX(smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100102
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400103/*
104 * Signal processor helper functions.
105 */
Michael Holzheua62bc072014-10-06 17:57:43 +0200106static inline int __pcpu_sigp_relax(u16 addr, u8 order, unsigned long parm,
107 u32 *status)
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100108{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400109 int cc;
110
111 while (1) {
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200112 cc = __pcpu_sigp(addr, order, parm, NULL);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200113 if (cc != SIGP_CC_BUSY)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400114 return cc;
115 cpu_relax();
116 }
117}
118
119static int pcpu_sigp_retry(struct pcpu *pcpu, u8 order, u32 parm)
120{
121 int cc, retry;
122
123 for (retry = 0; ; retry++) {
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200124 cc = __pcpu_sigp(pcpu->address, order, parm, NULL);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200125 if (cc != SIGP_CC_BUSY)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400126 break;
127 if (retry >= 3)
128 udelay(10);
129 }
130 return cc;
131}
132
133static inline int pcpu_stopped(struct pcpu *pcpu)
134{
Heiko Carstens41459d36cf2012-09-14 11:09:52 +0200135 u32 uninitialized_var(status);
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200136
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200137 if (__pcpu_sigp(pcpu->address, SIGP_SENSE,
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200138 0, &status) != SIGP_CC_STATUS_STORED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400139 return 0;
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200140 return !!(status & (SIGP_STATUS_CHECK_STOP|SIGP_STATUS_STOPPED));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400141}
142
143static inline int pcpu_running(struct pcpu *pcpu)
144{
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200145 if (__pcpu_sigp(pcpu->address, SIGP_SENSE_RUNNING,
Heiko Carstensc5e3acd2012-08-30 14:24:42 +0200146 0, NULL) != SIGP_CC_STATUS_STORED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400147 return 1;
Heiko Carstens524b24a2012-06-04 12:11:41 +0200148 /* Status stored condition code is equivalent to cpu not running. */
149 return 0;
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100150}
151
Michael Holzheu1943f532011-10-30 15:16:38 +0100152/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400153 * Find struct pcpu by cpu address.
Michael Holzheu1943f532011-10-30 15:16:38 +0100154 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100155static struct pcpu *pcpu_find_address(const struct cpumask *mask, u16 address)
Michael Holzheu1943f532011-10-30 15:16:38 +0100156{
157 int cpu;
158
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400159 for_each_cpu(cpu, mask)
160 if (pcpu_devices[cpu].address == address)
161 return pcpu_devices + cpu;
162 return NULL;
163}
164
165static void pcpu_ec_call(struct pcpu *pcpu, int ec_bit)
166{
167 int order;
168
Heiko Carstensdea24192013-12-03 10:06:29 +0100169 if (test_and_set_bit(ec_bit, &pcpu->ec_mask))
170 return;
171 order = pcpu_running(pcpu) ? SIGP_EXTERNAL_CALL : SIGP_EMERGENCY_SIGNAL;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400172 pcpu_sigp_retry(pcpu, order, 0);
173}
174
Heiko Carstens2f859d02015-02-11 12:31:03 +0100175#define ASYNC_FRAME_OFFSET (ASYNC_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE)
176#define PANIC_FRAME_OFFSET (PAGE_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE)
177
Paul Gortmakere2741f12013-06-18 17:04:52 -0400178static int pcpu_alloc_lowcore(struct pcpu *pcpu, int cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400179{
Heiko Carstens2f859d02015-02-11 12:31:03 +0100180 unsigned long async_stack, panic_stack;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400181 struct _lowcore *lc;
182
183 if (pcpu != &pcpu_devices[0]) {
184 pcpu->lowcore = (struct _lowcore *)
185 __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100186 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
187 panic_stack = __get_free_page(GFP_KERNEL);
188 if (!pcpu->lowcore || !panic_stack || !async_stack)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400189 goto out;
Heiko Carstens2f859d02015-02-11 12:31:03 +0100190 } else {
191 async_stack = pcpu->lowcore->async_stack - ASYNC_FRAME_OFFSET;
192 panic_stack = pcpu->lowcore->panic_stack - PANIC_FRAME_OFFSET;
Michael Holzheu1943f532011-10-30 15:16:38 +0100193 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400194 lc = pcpu->lowcore;
195 memcpy(lc, &S390_lowcore, 512);
196 memset((char *) lc + 512, 0, sizeof(*lc) - 512);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100197 lc->async_stack = async_stack + ASYNC_FRAME_OFFSET;
198 lc->panic_stack = panic_stack + PANIC_FRAME_OFFSET;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400199 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200200 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefsky80703612014-10-06 17:53:53 +0200201 if (MACHINE_HAS_VX)
202 lc->vector_save_area_addr =
203 (unsigned long) &lc->vector_save_area;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400204 if (vdso_alloc_per_cpu(lc))
205 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400206 lowcore_ptr[cpu] = lc;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200207 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, (u32)(unsigned long) lc);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400208 return 0;
209out:
210 if (pcpu != &pcpu_devices[0]) {
Heiko Carstens2f859d02015-02-11 12:31:03 +0100211 free_page(panic_stack);
212 free_pages(async_stack, ASYNC_ORDER);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400213 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
214 }
215 return -ENOMEM;
Michael Holzheu1943f532011-10-30 15:16:38 +0100216}
217
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200218#ifdef CONFIG_HOTPLUG_CPU
219
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400220static void pcpu_free_lowcore(struct pcpu *pcpu)
Heiko Carstens2c2df112010-02-26 22:37:34 +0100221{
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200222 pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400223 lowcore_ptr[pcpu - pcpu_devices] = NULL;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400224 vdso_free_per_cpu(pcpu->lowcore);
Heiko Carstens2f859d02015-02-11 12:31:03 +0100225 if (pcpu == &pcpu_devices[0])
226 return;
227 free_page(pcpu->lowcore->panic_stack-PANIC_FRAME_OFFSET);
228 free_pages(pcpu->lowcore->async_stack-ASYNC_FRAME_OFFSET, ASYNC_ORDER);
229 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
Heiko Carstens2c2df112010-02-26 22:37:34 +0100230}
231
Heiko Carstens9d0f46a2012-05-09 16:27:35 +0200232#endif /* CONFIG_HOTPLUG_CPU */
233
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400234static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu)
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100235{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400236 struct _lowcore *lc = pcpu->lowcore;
237
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200238 if (MACHINE_HAS_TLB_LC)
239 cpumask_set_cpu(cpu, &init_mm.context.cpu_attach_mask);
240 cpumask_set_cpu(cpu, mm_cpumask(&init_mm));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400241 atomic_inc(&init_mm.context.attach_count);
242 lc->cpu_nr = cpu;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200243 lc->spinlock_lockval = arch_spin_lockval(cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400244 lc->percpu_offset = __per_cpu_offset[cpu];
245 lc->kernel_asce = S390_lowcore.kernel_asce;
246 lc->machine_flags = S390_lowcore.machine_flags;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400247 lc->user_timer = lc->system_timer = lc->steal_timer = 0;
248 __ctl_store(lc->cregs_save_area, 0, 15);
249 save_access_regs((unsigned int *) lc->access_regs_save_area);
250 memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list,
251 MAX_FACILITY_BIT/8);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100252}
253
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400254static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk)
255{
256 struct _lowcore *lc = pcpu->lowcore;
257 struct thread_info *ti = task_thread_info(tsk);
258
Martin Schwidefskydc7ee002013-04-24 10:20:43 +0200259 lc->kernel_stack = (unsigned long) task_stack_page(tsk)
260 + THREAD_SIZE - STACK_FRAME_OVERHEAD - sizeof(struct pt_regs);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400261 lc->thread_info = (unsigned long) task_thread_info(tsk);
262 lc->current_task = (unsigned long) tsk;
263 lc->user_timer = ti->user_timer;
264 lc->system_timer = ti->system_timer;
265 lc->steal_timer = 0;
266}
267
268static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data)
269{
270 struct _lowcore *lc = pcpu->lowcore;
271
272 lc->restart_stack = lc->kernel_stack;
273 lc->restart_fn = (unsigned long) func;
274 lc->restart_data = (unsigned long) data;
275 lc->restart_source = -1UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200276 pcpu_sigp_retry(pcpu, SIGP_RESTART, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400277}
278
279/*
280 * Call function via PSW restart on pcpu and stop the current cpu.
281 */
282static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *),
283 void *data, unsigned long stack)
284{
Michael Holzheu061da3d2012-05-24 14:38:26 +0200285 struct _lowcore *lc = lowcore_ptr[pcpu - pcpu_devices];
Heiko Carstensfbe76562012-06-05 09:59:52 +0200286 unsigned long source_cpu = stap();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400287
Martin Schwidefskye258d712013-09-24 09:14:56 +0200288 __load_psw_mask(PSW_KERNEL_BITS);
Heiko Carstensfbe76562012-06-05 09:59:52 +0200289 if (pcpu->address == source_cpu)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400290 func(data); /* should not return */
291 /* Stop target cpu (if func returns this stops the current cpu). */
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200292 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400293 /* Restart func on the target cpu and stop the current cpu. */
Heiko Carstensfbe76562012-06-05 09:59:52 +0200294 mem_assign_absolute(lc->restart_stack, stack);
295 mem_assign_absolute(lc->restart_fn, (unsigned long) func);
296 mem_assign_absolute(lc->restart_data, (unsigned long) data);
297 mem_assign_absolute(lc->restart_source, source_cpu);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400298 asm volatile(
Heiko Carstenseb546192012-06-04 15:05:43 +0200299 "0: sigp 0,%0,%2 # sigp restart to target cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400300 " brc 2,0b # busy, try again\n"
Heiko Carstenseb546192012-06-04 15:05:43 +0200301 "1: sigp 0,%1,%3 # sigp stop to current cpu\n"
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400302 " brc 2,1b # busy, try again\n"
Heiko Carstensfbe76562012-06-05 09:59:52 +0200303 : : "d" (pcpu->address), "d" (source_cpu),
Heiko Carstenseb546192012-06-04 15:05:43 +0200304 "K" (SIGP_RESTART), "K" (SIGP_STOP)
305 : "0", "1", "cc");
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400306 for (;;) ;
307}
308
309/*
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100310 * Enable additional logical cpus for multi-threading.
311 */
312static int pcpu_set_smt(unsigned int mtid)
313{
314 register unsigned long reg1 asm ("1") = (unsigned long) mtid;
315 int cc;
316
317 if (smp_cpu_mtid == mtid)
318 return 0;
319 asm volatile(
320 " sigp %1,0,%2 # sigp set multi-threading\n"
321 " ipm %0\n"
322 " srl %0,28\n"
323 : "=d" (cc) : "d" (reg1), "K" (SIGP_SET_MULTI_THREADING)
324 : "cc");
325 if (cc == 0) {
326 smp_cpu_mtid = mtid;
327 smp_cpu_mt_shift = 0;
328 while (smp_cpu_mtid >= (1U << smp_cpu_mt_shift))
329 smp_cpu_mt_shift++;
330 pcpu_devices[0].address = stap();
331 }
332 return cc;
333}
334
335/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400336 * Call function on an online CPU.
337 */
338void smp_call_online_cpu(void (*func)(void *), void *data)
339{
340 struct pcpu *pcpu;
341
342 /* Use the current cpu if it is online. */
343 pcpu = pcpu_find_address(cpu_online_mask, stap());
344 if (!pcpu)
345 /* Use the first online cpu. */
346 pcpu = pcpu_devices + cpumask_first(cpu_online_mask);
347 pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack);
348}
349
350/*
351 * Call function on the ipl CPU.
352 */
353void smp_call_ipl_cpu(void (*func)(void *), void *data)
354{
Michael Holzheuc6da39f2012-03-13 11:25:08 -0400355 pcpu_delegate(&pcpu_devices[0], func, data,
Heiko Carstens2f859d02015-02-11 12:31:03 +0100356 pcpu_devices->lowcore->panic_stack -
357 PANIC_FRAME_OFFSET + PAGE_SIZE);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400358}
359
360int smp_find_processor_id(u16 address)
361{
362 int cpu;
363
364 for_each_present_cpu(cpu)
365 if (pcpu_devices[cpu].address == address)
366 return cpu;
367 return -1;
368}
369
370int smp_vcpu_scheduled(int cpu)
371{
372 return pcpu_running(pcpu_devices + cpu);
373}
374
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400375void smp_yield_cpu(int cpu)
376{
377 if (MACHINE_HAS_DIAG9C)
378 asm volatile("diag %0,0,0x9c"
379 : : "d" (pcpu_devices[cpu].address));
380 else if (MACHINE_HAS_DIAG44)
381 asm volatile("diag 0,0,0x44");
382}
383
384/*
385 * Send cpus emergency shutdown signal. This gives the cpus the
386 * opportunity to complete outstanding interrupts.
387 */
Heiko Carstens63df41d62013-09-06 19:10:48 +0200388static void smp_emergency_stop(cpumask_t *cpumask)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400389{
390 u64 end;
391 int cpu;
392
Heiko Carstens1aae0562013-01-30 09:49:40 +0100393 end = get_tod_clock() + (1000000UL << 12);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400394 for_each_cpu(cpu, cpumask) {
395 struct pcpu *pcpu = pcpu_devices + cpu;
396 set_bit(ec_stop_cpu, &pcpu->ec_mask);
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200397 while (__pcpu_sigp(pcpu->address, SIGP_EMERGENCY_SIGNAL,
398 0, NULL) == SIGP_CC_BUSY &&
Heiko Carstens1aae0562013-01-30 09:49:40 +0100399 get_tod_clock() < end)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400400 cpu_relax();
401 }
Heiko Carstens1aae0562013-01-30 09:49:40 +0100402 while (get_tod_clock() < end) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400403 for_each_cpu(cpu, cpumask)
404 if (pcpu_stopped(pcpu_devices + cpu))
405 cpumask_clear_cpu(cpu, cpumask);
406 if (cpumask_empty(cpumask))
407 break;
408 cpu_relax();
409 }
410}
411
412/*
413 * Stop all cpus but the current one.
414 */
Heiko Carstens677d7622007-11-20 11:13:37 +0100415void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100417 cpumask_t cpumask;
418 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Heiko Carstens677d7622007-11-20 11:13:37 +0100420 /* Disable all interrupts/machine checks */
Martin Schwidefskye258d712013-09-24 09:14:56 +0200421 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Christian Borntraeger3324e602009-03-26 15:23:56 +0100422 trace_hardirqs_off();
Heiko Carstens677d7622007-11-20 11:13:37 +0100423
Michael Holzheu3ab121a2012-03-11 11:59:32 -0400424 debug_set_critical();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100425 cpumask_copy(&cpumask, cpu_online_mask);
426 cpumask_clear_cpu(smp_processor_id(), &cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400428 if (oops_in_progress)
429 smp_emergency_stop(&cpumask);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100430
431 /* stop all processors */
432 for_each_cpu(cpu, &cpumask) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400433 struct pcpu *pcpu = pcpu_devices + cpu;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200434 pcpu_sigp_retry(pcpu, SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400435 while (!pcpu_stopped(pcpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100436 cpu_relax();
437 }
438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * This is the main routine where commands issued by other
442 * cpus are handled.
443 */
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200444static void smp_handle_ext_call(void)
445{
446 unsigned long bits;
447
448 /* handle bit signal external calls */
449 bits = xchg(&pcpu_devices[smp_processor_id()].ec_mask, 0);
450 if (test_bit(ec_stop_cpu, &bits))
451 smp_stop_cpu();
452 if (test_bit(ec_schedule, &bits))
453 scheduler_ipi();
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200454 if (test_bit(ec_call_function_single, &bits))
455 generic_smp_call_function_single_interrupt();
456}
457
Heiko Carstensfde15c32012-03-11 11:59:31 -0400458static void do_ext_call_interrupt(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200459 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200461 inc_irq_stat(ext_code.code == 0x1202 ? IRQEXT_EXC : IRQEXT_EMS);
462 smp_handle_ext_call();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Rusty Russell630cd042009-09-24 09:34:45 -0600465void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100466{
467 int cpu;
468
Rusty Russell630cd042009-09-24 09:34:45 -0600469 for_each_cpu(cpu, mask)
Heiko Carstensb6ed49e2013-05-21 15:34:56 +0200470 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100471}
472
473void arch_send_call_function_single_ipi(int cpu)
474{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400475 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478/*
479 * this function sends a 'reschedule' IPI to another CPU.
480 * it goes straight through and wastes no time serializing
481 * anything. Worst case is that we lose a reschedule ...
482 */
483void smp_send_reschedule(int cpu)
484{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400485 pcpu_ec_call(pcpu_devices + cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
488/*
489 * parameter area for the set/clear control bit callbacks
490 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200491struct ec_creg_mask_parms {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400492 unsigned long orval;
493 unsigned long andval;
494 int cr;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200495};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497/*
498 * callback for setting/clearing control bits
499 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200500static void smp_ctl_bit_callback(void *info)
501{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200502 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 unsigned long cregs[16];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200504
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200505 __ctl_store(cregs, 0, 15);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400506 cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200507 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
510/*
511 * Set a bit in a control register of all cpus
512 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200513void smp_ctl_set_bit(int cr, int bit)
514{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400515 struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200517 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200519EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521/*
522 * Clear a bit in a control register of all cpus
523 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200524void smp_ctl_clear_bit(int cr, int bit)
525{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400526 struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200528 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200530EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Michael Holzheubf28a592014-04-14 10:38:05 +0200532#ifdef CONFIG_CRASH_DUMP
Michael Holzheu411ed322007-04-27 16:01:49 +0200533
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100534static inline void __smp_store_cpu_state(int cpu, u16 address, int is_boot_cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +0100535{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400536 void *lc = pcpu_devices[0].lowcore;
Michael Holzheua62bc072014-10-06 17:57:43 +0200537 struct save_area_ext *sa_ext;
538 unsigned long vx_sa;
Heiko Carstens08d07962008-01-26 14:10:56 +0100539
Michael Holzheua62bc072014-10-06 17:57:43 +0200540 sa_ext = dump_save_area_create(cpu);
541 if (!sa_ext)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400542 panic("could not allocate memory for save area\n");
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100543 if (is_boot_cpu) {
544 /* Copy the registers of the boot CPU. */
Michael Holzheua62bc072014-10-06 17:57:43 +0200545 copy_oldmem_page(1, (void *) &sa_ext->sa, sizeof(sa_ext->sa),
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400546 SAVE_AREA_BASE - PAGE_SIZE, 0);
Michael Holzheua62bc072014-10-06 17:57:43 +0200547 if (MACHINE_HAS_VX)
548 save_vx_regs_safe(sa_ext->vx_regs);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400549 return;
550 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400551 /* Get the registers of a non-boot cpu. */
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200552 __pcpu_sigp_relax(address, SIGP_STOP_AND_STORE_STATUS, 0, NULL);
Michael Holzheua62bc072014-10-06 17:57:43 +0200553 memcpy_real(&sa_ext->sa, lc + SAVE_AREA_BASE, sizeof(sa_ext->sa));
554 if (!MACHINE_HAS_VX)
555 return;
556 /* Get the VX registers */
557 vx_sa = __get_free_page(GFP_KERNEL);
558 if (!vx_sa)
559 panic("could not allocate memory for VX save area\n");
560 __pcpu_sigp_relax(address, SIGP_STORE_ADDITIONAL_STATUS, vx_sa, NULL);
561 memcpy(sa_ext->vx_regs, (void *) vx_sa, sizeof(sa_ext->vx_regs));
562 free_page(vx_sa);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400563}
564
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100565/*
566 * Collect CPU state of the previous, crashed system.
567 * There are four cases:
568 * 1) standard zfcp dump
569 * condition: OLDMEM_BASE == NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
570 * The state for all CPUs except the boot CPU needs to be collected
571 * with sigp stop-and-store-status. The boot CPU state is located in
572 * the absolute lowcore of the memory stored in the HSA. The zcore code
573 * will allocate the save area and copy the boot CPU state from the HSA.
574 * 2) stand-alone kdump for SCSI (zfcp dump with swapped memory)
575 * condition: OLDMEM_BASE != NULL && ipl_info.type == IPL_TYPE_FCP_DUMP
576 * The state for all CPUs except the boot CPU needs to be collected
577 * with sigp stop-and-store-status. The firmware or the boot-loader
578 * stored the registers of the boot CPU in the absolute lowcore in the
579 * memory of the old system.
580 * 3) kdump and the old kernel did not store the CPU state,
581 * or stand-alone kdump for DASD
582 * condition: OLDMEM_BASE != NULL && !is_kdump_kernel()
583 * The state for all CPUs except the boot CPU needs to be collected
584 * with sigp stop-and-store-status. The kexec code or the boot-loader
585 * stored the registers of the boot CPU in the memory of the old system.
586 * 4) kdump and the old kernel stored the CPU state
587 * condition: OLDMEM_BASE != NULL && is_kdump_kernel()
588 * The state of all CPUs is stored in ELF sections in the memory of the
589 * old system. The ELF sections are picked up by the crash_dump code
590 * via elfcorehdr_addr.
591 */
592static void __init smp_store_cpu_states(struct sclp_cpu_info *info)
593{
594 unsigned int cpu, address, i, j;
595 int is_boot_cpu;
596
597 if (is_kdump_kernel())
598 /* Previous system stored the CPU states. Nothing to do. */
599 return;
600 if (!(OLDMEM_BASE || ipl_info.type == IPL_TYPE_FCP_DUMP))
601 /* No previous system present, normal boot. */
602 return;
603 /* Set multi-threading state to the previous system. */
604 pcpu_set_smt(sclp_get_mtid_prev());
605 /* Collect CPU states. */
606 cpu = 0;
607 for (i = 0; i < info->configured; i++) {
608 /* Skip CPUs with different CPU type. */
609 if (info->has_cpu_type && info->cpu[i].type != boot_cpu_type)
610 continue;
611 for (j = 0; j <= smp_cpu_mtid; j++, cpu++) {
612 address = (info->cpu[i].core_id << smp_cpu_mt_shift) + j;
613 is_boot_cpu = (address == pcpu_devices[0].address);
614 if (is_boot_cpu && !OLDMEM_BASE)
615 /* Skip boot CPU for standard zfcp dump. */
616 continue;
617 /* Get state for this CPu. */
618 __smp_store_cpu_state(cpu, address, is_boot_cpu);
619 }
620 }
621}
622
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400623int smp_store_status(int cpu)
624{
Michael Holzheua62bc072014-10-06 17:57:43 +0200625 unsigned long vx_sa;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400626 struct pcpu *pcpu;
627
628 pcpu = pcpu_devices + cpu;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200629 if (__pcpu_sigp_relax(pcpu->address, SIGP_STOP_AND_STORE_STATUS,
630 0, NULL) != SIGP_CC_ORDER_CODE_ACCEPTED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400631 return -EIO;
Michael Holzheua62bc072014-10-06 17:57:43 +0200632 if (!MACHINE_HAS_VX)
633 return 0;
634 vx_sa = __pa(pcpu->lowcore->vector_save_area_addr);
635 __pcpu_sigp_relax(pcpu->address, SIGP_STORE_ADDITIONAL_STATUS,
636 vx_sa, NULL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100637 return 0;
638}
639
Michael Holzheubf28a592014-04-14 10:38:05 +0200640#endif /* CONFIG_CRASH_DUMP */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400641
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200642void smp_cpu_set_polarization(int cpu, int val)
643{
644 pcpu_devices[cpu].polarization = val;
645}
646
647int smp_cpu_get_polarization(int cpu)
648{
649 return pcpu_devices[cpu].polarization;
650}
651
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400652static struct sclp_cpu_info *smp_get_cpu_info(void)
Heiko Carstens08d07962008-01-26 14:10:56 +0100653{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400654 static int use_sigp_detection;
Heiko Carstens08d07962008-01-26 14:10:56 +0100655 struct sclp_cpu_info *info;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400656 int address;
Heiko Carstens08d07962008-01-26 14:10:56 +0100657
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400658 info = kzalloc(sizeof(*info), GFP_KERNEL);
659 if (info && (use_sigp_detection || sclp_get_cpu_info(info))) {
660 use_sigp_detection = 1;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100661 for (address = 0; address <= MAX_CPU_ADDRESS;
662 address += (1U << smp_cpu_mt_shift)) {
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200663 if (__pcpu_sigp_relax(address, SIGP_SENSE, 0, NULL) ==
664 SIGP_CC_NOT_OPERATIONAL)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400665 continue;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100666 info->cpu[info->configured].core_id =
667 address >> smp_cpu_mt_shift;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400668 info->configured++;
669 }
670 info->combined = info->configured;
Heiko Carstens08d07962008-01-26 14:10:56 +0100671 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400672 return info;
Heiko Carstens08d07962008-01-26 14:10:56 +0100673}
674
Paul Gortmakere2741f12013-06-18 17:04:52 -0400675static int smp_add_present_cpu(int cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100676
Paul Gortmakere2741f12013-06-18 17:04:52 -0400677static int __smp_rescan_cpus(struct sclp_cpu_info *info, int sysfs_add)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400678{
679 struct pcpu *pcpu;
680 cpumask_t avail;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100681 int cpu, nr, i, j;
682 u16 address;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400683
684 nr = 0;
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200685 cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400686 cpu = cpumask_first(&avail);
687 for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) {
688 if (info->has_cpu_type && info->cpu[i].type != boot_cpu_type)
689 continue;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100690 address = info->cpu[i].core_id << smp_cpu_mt_shift;
691 for (j = 0; j <= smp_cpu_mtid; j++) {
692 if (pcpu_find_address(cpu_present_mask, address + j))
693 continue;
694 pcpu = pcpu_devices + cpu;
695 pcpu->address = address + j;
696 pcpu->state =
697 (cpu >= info->configured*(smp_cpu_mtid + 1)) ?
698 CPU_STATE_STANDBY : CPU_STATE_CONFIGURED;
699 smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
700 set_cpu_present(cpu, true);
701 if (sysfs_add && smp_add_present_cpu(cpu) != 0)
702 set_cpu_present(cpu, false);
703 else
704 nr++;
705 cpu = cpumask_next(cpu, &avail);
706 if (cpu >= nr_cpu_ids)
707 break;
708 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400709 }
710 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
Heiko Carstens48483b32008-01-26 14:11:05 +0100713static void __init smp_detect_cpus(void)
714{
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100715 unsigned int cpu, mtid, c_cpus, s_cpus;
Heiko Carstens48483b32008-01-26 14:11:05 +0100716 struct sclp_cpu_info *info;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100717 u16 address;
Heiko Carstens48483b32008-01-26 14:11:05 +0100718
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100719 /* Get CPU information */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400720 info = smp_get_cpu_info();
Heiko Carstens48483b32008-01-26 14:11:05 +0100721 if (!info)
722 panic("smp_detect_cpus failed to allocate memory\n");
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100723
724 /* Find boot CPU type */
Heiko Carstens48483b32008-01-26 14:11:05 +0100725 if (info->has_cpu_type) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100726 address = stap();
727 for (cpu = 0; cpu < info->combined; cpu++)
728 if (info->cpu[cpu].core_id == address) {
729 /* The boot cpu dictates the cpu type. */
730 boot_cpu_type = info->cpu[cpu].type;
731 break;
732 }
733 if (cpu >= info->combined)
734 panic("Could not find boot CPU type");
Heiko Carstens48483b32008-01-26 14:11:05 +0100735 }
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100736
Paul Bolle032f1be2015-01-16 10:35:05 +0100737#ifdef CONFIG_CRASH_DUMP
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100738 /* Collect CPU state of previous system */
739 smp_store_cpu_states(info);
740#endif
741
742 /* Set multi-threading state for the current system */
743 mtid = sclp_get_mtid(boot_cpu_type);
744 mtid = (mtid < smp_max_threads) ? mtid : smp_max_threads - 1;
745 pcpu_set_smt(mtid);
746
747 /* Print number of CPUs */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400748 c_cpus = s_cpus = 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100749 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400750 if (info->has_cpu_type && info->cpu[cpu].type != boot_cpu_type)
Heiko Carstens48483b32008-01-26 14:11:05 +0100751 continue;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100752 if (cpu < info->configured)
753 c_cpus += smp_cpu_mtid + 1;
754 else
755 s_cpus += smp_cpu_mtid + 1;
Heiko Carstens48483b32008-01-26 14:11:05 +0100756 }
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100757 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100758
759 /* Add CPUs present at boot */
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100760 get_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400761 __smp_rescan_cpus(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100762 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400763 kfree(info);
Heiko Carstens48483b32008-01-26 14:11:05 +0100764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200767 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400769static void smp_start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Heiko Carstens1aae0562013-01-30 09:49:40 +0100771 S390_lowcore.last_update_clock = get_tod_clock();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400772 S390_lowcore.restart_stack = (unsigned long) restart_stack;
773 S390_lowcore.restart_fn = (unsigned long) do_restart;
774 S390_lowcore.restart_data = 0;
775 S390_lowcore.restart_source = -1UL;
776 restore_access_regs(S390_lowcore.access_regs_save_area);
777 __ctl_load(S390_lowcore.cregs_save_area, 0, 15);
Martin Schwidefskye258d712013-09-24 09:14:56 +0200778 __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200779 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800780 preempt_disable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200781 init_cpu_timer();
Martin Schwidefskyb5f87f12014-10-01 10:57:57 +0200782 vtime_init();
Heiko Carstens29b08d22006-12-04 15:40:40 +0100783 pfault_init();
Manfred Spraule545a612008-09-07 16:57:22 +0200784 notify_cpu_starting(smp_processor_id());
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200785 set_cpu_online(smp_processor_id(), true);
Heiko Carstens93f3b2e2013-01-02 16:54:12 +0100786 inc_irq_stat(CPU_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 local_irq_enable();
Thomas Gleixner52c00652013-03-21 22:49:57 +0100788 cpu_startup_entry(CPUHP_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791/* Upping and downing of CPUs */
Paul Gortmakere2741f12013-06-18 17:04:52 -0400792int __cpu_up(unsigned int cpu, struct task_struct *tidle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400794 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100795 int base, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400797 pcpu = pcpu_devices + cpu;
798 if (pcpu->state != CPU_STATE_CONFIGURED)
Heiko Carstens08d07962008-01-26 14:10:56 +0100799 return -EIO;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100800 base = cpu - (cpu % (smp_cpu_mtid + 1));
801 for (i = 0; i <= smp_cpu_mtid; i++) {
802 if (base + i < nr_cpu_ids)
803 if (cpu_online(base + i))
804 break;
805 }
806 /*
807 * If this is the first CPU of the core to get online
808 * do an initial CPU reset.
809 */
810 if (i > smp_cpu_mtid &&
811 pcpu_sigp_retry(pcpu_devices + base, SIGP_INITIAL_CPU_RESET, 0) !=
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200812 SIGP_CC_ORDER_CODE_ACCEPTED)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400813 return -EIO;
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000814
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400815 rc = pcpu_alloc_lowcore(pcpu, cpu);
816 if (rc)
817 return rc;
818 pcpu_prepare_secondary(pcpu, cpu);
Thomas Gleixnere80e7812012-04-20 13:05:52 +0000819 pcpu_attach_task(pcpu, tidle);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400820 pcpu_start_fn(pcpu, smp_start_secondary, NULL);
Heiko Carstensa1307bb2015-03-30 12:51:42 +0200821 /* Wait until cpu puts itself in the online & active maps */
822 while (!cpu_online(cpu) || !cpu_active(cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 cpu_relax();
824 return 0;
825}
826
Heiko Carstensd80512f2013-12-16 14:31:26 +0100827static unsigned int setup_possible_cpus __initdata;
Heiko Carstens48483b32008-01-26 14:11:05 +0100828
Heiko Carstensd80512f2013-12-16 14:31:26 +0100829static int __init _setup_possible_cpus(char *s)
830{
831 get_option(&s, &setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800832 return 0;
833}
Heiko Carstensd80512f2013-12-16 14:31:26 +0100834early_param("possible_cpus", _setup_possible_cpus);
Heiko Carstens37a33022006-02-17 13:52:47 -0800835
Heiko Carstens48483b32008-01-26 14:11:05 +0100836#ifdef CONFIG_HOTPLUG_CPU
837
Heiko Carstens39ce0102007-04-27 16:02:00 +0200838int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400840 unsigned long cregs[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Heiko Carstens9acf73b2013-05-22 10:24:37 +0200842 /* Handle possible pending IPIs */
843 smp_handle_ext_call();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400844 set_cpu_online(smp_processor_id(), false);
845 /* Disable pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100846 pfault_fini();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400847 /* Disable interrupt sources via control register. */
848 __ctl_store(cregs, 0, 15);
849 cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */
850 cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */
851 cregs[14] &= ~0x1f000000UL; /* disable most machine checks */
852 __ctl_load(cregs, 0, 15);
Martin Schwidefskyfe0f4972014-09-30 17:37:52 +0200853 clear_cpu_flag(CIF_NOHZ_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return 0;
855}
856
Heiko Carstens39ce0102007-04-27 16:02:00 +0200857void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400859 struct pcpu *pcpu;
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 /* Wait until target cpu is down */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400862 pcpu = pcpu_devices + cpu;
863 while (!pcpu_stopped(pcpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 cpu_relax();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400865 pcpu_free_lowcore(pcpu);
Martin Schwidefsky050eef32010-08-24 09:26:21 +0200866 atomic_dec(&init_mm.context.attach_count);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200867 cpumask_clear_cpu(cpu, mm_cpumask(&init_mm));
868 if (MACHINE_HAS_TLB_LC)
869 cpumask_clear_cpu(cpu, &init_mm.context.cpu_attach_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Heiko Carstensb456d942011-05-23 10:24:33 +0200872void __noreturn cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 idle_task_exit();
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200875 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), SIGP_STOP, 0);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400876 for (;;) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Heiko Carstens255acee2006-02-17 13:52:46 -0800879#endif /* CONFIG_HOTPLUG_CPU */
880
Heiko Carstensd80512f2013-12-16 14:31:26 +0100881void __init smp_fill_possible_mask(void)
882{
Heiko Carstenscf813db2014-03-10 14:50:16 +0100883 unsigned int possible, sclp, cpu;
Heiko Carstensd80512f2013-12-16 14:31:26 +0100884
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100885 sclp = min(smp_max_threads, sclp_get_mtid_max() + 1);
886 sclp = sclp_get_max_cpu()*sclp ?: nr_cpu_ids;
Heiko Carstenscf813db2014-03-10 14:50:16 +0100887 possible = setup_possible_cpus ?: nr_cpu_ids;
888 possible = min(possible, sclp);
Heiko Carstensd80512f2013-12-16 14:31:26 +0100889 for (cpu = 0; cpu < possible && cpu < nr_cpu_ids; cpu++)
890 set_cpu_possible(cpu, true);
891}
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893void __init smp_prepare_cpus(unsigned int max_cpus)
894{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200895 /* request the 0x1201 emergency signal external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200896 if (register_external_irq(EXT_IRQ_EMERGENCY_SIG, do_ext_call_interrupt))
Heiko Carstens39ce0102007-04-27 16:02:00 +0200897 panic("Couldn't request external interrupt 0x1201");
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100898 /* request the 0x1202 external call external interrupt */
Thomas Huth1dad0932014-03-31 15:24:08 +0200899 if (register_external_irq(EXT_IRQ_EXTERNAL_CALL, do_ext_call_interrupt))
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100900 panic("Couldn't request external interrupt 0x1202");
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400901 smp_detect_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200904void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400906 struct pcpu *pcpu = pcpu_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400908 pcpu->state = CPU_STATE_CONFIGURED;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100909 pcpu->address = stap();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400910 pcpu->lowcore = (struct _lowcore *)(unsigned long) store_prefix();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400911 S390_lowcore.percpu_offset = __per_cpu_offset[0];
Heiko Carstens50ab9a92012-09-04 17:36:16 +0200912 smp_cpu_set_polarization(0, POLARIZATION_UNKNOWN);
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200913 set_cpu_present(0, true);
914 set_cpu_online(0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200917void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
Heiko Carstens02beacc2010-01-13 20:44:34 +0100921void __init smp_setup_processor_id(void)
922{
923 S390_lowcore.cpu_nr = 0;
Philipp Hachtmann6c8cd5b2014-04-07 18:25:23 +0200924 S390_lowcore.spinlock_lockval = arch_spin_lockval(0);
Heiko Carstens02beacc2010-01-13 20:44:34 +0100925}
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927/*
928 * the frequency of the profiling timer can be changed
929 * by writing a multiplier value into /proc/profile.
930 *
931 * usually you want to run this on all CPUs ;)
932 */
933int setup_profiling_timer(unsigned int multiplier)
934{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200935 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Heiko Carstens08d07962008-01-26 14:10:56 +0100938#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800939static ssize_t cpu_configure_show(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400940 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100941{
942 ssize_t count;
943
944 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400945 count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state);
Heiko Carstens08d07962008-01-26 14:10:56 +0100946 mutex_unlock(&smp_cpu_state_mutex);
947 return count;
948}
949
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800950static ssize_t cpu_configure_store(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400951 struct device_attribute *attr,
952 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100953{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400954 struct pcpu *pcpu;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100955 int cpu, val, rc, i;
Heiko Carstens08d07962008-01-26 14:10:56 +0100956 char delim;
957
958 if (sscanf(buf, "%d %c", &val, &delim) != 1)
959 return -EINVAL;
960 if (val != 0 && val != 1)
961 return -EINVAL;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100962 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +0200963 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100964 rc = -EBUSY;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100965 /* disallow configuration changes of online cpus and cpu 0 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400966 cpu = dev->id;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100967 cpu -= cpu % (smp_cpu_mtid + 1);
968 if (cpu == 0)
Heiko Carstens08d07962008-01-26 14:10:56 +0100969 goto out;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100970 for (i = 0; i <= smp_cpu_mtid; i++)
971 if (cpu_online(cpu + i))
972 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400973 pcpu = pcpu_devices + cpu;
Heiko Carstens08d07962008-01-26 14:10:56 +0100974 rc = 0;
975 switch (val) {
976 case 0:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400977 if (pcpu->state != CPU_STATE_CONFIGURED)
978 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100979 rc = sclp_cpu_deconfigure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400980 if (rc)
981 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100982 for (i = 0; i <= smp_cpu_mtid; i++) {
983 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
984 continue;
985 pcpu[i].state = CPU_STATE_STANDBY;
986 smp_cpu_set_polarization(cpu + i,
987 POLARIZATION_UNKNOWN);
988 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400989 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +0100990 break;
991 case 1:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400992 if (pcpu->state != CPU_STATE_STANDBY)
993 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100994 rc = sclp_cpu_configure(pcpu->address >> smp_cpu_mt_shift);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400995 if (rc)
996 break;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100997 for (i = 0; i <= smp_cpu_mtid; i++) {
998 if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i))
999 continue;
1000 pcpu[i].state = CPU_STATE_CONFIGURED;
1001 smp_cpu_set_polarization(cpu + i,
1002 POLARIZATION_UNKNOWN);
1003 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001004 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +01001005 break;
1006 default:
1007 break;
1008 }
1009out:
Heiko Carstens08d07962008-01-26 14:10:56 +01001010 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001011 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001012 return rc ? rc : count;
1013}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001014static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001015#endif /* CONFIG_HOTPLUG_CPU */
1016
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001017static ssize_t show_cpu_address(struct device *dev,
1018 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +01001019{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001020 return sprintf(buf, "%d\n", pcpu_devices[dev->id].address);
Heiko Carstens08d07962008-01-26 14:10:56 +01001021}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001022static DEVICE_ATTR(address, 0444, show_cpu_address, NULL);
Heiko Carstens08d07962008-01-26 14:10:56 +01001023
Heiko Carstens08d07962008-01-26 14:10:56 +01001024static struct attribute *cpu_common_attrs[] = {
1025#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001026 &dev_attr_configure.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001027#endif
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001028 &dev_attr_address.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +01001029 NULL,
1030};
1031
1032static struct attribute_group cpu_common_attr_group = {
1033 .attrs = cpu_common_attrs,
1034};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Heiko Carstens08d07962008-01-26 14:10:56 +01001036static struct attribute *cpu_online_attrs[] = {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001037 &dev_attr_idle_count.attr,
1038 &dev_attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001039 NULL,
1040};
1041
Heiko Carstens08d07962008-01-26 14:10:56 +01001042static struct attribute_group cpu_online_attr_group = {
1043 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001044};
1045
Paul Gortmakere2741f12013-06-18 17:04:52 -04001046static int smp_cpu_notify(struct notifier_block *self, unsigned long action,
1047 void *hcpu)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001048{
1049 unsigned int cpu = (unsigned int)(long)hcpu;
Heiko Carstens2f859d02015-02-11 12:31:03 +01001050 struct device *s = &per_cpu(cpu_device, cpu)->dev;
Akinobu Mitad882ba62010-05-26 14:43:34 -07001051 int err = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001052
Heiko Carstens1c725922012-08-27 15:43:49 +02001053 switch (action & ~CPU_TASKS_FROZEN) {
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001054 case CPU_ONLINE:
Akinobu Mitad882ba62010-05-26 14:43:34 -07001055 err = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001056 break;
1057 case CPU_DEAD:
Heiko Carstens08d07962008-01-26 14:10:56 +01001058 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001059 break;
1060 }
Akinobu Mitad882ba62010-05-26 14:43:34 -07001061 return notifier_from_errno(err);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001062}
1063
Paul Gortmakere2741f12013-06-18 17:04:52 -04001064static int smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +01001065{
Heiko Carstens96619fc2013-12-05 12:42:09 +01001066 struct device *s;
1067 struct cpu *c;
Heiko Carstens08d07962008-01-26 14:10:56 +01001068 int rc;
1069
Heiko Carstens96619fc2013-12-05 12:42:09 +01001070 c = kzalloc(sizeof(*c), GFP_KERNEL);
1071 if (!c)
1072 return -ENOMEM;
Heiko Carstens2f859d02015-02-11 12:31:03 +01001073 per_cpu(cpu_device, cpu) = c;
Heiko Carstens96619fc2013-12-05 12:42:09 +01001074 s = &c->dev;
Heiko Carstens08d07962008-01-26 14:10:56 +01001075 c->hotpluggable = 1;
1076 rc = register_cpu(c, cpu);
1077 if (rc)
1078 goto out;
1079 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1080 if (rc)
1081 goto out_cpu;
Heiko Carstens83a24e32011-12-27 11:27:09 +01001082 if (cpu_online(cpu)) {
1083 rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1084 if (rc)
1085 goto out_online;
1086 }
1087 rc = topology_cpu_init(c);
1088 if (rc)
1089 goto out_topology;
1090 return 0;
1091
1092out_topology:
1093 if (cpu_online(cpu))
1094 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
1095out_online:
Heiko Carstens08d07962008-01-26 14:10:56 +01001096 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1097out_cpu:
1098#ifdef CONFIG_HOTPLUG_CPU
1099 unregister_cpu(c);
1100#endif
1101out:
1102 return rc;
1103}
1104
1105#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001106
Heiko Carstens67060d92008-05-30 10:03:27 +02001107int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001108{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001109 struct sclp_cpu_info *info;
1110 int nr;
Heiko Carstens08d07962008-01-26 14:10:56 +01001111
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001112 info = smp_get_cpu_info();
1113 if (!info)
1114 return -ENOMEM;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001115 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001116 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001117 nr = __smp_rescan_cpus(info, 1);
Heiko Carstens08d07962008-01-26 14:10:56 +01001118 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001119 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001120 kfree(info);
1121 if (nr)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001122 topology_schedule_update();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001123 return 0;
Heiko Carstens1e489512008-04-30 13:38:37 +02001124}
1125
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001126static ssize_t __ref rescan_store(struct device *dev,
1127 struct device_attribute *attr,
Andi Kleenc9be0a32010-01-05 12:47:58 +01001128 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001129 size_t count)
1130{
1131 int rc;
1132
1133 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001134 return rc ? rc : count;
1135}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001136static DEVICE_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001137#endif /* CONFIG_HOTPLUG_CPU */
1138
Heiko Carstens83a24e32011-12-27 11:27:09 +01001139static int __init s390_smp_init(void)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001140{
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301141 int cpu, rc = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001142
Heiko Carstens08d07962008-01-26 14:10:56 +01001143#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001144 rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001145 if (rc)
1146 return rc;
1147#endif
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301148 cpu_notifier_register_begin();
Heiko Carstens08d07962008-01-26 14:10:56 +01001149 for_each_present_cpu(cpu) {
1150 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001151 if (rc)
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301152 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Srivatsa S. Bhatf4edbcd2014-03-11 02:05:58 +05301154
1155 __hotcpu_notifier(smp_cpu_notify, 0);
1156
1157out:
1158 cpu_notifier_register_done();
1159 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
Heiko Carstens83a24e32011-12-27 11:27:09 +01001161subsys_initcall(s390_smp_init);