blob: f5046fd4930f018c7adef0c7ba6044933a6db364 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * An array with a pointer the lowcore of every CPU.
50 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051struct _lowcore *lowcore_ptr[NR_CPUS];
Heiko Carstens39ce0102007-04-27 16:02:00 +020052EXPORT_SYMBOL(lowcore_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Heiko Carstens255acee2006-02-17 13:52:46 -080054cpumask_t cpu_online_map = CPU_MASK_NONE;
Heiko Carstens39ce0102007-04-27 16:02:00 +020055EXPORT_SYMBOL(cpu_online_map);
56
Heiko Carstens48483b32008-01-26 14:11:05 +010057cpumask_t cpu_possible_map = CPU_MASK_ALL;
Heiko Carstens39ce0102007-04-27 16:02:00 +020058EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60static struct task_struct *current_set[NR_CPUS];
61
Heiko Carstens08d07962008-01-26 14:10:56 +010062static u8 smp_cpu_type;
63static int smp_use_sigp_detection;
64
65enum s390_cpu_state {
66 CPU_STATE_STANDBY,
67 CPU_STATE_CONFIGURED,
68};
69
70#ifdef CONFIG_HOTPLUG_CPU
71static DEFINE_MUTEX(smp_cpu_state_mutex);
72#endif
73static int smp_cpu_state[NR_CPUS];
74
75static DEFINE_PER_CPU(struct cpu, cpu_devices);
76DEFINE_PER_CPU(struct s390_idle_data, s390_idle);
77
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,
112 int nonatomic, 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
Heiko Carstens8da1aec2007-07-27 12:29:09 +0200142 spin_lock(&call_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 call_data = &data;
Jan Glauber63db6e82007-02-21 10:55:06 +0100144
145 for_each_cpu_mask(cpu, map)
146 smp_ext_bitcall(cpu, ec_call_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* Wait for response */
Jan Glauber63db6e82007-02-21 10:55:06 +0100149 while (!cpus_equal(map, data.started))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100152 while (!cpus_equal(map, data.finished))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 cpu_relax();
Heiko Carstens8da1aec2007-07-27 12:29:09 +0200154 spin_unlock(&call_lock);
Jan Glauber63db6e82007-02-21 10:55:06 +0100155out:
Heiko Carstens8da1aec2007-07-27 12:29:09 +0200156 if (local) {
157 local_irq_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100158 func(info);
Heiko Carstens8da1aec2007-07-27 12:29:09 +0200159 local_irq_enable();
160 }
Jan Glauber63db6e82007-02-21 10:55:06 +0100161}
162
163/*
164 * smp_call_function:
165 * @func: the function to run; this must be fast and non-blocking
166 * @info: an arbitrary pointer to pass to the function
167 * @nonatomic: unused
168 * @wait: if true, wait (atomically) until function has completed on other CPUs
169 *
170 * Run a function on all other CPUs.
171 *
Heiko Carstens39ce0102007-04-27 16:02:00 +0200172 * You must not call this function with disabled interrupts, from a
173 * hardware interrupt handler or from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100174 */
175int smp_call_function(void (*func) (void *info), void *info, int nonatomic,
176 int wait)
177{
178 cpumask_t map;
179
Heiko Carstens25864162007-03-05 23:35:41 +0100180 preempt_disable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100181 map = cpu_online_map;
182 cpu_clear(smp_processor_id(), map);
183 __smp_call_function_map(func, info, nonatomic, wait, map);
Heiko Carstens25864162007-03-05 23:35:41 +0100184 preempt_enable();
Jan Glauber63db6e82007-02-21 10:55:06 +0100185 return 0;
186}
187EXPORT_SYMBOL(smp_call_function);
188
189/*
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200190 * smp_call_function_single:
191 * @cpu: the CPU where func should run
Jan Glauber63db6e82007-02-21 10:55:06 +0100192 * @func: the function to run; this must be fast and non-blocking
193 * @info: an arbitrary pointer to pass to the function
194 * @nonatomic: unused
195 * @wait: if true, wait (atomically) until function has completed on other CPUs
Jan Glauber63db6e82007-02-21 10:55:06 +0100196 *
197 * Run a function on one processor.
198 *
Heiko Carstens39ce0102007-04-27 16:02:00 +0200199 * You must not call this function with disabled interrupts, from a
200 * hardware interrupt handler or from a bottom half.
Jan Glauber63db6e82007-02-21 10:55:06 +0100201 */
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200202int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
203 int nonatomic, int wait)
Jan Glauber63db6e82007-02-21 10:55:06 +0100204{
Heiko Carstens25864162007-03-05 23:35:41 +0100205 preempt_disable();
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200206 __smp_call_function_map(func, info, nonatomic, wait,
207 cpumask_of_cpu(cpu));
Heiko Carstens25864162007-03-05 23:35:41 +0100208 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return 0;
210}
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200211EXPORT_SYMBOL(smp_call_function_single);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Carsten Ottedab52092008-01-26 14:11:27 +0100213/**
214 * smp_call_function_mask(): Run a function on a set of other CPUs.
215 * @mask: The set of cpus to run on. Must not include the current cpu.
216 * @func: The function to run. This must be fast and non-blocking.
217 * @info: An arbitrary pointer to pass to the function.
218 * @wait: If true, wait (atomically) until function has completed on other CPUs.
219 *
220 * Returns 0 on success, else a negative status code.
221 *
222 * If @wait is true, then returns once @func has returned; otherwise
223 * it returns just before the target cpu calls @func.
224 *
225 * You must not call this function with disabled interrupts or from a
226 * hardware interrupt handler or from a bottom half handler.
227 */
Heiko Carstens37c5f712008-02-05 16:50:39 +0100228int smp_call_function_mask(cpumask_t mask, void (*func)(void *), void *info,
229 int wait)
Carsten Ottedab52092008-01-26 14:11:27 +0100230{
231 preempt_disable();
Heiko Carstens37c5f712008-02-05 16:50:39 +0100232 cpu_clear(smp_processor_id(), mask);
Carsten Ottedab52092008-01-26 14:11:27 +0100233 __smp_call_function_map(func, info, 0, wait, mask);
234 preempt_enable();
235 return 0;
236}
237EXPORT_SYMBOL(smp_call_function_mask);
238
Heiko Carstens677d7622007-11-20 11:13:37 +0100239void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200241 int cpu, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Heiko Carstens677d7622007-11-20 11:13:37 +0100243 /* Disable all interrupts/machine checks */
244 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
245
246 /* write magic number to zero page (absolute 0) */
247 lowcore_ptr[smp_processor_id()]->panic_magic = __PANIC_MAGIC;
248
Heiko Carstens39ce0102007-04-27 16:02:00 +0200249 /* stop all processors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 for_each_online_cpu(cpu) {
251 if (cpu == smp_processor_id())
252 continue;
253 do {
254 rc = signal_processor(cpu, sigp_stop);
255 } while (rc == sigp_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Heiko Carstens39ce0102007-04-27 16:02:00 +0200257 while (!smp_cpu_not_running(cpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100258 cpu_relax();
259 }
260}
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 * This is the main routine where commands issued by other
264 * cpus are handled.
265 */
266
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100267static void do_ext_call_interrupt(__u16 code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200269 unsigned long bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Heiko Carstens39ce0102007-04-27 16:02:00 +0200271 /*
272 * handle bit signal external calls
273 *
274 * For the ec_schedule signal we have to do nothing. All the work
275 * is done automatically when we return from the interrupt.
276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 bits = xchg(&S390_lowcore.ext_call_fast, 0);
278
Heiko Carstens39ce0102007-04-27 16:02:00 +0200279 if (test_bit(ec_call_function, &bits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 do_call_function();
281}
282
283/*
284 * Send an external call sigp to another cpu and return without waiting
285 * for its completion.
286 */
287static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
288{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200289 /*
290 * Set signaling bit in lowcore of target cpu and kick it
291 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200293 while (signal_processor(cpu, sigp_emergency_signal) == sigp_busy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 udelay(10);
295}
296
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800297#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/*
299 * this function sends a 'purge tlb' signal to another CPU.
300 */
301void smp_ptlb_callback(void *info)
302{
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200303 __tlb_flush_local();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306void smp_ptlb_all(void)
307{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200308 on_each_cpu(smp_ptlb_callback, NULL, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800311#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313/*
314 * this function sends a 'reschedule' IPI to another CPU.
315 * it goes straight through and wastes no time serializing
316 * anything. Worst case is that we lose a reschedule ...
317 */
318void smp_send_reschedule(int cpu)
319{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200320 smp_ext_bitcall(cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323/*
324 * parameter area for the set/clear control bit callbacks
325 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200326struct ec_creg_mask_parms {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 unsigned long orvals[16];
328 unsigned long andvals[16];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200329};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331/*
332 * callback for setting/clearing control bits
333 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200334static void smp_ctl_bit_callback(void *info)
335{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200336 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 unsigned long cregs[16];
338 int i;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200339
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200340 __ctl_store(cregs, 0, 15);
341 for (i = 0; i <= 15; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200343 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346/*
347 * Set a bit in a control register of all cpus
348 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200349void smp_ctl_set_bit(int cr, int bit)
350{
351 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200353 memset(&parms.orvals, 0, sizeof(parms.orvals));
354 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 parms.orvals[cr] = 1 << bit;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200356 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200358EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360/*
361 * Clear a bit in a control register of all cpus
362 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200363void smp_ctl_clear_bit(int cr, int bit)
364{
365 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200367 memset(&parms.orvals, 0, sizeof(parms.orvals));
368 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 parms.andvals[cr] = ~(1L << bit);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200370 on_each_cpu(smp_ctl_bit_callback, &parms, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200372EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Heiko Carstens08d07962008-01-26 14:10:56 +0100374/*
375 * In early ipl state a temp. logically cpu number is needed, so the sigp
376 * functions can be used to sense other cpus. Since NR_CPUS is >= 2 on
377 * CONFIG_SMP and the ipl cpu is logical cpu 0, it must be 1.
378 */
379#define CPU_INIT_NO 1
380
Michael Holzheu411ed322007-04-27 16:01:49 +0200381#if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_ZFCPDUMP_MODULE)
382
383/*
384 * zfcpdump_prefix_array holds prefix registers for the following scenario:
385 * 64 bit zfcpdump kernel and 31 bit kernel which is to be dumped. We have to
386 * save its prefix registers, since they get lost, when switching from 31 bit
387 * to 64 bit.
388 */
389unsigned int zfcpdump_prefix_array[NR_CPUS + 1] \
390 __attribute__((__section__(".data")));
391
Heiko Carstens285f6722007-07-10 11:24:13 +0200392static void __init smp_get_save_area(unsigned int cpu, unsigned int phy_cpu)
Michael Holzheu411ed322007-04-27 16:01:49 +0200393{
Michael Holzheu411ed322007-04-27 16:01:49 +0200394 if (ipl_info.type != IPL_TYPE_FCP_DUMP)
395 return;
Heiko Carstens285f6722007-07-10 11:24:13 +0200396 if (cpu >= NR_CPUS) {
397 printk(KERN_WARNING "Registers for cpu %i not saved since dump "
398 "kernel was compiled with NR_CPUS=%i\n", cpu, NR_CPUS);
399 return;
Michael Holzheu411ed322007-04-27 16:01:49 +0200400 }
Heiko Carstens48483b32008-01-26 14:11:05 +0100401 zfcpdump_save_areas[cpu] = kmalloc(sizeof(union save_area), GFP_KERNEL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100402 __cpu_logical_map[CPU_INIT_NO] = (__u16) phy_cpu;
403 while (signal_processor(CPU_INIT_NO, sigp_stop_and_store_status) ==
404 sigp_busy)
Heiko Carstens285f6722007-07-10 11:24:13 +0200405 cpu_relax();
406 memcpy(zfcpdump_save_areas[cpu],
407 (void *)(unsigned long) store_prefix() + SAVE_AREA_BASE,
408 SAVE_AREA_SIZE);
409#ifdef CONFIG_64BIT
410 /* copy original prefix register */
411 zfcpdump_save_areas[cpu]->s390x.pref_reg = zfcpdump_prefix_array[cpu];
412#endif
Michael Holzheu411ed322007-04-27 16:01:49 +0200413}
414
415union save_area *zfcpdump_save_areas[NR_CPUS + 1];
416EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
417
418#else
Heiko Carstens285f6722007-07-10 11:24:13 +0200419
420static inline void smp_get_save_area(unsigned int cpu, unsigned int phy_cpu) { }
421
422#endif /* CONFIG_ZFCPDUMP || CONFIG_ZFCPDUMP_MODULE */
Michael Holzheu411ed322007-04-27 16:01:49 +0200423
Heiko Carstens08d07962008-01-26 14:10:56 +0100424static int cpu_stopped(int cpu)
425{
426 __u32 status;
427
428 /* Check for stopped state */
429 if (signal_processor_ps(&status, 0, cpu, sigp_sense) ==
430 sigp_status_stored) {
431 if (status & 0x40)
432 return 1;
433 }
434 return 0;
435}
436
Heiko Carstens08d07962008-01-26 14:10:56 +0100437static int cpu_known(int cpu_id)
438{
439 int cpu;
440
441 for_each_present_cpu(cpu) {
442 if (__cpu_logical_map[cpu] == cpu_id)
443 return 1;
444 }
445 return 0;
446}
447
448static int smp_rescan_cpus_sigp(cpumask_t avail)
449{
450 int cpu_id, logical_cpu;
451
452 logical_cpu = first_cpu(avail);
453 if (logical_cpu == NR_CPUS)
454 return 0;
455 for (cpu_id = 0; cpu_id <= 65535; cpu_id++) {
456 if (cpu_known(cpu_id))
457 continue;
458 __cpu_logical_map[logical_cpu] = cpu_id;
459 if (!cpu_stopped(logical_cpu))
460 continue;
461 cpu_set(logical_cpu, cpu_present_map);
462 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
463 logical_cpu = next_cpu(logical_cpu, avail);
464 if (logical_cpu == NR_CPUS)
465 break;
466 }
467 return 0;
468}
469
Heiko Carstens48483b32008-01-26 14:11:05 +0100470static int smp_rescan_cpus_sclp(cpumask_t avail)
Heiko Carstens08d07962008-01-26 14:10:56 +0100471{
472 struct sclp_cpu_info *info;
473 int cpu_id, logical_cpu, cpu;
474 int rc;
475
476 logical_cpu = first_cpu(avail);
477 if (logical_cpu == NR_CPUS)
478 return 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100479 info = kmalloc(sizeof(*info), GFP_KERNEL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100480 if (!info)
481 return -ENOMEM;
482 rc = sclp_get_cpu_info(info);
483 if (rc)
484 goto out;
485 for (cpu = 0; cpu < info->combined; cpu++) {
486 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
487 continue;
488 cpu_id = info->cpu[cpu].address;
489 if (cpu_known(cpu_id))
490 continue;
491 __cpu_logical_map[logical_cpu] = cpu_id;
492 cpu_set(logical_cpu, cpu_present_map);
493 if (cpu >= info->configured)
494 smp_cpu_state[logical_cpu] = CPU_STATE_STANDBY;
495 else
496 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
497 logical_cpu = next_cpu(logical_cpu, avail);
498 if (logical_cpu == NR_CPUS)
499 break;
500 }
501out:
Heiko Carstens48483b32008-01-26 14:11:05 +0100502 kfree(info);
Heiko Carstens08d07962008-01-26 14:10:56 +0100503 return rc;
504}
505
506static int smp_rescan_cpus(void)
507{
508 cpumask_t avail;
509
Heiko Carstens48483b32008-01-26 14:11:05 +0100510 cpus_xor(avail, cpu_possible_map, cpu_present_map);
Heiko Carstens08d07962008-01-26 14:10:56 +0100511 if (smp_use_sigp_detection)
512 return smp_rescan_cpus_sigp(avail);
513 else
514 return smp_rescan_cpus_sclp(avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Heiko Carstens48483b32008-01-26 14:11:05 +0100517static void __init smp_detect_cpus(void)
518{
519 unsigned int cpu, c_cpus, s_cpus;
520 struct sclp_cpu_info *info;
521 u16 boot_cpu_addr, cpu_addr;
522
523 c_cpus = 1;
524 s_cpus = 0;
525 boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
526 info = kmalloc(sizeof(*info), GFP_KERNEL);
527 if (!info)
528 panic("smp_detect_cpus failed to allocate memory\n");
529 /* Use sigp detection algorithm if sclp doesn't work. */
530 if (sclp_get_cpu_info(info)) {
531 smp_use_sigp_detection = 1;
532 for (cpu = 0; cpu <= 65535; cpu++) {
533 if (cpu == boot_cpu_addr)
534 continue;
535 __cpu_logical_map[CPU_INIT_NO] = cpu;
536 if (!cpu_stopped(CPU_INIT_NO))
537 continue;
538 smp_get_save_area(c_cpus, cpu);
539 c_cpus++;
540 }
541 goto out;
542 }
543
544 if (info->has_cpu_type) {
545 for (cpu = 0; cpu < info->combined; cpu++) {
546 if (info->cpu[cpu].address == boot_cpu_addr) {
547 smp_cpu_type = info->cpu[cpu].type;
548 break;
549 }
550 }
551 }
552
553 for (cpu = 0; cpu < info->combined; cpu++) {
554 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
555 continue;
556 cpu_addr = info->cpu[cpu].address;
557 if (cpu_addr == boot_cpu_addr)
558 continue;
559 __cpu_logical_map[CPU_INIT_NO] = cpu_addr;
560 if (!cpu_stopped(CPU_INIT_NO)) {
561 s_cpus++;
562 continue;
563 }
564 smp_get_save_area(c_cpus, cpu_addr);
565 c_cpus++;
566 }
567out:
568 kfree(info);
569 printk(KERN_INFO "CPUs: %d configured, %d standby\n", c_cpus, s_cpus);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100570 get_online_cpus();
Heiko Carstens48483b32008-01-26 14:11:05 +0100571 smp_rescan_cpus();
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100572 put_online_cpus();
Heiko Carstens48483b32008-01-26 14:11:05 +0100573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200576 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200578int __cpuinit start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200580 /* Setup the cpu */
581 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800582 preempt_disable();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100583 /* Enable TOD clock interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200584 init_cpu_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585#ifdef CONFIG_VIRT_TIMER
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100586 /* Enable cpu timer interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200587 init_cpu_vtimer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /* Enable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100590 pfault_init();
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* Mark this cpu as online */
593 cpu_set(smp_processor_id(), cpu_online_map);
594 /* Switch on interrupts */
595 local_irq_enable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200596 /* Print info about this processor */
597 print_cpu_info(&S390_lowcore.cpu_data);
598 /* cpu_idle will call schedule for us */
599 cpu_idle();
600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603static void __init smp_create_idle(unsigned int cpu)
604{
605 struct task_struct *p;
606
607 /*
608 * don't care about the psw and regs settings since we'll never
609 * reschedule the forked task.
610 */
611 p = fork_idle(cpu);
612 if (IS_ERR(p))
613 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
614 current_set[cpu] = p;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200615 spin_lock_init(&(&per_cpu(s390_idle, cpu))->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100618static int __cpuinit smp_alloc_lowcore(int cpu)
619{
620 unsigned long async_stack, panic_stack;
621 struct _lowcore *lowcore;
622 int lc_order;
623
624 lc_order = sizeof(long) == 8 ? 1 : 0;
625 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, lc_order);
626 if (!lowcore)
627 return -ENOMEM;
628 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
629 if (!async_stack)
630 goto out_async_stack;
631 panic_stack = __get_free_page(GFP_KERNEL);
632 if (!panic_stack)
633 goto out_panic_stack;
634
635 *lowcore = S390_lowcore;
636 lowcore->async_stack = async_stack + ASYNC_SIZE;
637 lowcore->panic_stack = panic_stack + PAGE_SIZE;
638
639#ifndef CONFIG_64BIT
640 if (MACHINE_HAS_IEEE) {
641 unsigned long save_area;
642
643 save_area = get_zeroed_page(GFP_KERNEL);
644 if (!save_area)
645 goto out_save_area;
646 lowcore->extended_save_area_addr = (u32) save_area;
647 }
648#endif
649 lowcore_ptr[cpu] = lowcore;
650 return 0;
651
652#ifndef CONFIG_64BIT
653out_save_area:
654 free_page(panic_stack);
655#endif
656out_panic_stack:
657 free_pages(async_stack, ASYNC_ORDER);
658out_async_stack:
659 free_pages((unsigned long) lowcore, lc_order);
660 return -ENOMEM;
661}
662
663#ifdef CONFIG_HOTPLUG_CPU
664static void smp_free_lowcore(int cpu)
665{
666 struct _lowcore *lowcore;
667 int lc_order;
668
669 lc_order = sizeof(long) == 8 ? 1 : 0;
670 lowcore = lowcore_ptr[cpu];
671#ifndef CONFIG_64BIT
672 if (MACHINE_HAS_IEEE)
673 free_page((unsigned long) lowcore->extended_save_area_addr);
674#endif
675 free_page(lowcore->panic_stack - PAGE_SIZE);
676 free_pages(lowcore->async_stack - ASYNC_SIZE, ASYNC_ORDER);
677 free_pages((unsigned long) lowcore, lc_order);
678 lowcore_ptr[cpu] = NULL;
679}
680#endif /* CONFIG_HOTPLUG_CPU */
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682/* Upping and downing of CPUs */
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100683int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 struct task_struct *idle;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200686 struct _lowcore *cpu_lowcore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 struct stack_frame *sf;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200688 sigp_ccode ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Heiko Carstens08d07962008-01-26 14:10:56 +0100690 if (smp_cpu_state[cpu] != CPU_STATE_CONFIGURED)
691 return -EIO;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100692 if (smp_alloc_lowcore(cpu))
693 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 ccode = signal_processor_p((__u32)(unsigned long)(lowcore_ptr[cpu]),
696 cpu, sigp_set_prefix);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200697 if (ccode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 printk("sigp_set_prefix failed for cpu %d "
699 "with condition code %d\n",
700 (int) cpu, (int) ccode);
701 return -EIO;
702 }
703
704 idle = current_set[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200705 cpu_lowcore = lowcore_ptr[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 cpu_lowcore->kernel_stack = (unsigned long)
Heiko Carstens39ce0102007-04-27 16:02:00 +0200707 task_stack_page(idle) + THREAD_SIZE;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100708 cpu_lowcore->thread_info = (unsigned long) task_thread_info(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
710 - sizeof(struct pt_regs)
711 - sizeof(struct stack_frame));
712 memset(sf, 0, sizeof(struct stack_frame));
713 sf->gprs[9] = (unsigned long) sf;
714 cpu_lowcore->save_area[15] = (unsigned long) sf;
715 __ctl_store(cpu_lowcore->cregs_save_area[0], 0, 15);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200716 asm volatile(
717 " stam 0,15,0(%0)"
718 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200720 cpu_lowcore->current_task = (unsigned long) idle;
721 cpu_lowcore->cpu_data.cpu_nr = cpu;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100722 cpu_lowcore->softirq_pending = 0;
723 cpu_lowcore->ext_call_fast = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 eieio();
Michael Ryan699ff132006-03-24 03:15:17 -0800725
Heiko Carstens39ce0102007-04-27 16:02:00 +0200726 while (signal_processor(cpu, sigp_restart) == sigp_busy)
Michael Ryan699ff132006-03-24 03:15:17 -0800727 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 while (!cpu_online(cpu))
730 cpu_relax();
731 return 0;
732}
733
Heiko Carstens37a33022006-02-17 13:52:47 -0800734static int __init setup_possible_cpus(char *s)
735{
Heiko Carstens48483b32008-01-26 14:11:05 +0100736 int pcpus, cpu;
737
738 pcpus = simple_strtoul(s, NULL, 0);
739 cpu_possible_map = cpumask_of_cpu(0);
740 for (cpu = 1; cpu < pcpus && cpu < NR_CPUS; cpu++)
741 cpu_set(cpu, cpu_possible_map);
Heiko Carstens37a33022006-02-17 13:52:47 -0800742 return 0;
743}
744early_param("possible_cpus", setup_possible_cpus);
745
Heiko Carstens48483b32008-01-26 14:11:05 +0100746#ifdef CONFIG_HOTPLUG_CPU
747
Heiko Carstens39ce0102007-04-27 16:02:00 +0200748int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200750 struct ec_creg_mask_parms cr_parms;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700751 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700753 cpu_clear(cpu, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 /* Disable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100756 pfault_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200758 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
759 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200761 /* disable all external interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 cr_parms.orvals[0] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200763 cr_parms.andvals[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 |
764 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /* disable all I/O interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 cr_parms.orvals[6] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200767 cr_parms.andvals[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 |
768 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /* disable most machine checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 cr_parms.orvals[14] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200771 cr_parms.andvals[14] = ~(1 << 28 | 1 << 27 | 1 << 26 |
772 1 << 25 | 1 << 24);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 smp_ctl_bit_callback(&cr_parms);
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return 0;
777}
778
Heiko Carstens39ce0102007-04-27 16:02:00 +0200779void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 /* Wait until target cpu is down */
782 while (!smp_cpu_not_running(cpu))
783 cpu_relax();
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100784 smp_free_lowcore(cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100785 printk(KERN_INFO "Processor %d spun down\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Heiko Carstens39ce0102007-04-27 16:02:00 +0200788void cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 idle_task_exit();
791 signal_processor(smp_processor_id(), sigp_stop);
792 BUG();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200793 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
Heiko Carstens255acee2006-02-17 13:52:46 -0800796#endif /* CONFIG_HOTPLUG_CPU */
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798void __init smp_prepare_cpus(unsigned int max_cpus)
799{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 unsigned int cpu;
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");
807 memset(lowcore_ptr, 0, sizeof(lowcore_ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 print_cpu_info(&S390_lowcore.cpu_data);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100809 smp_alloc_lowcore(smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800811#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700812 if (MACHINE_HAS_IEEE)
813 ctl_set_bit(14, 29); /* enable extended save area */
814#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 set_prefix((u32)(unsigned long) lowcore_ptr[smp_processor_id()]);
816
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800817 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (cpu != smp_processor_id())
819 smp_create_idle(cpu);
820}
821
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200822void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 BUG_ON(smp_processor_id() != 0);
825
Heiko Carstens48483b32008-01-26 14:11:05 +0100826 current_thread_info()->cpu = 0;
827 cpu_set(0, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 cpu_set(0, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 S390_lowcore.percpu_offset = __per_cpu_offset[0];
830 current_set[0] = current;
Heiko Carstens08d07962008-01-26 14:10:56 +0100831 smp_cpu_state[0] = CPU_STATE_CONFIGURED;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200832 spin_lock_init(&(&__get_cpu_var(s390_idle))->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200835void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
839/*
840 * the frequency of the profiling timer can be changed
841 * by writing a multiplier value into /proc/profile.
842 *
843 * usually you want to run this on all CPUs ;)
844 */
845int setup_profiling_timer(unsigned int multiplier)
846{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200847 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Heiko Carstens08d07962008-01-26 14:10:56 +0100850#ifdef CONFIG_HOTPLUG_CPU
851static ssize_t cpu_configure_show(struct sys_device *dev, char *buf)
852{
853 ssize_t count;
854
855 mutex_lock(&smp_cpu_state_mutex);
856 count = sprintf(buf, "%d\n", smp_cpu_state[dev->id]);
857 mutex_unlock(&smp_cpu_state_mutex);
858 return count;
859}
860
861static ssize_t cpu_configure_store(struct sys_device *dev, const char *buf,
862 size_t count)
863{
864 int cpu = dev->id;
865 int val, rc;
866 char delim;
867
868 if (sscanf(buf, "%d %c", &val, &delim) != 1)
869 return -EINVAL;
870 if (val != 0 && val != 1)
871 return -EINVAL;
872
873 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100874 get_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100875 rc = -EBUSY;
876 if (cpu_online(cpu))
877 goto out;
878 rc = 0;
879 switch (val) {
880 case 0:
881 if (smp_cpu_state[cpu] == CPU_STATE_CONFIGURED) {
882 rc = sclp_cpu_deconfigure(__cpu_logical_map[cpu]);
883 if (!rc)
884 smp_cpu_state[cpu] = CPU_STATE_STANDBY;
885 }
886 break;
887 case 1:
888 if (smp_cpu_state[cpu] == CPU_STATE_STANDBY) {
889 rc = sclp_cpu_configure(__cpu_logical_map[cpu]);
890 if (!rc)
891 smp_cpu_state[cpu] = CPU_STATE_CONFIGURED;
892 }
893 break;
894 default:
895 break;
896 }
897out:
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100898 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100899 mutex_unlock(&smp_cpu_state_mutex);
900 return rc ? rc : count;
901}
902static SYSDEV_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
903#endif /* CONFIG_HOTPLUG_CPU */
904
905static ssize_t show_cpu_address(struct sys_device *dev, char *buf)
906{
907 return sprintf(buf, "%d\n", __cpu_logical_map[dev->id]);
908}
909static SYSDEV_ATTR(address, 0444, show_cpu_address, NULL);
910
911
912static struct attribute *cpu_common_attrs[] = {
913#ifdef CONFIG_HOTPLUG_CPU
914 &attr_configure.attr,
915#endif
916 &attr_address.attr,
917 NULL,
918};
919
920static struct attribute_group cpu_common_attr_group = {
921 .attrs = cpu_common_attrs,
922};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200924static ssize_t show_capability(struct sys_device *dev, char *buf)
925{
926 unsigned int capability;
927 int rc;
928
929 rc = get_cpu_capability(&capability);
930 if (rc)
931 return rc;
932 return sprintf(buf, "%u\n", capability);
933}
934static SYSDEV_ATTR(capability, 0444, show_capability, NULL);
935
Heiko Carstensfae8b222007-10-22 12:52:39 +0200936static ssize_t show_idle_count(struct sys_device *dev, char *buf)
937{
938 struct s390_idle_data *idle;
939 unsigned long long idle_count;
940
941 idle = &per_cpu(s390_idle, dev->id);
942 spin_lock_irq(&idle->lock);
943 idle_count = idle->idle_count;
944 spin_unlock_irq(&idle->lock);
945 return sprintf(buf, "%llu\n", idle_count);
946}
947static SYSDEV_ATTR(idle_count, 0444, show_idle_count, NULL);
948
949static ssize_t show_idle_time(struct sys_device *dev, char *buf)
950{
951 struct s390_idle_data *idle;
952 unsigned long long new_time;
953
954 idle = &per_cpu(s390_idle, dev->id);
955 spin_lock_irq(&idle->lock);
956 if (idle->in_idle) {
957 new_time = get_clock();
958 idle->idle_time += new_time - idle->idle_enter;
959 idle->idle_enter = new_time;
960 }
961 new_time = idle->idle_time;
962 spin_unlock_irq(&idle->lock);
Heiko Carstens69d39d62007-11-05 11:10:13 +0100963 return sprintf(buf, "%llu\n", new_time >> 12);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200964}
Heiko Carstens69d39d62007-11-05 11:10:13 +0100965static SYSDEV_ATTR(idle_time_us, 0444, show_idle_time, NULL);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200966
Heiko Carstens08d07962008-01-26 14:10:56 +0100967static struct attribute *cpu_online_attrs[] = {
Heiko Carstensfae8b222007-10-22 12:52:39 +0200968 &attr_capability.attr,
969 &attr_idle_count.attr,
Heiko Carstens69d39d62007-11-05 11:10:13 +0100970 &attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +0200971 NULL,
972};
973
Heiko Carstens08d07962008-01-26 14:10:56 +0100974static struct attribute_group cpu_online_attr_group = {
975 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +0200976};
977
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200978static int __cpuinit smp_cpu_notify(struct notifier_block *self,
979 unsigned long action, void *hcpu)
980{
981 unsigned int cpu = (unsigned int)(long)hcpu;
982 struct cpu *c = &per_cpu(cpu_devices, cpu);
983 struct sys_device *s = &c->sysdev;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200984 struct s390_idle_data *idle;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200985
986 switch (action) {
987 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700988 case CPU_ONLINE_FROZEN:
Heiko Carstensfae8b222007-10-22 12:52:39 +0200989 idle = &per_cpu(s390_idle, cpu);
990 spin_lock_irq(&idle->lock);
991 idle->idle_enter = 0;
992 idle->idle_time = 0;
993 idle->idle_count = 0;
994 spin_unlock_irq(&idle->lock);
Heiko Carstens08d07962008-01-26 14:10:56 +0100995 if (sysfs_create_group(&s->kobj, &cpu_online_attr_group))
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200996 return NOTIFY_BAD;
997 break;
998 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700999 case CPU_DEAD_FROZEN:
Heiko Carstens08d07962008-01-26 14:10:56 +01001000 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001001 break;
1002 }
1003 return NOTIFY_OK;
1004}
1005
1006static struct notifier_block __cpuinitdata smp_cpu_nb = {
Heiko Carstens39ce0102007-04-27 16:02:00 +02001007 .notifier_call = smp_cpu_notify,
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001008};
1009
Heiko Carstens08d07962008-01-26 14:10:56 +01001010static int smp_add_present_cpu(int cpu)
1011{
1012 struct cpu *c = &per_cpu(cpu_devices, cpu);
1013 struct sys_device *s = &c->sysdev;
1014 int rc;
1015
1016 c->hotpluggable = 1;
1017 rc = register_cpu(c, cpu);
1018 if (rc)
1019 goto out;
1020 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
1021 if (rc)
1022 goto out_cpu;
1023 if (!cpu_online(cpu))
1024 goto out;
1025 rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
1026 if (!rc)
1027 return 0;
1028 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
1029out_cpu:
1030#ifdef CONFIG_HOTPLUG_CPU
1031 unregister_cpu(c);
1032#endif
1033out:
1034 return rc;
1035}
1036
1037#ifdef CONFIG_HOTPLUG_CPU
1038static ssize_t rescan_store(struct sys_device *dev, const char *buf,
1039 size_t count)
1040{
1041 cpumask_t newcpus;
1042 int cpu;
1043 int rc;
1044
1045 mutex_lock(&smp_cpu_state_mutex);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001046 get_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001047 newcpus = cpu_present_map;
1048 rc = smp_rescan_cpus();
1049 if (rc)
1050 goto out;
1051 cpus_andnot(newcpus, cpu_present_map, newcpus);
1052 for_each_cpu_mask(cpu, newcpus) {
1053 rc = smp_add_present_cpu(cpu);
1054 if (rc)
1055 cpu_clear(cpu, cpu_present_map);
1056 }
1057 rc = 0;
1058out:
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001059 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001060 mutex_unlock(&smp_cpu_state_mutex);
1061 return rc ? rc : count;
1062}
1063static SYSDEV_ATTR(rescan, 0200, NULL, rescan_store);
1064#endif /* CONFIG_HOTPLUG_CPU */
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066static int __init topology_init(void)
1067{
1068 int cpu;
Heiko Carstensfae8b222007-10-22 12:52:39 +02001069 int rc;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001070
1071 register_cpu_notifier(&smp_cpu_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Heiko Carstens08d07962008-01-26 14:10:56 +01001073#ifdef CONFIG_HOTPLUG_CPU
1074 rc = sysfs_create_file(&cpu_sysdev_class.kset.kobj,
1075 &attr_rescan.attr);
1076 if (rc)
1077 return rc;
1078#endif
1079 for_each_present_cpu(cpu) {
1080 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001081 if (rc)
1082 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084 return 0;
1085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086subsys_initcall(topology_init);