blob: 64ebbcbb31ea7c0ddd6042fe67434a5f49b04071 [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 *
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04004 * Copyright IBM Corp. 1999,2012
5 * 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>
Michael Holzheu46b05d22007-02-21 10:55:21 +010035#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010036#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/tlbflush.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010039#include <asm/timer.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020040#include <asm/lowcore.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010041#include <asm/sclp.h>
Martin Schwidefskyc742b312008-12-31 15:11:42 +010042#include <asm/vdso.h>
Michael Holzheu3ab121a2012-03-11 11:59:32 -040043#include <asm/debug.h>
Michael Holzheu4857d4b2012-03-11 11:59:34 -040044#include <asm/os_info.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020045#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040047enum {
48 sigp_sense = 1,
49 sigp_external_call = 2,
50 sigp_emergency_signal = 3,
51 sigp_start = 4,
52 sigp_stop = 5,
53 sigp_restart = 6,
54 sigp_stop_and_store_status = 9,
55 sigp_initial_cpu_reset = 11,
56 sigp_cpu_reset = 12,
57 sigp_set_prefix = 13,
58 sigp_store_status_at_address = 14,
59 sigp_store_extended_status_at_address = 15,
60 sigp_set_architecture = 18,
61 sigp_conditional_emergency_signal = 19,
62 sigp_sense_running = 21,
63};
Heiko Carstensfb380aa2010-01-13 20:44:37 +010064
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040065enum {
66 sigp_order_code_accepted = 0,
67 sigp_status_stored = 1,
68 sigp_busy = 2,
69 sigp_not_operational = 3,
70};
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040072enum {
73 ec_schedule = 0,
74 ec_call_function,
75 ec_call_function_single,
76 ec_stop_cpu,
77};
Heiko Carstens08d07962008-01-26 14:10:56 +010078
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040079enum {
Heiko Carstens08d07962008-01-26 14:10:56 +010080 CPU_STATE_STANDBY,
81 CPU_STATE_CONFIGURED,
82};
83
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040084struct pcpu {
85 struct cpu cpu;
86 struct task_struct *idle; /* idle process for the cpu */
87 struct _lowcore *lowcore; /* lowcore page(s) for the cpu */
88 unsigned long async_stack; /* async stack for the cpu */
89 unsigned long panic_stack; /* panic stack for the cpu */
90 unsigned long ec_mask; /* bit mask for ec_xxx functions */
91 int state; /* physical cpu state */
92 u32 status; /* last status received via sigp */
93 u16 address; /* physical cpu address */
94};
95
96static u8 boot_cpu_type;
97static u16 boot_cpu_address;
98static struct pcpu pcpu_devices[NR_CPUS];
99
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200100DEFINE_MUTEX(smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100101
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400102/*
103 * Signal processor helper functions.
104 */
105static inline int __pcpu_sigp(u16 addr, u8 order, u32 parm, u32 *status)
Heiko Carstens5c0b9122009-09-11 10:29:05 +0200106{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400107 register unsigned int reg1 asm ("1") = parm;
108 int cc;
Heiko Carstens5c0b9122009-09-11 10:29:05 +0200109
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400110 asm volatile(
111 " sigp %1,%2,0(%3)\n"
112 " ipm %0\n"
113 " srl %0,28\n"
114 : "=d" (cc), "+d" (reg1) : "d" (addr), "a" (order) : "cc");
115 if (status && cc == 1)
116 *status = reg1;
117 return cc;
Heiko Carstens5c0b9122009-09-11 10:29:05 +0200118}
119
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400120static inline int __pcpu_sigp_relax(u16 addr, u8 order, u32 parm, u32 *status)
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100121{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400122 int cc;
123
124 while (1) {
125 cc = __pcpu_sigp(addr, order, parm, status);
126 if (cc != sigp_busy)
127 return cc;
128 cpu_relax();
129 }
130}
131
132static int pcpu_sigp_retry(struct pcpu *pcpu, u8 order, u32 parm)
133{
134 int cc, retry;
135
136 for (retry = 0; ; retry++) {
137 cc = __pcpu_sigp(pcpu->address, order, parm, &pcpu->status);
138 if (cc != sigp_busy)
139 break;
140 if (retry >= 3)
141 udelay(10);
142 }
143 return cc;
144}
145
146static inline int pcpu_stopped(struct pcpu *pcpu)
147{
148 if (__pcpu_sigp(pcpu->address, sigp_sense,
149 0, &pcpu->status) != sigp_status_stored)
150 return 0;
151 /* Check for stopped and check stop state */
152 return !!(pcpu->status & 0x50);
153}
154
155static inline int pcpu_running(struct pcpu *pcpu)
156{
157 if (__pcpu_sigp(pcpu->address, sigp_sense_running,
158 0, &pcpu->status) != sigp_status_stored)
159 return 1;
160 /* Check for running status */
161 return !(pcpu->status & 0x400);
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 Schwidefsky8b646bd2012-03-11 11:59:26 -0400167static struct pcpu *pcpu_find_address(const struct cpumask *mask, int 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
181 set_bit(ec_bit, &pcpu->ec_mask);
182 order = pcpu_running(pcpu) ?
183 sigp_external_call : sigp_emergency_signal;
184 pcpu_sigp_retry(pcpu, order, 0);
185}
186
187static int __cpuinit pcpu_alloc_lowcore(struct pcpu *pcpu, int cpu)
188{
189 struct _lowcore *lc;
190
191 if (pcpu != &pcpu_devices[0]) {
192 pcpu->lowcore = (struct _lowcore *)
193 __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
194 pcpu->async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
195 pcpu->panic_stack = __get_free_page(GFP_KERNEL);
196 if (!pcpu->lowcore || !pcpu->panic_stack || !pcpu->async_stack)
197 goto out;
Michael Holzheu1943f532011-10-30 15:16:38 +0100198 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400199 lc = pcpu->lowcore;
200 memcpy(lc, &S390_lowcore, 512);
201 memset((char *) lc + 512, 0, sizeof(*lc) - 512);
202 lc->async_stack = pcpu->async_stack + ASYNC_SIZE;
203 lc->panic_stack = pcpu->panic_stack + PAGE_SIZE;
204 lc->cpu_nr = cpu;
205#ifndef CONFIG_64BIT
206 if (MACHINE_HAS_IEEE) {
207 lc->extended_save_area_addr = get_zeroed_page(GFP_KERNEL);
208 if (!lc->extended_save_area_addr)
209 goto out;
210 }
211#else
212 if (vdso_alloc_per_cpu(lc))
213 goto out;
214#endif
215 lowcore_ptr[cpu] = lc;
216 pcpu_sigp_retry(pcpu, sigp_set_prefix, (u32)(unsigned long) lc);
217 return 0;
218out:
219 if (pcpu != &pcpu_devices[0]) {
220 free_page(pcpu->panic_stack);
221 free_pages(pcpu->async_stack, ASYNC_ORDER);
222 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
223 }
224 return -ENOMEM;
Michael Holzheu1943f532011-10-30 15:16:38 +0100225}
226
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400227static void pcpu_free_lowcore(struct pcpu *pcpu)
Heiko Carstens2c2df112010-02-26 22:37:34 +0100228{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400229 pcpu_sigp_retry(pcpu, sigp_set_prefix, 0);
230 lowcore_ptr[pcpu - pcpu_devices] = NULL;
231#ifndef CONFIG_64BIT
232 if (MACHINE_HAS_IEEE) {
233 struct _lowcore *lc = pcpu->lowcore;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100234
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400235 free_page((unsigned long) lc->extended_save_area_addr);
236 lc->extended_save_area_addr = 0;
237 }
238#else
239 vdso_free_per_cpu(pcpu->lowcore);
240#endif
241 if (pcpu != &pcpu_devices[0]) {
242 free_page(pcpu->panic_stack);
243 free_pages(pcpu->async_stack, ASYNC_ORDER);
244 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
245 }
Heiko Carstens2c2df112010-02-26 22:37:34 +0100246}
247
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400248static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu)
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100249{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400250 struct _lowcore *lc = pcpu->lowcore;
251
252 atomic_inc(&init_mm.context.attach_count);
253 lc->cpu_nr = cpu;
254 lc->percpu_offset = __per_cpu_offset[cpu];
255 lc->kernel_asce = S390_lowcore.kernel_asce;
256 lc->machine_flags = S390_lowcore.machine_flags;
257 lc->ftrace_func = S390_lowcore.ftrace_func;
258 lc->user_timer = lc->system_timer = lc->steal_timer = 0;
259 __ctl_store(lc->cregs_save_area, 0, 15);
260 save_access_regs((unsigned int *) lc->access_regs_save_area);
261 memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list,
262 MAX_FACILITY_BIT/8);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100263}
264
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400265static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk)
266{
267 struct _lowcore *lc = pcpu->lowcore;
268 struct thread_info *ti = task_thread_info(tsk);
269
270 lc->kernel_stack = (unsigned long) task_stack_page(tsk) + THREAD_SIZE;
271 lc->thread_info = (unsigned long) task_thread_info(tsk);
272 lc->current_task = (unsigned long) tsk;
273 lc->user_timer = ti->user_timer;
274 lc->system_timer = ti->system_timer;
275 lc->steal_timer = 0;
276}
277
278static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data)
279{
280 struct _lowcore *lc = pcpu->lowcore;
281
282 lc->restart_stack = lc->kernel_stack;
283 lc->restart_fn = (unsigned long) func;
284 lc->restart_data = (unsigned long) data;
285 lc->restart_source = -1UL;
286 pcpu_sigp_retry(pcpu, sigp_restart, 0);
287}
288
289/*
290 * Call function via PSW restart on pcpu and stop the current cpu.
291 */
292static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *),
293 void *data, unsigned long stack)
294{
295 struct _lowcore *lc = pcpu->lowcore;
296 unsigned short this_cpu;
297
298 __load_psw_mask(psw_kernel_bits);
299 this_cpu = stap();
300 if (pcpu->address == this_cpu)
301 func(data); /* should not return */
302 /* Stop target cpu (if func returns this stops the current cpu). */
303 pcpu_sigp_retry(pcpu, sigp_stop, 0);
304 /* Restart func on the target cpu and stop the current cpu. */
305 lc->restart_stack = stack;
306 lc->restart_fn = (unsigned long) func;
307 lc->restart_data = (unsigned long) data;
308 lc->restart_source = (unsigned long) this_cpu;
309 asm volatile(
310 "0: sigp 0,%0,6 # sigp restart to target cpu\n"
311 " brc 2,0b # busy, try again\n"
312 "1: sigp 0,%1,5 # sigp stop to current cpu\n"
313 " brc 2,1b # busy, try again\n"
314 : : "d" (pcpu->address), "d" (this_cpu) : "0", "1", "cc");
315 for (;;) ;
316}
317
318/*
319 * Call function on an online CPU.
320 */
321void smp_call_online_cpu(void (*func)(void *), void *data)
322{
323 struct pcpu *pcpu;
324
325 /* Use the current cpu if it is online. */
326 pcpu = pcpu_find_address(cpu_online_mask, stap());
327 if (!pcpu)
328 /* Use the first online cpu. */
329 pcpu = pcpu_devices + cpumask_first(cpu_online_mask);
330 pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack);
331}
332
333/*
334 * Call function on the ipl CPU.
335 */
336void smp_call_ipl_cpu(void (*func)(void *), void *data)
337{
Michael Holzheuc6da39f2012-03-13 11:25:08 -0400338 pcpu_delegate(&pcpu_devices[0], func, data,
339 pcpu_devices->panic_stack + PAGE_SIZE);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400340}
341
342int smp_find_processor_id(u16 address)
343{
344 int cpu;
345
346 for_each_present_cpu(cpu)
347 if (pcpu_devices[cpu].address == address)
348 return cpu;
349 return -1;
350}
351
352int smp_vcpu_scheduled(int cpu)
353{
354 return pcpu_running(pcpu_devices + cpu);
355}
356
357void smp_yield(void)
358{
359 if (MACHINE_HAS_DIAG44)
360 asm volatile("diag 0,0,0x44");
361}
362
363void smp_yield_cpu(int cpu)
364{
365 if (MACHINE_HAS_DIAG9C)
366 asm volatile("diag %0,0,0x9c"
367 : : "d" (pcpu_devices[cpu].address));
368 else if (MACHINE_HAS_DIAG44)
369 asm volatile("diag 0,0,0x44");
370}
371
372/*
373 * Send cpus emergency shutdown signal. This gives the cpus the
374 * opportunity to complete outstanding interrupts.
375 */
376void smp_emergency_stop(cpumask_t *cpumask)
377{
378 u64 end;
379 int cpu;
380
381 end = get_clock() + (1000000UL << 12);
382 for_each_cpu(cpu, cpumask) {
383 struct pcpu *pcpu = pcpu_devices + cpu;
384 set_bit(ec_stop_cpu, &pcpu->ec_mask);
385 while (__pcpu_sigp(pcpu->address, sigp_emergency_signal,
386 0, NULL) == sigp_busy &&
387 get_clock() < end)
388 cpu_relax();
389 }
390 while (get_clock() < end) {
391 for_each_cpu(cpu, cpumask)
392 if (pcpu_stopped(pcpu_devices + cpu))
393 cpumask_clear_cpu(cpu, cpumask);
394 if (cpumask_empty(cpumask))
395 break;
396 cpu_relax();
397 }
398}
399
400/*
401 * Stop all cpus but the current one.
402 */
Heiko Carstens677d7622007-11-20 11:13:37 +0100403void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100405 cpumask_t cpumask;
406 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Heiko Carstens677d7622007-11-20 11:13:37 +0100408 /* Disable all interrupts/machine checks */
Martin Schwidefskyb50511e2011-10-30 15:16:50 +0100409 __load_psw_mask(psw_kernel_bits | PSW_MASK_DAT);
Christian Borntraeger3324e602009-03-26 15:23:56 +0100410 trace_hardirqs_off();
Heiko Carstens677d7622007-11-20 11:13:37 +0100411
Michael Holzheu3ab121a2012-03-11 11:59:32 -0400412 debug_set_critical();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100413 cpumask_copy(&cpumask, cpu_online_mask);
414 cpumask_clear_cpu(smp_processor_id(), &cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400416 if (oops_in_progress)
417 smp_emergency_stop(&cpumask);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100418
419 /* stop all processors */
420 for_each_cpu(cpu, &cpumask) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400421 struct pcpu *pcpu = pcpu_devices + cpu;
422 pcpu_sigp_retry(pcpu, sigp_stop, 0);
423 while (!pcpu_stopped(pcpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100424 cpu_relax();
425 }
426}
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400429 * Stop the current cpu.
430 */
431void smp_stop_cpu(void)
432{
433 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), sigp_stop, 0);
434 for (;;) ;
435}
436
437/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * This is the main routine where commands issued by other
439 * cpus are handled.
440 */
Heiko Carstensfde15c32012-03-11 11:59:31 -0400441static void do_ext_call_interrupt(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200442 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200444 unsigned long bits;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400445 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400447 cpu = smp_processor_id();
Heiko Carstensfde15c32012-03-11 11:59:31 -0400448 if (ext_code.code == 0x1202)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400449 kstat_cpu(cpu).irqs[EXTINT_EXC]++;
Heiko Carstens2a3a2d62011-10-30 15:17:19 +0100450 else
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400451 kstat_cpu(cpu).irqs[EXTINT_EMS]++;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200452 /*
453 * handle bit signal external calls
Heiko Carstens39ce0102007-04-27 16:02:00 +0200454 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400455 bits = xchg(&pcpu_devices[cpu].ec_mask, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100457 if (test_bit(ec_stop_cpu, &bits))
458 smp_stop_cpu();
459
Peter Zijlstra184748c2011-04-05 17:23:39 +0200460 if (test_bit(ec_schedule, &bits))
461 scheduler_ipi();
462
Heiko Carstens39ce0102007-04-27 16:02:00 +0200463 if (test_bit(ec_call_function, &bits))
Heiko Carstensca9fc752008-12-25 13:38:39 +0100464 generic_smp_call_function_interrupt();
465
466 if (test_bit(ec_call_function_single, &bits))
467 generic_smp_call_function_single_interrupt();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Rusty Russell630cd042009-09-24 09:34:45 -0600471void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100472{
473 int cpu;
474
Rusty Russell630cd042009-09-24 09:34:45 -0600475 for_each_cpu(cpu, mask)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400476 pcpu_ec_call(pcpu_devices + cpu, ec_call_function);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100477}
478
479void arch_send_call_function_single_ipi(int cpu)
480{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400481 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100482}
483
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800484#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/*
486 * this function sends a 'purge tlb' signal to another CPU.
487 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200488static void smp_ptlb_callback(void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200490 __tlb_flush_local();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
493void smp_ptlb_all(void)
494{
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200495 on_each_cpu(smp_ptlb_callback, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800498#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500/*
501 * this function sends a 'reschedule' IPI to another CPU.
502 * it goes straight through and wastes no time serializing
503 * anything. Worst case is that we lose a reschedule ...
504 */
505void smp_send_reschedule(int cpu)
506{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400507 pcpu_ec_call(pcpu_devices + cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
510/*
511 * parameter area for the set/clear control bit callbacks
512 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200513struct ec_creg_mask_parms {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400514 unsigned long orval;
515 unsigned long andval;
516 int cr;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200517};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519/*
520 * callback for setting/clearing control bits
521 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200522static void smp_ctl_bit_callback(void *info)
523{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200524 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 unsigned long cregs[16];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200526
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200527 __ctl_store(cregs, 0, 15);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400528 cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200529 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532/*
533 * Set a bit in a control register of all cpus
534 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200535void smp_ctl_set_bit(int cr, int bit)
536{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400537 struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200539 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200541EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543/*
544 * Clear a bit in a control register of all cpus
545 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200546void smp_ctl_clear_bit(int cr, int bit)
547{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400548 struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200550 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200552EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Michael Holzheu60a0c682011-10-30 15:16:40 +0100554#if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_CRASH_DUMP)
Michael Holzheu411ed322007-04-27 16:01:49 +0200555
Heiko Carstensf64ca212010-02-26 22:37:32 +0100556struct save_area *zfcpdump_save_areas[NR_CPUS + 1];
Michael Holzheu411ed322007-04-27 16:01:49 +0200557EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
558
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400559static void __init smp_get_save_area(int cpu, u16 address)
Heiko Carstens08d07962008-01-26 14:10:56 +0100560{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400561 void *lc = pcpu_devices[0].lowcore;
562 struct save_area *save_area;
Heiko Carstens08d07962008-01-26 14:10:56 +0100563
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400564 if (is_kdump_kernel())
565 return;
566 if (!OLDMEM_BASE && (address == boot_cpu_address ||
567 ipl_info.type != IPL_TYPE_FCP_DUMP))
568 return;
569 if (cpu >= NR_CPUS) {
570 pr_warning("CPU %i exceeds the maximum %i and is excluded "
571 "from the dump\n", cpu, NR_CPUS - 1);
572 return;
Heiko Carstens08d07962008-01-26 14:10:56 +0100573 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400574 save_area = kmalloc(sizeof(struct save_area), GFP_KERNEL);
575 if (!save_area)
576 panic("could not allocate memory for save area\n");
577 zfcpdump_save_areas[cpu] = save_area;
578#ifdef CONFIG_CRASH_DUMP
579 if (address == boot_cpu_address) {
580 /* Copy the registers of the boot cpu. */
581 copy_oldmem_page(1, (void *) save_area, sizeof(*save_area),
582 SAVE_AREA_BASE - PAGE_SIZE, 0);
583 return;
584 }
585#endif
586 /* Get the registers of a non-boot cpu. */
587 __pcpu_sigp_relax(address, sigp_stop_and_store_status, 0, NULL);
588 memcpy_real(save_area, lc + SAVE_AREA_BASE, sizeof(*save_area));
589}
590
591int smp_store_status(int cpu)
592{
593 struct pcpu *pcpu;
594
595 pcpu = pcpu_devices + cpu;
596 if (__pcpu_sigp_relax(pcpu->address, sigp_stop_and_store_status,
597 0, NULL) != sigp_order_code_accepted)
598 return -EIO;
Heiko Carstens08d07962008-01-26 14:10:56 +0100599 return 0;
600}
601
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400602#else /* CONFIG_ZFCPDUMP || CONFIG_CRASH_DUMP */
Heiko Carstens08d07962008-01-26 14:10:56 +0100603
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400604static inline void smp_get_save_area(int cpu, u16 address) { }
Heiko Carstens08d07962008-01-26 14:10:56 +0100605
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400606#endif /* CONFIG_ZFCPDUMP || CONFIG_CRASH_DUMP */
607
608static struct sclp_cpu_info *smp_get_cpu_info(void)
Heiko Carstens08d07962008-01-26 14:10:56 +0100609{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400610 static int use_sigp_detection;
Heiko Carstens08d07962008-01-26 14:10:56 +0100611 struct sclp_cpu_info *info;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400612 int address;
Heiko Carstens08d07962008-01-26 14:10:56 +0100613
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400614 info = kzalloc(sizeof(*info), GFP_KERNEL);
615 if (info && (use_sigp_detection || sclp_get_cpu_info(info))) {
616 use_sigp_detection = 1;
617 for (address = 0; address <= MAX_CPU_ADDRESS; address++) {
618 if (__pcpu_sigp_relax(address, sigp_sense, 0, NULL) ==
619 sigp_not_operational)
620 continue;
621 info->cpu[info->configured].address = address;
622 info->configured++;
623 }
624 info->combined = info->configured;
Heiko Carstens08d07962008-01-26 14:10:56 +0100625 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400626 return info;
Heiko Carstens08d07962008-01-26 14:10:56 +0100627}
628
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400629static int __devinit smp_add_present_cpu(int cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100630
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400631static int __devinit __smp_rescan_cpus(struct sclp_cpu_info *info,
632 int sysfs_add)
633{
634 struct pcpu *pcpu;
635 cpumask_t avail;
636 int cpu, nr, i;
637
638 nr = 0;
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200639 cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400640 cpu = cpumask_first(&avail);
641 for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) {
642 if (info->has_cpu_type && info->cpu[i].type != boot_cpu_type)
643 continue;
644 if (pcpu_find_address(cpu_present_mask, info->cpu[i].address))
645 continue;
646 pcpu = pcpu_devices + cpu;
647 pcpu->address = info->cpu[i].address;
648 pcpu->state = (cpu >= info->configured) ?
649 CPU_STATE_STANDBY : CPU_STATE_CONFIGURED;
650 cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
651 set_cpu_present(cpu, true);
652 if (sysfs_add && smp_add_present_cpu(cpu) != 0)
653 set_cpu_present(cpu, false);
654 else
655 nr++;
656 cpu = cpumask_next(cpu, &avail);
657 }
658 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Heiko Carstens48483b32008-01-26 14:11:05 +0100661static void __init smp_detect_cpus(void)
662{
663 unsigned int cpu, c_cpus, s_cpus;
664 struct sclp_cpu_info *info;
Heiko Carstens48483b32008-01-26 14:11:05 +0100665
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400666 info = smp_get_cpu_info();
Heiko Carstens48483b32008-01-26 14:11:05 +0100667 if (!info)
668 panic("smp_detect_cpus failed to allocate memory\n");
Heiko Carstens48483b32008-01-26 14:11:05 +0100669 if (info->has_cpu_type) {
670 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400671 if (info->cpu[cpu].address != boot_cpu_address)
672 continue;
673 /* The boot cpu dictates the cpu type. */
674 boot_cpu_type = info->cpu[cpu].type;
675 break;
Heiko Carstens48483b32008-01-26 14:11:05 +0100676 }
677 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400678 c_cpus = s_cpus = 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100679 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400680 if (info->has_cpu_type && info->cpu[cpu].type != boot_cpu_type)
Heiko Carstens48483b32008-01-26 14:11:05 +0100681 continue;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400682 if (cpu < info->configured) {
683 smp_get_save_area(c_cpus, info->cpu[cpu].address);
684 c_cpus++;
685 } else
Heiko Carstens48483b32008-01-26 14:11:05 +0100686 s_cpus++;
Heiko Carstens48483b32008-01-26 14:11:05 +0100687 }
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100688 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100689 get_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400690 __smp_rescan_cpus(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100691 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400692 kfree(info);
Heiko Carstens48483b32008-01-26 14:11:05 +0100693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200696 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400698static void __cpuinit smp_start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400700 S390_lowcore.last_update_clock = get_clock();
701 S390_lowcore.restart_stack = (unsigned long) restart_stack;
702 S390_lowcore.restart_fn = (unsigned long) do_restart;
703 S390_lowcore.restart_data = 0;
704 S390_lowcore.restart_source = -1UL;
705 restore_access_regs(S390_lowcore.access_regs_save_area);
706 __ctl_load(S390_lowcore.cregs_save_area, 0, 15);
707 __load_psw_mask(psw_kernel_bits | PSW_MASK_DAT);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200708 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800709 preempt_disable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200710 init_cpu_timer();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200711 init_cpu_vtimer();
Heiko Carstens29b08d22006-12-04 15:40:40 +0100712 pfault_init();
Manfred Spraule545a612008-09-07 16:57:22 +0200713 notify_cpu_starting(smp_processor_id());
Heiko Carstensca9fc752008-12-25 13:38:39 +0100714 ipi_call_lock();
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200715 set_cpu_online(smp_processor_id(), true);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100716 ipi_call_unlock();
Heiko Carstenscc343212011-08-03 16:44:27 +0200717 /*
718 * Wait until the cpu which brought this one up marked it
719 * active before enabling interrupts.
720 */
721 while (!cpumask_test_cpu(smp_processor_id(), cpu_active_mask))
722 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 local_irq_enable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200724 /* cpu_idle will call schedule for us */
725 cpu_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Heiko Carstensf2308862011-01-05 12:48:08 +0100728struct create_idle {
729 struct work_struct work;
730 struct task_struct *idle;
731 struct completion done;
732 int cpu;
733};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Heiko Carstensf2308862011-01-05 12:48:08 +0100735static void __cpuinit smp_fork_idle(struct work_struct *work)
736{
737 struct create_idle *c_idle;
738
739 c_idle = container_of(work, struct create_idle, work);
740 c_idle->idle = fork_idle(c_idle->cpu);
741 complete(&c_idle->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744/* Upping and downing of CPUs */
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100745int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Heiko Carstensf2308862011-01-05 12:48:08 +0100747 struct create_idle c_idle;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400748 struct pcpu *pcpu;
749 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400751 pcpu = pcpu_devices + cpu;
752 if (pcpu->state != CPU_STATE_CONFIGURED)
Heiko Carstens08d07962008-01-26 14:10:56 +0100753 return -EIO;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400754 if (pcpu_sigp_retry(pcpu, sigp_initial_cpu_reset, 0) !=
755 sigp_order_code_accepted)
756 return -EIO;
757 if (!pcpu->idle) {
Heiko Carstensf2308862011-01-05 12:48:08 +0100758 c_idle.done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done);
759 INIT_WORK_ONSTACK(&c_idle.work, smp_fork_idle);
760 c_idle.cpu = cpu;
761 schedule_work(&c_idle.work);
762 wait_for_completion(&c_idle.done);
763 if (IS_ERR(c_idle.idle))
764 return PTR_ERR(c_idle.idle);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400765 pcpu->idle = c_idle.idle;
Heiko Carstensf2308862011-01-05 12:48:08 +0100766 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400767 init_idle(pcpu->idle, cpu);
768 rc = pcpu_alloc_lowcore(pcpu, cpu);
769 if (rc)
770 return rc;
771 pcpu_prepare_secondary(pcpu, cpu);
772 pcpu_attach_task(pcpu, pcpu->idle);
773 pcpu_start_fn(pcpu, smp_start_secondary, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 while (!cpu_online(cpu))
775 cpu_relax();
776 return 0;
777}
778
Heiko Carstens37a33022006-02-17 13:52:47 -0800779static int __init setup_possible_cpus(char *s)
780{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400781 int max, cpu;
Heiko Carstens48483b32008-01-26 14:11:05 +0100782
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400783 if (kstrtoint(s, 0, &max) < 0)
784 return 0;
Heiko Carstens88e01282009-04-14 15:36:25 +0200785 init_cpu_possible(cpumask_of(0));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400786 for (cpu = 1; cpu < max && cpu < nr_cpu_ids; cpu++)
Rusty Russelldef6cfb2009-03-26 15:25:00 +0100787 set_cpu_possible(cpu, true);
Heiko Carstens37a33022006-02-17 13:52:47 -0800788 return 0;
789}
790early_param("possible_cpus", setup_possible_cpus);
791
Heiko Carstens48483b32008-01-26 14:11:05 +0100792#ifdef CONFIG_HOTPLUG_CPU
793
Heiko Carstens39ce0102007-04-27 16:02:00 +0200794int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400796 unsigned long cregs[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400798 set_cpu_online(smp_processor_id(), false);
799 /* Disable pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100800 pfault_fini();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400801 /* Disable interrupt sources via control register. */
802 __ctl_store(cregs, 0, 15);
803 cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */
804 cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */
805 cregs[14] &= ~0x1f000000UL; /* disable most machine checks */
806 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return 0;
808}
809
Heiko Carstens39ce0102007-04-27 16:02:00 +0200810void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400812 struct pcpu *pcpu;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /* Wait until target cpu is down */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400815 pcpu = pcpu_devices + cpu;
816 while (!pcpu_stopped(pcpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 cpu_relax();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400818 pcpu_free_lowcore(pcpu);
Martin Schwidefsky050eef32010-08-24 09:26:21 +0200819 atomic_dec(&init_mm.context.attach_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
Heiko Carstensb456d942011-05-23 10:24:33 +0200822void __noreturn cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 idle_task_exit();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400825 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), sigp_stop, 0);
826 for (;;) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Heiko Carstens255acee2006-02-17 13:52:46 -0800829#endif /* CONFIG_HOTPLUG_CPU */
830
Michael Holzheu4857d4b2012-03-11 11:59:34 -0400831static void smp_call_os_info_init_fn(void)
832{
833 int (*init_fn)(void);
834 unsigned long size;
835
836 init_fn = os_info_old_entry(OS_INFO_INIT_FN, &size);
837 if (!init_fn)
838 return;
839 init_fn();
840}
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842void __init smp_prepare_cpus(unsigned int max_cpus)
843{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200844 /* request the 0x1201 emergency signal external interrupt */
845 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
846 panic("Couldn't request external interrupt 0x1201");
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100847 /* request the 0x1202 external call external interrupt */
848 if (register_external_interrupt(0x1202, do_ext_call_interrupt) != 0)
849 panic("Couldn't request external interrupt 0x1202");
Michael Holzheu4857d4b2012-03-11 11:59:34 -0400850 smp_call_os_info_init_fn();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400851 smp_detect_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200854void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400856 struct pcpu *pcpu = pcpu_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400858 boot_cpu_address = stap();
859 pcpu->idle = current;
860 pcpu->state = CPU_STATE_CONFIGURED;
861 pcpu->address = boot_cpu_address;
862 pcpu->lowcore = (struct _lowcore *)(unsigned long) store_prefix();
863 pcpu->async_stack = S390_lowcore.async_stack - ASYNC_SIZE;
864 pcpu->panic_stack = S390_lowcore.panic_stack - PAGE_SIZE;
865 S390_lowcore.percpu_offset = __per_cpu_offset[0];
866 cpu_set_polarization(0, POLARIZATION_UNKNOWN);
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200867 set_cpu_present(0, true);
868 set_cpu_online(0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200871void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Heiko Carstens02beacc2010-01-13 20:44:34 +0100875void __init smp_setup_processor_id(void)
876{
877 S390_lowcore.cpu_nr = 0;
Heiko Carstens02beacc2010-01-13 20:44:34 +0100878}
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880/*
881 * the frequency of the profiling timer can be changed
882 * by writing a multiplier value into /proc/profile.
883 *
884 * usually you want to run this on all CPUs ;)
885 */
886int setup_profiling_timer(unsigned int multiplier)
887{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Heiko Carstens08d07962008-01-26 14:10:56 +0100891#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800892static ssize_t cpu_configure_show(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400893 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100894{
895 ssize_t count;
896
897 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400898 count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state);
Heiko Carstens08d07962008-01-26 14:10:56 +0100899 mutex_unlock(&smp_cpu_state_mutex);
900 return count;
901}
902
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800903static ssize_t cpu_configure_store(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400904 struct device_attribute *attr,
905 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100906{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400907 struct pcpu *pcpu;
908 int cpu, val, rc;
Heiko Carstens08d07962008-01-26 14:10:56 +0100909 char delim;
910
911 if (sscanf(buf, "%d %c", &val, &delim) != 1)
912 return -EINVAL;
913 if (val != 0 && val != 1)
914 return -EINVAL;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100915 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +0200916 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100917 rc = -EBUSY;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100918 /* disallow configuration changes of online cpus and cpu 0 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400919 cpu = dev->id;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100920 if (cpu_online(cpu) || cpu == 0)
Heiko Carstens08d07962008-01-26 14:10:56 +0100921 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400922 pcpu = pcpu_devices + cpu;
Heiko Carstens08d07962008-01-26 14:10:56 +0100923 rc = 0;
924 switch (val) {
925 case 0:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400926 if (pcpu->state != CPU_STATE_CONFIGURED)
927 break;
928 rc = sclp_cpu_deconfigure(pcpu->address);
929 if (rc)
930 break;
931 pcpu->state = CPU_STATE_STANDBY;
932 cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
933 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +0100934 break;
935 case 1:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400936 if (pcpu->state != CPU_STATE_STANDBY)
937 break;
938 rc = sclp_cpu_configure(pcpu->address);
939 if (rc)
940 break;
941 pcpu->state = CPU_STATE_CONFIGURED;
942 cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
943 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +0100944 break;
945 default:
946 break;
947 }
948out:
Heiko Carstens08d07962008-01-26 14:10:56 +0100949 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +0200950 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100951 return rc ? rc : count;
952}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800953static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
Heiko Carstens08d07962008-01-26 14:10:56 +0100954#endif /* CONFIG_HOTPLUG_CPU */
955
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800956static ssize_t show_cpu_address(struct device *dev,
957 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100958{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400959 return sprintf(buf, "%d\n", pcpu_devices[dev->id].address);
Heiko Carstens08d07962008-01-26 14:10:56 +0100960}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800961static DEVICE_ATTR(address, 0444, show_cpu_address, NULL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100962
Heiko Carstens08d07962008-01-26 14:10:56 +0100963static struct attribute *cpu_common_attrs[] = {
964#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800965 &dev_attr_configure.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +0100966#endif
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800967 &dev_attr_address.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +0100968 NULL,
969};
970
971static struct attribute_group cpu_common_attr_group = {
972 .attrs = cpu_common_attrs,
973};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800975static ssize_t show_capability(struct device *dev,
976 struct device_attribute *attr, char *buf)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200977{
978 unsigned int capability;
979 int rc;
980
981 rc = get_cpu_capability(&capability);
982 if (rc)
983 return rc;
984 return sprintf(buf, "%u\n", capability);
985}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800986static DEVICE_ATTR(capability, 0444, show_capability, NULL);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200987
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800988static ssize_t show_idle_count(struct device *dev,
989 struct device_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +0200990{
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -0400991 struct s390_idle_data *idle = &per_cpu(s390_idle, dev->id);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200992 unsigned long long idle_count;
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200993 unsigned int sequence;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200994
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -0400995 do {
996 sequence = ACCESS_ONCE(idle->sequence);
997 idle_count = ACCESS_ONCE(idle->idle_count);
998 if (ACCESS_ONCE(idle->idle_enter))
999 idle_count++;
1000 } while ((sequence & 1) || (idle->sequence != sequence));
Heiko Carstensfae8b222007-10-22 12:52:39 +02001001 return sprintf(buf, "%llu\n", idle_count);
1002}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001003static DEVICE_ATTR(idle_count, 0444, show_idle_count, NULL);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001004
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001005static ssize_t show_idle_time(struct device *dev,
1006 struct device_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +02001007{
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -04001008 struct s390_idle_data *idle = &per_cpu(s390_idle, dev->id);
1009 unsigned long long now, idle_time, idle_enter, idle_exit;
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +02001010 unsigned int sequence;
Heiko Carstensfae8b222007-10-22 12:52:39 +02001011
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -04001012 do {
1013 now = get_clock();
1014 sequence = ACCESS_ONCE(idle->sequence);
1015 idle_time = ACCESS_ONCE(idle->idle_time);
1016 idle_enter = ACCESS_ONCE(idle->idle_enter);
1017 idle_exit = ACCESS_ONCE(idle->idle_exit);
1018 } while ((sequence & 1) || (idle->sequence != sequence));
1019 idle_time += idle_enter ? ((idle_exit ? : now) - idle_enter) : 0;
Martin Schwidefsky6f430922008-12-31 15:11:40 +01001020 return sprintf(buf, "%llu\n", idle_time >> 12);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001021}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001022static DEVICE_ATTR(idle_time_us, 0444, show_idle_time, NULL);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001023
Heiko Carstens08d07962008-01-26 14:10:56 +01001024static struct attribute *cpu_online_attrs[] = {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001025 &dev_attr_capability.attr,
1026 &dev_attr_idle_count.attr,
1027 &dev_attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001028 NULL,
1029};
1030
Heiko Carstens08d07962008-01-26 14:10:56 +01001031static struct attribute_group cpu_online_attr_group = {
1032 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001033};
1034
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001035static int __cpuinit smp_cpu_notify(struct notifier_block *self,
1036 unsigned long action, void *hcpu)
1037{
1038 unsigned int cpu = (unsigned int)(long)hcpu;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001039 struct cpu *c = &pcpu_devices[cpu].cpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001040 struct device *s = &c->dev;
Heiko Carstensfae8b222007-10-22 12:52:39 +02001041 struct s390_idle_data *idle;
Akinobu Mitad882ba62010-05-26 14:43:34 -07001042 int err = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001043
1044 switch (action) {
1045 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001046 case CPU_ONLINE_FROZEN:
Heiko Carstensfae8b222007-10-22 12:52:39 +02001047 idle = &per_cpu(s390_idle, cpu);
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +02001048 memset(idle, 0, sizeof(struct s390_idle_data));
Akinobu Mitad882ba62010-05-26 14:43:34 -07001049 err = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001050 break;
1051 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001052 case CPU_DEAD_FROZEN:
Heiko Carstens08d07962008-01-26 14:10:56 +01001053 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001054 break;
1055 }
Akinobu Mitad882ba62010-05-26 14:43:34 -07001056 return notifier_from_errno(err);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001057}
1058
1059static struct notifier_block __cpuinitdata smp_cpu_nb = {
Heiko Carstens39ce0102007-04-27 16:02:00 +02001060 .notifier_call = smp_cpu_notify,
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001061};
1062
Heiko Carstens2bc89b52008-02-05 16:50:40 +01001063static int __devinit smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +01001064{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001065 struct cpu *c = &pcpu_devices[cpu].cpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001066 struct device *s = &c->dev;
Heiko Carstens08d07962008-01-26 14:10:56 +01001067 int rc;
1068
1069 c->hotpluggable = 1;
1070 rc = register_cpu(c, cpu);
1071 if (rc)
1072 goto out;
1073 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1074 if (rc)
1075 goto out_cpu;
Heiko Carstens83a24e32011-12-27 11:27:09 +01001076 if (cpu_online(cpu)) {
1077 rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1078 if (rc)
1079 goto out_online;
1080 }
1081 rc = topology_cpu_init(c);
1082 if (rc)
1083 goto out_topology;
1084 return 0;
1085
1086out_topology:
1087 if (cpu_online(cpu))
1088 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
1089out_online:
Heiko Carstens08d07962008-01-26 14:10:56 +01001090 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1091out_cpu:
1092#ifdef CONFIG_HOTPLUG_CPU
1093 unregister_cpu(c);
1094#endif
1095out:
1096 return rc;
1097}
1098
1099#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001100
Heiko Carstens67060d92008-05-30 10:03:27 +02001101int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001102{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001103 struct sclp_cpu_info *info;
1104 int nr;
Heiko Carstens08d07962008-01-26 14:10:56 +01001105
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001106 info = smp_get_cpu_info();
1107 if (!info)
1108 return -ENOMEM;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001109 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001110 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001111 nr = __smp_rescan_cpus(info, 1);
Heiko Carstens08d07962008-01-26 14:10:56 +01001112 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001113 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001114 kfree(info);
1115 if (nr)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001116 topology_schedule_update();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001117 return 0;
Heiko Carstens1e489512008-04-30 13:38:37 +02001118}
1119
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001120static ssize_t __ref rescan_store(struct device *dev,
1121 struct device_attribute *attr,
Andi Kleenc9be0a32010-01-05 12:47:58 +01001122 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001123 size_t count)
1124{
1125 int rc;
1126
1127 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001128 return rc ? rc : count;
1129}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001130static DEVICE_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001131#endif /* CONFIG_HOTPLUG_CPU */
1132
Heiko Carstens83a24e32011-12-27 11:27:09 +01001133static int __init s390_smp_init(void)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001134{
Heiko Carstens83a24e32011-12-27 11:27:09 +01001135 int cpu, rc;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001136
1137 register_cpu_notifier(&smp_cpu_nb);
Heiko Carstens08d07962008-01-26 14:10:56 +01001138#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001139 rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001140 if (rc)
1141 return rc;
1142#endif
1143 for_each_present_cpu(cpu) {
1144 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001145 if (rc)
1146 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148 return 0;
1149}
Heiko Carstens83a24e32011-12-27 11:27:09 +01001150subsys_initcall(s390_smp_init);