]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/s390/kernel/smp.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ecryptfs...
[net-next-2.6.git] / arch / s390 / kernel / smp.c
CommitLineData
1da177e4
LT
1/*
2 * arch/s390/kernel/smp.c
3 *
155af2f9 4 * Copyright IBM Corp. 1999, 2009
1da177e4 5 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
39ce010d
HC
6 * Martin Schwidefsky (schwidefsky@de.ibm.com)
7 * Heiko Carstens (heiko.carstens@de.ibm.com)
1da177e4 8 *
39ce010d 9 * based on other smp stuff by
1da177e4
LT
10 * (c) 1995 Alan Cox, CymruNET Ltd <alan@cymru.net>
11 * (c) 1998 Ingo Molnar
12 *
13 * We work with logical cpu numbering everywhere we can. The only
14 * functions using the real cpu address (got from STAP) are the sigp
15 * functions. For all other functions we use the identity mapping.
16 * That means that cpu_number_map[i] == i for every cpu. cpu_number_map is
17 * used e.g. to find the idle task belonging to a logical cpu. Every array
18 * in the kernel is sorted by the logical cpu number and not by the physical
19 * one which is causing all the confusion with __cpu_logical_map and
20 * cpu_number_map in other architectures.
21 */
22
395d31d4
MS
23#define KMSG_COMPONENT "cpu"
24#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
25
1da177e4
LT
26#include <linux/module.h>
27#include <linux/init.h>
1da177e4 28#include <linux/mm.h>
4e950f6f 29#include <linux/err.h>
1da177e4
LT
30#include <linux/spinlock.h>
31#include <linux/kernel_stat.h>
1da177e4
LT
32#include <linux/delay.h>
33#include <linux/cache.h>
34#include <linux/interrupt.h>
3324e60a 35#include <linux/irqflags.h>
1da177e4 36#include <linux/cpu.h>
2b67fc46 37#include <linux/timex.h>
411ed322 38#include <linux/bootmem.h>
5a0e3ad6 39#include <linux/slab.h>
cbb870c8 40#include <asm/asm-offsets.h>
46b05d26 41#include <asm/ipl.h>
2b67fc46 42#include <asm/setup.h>
1da177e4
LT
43#include <asm/sigp.h>
44#include <asm/pgalloc.h>
45#include <asm/irq.h>
46#include <asm/s390_ext.h>
47#include <asm/cpcmd.h>
48#include <asm/tlbflush.h>
2b67fc46 49#include <asm/timer.h>
411ed322 50#include <asm/lowcore.h>
08d07968 51#include <asm/sclp.h>
76d4e00a 52#include <asm/cputime.h>
c742b31c 53#include <asm/vdso.h>
4bb5e07b 54#include <asm/cpu.h>
a806170e 55#include "entry.h"
1da177e4 56
fb380aad 57/* logical cpu to cpu address */
a93b8ec1 58unsigned short __cpu_logical_map[NR_CPUS];
fb380aad 59
1da177e4
LT
60static struct task_struct *current_set[NR_CPUS];
61
08d07968
HC
62static u8 smp_cpu_type;
63static int smp_use_sigp_detection;
64
65enum s390_cpu_state {
66 CPU_STATE_STANDBY,
67 CPU_STATE_CONFIGURED,
68};
69
dbd70fb4 70DEFINE_MUTEX(smp_cpu_state_mutex);
c10fde0d 71int smp_cpu_polarization[NR_CPUS];
08d07968 72static int smp_cpu_state[NR_CPUS];
c10fde0d 73static int cpu_management;
08d07968
HC
74
75static DEFINE_PER_CPU(struct cpu, cpu_devices);
08d07968 76
a93b8ec1 77static void smp_ext_bitcall(int, int);
1da177e4 78
a93b8ec1 79static int raw_cpu_stopped(int cpu)
5c0b912e 80{
a93b8ec1 81 u32 status;
5c0b912e 82
a93b8ec1 83 switch (raw_sigp_ps(&status, 0, cpu, sigp_sense)) {
5c0b912e
HC
84 case sigp_status_stored:
85 /* Check for stopped and check stop state */
86 if (status & 0x50)
87 return 1;
88 break;
89 default:
90 break;
91 }
92 return 0;
93}
94
a93b8ec1
HC
95static inline int cpu_stopped(int cpu)
96{
97 return raw_cpu_stopped(cpu_logical_map(cpu));
98}
99
2c2df118
HC
100void smp_switch_to_ipl_cpu(void (*func)(void *), void *data)
101{
102 struct _lowcore *lc, *current_lc;
103 struct stack_frame *sf;
104 struct pt_regs *regs;
105 unsigned long sp;
106
107 if (smp_processor_id() == 0)
108 func(data);
109 __load_psw_mask(PSW_BASE_BITS | PSW_DEFAULT_KEY);
110 /* Disable lowcore protection */
111 __ctl_clear_bit(0, 28);
112 current_lc = lowcore_ptr[smp_processor_id()];
113 lc = lowcore_ptr[0];
114 if (!lc)
115 lc = current_lc;
116 lc->restart_psw.mask = PSW_BASE_BITS | PSW_DEFAULT_KEY;
117 lc->restart_psw.addr = PSW_ADDR_AMODE | (unsigned long) smp_restart_cpu;
118 if (!cpu_online(0))
119 smp_switch_to_cpu(func, data, 0, stap(), __cpu_logical_map[0]);
a93b8ec1 120 while (sigp(0, sigp_stop_and_store_status) == sigp_busy)
2c2df118
HC
121 cpu_relax();
122 sp = lc->panic_stack;
123 sp -= sizeof(struct pt_regs);
124 regs = (struct pt_regs *) sp;
125 memcpy(&regs->gprs, &current_lc->gpregs_save_area, sizeof(regs->gprs));
cbb870c8 126 regs->psw = lc->psw_save_area;
2c2df118
HC
127 sp -= STACK_FRAME_OVERHEAD;
128 sf = (struct stack_frame *) sp;
129 sf->back_chain = regs->gprs[15];
130 smp_switch_to_cpu(func, data, sp, stap(), __cpu_logical_map[0]);
131}
132
677d7623 133void smp_send_stop(void)
1da177e4 134{
39ce010d 135 int cpu, rc;
1da177e4 136
677d7623
HC
137 /* Disable all interrupts/machine checks */
138 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
3324e60a 139 trace_hardirqs_off();
1da177e4 140
677d7623 141 /* stop all processors */
1da177e4
LT
142 for_each_online_cpu(cpu) {
143 if (cpu == smp_processor_id())
144 continue;
145 do {
a93b8ec1 146 rc = sigp(cpu, sigp_stop);
39ce010d 147 } while (rc == sigp_busy);
1da177e4 148
5c0b912e 149 while (!cpu_stopped(cpu))
c6b5b847
HC
150 cpu_relax();
151 }
152}
153
1da177e4
LT
154/*
155 * This is the main routine where commands issued by other
156 * cpus are handled.
157 */
158
2b67fc46 159static void do_ext_call_interrupt(__u16 code)
1da177e4 160{
39ce010d 161 unsigned long bits;
1da177e4 162
39ce010d
HC
163 /*
164 * handle bit signal external calls
165 *
166 * For the ec_schedule signal we have to do nothing. All the work
167 * is done automatically when we return from the interrupt.
168 */
1da177e4
LT
169 bits = xchg(&S390_lowcore.ext_call_fast, 0);
170
39ce010d 171 if (test_bit(ec_call_function, &bits))
ca9fc75a
HC
172 generic_smp_call_function_interrupt();
173
174 if (test_bit(ec_call_function_single, &bits))
175 generic_smp_call_function_single_interrupt();
1da177e4
LT
176}
177
178/*
179 * Send an external call sigp to another cpu and return without waiting
180 * for its completion.
181 */
a93b8ec1 182static void smp_ext_bitcall(int cpu, int sig)
1da177e4 183{
39ce010d
HC
184 /*
185 * Set signaling bit in lowcore of target cpu and kick it
186 */
1da177e4 187 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
a93b8ec1 188 while (sigp(cpu, sigp_emergency_signal) == sigp_busy)
1da177e4
LT
189 udelay(10);
190}
191
630cd046 192void arch_send_call_function_ipi_mask(const struct cpumask *mask)
ca9fc75a
HC
193{
194 int cpu;
195
630cd046 196 for_each_cpu(cpu, mask)
ca9fc75a
HC
197 smp_ext_bitcall(cpu, ec_call_function);
198}
199
200void arch_send_call_function_single_ipi(int cpu)
201{
202 smp_ext_bitcall(cpu, ec_call_function_single);
203}
204
347a8dc3 205#ifndef CONFIG_64BIT
1da177e4
LT
206/*
207 * this function sends a 'purge tlb' signal to another CPU.
208 */
a806170e 209static void smp_ptlb_callback(void *info)
1da177e4 210{
ba8a9229 211 __tlb_flush_local();
1da177e4
LT
212}
213
214void smp_ptlb_all(void)
215{
15c8b6c1 216 on_each_cpu(smp_ptlb_callback, NULL, 1);
1da177e4
LT
217}
218EXPORT_SYMBOL(smp_ptlb_all);
347a8dc3 219#endif /* ! CONFIG_64BIT */
1da177e4
LT
220
221/*
222 * this function sends a 'reschedule' IPI to another CPU.
223 * it goes straight through and wastes no time serializing
224 * anything. Worst case is that we lose a reschedule ...
225 */
226void smp_send_reschedule(int cpu)
227{
39ce010d 228 smp_ext_bitcall(cpu, ec_schedule);
1da177e4
LT
229}
230
231/*
232 * parameter area for the set/clear control bit callbacks
233 */
94c12cc7 234struct ec_creg_mask_parms {
1da177e4
LT
235 unsigned long orvals[16];
236 unsigned long andvals[16];
94c12cc7 237};
1da177e4
LT
238
239/*
240 * callback for setting/clearing control bits
241 */
39ce010d
HC
242static void smp_ctl_bit_callback(void *info)
243{
94c12cc7 244 struct ec_creg_mask_parms *pp = info;
1da177e4
LT
245 unsigned long cregs[16];
246 int i;
39ce010d 247
94c12cc7
MS
248 __ctl_store(cregs, 0, 15);
249 for (i = 0; i <= 15; i++)
1da177e4 250 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
94c12cc7 251 __ctl_load(cregs, 0, 15);
1da177e4
LT
252}
253
254/*
255 * Set a bit in a control register of all cpus
256 */
94c12cc7
MS
257void smp_ctl_set_bit(int cr, int bit)
258{
259 struct ec_creg_mask_parms parms;
1da177e4 260
94c12cc7
MS
261 memset(&parms.orvals, 0, sizeof(parms.orvals));
262 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
1da177e4 263 parms.orvals[cr] = 1 << bit;
15c8b6c1 264 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
1da177e4 265}
39ce010d 266EXPORT_SYMBOL(smp_ctl_set_bit);
1da177e4
LT
267
268/*
269 * Clear a bit in a control register of all cpus
270 */
94c12cc7
MS
271void smp_ctl_clear_bit(int cr, int bit)
272{
273 struct ec_creg_mask_parms parms;
1da177e4 274
94c12cc7
MS
275 memset(&parms.orvals, 0, sizeof(parms.orvals));
276 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
1da177e4 277 parms.andvals[cr] = ~(1L << bit);
15c8b6c1 278 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
1da177e4 279}
39ce010d 280EXPORT_SYMBOL(smp_ctl_clear_bit);
1da177e4 281
59f2e69d 282#ifdef CONFIG_ZFCPDUMP
411ed322 283
285f6722 284static void __init smp_get_save_area(unsigned int cpu, unsigned int phy_cpu)
411ed322 285{
411ed322
MH
286 if (ipl_info.type != IPL_TYPE_FCP_DUMP)
287 return;
285f6722 288 if (cpu >= NR_CPUS) {
395d31d4
MS
289 pr_warning("CPU %i exceeds the maximum %i and is excluded from "
290 "the dump\n", cpu, NR_CPUS - 1);
285f6722 291 return;
411ed322 292 }
f64ca217 293 zfcpdump_save_areas[cpu] = kmalloc(sizeof(struct save_area), GFP_KERNEL);
a93b8ec1 294 while (raw_sigp(phy_cpu, sigp_stop_and_store_status) == sigp_busy)
285f6722 295 cpu_relax();
92fe3132
MH
296 memcpy_real(zfcpdump_save_areas[cpu],
297 (void *)(unsigned long) store_prefix() + SAVE_AREA_BASE,
298 sizeof(struct save_area));
411ed322
MH
299}
300
f64ca217 301struct save_area *zfcpdump_save_areas[NR_CPUS + 1];
411ed322
MH
302EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
303
304#else
285f6722
HC
305
306static inline void smp_get_save_area(unsigned int cpu, unsigned int phy_cpu) { }
307
59f2e69d 308#endif /* CONFIG_ZFCPDUMP */
411ed322 309
08d07968
HC
310static int cpu_known(int cpu_id)
311{
312 int cpu;
313
314 for_each_present_cpu(cpu) {
315 if (__cpu_logical_map[cpu] == cpu_id)
316 return 1;
317 }
318 return 0;
319}
320
321static int smp_rescan_cpus_sigp(cpumask_t avail)
322{
323 int cpu_id, logical_cpu;
324
93632d1b
RR
325 logical_cpu = cpumask_first(&avail);
326 if (logical_cpu >= nr_cpu_ids)
08d07968 327 return 0;
4bb5e07b 328 for (cpu_id = 0; cpu_id <= MAX_CPU_ADDRESS; cpu_id++) {
08d07968
HC
329 if (cpu_known(cpu_id))
330 continue;
331 __cpu_logical_map[logical_cpu] = cpu_id;
c10fde0d 332 smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN;
08d07968
HC
333 if (!cpu_stopped(logical_cpu))
334 continue;
335 cpu_set(logical_cpu, cpu_present_map);
336 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
93632d1b
RR
337 logical_cpu = cpumask_next(logical_cpu, &avail);
338 if (logical_cpu >= nr_cpu_ids)
08d07968
HC
339 break;
340 }
341 return 0;
342}
343
48483b32 344static int smp_rescan_cpus_sclp(cpumask_t avail)
08d07968
HC
345{
346 struct sclp_cpu_info *info;
347 int cpu_id, logical_cpu, cpu;
348 int rc;
349
93632d1b
RR
350 logical_cpu = cpumask_first(&avail);
351 if (logical_cpu >= nr_cpu_ids)
08d07968 352 return 0;
48483b32 353 info = kmalloc(sizeof(*info), GFP_KERNEL);
08d07968
HC
354 if (!info)
355 return -ENOMEM;
356 rc = sclp_get_cpu_info(info);
357 if (rc)
358 goto out;
359 for (cpu = 0; cpu < info->combined; cpu++) {
360 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
361 continue;
362 cpu_id = info->cpu[cpu].address;
363 if (cpu_known(cpu_id))
364 continue;
365 __cpu_logical_map[logical_cpu] = cpu_id;
c10fde0d 366 smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN;
08d07968
HC
367 cpu_set(logical_cpu, cpu_present_map);
368 if (cpu >= info->configured)
369 smp_cpu_state[logical_cpu] = CPU_STATE_STANDBY;
370 else
371 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
93632d1b
RR
372 logical_cpu = cpumask_next(logical_cpu, &avail);
373 if (logical_cpu >= nr_cpu_ids)
08d07968
HC
374 break;
375 }
376out:
48483b32 377 kfree(info);
08d07968
HC
378 return rc;
379}
380
1e489518 381static int __smp_rescan_cpus(void)
08d07968
HC
382{
383 cpumask_t avail;
384
48483b32 385 cpus_xor(avail, cpu_possible_map, cpu_present_map);
08d07968
HC
386 if (smp_use_sigp_detection)
387 return smp_rescan_cpus_sigp(avail);
388 else
389 return smp_rescan_cpus_sclp(avail);
1da177e4
LT
390}
391
48483b32
HC
392static void __init smp_detect_cpus(void)
393{
394 unsigned int cpu, c_cpus, s_cpus;
395 struct sclp_cpu_info *info;
396 u16 boot_cpu_addr, cpu_addr;
397
398 c_cpus = 1;
399 s_cpus = 0;
7b468488 400 boot_cpu_addr = __cpu_logical_map[0];
48483b32
HC
401 info = kmalloc(sizeof(*info), GFP_KERNEL);
402 if (!info)
403 panic("smp_detect_cpus failed to allocate memory\n");
404 /* Use sigp detection algorithm if sclp doesn't work. */
405 if (sclp_get_cpu_info(info)) {
406 smp_use_sigp_detection = 1;
4bb5e07b 407 for (cpu = 0; cpu <= MAX_CPU_ADDRESS; cpu++) {
48483b32
HC
408 if (cpu == boot_cpu_addr)
409 continue;
a93b8ec1 410 if (!raw_cpu_stopped(cpu))
48483b32
HC
411 continue;
412 smp_get_save_area(c_cpus, cpu);
413 c_cpus++;
414 }
415 goto out;
416 }
417
418 if (info->has_cpu_type) {
419 for (cpu = 0; cpu < info->combined; cpu++) {
420 if (info->cpu[cpu].address == boot_cpu_addr) {
421 smp_cpu_type = info->cpu[cpu].type;
422 break;
423 }
424 }
425 }
426
427 for (cpu = 0; cpu < info->combined; cpu++) {
428 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
429 continue;
430 cpu_addr = info->cpu[cpu].address;
431 if (cpu_addr == boot_cpu_addr)
432 continue;
a93b8ec1 433 if (!raw_cpu_stopped(cpu_addr)) {
48483b32
HC
434 s_cpus++;
435 continue;
436 }
437 smp_get_save_area(c_cpus, cpu_addr);
438 c_cpus++;
439 }
440out:
441 kfree(info);
395d31d4 442 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
9d40d2e3 443 get_online_cpus();
1e489518 444 __smp_rescan_cpus();
9d40d2e3 445 put_online_cpus();
48483b32
HC
446}
447
1da177e4 448/*
39ce010d 449 * Activate a secondary processor.
1da177e4 450 */
ea1f4eec 451int __cpuinit start_secondary(void *cpuvoid)
1da177e4 452{
39ce010d
HC
453 /* Setup the cpu */
454 cpu_init();
5bfb5d69 455 preempt_disable();
d54853ef 456 /* Enable TOD clock interrupts on the secondary cpu. */
39ce010d 457 init_cpu_timer();
d54853ef 458 /* Enable cpu timer interrupts on the secondary cpu. */
39ce010d 459 init_cpu_vtimer();
1da177e4 460 /* Enable pfault pseudo page faults on this cpu. */
29b08d2b
HC
461 pfault_init();
462
e545a614
MS
463 /* call cpu notifiers */
464 notify_cpu_starting(smp_processor_id());
1da177e4 465 /* Mark this cpu as online */
ca9fc75a 466 ipi_call_lock();
1da177e4 467 cpu_set(smp_processor_id(), cpu_online_map);
ca9fc75a 468 ipi_call_unlock();
1da177e4
LT
469 /* Switch on interrupts */
470 local_irq_enable();
39ce010d 471 /* Print info about this processor */
7b468488 472 print_cpu_info();
39ce010d
HC
473 /* cpu_idle will call schedule for us */
474 cpu_idle();
475 return 0;
1da177e4
LT
476}
477
478static void __init smp_create_idle(unsigned int cpu)
479{
480 struct task_struct *p;
481
482 /*
483 * don't care about the psw and regs settings since we'll never
484 * reschedule the forked task.
485 */
486 p = fork_idle(cpu);
487 if (IS_ERR(p))
488 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
489 current_set[cpu] = p;
490}
491
1cb6bb4b
HC
492static int __cpuinit smp_alloc_lowcore(int cpu)
493{
494 unsigned long async_stack, panic_stack;
495 struct _lowcore *lowcore;
1cb6bb4b 496
3fd26a77 497 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
1cb6bb4b
HC
498 if (!lowcore)
499 return -ENOMEM;
500 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
1cb6bb4b 501 panic_stack = __get_free_page(GFP_KERNEL);
591bb4f6
HC
502 if (!panic_stack || !async_stack)
503 goto out;
98c7b388
HC
504 memcpy(lowcore, &S390_lowcore, 512);
505 memset((char *)lowcore + 512, 0, sizeof(*lowcore) - 512);
1cb6bb4b
HC
506 lowcore->async_stack = async_stack + ASYNC_SIZE;
507 lowcore->panic_stack = panic_stack + PAGE_SIZE;
508
509#ifndef CONFIG_64BIT
510 if (MACHINE_HAS_IEEE) {
511 unsigned long save_area;
512
513 save_area = get_zeroed_page(GFP_KERNEL);
514 if (!save_area)
33b1d09e 515 goto out;
1cb6bb4b
HC
516 lowcore->extended_save_area_addr = (u32) save_area;
517 }
c742b31c
MS
518#else
519 if (vdso_alloc_per_cpu(cpu, lowcore))
520 goto out;
1cb6bb4b
HC
521#endif
522 lowcore_ptr[cpu] = lowcore;
523 return 0;
524
591bb4f6 525out:
33b1d09e 526 free_page(panic_stack);
1cb6bb4b 527 free_pages(async_stack, ASYNC_ORDER);
3fd26a77 528 free_pages((unsigned long) lowcore, LC_ORDER);
1cb6bb4b
HC
529 return -ENOMEM;
530}
531
1cb6bb4b
HC
532static void smp_free_lowcore(int cpu)
533{
534 struct _lowcore *lowcore;
1cb6bb4b 535
1cb6bb4b
HC
536 lowcore = lowcore_ptr[cpu];
537#ifndef CONFIG_64BIT
538 if (MACHINE_HAS_IEEE)
539 free_page((unsigned long) lowcore->extended_save_area_addr);
c742b31c
MS
540#else
541 vdso_free_per_cpu(cpu, lowcore);
1cb6bb4b
HC
542#endif
543 free_page(lowcore->panic_stack - PAGE_SIZE);
544 free_pages(lowcore->async_stack - ASYNC_SIZE, ASYNC_ORDER);
3fd26a77 545 free_pages((unsigned long) lowcore, LC_ORDER);
1cb6bb4b
HC
546 lowcore_ptr[cpu] = NULL;
547}
1cb6bb4b 548
1da177e4 549/* Upping and downing of CPUs */
1cb6bb4b 550int __cpuinit __cpu_up(unsigned int cpu)
1da177e4 551{
39ce010d 552 struct _lowcore *cpu_lowcore;
a93b8ec1 553 struct task_struct *idle;
1da177e4 554 struct stack_frame *sf;
d0d3cdf4 555 u32 lowcore;
a93b8ec1 556 int ccode;
1da177e4 557
08d07968
HC
558 if (smp_cpu_state[cpu] != CPU_STATE_CONFIGURED)
559 return -EIO;
1cb6bb4b
HC
560 if (smp_alloc_lowcore(cpu))
561 return -ENOMEM;
d0d3cdf4 562 do {
a93b8ec1 563 ccode = sigp(cpu, sigp_initial_cpu_reset);
d0d3cdf4
HC
564 if (ccode == sigp_busy)
565 udelay(10);
566 if (ccode == sigp_not_operational)
567 goto err_out;
568 } while (ccode == sigp_busy);
569
570 lowcore = (u32)(unsigned long)lowcore_ptr[cpu];
a93b8ec1 571 while (sigp_p(lowcore, cpu, sigp_set_prefix) == sigp_busy)
d0d3cdf4 572 udelay(10);
1da177e4
LT
573
574 idle = current_set[cpu];
39ce010d 575 cpu_lowcore = lowcore_ptr[cpu];
1da177e4 576 cpu_lowcore->kernel_stack = (unsigned long)
39ce010d 577 task_stack_page(idle) + THREAD_SIZE;
1cb6bb4b 578 cpu_lowcore->thread_info = (unsigned long) task_thread_info(idle);
1da177e4
LT
579 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
580 - sizeof(struct pt_regs)
581 - sizeof(struct stack_frame));
582 memset(sf, 0, sizeof(struct stack_frame));
583 sf->gprs[9] = (unsigned long) sf;
584 cpu_lowcore->save_area[15] = (unsigned long) sf;
24d3e210 585 __ctl_store(cpu_lowcore->cregs_save_area, 0, 15);
050eef36 586 atomic_inc(&init_mm.context.attach_count);
94c12cc7
MS
587 asm volatile(
588 " stam 0,15,0(%0)"
589 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
1da177e4 590 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
39ce010d 591 cpu_lowcore->current_task = (unsigned long) idle;
7b468488 592 cpu_lowcore->cpu_nr = cpu;
591bb4f6 593 cpu_lowcore->kernel_asce = S390_lowcore.kernel_asce;
25097bf1 594 cpu_lowcore->machine_flags = S390_lowcore.machine_flags;
dfd9f7ab 595 cpu_lowcore->ftrace_func = S390_lowcore.ftrace_func;
1da177e4 596 eieio();
699ff13f 597
a93b8ec1 598 while (sigp(cpu, sigp_restart) == sigp_busy)
699ff13f 599 udelay(10);
1da177e4
LT
600
601 while (!cpu_online(cpu))
602 cpu_relax();
603 return 0;
d0d3cdf4
HC
604
605err_out:
606 smp_free_lowcore(cpu);
607 return -EIO;
1da177e4
LT
608}
609
48483b32 610static int __init setup_possible_cpus(char *s)
255acee7 611{
48483b32 612 int pcpus, cpu;
255acee7 613
48483b32 614 pcpus = simple_strtoul(s, NULL, 0);
88e01285
HC
615 init_cpu_possible(cpumask_of(0));
616 for (cpu = 1; cpu < pcpus && cpu < nr_cpu_ids; cpu++)
def6cfb7 617 set_cpu_possible(cpu, true);
37a33026
HC
618 return 0;
619}
620early_param("possible_cpus", setup_possible_cpus);
621
48483b32
HC
622#ifdef CONFIG_HOTPLUG_CPU
623
39ce010d 624int __cpu_disable(void)
1da177e4 625{
94c12cc7 626 struct ec_creg_mask_parms cr_parms;
f3705136 627 int cpu = smp_processor_id();
1da177e4 628
f3705136 629 cpu_clear(cpu, cpu_online_map);
1da177e4 630
1da177e4 631 /* Disable pfault pseudo page faults on this cpu. */
29b08d2b 632 pfault_fini();
1da177e4 633
94c12cc7
MS
634 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
635 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
1da177e4 636
94c12cc7 637 /* disable all external interrupts */
1da177e4 638 cr_parms.orvals[0] = 0;
39ce010d
HC
639 cr_parms.andvals[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 |
640 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4);
1da177e4 641 /* disable all I/O interrupts */
1da177e4 642 cr_parms.orvals[6] = 0;
39ce010d
HC
643 cr_parms.andvals[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 |
644 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24);
1da177e4 645 /* disable most machine checks */
1da177e4 646 cr_parms.orvals[14] = 0;
39ce010d
HC
647 cr_parms.andvals[14] = ~(1 << 28 | 1 << 27 | 1 << 26 |
648 1 << 25 | 1 << 24);
94c12cc7 649
1da177e4
LT
650 smp_ctl_bit_callback(&cr_parms);
651
1da177e4
LT
652 return 0;
653}
654
39ce010d 655void __cpu_die(unsigned int cpu)
1da177e4
LT
656{
657 /* Wait until target cpu is down */
5c0b912e 658 while (!cpu_stopped(cpu))
1da177e4 659 cpu_relax();
a93b8ec1 660 while (sigp_p(0, cpu, sigp_set_prefix) == sigp_busy)
4f8048ee 661 udelay(10);
1cb6bb4b 662 smp_free_lowcore(cpu);
050eef36 663 atomic_dec(&init_mm.context.attach_count);
395d31d4 664 pr_info("Processor %d stopped\n", cpu);
1da177e4
LT
665}
666
39ce010d 667void cpu_die(void)
1da177e4
LT
668{
669 idle_task_exit();
a93b8ec1 670 while (sigp(smp_processor_id(), sigp_stop) == sigp_busy)
f8501ba7 671 cpu_relax();
39ce010d 672 for (;;);
1da177e4
LT
673}
674
255acee7
HC
675#endif /* CONFIG_HOTPLUG_CPU */
676
1da177e4
LT
677void __init smp_prepare_cpus(unsigned int max_cpus)
678{
591bb4f6
HC
679#ifndef CONFIG_64BIT
680 unsigned long save_area = 0;
681#endif
682 unsigned long async_stack, panic_stack;
683 struct _lowcore *lowcore;
1da177e4 684 unsigned int cpu;
39ce010d 685
48483b32
HC
686 smp_detect_cpus();
687
39ce010d
HC
688 /* request the 0x1201 emergency signal external interrupt */
689 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
690 panic("Couldn't request external interrupt 0x1201");
7b468488 691 print_cpu_info();
1da177e4 692
591bb4f6 693 /* Reallocate current lowcore, but keep its contents. */
3fd26a77 694 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
591bb4f6
HC
695 panic_stack = __get_free_page(GFP_KERNEL);
696 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
c742b31c 697 BUG_ON(!lowcore || !panic_stack || !async_stack);
347a8dc3 698#ifndef CONFIG_64BIT
77fa2245 699 if (MACHINE_HAS_IEEE)
591bb4f6 700 save_area = get_zeroed_page(GFP_KERNEL);
77fa2245 701#endif
591bb4f6
HC
702 local_irq_disable();
703 local_mcck_disable();
704 lowcore_ptr[smp_processor_id()] = lowcore;
705 *lowcore = S390_lowcore;
706 lowcore->panic_stack = panic_stack + PAGE_SIZE;
707 lowcore->async_stack = async_stack + ASYNC_SIZE;
708#ifndef CONFIG_64BIT
709 if (MACHINE_HAS_IEEE)
710 lowcore->extended_save_area_addr = (u32) save_area;
711#endif
712 set_prefix((u32)(unsigned long) lowcore);
713 local_mcck_enable();
714 local_irq_enable();
3a6ba460
HC
715#ifdef CONFIG_64BIT
716 if (vdso_alloc_per_cpu(smp_processor_id(), &S390_lowcore))
717 BUG();
718#endif
97db7fbf 719 for_each_possible_cpu(cpu)
1da177e4
LT
720 if (cpu != smp_processor_id())
721 smp_create_idle(cpu);
722}
723
ea1f4eec 724void __init smp_prepare_boot_cpu(void)
1da177e4
LT
725{
726 BUG_ON(smp_processor_id() != 0);
727
48483b32
HC
728 current_thread_info()->cpu = 0;
729 cpu_set(0, cpu_present_map);
1da177e4 730 cpu_set(0, cpu_online_map);
1da177e4
LT
731 S390_lowcore.percpu_offset = __per_cpu_offset[0];
732 current_set[0] = current;
08d07968 733 smp_cpu_state[0] = CPU_STATE_CONFIGURED;
c10fde0d 734 smp_cpu_polarization[0] = POLARIZATION_UNKNWN;
1da177e4
LT
735}
736
ea1f4eec 737void __init smp_cpus_done(unsigned int max_cpus)
1da177e4 738{
1da177e4
LT
739}
740
02beaccc
HC
741void __init smp_setup_processor_id(void)
742{
743 S390_lowcore.cpu_nr = 0;
744 __cpu_logical_map[0] = stap();
745}
746
1da177e4
LT
747/*
748 * the frequency of the profiling timer can be changed
749 * by writing a multiplier value into /proc/profile.
750 *
751 * usually you want to run this on all CPUs ;)
752 */
753int setup_profiling_timer(unsigned int multiplier)
754{
39ce010d 755 return 0;
1da177e4
LT
756}
757
08d07968 758#ifdef CONFIG_HOTPLUG_CPU
4a0b2b4d
AK
759static ssize_t cpu_configure_show(struct sys_device *dev,
760 struct sysdev_attribute *attr, char *buf)
08d07968
HC
761{
762 ssize_t count;
763
764 mutex_lock(&smp_cpu_state_mutex);
765 count = sprintf(buf, "%d\n", smp_cpu_state[dev->id]);
766 mutex_unlock(&smp_cpu_state_mutex);
767 return count;
768}
769
4a0b2b4d
AK
770static ssize_t cpu_configure_store(struct sys_device *dev,
771 struct sysdev_attribute *attr,
772 const char *buf, size_t count)
08d07968
HC
773{
774 int cpu = dev->id;
775 int val, rc;
776 char delim;
777
778 if (sscanf(buf, "%d %c", &val, &delim) != 1)
779 return -EINVAL;
780 if (val != 0 && val != 1)
781 return -EINVAL;
782
9d40d2e3 783 get_online_cpus();
0b18d318 784 mutex_lock(&smp_cpu_state_mutex);
08d07968 785 rc = -EBUSY;
2c2df118
HC
786 /* disallow configuration changes of online cpus and cpu 0 */
787 if (cpu_online(cpu) || cpu == 0)
08d07968
HC
788 goto out;
789 rc = 0;
790 switch (val) {
791 case 0:
792 if (smp_cpu_state[cpu] == CPU_STATE_CONFIGURED) {
793 rc = sclp_cpu_deconfigure(__cpu_logical_map[cpu]);
c10fde0d 794 if (!rc) {
08d07968 795 smp_cpu_state[cpu] = CPU_STATE_STANDBY;
c10fde0d
HC
796 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
797 }
08d07968
HC
798 }
799 break;
800 case 1:
801 if (smp_cpu_state[cpu] == CPU_STATE_STANDBY) {
802 rc = sclp_cpu_configure(__cpu_logical_map[cpu]);
c10fde0d 803 if (!rc) {
08d07968 804 smp_cpu_state[cpu] = CPU_STATE_CONFIGURED;
c10fde0d
HC
805 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
806 }
08d07968
HC
807 }
808 break;
809 default:
810 break;
811 }
812out:
08d07968 813 mutex_unlock(&smp_cpu_state_mutex);
0b18d318 814 put_online_cpus();
08d07968
HC
815 return rc ? rc : count;
816}
817static SYSDEV_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
818#endif /* CONFIG_HOTPLUG_CPU */
819
4a0b2b4d
AK
820static ssize_t cpu_polarization_show(struct sys_device *dev,
821 struct sysdev_attribute *attr, char *buf)
c10fde0d
HC
822{
823 int cpu = dev->id;
824 ssize_t count;
825
826 mutex_lock(&smp_cpu_state_mutex);
827 switch (smp_cpu_polarization[cpu]) {
828 case POLARIZATION_HRZ:
829 count = sprintf(buf, "horizontal\n");
830 break;
831 case POLARIZATION_VL:
832 count = sprintf(buf, "vertical:low\n");
833 break;
834 case POLARIZATION_VM:
835 count = sprintf(buf, "vertical:medium\n");
836 break;
837 case POLARIZATION_VH:
838 count = sprintf(buf, "vertical:high\n");
839 break;
840 default:
841 count = sprintf(buf, "unknown\n");
842 break;
843 }
844 mutex_unlock(&smp_cpu_state_mutex);
845 return count;
846}
847static SYSDEV_ATTR(polarization, 0444, cpu_polarization_show, NULL);
848
4a0b2b4d
AK
849static ssize_t show_cpu_address(struct sys_device *dev,
850 struct sysdev_attribute *attr, char *buf)
08d07968
HC
851{
852 return sprintf(buf, "%d\n", __cpu_logical_map[dev->id]);
853}
854static SYSDEV_ATTR(address, 0444, show_cpu_address, NULL);
855
856
857static struct attribute *cpu_common_attrs[] = {
858#ifdef CONFIG_HOTPLUG_CPU
859 &attr_configure.attr,
860#endif
861 &attr_address.attr,
c10fde0d 862 &attr_polarization.attr,
08d07968
HC
863 NULL,
864};
865
866static struct attribute_group cpu_common_attr_group = {
867 .attrs = cpu_common_attrs,
868};
1da177e4 869
4a0b2b4d
AK
870static ssize_t show_capability(struct sys_device *dev,
871 struct sysdev_attribute *attr, char *buf)
2fc2d1e9
HC
872{
873 unsigned int capability;
874 int rc;
875
876 rc = get_cpu_capability(&capability);
877 if (rc)
878 return rc;
879 return sprintf(buf, "%u\n", capability);
880}
881static SYSDEV_ATTR(capability, 0444, show_capability, NULL);
882
4a0b2b4d
AK
883static ssize_t show_idle_count(struct sys_device *dev,
884 struct sysdev_attribute *attr, char *buf)
fae8b22d
HC
885{
886 struct s390_idle_data *idle;
887 unsigned long long idle_count;
e98bbaaf 888 unsigned int sequence;
fae8b22d
HC
889
890 idle = &per_cpu(s390_idle, dev->id);
e98bbaaf
MS
891repeat:
892 sequence = idle->sequence;
893 smp_rmb();
894 if (sequence & 1)
895 goto repeat;
fae8b22d 896 idle_count = idle->idle_count;
6f430924
MS
897 if (idle->idle_enter)
898 idle_count++;
e98bbaaf
MS
899 smp_rmb();
900 if (idle->sequence != sequence)
901 goto repeat;
fae8b22d
HC
902 return sprintf(buf, "%llu\n", idle_count);
903}
904static SYSDEV_ATTR(idle_count, 0444, show_idle_count, NULL);
905
4a0b2b4d
AK
906static ssize_t show_idle_time(struct sys_device *dev,
907 struct sysdev_attribute *attr, char *buf)
fae8b22d
HC
908{
909 struct s390_idle_data *idle;
6f430924 910 unsigned long long now, idle_time, idle_enter;
e98bbaaf 911 unsigned int sequence;
fae8b22d
HC
912
913 idle = &per_cpu(s390_idle, dev->id);
6f430924 914 now = get_clock();
e98bbaaf
MS
915repeat:
916 sequence = idle->sequence;
917 smp_rmb();
918 if (sequence & 1)
919 goto repeat;
6f430924
MS
920 idle_time = idle->idle_time;
921 idle_enter = idle->idle_enter;
922 if (idle_enter != 0ULL && idle_enter < now)
923 idle_time += now - idle_enter;
e98bbaaf
MS
924 smp_rmb();
925 if (idle->sequence != sequence)
926 goto repeat;
6f430924 927 return sprintf(buf, "%llu\n", idle_time >> 12);
fae8b22d 928}
69d39d66 929static SYSDEV_ATTR(idle_time_us, 0444, show_idle_time, NULL);
fae8b22d 930
08d07968 931static struct attribute *cpu_online_attrs[] = {
fae8b22d
HC
932 &attr_capability.attr,
933 &attr_idle_count.attr,
69d39d66 934 &attr_idle_time_us.attr,
fae8b22d
HC
935 NULL,
936};
937
08d07968
HC
938static struct attribute_group cpu_online_attr_group = {
939 .attrs = cpu_online_attrs,
fae8b22d
HC
940};
941
2fc2d1e9
HC
942static int __cpuinit smp_cpu_notify(struct notifier_block *self,
943 unsigned long action, void *hcpu)
944{
945 unsigned int cpu = (unsigned int)(long)hcpu;
946 struct cpu *c = &per_cpu(cpu_devices, cpu);
947 struct sys_device *s = &c->sysdev;
fae8b22d 948 struct s390_idle_data *idle;
d882ba69 949 int err = 0;
2fc2d1e9
HC
950
951 switch (action) {
952 case CPU_ONLINE:
8bb78442 953 case CPU_ONLINE_FROZEN:
fae8b22d 954 idle = &per_cpu(s390_idle, cpu);
e98bbaaf 955 memset(idle, 0, sizeof(struct s390_idle_data));
d882ba69 956 err = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
2fc2d1e9
HC
957 break;
958 case CPU_DEAD:
8bb78442 959 case CPU_DEAD_FROZEN:
08d07968 960 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
2fc2d1e9
HC
961 break;
962 }
d882ba69 963 return notifier_from_errno(err);
2fc2d1e9
HC
964}
965
966static struct notifier_block __cpuinitdata smp_cpu_nb = {
39ce010d 967 .notifier_call = smp_cpu_notify,
2fc2d1e9
HC
968};
969
2bc89b5e 970static int __devinit smp_add_present_cpu(int cpu)
08d07968
HC
971{
972 struct cpu *c = &per_cpu(cpu_devices, cpu);
973 struct sys_device *s = &c->sysdev;
974 int rc;
975
976 c->hotpluggable = 1;
977 rc = register_cpu(c, cpu);
978 if (rc)
979 goto out;
980 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
981 if (rc)
982 goto out_cpu;
983 if (!cpu_online(cpu))
984 goto out;
985 rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
986 if (!rc)
987 return 0;
988 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
989out_cpu:
990#ifdef CONFIG_HOTPLUG_CPU
991 unregister_cpu(c);
992#endif
993out:
994 return rc;
995}
996
997#ifdef CONFIG_HOTPLUG_CPU
1e489518 998
67060d9c 999int __ref smp_rescan_cpus(void)
08d07968
HC
1000{
1001 cpumask_t newcpus;
1002 int cpu;
1003 int rc;
1004
9d40d2e3 1005 get_online_cpus();
0b18d318 1006 mutex_lock(&smp_cpu_state_mutex);
08d07968 1007 newcpus = cpu_present_map;
1e489518 1008 rc = __smp_rescan_cpus();
08d07968
HC
1009 if (rc)
1010 goto out;
1011 cpus_andnot(newcpus, cpu_present_map, newcpus);
1012 for_each_cpu_mask(cpu, newcpus) {
1013 rc = smp_add_present_cpu(cpu);
1014 if (rc)
1015 cpu_clear(cpu, cpu_present_map);
1016 }
1017 rc = 0;
1018out:
08d07968 1019 mutex_unlock(&smp_cpu_state_mutex);
0b18d318 1020 put_online_cpus();
c10fde0d
HC
1021 if (!cpus_empty(newcpus))
1022 topology_schedule_update();
1e489518
HC
1023 return rc;
1024}
1025
c9be0a36
AK
1026static ssize_t __ref rescan_store(struct sysdev_class *class,
1027 struct sysdev_class_attribute *attr,
1028 const char *buf,
1e489518
HC
1029 size_t count)
1030{
1031 int rc;
1032
1033 rc = smp_rescan_cpus();
08d07968
HC
1034 return rc ? rc : count;
1035}
da5aae70 1036static SYSDEV_CLASS_ATTR(rescan, 0200, NULL, rescan_store);
08d07968
HC
1037#endif /* CONFIG_HOTPLUG_CPU */
1038
5fbcae57
HC
1039static ssize_t dispatching_show(struct sysdev_class *class,
1040 struct sysdev_class_attribute *attr,
1041 char *buf)
c10fde0d
HC
1042{
1043 ssize_t count;
1044
1045 mutex_lock(&smp_cpu_state_mutex);
1046 count = sprintf(buf, "%d\n", cpu_management);
1047 mutex_unlock(&smp_cpu_state_mutex);
1048 return count;
1049}
1050
c9be0a36
AK
1051static ssize_t dispatching_store(struct sysdev_class *dev,
1052 struct sysdev_class_attribute *attr,
1053 const char *buf,
da5aae70 1054 size_t count)
c10fde0d
HC
1055{
1056 int val, rc;
1057 char delim;
1058
1059 if (sscanf(buf, "%d %c", &val, &delim) != 1)
1060 return -EINVAL;
1061 if (val != 0 && val != 1)
1062 return -EINVAL;
1063 rc = 0;
c10fde0d 1064 get_online_cpus();
0b18d318 1065 mutex_lock(&smp_cpu_state_mutex);
c10fde0d
HC
1066 if (cpu_management == val)
1067 goto out;
1068 rc = topology_set_cpu_management(val);
1069 if (!rc)
1070 cpu_management = val;
1071out:
c10fde0d 1072 mutex_unlock(&smp_cpu_state_mutex);
0b18d318 1073 put_online_cpus();
c10fde0d
HC
1074 return rc ? rc : count;
1075}
da5aae70
HC
1076static SYSDEV_CLASS_ATTR(dispatching, 0644, dispatching_show,
1077 dispatching_store);
c10fde0d 1078
1da177e4
LT
1079static int __init topology_init(void)
1080{
1081 int cpu;
fae8b22d 1082 int rc;
2fc2d1e9
HC
1083
1084 register_cpu_notifier(&smp_cpu_nb);
1da177e4 1085
08d07968 1086#ifdef CONFIG_HOTPLUG_CPU
da5aae70 1087 rc = sysdev_class_create_file(&cpu_sysdev_class, &attr_rescan);
08d07968
HC
1088 if (rc)
1089 return rc;
1090#endif
da5aae70 1091 rc = sysdev_class_create_file(&cpu_sysdev_class, &attr_dispatching);
c10fde0d
HC
1092 if (rc)
1093 return rc;
08d07968
HC
1094 for_each_present_cpu(cpu) {
1095 rc = smp_add_present_cpu(cpu);
fae8b22d
HC
1096 if (rc)
1097 return rc;
1da177e4
LT
1098 }
1099 return 0;
1100}
1da177e4 1101subsys_initcall(topology_init);