blob: 432deb2d97958442ff07e58bf44a37a77acf57e0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/kernel/smp.c
3 *
Heiko Carstens255acee2006-02-17 13:52:46 -08004 * Copyright (C) IBM Corp. 1999,2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
6 * Martin Schwidefsky (schwidefsky@de.ibm.com)
7 * Heiko Carstens (heiko.carstens@de.ibm.com)
8 *
9 * based on other smp stuff by
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
23#include <linux/module.h>
24#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mm.h>
26#include <linux/spinlock.h>
27#include <linux/kernel_stat.h>
28#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/delay.h>
30#include <linux/cache.h>
31#include <linux/interrupt.h>
32#include <linux/cpu.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010033#include <linux/timex.h>
34#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/sigp.h>
36#include <asm/pgalloc.h>
37#include <asm/irq.h>
38#include <asm/s390_ext.h>
39#include <asm/cpcmd.h>
40#include <asm/tlbflush.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010041#include <asm/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043extern volatile int __cpu_logical_map[];
44
45/*
46 * An array with a pointer the lowcore of every CPU.
47 */
48
49struct _lowcore *lowcore_ptr[NR_CPUS];
50
Heiko Carstens255acee2006-02-17 13:52:46 -080051cpumask_t cpu_online_map = CPU_MASK_NONE;
52cpumask_t cpu_possible_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54static struct task_struct *current_set[NR_CPUS];
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static void smp_ext_bitcall(int, ec_bit_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
Jan Glauber63db6e82007-02-21 10:55:06 +010059 * Structure and data for __smp_call_function_map(). This is designed to
60 * minimise static memory requirements. It also looks cleaner.
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 */
62static DEFINE_SPINLOCK(call_lock);
63
64struct call_data_struct {
65 void (*func) (void *info);
66 void *info;
Jan Glauber63db6e82007-02-21 10:55:06 +010067 cpumask_t started;
68 cpumask_t finished;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 int wait;
70};
71
72static struct call_data_struct * call_data;
73
74/*
75 * 'Call function' interrupt callback
76 */
77static void do_call_function(void)
78{
79 void (*func) (void *info) = call_data->func;
80 void *info = call_data->info;
81 int wait = call_data->wait;
82
Jan Glauber63db6e82007-02-21 10:55:06 +010083 cpu_set(smp_processor_id(), call_data->started);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 (*func)(info);
85 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +010086 cpu_set(smp_processor_id(), call_data->finished);;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Jan Glauber63db6e82007-02-21 10:55:06 +010089static void __smp_call_function_map(void (*func) (void *info), void *info,
90 int nonatomic, int wait, cpumask_t map)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 struct call_data_struct data;
Jan Glauber63db6e82007-02-21 10:55:06 +010093 int cpu, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Jan Glauber63db6e82007-02-21 10:55:06 +010095 /*
96 * Can deadlock when interrupts are disabled or if in wrong context,
97 * caller must disable preemption
98 */
99 WARN_ON(irqs_disabled() || in_irq() || preemptible());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Jan Glauber63db6e82007-02-21 10:55:06 +0100101 /*
102 * Check for local function call. We have to have the same call order
103 * as in on_each_cpu() because of machine_restart_smp().
104 */
105 if (cpu_isset(smp_processor_id(), map)) {
106 local = 1;
107 cpu_clear(smp_processor_id(), map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
Jan Glauber63db6e82007-02-21 10:55:06 +0100110 cpus_and(map, map, cpu_online_map);
111 if (cpus_empty(map))
112 goto out;
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 data.func = func;
115 data.info = info;
Jan Glauber63db6e82007-02-21 10:55:06 +0100116 data.started = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 data.wait = wait;
118 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100119 data.finished = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 spin_lock_bh(&call_lock);
122 call_data = &data;
Jan Glauber63db6e82007-02-21 10:55:06 +0100123
124 for_each_cpu_mask(cpu, map)
125 smp_ext_bitcall(cpu, ec_call_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /* Wait for response */
Jan Glauber63db6e82007-02-21 10:55:06 +0100128 while (!cpus_equal(map, data.started))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 cpu_relax();
130
131 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100132 while (!cpus_equal(map, data.finished))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 cpu_relax();
134
135 spin_unlock_bh(&call_lock);
Jan Glauber63db6e82007-02-21 10:55:06 +0100136
137out:
138 local_irq_disable();
139 if (local)
140 func(info);
141 local_irq_enable();
142}
143
144/*
145 * smp_call_function:
146 * @func: the function to run; this must be fast and non-blocking
147 * @info: an arbitrary pointer to pass to the function
148 * @nonatomic: unused
149 * @wait: if true, wait (atomically) until function has completed on other CPUs
150 *
151 * Run a function on all other CPUs.
152 *
153 * You must not call this function with disabled interrupts or from a
154 * hardware interrupt handler. Must be called with preemption disabled.
155 * You may call it from a bottom half.
156 */
157int smp_call_function(void (*func) (void *info), void *info, int nonatomic,
158 int wait)
159{
160 cpumask_t map;
161
162 map = cpu_online_map;
163 cpu_clear(smp_processor_id(), map);
164 __smp_call_function_map(func, info, nonatomic, wait, map);
165 return 0;
166}
167EXPORT_SYMBOL(smp_call_function);
168
169/*
170 * smp_call_function_on:
171 * @func: the function to run; this must be fast and non-blocking
172 * @info: an arbitrary pointer to pass to the function
173 * @nonatomic: unused
174 * @wait: if true, wait (atomically) until function has completed on other CPUs
175 * @cpu: the CPU where func should run
176 *
177 * Run a function on one processor.
178 *
179 * You must not call this function with disabled interrupts or from a
180 * hardware interrupt handler. Must be called with preemption disabled.
181 * You may call it from a bottom half.
182 */
183int smp_call_function_on(void (*func) (void *info), void *info, int nonatomic,
184 int wait, int cpu)
185{
186 cpumask_t map = CPU_MASK_NONE;
187
188 cpu_set(cpu, map);
189 __smp_call_function_map(func, info, nonatomic, wait, map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return 0;
191}
192EXPORT_SYMBOL(smp_call_function_on);
193
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100194static void do_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 int cpu, rc;
197
198 /* stop all processors */
199 for_each_online_cpu(cpu) {
200 if (cpu == smp_processor_id())
201 continue;
202 do {
203 rc = signal_processor(cpu, sigp_stop);
204 } while (rc == sigp_busy);
205 }
206}
207
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100208static void do_store_status(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 int cpu, rc;
211
212 /* store status of all processors in their lowcores (real 0) */
213 for_each_online_cpu(cpu) {
214 if (cpu == smp_processor_id())
215 continue;
216 do {
217 rc = signal_processor_p(
218 (__u32)(unsigned long) lowcore_ptr[cpu], cpu,
219 sigp_store_status_at_address);
220 } while(rc == sigp_busy);
221 }
222}
223
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100224static void do_wait_for_stop(void)
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100225{
226 int cpu;
227
228 /* Wait for all other cpus to enter stopped state */
229 for_each_online_cpu(cpu) {
230 if (cpu == smp_processor_id())
231 continue;
232 while(!smp_cpu_not_running(cpu))
233 cpu_relax();
234 }
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/*
238 * this function sends a 'stop' sigp to all other CPUs in the system.
239 * it goes straight through.
240 */
241void smp_send_stop(void)
242{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100243 /* Disable all interrupts/machine checks */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100244 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* write magic number to zero page (absolute 0) */
247 lowcore_ptr[smp_processor_id()]->panic_magic = __PANIC_MAGIC;
248
249 /* stop other processors. */
250 do_send_stop();
251
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100252 /* wait until other processors are stopped */
253 do_wait_for_stop();
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /* store status of other processors. */
256 do_store_status();
257}
258
259/*
260 * Reboot, halt and power_off routines for SMP.
261 */
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263void machine_restart_smp(char * __unused)
264{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100265 smp_send_stop();
266 do_reipl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269void machine_halt_smp(void)
270{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100271 smp_send_stop();
272 if (MACHINE_IS_VM && strlen(vmhalt_cmd) > 0)
273 __cpcmd(vmhalt_cmd, NULL, 0, NULL);
274 signal_processor(smp_processor_id(), sigp_stop_and_store_status);
275 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278void machine_power_off_smp(void)
279{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100280 smp_send_stop();
281 if (MACHINE_IS_VM && strlen(vmpoff_cmd) > 0)
282 __cpcmd(vmpoff_cmd, NULL, 0, NULL);
283 signal_processor(smp_processor_id(), sigp_stop_and_store_status);
284 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287/*
288 * This is the main routine where commands issued by other
289 * cpus are handled.
290 */
291
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100292static void do_ext_call_interrupt(__u16 code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 unsigned long bits;
295
296 /*
297 * handle bit signal external calls
298 *
299 * For the ec_schedule signal we have to do nothing. All the work
300 * is done automatically when we return from the interrupt.
301 */
302 bits = xchg(&S390_lowcore.ext_call_fast, 0);
303
304 if (test_bit(ec_call_function, &bits))
305 do_call_function();
306}
307
308/*
309 * Send an external call sigp to another cpu and return without waiting
310 * for its completion.
311 */
312static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
313{
314 /*
315 * Set signaling bit in lowcore of target cpu and kick it
316 */
317 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
Heiko Carstens99b2d8d2005-07-27 11:45:00 -0700318 while(signal_processor(cpu, sigp_emergency_signal) == sigp_busy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 udelay(10);
320}
321
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800322#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*
324 * this function sends a 'purge tlb' signal to another CPU.
325 */
326void smp_ptlb_callback(void *info)
327{
328 local_flush_tlb();
329}
330
331void smp_ptlb_all(void)
332{
333 on_each_cpu(smp_ptlb_callback, NULL, 0, 1);
334}
335EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800336#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338/*
339 * this function sends a 'reschedule' IPI to another CPU.
340 * it goes straight through and wastes no time serializing
341 * anything. Worst case is that we lose a reschedule ...
342 */
343void smp_send_reschedule(int cpu)
344{
345 smp_ext_bitcall(cpu, ec_schedule);
346}
347
348/*
349 * parameter area for the set/clear control bit callbacks
350 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200351struct ec_creg_mask_parms {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 unsigned long orvals[16];
353 unsigned long andvals[16];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200354};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356/*
357 * callback for setting/clearing control bits
358 */
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100359static void smp_ctl_bit_callback(void *info) {
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200360 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 unsigned long cregs[16];
362 int i;
363
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200364 __ctl_store(cregs, 0, 15);
365 for (i = 0; i <= 15; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200367 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
370/*
371 * Set a bit in a control register of all cpus
372 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200373void smp_ctl_set_bit(int cr, int bit)
374{
375 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200377 memset(&parms.orvals, 0, sizeof(parms.orvals));
378 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 parms.orvals[cr] = 1 << bit;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200380 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
383/*
384 * Clear a bit in a control register of all cpus
385 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200386void smp_ctl_clear_bit(int cr, int bit)
387{
388 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200390 memset(&parms.orvals, 0, sizeof(parms.orvals));
391 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 parms.andvals[cr] = ~(1L << bit);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200393 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396/*
397 * Lets check how many CPUs we have.
398 */
399
Heiko Carstens255acee2006-02-17 13:52:46 -0800400static unsigned int
401__init smp_count_cpus(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Heiko Carstens255acee2006-02-17 13:52:46 -0800403 unsigned int cpu, num_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 __u16 boot_cpu_addr;
405
406 /*
407 * cpu 0 is the boot cpu. See smp_prepare_boot_cpu.
408 */
409
410 boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
411 current_thread_info()->cpu = 0;
412 num_cpus = 1;
Heiko Carstens255acee2006-02-17 13:52:46 -0800413 for (cpu = 0; cpu <= 65535; cpu++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if ((__u16) cpu == boot_cpu_addr)
415 continue;
Heiko Carstens255acee2006-02-17 13:52:46 -0800416 __cpu_logical_map[1] = (__u16) cpu;
417 if (signal_processor(1, sigp_sense) ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 sigp_not_operational)
419 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 num_cpus++;
421 }
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 printk("Detected %d CPU's\n",(int) num_cpus);
424 printk("Boot cpu address %2X\n", boot_cpu_addr);
Heiko Carstens255acee2006-02-17 13:52:46 -0800425
426 return num_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
429/*
430 * Activate a secondary processor.
431 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432int __devinit start_secondary(void *cpuvoid)
433{
434 /* Setup the cpu */
435 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800436 preempt_disable();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100437 /* Enable TOD clock interrupts on the secondary cpu. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 init_cpu_timer();
439#ifdef CONFIG_VIRT_TIMER
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100440 /* Enable cpu timer interrupts on the secondary cpu. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 init_cpu_vtimer();
442#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* Enable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100444 pfault_init();
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /* Mark this cpu as online */
447 cpu_set(smp_processor_id(), cpu_online_map);
448 /* Switch on interrupts */
449 local_irq_enable();
450 /* Print info about this processor */
451 print_cpu_info(&S390_lowcore.cpu_data);
452 /* cpu_idle will call schedule for us */
453 cpu_idle();
454 return 0;
455}
456
457static void __init smp_create_idle(unsigned int cpu)
458{
459 struct task_struct *p;
460
461 /*
462 * don't care about the psw and regs settings since we'll never
463 * reschedule the forked task.
464 */
465 p = fork_idle(cpu);
466 if (IS_ERR(p))
467 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
468 current_set[cpu] = p;
469}
470
471/* Reserving and releasing of CPUs */
472
473static DEFINE_SPINLOCK(smp_reserve_lock);
474static int smp_cpu_reserved[NR_CPUS];
475
476int
477smp_get_cpu(cpumask_t cpu_mask)
478{
479 unsigned long flags;
480 int cpu;
481
482 spin_lock_irqsave(&smp_reserve_lock, flags);
483 /* Try to find an already reserved cpu. */
484 for_each_cpu_mask(cpu, cpu_mask) {
485 if (smp_cpu_reserved[cpu] != 0) {
486 smp_cpu_reserved[cpu]++;
487 /* Found one. */
488 goto out;
489 }
490 }
491 /* Reserve a new cpu from cpu_mask. */
492 for_each_cpu_mask(cpu, cpu_mask) {
493 if (cpu_online(cpu)) {
494 smp_cpu_reserved[cpu]++;
495 goto out;
496 }
497 }
498 cpu = -ENODEV;
499out:
500 spin_unlock_irqrestore(&smp_reserve_lock, flags);
501 return cpu;
502}
503
504void
505smp_put_cpu(int cpu)
506{
507 unsigned long flags;
508
509 spin_lock_irqsave(&smp_reserve_lock, flags);
510 smp_cpu_reserved[cpu]--;
511 spin_unlock_irqrestore(&smp_reserve_lock, flags);
512}
513
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100514static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515cpu_stopped(int cpu)
516{
517 __u32 status;
518
519 /* Check for stopped state */
520 if (signal_processor_ps(&status, 0, cpu, sigp_sense) == sigp_status_stored) {
521 if (status & 0x40)
522 return 1;
523 }
524 return 0;
525}
526
527/* Upping and downing of CPUs */
528
529int
530__cpu_up(unsigned int cpu)
531{
532 struct task_struct *idle;
533 struct _lowcore *cpu_lowcore;
534 struct stack_frame *sf;
535 sigp_ccode ccode;
536 int curr_cpu;
537
538 for (curr_cpu = 0; curr_cpu <= 65535; curr_cpu++) {
539 __cpu_logical_map[cpu] = (__u16) curr_cpu;
540 if (cpu_stopped(cpu))
541 break;
542 }
543
544 if (!cpu_stopped(cpu))
545 return -ENODEV;
546
547 ccode = signal_processor_p((__u32)(unsigned long)(lowcore_ptr[cpu]),
548 cpu, sigp_set_prefix);
549 if (ccode){
550 printk("sigp_set_prefix failed for cpu %d "
551 "with condition code %d\n",
552 (int) cpu, (int) ccode);
553 return -EIO;
554 }
555
556 idle = current_set[cpu];
557 cpu_lowcore = lowcore_ptr[cpu];
558 cpu_lowcore->kernel_stack = (unsigned long)
Al Viro30af7122006-01-12 01:05:50 -0800559 task_stack_page(idle) + (THREAD_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
561 - sizeof(struct pt_regs)
562 - sizeof(struct stack_frame));
563 memset(sf, 0, sizeof(struct stack_frame));
564 sf->gprs[9] = (unsigned long) sf;
565 cpu_lowcore->save_area[15] = (unsigned long) sf;
566 __ctl_store(cpu_lowcore->cregs_save_area[0], 0, 15);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200567 asm volatile(
568 " stam 0,15,0(%0)"
569 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
571 cpu_lowcore->current_task = (unsigned long) idle;
572 cpu_lowcore->cpu_data.cpu_nr = cpu;
573 eieio();
Michael Ryan699ff132006-03-24 03:15:17 -0800574
575 while (signal_processor(cpu,sigp_restart) == sigp_busy)
576 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 while (!cpu_online(cpu))
579 cpu_relax();
580 return 0;
581}
582
Heiko Carstens255acee2006-02-17 13:52:46 -0800583static unsigned int __initdata additional_cpus;
Heiko Carstens37a33022006-02-17 13:52:47 -0800584static unsigned int __initdata possible_cpus;
Heiko Carstens255acee2006-02-17 13:52:46 -0800585
586void __init smp_setup_cpu_possible_map(void)
587{
Heiko Carstens54330452006-02-17 13:52:48 -0800588 unsigned int phy_cpus, pos_cpus, cpu;
Heiko Carstens255acee2006-02-17 13:52:46 -0800589
Heiko Carstens54330452006-02-17 13:52:48 -0800590 phy_cpus = smp_count_cpus();
591 pos_cpus = min(phy_cpus + additional_cpus, (unsigned int) NR_CPUS);
Heiko Carstens255acee2006-02-17 13:52:46 -0800592
Heiko Carstens37a33022006-02-17 13:52:47 -0800593 if (possible_cpus)
Heiko Carstens54330452006-02-17 13:52:48 -0800594 pos_cpus = min(possible_cpus, (unsigned int) NR_CPUS);
Heiko Carstens255acee2006-02-17 13:52:46 -0800595
Heiko Carstens54330452006-02-17 13:52:48 -0800596 for (cpu = 0; cpu < pos_cpus; cpu++)
Heiko Carstens255acee2006-02-17 13:52:46 -0800597 cpu_set(cpu, cpu_possible_map);
598
Heiko Carstens54330452006-02-17 13:52:48 -0800599 phy_cpus = min(phy_cpus, pos_cpus);
600
601 for (cpu = 0; cpu < phy_cpus; cpu++)
602 cpu_set(cpu, cpu_present_map);
Heiko Carstens255acee2006-02-17 13:52:46 -0800603}
604
605#ifdef CONFIG_HOTPLUG_CPU
606
607static int __init setup_additional_cpus(char *s)
608{
609 additional_cpus = simple_strtoul(s, NULL, 0);
610 return 0;
611}
612early_param("additional_cpus", setup_additional_cpus);
613
Heiko Carstens37a33022006-02-17 13:52:47 -0800614static int __init setup_possible_cpus(char *s)
615{
616 possible_cpus = simple_strtoul(s, NULL, 0);
617 return 0;
618}
619early_param("possible_cpus", setup_possible_cpus);
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621int
622__cpu_disable(void)
623{
624 unsigned long flags;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200625 struct ec_creg_mask_parms cr_parms;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700626 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 spin_lock_irqsave(&smp_reserve_lock, flags);
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700629 if (smp_cpu_reserved[cpu] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 spin_unlock_irqrestore(&smp_reserve_lock, flags);
631 return -EBUSY;
632 }
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700633 cpu_clear(cpu, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /* Disable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100636 pfault_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200638 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
639 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200641 /* disable all external interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 cr_parms.orvals[0] = 0;
643 cr_parms.andvals[0] = ~(1<<15 | 1<<14 | 1<<13 | 1<<12 |
644 1<<11 | 1<<10 | 1<< 6 | 1<< 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* disable all I/O interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 cr_parms.orvals[6] = 0;
647 cr_parms.andvals[6] = ~(1<<31 | 1<<30 | 1<<29 | 1<<28 |
648 1<<27 | 1<<26 | 1<<25 | 1<<24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /* disable most machine checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 cr_parms.orvals[14] = 0;
651 cr_parms.andvals[14] = ~(1<<28 | 1<<27 | 1<<26 | 1<<25 | 1<<24);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 smp_ctl_bit_callback(&cr_parms);
654
655 spin_unlock_irqrestore(&smp_reserve_lock, flags);
656 return 0;
657}
658
659void
660__cpu_die(unsigned int cpu)
661{
662 /* Wait until target cpu is down */
663 while (!smp_cpu_not_running(cpu))
664 cpu_relax();
665 printk("Processor %d spun down\n", cpu);
666}
667
668void
669cpu_die(void)
670{
671 idle_task_exit();
672 signal_processor(smp_processor_id(), sigp_stop);
673 BUG();
674 for(;;);
675}
676
Heiko Carstens255acee2006-02-17 13:52:46 -0800677#endif /* CONFIG_HOTPLUG_CPU */
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/*
680 * Cycle through the processors and setup structures.
681 */
682
683void __init smp_prepare_cpus(unsigned int max_cpus)
684{
685 unsigned long stack;
686 unsigned int cpu;
687 int i;
688
Heiko Carstens99b2d8d2005-07-27 11:45:00 -0700689 /* request the 0x1201 emergency signal external interrupt */
690 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
691 panic("Couldn't request external interrupt 0x1201");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 memset(lowcore_ptr,0,sizeof(lowcore_ptr));
693 /*
694 * Initialize prefix pages and stacks for all possible cpus
695 */
696 print_cpu_info(&S390_lowcore.cpu_data);
697
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800698 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 lowcore_ptr[i] = (struct _lowcore *)
700 __get_free_pages(GFP_KERNEL|GFP_DMA,
701 sizeof(void*) == 8 ? 1 : 0);
702 stack = __get_free_pages(GFP_KERNEL,ASYNC_ORDER);
703 if (lowcore_ptr[i] == NULL || stack == 0ULL)
704 panic("smp_boot_cpus failed to allocate memory\n");
705
706 *(lowcore_ptr[i]) = S390_lowcore;
707 lowcore_ptr[i]->async_stack = stack + (ASYNC_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 stack = __get_free_pages(GFP_KERNEL,0);
709 if (stack == 0ULL)
710 panic("smp_boot_cpus failed to allocate memory\n");
711 lowcore_ptr[i]->panic_stack = stack + (PAGE_SIZE);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800712#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700713 if (MACHINE_HAS_IEEE) {
714 lowcore_ptr[i]->extended_save_area_addr =
715 (__u32) __get_free_pages(GFP_KERNEL,0);
716 if (lowcore_ptr[i]->extended_save_area_addr == 0)
717 panic("smp_boot_cpus failed to "
718 "allocate memory\n");
719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720#endif
721 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800722#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700723 if (MACHINE_HAS_IEEE)
724 ctl_set_bit(14, 29); /* enable extended save area */
725#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 set_prefix((u32)(unsigned long) lowcore_ptr[smp_processor_id()]);
727
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800728 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (cpu != smp_processor_id())
730 smp_create_idle(cpu);
731}
732
733void __devinit smp_prepare_boot_cpu(void)
734{
735 BUG_ON(smp_processor_id() != 0);
736
737 cpu_set(0, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 S390_lowcore.percpu_offset = __per_cpu_offset[0];
739 current_set[0] = current;
740}
741
742void smp_cpus_done(unsigned int max_cpus)
743{
Heiko Carstens54330452006-02-17 13:52:48 -0800744 cpu_present_map = cpu_possible_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
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{
755 return 0;
756}
757
758static DEFINE_PER_CPU(struct cpu, cpu_devices);
759
760static int __init topology_init(void)
761{
762 int cpu;
763 int ret;
764
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800765 for_each_possible_cpu(cpu) {
Heiko Carstens6721f772007-01-09 10:18:44 +0100766 struct cpu *c = &per_cpu(cpu_devices, cpu);
767
768 c->hotpluggable = 1;
769 ret = register_cpu(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (ret)
771 printk(KERN_WARNING "topology_init: register_cpu %d "
772 "failed (%d)\n", cpu, ret);
773 }
774 return 0;
775}
776
777subsys_initcall(topology_init);
778
Heiko Carstens255acee2006-02-17 13:52:46 -0800779EXPORT_SYMBOL(cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780EXPORT_SYMBOL(cpu_possible_map);
781EXPORT_SYMBOL(lowcore_ptr);
782EXPORT_SYMBOL(smp_ctl_set_bit);
783EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784EXPORT_SYMBOL(smp_get_cpu);
785EXPORT_SYMBOL(smp_put_cpu);