blob: 97764f710bb7862e18f60d4a88fdd48ff87963d0 [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>
Michael Holzheu46b05d22007-02-21 10:55:21 +010034#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010035#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/sigp.h>
37#include <asm/pgalloc.h>
38#include <asm/irq.h>
39#include <asm/s390_ext.h>
40#include <asm/cpcmd.h>
41#include <asm/tlbflush.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010042#include <asm/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044extern volatile int __cpu_logical_map[];
45
46/*
47 * An array with a pointer the lowcore of every CPU.
48 */
49
50struct _lowcore *lowcore_ptr[NR_CPUS];
51
Heiko Carstens255acee2006-02-17 13:52:46 -080052cpumask_t cpu_online_map = CPU_MASK_NONE;
53cpumask_t cpu_possible_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55static struct task_struct *current_set[NR_CPUS];
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static void smp_ext_bitcall(int, ec_bit_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*
Jan Glauber63db6e82007-02-21 10:55:06 +010060 * Structure and data for __smp_call_function_map(). This is designed to
61 * minimise static memory requirements. It also looks cleaner.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 */
63static DEFINE_SPINLOCK(call_lock);
64
65struct call_data_struct {
66 void (*func) (void *info);
67 void *info;
Jan Glauber63db6e82007-02-21 10:55:06 +010068 cpumask_t started;
69 cpumask_t finished;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 int wait;
71};
72
73static struct call_data_struct * call_data;
74
75/*
76 * 'Call function' interrupt callback
77 */
78static void do_call_function(void)
79{
80 void (*func) (void *info) = call_data->func;
81 void *info = call_data->info;
82 int wait = call_data->wait;
83
Jan Glauber63db6e82007-02-21 10:55:06 +010084 cpu_set(smp_processor_id(), call_data->started);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 (*func)(info);
86 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +010087 cpu_set(smp_processor_id(), call_data->finished);;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Jan Glauber63db6e82007-02-21 10:55:06 +010090static void __smp_call_function_map(void (*func) (void *info), void *info,
91 int nonatomic, int wait, cpumask_t map)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 struct call_data_struct data;
Jan Glauber63db6e82007-02-21 10:55:06 +010094 int cpu, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Jan Glauber63db6e82007-02-21 10:55:06 +010096 /*
Heiko Carstens25864162007-03-05 23:35:41 +010097 * Can deadlock when interrupts are disabled or if in wrong context.
Jan Glauber63db6e82007-02-21 10:55:06 +010098 */
Heiko Carstens25864162007-03-05 23:35:41 +010099 WARN_ON(irqs_disabled() || in_irq());
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
Heiko Carstens25864162007-03-05 23:35:41 +0100154 * hardware interrupt handler. You may call it from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100155 */
156int smp_call_function(void (*func) (void *info), void *info, int nonatomic,
157 int wait)
158{
159 cpumask_t map;
160
Heiko Carstens25864162007-03-05 23:35:41 +0100161 preempt_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100162 map = cpu_online_map;
163 cpu_clear(smp_processor_id(), map);
164 __smp_call_function_map(func, info, nonatomic, wait, map);
Heiko Carstens25864162007-03-05 23:35:41 +0100165 preempt_enable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100166 return 0;
167}
168EXPORT_SYMBOL(smp_call_function);
169
170/*
171 * smp_call_function_on:
172 * @func: the function to run; this must be fast and non-blocking
173 * @info: an arbitrary pointer to pass to the function
174 * @nonatomic: unused
175 * @wait: if true, wait (atomically) until function has completed on other CPUs
176 * @cpu: the CPU where func should run
177 *
178 * Run a function on one processor.
179 *
180 * You must not call this function with disabled interrupts or from a
Heiko Carstens25864162007-03-05 23:35:41 +0100181 * hardware interrupt handler. You may call it from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100182 */
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
Heiko Carstens25864162007-03-05 23:35:41 +0100188 preempt_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100189 cpu_set(cpu, map);
190 __smp_call_function_map(func, info, nonatomic, wait, map);
Heiko Carstens25864162007-03-05 23:35:41 +0100191 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return 0;
193}
194EXPORT_SYMBOL(smp_call_function_on);
195
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100196static void do_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 int cpu, rc;
199
200 /* stop all processors */
201 for_each_online_cpu(cpu) {
202 if (cpu == smp_processor_id())
203 continue;
204 do {
205 rc = signal_processor(cpu, sigp_stop);
206 } while (rc == sigp_busy);
207 }
208}
209
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100210static void do_store_status(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 int cpu, rc;
213
214 /* store status of all processors in their lowcores (real 0) */
215 for_each_online_cpu(cpu) {
216 if (cpu == smp_processor_id())
217 continue;
218 do {
219 rc = signal_processor_p(
220 (__u32)(unsigned long) lowcore_ptr[cpu], cpu,
221 sigp_store_status_at_address);
222 } while(rc == sigp_busy);
223 }
224}
225
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100226static void do_wait_for_stop(void)
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100227{
228 int cpu;
229
230 /* Wait for all other cpus to enter stopped state */
231 for_each_online_cpu(cpu) {
232 if (cpu == smp_processor_id())
233 continue;
234 while(!smp_cpu_not_running(cpu))
235 cpu_relax();
236 }
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * this function sends a 'stop' sigp to all other CPUs in the system.
241 * it goes straight through.
242 */
243void smp_send_stop(void)
244{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100245 /* Disable all interrupts/machine checks */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100246 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* write magic number to zero page (absolute 0) */
249 lowcore_ptr[smp_processor_id()]->panic_magic = __PANIC_MAGIC;
250
251 /* stop other processors. */
252 do_send_stop();
253
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100254 /* wait until other processors are stopped */
255 do_wait_for_stop();
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* store status of other processors. */
258 do_store_status();
259}
260
261/*
262 * Reboot, halt and power_off routines for SMP.
263 */
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265void machine_restart_smp(char * __unused)
266{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100267 smp_send_stop();
268 do_reipl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271void machine_halt_smp(void)
272{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100273 smp_send_stop();
274 if (MACHINE_IS_VM && strlen(vmhalt_cmd) > 0)
275 __cpcmd(vmhalt_cmd, NULL, 0, NULL);
276 signal_processor(smp_processor_id(), sigp_stop_and_store_status);
277 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280void machine_power_off_smp(void)
281{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100282 smp_send_stop();
283 if (MACHINE_IS_VM && strlen(vmpoff_cmd) > 0)
284 __cpcmd(vmpoff_cmd, NULL, 0, NULL);
285 signal_processor(smp_processor_id(), sigp_stop_and_store_status);
286 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/*
290 * This is the main routine where commands issued by other
291 * cpus are handled.
292 */
293
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100294static void do_ext_call_interrupt(__u16 code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 unsigned long bits;
297
298 /*
299 * handle bit signal external calls
300 *
301 * For the ec_schedule signal we have to do nothing. All the work
302 * is done automatically when we return from the interrupt.
303 */
304 bits = xchg(&S390_lowcore.ext_call_fast, 0);
305
306 if (test_bit(ec_call_function, &bits))
307 do_call_function();
308}
309
310/*
311 * Send an external call sigp to another cpu and return without waiting
312 * for its completion.
313 */
314static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
315{
316 /*
317 * Set signaling bit in lowcore of target cpu and kick it
318 */
319 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
Heiko Carstens99b2d8d2005-07-27 11:45:00 -0700320 while(signal_processor(cpu, sigp_emergency_signal) == sigp_busy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 udelay(10);
322}
323
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800324#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/*
326 * this function sends a 'purge tlb' signal to another CPU.
327 */
328void smp_ptlb_callback(void *info)
329{
330 local_flush_tlb();
331}
332
333void smp_ptlb_all(void)
334{
335 on_each_cpu(smp_ptlb_callback, NULL, 0, 1);
336}
337EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800338#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340/*
341 * this function sends a 'reschedule' IPI to another CPU.
342 * it goes straight through and wastes no time serializing
343 * anything. Worst case is that we lose a reschedule ...
344 */
345void smp_send_reschedule(int cpu)
346{
347 smp_ext_bitcall(cpu, ec_schedule);
348}
349
350/*
351 * parameter area for the set/clear control bit callbacks
352 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200353struct ec_creg_mask_parms {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 unsigned long orvals[16];
355 unsigned long andvals[16];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200356};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358/*
359 * callback for setting/clearing control bits
360 */
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100361static void smp_ctl_bit_callback(void *info) {
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200362 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 unsigned long cregs[16];
364 int i;
365
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200366 __ctl_store(cregs, 0, 15);
367 for (i = 0; i <= 15; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200369 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
372/*
373 * Set a bit in a control register of all cpus
374 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200375void smp_ctl_set_bit(int cr, int bit)
376{
377 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200379 memset(&parms.orvals, 0, sizeof(parms.orvals));
380 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 parms.orvals[cr] = 1 << bit;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200382 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385/*
386 * Clear a bit in a control register of all cpus
387 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200388void smp_ctl_clear_bit(int cr, int bit)
389{
390 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200392 memset(&parms.orvals, 0, sizeof(parms.orvals));
393 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 parms.andvals[cr] = ~(1L << bit);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200395 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398/*
399 * Lets check how many CPUs we have.
400 */
401
Heiko Carstens255acee2006-02-17 13:52:46 -0800402static unsigned int
403__init smp_count_cpus(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Heiko Carstens255acee2006-02-17 13:52:46 -0800405 unsigned int cpu, num_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 __u16 boot_cpu_addr;
407
408 /*
409 * cpu 0 is the boot cpu. See smp_prepare_boot_cpu.
410 */
411
412 boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
413 current_thread_info()->cpu = 0;
414 num_cpus = 1;
Heiko Carstens255acee2006-02-17 13:52:46 -0800415 for (cpu = 0; cpu <= 65535; cpu++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if ((__u16) cpu == boot_cpu_addr)
417 continue;
Heiko Carstens255acee2006-02-17 13:52:46 -0800418 __cpu_logical_map[1] = (__u16) cpu;
419 if (signal_processor(1, sigp_sense) ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 sigp_not_operational)
421 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 num_cpus++;
423 }
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 printk("Detected %d CPU's\n",(int) num_cpus);
426 printk("Boot cpu address %2X\n", boot_cpu_addr);
Heiko Carstens255acee2006-02-17 13:52:46 -0800427
428 return num_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
431/*
432 * Activate a secondary processor.
433 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434int __devinit start_secondary(void *cpuvoid)
435{
436 /* Setup the cpu */
437 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800438 preempt_disable();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100439 /* Enable TOD clock interrupts on the secondary cpu. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 init_cpu_timer();
441#ifdef CONFIG_VIRT_TIMER
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100442 /* Enable cpu timer interrupts on the secondary cpu. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 init_cpu_vtimer();
444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /* Enable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100446 pfault_init();
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /* Mark this cpu as online */
449 cpu_set(smp_processor_id(), cpu_online_map);
450 /* Switch on interrupts */
451 local_irq_enable();
452 /* Print info about this processor */
453 print_cpu_info(&S390_lowcore.cpu_data);
454 /* cpu_idle will call schedule for us */
455 cpu_idle();
456 return 0;
457}
458
459static void __init smp_create_idle(unsigned int cpu)
460{
461 struct task_struct *p;
462
463 /*
464 * don't care about the psw and regs settings since we'll never
465 * reschedule the forked task.
466 */
467 p = fork_idle(cpu);
468 if (IS_ERR(p))
469 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
470 current_set[cpu] = p;
471}
472
473/* Reserving and releasing of CPUs */
474
475static DEFINE_SPINLOCK(smp_reserve_lock);
476static int smp_cpu_reserved[NR_CPUS];
477
478int
479smp_get_cpu(cpumask_t cpu_mask)
480{
481 unsigned long flags;
482 int cpu;
483
484 spin_lock_irqsave(&smp_reserve_lock, flags);
485 /* Try to find an already reserved cpu. */
486 for_each_cpu_mask(cpu, cpu_mask) {
487 if (smp_cpu_reserved[cpu] != 0) {
488 smp_cpu_reserved[cpu]++;
489 /* Found one. */
490 goto out;
491 }
492 }
493 /* Reserve a new cpu from cpu_mask. */
494 for_each_cpu_mask(cpu, cpu_mask) {
495 if (cpu_online(cpu)) {
496 smp_cpu_reserved[cpu]++;
497 goto out;
498 }
499 }
500 cpu = -ENODEV;
501out:
502 spin_unlock_irqrestore(&smp_reserve_lock, flags);
503 return cpu;
504}
505
506void
507smp_put_cpu(int cpu)
508{
509 unsigned long flags;
510
511 spin_lock_irqsave(&smp_reserve_lock, flags);
512 smp_cpu_reserved[cpu]--;
513 spin_unlock_irqrestore(&smp_reserve_lock, flags);
514}
515
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100516static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517cpu_stopped(int cpu)
518{
519 __u32 status;
520
521 /* Check for stopped state */
522 if (signal_processor_ps(&status, 0, cpu, sigp_sense) == sigp_status_stored) {
523 if (status & 0x40)
524 return 1;
525 }
526 return 0;
527}
528
529/* Upping and downing of CPUs */
530
531int
532__cpu_up(unsigned int cpu)
533{
534 struct task_struct *idle;
535 struct _lowcore *cpu_lowcore;
536 struct stack_frame *sf;
537 sigp_ccode ccode;
538 int curr_cpu;
539
540 for (curr_cpu = 0; curr_cpu <= 65535; curr_cpu++) {
541 __cpu_logical_map[cpu] = (__u16) curr_cpu;
542 if (cpu_stopped(cpu))
543 break;
544 }
545
546 if (!cpu_stopped(cpu))
547 return -ENODEV;
548
549 ccode = signal_processor_p((__u32)(unsigned long)(lowcore_ptr[cpu]),
550 cpu, sigp_set_prefix);
551 if (ccode){
552 printk("sigp_set_prefix failed for cpu %d "
553 "with condition code %d\n",
554 (int) cpu, (int) ccode);
555 return -EIO;
556 }
557
558 idle = current_set[cpu];
559 cpu_lowcore = lowcore_ptr[cpu];
560 cpu_lowcore->kernel_stack = (unsigned long)
Al Viro30af7122006-01-12 01:05:50 -0800561 task_stack_page(idle) + (THREAD_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
563 - sizeof(struct pt_regs)
564 - sizeof(struct stack_frame));
565 memset(sf, 0, sizeof(struct stack_frame));
566 sf->gprs[9] = (unsigned long) sf;
567 cpu_lowcore->save_area[15] = (unsigned long) sf;
568 __ctl_store(cpu_lowcore->cregs_save_area[0], 0, 15);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200569 asm volatile(
570 " stam 0,15,0(%0)"
571 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
573 cpu_lowcore->current_task = (unsigned long) idle;
574 cpu_lowcore->cpu_data.cpu_nr = cpu;
575 eieio();
Michael Ryan699ff132006-03-24 03:15:17 -0800576
577 while (signal_processor(cpu,sigp_restart) == sigp_busy)
578 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 while (!cpu_online(cpu))
581 cpu_relax();
582 return 0;
583}
584
Heiko Carstens255acee2006-02-17 13:52:46 -0800585static unsigned int __initdata additional_cpus;
Heiko Carstens37a33022006-02-17 13:52:47 -0800586static unsigned int __initdata possible_cpus;
Heiko Carstens255acee2006-02-17 13:52:46 -0800587
588void __init smp_setup_cpu_possible_map(void)
589{
Heiko Carstens54330452006-02-17 13:52:48 -0800590 unsigned int phy_cpus, pos_cpus, cpu;
Heiko Carstens255acee2006-02-17 13:52:46 -0800591
Heiko Carstens54330452006-02-17 13:52:48 -0800592 phy_cpus = smp_count_cpus();
593 pos_cpus = min(phy_cpus + additional_cpus, (unsigned int) NR_CPUS);
Heiko Carstens255acee2006-02-17 13:52:46 -0800594
Heiko Carstens37a33022006-02-17 13:52:47 -0800595 if (possible_cpus)
Heiko Carstens54330452006-02-17 13:52:48 -0800596 pos_cpus = min(possible_cpus, (unsigned int) NR_CPUS);
Heiko Carstens255acee2006-02-17 13:52:46 -0800597
Heiko Carstens54330452006-02-17 13:52:48 -0800598 for (cpu = 0; cpu < pos_cpus; cpu++)
Heiko Carstens255acee2006-02-17 13:52:46 -0800599 cpu_set(cpu, cpu_possible_map);
600
Heiko Carstens54330452006-02-17 13:52:48 -0800601 phy_cpus = min(phy_cpus, pos_cpus);
602
603 for (cpu = 0; cpu < phy_cpus; cpu++)
604 cpu_set(cpu, cpu_present_map);
Heiko Carstens255acee2006-02-17 13:52:46 -0800605}
606
607#ifdef CONFIG_HOTPLUG_CPU
608
609static int __init setup_additional_cpus(char *s)
610{
611 additional_cpus = simple_strtoul(s, NULL, 0);
612 return 0;
613}
614early_param("additional_cpus", setup_additional_cpus);
615
Heiko Carstens37a33022006-02-17 13:52:47 -0800616static int __init setup_possible_cpus(char *s)
617{
618 possible_cpus = simple_strtoul(s, NULL, 0);
619 return 0;
620}
621early_param("possible_cpus", setup_possible_cpus);
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623int
624__cpu_disable(void)
625{
626 unsigned long flags;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200627 struct ec_creg_mask_parms cr_parms;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700628 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 spin_lock_irqsave(&smp_reserve_lock, flags);
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700631 if (smp_cpu_reserved[cpu] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 spin_unlock_irqrestore(&smp_reserve_lock, flags);
633 return -EBUSY;
634 }
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700635 cpu_clear(cpu, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* Disable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100638 pfault_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200640 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
641 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200643 /* disable all external interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 cr_parms.orvals[0] = 0;
645 cr_parms.andvals[0] = ~(1<<15 | 1<<14 | 1<<13 | 1<<12 |
646 1<<11 | 1<<10 | 1<< 6 | 1<< 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /* disable all I/O interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 cr_parms.orvals[6] = 0;
649 cr_parms.andvals[6] = ~(1<<31 | 1<<30 | 1<<29 | 1<<28 |
650 1<<27 | 1<<26 | 1<<25 | 1<<24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* disable most machine checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 cr_parms.orvals[14] = 0;
653 cr_parms.andvals[14] = ~(1<<28 | 1<<27 | 1<<26 | 1<<25 | 1<<24);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 smp_ctl_bit_callback(&cr_parms);
656
657 spin_unlock_irqrestore(&smp_reserve_lock, flags);
658 return 0;
659}
660
661void
662__cpu_die(unsigned int cpu)
663{
664 /* Wait until target cpu is down */
665 while (!smp_cpu_not_running(cpu))
666 cpu_relax();
667 printk("Processor %d spun down\n", cpu);
668}
669
670void
671cpu_die(void)
672{
673 idle_task_exit();
674 signal_processor(smp_processor_id(), sigp_stop);
675 BUG();
676 for(;;);
677}
678
Heiko Carstens255acee2006-02-17 13:52:46 -0800679#endif /* CONFIG_HOTPLUG_CPU */
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/*
682 * Cycle through the processors and setup structures.
683 */
684
685void __init smp_prepare_cpus(unsigned int max_cpus)
686{
687 unsigned long stack;
688 unsigned int cpu;
689 int i;
690
Heiko Carstens99b2d8d2005-07-27 11:45:00 -0700691 /* request the 0x1201 emergency signal external interrupt */
692 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
693 panic("Couldn't request external interrupt 0x1201");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 memset(lowcore_ptr,0,sizeof(lowcore_ptr));
695 /*
696 * Initialize prefix pages and stacks for all possible cpus
697 */
698 print_cpu_info(&S390_lowcore.cpu_data);
699
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800700 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 lowcore_ptr[i] = (struct _lowcore *)
702 __get_free_pages(GFP_KERNEL|GFP_DMA,
703 sizeof(void*) == 8 ? 1 : 0);
704 stack = __get_free_pages(GFP_KERNEL,ASYNC_ORDER);
705 if (lowcore_ptr[i] == NULL || stack == 0ULL)
706 panic("smp_boot_cpus failed to allocate memory\n");
707
708 *(lowcore_ptr[i]) = S390_lowcore;
709 lowcore_ptr[i]->async_stack = stack + (ASYNC_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 stack = __get_free_pages(GFP_KERNEL,0);
711 if (stack == 0ULL)
712 panic("smp_boot_cpus failed to allocate memory\n");
713 lowcore_ptr[i]->panic_stack = stack + (PAGE_SIZE);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800714#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700715 if (MACHINE_HAS_IEEE) {
716 lowcore_ptr[i]->extended_save_area_addr =
717 (__u32) __get_free_pages(GFP_KERNEL,0);
718 if (lowcore_ptr[i]->extended_save_area_addr == 0)
719 panic("smp_boot_cpus failed to "
720 "allocate memory\n");
721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722#endif
723 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800724#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700725 if (MACHINE_HAS_IEEE)
726 ctl_set_bit(14, 29); /* enable extended save area */
727#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 set_prefix((u32)(unsigned long) lowcore_ptr[smp_processor_id()]);
729
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800730 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (cpu != smp_processor_id())
732 smp_create_idle(cpu);
733}
734
735void __devinit smp_prepare_boot_cpu(void)
736{
737 BUG_ON(smp_processor_id() != 0);
738
739 cpu_set(0, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 S390_lowcore.percpu_offset = __per_cpu_offset[0];
741 current_set[0] = current;
742}
743
744void smp_cpus_done(unsigned int max_cpus)
745{
Heiko Carstens54330452006-02-17 13:52:48 -0800746 cpu_present_map = cpu_possible_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749/*
750 * the frequency of the profiling timer can be changed
751 * by writing a multiplier value into /proc/profile.
752 *
753 * usually you want to run this on all CPUs ;)
754 */
755int setup_profiling_timer(unsigned int multiplier)
756{
757 return 0;
758}
759
760static DEFINE_PER_CPU(struct cpu, cpu_devices);
761
762static int __init topology_init(void)
763{
764 int cpu;
765 int ret;
766
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800767 for_each_possible_cpu(cpu) {
Heiko Carstens6721f772007-01-09 10:18:44 +0100768 struct cpu *c = &per_cpu(cpu_devices, cpu);
769
770 c->hotpluggable = 1;
771 ret = register_cpu(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (ret)
773 printk(KERN_WARNING "topology_init: register_cpu %d "
774 "failed (%d)\n", cpu, ret);
775 }
776 return 0;
777}
778
779subsys_initcall(topology_init);
780
Heiko Carstens255acee2006-02-17 13:52:46 -0800781EXPORT_SYMBOL(cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782EXPORT_SYMBOL(cpu_possible_map);
783EXPORT_SYMBOL(lowcore_ptr);
784EXPORT_SYMBOL(smp_ctl_set_bit);
785EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786EXPORT_SYMBOL(smp_get_cpu);
787EXPORT_SYMBOL(smp_put_cpu);