blob: 3754e2031b39f27014a649bc3ed4b68ac57e6e78 [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>
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 Holzheu411ed322007-04-27 16:01:49 +020034#include <linux/bootmem.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010035#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010036#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/sigp.h>
38#include <asm/pgalloc.h>
39#include <asm/irq.h>
40#include <asm/s390_ext.h>
41#include <asm/cpcmd.h>
42#include <asm/tlbflush.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010043#include <asm/timer.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020044#include <asm/lowcore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/*
47 * An array with a pointer the lowcore of every CPU.
48 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049struct _lowcore *lowcore_ptr[NR_CPUS];
Heiko Carstens39ce0102007-04-27 16:02:00 +020050EXPORT_SYMBOL(lowcore_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Heiko Carstens255acee2006-02-17 13:52:46 -080052cpumask_t cpu_online_map = CPU_MASK_NONE;
Heiko Carstens39ce0102007-04-27 16:02:00 +020053EXPORT_SYMBOL(cpu_online_map);
54
Heiko Carstens255acee2006-02-17 13:52:46 -080055cpumask_t cpu_possible_map = CPU_MASK_NONE;
Heiko Carstens39ce0102007-04-27 16:02:00 +020056EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58static struct task_struct *current_set[NR_CPUS];
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static void smp_ext_bitcall(int, ec_bit_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/*
Jan Glauber63db6e82007-02-21 10:55:06 +010063 * Structure and data for __smp_call_function_map(). This is designed to
64 * minimise static memory requirements. It also looks cleaner.
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 */
66static DEFINE_SPINLOCK(call_lock);
67
68struct call_data_struct {
69 void (*func) (void *info);
70 void *info;
Jan Glauber63db6e82007-02-21 10:55:06 +010071 cpumask_t started;
72 cpumask_t finished;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 int wait;
74};
75
Heiko Carstens39ce0102007-04-27 16:02:00 +020076static struct call_data_struct *call_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * 'Call function' interrupt callback
80 */
81static void do_call_function(void)
82{
83 void (*func) (void *info) = call_data->func;
84 void *info = call_data->info;
85 int wait = call_data->wait;
86
Jan Glauber63db6e82007-02-21 10:55:06 +010087 cpu_set(smp_processor_id(), call_data->started);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 (*func)(info);
89 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +010090 cpu_set(smp_processor_id(), call_data->finished);;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Jan Glauber63db6e82007-02-21 10:55:06 +010093static void __smp_call_function_map(void (*func) (void *info), void *info,
94 int nonatomic, int wait, cpumask_t map)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 struct call_data_struct data;
Jan Glauber63db6e82007-02-21 10:55:06 +010097 int cpu, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Jan Glauber63db6e82007-02-21 10:55:06 +010099 /*
Heiko Carstens25864162007-03-05 23:35:41 +0100100 * Can deadlock when interrupts are disabled or if in wrong context.
Jan Glauber63db6e82007-02-21 10:55:06 +0100101 */
Heiko Carstens25864162007-03-05 23:35:41 +0100102 WARN_ON(irqs_disabled() || in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Jan Glauber63db6e82007-02-21 10:55:06 +0100104 /*
105 * Check for local function call. We have to have the same call order
106 * as in on_each_cpu() because of machine_restart_smp().
107 */
108 if (cpu_isset(smp_processor_id(), map)) {
109 local = 1;
110 cpu_clear(smp_processor_id(), map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
Jan Glauber63db6e82007-02-21 10:55:06 +0100113 cpus_and(map, map, cpu_online_map);
114 if (cpus_empty(map))
115 goto out;
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 data.func = func;
118 data.info = info;
Jan Glauber63db6e82007-02-21 10:55:06 +0100119 data.started = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 data.wait = wait;
121 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100122 data.finished = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 spin_lock_bh(&call_lock);
125 call_data = &data;
Jan Glauber63db6e82007-02-21 10:55:06 +0100126
127 for_each_cpu_mask(cpu, map)
128 smp_ext_bitcall(cpu, ec_call_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 /* Wait for response */
Jan Glauber63db6e82007-02-21 10:55:06 +0100131 while (!cpus_equal(map, data.started))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 cpu_relax();
133
134 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100135 while (!cpus_equal(map, data.finished))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 cpu_relax();
137
138 spin_unlock_bh(&call_lock);
Jan Glauber63db6e82007-02-21 10:55:06 +0100139
140out:
141 local_irq_disable();
142 if (local)
143 func(info);
144 local_irq_enable();
145}
146
147/*
148 * smp_call_function:
149 * @func: the function to run; this must be fast and non-blocking
150 * @info: an arbitrary pointer to pass to the function
151 * @nonatomic: unused
152 * @wait: if true, wait (atomically) until function has completed on other CPUs
153 *
154 * Run a function on all other CPUs.
155 *
Heiko Carstens39ce0102007-04-27 16:02:00 +0200156 * You must not call this function with disabled interrupts, from a
157 * hardware interrupt handler or from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100158 */
159int smp_call_function(void (*func) (void *info), void *info, int nonatomic,
160 int wait)
161{
162 cpumask_t map;
163
Heiko Carstens25864162007-03-05 23:35:41 +0100164 preempt_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100165 map = cpu_online_map;
166 cpu_clear(smp_processor_id(), map);
167 __smp_call_function_map(func, info, nonatomic, wait, map);
Heiko Carstens25864162007-03-05 23:35:41 +0100168 preempt_enable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100169 return 0;
170}
171EXPORT_SYMBOL(smp_call_function);
172
173/*
174 * smp_call_function_on:
175 * @func: the function to run; this must be fast and non-blocking
176 * @info: an arbitrary pointer to pass to the function
177 * @nonatomic: unused
178 * @wait: if true, wait (atomically) until function has completed on other CPUs
179 * @cpu: the CPU where func should run
180 *
181 * Run a function on one processor.
182 *
Heiko Carstens39ce0102007-04-27 16:02:00 +0200183 * You must not call this function with disabled interrupts, from a
184 * hardware interrupt handler or from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100185 */
186int smp_call_function_on(void (*func) (void *info), void *info, int nonatomic,
Heiko Carstens39ce0102007-04-27 16:02:00 +0200187 int wait, int cpu)
Jan Glauber63db6e82007-02-21 10:55:06 +0100188{
189 cpumask_t map = CPU_MASK_NONE;
190
Heiko Carstens25864162007-03-05 23:35:41 +0100191 preempt_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100192 cpu_set(cpu, map);
193 __smp_call_function_map(func, info, nonatomic, wait, map);
Heiko Carstens25864162007-03-05 23:35:41 +0100194 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return 0;
196}
197EXPORT_SYMBOL(smp_call_function_on);
198
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100199static void do_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200201 int cpu, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Heiko Carstens39ce0102007-04-27 16:02:00 +0200203 /* stop all processors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 for_each_online_cpu(cpu) {
205 if (cpu == smp_processor_id())
206 continue;
207 do {
208 rc = signal_processor(cpu, sigp_stop);
209 } while (rc == sigp_busy);
210 }
211}
212
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100213static void do_store_status(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200215 int cpu, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Heiko Carstens39ce0102007-04-27 16:02:00 +0200217 /* store status of all processors in their lowcores (real 0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 for_each_online_cpu(cpu) {
219 if (cpu == smp_processor_id())
220 continue;
221 do {
222 rc = signal_processor_p(
223 (__u32)(unsigned long) lowcore_ptr[cpu], cpu,
224 sigp_store_status_at_address);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200225 } while (rc == sigp_busy);
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100229static void do_wait_for_stop(void)
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100230{
231 int cpu;
232
233 /* Wait for all other cpus to enter stopped state */
234 for_each_online_cpu(cpu) {
235 if (cpu == smp_processor_id())
236 continue;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200237 while (!smp_cpu_not_running(cpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100238 cpu_relax();
239 }
240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242/*
243 * this function sends a 'stop' sigp to all other CPUs in the system.
244 * it goes straight through.
245 */
246void smp_send_stop(void)
247{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100248 /* Disable all interrupts/machine checks */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100249 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100250
Heiko Carstens39ce0102007-04-27 16:02:00 +0200251 /* write magic number to zero page (absolute 0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 lowcore_ptr[smp_processor_id()]->panic_magic = __PANIC_MAGIC;
253
254 /* stop other processors. */
255 do_send_stop();
256
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100257 /* wait until other processors are stopped */
258 do_wait_for_stop();
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /* store status of other processors. */
261 do_store_status();
262}
263
264/*
265 * Reboot, halt and power_off routines for SMP.
266 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200267void machine_restart_smp(char *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100269 smp_send_stop();
270 do_reipl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273void machine_halt_smp(void)
274{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100275 smp_send_stop();
276 if (MACHINE_IS_VM && strlen(vmhalt_cmd) > 0)
277 __cpcmd(vmhalt_cmd, NULL, 0, NULL);
278 signal_processor(smp_processor_id(), sigp_stop_and_store_status);
279 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282void machine_power_off_smp(void)
283{
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100284 smp_send_stop();
285 if (MACHINE_IS_VM && strlen(vmpoff_cmd) > 0)
286 __cpcmd(vmpoff_cmd, NULL, 0, NULL);
287 signal_processor(smp_processor_id(), sigp_stop_and_store_status);
288 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291/*
292 * This is the main routine where commands issued by other
293 * cpus are handled.
294 */
295
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100296static void do_ext_call_interrupt(__u16 code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200298 unsigned long bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Heiko Carstens39ce0102007-04-27 16:02:00 +0200300 /*
301 * handle bit signal external calls
302 *
303 * For the ec_schedule signal we have to do nothing. All the work
304 * is done automatically when we return from the interrupt.
305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 bits = xchg(&S390_lowcore.ext_call_fast, 0);
307
Heiko Carstens39ce0102007-04-27 16:02:00 +0200308 if (test_bit(ec_call_function, &bits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 do_call_function();
310}
311
312/*
313 * Send an external call sigp to another cpu and return without waiting
314 * for its completion.
315 */
316static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
317{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200318 /*
319 * Set signaling bit in lowcore of target cpu and kick it
320 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200322 while (signal_processor(cpu, sigp_emergency_signal) == sigp_busy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 udelay(10);
324}
325
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800326#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/*
328 * this function sends a 'purge tlb' signal to another CPU.
329 */
330void smp_ptlb_callback(void *info)
331{
332 local_flush_tlb();
333}
334
335void smp_ptlb_all(void)
336{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200337 on_each_cpu(smp_ptlb_callback, NULL, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800340#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342/*
343 * this function sends a 'reschedule' IPI to another CPU.
344 * it goes straight through and wastes no time serializing
345 * anything. Worst case is that we lose a reschedule ...
346 */
347void smp_send_reschedule(int cpu)
348{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200349 smp_ext_bitcall(cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352/*
353 * parameter area for the set/clear control bit callbacks
354 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200355struct ec_creg_mask_parms {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 unsigned long orvals[16];
357 unsigned long andvals[16];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200358};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360/*
361 * callback for setting/clearing control bits
362 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200363static void smp_ctl_bit_callback(void *info)
364{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200365 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 unsigned long cregs[16];
367 int i;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200368
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200369 __ctl_store(cregs, 0, 15);
370 for (i = 0; i <= 15; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200372 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375/*
376 * Set a bit in a control register of all cpus
377 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200378void smp_ctl_set_bit(int cr, int bit)
379{
380 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200382 memset(&parms.orvals, 0, sizeof(parms.orvals));
383 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 parms.orvals[cr] = 1 << bit;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200385 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200387EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389/*
390 * Clear a bit in a control register of all cpus
391 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200392void smp_ctl_clear_bit(int cr, int bit)
393{
394 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200396 memset(&parms.orvals, 0, sizeof(parms.orvals));
397 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 parms.andvals[cr] = ~(1L << bit);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200399 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200401EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Michael Holzheu411ed322007-04-27 16:01:49 +0200403#if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_ZFCPDUMP_MODULE)
404
405/*
406 * zfcpdump_prefix_array holds prefix registers for the following scenario:
407 * 64 bit zfcpdump kernel and 31 bit kernel which is to be dumped. We have to
408 * save its prefix registers, since they get lost, when switching from 31 bit
409 * to 64 bit.
410 */
411unsigned int zfcpdump_prefix_array[NR_CPUS + 1] \
412 __attribute__((__section__(".data")));
413
414static void __init smp_get_save_areas(void)
415{
416 unsigned int cpu, cpu_num, rc;
417 __u16 boot_cpu_addr;
418
419 if (ipl_info.type != IPL_TYPE_FCP_DUMP)
420 return;
421 boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
422 cpu_num = 1;
423 for (cpu = 0; cpu <= 65535; cpu++) {
424 if ((u16) cpu == boot_cpu_addr)
425 continue;
426 __cpu_logical_map[1] = (__u16) cpu;
427 if (signal_processor(1, sigp_sense) == sigp_not_operational)
428 continue;
429 if (cpu_num >= NR_CPUS) {
430 printk("WARNING: Registers for cpu %i are not "
431 "saved, since dump kernel was compiled with"
432 "NR_CPUS=%i!\n", cpu_num, NR_CPUS);
433 continue;
434 }
435 zfcpdump_save_areas[cpu_num] =
436 alloc_bootmem(sizeof(union save_area));
437 while (1) {
438 rc = signal_processor(1, sigp_stop_and_store_status);
439 if (rc != sigp_busy)
440 break;
441 cpu_relax();
442 }
443 memcpy(zfcpdump_save_areas[cpu_num],
444 (void *)(unsigned long) store_prefix() +
445 SAVE_AREA_BASE, SAVE_AREA_SIZE);
446#ifdef __s390x__
447 /* copy original prefix register */
448 zfcpdump_save_areas[cpu_num]->s390x.pref_reg =
449 zfcpdump_prefix_array[cpu_num];
450#endif
451 cpu_num++;
452 }
453}
454
455union save_area *zfcpdump_save_areas[NR_CPUS + 1];
456EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
457
458#else
459#define smp_get_save_areas() do { } while (0)
460#endif
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/*
463 * Lets check how many CPUs we have.
464 */
465
Heiko Carstens39ce0102007-04-27 16:02:00 +0200466static unsigned int __init smp_count_cpus(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Heiko Carstens255acee2006-02-17 13:52:46 -0800468 unsigned int cpu, num_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 __u16 boot_cpu_addr;
470
471 /*
472 * cpu 0 is the boot cpu. See smp_prepare_boot_cpu.
473 */
474
475 boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
476 current_thread_info()->cpu = 0;
477 num_cpus = 1;
Heiko Carstens255acee2006-02-17 13:52:46 -0800478 for (cpu = 0; cpu <= 65535; cpu++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if ((__u16) cpu == boot_cpu_addr)
480 continue;
Heiko Carstens255acee2006-02-17 13:52:46 -0800481 __cpu_logical_map[1] = (__u16) cpu;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200482 if (signal_processor(1, sigp_sense) == sigp_not_operational)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 num_cpus++;
485 }
486
Heiko Carstens39ce0102007-04-27 16:02:00 +0200487 printk("Detected %d CPU's\n", (int) num_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 printk("Boot cpu address %2X\n", boot_cpu_addr);
Heiko Carstens255acee2006-02-17 13:52:46 -0800489
490 return num_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
493/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200494 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496int __devinit start_secondary(void *cpuvoid)
497{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200498 /* Setup the cpu */
499 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800500 preempt_disable();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100501 /* Enable TOD clock interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200502 init_cpu_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503#ifdef CONFIG_VIRT_TIMER
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100504 /* Enable cpu timer interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200505 init_cpu_vtimer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /* Enable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100508 pfault_init();
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* Mark this cpu as online */
511 cpu_set(smp_processor_id(), cpu_online_map);
512 /* Switch on interrupts */
513 local_irq_enable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200514 /* Print info about this processor */
515 print_cpu_info(&S390_lowcore.cpu_data);
516 /* cpu_idle will call schedule for us */
517 cpu_idle();
518 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
521static void __init smp_create_idle(unsigned int cpu)
522{
523 struct task_struct *p;
524
525 /*
526 * don't care about the psw and regs settings since we'll never
527 * reschedule the forked task.
528 */
529 p = fork_idle(cpu);
530 if (IS_ERR(p))
531 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
532 current_set[cpu] = p;
533}
534
Heiko Carstens39ce0102007-04-27 16:02:00 +0200535static int cpu_stopped(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 __u32 status;
538
539 /* Check for stopped state */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200540 if (signal_processor_ps(&status, 0, cpu, sigp_sense) ==
541 sigp_status_stored) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (status & 0x40)
543 return 1;
544 }
545 return 0;
546}
547
548/* Upping and downing of CPUs */
549
Heiko Carstens39ce0102007-04-27 16:02:00 +0200550int __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
552 struct task_struct *idle;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200553 struct _lowcore *cpu_lowcore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 struct stack_frame *sf;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200555 sigp_ccode ccode;
556 int curr_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 for (curr_cpu = 0; curr_cpu <= 65535; curr_cpu++) {
559 __cpu_logical_map[cpu] = (__u16) curr_cpu;
560 if (cpu_stopped(cpu))
561 break;
562 }
563
564 if (!cpu_stopped(cpu))
565 return -ENODEV;
566
567 ccode = signal_processor_p((__u32)(unsigned long)(lowcore_ptr[cpu]),
568 cpu, sigp_set_prefix);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200569 if (ccode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 printk("sigp_set_prefix failed for cpu %d "
571 "with condition code %d\n",
572 (int) cpu, (int) ccode);
573 return -EIO;
574 }
575
576 idle = current_set[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200577 cpu_lowcore = lowcore_ptr[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 cpu_lowcore->kernel_stack = (unsigned long)
Heiko Carstens39ce0102007-04-27 16:02:00 +0200579 task_stack_page(idle) + THREAD_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
581 - sizeof(struct pt_regs)
582 - sizeof(struct stack_frame));
583 memset(sf, 0, sizeof(struct stack_frame));
584 sf->gprs[9] = (unsigned long) sf;
585 cpu_lowcore->save_area[15] = (unsigned long) sf;
586 __ctl_store(cpu_lowcore->cregs_save_area[0], 0, 15);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200587 asm volatile(
588 " stam 0,15,0(%0)"
589 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200591 cpu_lowcore->current_task = (unsigned long) idle;
592 cpu_lowcore->cpu_data.cpu_nr = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 eieio();
Michael Ryan699ff132006-03-24 03:15:17 -0800594
Heiko Carstens39ce0102007-04-27 16:02:00 +0200595 while (signal_processor(cpu, sigp_restart) == sigp_busy)
Michael Ryan699ff132006-03-24 03:15:17 -0800596 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 while (!cpu_online(cpu))
599 cpu_relax();
600 return 0;
601}
602
Heiko Carstens255acee2006-02-17 13:52:46 -0800603static unsigned int __initdata additional_cpus;
Heiko Carstens37a33022006-02-17 13:52:47 -0800604static unsigned int __initdata possible_cpus;
Heiko Carstens255acee2006-02-17 13:52:46 -0800605
606void __init smp_setup_cpu_possible_map(void)
607{
Heiko Carstens54330452006-02-17 13:52:48 -0800608 unsigned int phy_cpus, pos_cpus, cpu;
Heiko Carstens255acee2006-02-17 13:52:46 -0800609
Michael Holzheu411ed322007-04-27 16:01:49 +0200610 smp_get_save_areas();
Heiko Carstens54330452006-02-17 13:52:48 -0800611 phy_cpus = smp_count_cpus();
612 pos_cpus = min(phy_cpus + additional_cpus, (unsigned int) NR_CPUS);
Heiko Carstens255acee2006-02-17 13:52:46 -0800613
Heiko Carstens37a33022006-02-17 13:52:47 -0800614 if (possible_cpus)
Heiko Carstens54330452006-02-17 13:52:48 -0800615 pos_cpus = min(possible_cpus, (unsigned int) NR_CPUS);
Heiko Carstens255acee2006-02-17 13:52:46 -0800616
Heiko Carstens54330452006-02-17 13:52:48 -0800617 for (cpu = 0; cpu < pos_cpus; cpu++)
Heiko Carstens255acee2006-02-17 13:52:46 -0800618 cpu_set(cpu, cpu_possible_map);
619
Heiko Carstens54330452006-02-17 13:52:48 -0800620 phy_cpus = min(phy_cpus, pos_cpus);
621
622 for (cpu = 0; cpu < phy_cpus; cpu++)
623 cpu_set(cpu, cpu_present_map);
Heiko Carstens255acee2006-02-17 13:52:46 -0800624}
625
626#ifdef CONFIG_HOTPLUG_CPU
627
628static int __init setup_additional_cpus(char *s)
629{
630 additional_cpus = simple_strtoul(s, NULL, 0);
631 return 0;
632}
633early_param("additional_cpus", setup_additional_cpus);
634
Heiko Carstens37a33022006-02-17 13:52:47 -0800635static int __init setup_possible_cpus(char *s)
636{
637 possible_cpus = simple_strtoul(s, NULL, 0);
638 return 0;
639}
640early_param("possible_cpus", setup_possible_cpus);
641
Heiko Carstens39ce0102007-04-27 16:02:00 +0200642int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200644 struct ec_creg_mask_parms cr_parms;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700645 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700647 cpu_clear(cpu, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /* Disable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100650 pfault_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200652 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
653 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200655 /* disable all external interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 cr_parms.orvals[0] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200657 cr_parms.andvals[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 |
658 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 /* disable all I/O interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 cr_parms.orvals[6] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200661 cr_parms.andvals[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 |
662 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /* disable most machine checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 cr_parms.orvals[14] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200665 cr_parms.andvals[14] = ~(1 << 28 | 1 << 27 | 1 << 26 |
666 1 << 25 | 1 << 24);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 smp_ctl_bit_callback(&cr_parms);
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return 0;
671}
672
Heiko Carstens39ce0102007-04-27 16:02:00 +0200673void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 /* Wait until target cpu is down */
676 while (!smp_cpu_not_running(cpu))
677 cpu_relax();
678 printk("Processor %d spun down\n", cpu);
679}
680
Heiko Carstens39ce0102007-04-27 16:02:00 +0200681void cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 idle_task_exit();
684 signal_processor(smp_processor_id(), sigp_stop);
685 BUG();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200686 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Heiko Carstens255acee2006-02-17 13:52:46 -0800689#endif /* CONFIG_HOTPLUG_CPU */
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691/*
692 * Cycle through the processors and setup structures.
693 */
694
695void __init smp_prepare_cpus(unsigned int max_cpus)
696{
697 unsigned long stack;
698 unsigned int cpu;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200699 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Heiko Carstens39ce0102007-04-27 16:02:00 +0200701 /* request the 0x1201 emergency signal external interrupt */
702 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
703 panic("Couldn't request external interrupt 0x1201");
704 memset(lowcore_ptr, 0, sizeof(lowcore_ptr));
705 /*
706 * Initialize prefix pages and stacks for all possible cpus
707 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 print_cpu_info(&S390_lowcore.cpu_data);
709
Heiko Carstens39ce0102007-04-27 16:02:00 +0200710 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 lowcore_ptr[i] = (struct _lowcore *)
Heiko Carstens39ce0102007-04-27 16:02:00 +0200712 __get_free_pages(GFP_KERNEL | GFP_DMA,
713 sizeof(void*) == 8 ? 1 : 0);
714 stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
715 if (!lowcore_ptr[i] || !stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 panic("smp_boot_cpus failed to allocate memory\n");
717
718 *(lowcore_ptr[i]) = S390_lowcore;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200719 lowcore_ptr[i]->async_stack = stack + ASYNC_SIZE;
720 stack = __get_free_pages(GFP_KERNEL, 0);
721 if (!stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 panic("smp_boot_cpus failed to allocate memory\n");
Heiko Carstens39ce0102007-04-27 16:02:00 +0200723 lowcore_ptr[i]->panic_stack = stack + PAGE_SIZE;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800724#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700725 if (MACHINE_HAS_IEEE) {
726 lowcore_ptr[i]->extended_save_area_addr =
Heiko Carstens39ce0102007-04-27 16:02:00 +0200727 (__u32) __get_free_pages(GFP_KERNEL, 0);
728 if (!lowcore_ptr[i]->extended_save_area_addr)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700729 panic("smp_boot_cpus failed to "
730 "allocate memory\n");
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#endif
733 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800734#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700735 if (MACHINE_HAS_IEEE)
736 ctl_set_bit(14, 29); /* enable extended save area */
737#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 set_prefix((u32)(unsigned long) lowcore_ptr[smp_processor_id()]);
739
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800740 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (cpu != smp_processor_id())
742 smp_create_idle(cpu);
743}
744
745void __devinit smp_prepare_boot_cpu(void)
746{
747 BUG_ON(smp_processor_id() != 0);
748
749 cpu_set(0, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 S390_lowcore.percpu_offset = __per_cpu_offset[0];
751 current_set[0] = current;
752}
753
754void smp_cpus_done(unsigned int max_cpus)
755{
Heiko Carstens54330452006-02-17 13:52:48 -0800756 cpu_present_map = cpu_possible_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/*
760 * the frequency of the profiling timer can be changed
761 * by writing a multiplier value into /proc/profile.
762 *
763 * usually you want to run this on all CPUs ;)
764 */
765int setup_profiling_timer(unsigned int multiplier)
766{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200767 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770static DEFINE_PER_CPU(struct cpu, cpu_devices);
771
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200772static ssize_t show_capability(struct sys_device *dev, char *buf)
773{
774 unsigned int capability;
775 int rc;
776
777 rc = get_cpu_capability(&capability);
778 if (rc)
779 return rc;
780 return sprintf(buf, "%u\n", capability);
781}
782static SYSDEV_ATTR(capability, 0444, show_capability, NULL);
783
784static int __cpuinit smp_cpu_notify(struct notifier_block *self,
785 unsigned long action, void *hcpu)
786{
787 unsigned int cpu = (unsigned int)(long)hcpu;
788 struct cpu *c = &per_cpu(cpu_devices, cpu);
789 struct sys_device *s = &c->sysdev;
790
791 switch (action) {
792 case CPU_ONLINE:
793 if (sysdev_create_file(s, &attr_capability))
794 return NOTIFY_BAD;
795 break;
796 case CPU_DEAD:
797 sysdev_remove_file(s, &attr_capability);
798 break;
799 }
800 return NOTIFY_OK;
801}
802
803static struct notifier_block __cpuinitdata smp_cpu_nb = {
Heiko Carstens39ce0102007-04-27 16:02:00 +0200804 .notifier_call = smp_cpu_notify,
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200805};
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807static int __init topology_init(void)
808{
809 int cpu;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200810
811 register_cpu_notifier(&smp_cpu_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800813 for_each_possible_cpu(cpu) {
Heiko Carstens6721f772007-01-09 10:18:44 +0100814 struct cpu *c = &per_cpu(cpu_devices, cpu);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200815 struct sys_device *s = &c->sysdev;
Heiko Carstens6721f772007-01-09 10:18:44 +0100816
817 c->hotpluggable = 1;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200818 register_cpu(c, cpu);
819 if (!cpu_online(cpu))
820 continue;
821 s = &c->sysdev;
822 sysdev_create_file(s, &attr_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824 return 0;
825}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826subsys_initcall(topology_init);