blob: d15b6c937088ec817824b196f8cf01c500027373 [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>
Heiko Carstensa8061702008-04-17 07:46:26 +020044#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040046enum {
47 sigp_sense = 1,
48 sigp_external_call = 2,
49 sigp_emergency_signal = 3,
50 sigp_start = 4,
51 sigp_stop = 5,
52 sigp_restart = 6,
53 sigp_stop_and_store_status = 9,
54 sigp_initial_cpu_reset = 11,
55 sigp_cpu_reset = 12,
56 sigp_set_prefix = 13,
57 sigp_store_status_at_address = 14,
58 sigp_store_extended_status_at_address = 15,
59 sigp_set_architecture = 18,
60 sigp_conditional_emergency_signal = 19,
61 sigp_sense_running = 21,
62};
Heiko Carstensfb380aa2010-01-13 20:44:37 +010063
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040064enum {
65 sigp_order_code_accepted = 0,
66 sigp_status_stored = 1,
67 sigp_busy = 2,
68 sigp_not_operational = 3,
69};
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040071enum {
72 ec_schedule = 0,
73 ec_call_function,
74 ec_call_function_single,
75 ec_stop_cpu,
76};
Heiko Carstens08d07962008-01-26 14:10:56 +010077
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040078enum {
Heiko Carstens08d07962008-01-26 14:10:56 +010079 CPU_STATE_STANDBY,
80 CPU_STATE_CONFIGURED,
81};
82
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -040083struct pcpu {
84 struct cpu cpu;
85 struct task_struct *idle; /* idle process for the cpu */
86 struct _lowcore *lowcore; /* lowcore page(s) for the cpu */
87 unsigned long async_stack; /* async stack for the cpu */
88 unsigned long panic_stack; /* panic stack for the cpu */
89 unsigned long ec_mask; /* bit mask for ec_xxx functions */
90 int state; /* physical cpu state */
91 u32 status; /* last status received via sigp */
92 u16 address; /* physical cpu address */
93};
94
95static u8 boot_cpu_type;
96static u16 boot_cpu_address;
97static struct pcpu pcpu_devices[NR_CPUS];
98
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020099DEFINE_MUTEX(smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100100
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400101/*
102 * Signal processor helper functions.
103 */
104static inline int __pcpu_sigp(u16 addr, u8 order, u32 parm, u32 *status)
Heiko Carstens5c0b9122009-09-11 10:29:05 +0200105{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400106 register unsigned int reg1 asm ("1") = parm;
107 int cc;
Heiko Carstens5c0b9122009-09-11 10:29:05 +0200108
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400109 asm volatile(
110 " sigp %1,%2,0(%3)\n"
111 " ipm %0\n"
112 " srl %0,28\n"
113 : "=d" (cc), "+d" (reg1) : "d" (addr), "a" (order) : "cc");
114 if (status && cc == 1)
115 *status = reg1;
116 return cc;
Heiko Carstens5c0b9122009-09-11 10:29:05 +0200117}
118
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400119static inline int __pcpu_sigp_relax(u16 addr, u8 order, u32 parm, u32 *status)
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100120{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400121 int cc;
122
123 while (1) {
124 cc = __pcpu_sigp(addr, order, parm, status);
125 if (cc != sigp_busy)
126 return cc;
127 cpu_relax();
128 }
129}
130
131static int pcpu_sigp_retry(struct pcpu *pcpu, u8 order, u32 parm)
132{
133 int cc, retry;
134
135 for (retry = 0; ; retry++) {
136 cc = __pcpu_sigp(pcpu->address, order, parm, &pcpu->status);
137 if (cc != sigp_busy)
138 break;
139 if (retry >= 3)
140 udelay(10);
141 }
142 return cc;
143}
144
145static inline int pcpu_stopped(struct pcpu *pcpu)
146{
147 if (__pcpu_sigp(pcpu->address, sigp_sense,
148 0, &pcpu->status) != sigp_status_stored)
149 return 0;
150 /* Check for stopped and check stop state */
151 return !!(pcpu->status & 0x50);
152}
153
154static inline int pcpu_running(struct pcpu *pcpu)
155{
156 if (__pcpu_sigp(pcpu->address, sigp_sense_running,
157 0, &pcpu->status) != sigp_status_stored)
158 return 1;
159 /* Check for running status */
160 return !(pcpu->status & 0x400);
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100161}
162
Michael Holzheu1943f532011-10-30 15:16:38 +0100163/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400164 * Find struct pcpu by cpu address.
Michael Holzheu1943f532011-10-30 15:16:38 +0100165 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400166static struct pcpu *pcpu_find_address(const struct cpumask *mask, int address)
Michael Holzheu1943f532011-10-30 15:16:38 +0100167{
168 int cpu;
169
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400170 for_each_cpu(cpu, mask)
171 if (pcpu_devices[cpu].address == address)
172 return pcpu_devices + cpu;
173 return NULL;
174}
175
176static void pcpu_ec_call(struct pcpu *pcpu, int ec_bit)
177{
178 int order;
179
180 set_bit(ec_bit, &pcpu->ec_mask);
181 order = pcpu_running(pcpu) ?
182 sigp_external_call : sigp_emergency_signal;
183 pcpu_sigp_retry(pcpu, order, 0);
184}
185
186static int __cpuinit pcpu_alloc_lowcore(struct pcpu *pcpu, int cpu)
187{
188 struct _lowcore *lc;
189
190 if (pcpu != &pcpu_devices[0]) {
191 pcpu->lowcore = (struct _lowcore *)
192 __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
193 pcpu->async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
194 pcpu->panic_stack = __get_free_page(GFP_KERNEL);
195 if (!pcpu->lowcore || !pcpu->panic_stack || !pcpu->async_stack)
196 goto out;
Michael Holzheu1943f532011-10-30 15:16:38 +0100197 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400198 lc = pcpu->lowcore;
199 memcpy(lc, &S390_lowcore, 512);
200 memset((char *) lc + 512, 0, sizeof(*lc) - 512);
201 lc->async_stack = pcpu->async_stack + ASYNC_SIZE;
202 lc->panic_stack = pcpu->panic_stack + PAGE_SIZE;
203 lc->cpu_nr = cpu;
204#ifndef CONFIG_64BIT
205 if (MACHINE_HAS_IEEE) {
206 lc->extended_save_area_addr = get_zeroed_page(GFP_KERNEL);
207 if (!lc->extended_save_area_addr)
208 goto out;
209 }
210#else
211 if (vdso_alloc_per_cpu(lc))
212 goto out;
213#endif
214 lowcore_ptr[cpu] = lc;
215 pcpu_sigp_retry(pcpu, sigp_set_prefix, (u32)(unsigned long) lc);
216 return 0;
217out:
218 if (pcpu != &pcpu_devices[0]) {
219 free_page(pcpu->panic_stack);
220 free_pages(pcpu->async_stack, ASYNC_ORDER);
221 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
222 }
223 return -ENOMEM;
Michael Holzheu1943f532011-10-30 15:16:38 +0100224}
225
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400226static void pcpu_free_lowcore(struct pcpu *pcpu)
Heiko Carstens2c2df112010-02-26 22:37:34 +0100227{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400228 pcpu_sigp_retry(pcpu, sigp_set_prefix, 0);
229 lowcore_ptr[pcpu - pcpu_devices] = NULL;
230#ifndef CONFIG_64BIT
231 if (MACHINE_HAS_IEEE) {
232 struct _lowcore *lc = pcpu->lowcore;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100233
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400234 free_page((unsigned long) lc->extended_save_area_addr);
235 lc->extended_save_area_addr = 0;
236 }
237#else
238 vdso_free_per_cpu(pcpu->lowcore);
239#endif
240 if (pcpu != &pcpu_devices[0]) {
241 free_page(pcpu->panic_stack);
242 free_pages(pcpu->async_stack, ASYNC_ORDER);
243 free_pages((unsigned long) pcpu->lowcore, LC_ORDER);
244 }
Heiko Carstens2c2df112010-02-26 22:37:34 +0100245}
246
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400247static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu)
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100248{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400249 struct _lowcore *lc = pcpu->lowcore;
250
251 atomic_inc(&init_mm.context.attach_count);
252 lc->cpu_nr = cpu;
253 lc->percpu_offset = __per_cpu_offset[cpu];
254 lc->kernel_asce = S390_lowcore.kernel_asce;
255 lc->machine_flags = S390_lowcore.machine_flags;
256 lc->ftrace_func = S390_lowcore.ftrace_func;
257 lc->user_timer = lc->system_timer = lc->steal_timer = 0;
258 __ctl_store(lc->cregs_save_area, 0, 15);
259 save_access_regs((unsigned int *) lc->access_regs_save_area);
260 memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list,
261 MAX_FACILITY_BIT/8);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100262}
263
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400264static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk)
265{
266 struct _lowcore *lc = pcpu->lowcore;
267 struct thread_info *ti = task_thread_info(tsk);
268
269 lc->kernel_stack = (unsigned long) task_stack_page(tsk) + THREAD_SIZE;
270 lc->thread_info = (unsigned long) task_thread_info(tsk);
271 lc->current_task = (unsigned long) tsk;
272 lc->user_timer = ti->user_timer;
273 lc->system_timer = ti->system_timer;
274 lc->steal_timer = 0;
275}
276
277static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data)
278{
279 struct _lowcore *lc = pcpu->lowcore;
280
281 lc->restart_stack = lc->kernel_stack;
282 lc->restart_fn = (unsigned long) func;
283 lc->restart_data = (unsigned long) data;
284 lc->restart_source = -1UL;
285 pcpu_sigp_retry(pcpu, sigp_restart, 0);
286}
287
288/*
289 * Call function via PSW restart on pcpu and stop the current cpu.
290 */
291static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *),
292 void *data, unsigned long stack)
293{
294 struct _lowcore *lc = pcpu->lowcore;
295 unsigned short this_cpu;
296
297 __load_psw_mask(psw_kernel_bits);
298 this_cpu = stap();
299 if (pcpu->address == this_cpu)
300 func(data); /* should not return */
301 /* Stop target cpu (if func returns this stops the current cpu). */
302 pcpu_sigp_retry(pcpu, sigp_stop, 0);
303 /* Restart func on the target cpu and stop the current cpu. */
304 lc->restart_stack = stack;
305 lc->restart_fn = (unsigned long) func;
306 lc->restart_data = (unsigned long) data;
307 lc->restart_source = (unsigned long) this_cpu;
308 asm volatile(
309 "0: sigp 0,%0,6 # sigp restart to target cpu\n"
310 " brc 2,0b # busy, try again\n"
311 "1: sigp 0,%1,5 # sigp stop to current cpu\n"
312 " brc 2,1b # busy, try again\n"
313 : : "d" (pcpu->address), "d" (this_cpu) : "0", "1", "cc");
314 for (;;) ;
315}
316
317/*
318 * Call function on an online CPU.
319 */
320void smp_call_online_cpu(void (*func)(void *), void *data)
321{
322 struct pcpu *pcpu;
323
324 /* Use the current cpu if it is online. */
325 pcpu = pcpu_find_address(cpu_online_mask, stap());
326 if (!pcpu)
327 /* Use the first online cpu. */
328 pcpu = pcpu_devices + cpumask_first(cpu_online_mask);
329 pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack);
330}
331
332/*
333 * Call function on the ipl CPU.
334 */
335void smp_call_ipl_cpu(void (*func)(void *), void *data)
336{
337 pcpu_delegate(&pcpu_devices[0], func, data, pcpu_devices->panic_stack);
338}
339
340int smp_find_processor_id(u16 address)
341{
342 int cpu;
343
344 for_each_present_cpu(cpu)
345 if (pcpu_devices[cpu].address == address)
346 return cpu;
347 return -1;
348}
349
350int smp_vcpu_scheduled(int cpu)
351{
352 return pcpu_running(pcpu_devices + cpu);
353}
354
355void smp_yield(void)
356{
357 if (MACHINE_HAS_DIAG44)
358 asm volatile("diag 0,0,0x44");
359}
360
361void smp_yield_cpu(int cpu)
362{
363 if (MACHINE_HAS_DIAG9C)
364 asm volatile("diag %0,0,0x9c"
365 : : "d" (pcpu_devices[cpu].address));
366 else if (MACHINE_HAS_DIAG44)
367 asm volatile("diag 0,0,0x44");
368}
369
370/*
371 * Send cpus emergency shutdown signal. This gives the cpus the
372 * opportunity to complete outstanding interrupts.
373 */
374void smp_emergency_stop(cpumask_t *cpumask)
375{
376 u64 end;
377 int cpu;
378
379 end = get_clock() + (1000000UL << 12);
380 for_each_cpu(cpu, cpumask) {
381 struct pcpu *pcpu = pcpu_devices + cpu;
382 set_bit(ec_stop_cpu, &pcpu->ec_mask);
383 while (__pcpu_sigp(pcpu->address, sigp_emergency_signal,
384 0, NULL) == sigp_busy &&
385 get_clock() < end)
386 cpu_relax();
387 }
388 while (get_clock() < end) {
389 for_each_cpu(cpu, cpumask)
390 if (pcpu_stopped(pcpu_devices + cpu))
391 cpumask_clear_cpu(cpu, cpumask);
392 if (cpumask_empty(cpumask))
393 break;
394 cpu_relax();
395 }
396}
397
398/*
399 * Stop all cpus but the current one.
400 */
Heiko Carstens677d7622007-11-20 11:13:37 +0100401void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100403 cpumask_t cpumask;
404 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Heiko Carstens677d7622007-11-20 11:13:37 +0100406 /* Disable all interrupts/machine checks */
Martin Schwidefskyb50511e2011-10-30 15:16:50 +0100407 __load_psw_mask(psw_kernel_bits | PSW_MASK_DAT);
Christian Borntraeger3324e602009-03-26 15:23:56 +0100408 trace_hardirqs_off();
Heiko Carstens677d7622007-11-20 11:13:37 +0100409
Michael Holzheu3ab121a2012-03-11 11:59:32 -0400410 debug_set_critical();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100411 cpumask_copy(&cpumask, cpu_online_mask);
412 cpumask_clear_cpu(smp_processor_id(), &cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400414 if (oops_in_progress)
415 smp_emergency_stop(&cpumask);
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100416
417 /* stop all processors */
418 for_each_cpu(cpu, &cpumask) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400419 struct pcpu *pcpu = pcpu_devices + cpu;
420 pcpu_sigp_retry(pcpu, sigp_stop, 0);
421 while (!pcpu_stopped(pcpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100422 cpu_relax();
423 }
424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426/*
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400427 * Stop the current cpu.
428 */
429void smp_stop_cpu(void)
430{
431 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), sigp_stop, 0);
432 for (;;) ;
433}
434
435/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * This is the main routine where commands issued by other
437 * cpus are handled.
438 */
Heiko Carstensfde15c32012-03-11 11:59:31 -0400439static void do_ext_call_interrupt(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200440 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200442 unsigned long bits;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400443 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400445 cpu = smp_processor_id();
Heiko Carstensfde15c32012-03-11 11:59:31 -0400446 if (ext_code.code == 0x1202)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400447 kstat_cpu(cpu).irqs[EXTINT_EXC]++;
Heiko Carstens2a3a2d62011-10-30 15:17:19 +0100448 else
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400449 kstat_cpu(cpu).irqs[EXTINT_EMS]++;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200450 /*
451 * handle bit signal external calls
Heiko Carstens39ce0102007-04-27 16:02:00 +0200452 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400453 bits = xchg(&pcpu_devices[cpu].ec_mask, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100455 if (test_bit(ec_stop_cpu, &bits))
456 smp_stop_cpu();
457
Peter Zijlstra184748c2011-04-05 17:23:39 +0200458 if (test_bit(ec_schedule, &bits))
459 scheduler_ipi();
460
Heiko Carstens39ce0102007-04-27 16:02:00 +0200461 if (test_bit(ec_call_function, &bits))
Heiko Carstensca9fc752008-12-25 13:38:39 +0100462 generic_smp_call_function_interrupt();
463
464 if (test_bit(ec_call_function_single, &bits))
465 generic_smp_call_function_single_interrupt();
Martin Schwidefsky85ac7ca2011-12-27 11:27:22 +0100466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Rusty Russell630cd042009-09-24 09:34:45 -0600469void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100470{
471 int cpu;
472
Rusty Russell630cd042009-09-24 09:34:45 -0600473 for_each_cpu(cpu, mask)
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400474 pcpu_ec_call(pcpu_devices + cpu, ec_call_function);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100475}
476
477void arch_send_call_function_single_ipi(int cpu)
478{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400479 pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100480}
481
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800482#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483/*
484 * this function sends a 'purge tlb' signal to another CPU.
485 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200486static void smp_ptlb_callback(void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200488 __tlb_flush_local();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
491void smp_ptlb_all(void)
492{
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200493 on_each_cpu(smp_ptlb_callback, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800496#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498/*
499 * this function sends a 'reschedule' IPI to another CPU.
500 * it goes straight through and wastes no time serializing
501 * anything. Worst case is that we lose a reschedule ...
502 */
503void smp_send_reschedule(int cpu)
504{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400505 pcpu_ec_call(pcpu_devices + cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508/*
509 * parameter area for the set/clear control bit callbacks
510 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200511struct ec_creg_mask_parms {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400512 unsigned long orval;
513 unsigned long andval;
514 int cr;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200515};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517/*
518 * callback for setting/clearing control bits
519 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200520static void smp_ctl_bit_callback(void *info)
521{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200522 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 unsigned long cregs[16];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200524
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200525 __ctl_store(cregs, 0, 15);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400526 cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200527 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
530/*
531 * Set a bit in a control register of all cpus
532 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200533void smp_ctl_set_bit(int cr, int bit)
534{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400535 struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200537 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200539EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541/*
542 * Clear a bit in a control register of all cpus
543 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200544void smp_ctl_clear_bit(int cr, int bit)
545{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400546 struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), cr };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200548 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200550EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Michael Holzheu60a0c682011-10-30 15:16:40 +0100552#if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_CRASH_DUMP)
Michael Holzheu411ed322007-04-27 16:01:49 +0200553
Heiko Carstensf64ca212010-02-26 22:37:32 +0100554struct save_area *zfcpdump_save_areas[NR_CPUS + 1];
Michael Holzheu411ed322007-04-27 16:01:49 +0200555EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
556
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400557static void __init smp_get_save_area(int cpu, u16 address)
Heiko Carstens08d07962008-01-26 14:10:56 +0100558{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400559 void *lc = pcpu_devices[0].lowcore;
560 struct save_area *save_area;
Heiko Carstens08d07962008-01-26 14:10:56 +0100561
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400562 if (is_kdump_kernel())
563 return;
564 if (!OLDMEM_BASE && (address == boot_cpu_address ||
565 ipl_info.type != IPL_TYPE_FCP_DUMP))
566 return;
567 if (cpu >= NR_CPUS) {
568 pr_warning("CPU %i exceeds the maximum %i and is excluded "
569 "from the dump\n", cpu, NR_CPUS - 1);
570 return;
Heiko Carstens08d07962008-01-26 14:10:56 +0100571 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400572 save_area = kmalloc(sizeof(struct save_area), GFP_KERNEL);
573 if (!save_area)
574 panic("could not allocate memory for save area\n");
575 zfcpdump_save_areas[cpu] = save_area;
576#ifdef CONFIG_CRASH_DUMP
577 if (address == boot_cpu_address) {
578 /* Copy the registers of the boot cpu. */
579 copy_oldmem_page(1, (void *) save_area, sizeof(*save_area),
580 SAVE_AREA_BASE - PAGE_SIZE, 0);
581 return;
582 }
583#endif
584 /* Get the registers of a non-boot cpu. */
585 __pcpu_sigp_relax(address, sigp_stop_and_store_status, 0, NULL);
586 memcpy_real(save_area, lc + SAVE_AREA_BASE, sizeof(*save_area));
587}
588
589int smp_store_status(int cpu)
590{
591 struct pcpu *pcpu;
592
593 pcpu = pcpu_devices + cpu;
594 if (__pcpu_sigp_relax(pcpu->address, sigp_stop_and_store_status,
595 0, NULL) != sigp_order_code_accepted)
596 return -EIO;
Heiko Carstens08d07962008-01-26 14:10:56 +0100597 return 0;
598}
599
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400600#else /* CONFIG_ZFCPDUMP || CONFIG_CRASH_DUMP */
Heiko Carstens08d07962008-01-26 14:10:56 +0100601
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400602static inline void smp_get_save_area(int cpu, u16 address) { }
Heiko Carstens08d07962008-01-26 14:10:56 +0100603
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400604#endif /* CONFIG_ZFCPDUMP || CONFIG_CRASH_DUMP */
605
606static struct sclp_cpu_info *smp_get_cpu_info(void)
Heiko Carstens08d07962008-01-26 14:10:56 +0100607{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400608 static int use_sigp_detection;
Heiko Carstens08d07962008-01-26 14:10:56 +0100609 struct sclp_cpu_info *info;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400610 int address;
Heiko Carstens08d07962008-01-26 14:10:56 +0100611
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400612 info = kzalloc(sizeof(*info), GFP_KERNEL);
613 if (info && (use_sigp_detection || sclp_get_cpu_info(info))) {
614 use_sigp_detection = 1;
615 for (address = 0; address <= MAX_CPU_ADDRESS; address++) {
616 if (__pcpu_sigp_relax(address, sigp_sense, 0, NULL) ==
617 sigp_not_operational)
618 continue;
619 info->cpu[info->configured].address = address;
620 info->configured++;
621 }
622 info->combined = info->configured;
Heiko Carstens08d07962008-01-26 14:10:56 +0100623 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400624 return info;
Heiko Carstens08d07962008-01-26 14:10:56 +0100625}
626
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400627static int __devinit smp_add_present_cpu(int cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100628
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400629static int __devinit __smp_rescan_cpus(struct sclp_cpu_info *info,
630 int sysfs_add)
631{
632 struct pcpu *pcpu;
633 cpumask_t avail;
634 int cpu, nr, i;
635
636 nr = 0;
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200637 cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400638 cpu = cpumask_first(&avail);
639 for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) {
640 if (info->has_cpu_type && info->cpu[i].type != boot_cpu_type)
641 continue;
642 if (pcpu_find_address(cpu_present_mask, info->cpu[i].address))
643 continue;
644 pcpu = pcpu_devices + cpu;
645 pcpu->address = info->cpu[i].address;
646 pcpu->state = (cpu >= info->configured) ?
647 CPU_STATE_STANDBY : CPU_STATE_CONFIGURED;
648 cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
649 set_cpu_present(cpu, true);
650 if (sysfs_add && smp_add_present_cpu(cpu) != 0)
651 set_cpu_present(cpu, false);
652 else
653 nr++;
654 cpu = cpumask_next(cpu, &avail);
655 }
656 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Heiko Carstens48483b32008-01-26 14:11:05 +0100659static void __init smp_detect_cpus(void)
660{
661 unsigned int cpu, c_cpus, s_cpus;
662 struct sclp_cpu_info *info;
Heiko Carstens48483b32008-01-26 14:11:05 +0100663
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400664 info = smp_get_cpu_info();
Heiko Carstens48483b32008-01-26 14:11:05 +0100665 if (!info)
666 panic("smp_detect_cpus failed to allocate memory\n");
Heiko Carstens48483b32008-01-26 14:11:05 +0100667 if (info->has_cpu_type) {
668 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400669 if (info->cpu[cpu].address != boot_cpu_address)
670 continue;
671 /* The boot cpu dictates the cpu type. */
672 boot_cpu_type = info->cpu[cpu].type;
673 break;
Heiko Carstens48483b32008-01-26 14:11:05 +0100674 }
675 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400676 c_cpus = s_cpus = 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100677 for (cpu = 0; cpu < info->combined; cpu++) {
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400678 if (info->has_cpu_type && info->cpu[cpu].type != boot_cpu_type)
Heiko Carstens48483b32008-01-26 14:11:05 +0100679 continue;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400680 if (cpu < info->configured) {
681 smp_get_save_area(c_cpus, info->cpu[cpu].address);
682 c_cpus++;
683 } else
Heiko Carstens48483b32008-01-26 14:11:05 +0100684 s_cpus++;
Heiko Carstens48483b32008-01-26 14:11:05 +0100685 }
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100686 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100687 get_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400688 __smp_rescan_cpus(info, 0);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100689 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400690 kfree(info);
Heiko Carstens48483b32008-01-26 14:11:05 +0100691}
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200694 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400696static void __cpuinit smp_start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400698 S390_lowcore.last_update_clock = get_clock();
699 S390_lowcore.restart_stack = (unsigned long) restart_stack;
700 S390_lowcore.restart_fn = (unsigned long) do_restart;
701 S390_lowcore.restart_data = 0;
702 S390_lowcore.restart_source = -1UL;
703 restore_access_regs(S390_lowcore.access_regs_save_area);
704 __ctl_load(S390_lowcore.cregs_save_area, 0, 15);
705 __load_psw_mask(psw_kernel_bits | PSW_MASK_DAT);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200706 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800707 preempt_disable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200708 init_cpu_timer();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200709 init_cpu_vtimer();
Heiko Carstens29b08d22006-12-04 15:40:40 +0100710 pfault_init();
Manfred Spraule545a612008-09-07 16:57:22 +0200711 notify_cpu_starting(smp_processor_id());
Heiko Carstensca9fc752008-12-25 13:38:39 +0100712 ipi_call_lock();
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200713 set_cpu_online(smp_processor_id(), true);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100714 ipi_call_unlock();
Heiko Carstenscc343212011-08-03 16:44:27 +0200715 /*
716 * Wait until the cpu which brought this one up marked it
717 * active before enabling interrupts.
718 */
719 while (!cpumask_test_cpu(smp_processor_id(), cpu_active_mask))
720 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 local_irq_enable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200722 /* cpu_idle will call schedule for us */
723 cpu_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Heiko Carstensf2308862011-01-05 12:48:08 +0100726struct create_idle {
727 struct work_struct work;
728 struct task_struct *idle;
729 struct completion done;
730 int cpu;
731};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Heiko Carstensf2308862011-01-05 12:48:08 +0100733static void __cpuinit smp_fork_idle(struct work_struct *work)
734{
735 struct create_idle *c_idle;
736
737 c_idle = container_of(work, struct create_idle, work);
738 c_idle->idle = fork_idle(c_idle->cpu);
739 complete(&c_idle->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742/* Upping and downing of CPUs */
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100743int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Heiko Carstensf2308862011-01-05 12:48:08 +0100745 struct create_idle c_idle;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400746 struct pcpu *pcpu;
747 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400749 pcpu = pcpu_devices + cpu;
750 if (pcpu->state != CPU_STATE_CONFIGURED)
Heiko Carstens08d07962008-01-26 14:10:56 +0100751 return -EIO;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400752 if (pcpu_sigp_retry(pcpu, sigp_initial_cpu_reset, 0) !=
753 sigp_order_code_accepted)
754 return -EIO;
755 if (!pcpu->idle) {
Heiko Carstensf2308862011-01-05 12:48:08 +0100756 c_idle.done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done);
757 INIT_WORK_ONSTACK(&c_idle.work, smp_fork_idle);
758 c_idle.cpu = cpu;
759 schedule_work(&c_idle.work);
760 wait_for_completion(&c_idle.done);
761 if (IS_ERR(c_idle.idle))
762 return PTR_ERR(c_idle.idle);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400763 pcpu->idle = c_idle.idle;
Heiko Carstensf2308862011-01-05 12:48:08 +0100764 }
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400765 init_idle(pcpu->idle, cpu);
766 rc = pcpu_alloc_lowcore(pcpu, cpu);
767 if (rc)
768 return rc;
769 pcpu_prepare_secondary(pcpu, cpu);
770 pcpu_attach_task(pcpu, pcpu->idle);
771 pcpu_start_fn(pcpu, smp_start_secondary, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 while (!cpu_online(cpu))
773 cpu_relax();
774 return 0;
775}
776
Heiko Carstens37a33022006-02-17 13:52:47 -0800777static int __init setup_possible_cpus(char *s)
778{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400779 int max, cpu;
Heiko Carstens48483b32008-01-26 14:11:05 +0100780
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400781 if (kstrtoint(s, 0, &max) < 0)
782 return 0;
Heiko Carstens88e01282009-04-14 15:36:25 +0200783 init_cpu_possible(cpumask_of(0));
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400784 for (cpu = 1; cpu < max && cpu < nr_cpu_ids; cpu++)
Rusty Russelldef6cfb2009-03-26 15:25:00 +0100785 set_cpu_possible(cpu, true);
Heiko Carstens37a33022006-02-17 13:52:47 -0800786 return 0;
787}
788early_param("possible_cpus", setup_possible_cpus);
789
Heiko Carstens48483b32008-01-26 14:11:05 +0100790#ifdef CONFIG_HOTPLUG_CPU
791
Heiko Carstens39ce0102007-04-27 16:02:00 +0200792int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400794 unsigned long cregs[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400796 set_cpu_online(smp_processor_id(), false);
797 /* Disable pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100798 pfault_fini();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400799 /* Disable interrupt sources via control register. */
800 __ctl_store(cregs, 0, 15);
801 cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */
802 cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */
803 cregs[14] &= ~0x1f000000UL; /* disable most machine checks */
804 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return 0;
806}
807
Heiko Carstens39ce0102007-04-27 16:02:00 +0200808void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400810 struct pcpu *pcpu;
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /* Wait until target cpu is down */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400813 pcpu = pcpu_devices + cpu;
814 while (!pcpu_stopped(pcpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 cpu_relax();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400816 pcpu_free_lowcore(pcpu);
Martin Schwidefsky050eef32010-08-24 09:26:21 +0200817 atomic_dec(&init_mm.context.attach_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Heiko Carstensb456d942011-05-23 10:24:33 +0200820void __noreturn cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 idle_task_exit();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400823 pcpu_sigp_retry(pcpu_devices + smp_processor_id(), sigp_stop, 0);
824 for (;;) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Heiko Carstens255acee2006-02-17 13:52:46 -0800827#endif /* CONFIG_HOTPLUG_CPU */
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829void __init smp_prepare_cpus(unsigned int max_cpus)
830{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200831 /* request the 0x1201 emergency signal external interrupt */
832 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
833 panic("Couldn't request external interrupt 0x1201");
Martin Schwidefskyd98e19c2011-10-30 15:16:58 +0100834 /* request the 0x1202 external call external interrupt */
835 if (register_external_interrupt(0x1202, do_ext_call_interrupt) != 0)
836 panic("Couldn't request external interrupt 0x1202");
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400837 smp_detect_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200840void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400842 struct pcpu *pcpu = pcpu_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400844 boot_cpu_address = stap();
845 pcpu->idle = current;
846 pcpu->state = CPU_STATE_CONFIGURED;
847 pcpu->address = boot_cpu_address;
848 pcpu->lowcore = (struct _lowcore *)(unsigned long) store_prefix();
849 pcpu->async_stack = S390_lowcore.async_stack - ASYNC_SIZE;
850 pcpu->panic_stack = S390_lowcore.panic_stack - PAGE_SIZE;
851 S390_lowcore.percpu_offset = __per_cpu_offset[0];
852 cpu_set_polarization(0, POLARIZATION_UNKNOWN);
KOSAKI Motohiro0f1959f2011-05-23 10:24:36 +0200853 set_cpu_present(0, true);
854 set_cpu_online(0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200857void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Heiko Carstens02beacc2010-01-13 20:44:34 +0100861void __init smp_setup_processor_id(void)
862{
863 S390_lowcore.cpu_nr = 0;
Heiko Carstens02beacc2010-01-13 20:44:34 +0100864}
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866/*
867 * the frequency of the profiling timer can be changed
868 * by writing a multiplier value into /proc/profile.
869 *
870 * usually you want to run this on all CPUs ;)
871 */
872int setup_profiling_timer(unsigned int multiplier)
873{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200874 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Heiko Carstens08d07962008-01-26 14:10:56 +0100877#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800878static ssize_t cpu_configure_show(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400879 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100880{
881 ssize_t count;
882
883 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400884 count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state);
Heiko Carstens08d07962008-01-26 14:10:56 +0100885 mutex_unlock(&smp_cpu_state_mutex);
886 return count;
887}
888
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800889static ssize_t cpu_configure_store(struct device *dev,
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400890 struct device_attribute *attr,
891 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100892{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400893 struct pcpu *pcpu;
894 int cpu, val, rc;
Heiko Carstens08d07962008-01-26 14:10:56 +0100895 char delim;
896
897 if (sscanf(buf, "%d %c", &val, &delim) != 1)
898 return -EINVAL;
899 if (val != 0 && val != 1)
900 return -EINVAL;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100901 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +0200902 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100903 rc = -EBUSY;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100904 /* disallow configuration changes of online cpus and cpu 0 */
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400905 cpu = dev->id;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100906 if (cpu_online(cpu) || cpu == 0)
Heiko Carstens08d07962008-01-26 14:10:56 +0100907 goto out;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400908 pcpu = pcpu_devices + cpu;
Heiko Carstens08d07962008-01-26 14:10:56 +0100909 rc = 0;
910 switch (val) {
911 case 0:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400912 if (pcpu->state != CPU_STATE_CONFIGURED)
913 break;
914 rc = sclp_cpu_deconfigure(pcpu->address);
915 if (rc)
916 break;
917 pcpu->state = CPU_STATE_STANDBY;
918 cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
919 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +0100920 break;
921 case 1:
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400922 if (pcpu->state != CPU_STATE_STANDBY)
923 break;
924 rc = sclp_cpu_configure(pcpu->address);
925 if (rc)
926 break;
927 pcpu->state = CPU_STATE_CONFIGURED;
928 cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
929 topology_expect_change();
Heiko Carstens08d07962008-01-26 14:10:56 +0100930 break;
931 default:
932 break;
933 }
934out:
Heiko Carstens08d07962008-01-26 14:10:56 +0100935 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +0200936 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100937 return rc ? rc : count;
938}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800939static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
Heiko Carstens08d07962008-01-26 14:10:56 +0100940#endif /* CONFIG_HOTPLUG_CPU */
941
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800942static ssize_t show_cpu_address(struct device *dev,
943 struct device_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100944{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -0400945 return sprintf(buf, "%d\n", pcpu_devices[dev->id].address);
Heiko Carstens08d07962008-01-26 14:10:56 +0100946}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800947static DEVICE_ATTR(address, 0444, show_cpu_address, NULL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100948
Heiko Carstens08d07962008-01-26 14:10:56 +0100949static struct attribute *cpu_common_attrs[] = {
950#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800951 &dev_attr_configure.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +0100952#endif
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800953 &dev_attr_address.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +0100954 NULL,
955};
956
957static struct attribute_group cpu_common_attr_group = {
958 .attrs = cpu_common_attrs,
959};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800961static ssize_t show_capability(struct device *dev,
962 struct device_attribute *attr, char *buf)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200963{
964 unsigned int capability;
965 int rc;
966
967 rc = get_cpu_capability(&capability);
968 if (rc)
969 return rc;
970 return sprintf(buf, "%u\n", capability);
971}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800972static DEVICE_ATTR(capability, 0444, show_capability, NULL);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200973
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800974static ssize_t show_idle_count(struct device *dev,
975 struct device_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +0200976{
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -0400977 struct s390_idle_data *idle = &per_cpu(s390_idle, dev->id);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200978 unsigned long long idle_count;
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200979 unsigned int sequence;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200980
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -0400981 do {
982 sequence = ACCESS_ONCE(idle->sequence);
983 idle_count = ACCESS_ONCE(idle->idle_count);
984 if (ACCESS_ONCE(idle->idle_enter))
985 idle_count++;
986 } while ((sequence & 1) || (idle->sequence != sequence));
Heiko Carstensfae8b222007-10-22 12:52:39 +0200987 return sprintf(buf, "%llu\n", idle_count);
988}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800989static DEVICE_ATTR(idle_count, 0444, show_idle_count, NULL);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200990
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800991static ssize_t show_idle_time(struct device *dev,
992 struct device_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +0200993{
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -0400994 struct s390_idle_data *idle = &per_cpu(s390_idle, dev->id);
995 unsigned long long now, idle_time, idle_enter, idle_exit;
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200996 unsigned int sequence;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200997
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -0400998 do {
999 now = get_clock();
1000 sequence = ACCESS_ONCE(idle->sequence);
1001 idle_time = ACCESS_ONCE(idle->idle_time);
1002 idle_enter = ACCESS_ONCE(idle->idle_enter);
1003 idle_exit = ACCESS_ONCE(idle->idle_exit);
1004 } while ((sequence & 1) || (idle->sequence != sequence));
1005 idle_time += idle_enter ? ((idle_exit ? : now) - idle_enter) : 0;
Martin Schwidefsky6f430922008-12-31 15:11:40 +01001006 return sprintf(buf, "%llu\n", idle_time >> 12);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001007}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001008static DEVICE_ATTR(idle_time_us, 0444, show_idle_time, NULL);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001009
Heiko Carstens08d07962008-01-26 14:10:56 +01001010static struct attribute *cpu_online_attrs[] = {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001011 &dev_attr_capability.attr,
1012 &dev_attr_idle_count.attr,
1013 &dev_attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001014 NULL,
1015};
1016
Heiko Carstens08d07962008-01-26 14:10:56 +01001017static struct attribute_group cpu_online_attr_group = {
1018 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001019};
1020
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001021static int __cpuinit smp_cpu_notify(struct notifier_block *self,
1022 unsigned long action, void *hcpu)
1023{
1024 unsigned int cpu = (unsigned int)(long)hcpu;
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001025 struct cpu *c = &pcpu_devices[cpu].cpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001026 struct device *s = &c->dev;
Heiko Carstensfae8b222007-10-22 12:52:39 +02001027 struct s390_idle_data *idle;
Akinobu Mitad882ba62010-05-26 14:43:34 -07001028 int err = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001029
1030 switch (action) {
1031 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001032 case CPU_ONLINE_FROZEN:
Heiko Carstensfae8b222007-10-22 12:52:39 +02001033 idle = &per_cpu(s390_idle, cpu);
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +02001034 memset(idle, 0, sizeof(struct s390_idle_data));
Akinobu Mitad882ba62010-05-26 14:43:34 -07001035 err = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001036 break;
1037 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001038 case CPU_DEAD_FROZEN:
Heiko Carstens08d07962008-01-26 14:10:56 +01001039 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001040 break;
1041 }
Akinobu Mitad882ba62010-05-26 14:43:34 -07001042 return notifier_from_errno(err);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001043}
1044
1045static struct notifier_block __cpuinitdata smp_cpu_nb = {
Heiko Carstens39ce0102007-04-27 16:02:00 +02001046 .notifier_call = smp_cpu_notify,
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001047};
1048
Heiko Carstens2bc89b52008-02-05 16:50:40 +01001049static int __devinit smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +01001050{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001051 struct cpu *c = &pcpu_devices[cpu].cpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001052 struct device *s = &c->dev;
Heiko Carstens08d07962008-01-26 14:10:56 +01001053 int rc;
1054
1055 c->hotpluggable = 1;
1056 rc = register_cpu(c, cpu);
1057 if (rc)
1058 goto out;
1059 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1060 if (rc)
1061 goto out_cpu;
Heiko Carstens83a24e32011-12-27 11:27:09 +01001062 if (cpu_online(cpu)) {
1063 rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1064 if (rc)
1065 goto out_online;
1066 }
1067 rc = topology_cpu_init(c);
1068 if (rc)
1069 goto out_topology;
1070 return 0;
1071
1072out_topology:
1073 if (cpu_online(cpu))
1074 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
1075out_online:
Heiko Carstens08d07962008-01-26 14:10:56 +01001076 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1077out_cpu:
1078#ifdef CONFIG_HOTPLUG_CPU
1079 unregister_cpu(c);
1080#endif
1081out:
1082 return rc;
1083}
1084
1085#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001086
Heiko Carstens67060d92008-05-30 10:03:27 +02001087int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001088{
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001089 struct sclp_cpu_info *info;
1090 int nr;
Heiko Carstens08d07962008-01-26 14:10:56 +01001091
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001092 info = smp_get_cpu_info();
1093 if (!info)
1094 return -ENOMEM;
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001095 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001096 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001097 nr = __smp_rescan_cpus(info, 1);
Heiko Carstens08d07962008-01-26 14:10:56 +01001098 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001099 put_online_cpus();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001100 kfree(info);
1101 if (nr)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001102 topology_schedule_update();
Martin Schwidefsky8b646bd2012-03-11 11:59:26 -04001103 return 0;
Heiko Carstens1e489512008-04-30 13:38:37 +02001104}
1105
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001106static ssize_t __ref rescan_store(struct device *dev,
1107 struct device_attribute *attr,
Andi Kleenc9be0a32010-01-05 12:47:58 +01001108 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001109 size_t count)
1110{
1111 int rc;
1112
1113 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001114 return rc ? rc : count;
1115}
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001116static DEVICE_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001117#endif /* CONFIG_HOTPLUG_CPU */
1118
Heiko Carstens83a24e32011-12-27 11:27:09 +01001119static int __init s390_smp_init(void)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001120{
Heiko Carstens83a24e32011-12-27 11:27:09 +01001121 int cpu, rc;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001122
1123 register_cpu_notifier(&smp_cpu_nb);
Heiko Carstens08d07962008-01-26 14:10:56 +01001124#ifdef CONFIG_HOTPLUG_CPU
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001125 rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001126 if (rc)
1127 return rc;
1128#endif
1129 for_each_present_cpu(cpu) {
1130 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001131 if (rc)
1132 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134 return 0;
1135}
Heiko Carstens83a24e32011-12-27 11:27:09 +01001136subsys_initcall(s390_smp_init);