blob: 00b9b4dec5eb0850aeda9a373227b190a42e8caf [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>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040026#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/spinlock.h>
28#include <linux/kernel_stat.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>
Heiko Carstens08d07962008-01-26 14:10:56 +010045#include <asm/sclp.h>
Heiko Carstensfae8b222007-10-22 12:52:39 +020046#include <asm/cpu.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020047#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
50 * An array with a pointer the lowcore of every CPU.
51 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052struct _lowcore *lowcore_ptr[NR_CPUS];
Heiko Carstens39ce0102007-04-27 16:02:00 +020053EXPORT_SYMBOL(lowcore_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Heiko Carstens255acee2006-02-17 13:52:46 -080055cpumask_t cpu_online_map = CPU_MASK_NONE;
Heiko Carstens39ce0102007-04-27 16:02:00 +020056EXPORT_SYMBOL(cpu_online_map);
57
Heiko Carstens48483b32008-01-26 14:11:05 +010058cpumask_t cpu_possible_map = CPU_MASK_ALL;
Heiko Carstens39ce0102007-04-27 16:02:00 +020059EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static struct task_struct *current_set[NR_CPUS];
62
Heiko Carstens08d07962008-01-26 14:10:56 +010063static u8 smp_cpu_type;
64static int smp_use_sigp_detection;
65
66enum s390_cpu_state {
67 CPU_STATE_STANDBY,
68 CPU_STATE_CONFIGURED,
69};
70
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020071DEFINE_MUTEX(smp_cpu_state_mutex);
Heiko Carstensc10fde02008-04-17 07:46:13 +020072int smp_cpu_polarization[NR_CPUS];
Heiko Carstens08d07962008-01-26 14:10:56 +010073static int smp_cpu_state[NR_CPUS];
Heiko Carstensc10fde02008-04-17 07:46:13 +020074static int cpu_management;
Heiko Carstens08d07962008-01-26 14:10:56 +010075
76static DEFINE_PER_CPU(struct cpu, cpu_devices);
Heiko Carstens08d07962008-01-26 14:10:56 +010077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static void smp_ext_bitcall(int, ec_bit_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/*
Jan Glauber63db6e82007-02-21 10:55:06 +010081 * Structure and data for __smp_call_function_map(). This is designed to
82 * minimise static memory requirements. It also looks cleaner.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
84static DEFINE_SPINLOCK(call_lock);
85
86struct call_data_struct {
87 void (*func) (void *info);
88 void *info;
Jan Glauber63db6e82007-02-21 10:55:06 +010089 cpumask_t started;
90 cpumask_t finished;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int wait;
92};
93
Heiko Carstens39ce0102007-04-27 16:02:00 +020094static struct call_data_struct *call_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/*
97 * 'Call function' interrupt callback
98 */
99static void do_call_function(void)
100{
101 void (*func) (void *info) = call_data->func;
102 void *info = call_data->info;
103 int wait = call_data->wait;
104
Jan Glauber63db6e82007-02-21 10:55:06 +0100105 cpu_set(smp_processor_id(), call_data->started);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 (*func)(info);
107 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100108 cpu_set(smp_processor_id(), call_data->finished);;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Jan Glauber63db6e82007-02-21 10:55:06 +0100111static void __smp_call_function_map(void (*func) (void *info), void *info,
Jens Axboe8691e5a2008-06-06 11:18:06 +0200112 int wait, cpumask_t map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct call_data_struct data;
Jan Glauber63db6e82007-02-21 10:55:06 +0100115 int cpu, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Jan Glauber63db6e82007-02-21 10:55:06 +0100117 /*
Heiko Carstens25864162007-03-05 23:35:41 +0100118 * Can deadlock when interrupts are disabled or if in wrong context.
Jan Glauber63db6e82007-02-21 10:55:06 +0100119 */
Heiko Carstens25864162007-03-05 23:35:41 +0100120 WARN_ON(irqs_disabled() || in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Jan Glauber63db6e82007-02-21 10:55:06 +0100122 /*
123 * Check for local function call. We have to have the same call order
124 * as in on_each_cpu() because of machine_restart_smp().
125 */
126 if (cpu_isset(smp_processor_id(), map)) {
127 local = 1;
128 cpu_clear(smp_processor_id(), map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Jan Glauber63db6e82007-02-21 10:55:06 +0100131 cpus_and(map, map, cpu_online_map);
132 if (cpus_empty(map))
133 goto out;
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 data.func = func;
136 data.info = info;
Jan Glauber63db6e82007-02-21 10:55:06 +0100137 data.started = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 data.wait = wait;
139 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100140 data.finished = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 call_data = &data;
Jan Glauber63db6e82007-02-21 10:55:06 +0100143
144 for_each_cpu_mask(cpu, map)
145 smp_ext_bitcall(cpu, ec_call_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 /* Wait for response */
Jan Glauber63db6e82007-02-21 10:55:06 +0100148 while (!cpus_equal(map, data.started))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100151 while (!cpus_equal(map, data.finished))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 cpu_relax();
Jan Glauber63db6e82007-02-21 10:55:06 +0100153out:
Heiko Carstens8da1aec2007-07-27 12:29:09 +0200154 if (local) {
155 local_irq_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100156 func(info);
Heiko Carstens8da1aec2007-07-27 12:29:09 +0200157 local_irq_enable();
158 }
Jan Glauber63db6e82007-02-21 10:55:06 +0100159}
160
161/*
162 * smp_call_function:
163 * @func: the function to run; this must be fast and non-blocking
164 * @info: an arbitrary pointer to pass to the function
Jan Glauber63db6e82007-02-21 10:55:06 +0100165 * @wait: if true, wait (atomically) until function has completed on other CPUs
166 *
167 * Run a function on all other CPUs.
168 *
Heiko Carstens39ce0102007-04-27 16:02:00 +0200169 * You must not call this function with disabled interrupts, from a
170 * hardware interrupt handler or from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100171 */
Jens Axboe8691e5a2008-06-06 11:18:06 +0200172int smp_call_function(void (*func) (void *info), void *info, int wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100173{
174 cpumask_t map;
175
Heiko Carstens85cb1852008-05-15 16:52:38 +0200176 spin_lock(&call_lock);
Jan Glauber63db6e82007-02-21 10:55:06 +0100177 map = cpu_online_map;
178 cpu_clear(smp_processor_id(), map);
Jens Axboe8691e5a2008-06-06 11:18:06 +0200179 __smp_call_function_map(func, info, wait, map);
Heiko Carstens85cb1852008-05-15 16:52:38 +0200180 spin_unlock(&call_lock);
Jan Glauber63db6e82007-02-21 10:55:06 +0100181 return 0;
182}
183EXPORT_SYMBOL(smp_call_function);
184
185/*
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200186 * smp_call_function_single:
187 * @cpu: the CPU where func should run
Jan Glauber63db6e82007-02-21 10:55:06 +0100188 * @func: the function to run; this must be fast and non-blocking
189 * @info: an arbitrary pointer to pass to the function
Jan Glauber63db6e82007-02-21 10:55:06 +0100190 * @wait: if true, wait (atomically) until function has completed on other CPUs
Jan Glauber63db6e82007-02-21 10:55:06 +0100191 *
192 * Run a function on one processor.
193 *
Heiko Carstens39ce0102007-04-27 16:02:00 +0200194 * You must not call this function with disabled interrupts, from a
195 * hardware interrupt handler or from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100196 */
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200197int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
Jens Axboe8691e5a2008-06-06 11:18:06 +0200198 int wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100199{
Heiko Carstens85cb1852008-05-15 16:52:38 +0200200 spin_lock(&call_lock);
Jens Axboe8691e5a2008-06-06 11:18:06 +0200201 __smp_call_function_map(func, info, wait, cpumask_of_cpu(cpu));
Heiko Carstens85cb1852008-05-15 16:52:38 +0200202 spin_unlock(&call_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return 0;
204}
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200205EXPORT_SYMBOL(smp_call_function_single);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Carsten Ottedab52092008-01-26 14:11:27 +0100207/**
208 * smp_call_function_mask(): Run a function on a set of other CPUs.
209 * @mask: The set of cpus to run on. Must not include the current cpu.
210 * @func: The function to run. This must be fast and non-blocking.
211 * @info: An arbitrary pointer to pass to the function.
212 * @wait: If true, wait (atomically) until function has completed on other CPUs.
213 *
214 * Returns 0 on success, else a negative status code.
215 *
216 * If @wait is true, then returns once @func has returned; otherwise
217 * it returns just before the target cpu calls @func.
218 *
219 * You must not call this function with disabled interrupts or from a
220 * hardware interrupt handler or from a bottom half handler.
221 */
Heiko Carstens37c5f712008-02-05 16:50:39 +0100222int smp_call_function_mask(cpumask_t mask, void (*func)(void *), void *info,
223 int wait)
Carsten Ottedab52092008-01-26 14:11:27 +0100224{
Heiko Carstens85cb1852008-05-15 16:52:38 +0200225 spin_lock(&call_lock);
Heiko Carstens37c5f712008-02-05 16:50:39 +0100226 cpu_clear(smp_processor_id(), mask);
Jens Axboe8691e5a2008-06-06 11:18:06 +0200227 __smp_call_function_map(func, info, wait, mask);
Heiko Carstens85cb1852008-05-15 16:52:38 +0200228 spin_unlock(&call_lock);
Carsten Ottedab52092008-01-26 14:11:27 +0100229 return 0;
230}
231EXPORT_SYMBOL(smp_call_function_mask);
232
Heiko Carstens677d7622007-11-20 11:13:37 +0100233void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200235 int cpu, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Heiko Carstens677d7622007-11-20 11:13:37 +0100237 /* Disable all interrupts/machine checks */
238 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
239
240 /* write magic number to zero page (absolute 0) */
241 lowcore_ptr[smp_processor_id()]->panic_magic = __PANIC_MAGIC;
242
Heiko Carstens39ce0102007-04-27 16:02:00 +0200243 /* stop all processors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 for_each_online_cpu(cpu) {
245 if (cpu == smp_processor_id())
246 continue;
247 do {
248 rc = signal_processor(cpu, sigp_stop);
249 } while (rc == sigp_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Heiko Carstens39ce0102007-04-27 16:02:00 +0200251 while (!smp_cpu_not_running(cpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100252 cpu_relax();
253 }
254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * This is the main routine where commands issued by other
258 * cpus are handled.
259 */
260
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100261static void do_ext_call_interrupt(__u16 code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200263 unsigned long bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Heiko Carstens39ce0102007-04-27 16:02:00 +0200265 /*
266 * handle bit signal external calls
267 *
268 * For the ec_schedule signal we have to do nothing. All the work
269 * is done automatically when we return from the interrupt.
270 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 bits = xchg(&S390_lowcore.ext_call_fast, 0);
272
Heiko Carstens39ce0102007-04-27 16:02:00 +0200273 if (test_bit(ec_call_function, &bits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 do_call_function();
275}
276
277/*
278 * Send an external call sigp to another cpu and return without waiting
279 * for its completion.
280 */
281static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
282{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200283 /*
284 * Set signaling bit in lowcore of target cpu and kick it
285 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200287 while (signal_processor(cpu, sigp_emergency_signal) == sigp_busy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 udelay(10);
289}
290
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800291#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/*
293 * this function sends a 'purge tlb' signal to another CPU.
294 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200295static void smp_ptlb_callback(void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200297 __tlb_flush_local();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300void smp_ptlb_all(void)
301{
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200302 on_each_cpu(smp_ptlb_callback, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800305#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307/*
308 * this function sends a 'reschedule' IPI to another CPU.
309 * it goes straight through and wastes no time serializing
310 * anything. Worst case is that we lose a reschedule ...
311 */
312void smp_send_reschedule(int cpu)
313{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200314 smp_ext_bitcall(cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317/*
318 * parameter area for the set/clear control bit callbacks
319 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200320struct ec_creg_mask_parms {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 unsigned long orvals[16];
322 unsigned long andvals[16];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200323};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325/*
326 * callback for setting/clearing control bits
327 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200328static void smp_ctl_bit_callback(void *info)
329{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200330 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 unsigned long cregs[16];
332 int i;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200333
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200334 __ctl_store(cregs, 0, 15);
335 for (i = 0; i <= 15; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200337 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340/*
341 * Set a bit in a control register of all cpus
342 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200343void smp_ctl_set_bit(int cr, int bit)
344{
345 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200347 memset(&parms.orvals, 0, sizeof(parms.orvals));
348 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 parms.orvals[cr] = 1 << bit;
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200350 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200352EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354/*
355 * Clear a bit in a control register of all cpus
356 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200357void smp_ctl_clear_bit(int cr, int bit)
358{
359 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200361 memset(&parms.orvals, 0, sizeof(parms.orvals));
362 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 parms.andvals[cr] = ~(1L << bit);
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200364 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200366EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Heiko Carstens08d07962008-01-26 14:10:56 +0100368/*
369 * In early ipl state a temp. logically cpu number is needed, so the sigp
370 * functions can be used to sense other cpus. Since NR_CPUS is >= 2 on
371 * CONFIG_SMP and the ipl cpu is logical cpu 0, it must be 1.
372 */
373#define CPU_INIT_NO 1
374
Michael Holzheu411ed322007-04-27 16:01:49 +0200375#if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_ZFCPDUMP_MODULE)
376
377/*
378 * zfcpdump_prefix_array holds prefix registers for the following scenario:
379 * 64 bit zfcpdump kernel and 31 bit kernel which is to be dumped. We have to
380 * save its prefix registers, since they get lost, when switching from 31 bit
381 * to 64 bit.
382 */
383unsigned int zfcpdump_prefix_array[NR_CPUS + 1] \
384 __attribute__((__section__(".data")));
385
Heiko Carstens285f6722007-07-10 11:24:13 +0200386static void __init smp_get_save_area(unsigned int cpu, unsigned int phy_cpu)
Michael Holzheu411ed322007-04-27 16:01:49 +0200387{
Michael Holzheu411ed322007-04-27 16:01:49 +0200388 if (ipl_info.type != IPL_TYPE_FCP_DUMP)
389 return;
Heiko Carstens285f6722007-07-10 11:24:13 +0200390 if (cpu >= NR_CPUS) {
391 printk(KERN_WARNING "Registers for cpu %i not saved since dump "
392 "kernel was compiled with NR_CPUS=%i\n", cpu, NR_CPUS);
393 return;
Michael Holzheu411ed322007-04-27 16:01:49 +0200394 }
Heiko Carstens48483b32008-01-26 14:11:05 +0100395 zfcpdump_save_areas[cpu] = kmalloc(sizeof(union save_area), GFP_KERNEL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100396 __cpu_logical_map[CPU_INIT_NO] = (__u16) phy_cpu;
397 while (signal_processor(CPU_INIT_NO, sigp_stop_and_store_status) ==
398 sigp_busy)
Heiko Carstens285f6722007-07-10 11:24:13 +0200399 cpu_relax();
400 memcpy(zfcpdump_save_areas[cpu],
401 (void *)(unsigned long) store_prefix() + SAVE_AREA_BASE,
402 SAVE_AREA_SIZE);
403#ifdef CONFIG_64BIT
404 /* copy original prefix register */
405 zfcpdump_save_areas[cpu]->s390x.pref_reg = zfcpdump_prefix_array[cpu];
406#endif
Michael Holzheu411ed322007-04-27 16:01:49 +0200407}
408
409union save_area *zfcpdump_save_areas[NR_CPUS + 1];
410EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
411
412#else
Heiko Carstens285f6722007-07-10 11:24:13 +0200413
414static inline void smp_get_save_area(unsigned int cpu, unsigned int phy_cpu) { }
415
416#endif /* CONFIG_ZFCPDUMP || CONFIG_ZFCPDUMP_MODULE */
Michael Holzheu411ed322007-04-27 16:01:49 +0200417
Heiko Carstens08d07962008-01-26 14:10:56 +0100418static int cpu_stopped(int cpu)
419{
420 __u32 status;
421
422 /* Check for stopped state */
423 if (signal_processor_ps(&status, 0, cpu, sigp_sense) ==
424 sigp_status_stored) {
425 if (status & 0x40)
426 return 1;
427 }
428 return 0;
429}
430
Heiko Carstens08d07962008-01-26 14:10:56 +0100431static int cpu_known(int cpu_id)
432{
433 int cpu;
434
435 for_each_present_cpu(cpu) {
436 if (__cpu_logical_map[cpu] == cpu_id)
437 return 1;
438 }
439 return 0;
440}
441
442static int smp_rescan_cpus_sigp(cpumask_t avail)
443{
444 int cpu_id, logical_cpu;
445
446 logical_cpu = first_cpu(avail);
447 if (logical_cpu == NR_CPUS)
448 return 0;
449 for (cpu_id = 0; cpu_id <= 65535; cpu_id++) {
450 if (cpu_known(cpu_id))
451 continue;
452 __cpu_logical_map[logical_cpu] = cpu_id;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200453 smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN;
Heiko Carstens08d07962008-01-26 14:10:56 +0100454 if (!cpu_stopped(logical_cpu))
455 continue;
456 cpu_set(logical_cpu, cpu_present_map);
457 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
458 logical_cpu = next_cpu(logical_cpu, avail);
459 if (logical_cpu == NR_CPUS)
460 break;
461 }
462 return 0;
463}
464
Heiko Carstens48483b32008-01-26 14:11:05 +0100465static int smp_rescan_cpus_sclp(cpumask_t avail)
Heiko Carstens08d07962008-01-26 14:10:56 +0100466{
467 struct sclp_cpu_info *info;
468 int cpu_id, logical_cpu, cpu;
469 int rc;
470
471 logical_cpu = first_cpu(avail);
472 if (logical_cpu == NR_CPUS)
473 return 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100474 info = kmalloc(sizeof(*info), GFP_KERNEL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100475 if (!info)
476 return -ENOMEM;
477 rc = sclp_get_cpu_info(info);
478 if (rc)
479 goto out;
480 for (cpu = 0; cpu < info->combined; cpu++) {
481 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
482 continue;
483 cpu_id = info->cpu[cpu].address;
484 if (cpu_known(cpu_id))
485 continue;
486 __cpu_logical_map[logical_cpu] = cpu_id;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200487 smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN;
Heiko Carstens08d07962008-01-26 14:10:56 +0100488 cpu_set(logical_cpu, cpu_present_map);
489 if (cpu >= info->configured)
490 smp_cpu_state[logical_cpu] = CPU_STATE_STANDBY;
491 else
492 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
493 logical_cpu = next_cpu(logical_cpu, avail);
494 if (logical_cpu == NR_CPUS)
495 break;
496 }
497out:
Heiko Carstens48483b32008-01-26 14:11:05 +0100498 kfree(info);
Heiko Carstens08d07962008-01-26 14:10:56 +0100499 return rc;
500}
501
Heiko Carstens1e489512008-04-30 13:38:37 +0200502static int __smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +0100503{
504 cpumask_t avail;
505
Heiko Carstens48483b32008-01-26 14:11:05 +0100506 cpus_xor(avail, cpu_possible_map, cpu_present_map);
Heiko Carstens08d07962008-01-26 14:10:56 +0100507 if (smp_use_sigp_detection)
508 return smp_rescan_cpus_sigp(avail);
509 else
510 return smp_rescan_cpus_sclp(avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Heiko Carstens48483b32008-01-26 14:11:05 +0100513static void __init smp_detect_cpus(void)
514{
515 unsigned int cpu, c_cpus, s_cpus;
516 struct sclp_cpu_info *info;
517 u16 boot_cpu_addr, cpu_addr;
518
519 c_cpus = 1;
520 s_cpus = 0;
521 boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
522 info = kmalloc(sizeof(*info), GFP_KERNEL);
523 if (!info)
524 panic("smp_detect_cpus failed to allocate memory\n");
525 /* Use sigp detection algorithm if sclp doesn't work. */
526 if (sclp_get_cpu_info(info)) {
527 smp_use_sigp_detection = 1;
528 for (cpu = 0; cpu <= 65535; cpu++) {
529 if (cpu == boot_cpu_addr)
530 continue;
531 __cpu_logical_map[CPU_INIT_NO] = cpu;
532 if (!cpu_stopped(CPU_INIT_NO))
533 continue;
534 smp_get_save_area(c_cpus, cpu);
535 c_cpus++;
536 }
537 goto out;
538 }
539
540 if (info->has_cpu_type) {
541 for (cpu = 0; cpu < info->combined; cpu++) {
542 if (info->cpu[cpu].address == boot_cpu_addr) {
543 smp_cpu_type = info->cpu[cpu].type;
544 break;
545 }
546 }
547 }
548
549 for (cpu = 0; cpu < info->combined; cpu++) {
550 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
551 continue;
552 cpu_addr = info->cpu[cpu].address;
553 if (cpu_addr == boot_cpu_addr)
554 continue;
555 __cpu_logical_map[CPU_INIT_NO] = cpu_addr;
556 if (!cpu_stopped(CPU_INIT_NO)) {
557 s_cpus++;
558 continue;
559 }
560 smp_get_save_area(c_cpus, cpu_addr);
561 c_cpus++;
562 }
563out:
564 kfree(info);
565 printk(KERN_INFO "CPUs: %d configured, %d standby\n", c_cpus, s_cpus);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100566 get_online_cpus();
Heiko Carstens1e489512008-04-30 13:38:37 +0200567 __smp_rescan_cpus();
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100568 put_online_cpus();
Heiko Carstens48483b32008-01-26 14:11:05 +0100569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200572 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 */
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200574int __cpuinit start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200576 /* Setup the cpu */
577 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800578 preempt_disable();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100579 /* Enable TOD clock interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200580 init_cpu_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581#ifdef CONFIG_VIRT_TIMER
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100582 /* Enable cpu timer interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200583 init_cpu_vtimer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* Enable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100586 pfault_init();
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /* Mark this cpu as online */
Heiko Carstens85cb1852008-05-15 16:52:38 +0200589 spin_lock(&call_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 cpu_set(smp_processor_id(), cpu_online_map);
Heiko Carstens85cb1852008-05-15 16:52:38 +0200591 spin_unlock(&call_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* Switch on interrupts */
593 local_irq_enable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200594 /* Print info about this processor */
595 print_cpu_info(&S390_lowcore.cpu_data);
596 /* cpu_idle will call schedule for us */
597 cpu_idle();
598 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601static void __init smp_create_idle(unsigned int cpu)
602{
603 struct task_struct *p;
604
605 /*
606 * don't care about the psw and regs settings since we'll never
607 * reschedule the forked task.
608 */
609 p = fork_idle(cpu);
610 if (IS_ERR(p))
611 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
612 current_set[cpu] = p;
613}
614
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100615static int __cpuinit smp_alloc_lowcore(int cpu)
616{
617 unsigned long async_stack, panic_stack;
618 struct _lowcore *lowcore;
619 int lc_order;
620
621 lc_order = sizeof(long) == 8 ? 1 : 0;
622 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, lc_order);
623 if (!lowcore)
624 return -ENOMEM;
625 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100626 panic_stack = __get_free_page(GFP_KERNEL);
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100627 if (!panic_stack || !async_stack)
628 goto out;
Heiko Carstens98c7b382008-03-05 12:37:09 +0100629 memcpy(lowcore, &S390_lowcore, 512);
630 memset((char *)lowcore + 512, 0, sizeof(*lowcore) - 512);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100631 lowcore->async_stack = async_stack + ASYNC_SIZE;
632 lowcore->panic_stack = panic_stack + PAGE_SIZE;
633
634#ifndef CONFIG_64BIT
635 if (MACHINE_HAS_IEEE) {
636 unsigned long save_area;
637
638 save_area = get_zeroed_page(GFP_KERNEL);
639 if (!save_area)
640 goto out_save_area;
641 lowcore->extended_save_area_addr = (u32) save_area;
642 }
643#endif
644 lowcore_ptr[cpu] = lowcore;
645 return 0;
646
647#ifndef CONFIG_64BIT
648out_save_area:
649 free_page(panic_stack);
650#endif
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100651out:
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100652 free_pages(async_stack, ASYNC_ORDER);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100653 free_pages((unsigned long) lowcore, lc_order);
654 return -ENOMEM;
655}
656
657#ifdef CONFIG_HOTPLUG_CPU
658static void smp_free_lowcore(int cpu)
659{
660 struct _lowcore *lowcore;
661 int lc_order;
662
663 lc_order = sizeof(long) == 8 ? 1 : 0;
664 lowcore = lowcore_ptr[cpu];
665#ifndef CONFIG_64BIT
666 if (MACHINE_HAS_IEEE)
667 free_page((unsigned long) lowcore->extended_save_area_addr);
668#endif
669 free_page(lowcore->panic_stack - PAGE_SIZE);
670 free_pages(lowcore->async_stack - ASYNC_SIZE, ASYNC_ORDER);
671 free_pages((unsigned long) lowcore, lc_order);
672 lowcore_ptr[cpu] = NULL;
673}
674#endif /* CONFIG_HOTPLUG_CPU */
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/* Upping and downing of CPUs */
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100677int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679 struct task_struct *idle;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200680 struct _lowcore *cpu_lowcore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 struct stack_frame *sf;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200682 sigp_ccode ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Heiko Carstens08d07962008-01-26 14:10:56 +0100684 if (smp_cpu_state[cpu] != CPU_STATE_CONFIGURED)
685 return -EIO;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100686 if (smp_alloc_lowcore(cpu))
687 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 ccode = signal_processor_p((__u32)(unsigned long)(lowcore_ptr[cpu]),
690 cpu, sigp_set_prefix);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200691 if (ccode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 printk("sigp_set_prefix failed for cpu %d "
693 "with condition code %d\n",
694 (int) cpu, (int) ccode);
695 return -EIO;
696 }
697
698 idle = current_set[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200699 cpu_lowcore = lowcore_ptr[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 cpu_lowcore->kernel_stack = (unsigned long)
Heiko Carstens39ce0102007-04-27 16:02:00 +0200701 task_stack_page(idle) + THREAD_SIZE;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100702 cpu_lowcore->thread_info = (unsigned long) task_thread_info(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
704 - sizeof(struct pt_regs)
705 - sizeof(struct stack_frame));
706 memset(sf, 0, sizeof(struct stack_frame));
707 sf->gprs[9] = (unsigned long) sf;
708 cpu_lowcore->save_area[15] = (unsigned long) sf;
Segher Boessenkool24d3e212008-06-10 10:03:23 +0200709 __ctl_store(cpu_lowcore->cregs_save_area, 0, 15);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200710 asm volatile(
711 " stam 0,15,0(%0)"
712 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200714 cpu_lowcore->current_task = (unsigned long) idle;
715 cpu_lowcore->cpu_data.cpu_nr = cpu;
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100716 cpu_lowcore->kernel_asce = S390_lowcore.kernel_asce;
717 cpu_lowcore->ipl_device = S390_lowcore.ipl_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 eieio();
Michael Ryan699ff132006-03-24 03:15:17 -0800719
Heiko Carstens39ce0102007-04-27 16:02:00 +0200720 while (signal_processor(cpu, sigp_restart) == sigp_busy)
Michael Ryan699ff132006-03-24 03:15:17 -0800721 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 while (!cpu_online(cpu))
724 cpu_relax();
725 return 0;
726}
727
Heiko Carstens37a33022006-02-17 13:52:47 -0800728static int __init setup_possible_cpus(char *s)
729{
Heiko Carstens48483b32008-01-26 14:11:05 +0100730 int pcpus, cpu;
731
732 pcpus = simple_strtoul(s, NULL, 0);
733 cpu_possible_map = cpumask_of_cpu(0);
734 for (cpu = 1; cpu < pcpus && cpu < NR_CPUS; cpu++)
735 cpu_set(cpu, cpu_possible_map);
Heiko Carstens37a33022006-02-17 13:52:47 -0800736 return 0;
737}
738early_param("possible_cpus", setup_possible_cpus);
739
Heiko Carstens48483b32008-01-26 14:11:05 +0100740#ifdef CONFIG_HOTPLUG_CPU
741
Heiko Carstens39ce0102007-04-27 16:02:00 +0200742int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200744 struct ec_creg_mask_parms cr_parms;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700745 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700747 cpu_clear(cpu, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /* Disable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100750 pfault_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200752 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
753 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200755 /* disable all external interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 cr_parms.orvals[0] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200757 cr_parms.andvals[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 |
758 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /* disable all I/O interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 cr_parms.orvals[6] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200761 cr_parms.andvals[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 |
762 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /* disable most machine checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 cr_parms.orvals[14] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200765 cr_parms.andvals[14] = ~(1 << 28 | 1 << 27 | 1 << 26 |
766 1 << 25 | 1 << 24);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 smp_ctl_bit_callback(&cr_parms);
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 0;
771}
772
Heiko Carstens39ce0102007-04-27 16:02:00 +0200773void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 /* Wait until target cpu is down */
776 while (!smp_cpu_not_running(cpu))
777 cpu_relax();
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100778 smp_free_lowcore(cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100779 printk(KERN_INFO "Processor %d spun down\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Heiko Carstens39ce0102007-04-27 16:02:00 +0200782void cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 idle_task_exit();
785 signal_processor(smp_processor_id(), sigp_stop);
786 BUG();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200787 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Heiko Carstens255acee2006-02-17 13:52:46 -0800790#endif /* CONFIG_HOTPLUG_CPU */
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792void __init smp_prepare_cpus(unsigned int max_cpus)
793{
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100794#ifndef CONFIG_64BIT
795 unsigned long save_area = 0;
796#endif
797 unsigned long async_stack, panic_stack;
798 struct _lowcore *lowcore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 unsigned int cpu;
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100800 int lc_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Heiko Carstens48483b32008-01-26 14:11:05 +0100802 smp_detect_cpus();
803
Heiko Carstens39ce0102007-04-27 16:02:00 +0200804 /* request the 0x1201 emergency signal external interrupt */
805 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
806 panic("Couldn't request external interrupt 0x1201");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 print_cpu_info(&S390_lowcore.cpu_data);
808
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100809 /* Reallocate current lowcore, but keep its contents. */
810 lc_order = sizeof(long) == 8 ? 1 : 0;
811 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, lc_order);
812 panic_stack = __get_free_page(GFP_KERNEL);
813 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800814#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700815 if (MACHINE_HAS_IEEE)
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100816 save_area = get_zeroed_page(GFP_KERNEL);
Heiko Carstens77fa2242005-06-25 14:55:30 -0700817#endif
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100818 local_irq_disable();
819 local_mcck_disable();
820 lowcore_ptr[smp_processor_id()] = lowcore;
821 *lowcore = S390_lowcore;
822 lowcore->panic_stack = panic_stack + PAGE_SIZE;
823 lowcore->async_stack = async_stack + ASYNC_SIZE;
824#ifndef CONFIG_64BIT
825 if (MACHINE_HAS_IEEE)
826 lowcore->extended_save_area_addr = (u32) save_area;
827#endif
828 set_prefix((u32)(unsigned long) lowcore);
829 local_mcck_enable();
830 local_irq_enable();
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800831 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (cpu != smp_processor_id())
833 smp_create_idle(cpu);
834}
835
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200836void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
838 BUG_ON(smp_processor_id() != 0);
839
Heiko Carstens48483b32008-01-26 14:11:05 +0100840 current_thread_info()->cpu = 0;
841 cpu_set(0, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 cpu_set(0, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 S390_lowcore.percpu_offset = __per_cpu_offset[0];
844 current_set[0] = current;
Heiko Carstens08d07962008-01-26 14:10:56 +0100845 smp_cpu_state[0] = CPU_STATE_CONFIGURED;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200846 smp_cpu_polarization[0] = POLARIZATION_UNKNWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200849void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853/*
854 * the frequency of the profiling timer can be changed
855 * by writing a multiplier value into /proc/profile.
856 *
857 * usually you want to run this on all CPUs ;)
858 */
859int setup_profiling_timer(unsigned int multiplier)
860{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Heiko Carstens08d07962008-01-26 14:10:56 +0100864#ifdef CONFIG_HOTPLUG_CPU
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200865static ssize_t cpu_configure_show(struct sys_device *dev,
866 struct sysdev_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100867{
868 ssize_t count;
869
870 mutex_lock(&smp_cpu_state_mutex);
871 count = sprintf(buf, "%d\n", smp_cpu_state[dev->id]);
872 mutex_unlock(&smp_cpu_state_mutex);
873 return count;
874}
875
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200876static ssize_t cpu_configure_store(struct sys_device *dev,
877 struct sysdev_attribute *attr,
878 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100879{
880 int cpu = dev->id;
881 int val, rc;
882 char delim;
883
884 if (sscanf(buf, "%d %c", &val, &delim) != 1)
885 return -EINVAL;
886 if (val != 0 && val != 1)
887 return -EINVAL;
888
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100889 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +0200890 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100891 rc = -EBUSY;
892 if (cpu_online(cpu))
893 goto out;
894 rc = 0;
895 switch (val) {
896 case 0:
897 if (smp_cpu_state[cpu] == CPU_STATE_CONFIGURED) {
898 rc = sclp_cpu_deconfigure(__cpu_logical_map[cpu]);
Heiko Carstensc10fde02008-04-17 07:46:13 +0200899 if (!rc) {
Heiko Carstens08d07962008-01-26 14:10:56 +0100900 smp_cpu_state[cpu] = CPU_STATE_STANDBY;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200901 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
902 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100903 }
904 break;
905 case 1:
906 if (smp_cpu_state[cpu] == CPU_STATE_STANDBY) {
907 rc = sclp_cpu_configure(__cpu_logical_map[cpu]);
Heiko Carstensc10fde02008-04-17 07:46:13 +0200908 if (!rc) {
Heiko Carstens08d07962008-01-26 14:10:56 +0100909 smp_cpu_state[cpu] = CPU_STATE_CONFIGURED;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200910 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
911 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100912 }
913 break;
914 default:
915 break;
916 }
917out:
Heiko Carstens08d07962008-01-26 14:10:56 +0100918 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +0200919 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100920 return rc ? rc : count;
921}
922static SYSDEV_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
923#endif /* CONFIG_HOTPLUG_CPU */
924
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200925static ssize_t cpu_polarization_show(struct sys_device *dev,
926 struct sysdev_attribute *attr, char *buf)
Heiko Carstensc10fde02008-04-17 07:46:13 +0200927{
928 int cpu = dev->id;
929 ssize_t count;
930
931 mutex_lock(&smp_cpu_state_mutex);
932 switch (smp_cpu_polarization[cpu]) {
933 case POLARIZATION_HRZ:
934 count = sprintf(buf, "horizontal\n");
935 break;
936 case POLARIZATION_VL:
937 count = sprintf(buf, "vertical:low\n");
938 break;
939 case POLARIZATION_VM:
940 count = sprintf(buf, "vertical:medium\n");
941 break;
942 case POLARIZATION_VH:
943 count = sprintf(buf, "vertical:high\n");
944 break;
945 default:
946 count = sprintf(buf, "unknown\n");
947 break;
948 }
949 mutex_unlock(&smp_cpu_state_mutex);
950 return count;
951}
952static SYSDEV_ATTR(polarization, 0444, cpu_polarization_show, NULL);
953
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200954static ssize_t show_cpu_address(struct sys_device *dev,
955 struct sysdev_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100956{
957 return sprintf(buf, "%d\n", __cpu_logical_map[dev->id]);
958}
959static SYSDEV_ATTR(address, 0444, show_cpu_address, NULL);
960
961
962static struct attribute *cpu_common_attrs[] = {
963#ifdef CONFIG_HOTPLUG_CPU
964 &attr_configure.attr,
965#endif
966 &attr_address.attr,
Heiko Carstensc10fde02008-04-17 07:46:13 +0200967 &attr_polarization.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +0100968 NULL,
969};
970
971static struct attribute_group cpu_common_attr_group = {
972 .attrs = cpu_common_attrs,
973};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200975static ssize_t show_capability(struct sys_device *dev,
976 struct sysdev_attribute *attr, char *buf)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200977{
978 unsigned int capability;
979 int rc;
980
981 rc = get_cpu_capability(&capability);
982 if (rc)
983 return rc;
984 return sprintf(buf, "%u\n", capability);
985}
986static SYSDEV_ATTR(capability, 0444, show_capability, NULL);
987
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200988static ssize_t show_idle_count(struct sys_device *dev,
989 struct sysdev_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +0200990{
991 struct s390_idle_data *idle;
992 unsigned long long idle_count;
993
994 idle = &per_cpu(s390_idle, dev->id);
995 spin_lock_irq(&idle->lock);
996 idle_count = idle->idle_count;
997 spin_unlock_irq(&idle->lock);
998 return sprintf(buf, "%llu\n", idle_count);
999}
1000static SYSDEV_ATTR(idle_count, 0444, show_idle_count, NULL);
1001
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001002static ssize_t show_idle_time(struct sys_device *dev,
1003 struct sysdev_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +02001004{
1005 struct s390_idle_data *idle;
1006 unsigned long long new_time;
1007
1008 idle = &per_cpu(s390_idle, dev->id);
1009 spin_lock_irq(&idle->lock);
1010 if (idle->in_idle) {
1011 new_time = get_clock();
1012 idle->idle_time += new_time - idle->idle_enter;
1013 idle->idle_enter = new_time;
1014 }
1015 new_time = idle->idle_time;
1016 spin_unlock_irq(&idle->lock);
Heiko Carstens69d39d62007-11-05 11:10:13 +01001017 return sprintf(buf, "%llu\n", new_time >> 12);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001018}
Heiko Carstens69d39d62007-11-05 11:10:13 +01001019static SYSDEV_ATTR(idle_time_us, 0444, show_idle_time, NULL);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001020
Heiko Carstens08d07962008-01-26 14:10:56 +01001021static struct attribute *cpu_online_attrs[] = {
Heiko Carstensfae8b222007-10-22 12:52:39 +02001022 &attr_capability.attr,
1023 &attr_idle_count.attr,
Heiko Carstens69d39d62007-11-05 11:10:13 +01001024 &attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001025 NULL,
1026};
1027
Heiko Carstens08d07962008-01-26 14:10:56 +01001028static struct attribute_group cpu_online_attr_group = {
1029 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +02001030};
1031
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001032static int __cpuinit smp_cpu_notify(struct notifier_block *self,
1033 unsigned long action, void *hcpu)
1034{
1035 unsigned int cpu = (unsigned int)(long)hcpu;
1036 struct cpu *c = &per_cpu(cpu_devices, cpu);
1037 struct sys_device *s = &c->sysdev;
Heiko Carstensfae8b222007-10-22 12:52:39 +02001038 struct s390_idle_data *idle;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001039
1040 switch (action) {
1041 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001042 case CPU_ONLINE_FROZEN:
Heiko Carstensfae8b222007-10-22 12:52:39 +02001043 idle = &per_cpu(s390_idle, cpu);
1044 spin_lock_irq(&idle->lock);
1045 idle->idle_enter = 0;
1046 idle->idle_time = 0;
1047 idle->idle_count = 0;
1048 spin_unlock_irq(&idle->lock);
Heiko Carstens08d07962008-01-26 14:10:56 +01001049 if (sysfs_create_group(&s->kobj, &cpu_online_attr_group))
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001050 return NOTIFY_BAD;
1051 break;
1052 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001053 case CPU_DEAD_FROZEN:
Heiko Carstens08d07962008-01-26 14:10:56 +01001054 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001055 break;
1056 }
1057 return NOTIFY_OK;
1058}
1059
1060static struct notifier_block __cpuinitdata smp_cpu_nb = {
Heiko Carstens39ce0102007-04-27 16:02:00 +02001061 .notifier_call = smp_cpu_notify,
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001062};
1063
Heiko Carstens2bc89b52008-02-05 16:50:40 +01001064static int __devinit smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +01001065{
1066 struct cpu *c = &per_cpu(cpu_devices, cpu);
1067 struct sys_device *s = &c->sysdev;
1068 int rc;
1069
1070 c->hotpluggable = 1;
1071 rc = register_cpu(c, cpu);
1072 if (rc)
1073 goto out;
1074 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1075 if (rc)
1076 goto out_cpu;
1077 if (!cpu_online(cpu))
1078 goto out;
1079 rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1080 if (!rc)
1081 return 0;
1082 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1083out_cpu:
1084#ifdef CONFIG_HOTPLUG_CPU
1085 unregister_cpu(c);
1086#endif
1087out:
1088 return rc;
1089}
1090
1091#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001092
Heiko Carstens67060d92008-05-30 10:03:27 +02001093int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001094{
1095 cpumask_t newcpus;
1096 int cpu;
1097 int rc;
1098
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001099 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001100 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +01001101 newcpus = cpu_present_map;
Heiko Carstens1e489512008-04-30 13:38:37 +02001102 rc = __smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001103 if (rc)
1104 goto out;
1105 cpus_andnot(newcpus, cpu_present_map, newcpus);
1106 for_each_cpu_mask(cpu, newcpus) {
1107 rc = smp_add_present_cpu(cpu);
1108 if (rc)
1109 cpu_clear(cpu, cpu_present_map);
1110 }
1111 rc = 0;
1112out:
Heiko Carstens08d07962008-01-26 14:10:56 +01001113 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001114 put_online_cpus();
Heiko Carstensc10fde02008-04-17 07:46:13 +02001115 if (!cpus_empty(newcpus))
1116 topology_schedule_update();
Heiko Carstens1e489512008-04-30 13:38:37 +02001117 return rc;
1118}
1119
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001120static ssize_t __ref rescan_store(struct sys_device *dev,
1121 struct sysdev_attribute *attr,
1122 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001123 size_t count)
1124{
1125 int rc;
1126
1127 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001128 return rc ? rc : count;
1129}
1130static SYSDEV_ATTR(rescan, 0200, NULL, rescan_store);
1131#endif /* CONFIG_HOTPLUG_CPU */
1132
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001133static ssize_t dispatching_show(struct sys_device *dev,
1134 struct sysdev_attribute *attr,
1135 char *buf)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001136{
1137 ssize_t count;
1138
1139 mutex_lock(&smp_cpu_state_mutex);
1140 count = sprintf(buf, "%d\n", cpu_management);
1141 mutex_unlock(&smp_cpu_state_mutex);
1142 return count;
1143}
1144
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001145static ssize_t dispatching_store(struct sys_device *dev,
1146 struct sysdev_attribute *attr,
1147 const char *buf, size_t count)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001148{
1149 int val, rc;
1150 char delim;
1151
1152 if (sscanf(buf, "%d %c", &val, &delim) != 1)
1153 return -EINVAL;
1154 if (val != 0 && val != 1)
1155 return -EINVAL;
1156 rc = 0;
Heiko Carstensc10fde02008-04-17 07:46:13 +02001157 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001158 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstensc10fde02008-04-17 07:46:13 +02001159 if (cpu_management == val)
1160 goto out;
1161 rc = topology_set_cpu_management(val);
1162 if (!rc)
1163 cpu_management = val;
1164out:
Heiko Carstensc10fde02008-04-17 07:46:13 +02001165 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001166 put_online_cpus();
Heiko Carstensc10fde02008-04-17 07:46:13 +02001167 return rc ? rc : count;
1168}
1169static SYSDEV_ATTR(dispatching, 0644, dispatching_show, dispatching_store);
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171static int __init topology_init(void)
1172{
1173 int cpu;
Heiko Carstensfae8b222007-10-22 12:52:39 +02001174 int rc;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001175
1176 register_cpu_notifier(&smp_cpu_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Heiko Carstens08d07962008-01-26 14:10:56 +01001178#ifdef CONFIG_HOTPLUG_CPU
1179 rc = sysfs_create_file(&cpu_sysdev_class.kset.kobj,
1180 &attr_rescan.attr);
1181 if (rc)
1182 return rc;
1183#endif
Heiko Carstensc10fde02008-04-17 07:46:13 +02001184 rc = sysfs_create_file(&cpu_sysdev_class.kset.kobj,
1185 &attr_dispatching.attr);
1186 if (rc)
1187 return rc;
Heiko Carstens08d07962008-01-26 14:10:56 +01001188 for_each_present_cpu(cpu) {
1189 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001190 if (rc)
1191 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 return 0;
1194}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195subsys_initcall(topology_init);