blob: 182c085ae4ddd94e11d462d9b918152669bb6f1d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/kernel/smp.c
3 *
Heiko Carstens39ce0102007-04-27 16:02:00 +02004 * Copyright IBM Corp. 1999,2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
Heiko Carstens39ce0102007-04-27 16:02:00 +02006 * Martin Schwidefsky (schwidefsky@de.ibm.com)
7 * Heiko Carstens (heiko.carstens@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Heiko Carstens39ce0102007-04-27 16:02:00 +02009 * based on other smp stuff by
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * (c) 1995 Alan Cox, CymruNET Ltd <alan@cymru.net>
11 * (c) 1998 Ingo Molnar
12 *
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/delay.h>
29#include <linux/cache.h>
30#include <linux/interrupt.h>
31#include <linux/cpu.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010032#include <linux/timex.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020033#include <linux/bootmem.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>
Michael Holzheu411ed322007-04-27 16:01:49 +020043#include <asm/lowcore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
46 * An array with a pointer the lowcore of every CPU.
47 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048struct _lowcore *lowcore_ptr[NR_CPUS];
Heiko Carstens39ce0102007-04-27 16:02:00 +020049EXPORT_SYMBOL(lowcore_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Heiko Carstens255acee2006-02-17 13:52:46 -080051cpumask_t cpu_online_map = CPU_MASK_NONE;
Heiko Carstens39ce0102007-04-27 16:02:00 +020052EXPORT_SYMBOL(cpu_online_map);
53
Heiko Carstens255acee2006-02-17 13:52:46 -080054cpumask_t cpu_possible_map = CPU_MASK_NONE;
Heiko Carstens39ce0102007-04-27 16:02:00 +020055EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57static struct task_struct *current_set[NR_CPUS];
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void smp_ext_bitcall(int, ec_bit_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/*
Jan Glauber63db6e82007-02-21 10:55:06 +010062 * Structure and data for __smp_call_function_map(). This is designed to
63 * minimise static memory requirements. It also looks cleaner.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 */
65static DEFINE_SPINLOCK(call_lock);
66
67struct call_data_struct {
68 void (*func) (void *info);
69 void *info;
Jan Glauber63db6e82007-02-21 10:55:06 +010070 cpumask_t started;
71 cpumask_t finished;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 int wait;
73};
74
Heiko Carstens39ce0102007-04-27 16:02:00 +020075static struct call_data_struct *call_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 * 'Call function' interrupt callback
79 */
80static void do_call_function(void)
81{
82 void (*func) (void *info) = call_data->func;
83 void *info = call_data->info;
84 int wait = call_data->wait;
85
Jan Glauber63db6e82007-02-21 10:55:06 +010086 cpu_set(smp_processor_id(), call_data->started);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 (*func)(info);
88 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +010089 cpu_set(smp_processor_id(), call_data->finished);;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Jan Glauber63db6e82007-02-21 10:55:06 +010092static void __smp_call_function_map(void (*func) (void *info), void *info,
93 int nonatomic, int wait, cpumask_t map)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 struct call_data_struct data;
Jan Glauber63db6e82007-02-21 10:55:06 +010096 int cpu, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Jan Glauber63db6e82007-02-21 10:55:06 +010098 /*
Heiko Carstens25864162007-03-05 23:35:41 +010099 * Can deadlock when interrupts are disabled or if in wrong context.
Jan Glauber63db6e82007-02-21 10:55:06 +0100100 */
Heiko Carstens25864162007-03-05 23:35:41 +0100101 WARN_ON(irqs_disabled() || in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Jan Glauber63db6e82007-02-21 10:55:06 +0100103 /*
104 * Check for local function call. We have to have the same call order
105 * as in on_each_cpu() because of machine_restart_smp().
106 */
107 if (cpu_isset(smp_processor_id(), map)) {
108 local = 1;
109 cpu_clear(smp_processor_id(), map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111
Jan Glauber63db6e82007-02-21 10:55:06 +0100112 cpus_and(map, map, cpu_online_map);
113 if (cpus_empty(map))
114 goto out;
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 data.func = func;
117 data.info = info;
Jan Glauber63db6e82007-02-21 10:55:06 +0100118 data.started = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 data.wait = wait;
120 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100121 data.finished = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 spin_lock_bh(&call_lock);
124 call_data = &data;
Jan Glauber63db6e82007-02-21 10:55:06 +0100125
126 for_each_cpu_mask(cpu, map)
127 smp_ext_bitcall(cpu, ec_call_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* Wait for response */
Jan Glauber63db6e82007-02-21 10:55:06 +0100130 while (!cpus_equal(map, data.started))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 cpu_relax();
132
133 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100134 while (!cpus_equal(map, data.finished))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 cpu_relax();
136
137 spin_unlock_bh(&call_lock);
Jan Glauber63db6e82007-02-21 10:55:06 +0100138
139out:
140 local_irq_disable();
141 if (local)
142 func(info);
143 local_irq_enable();
144}
145
146/*
147 * smp_call_function:
148 * @func: the function to run; this must be fast and non-blocking
149 * @info: an arbitrary pointer to pass to the function
150 * @nonatomic: unused
151 * @wait: if true, wait (atomically) until function has completed on other CPUs
152 *
153 * Run a function on all other CPUs.
154 *
Heiko Carstens39ce0102007-04-27 16:02:00 +0200155 * You must not call this function with disabled interrupts, from a
156 * hardware interrupt handler or from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100157 */
158int smp_call_function(void (*func) (void *info), void *info, int nonatomic,
159 int wait)
160{
161 cpumask_t map;
162
Heiko Carstens25864162007-03-05 23:35:41 +0100163 preempt_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100164 map = cpu_online_map;
165 cpu_clear(smp_processor_id(), map);
166 __smp_call_function_map(func, info, nonatomic, wait, map);
Heiko Carstens25864162007-03-05 23:35:41 +0100167 preempt_enable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100168 return 0;
169}
170EXPORT_SYMBOL(smp_call_function);
171
172/*
173 * smp_call_function_on:
174 * @func: the function to run; this must be fast and non-blocking
175 * @info: an arbitrary pointer to pass to the function
176 * @nonatomic: unused
177 * @wait: if true, wait (atomically) until function has completed on other CPUs
178 * @cpu: the CPU where func should run
179 *
180 * Run a function on one processor.
181 *
Heiko Carstens39ce0102007-04-27 16:02:00 +0200182 * You must not call this function with disabled interrupts, from a
183 * hardware interrupt handler or from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100184 */
185int smp_call_function_on(void (*func) (void *info), void *info, int nonatomic,
Heiko Carstens39ce0102007-04-27 16:02:00 +0200186 int wait, int cpu)
Jan Glauber63db6e82007-02-21 10:55:06 +0100187{
188 cpumask_t map = CPU_MASK_NONE;
189
Heiko Carstens25864162007-03-05 23:35:41 +0100190 preempt_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100191 cpu_set(cpu, map);
192 __smp_call_function_map(func, info, nonatomic, wait, map);
Heiko Carstens25864162007-03-05 23:35:41 +0100193 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return 0;
195}
196EXPORT_SYMBOL(smp_call_function_on);
197
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100198static void do_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200200 int cpu, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Heiko Carstens39ce0102007-04-27 16:02:00 +0200202 /* stop all processors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 for_each_online_cpu(cpu) {
204 if (cpu == smp_processor_id())
205 continue;
206 do {
207 rc = signal_processor(cpu, sigp_stop);
208 } while (rc == sigp_busy);
209 }
210}
211
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100212static void do_store_status(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200214 int cpu, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Heiko Carstens39ce0102007-04-27 16:02:00 +0200216 /* store status of all processors in their lowcores (real 0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 for_each_online_cpu(cpu) {
218 if (cpu == smp_processor_id())
219 continue;
220 do {
221 rc = signal_processor_p(
222 (__u32)(unsigned long) lowcore_ptr[cpu], cpu,
223 sigp_store_status_at_address);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200224 } while (rc == sigp_busy);
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100228static void do_wait_for_stop(void)
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100229{
230 int cpu;
231
232 /* Wait for all other cpus to enter stopped state */
233 for_each_online_cpu(cpu) {
234 if (cpu == smp_processor_id())
235 continue;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200236 while (!smp_cpu_not_running(cpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100237 cpu_relax();
238 }
239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*
242 * this function sends a 'stop' sigp to all other CPUs in the system.
243 * it goes straight through.
244 */
245void smp_send_stop(void)
246{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100247 /* Disable all interrupts/machine checks */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100248 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100249
Heiko Carstens39ce0102007-04-27 16:02:00 +0200250 /* write magic number to zero page (absolute 0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 lowcore_ptr[smp_processor_id()]->panic_magic = __PANIC_MAGIC;
252
253 /* stop other processors. */
254 do_send_stop();
255
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100256 /* wait until other processors are stopped */
257 do_wait_for_stop();
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* store status of other processors. */
260 do_store_status();
261}
262
263/*
264 * Reboot, halt and power_off routines for SMP.
265 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200266void machine_restart_smp(char *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100268 smp_send_stop();
269 do_reipl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272void machine_halt_smp(void)
273{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100274 smp_send_stop();
275 if (MACHINE_IS_VM && strlen(vmhalt_cmd) > 0)
276 __cpcmd(vmhalt_cmd, NULL, 0, NULL);
277 signal_processor(smp_processor_id(), sigp_stop_and_store_status);
278 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281void machine_power_off_smp(void)
282{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100283 smp_send_stop();
284 if (MACHINE_IS_VM && strlen(vmpoff_cmd) > 0)
285 __cpcmd(vmpoff_cmd, NULL, 0, NULL);
286 signal_processor(smp_processor_id(), sigp_stop_and_store_status);
287 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290/*
291 * This is the main routine where commands issued by other
292 * cpus are handled.
293 */
294
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100295static void do_ext_call_interrupt(__u16 code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200297 unsigned long bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Heiko Carstens39ce0102007-04-27 16:02:00 +0200299 /*
300 * handle bit signal external calls
301 *
302 * For the ec_schedule signal we have to do nothing. All the work
303 * is done automatically when we return from the interrupt.
304 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 bits = xchg(&S390_lowcore.ext_call_fast, 0);
306
Heiko Carstens39ce0102007-04-27 16:02:00 +0200307 if (test_bit(ec_call_function, &bits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 do_call_function();
309}
310
311/*
312 * Send an external call sigp to another cpu and return without waiting
313 * for its completion.
314 */
315static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
316{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200317 /*
318 * Set signaling bit in lowcore of target cpu and kick it
319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200321 while (signal_processor(cpu, sigp_emergency_signal) == sigp_busy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 udelay(10);
323}
324
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800325#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/*
327 * this function sends a 'purge tlb' signal to another CPU.
328 */
329void smp_ptlb_callback(void *info)
330{
331 local_flush_tlb();
332}
333
334void smp_ptlb_all(void)
335{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200336 on_each_cpu(smp_ptlb_callback, NULL, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800339#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341/*
342 * this function sends a 'reschedule' IPI to another CPU.
343 * it goes straight through and wastes no time serializing
344 * anything. Worst case is that we lose a reschedule ...
345 */
346void smp_send_reschedule(int cpu)
347{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200348 smp_ext_bitcall(cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351/*
352 * parameter area for the set/clear control bit callbacks
353 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200354struct ec_creg_mask_parms {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 unsigned long orvals[16];
356 unsigned long andvals[16];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200357};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359/*
360 * callback for setting/clearing control bits
361 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200362static void smp_ctl_bit_callback(void *info)
363{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200364 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 unsigned long cregs[16];
366 int i;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200367
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200368 __ctl_store(cregs, 0, 15);
369 for (i = 0; i <= 15; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200371 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374/*
375 * Set a bit in a control register of all cpus
376 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200377void smp_ctl_set_bit(int cr, int bit)
378{
379 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200381 memset(&parms.orvals, 0, sizeof(parms.orvals));
382 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 parms.orvals[cr] = 1 << bit;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200384 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200386EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388/*
389 * Clear a bit in a control register of all cpus
390 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200391void smp_ctl_clear_bit(int cr, int bit)
392{
393 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200395 memset(&parms.orvals, 0, sizeof(parms.orvals));
396 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 parms.andvals[cr] = ~(1L << bit);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200398 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200400EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Michael Holzheu411ed322007-04-27 16:01:49 +0200402#if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_ZFCPDUMP_MODULE)
403
404/*
405 * zfcpdump_prefix_array holds prefix registers for the following scenario:
406 * 64 bit zfcpdump kernel and 31 bit kernel which is to be dumped. We have to
407 * save its prefix registers, since they get lost, when switching from 31 bit
408 * to 64 bit.
409 */
410unsigned int zfcpdump_prefix_array[NR_CPUS + 1] \
411 __attribute__((__section__(".data")));
412
Heiko Carstens285f6722007-07-10 11:24:13 +0200413static void __init smp_get_save_area(unsigned int cpu, unsigned int phy_cpu)
Michael Holzheu411ed322007-04-27 16:01:49 +0200414{
Michael Holzheu411ed322007-04-27 16:01:49 +0200415 if (ipl_info.type != IPL_TYPE_FCP_DUMP)
416 return;
Heiko Carstens285f6722007-07-10 11:24:13 +0200417 if (cpu >= NR_CPUS) {
418 printk(KERN_WARNING "Registers for cpu %i not saved since dump "
419 "kernel was compiled with NR_CPUS=%i\n", cpu, NR_CPUS);
420 return;
Michael Holzheu411ed322007-04-27 16:01:49 +0200421 }
Heiko Carstens285f6722007-07-10 11:24:13 +0200422 zfcpdump_save_areas[cpu] = alloc_bootmem(sizeof(union save_area));
423 __cpu_logical_map[1] = (__u16) phy_cpu;
424 while (signal_processor(1, sigp_stop_and_store_status) == sigp_busy)
425 cpu_relax();
426 memcpy(zfcpdump_save_areas[cpu],
427 (void *)(unsigned long) store_prefix() + SAVE_AREA_BASE,
428 SAVE_AREA_SIZE);
429#ifdef CONFIG_64BIT
430 /* copy original prefix register */
431 zfcpdump_save_areas[cpu]->s390x.pref_reg = zfcpdump_prefix_array[cpu];
432#endif
Michael Holzheu411ed322007-04-27 16:01:49 +0200433}
434
435union save_area *zfcpdump_save_areas[NR_CPUS + 1];
436EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
437
438#else
Heiko Carstens285f6722007-07-10 11:24:13 +0200439
440static inline void smp_get_save_area(unsigned int cpu, unsigned int phy_cpu) { }
441
442#endif /* CONFIG_ZFCPDUMP || CONFIG_ZFCPDUMP_MODULE */
Michael Holzheu411ed322007-04-27 16:01:49 +0200443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/*
445 * Lets check how many CPUs we have.
446 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200447static unsigned int __init smp_count_cpus(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Heiko Carstens255acee2006-02-17 13:52:46 -0800449 unsigned int cpu, num_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 __u16 boot_cpu_addr;
451
452 /*
453 * cpu 0 is the boot cpu. See smp_prepare_boot_cpu.
454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
456 current_thread_info()->cpu = 0;
457 num_cpus = 1;
Heiko Carstens255acee2006-02-17 13:52:46 -0800458 for (cpu = 0; cpu <= 65535; cpu++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if ((__u16) cpu == boot_cpu_addr)
460 continue;
Heiko Carstens255acee2006-02-17 13:52:46 -0800461 __cpu_logical_map[1] = (__u16) cpu;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200462 if (signal_processor(1, sigp_sense) == sigp_not_operational)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 continue;
Heiko Carstens285f6722007-07-10 11:24:13 +0200464 smp_get_save_area(num_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 num_cpus++;
466 }
Heiko Carstens39ce0102007-04-27 16:02:00 +0200467 printk("Detected %d CPU's\n", (int) num_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 printk("Boot cpu address %2X\n", boot_cpu_addr);
Heiko Carstens255acee2006-02-17 13:52:46 -0800469 return num_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200473 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200475int __cpuinit start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200477 /* Setup the cpu */
478 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800479 preempt_disable();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100480 /* Enable TOD clock interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200481 init_cpu_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#ifdef CONFIG_VIRT_TIMER
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100483 /* Enable cpu timer interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200484 init_cpu_vtimer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /* Enable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100487 pfault_init();
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* Mark this cpu as online */
490 cpu_set(smp_processor_id(), cpu_online_map);
491 /* Switch on interrupts */
492 local_irq_enable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200493 /* Print info about this processor */
494 print_cpu_info(&S390_lowcore.cpu_data);
495 /* cpu_idle will call schedule for us */
496 cpu_idle();
497 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500static void __init smp_create_idle(unsigned int cpu)
501{
502 struct task_struct *p;
503
504 /*
505 * don't care about the psw and regs settings since we'll never
506 * reschedule the forked task.
507 */
508 p = fork_idle(cpu);
509 if (IS_ERR(p))
510 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
511 current_set[cpu] = p;
512}
513
Heiko Carstens39ce0102007-04-27 16:02:00 +0200514static int cpu_stopped(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 __u32 status;
517
518 /* Check for stopped state */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200519 if (signal_processor_ps(&status, 0, cpu, sigp_sense) ==
520 sigp_status_stored) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (status & 0x40)
522 return 1;
523 }
524 return 0;
525}
526
527/* Upping and downing of CPUs */
528
Heiko Carstens39ce0102007-04-27 16:02:00 +0200529int __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct task_struct *idle;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200532 struct _lowcore *cpu_lowcore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 struct stack_frame *sf;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200534 sigp_ccode ccode;
535 int curr_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 for (curr_cpu = 0; curr_cpu <= 65535; curr_cpu++) {
538 __cpu_logical_map[cpu] = (__u16) curr_cpu;
539 if (cpu_stopped(cpu))
540 break;
541 }
542
543 if (!cpu_stopped(cpu))
544 return -ENODEV;
545
546 ccode = signal_processor_p((__u32)(unsigned long)(lowcore_ptr[cpu]),
547 cpu, sigp_set_prefix);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200548 if (ccode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 printk("sigp_set_prefix failed for cpu %d "
550 "with condition code %d\n",
551 (int) cpu, (int) ccode);
552 return -EIO;
553 }
554
555 idle = current_set[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200556 cpu_lowcore = lowcore_ptr[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 cpu_lowcore->kernel_stack = (unsigned long)
Heiko Carstens39ce0102007-04-27 16:02:00 +0200558 task_stack_page(idle) + THREAD_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
560 - sizeof(struct pt_regs)
561 - sizeof(struct stack_frame));
562 memset(sf, 0, sizeof(struct stack_frame));
563 sf->gprs[9] = (unsigned long) sf;
564 cpu_lowcore->save_area[15] = (unsigned long) sf;
565 __ctl_store(cpu_lowcore->cregs_save_area[0], 0, 15);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200566 asm volatile(
567 " stam 0,15,0(%0)"
568 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200570 cpu_lowcore->current_task = (unsigned long) idle;
571 cpu_lowcore->cpu_data.cpu_nr = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 eieio();
Michael Ryan699ff132006-03-24 03:15:17 -0800573
Heiko Carstens39ce0102007-04-27 16:02:00 +0200574 while (signal_processor(cpu, sigp_restart) == sigp_busy)
Michael Ryan699ff132006-03-24 03:15:17 -0800575 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 while (!cpu_online(cpu))
578 cpu_relax();
579 return 0;
580}
581
Heiko Carstens255acee2006-02-17 13:52:46 -0800582static unsigned int __initdata additional_cpus;
Heiko Carstens37a33022006-02-17 13:52:47 -0800583static unsigned int __initdata possible_cpus;
Heiko Carstens255acee2006-02-17 13:52:46 -0800584
585void __init smp_setup_cpu_possible_map(void)
586{
Heiko Carstens54330452006-02-17 13:52:48 -0800587 unsigned int phy_cpus, pos_cpus, cpu;
Heiko Carstens255acee2006-02-17 13:52:46 -0800588
Heiko Carstens54330452006-02-17 13:52:48 -0800589 phy_cpus = smp_count_cpus();
590 pos_cpus = min(phy_cpus + additional_cpus, (unsigned int) NR_CPUS);
Heiko Carstens255acee2006-02-17 13:52:46 -0800591
Heiko Carstens37a33022006-02-17 13:52:47 -0800592 if (possible_cpus)
Heiko Carstens54330452006-02-17 13:52:48 -0800593 pos_cpus = min(possible_cpus, (unsigned int) NR_CPUS);
Heiko Carstens255acee2006-02-17 13:52:46 -0800594
Heiko Carstens54330452006-02-17 13:52:48 -0800595 for (cpu = 0; cpu < pos_cpus; cpu++)
Heiko Carstens255acee2006-02-17 13:52:46 -0800596 cpu_set(cpu, cpu_possible_map);
597
Heiko Carstens54330452006-02-17 13:52:48 -0800598 phy_cpus = min(phy_cpus, pos_cpus);
599
600 for (cpu = 0; cpu < phy_cpus; cpu++)
601 cpu_set(cpu, cpu_present_map);
Heiko Carstens255acee2006-02-17 13:52:46 -0800602}
603
604#ifdef CONFIG_HOTPLUG_CPU
605
606static int __init setup_additional_cpus(char *s)
607{
608 additional_cpus = simple_strtoul(s, NULL, 0);
609 return 0;
610}
611early_param("additional_cpus", setup_additional_cpus);
612
Heiko Carstens37a33022006-02-17 13:52:47 -0800613static int __init setup_possible_cpus(char *s)
614{
615 possible_cpus = simple_strtoul(s, NULL, 0);
616 return 0;
617}
618early_param("possible_cpus", setup_possible_cpus);
619
Heiko Carstens39ce0102007-04-27 16:02:00 +0200620int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200622 struct ec_creg_mask_parms cr_parms;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700623 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700625 cpu_clear(cpu, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* Disable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100628 pfault_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200630 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
631 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200633 /* disable all external interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 cr_parms.orvals[0] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200635 cr_parms.andvals[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 |
636 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* disable all I/O interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 cr_parms.orvals[6] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200639 cr_parms.andvals[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 |
640 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* disable most machine checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 cr_parms.orvals[14] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200643 cr_parms.andvals[14] = ~(1 << 28 | 1 << 27 | 1 << 26 |
644 1 << 25 | 1 << 24);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 smp_ctl_bit_callback(&cr_parms);
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return 0;
649}
650
Heiko Carstens39ce0102007-04-27 16:02:00 +0200651void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 /* Wait until target cpu is down */
654 while (!smp_cpu_not_running(cpu))
655 cpu_relax();
656 printk("Processor %d spun down\n", cpu);
657}
658
Heiko Carstens39ce0102007-04-27 16:02:00 +0200659void cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 idle_task_exit();
662 signal_processor(smp_processor_id(), sigp_stop);
663 BUG();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200664 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Heiko Carstens255acee2006-02-17 13:52:46 -0800667#endif /* CONFIG_HOTPLUG_CPU */
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669/*
670 * Cycle through the processors and setup structures.
671 */
672
673void __init smp_prepare_cpus(unsigned int max_cpus)
674{
675 unsigned long stack;
676 unsigned int cpu;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200677 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Heiko Carstens39ce0102007-04-27 16:02:00 +0200679 /* request the 0x1201 emergency signal external interrupt */
680 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
681 panic("Couldn't request external interrupt 0x1201");
682 memset(lowcore_ptr, 0, sizeof(lowcore_ptr));
683 /*
684 * Initialize prefix pages and stacks for all possible cpus
685 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 print_cpu_info(&S390_lowcore.cpu_data);
687
Heiko Carstens39ce0102007-04-27 16:02:00 +0200688 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 lowcore_ptr[i] = (struct _lowcore *)
Heiko Carstens39ce0102007-04-27 16:02:00 +0200690 __get_free_pages(GFP_KERNEL | GFP_DMA,
691 sizeof(void*) == 8 ? 1 : 0);
692 stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
693 if (!lowcore_ptr[i] || !stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 panic("smp_boot_cpus failed to allocate memory\n");
695
696 *(lowcore_ptr[i]) = S390_lowcore;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200697 lowcore_ptr[i]->async_stack = stack + ASYNC_SIZE;
698 stack = __get_free_pages(GFP_KERNEL, 0);
699 if (!stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 panic("smp_boot_cpus failed to allocate memory\n");
Heiko Carstens39ce0102007-04-27 16:02:00 +0200701 lowcore_ptr[i]->panic_stack = stack + PAGE_SIZE;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800702#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700703 if (MACHINE_HAS_IEEE) {
704 lowcore_ptr[i]->extended_save_area_addr =
Heiko Carstens39ce0102007-04-27 16:02:00 +0200705 (__u32) __get_free_pages(GFP_KERNEL, 0);
706 if (!lowcore_ptr[i]->extended_save_area_addr)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700707 panic("smp_boot_cpus failed to "
708 "allocate memory\n");
709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710#endif
711 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800712#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700713 if (MACHINE_HAS_IEEE)
714 ctl_set_bit(14, 29); /* enable extended save area */
715#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 set_prefix((u32)(unsigned long) lowcore_ptr[smp_processor_id()]);
717
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800718 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (cpu != smp_processor_id())
720 smp_create_idle(cpu);
721}
722
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200723void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 BUG_ON(smp_processor_id() != 0);
726
727 cpu_set(0, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 S390_lowcore.percpu_offset = __per_cpu_offset[0];
729 current_set[0] = current;
730}
731
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200732void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Heiko Carstens54330452006-02-17 13:52:48 -0800734 cpu_present_map = cpu_possible_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
737/*
738 * the frequency of the profiling timer can be changed
739 * by writing a multiplier value into /proc/profile.
740 *
741 * usually you want to run this on all CPUs ;)
742 */
743int setup_profiling_timer(unsigned int multiplier)
744{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748static DEFINE_PER_CPU(struct cpu, cpu_devices);
749
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200750static ssize_t show_capability(struct sys_device *dev, char *buf)
751{
752 unsigned int capability;
753 int rc;
754
755 rc = get_cpu_capability(&capability);
756 if (rc)
757 return rc;
758 return sprintf(buf, "%u\n", capability);
759}
760static SYSDEV_ATTR(capability, 0444, show_capability, NULL);
761
762static int __cpuinit smp_cpu_notify(struct notifier_block *self,
763 unsigned long action, void *hcpu)
764{
765 unsigned int cpu = (unsigned int)(long)hcpu;
766 struct cpu *c = &per_cpu(cpu_devices, cpu);
767 struct sys_device *s = &c->sysdev;
768
769 switch (action) {
770 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700771 case CPU_ONLINE_FROZEN:
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200772 if (sysdev_create_file(s, &attr_capability))
773 return NOTIFY_BAD;
774 break;
775 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700776 case CPU_DEAD_FROZEN:
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200777 sysdev_remove_file(s, &attr_capability);
778 break;
779 }
780 return NOTIFY_OK;
781}
782
783static struct notifier_block __cpuinitdata smp_cpu_nb = {
Heiko Carstens39ce0102007-04-27 16:02:00 +0200784 .notifier_call = smp_cpu_notify,
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200785};
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787static int __init topology_init(void)
788{
789 int cpu;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200790
791 register_cpu_notifier(&smp_cpu_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800793 for_each_possible_cpu(cpu) {
Heiko Carstens6721f772007-01-09 10:18:44 +0100794 struct cpu *c = &per_cpu(cpu_devices, cpu);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200795 struct sys_device *s = &c->sysdev;
Heiko Carstens6721f772007-01-09 10:18:44 +0100796
797 c->hotpluggable = 1;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200798 register_cpu(c, cpu);
799 if (!cpu_online(cpu))
800 continue;
801 s = &c->sysdev;
802 sysdev_create_file(s, &attr_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804 return 0;
805}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806subsys_initcall(topology_init);