blob: 94cf510b8fe181850e36acdeaa8a9fa65b1397b7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/kernel/smp.c
3 *
Hans-Joachim Picht155af2f2009-06-16 10:30:52 +02004 * Copyright IBM Corp. 1999, 2009
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
Martin Schwidefsky395d31d2008-12-25 13:39:50 +010023#define KMSG_COMPONENT "cpu"
24#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040029#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/spinlock.h>
31#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/delay.h>
33#include <linux/cache.h>
34#include <linux/interrupt.h>
Christian Borntraeger3324e602009-03-26 15:23:56 +010035#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/cpu.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010037#include <linux/timex.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020038#include <linux/bootmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010040#include <asm/asm-offsets.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010041#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010042#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/sigp.h>
44#include <asm/pgalloc.h>
45#include <asm/irq.h>
46#include <asm/s390_ext.h>
47#include <asm/cpcmd.h>
48#include <asm/tlbflush.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010049#include <asm/timer.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020050#include <asm/lowcore.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010051#include <asm/sclp.h>
Martin Schwidefsky76d4e002009-06-12 10:26:21 +020052#include <asm/cputime.h>
Martin Schwidefskyc742b312008-12-31 15:11:42 +010053#include <asm/vdso.h>
Heiko Carstens4bb5e072009-09-11 10:29:03 +020054#include <asm/cpu.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020055#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Heiko Carstensfb380aa2010-01-13 20:44:37 +010057/* logical cpu to cpu address */
Heiko Carstensa93b8ec2010-02-26 22:37:35 +010058unsigned short __cpu_logical_map[NR_CPUS];
Heiko Carstensfb380aa2010-01-13 20:44:37 +010059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static 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
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020070DEFINE_MUTEX(smp_cpu_state_mutex);
Heiko Carstensc10fde02008-04-17 07:46:13 +020071int smp_cpu_polarization[NR_CPUS];
Heiko Carstens08d07962008-01-26 14:10:56 +010072static int smp_cpu_state[NR_CPUS];
Heiko Carstensc10fde02008-04-17 07:46:13 +020073static int cpu_management;
Heiko Carstens08d07962008-01-26 14:10:56 +010074
75static DEFINE_PER_CPU(struct cpu, cpu_devices);
Heiko Carstens08d07962008-01-26 14:10:56 +010076
Heiko Carstensa93b8ec2010-02-26 22:37:35 +010077static void smp_ext_bitcall(int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Heiko Carstensa93b8ec2010-02-26 22:37:35 +010079static int raw_cpu_stopped(int cpu)
Heiko Carstens5c0b9122009-09-11 10:29:05 +020080{
Heiko Carstensa93b8ec2010-02-26 22:37:35 +010081 u32 status;
Heiko Carstens5c0b9122009-09-11 10:29:05 +020082
Heiko Carstensa93b8ec2010-02-26 22:37:35 +010083 switch (raw_sigp_ps(&status, 0, cpu, sigp_sense)) {
Heiko Carstens5c0b9122009-09-11 10:29:05 +020084 case sigp_status_stored:
85 /* Check for stopped and check stop state */
86 if (status & 0x50)
87 return 1;
88 break;
89 default:
90 break;
91 }
92 return 0;
93}
94
Heiko Carstensa93b8ec2010-02-26 22:37:35 +010095static inline int cpu_stopped(int cpu)
96{
97 return raw_cpu_stopped(cpu_logical_map(cpu));
98}
99
Heiko Carstens2c2df112010-02-26 22:37:34 +0100100void smp_switch_to_ipl_cpu(void (*func)(void *), void *data)
101{
102 struct _lowcore *lc, *current_lc;
103 struct stack_frame *sf;
104 struct pt_regs *regs;
105 unsigned long sp;
106
107 if (smp_processor_id() == 0)
108 func(data);
109 __load_psw_mask(PSW_BASE_BITS | PSW_DEFAULT_KEY);
110 /* Disable lowcore protection */
111 __ctl_clear_bit(0, 28);
112 current_lc = lowcore_ptr[smp_processor_id()];
113 lc = lowcore_ptr[0];
114 if (!lc)
115 lc = current_lc;
116 lc->restart_psw.mask = PSW_BASE_BITS | PSW_DEFAULT_KEY;
117 lc->restart_psw.addr = PSW_ADDR_AMODE | (unsigned long) smp_restart_cpu;
118 if (!cpu_online(0))
119 smp_switch_to_cpu(func, data, 0, stap(), __cpu_logical_map[0]);
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100120 while (sigp(0, sigp_stop_and_store_status) == sigp_busy)
Heiko Carstens2c2df112010-02-26 22:37:34 +0100121 cpu_relax();
122 sp = lc->panic_stack;
123 sp -= sizeof(struct pt_regs);
124 regs = (struct pt_regs *) sp;
125 memcpy(&regs->gprs, &current_lc->gpregs_save_area, sizeof(regs->gprs));
Heiko Carstenscbb870c2010-02-26 22:37:43 +0100126 regs->psw = lc->psw_save_area;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100127 sp -= STACK_FRAME_OVERHEAD;
128 sf = (struct stack_frame *) sp;
129 sf->back_chain = regs->gprs[15];
130 smp_switch_to_cpu(func, data, sp, stap(), __cpu_logical_map[0]);
131}
132
Heiko Carstens677d7622007-11-20 11:13:37 +0100133void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200135 int cpu, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Heiko Carstens677d7622007-11-20 11:13:37 +0100137 /* Disable all interrupts/machine checks */
138 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
Christian Borntraeger3324e602009-03-26 15:23:56 +0100139 trace_hardirqs_off();
Heiko Carstens677d7622007-11-20 11:13:37 +0100140
Heiko Carstens39ce0102007-04-27 16:02:00 +0200141 /* stop all processors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 for_each_online_cpu(cpu) {
143 if (cpu == smp_processor_id())
144 continue;
145 do {
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100146 rc = sigp(cpu, sigp_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 } while (rc == sigp_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Heiko Carstens5c0b9122009-09-11 10:29:05 +0200149 while (!cpu_stopped(cpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +0100150 cpu_relax();
151 }
152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * This is the main routine where commands issued by other
156 * cpus are handled.
157 */
158
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200159static void do_ext_call_interrupt(unsigned int ext_int_code,
160 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200162 unsigned long bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Heiko Carstens39ce0102007-04-27 16:02:00 +0200164 /*
165 * handle bit signal external calls
166 *
167 * For the ec_schedule signal we have to do nothing. All the work
168 * is done automatically when we return from the interrupt.
169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 bits = xchg(&S390_lowcore.ext_call_fast, 0);
171
Heiko Carstens39ce0102007-04-27 16:02:00 +0200172 if (test_bit(ec_call_function, &bits))
Heiko Carstensca9fc752008-12-25 13:38:39 +0100173 generic_smp_call_function_interrupt();
174
175 if (test_bit(ec_call_function_single, &bits))
176 generic_smp_call_function_single_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/*
180 * Send an external call sigp to another cpu and return without waiting
181 * for its completion.
182 */
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100183static void smp_ext_bitcall(int cpu, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200185 /*
186 * Set signaling bit in lowcore of target cpu and kick it
187 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100189 while (sigp(cpu, sigp_emergency_signal) == sigp_busy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 udelay(10);
191}
192
Rusty Russell630cd042009-09-24 09:34:45 -0600193void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100194{
195 int cpu;
196
Rusty Russell630cd042009-09-24 09:34:45 -0600197 for_each_cpu(cpu, mask)
Heiko Carstensca9fc752008-12-25 13:38:39 +0100198 smp_ext_bitcall(cpu, ec_call_function);
199}
200
201void arch_send_call_function_single_ipi(int cpu)
202{
203 smp_ext_bitcall(cpu, ec_call_function_single);
204}
205
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800206#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/*
208 * this function sends a 'purge tlb' signal to another CPU.
209 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200210static void smp_ptlb_callback(void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200212 __tlb_flush_local();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215void smp_ptlb_all(void)
216{
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200217 on_each_cpu(smp_ptlb_callback, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800220#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/*
223 * this function sends a 'reschedule' IPI to another CPU.
224 * it goes straight through and wastes no time serializing
225 * anything. Worst case is that we lose a reschedule ...
226 */
227void smp_send_reschedule(int cpu)
228{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200229 smp_ext_bitcall(cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
232/*
233 * parameter area for the set/clear control bit callbacks
234 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200235struct ec_creg_mask_parms {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 unsigned long orvals[16];
237 unsigned long andvals[16];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200238};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240/*
241 * callback for setting/clearing control bits
242 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200243static void smp_ctl_bit_callback(void *info)
244{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200245 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 unsigned long cregs[16];
247 int i;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200248
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200249 __ctl_store(cregs, 0, 15);
250 for (i = 0; i <= 15; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200252 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255/*
256 * Set a bit in a control register of all cpus
257 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200258void smp_ctl_set_bit(int cr, int bit)
259{
260 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200262 memset(&parms.orvals, 0, sizeof(parms.orvals));
263 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 parms.orvals[cr] = 1 << bit;
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200265 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200267EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269/*
270 * Clear a bit in a control register of all cpus
271 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200272void smp_ctl_clear_bit(int cr, int bit)
273{
274 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200276 memset(&parms.orvals, 0, sizeof(parms.orvals));
277 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 parms.andvals[cr] = ~(1L << bit);
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200279 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200281EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Michael Holzheu59f2e692009-03-26 15:24:46 +0100283#ifdef CONFIG_ZFCPDUMP
Michael Holzheu411ed322007-04-27 16:01:49 +0200284
Heiko Carstens285f6722007-07-10 11:24:13 +0200285static void __init smp_get_save_area(unsigned int cpu, unsigned int phy_cpu)
Michael Holzheu411ed322007-04-27 16:01:49 +0200286{
Michael Holzheu411ed322007-04-27 16:01:49 +0200287 if (ipl_info.type != IPL_TYPE_FCP_DUMP)
288 return;
Heiko Carstens285f6722007-07-10 11:24:13 +0200289 if (cpu >= NR_CPUS) {
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100290 pr_warning("CPU %i exceeds the maximum %i and is excluded from "
291 "the dump\n", cpu, NR_CPUS - 1);
Heiko Carstens285f6722007-07-10 11:24:13 +0200292 return;
Michael Holzheu411ed322007-04-27 16:01:49 +0200293 }
Heiko Carstensf64ca212010-02-26 22:37:32 +0100294 zfcpdump_save_areas[cpu] = kmalloc(sizeof(struct save_area), GFP_KERNEL);
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100295 while (raw_sigp(phy_cpu, sigp_stop_and_store_status) == sigp_busy)
Heiko Carstens285f6722007-07-10 11:24:13 +0200296 cpu_relax();
Michael Holzheu92fe3132010-03-24 11:49:50 +0100297 memcpy_real(zfcpdump_save_areas[cpu],
298 (void *)(unsigned long) store_prefix() + SAVE_AREA_BASE,
299 sizeof(struct save_area));
Michael Holzheu411ed322007-04-27 16:01:49 +0200300}
301
Heiko Carstensf64ca212010-02-26 22:37:32 +0100302struct save_area *zfcpdump_save_areas[NR_CPUS + 1];
Michael Holzheu411ed322007-04-27 16:01:49 +0200303EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
304
305#else
Heiko Carstens285f6722007-07-10 11:24:13 +0200306
307static inline void smp_get_save_area(unsigned int cpu, unsigned int phy_cpu) { }
308
Michael Holzheu59f2e692009-03-26 15:24:46 +0100309#endif /* CONFIG_ZFCPDUMP */
Michael Holzheu411ed322007-04-27 16:01:49 +0200310
Heiko Carstens08d07962008-01-26 14:10:56 +0100311static int cpu_known(int cpu_id)
312{
313 int cpu;
314
315 for_each_present_cpu(cpu) {
316 if (__cpu_logical_map[cpu] == cpu_id)
317 return 1;
318 }
319 return 0;
320}
321
322static int smp_rescan_cpus_sigp(cpumask_t avail)
323{
324 int cpu_id, logical_cpu;
325
Rusty Russell93632d12009-03-26 15:24:59 +0100326 logical_cpu = cpumask_first(&avail);
327 if (logical_cpu >= nr_cpu_ids)
Heiko Carstens08d07962008-01-26 14:10:56 +0100328 return 0;
Heiko Carstens4bb5e072009-09-11 10:29:03 +0200329 for (cpu_id = 0; cpu_id <= MAX_CPU_ADDRESS; cpu_id++) {
Heiko Carstens08d07962008-01-26 14:10:56 +0100330 if (cpu_known(cpu_id))
331 continue;
332 __cpu_logical_map[logical_cpu] = cpu_id;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200333 smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN;
Heiko Carstens08d07962008-01-26 14:10:56 +0100334 if (!cpu_stopped(logical_cpu))
335 continue;
336 cpu_set(logical_cpu, cpu_present_map);
337 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
Rusty Russell93632d12009-03-26 15:24:59 +0100338 logical_cpu = cpumask_next(logical_cpu, &avail);
339 if (logical_cpu >= nr_cpu_ids)
Heiko Carstens08d07962008-01-26 14:10:56 +0100340 break;
341 }
342 return 0;
343}
344
Heiko Carstens48483b32008-01-26 14:11:05 +0100345static int smp_rescan_cpus_sclp(cpumask_t avail)
Heiko Carstens08d07962008-01-26 14:10:56 +0100346{
347 struct sclp_cpu_info *info;
348 int cpu_id, logical_cpu, cpu;
349 int rc;
350
Rusty Russell93632d12009-03-26 15:24:59 +0100351 logical_cpu = cpumask_first(&avail);
352 if (logical_cpu >= nr_cpu_ids)
Heiko Carstens08d07962008-01-26 14:10:56 +0100353 return 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100354 info = kmalloc(sizeof(*info), GFP_KERNEL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100355 if (!info)
356 return -ENOMEM;
357 rc = sclp_get_cpu_info(info);
358 if (rc)
359 goto out;
360 for (cpu = 0; cpu < info->combined; cpu++) {
361 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
362 continue;
363 cpu_id = info->cpu[cpu].address;
364 if (cpu_known(cpu_id))
365 continue;
366 __cpu_logical_map[logical_cpu] = cpu_id;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200367 smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN;
Heiko Carstens08d07962008-01-26 14:10:56 +0100368 cpu_set(logical_cpu, cpu_present_map);
369 if (cpu >= info->configured)
370 smp_cpu_state[logical_cpu] = CPU_STATE_STANDBY;
371 else
372 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
Rusty Russell93632d12009-03-26 15:24:59 +0100373 logical_cpu = cpumask_next(logical_cpu, &avail);
374 if (logical_cpu >= nr_cpu_ids)
Heiko Carstens08d07962008-01-26 14:10:56 +0100375 break;
376 }
377out:
Heiko Carstens48483b32008-01-26 14:11:05 +0100378 kfree(info);
Heiko Carstens08d07962008-01-26 14:10:56 +0100379 return rc;
380}
381
Heiko Carstens1e489512008-04-30 13:38:37 +0200382static int __smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +0100383{
384 cpumask_t avail;
385
Heiko Carstens48483b32008-01-26 14:11:05 +0100386 cpus_xor(avail, cpu_possible_map, cpu_present_map);
Heiko Carstens08d07962008-01-26 14:10:56 +0100387 if (smp_use_sigp_detection)
388 return smp_rescan_cpus_sigp(avail);
389 else
390 return smp_rescan_cpus_sclp(avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Heiko Carstens48483b32008-01-26 14:11:05 +0100393static void __init smp_detect_cpus(void)
394{
395 unsigned int cpu, c_cpus, s_cpus;
396 struct sclp_cpu_info *info;
397 u16 boot_cpu_addr, cpu_addr;
398
399 c_cpus = 1;
400 s_cpus = 0;
Martin Schwidefsky7b468482009-03-26 15:24:42 +0100401 boot_cpu_addr = __cpu_logical_map[0];
Heiko Carstens48483b32008-01-26 14:11:05 +0100402 info = kmalloc(sizeof(*info), GFP_KERNEL);
403 if (!info)
404 panic("smp_detect_cpus failed to allocate memory\n");
405 /* Use sigp detection algorithm if sclp doesn't work. */
406 if (sclp_get_cpu_info(info)) {
407 smp_use_sigp_detection = 1;
Heiko Carstens4bb5e072009-09-11 10:29:03 +0200408 for (cpu = 0; cpu <= MAX_CPU_ADDRESS; cpu++) {
Heiko Carstens48483b32008-01-26 14:11:05 +0100409 if (cpu == boot_cpu_addr)
410 continue;
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100411 if (!raw_cpu_stopped(cpu))
Heiko Carstens48483b32008-01-26 14:11:05 +0100412 continue;
413 smp_get_save_area(c_cpus, cpu);
414 c_cpus++;
415 }
416 goto out;
417 }
418
419 if (info->has_cpu_type) {
420 for (cpu = 0; cpu < info->combined; cpu++) {
421 if (info->cpu[cpu].address == boot_cpu_addr) {
422 smp_cpu_type = info->cpu[cpu].type;
423 break;
424 }
425 }
426 }
427
428 for (cpu = 0; cpu < info->combined; cpu++) {
429 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
430 continue;
431 cpu_addr = info->cpu[cpu].address;
432 if (cpu_addr == boot_cpu_addr)
433 continue;
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100434 if (!raw_cpu_stopped(cpu_addr)) {
Heiko Carstens48483b32008-01-26 14:11:05 +0100435 s_cpus++;
436 continue;
437 }
438 smp_get_save_area(c_cpus, cpu_addr);
439 c_cpus++;
440 }
441out:
442 kfree(info);
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100443 pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100444 get_online_cpus();
Heiko Carstens1e489512008-04-30 13:38:37 +0200445 __smp_rescan_cpus();
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100446 put_online_cpus();
Heiko Carstens48483b32008-01-26 14:11:05 +0100447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200450 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 */
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200452int __cpuinit start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200454 /* Setup the cpu */
455 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800456 preempt_disable();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100457 /* Enable TOD clock interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200458 init_cpu_timer();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100459 /* Enable cpu timer interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200460 init_cpu_vtimer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /* Enable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100462 pfault_init();
463
Manfred Spraule545a612008-09-07 16:57:22 +0200464 /* call cpu notifiers */
465 notify_cpu_starting(smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* Mark this cpu as online */
Heiko Carstensca9fc752008-12-25 13:38:39 +0100467 ipi_call_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 cpu_set(smp_processor_id(), cpu_online_map);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100469 ipi_call_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /* Switch on interrupts */
471 local_irq_enable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200472 /* Print info about this processor */
Martin Schwidefsky7b468482009-03-26 15:24:42 +0100473 print_cpu_info();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200474 /* cpu_idle will call schedule for us */
475 cpu_idle();
476 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479static void __init smp_create_idle(unsigned int cpu)
480{
481 struct task_struct *p;
482
483 /*
484 * don't care about the psw and regs settings since we'll never
485 * reschedule the forked task.
486 */
487 p = fork_idle(cpu);
488 if (IS_ERR(p))
489 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
490 current_set[cpu] = p;
491}
492
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100493static int __cpuinit smp_alloc_lowcore(int cpu)
494{
495 unsigned long async_stack, panic_stack;
496 struct _lowcore *lowcore;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100497
Heiko Carstens3fd26a72009-09-22 22:58:49 +0200498 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100499 if (!lowcore)
500 return -ENOMEM;
501 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100502 panic_stack = __get_free_page(GFP_KERNEL);
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100503 if (!panic_stack || !async_stack)
504 goto out;
Heiko Carstens98c7b382008-03-05 12:37:09 +0100505 memcpy(lowcore, &S390_lowcore, 512);
506 memset((char *)lowcore + 512, 0, sizeof(*lowcore) - 512);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100507 lowcore->async_stack = async_stack + ASYNC_SIZE;
508 lowcore->panic_stack = panic_stack + PAGE_SIZE;
509
510#ifndef CONFIG_64BIT
511 if (MACHINE_HAS_IEEE) {
512 unsigned long save_area;
513
514 save_area = get_zeroed_page(GFP_KERNEL);
515 if (!save_area)
Martin Schwidefsky33b1d092008-12-25 13:39:27 +0100516 goto out;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100517 lowcore->extended_save_area_addr = (u32) save_area;
518 }
Martin Schwidefskyc742b312008-12-31 15:11:42 +0100519#else
520 if (vdso_alloc_per_cpu(cpu, lowcore))
521 goto out;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100522#endif
523 lowcore_ptr[cpu] = lowcore;
524 return 0;
525
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100526out:
Martin Schwidefsky33b1d092008-12-25 13:39:27 +0100527 free_page(panic_stack);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100528 free_pages(async_stack, ASYNC_ORDER);
Heiko Carstens3fd26a72009-09-22 22:58:49 +0200529 free_pages((unsigned long) lowcore, LC_ORDER);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100530 return -ENOMEM;
531}
532
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100533static void smp_free_lowcore(int cpu)
534{
535 struct _lowcore *lowcore;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100536
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100537 lowcore = lowcore_ptr[cpu];
538#ifndef CONFIG_64BIT
539 if (MACHINE_HAS_IEEE)
540 free_page((unsigned long) lowcore->extended_save_area_addr);
Martin Schwidefskyc742b312008-12-31 15:11:42 +0100541#else
542 vdso_free_per_cpu(cpu, lowcore);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100543#endif
544 free_page(lowcore->panic_stack - PAGE_SIZE);
545 free_pages(lowcore->async_stack - ASYNC_SIZE, ASYNC_ORDER);
Heiko Carstens3fd26a72009-09-22 22:58:49 +0200546 free_pages((unsigned long) lowcore, LC_ORDER);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100547 lowcore_ptr[cpu] = NULL;
548}
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550/* Upping and downing of CPUs */
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100551int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200553 struct _lowcore *cpu_lowcore;
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100554 struct task_struct *idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct stack_frame *sf;
Heiko Carstensd0d3cdf2009-03-26 15:24:53 +0100556 u32 lowcore;
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100557 int ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Heiko Carstens08d07962008-01-26 14:10:56 +0100559 if (smp_cpu_state[cpu] != CPU_STATE_CONFIGURED)
560 return -EIO;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100561 if (smp_alloc_lowcore(cpu))
562 return -ENOMEM;
Heiko Carstensd0d3cdf2009-03-26 15:24:53 +0100563 do {
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100564 ccode = sigp(cpu, sigp_initial_cpu_reset);
Heiko Carstensd0d3cdf2009-03-26 15:24:53 +0100565 if (ccode == sigp_busy)
566 udelay(10);
567 if (ccode == sigp_not_operational)
568 goto err_out;
569 } while (ccode == sigp_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Heiko Carstensd0d3cdf2009-03-26 15:24:53 +0100571 lowcore = (u32)(unsigned long)lowcore_ptr[cpu];
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100572 while (sigp_p(lowcore, cpu, sigp_set_prefix) == sigp_busy)
Heiko Carstensd0d3cdf2009-03-26 15:24:53 +0100573 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 idle = current_set[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200576 cpu_lowcore = lowcore_ptr[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 cpu_lowcore->kernel_stack = (unsigned long)
Heiko Carstens39ce0102007-04-27 16:02:00 +0200578 task_stack_page(idle) + THREAD_SIZE;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100579 cpu_lowcore->thread_info = (unsigned long) task_thread_info(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
581 - sizeof(struct pt_regs)
582 - sizeof(struct stack_frame));
583 memset(sf, 0, sizeof(struct stack_frame));
584 sf->gprs[9] = (unsigned long) sf;
585 cpu_lowcore->save_area[15] = (unsigned long) sf;
Segher Boessenkool24d3e212008-06-10 10:03:23 +0200586 __ctl_store(cpu_lowcore->cregs_save_area, 0, 15);
Martin Schwidefsky050eef32010-08-24 09:26:21 +0200587 atomic_inc(&init_mm.context.attach_count);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200588 asm volatile(
589 " stam 0,15,0(%0)"
590 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200592 cpu_lowcore->current_task = (unsigned long) idle;
Martin Schwidefsky7b468482009-03-26 15:24:42 +0100593 cpu_lowcore->cpu_nr = cpu;
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100594 cpu_lowcore->kernel_asce = S390_lowcore.kernel_asce;
Christian Ehrhardt25097bf2009-04-14 15:36:16 +0200595 cpu_lowcore->machine_flags = S390_lowcore.machine_flags;
Heiko Carstensdfd9f7a2009-06-12 10:26:44 +0200596 cpu_lowcore->ftrace_func = S390_lowcore.ftrace_func;
Martin Schwidefsky14375bc2010-10-25 16:10:51 +0200597 memcpy(cpu_lowcore->stfle_fac_list, S390_lowcore.stfle_fac_list,
598 MAX_FACILITY_BIT/8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 eieio();
Michael Ryan699ff132006-03-24 03:15:17 -0800600
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100601 while (sigp(cpu, sigp_restart) == sigp_busy)
Michael Ryan699ff132006-03-24 03:15:17 -0800602 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 while (!cpu_online(cpu))
605 cpu_relax();
606 return 0;
Heiko Carstensd0d3cdf2009-03-26 15:24:53 +0100607
608err_out:
609 smp_free_lowcore(cpu);
610 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Heiko Carstens37a33022006-02-17 13:52:47 -0800613static int __init setup_possible_cpus(char *s)
614{
Heiko Carstens48483b32008-01-26 14:11:05 +0100615 int pcpus, cpu;
616
617 pcpus = simple_strtoul(s, NULL, 0);
Heiko Carstens88e01282009-04-14 15:36:25 +0200618 init_cpu_possible(cpumask_of(0));
619 for (cpu = 1; cpu < pcpus && cpu < nr_cpu_ids; cpu++)
Rusty Russelldef6cfb2009-03-26 15:25:00 +0100620 set_cpu_possible(cpu, true);
Heiko Carstens37a33022006-02-17 13:52:47 -0800621 return 0;
622}
623early_param("possible_cpus", setup_possible_cpus);
624
Heiko Carstens48483b32008-01-26 14:11:05 +0100625#ifdef CONFIG_HOTPLUG_CPU
626
Heiko Carstens39ce0102007-04-27 16:02:00 +0200627int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200629 struct ec_creg_mask_parms cr_parms;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700630 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700632 cpu_clear(cpu, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* Disable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100635 pfault_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200637 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
638 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200640 /* disable all external interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 cr_parms.orvals[0] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200642 cr_parms.andvals[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 |
643 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* disable all I/O interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 cr_parms.orvals[6] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200646 cr_parms.andvals[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 |
647 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /* disable most machine checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 cr_parms.orvals[14] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200650 cr_parms.andvals[14] = ~(1 << 28 | 1 << 27 | 1 << 26 |
651 1 << 25 | 1 << 24);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 smp_ctl_bit_callback(&cr_parms);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656}
657
Heiko Carstens39ce0102007-04-27 16:02:00 +0200658void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 /* Wait until target cpu is down */
Heiko Carstens5c0b9122009-09-11 10:29:05 +0200661 while (!cpu_stopped(cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 cpu_relax();
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100663 while (sigp_p(0, cpu, sigp_set_prefix) == sigp_busy)
Heiko Carstens4f8048e2009-10-29 15:04:09 +0100664 udelay(10);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100665 smp_free_lowcore(cpu);
Martin Schwidefsky050eef32010-08-24 09:26:21 +0200666 atomic_dec(&init_mm.context.attach_count);
Martin Schwidefsky395d31d2008-12-25 13:39:50 +0100667 pr_info("Processor %d stopped\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Heiko Carstens39ce0102007-04-27 16:02:00 +0200670void cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 idle_task_exit();
Heiko Carstensa93b8ec2010-02-26 22:37:35 +0100673 while (sigp(smp_processor_id(), sigp_stop) == sigp_busy)
Heiko Carstensf8501ba2009-10-29 15:04:13 +0100674 cpu_relax();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200675 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Heiko Carstens255acee2006-02-17 13:52:46 -0800678#endif /* CONFIG_HOTPLUG_CPU */
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680void __init smp_prepare_cpus(unsigned int max_cpus)
681{
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100682#ifndef CONFIG_64BIT
683 unsigned long save_area = 0;
684#endif
685 unsigned long async_stack, panic_stack;
686 struct _lowcore *lowcore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 unsigned int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Heiko Carstens48483b32008-01-26 14:11:05 +0100689 smp_detect_cpus();
690
Heiko Carstens39ce0102007-04-27 16:02:00 +0200691 /* request the 0x1201 emergency signal external interrupt */
692 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
693 panic("Couldn't request external interrupt 0x1201");
Martin Schwidefsky7b468482009-03-26 15:24:42 +0100694 print_cpu_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100696 /* Reallocate current lowcore, but keep its contents. */
Heiko Carstens3fd26a72009-09-22 22:58:49 +0200697 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER);
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100698 panic_stack = __get_free_page(GFP_KERNEL);
699 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
Martin Schwidefskyc742b312008-12-31 15:11:42 +0100700 BUG_ON(!lowcore || !panic_stack || !async_stack);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800701#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700702 if (MACHINE_HAS_IEEE)
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100703 save_area = get_zeroed_page(GFP_KERNEL);
Heiko Carstens77fa2242005-06-25 14:55:30 -0700704#endif
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100705 local_irq_disable();
706 local_mcck_disable();
707 lowcore_ptr[smp_processor_id()] = lowcore;
708 *lowcore = S390_lowcore;
709 lowcore->panic_stack = panic_stack + PAGE_SIZE;
710 lowcore->async_stack = async_stack + ASYNC_SIZE;
711#ifndef CONFIG_64BIT
712 if (MACHINE_HAS_IEEE)
713 lowcore->extended_save_area_addr = (u32) save_area;
714#endif
715 set_prefix((u32)(unsigned long) lowcore);
716 local_mcck_enable();
717 local_irq_enable();
Heiko Carstens3a6ba462009-07-24 12:39:51 +0200718#ifdef CONFIG_64BIT
719 if (vdso_alloc_per_cpu(smp_processor_id(), &S390_lowcore))
720 BUG();
721#endif
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800722 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (cpu != smp_processor_id())
724 smp_create_idle(cpu);
725}
726
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200727void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 BUG_ON(smp_processor_id() != 0);
730
Heiko Carstens48483b32008-01-26 14:11:05 +0100731 current_thread_info()->cpu = 0;
732 cpu_set(0, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 cpu_set(0, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 S390_lowcore.percpu_offset = __per_cpu_offset[0];
735 current_set[0] = current;
Heiko Carstens08d07962008-01-26 14:10:56 +0100736 smp_cpu_state[0] = CPU_STATE_CONFIGURED;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200737 smp_cpu_polarization[0] = POLARIZATION_UNKNWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200740void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Heiko Carstens02beacc2010-01-13 20:44:34 +0100744void __init smp_setup_processor_id(void)
745{
746 S390_lowcore.cpu_nr = 0;
747 __cpu_logical_map[0] = stap();
748}
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750/*
751 * the frequency of the profiling timer can be changed
752 * by writing a multiplier value into /proc/profile.
753 *
754 * usually you want to run this on all CPUs ;)
755 */
756int setup_profiling_timer(unsigned int multiplier)
757{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200758 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Heiko Carstens08d07962008-01-26 14:10:56 +0100761#ifdef CONFIG_HOTPLUG_CPU
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200762static ssize_t cpu_configure_show(struct sys_device *dev,
763 struct sysdev_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100764{
765 ssize_t count;
766
767 mutex_lock(&smp_cpu_state_mutex);
768 count = sprintf(buf, "%d\n", smp_cpu_state[dev->id]);
769 mutex_unlock(&smp_cpu_state_mutex);
770 return count;
771}
772
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200773static ssize_t cpu_configure_store(struct sys_device *dev,
774 struct sysdev_attribute *attr,
775 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100776{
777 int cpu = dev->id;
778 int val, rc;
779 char delim;
780
781 if (sscanf(buf, "%d %c", &val, &delim) != 1)
782 return -EINVAL;
783 if (val != 0 && val != 1)
784 return -EINVAL;
785
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100786 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +0200787 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100788 rc = -EBUSY;
Heiko Carstens2c2df112010-02-26 22:37:34 +0100789 /* disallow configuration changes of online cpus and cpu 0 */
790 if (cpu_online(cpu) || cpu == 0)
Heiko Carstens08d07962008-01-26 14:10:56 +0100791 goto out;
792 rc = 0;
793 switch (val) {
794 case 0:
795 if (smp_cpu_state[cpu] == CPU_STATE_CONFIGURED) {
796 rc = sclp_cpu_deconfigure(__cpu_logical_map[cpu]);
Heiko Carstensc10fde02008-04-17 07:46:13 +0200797 if (!rc) {
Heiko Carstens08d07962008-01-26 14:10:56 +0100798 smp_cpu_state[cpu] = CPU_STATE_STANDBY;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200799 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
800 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100801 }
802 break;
803 case 1:
804 if (smp_cpu_state[cpu] == CPU_STATE_STANDBY) {
805 rc = sclp_cpu_configure(__cpu_logical_map[cpu]);
Heiko Carstensc10fde02008-04-17 07:46:13 +0200806 if (!rc) {
Heiko Carstens08d07962008-01-26 14:10:56 +0100807 smp_cpu_state[cpu] = CPU_STATE_CONFIGURED;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200808 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
809 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100810 }
811 break;
812 default:
813 break;
814 }
815out:
Heiko Carstens08d07962008-01-26 14:10:56 +0100816 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +0200817 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100818 return rc ? rc : count;
819}
820static SYSDEV_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
821#endif /* CONFIG_HOTPLUG_CPU */
822
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200823static ssize_t cpu_polarization_show(struct sys_device *dev,
824 struct sysdev_attribute *attr, char *buf)
Heiko Carstensc10fde02008-04-17 07:46:13 +0200825{
826 int cpu = dev->id;
827 ssize_t count;
828
829 mutex_lock(&smp_cpu_state_mutex);
830 switch (smp_cpu_polarization[cpu]) {
831 case POLARIZATION_HRZ:
832 count = sprintf(buf, "horizontal\n");
833 break;
834 case POLARIZATION_VL:
835 count = sprintf(buf, "vertical:low\n");
836 break;
837 case POLARIZATION_VM:
838 count = sprintf(buf, "vertical:medium\n");
839 break;
840 case POLARIZATION_VH:
841 count = sprintf(buf, "vertical:high\n");
842 break;
843 default:
844 count = sprintf(buf, "unknown\n");
845 break;
846 }
847 mutex_unlock(&smp_cpu_state_mutex);
848 return count;
849}
850static SYSDEV_ATTR(polarization, 0444, cpu_polarization_show, NULL);
851
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200852static ssize_t show_cpu_address(struct sys_device *dev,
853 struct sysdev_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100854{
855 return sprintf(buf, "%d\n", __cpu_logical_map[dev->id]);
856}
857static SYSDEV_ATTR(address, 0444, show_cpu_address, NULL);
858
859
860static struct attribute *cpu_common_attrs[] = {
861#ifdef CONFIG_HOTPLUG_CPU
862 &attr_configure.attr,
863#endif
864 &attr_address.attr,
Heiko Carstensc10fde02008-04-17 07:46:13 +0200865 &attr_polarization.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +0100866 NULL,
867};
868
869static struct attribute_group cpu_common_attr_group = {
870 .attrs = cpu_common_attrs,
871};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200873static ssize_t show_capability(struct sys_device *dev,
874 struct sysdev_attribute *attr, char *buf)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200875{
876 unsigned int capability;
877 int rc;
878
879 rc = get_cpu_capability(&capability);
880 if (rc)
881 return rc;
882 return sprintf(buf, "%u\n", capability);
883}
884static SYSDEV_ATTR(capability, 0444, show_capability, NULL);
885
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200886static ssize_t show_idle_count(struct sys_device *dev,
887 struct sysdev_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +0200888{
889 struct s390_idle_data *idle;
890 unsigned long long idle_count;
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200891 unsigned int sequence;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200892
893 idle = &per_cpu(s390_idle, dev->id);
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200894repeat:
895 sequence = idle->sequence;
896 smp_rmb();
897 if (sequence & 1)
898 goto repeat;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200899 idle_count = idle->idle_count;
Martin Schwidefsky6f430922008-12-31 15:11:40 +0100900 if (idle->idle_enter)
901 idle_count++;
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200902 smp_rmb();
903 if (idle->sequence != sequence)
904 goto repeat;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200905 return sprintf(buf, "%llu\n", idle_count);
906}
907static SYSDEV_ATTR(idle_count, 0444, show_idle_count, NULL);
908
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200909static ssize_t show_idle_time(struct sys_device *dev,
910 struct sysdev_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +0200911{
912 struct s390_idle_data *idle;
Martin Schwidefsky6f430922008-12-31 15:11:40 +0100913 unsigned long long now, idle_time, idle_enter;
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200914 unsigned int sequence;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200915
916 idle = &per_cpu(s390_idle, dev->id);
Martin Schwidefsky6f430922008-12-31 15:11:40 +0100917 now = get_clock();
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200918repeat:
919 sequence = idle->sequence;
920 smp_rmb();
921 if (sequence & 1)
922 goto repeat;
Martin Schwidefsky6f430922008-12-31 15:11:40 +0100923 idle_time = idle->idle_time;
924 idle_enter = idle->idle_enter;
925 if (idle_enter != 0ULL && idle_enter < now)
926 idle_time += now - idle_enter;
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200927 smp_rmb();
928 if (idle->sequence != sequence)
929 goto repeat;
Martin Schwidefsky6f430922008-12-31 15:11:40 +0100930 return sprintf(buf, "%llu\n", idle_time >> 12);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200931}
Heiko Carstens69d39d62007-11-05 11:10:13 +0100932static SYSDEV_ATTR(idle_time_us, 0444, show_idle_time, NULL);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200933
Heiko Carstens08d07962008-01-26 14:10:56 +0100934static struct attribute *cpu_online_attrs[] = {
Heiko Carstensfae8b222007-10-22 12:52:39 +0200935 &attr_capability.attr,
936 &attr_idle_count.attr,
Heiko Carstens69d39d62007-11-05 11:10:13 +0100937 &attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +0200938 NULL,
939};
940
Heiko Carstens08d07962008-01-26 14:10:56 +0100941static struct attribute_group cpu_online_attr_group = {
942 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +0200943};
944
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200945static int __cpuinit smp_cpu_notify(struct notifier_block *self,
946 unsigned long action, void *hcpu)
947{
948 unsigned int cpu = (unsigned int)(long)hcpu;
949 struct cpu *c = &per_cpu(cpu_devices, cpu);
950 struct sys_device *s = &c->sysdev;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200951 struct s390_idle_data *idle;
Akinobu Mitad882ba62010-05-26 14:43:34 -0700952 int err = 0;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200953
954 switch (action) {
955 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700956 case CPU_ONLINE_FROZEN:
Heiko Carstensfae8b222007-10-22 12:52:39 +0200957 idle = &per_cpu(s390_idle, cpu);
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200958 memset(idle, 0, sizeof(struct s390_idle_data));
Akinobu Mitad882ba62010-05-26 14:43:34 -0700959 err = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200960 break;
961 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700962 case CPU_DEAD_FROZEN:
Heiko Carstens08d07962008-01-26 14:10:56 +0100963 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200964 break;
965 }
Akinobu Mitad882ba62010-05-26 14:43:34 -0700966 return notifier_from_errno(err);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200967}
968
969static struct notifier_block __cpuinitdata smp_cpu_nb = {
Heiko Carstens39ce0102007-04-27 16:02:00 +0200970 .notifier_call = smp_cpu_notify,
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200971};
972
Heiko Carstens2bc89b52008-02-05 16:50:40 +0100973static int __devinit smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +0100974{
975 struct cpu *c = &per_cpu(cpu_devices, cpu);
976 struct sys_device *s = &c->sysdev;
977 int rc;
978
979 c->hotpluggable = 1;
980 rc = register_cpu(c, cpu);
981 if (rc)
982 goto out;
983 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
984 if (rc)
985 goto out_cpu;
986 if (!cpu_online(cpu))
987 goto out;
988 rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
989 if (!rc)
990 return 0;
991 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
992out_cpu:
993#ifdef CONFIG_HOTPLUG_CPU
994 unregister_cpu(c);
995#endif
996out:
997 return rc;
998}
999
1000#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +02001001
Heiko Carstens67060d92008-05-30 10:03:27 +02001002int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +01001003{
1004 cpumask_t newcpus;
1005 int cpu;
1006 int rc;
1007
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +01001008 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001009 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +01001010 newcpus = cpu_present_map;
Heiko Carstens1e489512008-04-30 13:38:37 +02001011 rc = __smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001012 if (rc)
1013 goto out;
1014 cpus_andnot(newcpus, cpu_present_map, newcpus);
1015 for_each_cpu_mask(cpu, newcpus) {
1016 rc = smp_add_present_cpu(cpu);
1017 if (rc)
1018 cpu_clear(cpu, cpu_present_map);
1019 }
1020 rc = 0;
1021out:
Heiko Carstens08d07962008-01-26 14:10:56 +01001022 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001023 put_online_cpus();
Heiko Carstensc10fde02008-04-17 07:46:13 +02001024 if (!cpus_empty(newcpus))
1025 topology_schedule_update();
Heiko Carstens1e489512008-04-30 13:38:37 +02001026 return rc;
1027}
1028
Andi Kleenc9be0a32010-01-05 12:47:58 +01001029static ssize_t __ref rescan_store(struct sysdev_class *class,
1030 struct sysdev_class_attribute *attr,
1031 const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +02001032 size_t count)
1033{
1034 int rc;
1035
1036 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +01001037 return rc ? rc : count;
1038}
Heiko Carstensda5aae72008-10-28 11:10:16 +01001039static SYSDEV_CLASS_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +01001040#endif /* CONFIG_HOTPLUG_CPU */
1041
Heiko Carstens5fbcae52010-02-12 11:19:24 +01001042static ssize_t dispatching_show(struct sysdev_class *class,
1043 struct sysdev_class_attribute *attr,
1044 char *buf)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001045{
1046 ssize_t count;
1047
1048 mutex_lock(&smp_cpu_state_mutex);
1049 count = sprintf(buf, "%d\n", cpu_management);
1050 mutex_unlock(&smp_cpu_state_mutex);
1051 return count;
1052}
1053
Andi Kleenc9be0a32010-01-05 12:47:58 +01001054static ssize_t dispatching_store(struct sysdev_class *dev,
1055 struct sysdev_class_attribute *attr,
1056 const char *buf,
Heiko Carstensda5aae72008-10-28 11:10:16 +01001057 size_t count)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001058{
1059 int val, rc;
1060 char delim;
1061
1062 if (sscanf(buf, "%d %c", &val, &delim) != 1)
1063 return -EINVAL;
1064 if (val != 0 && val != 1)
1065 return -EINVAL;
1066 rc = 0;
Heiko Carstensc10fde02008-04-17 07:46:13 +02001067 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001068 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstensc10fde02008-04-17 07:46:13 +02001069 if (cpu_management == val)
1070 goto out;
1071 rc = topology_set_cpu_management(val);
1072 if (!rc)
1073 cpu_management = val;
1074out:
Heiko Carstensc10fde02008-04-17 07:46:13 +02001075 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001076 put_online_cpus();
Heiko Carstensc10fde02008-04-17 07:46:13 +02001077 return rc ? rc : count;
1078}
Heiko Carstensda5aae72008-10-28 11:10:16 +01001079static SYSDEV_CLASS_ATTR(dispatching, 0644, dispatching_show,
1080 dispatching_store);
Heiko Carstensc10fde02008-04-17 07:46:13 +02001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082static int __init topology_init(void)
1083{
1084 int cpu;
Heiko Carstensfae8b222007-10-22 12:52:39 +02001085 int rc;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001086
1087 register_cpu_notifier(&smp_cpu_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Heiko Carstens08d07962008-01-26 14:10:56 +01001089#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstensda5aae72008-10-28 11:10:16 +01001090 rc = sysdev_class_create_file(&cpu_sysdev_class, &attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001091 if (rc)
1092 return rc;
1093#endif
Heiko Carstensda5aae72008-10-28 11:10:16 +01001094 rc = sysdev_class_create_file(&cpu_sysdev_class, &attr_dispatching);
Heiko Carstensc10fde02008-04-17 07:46:13 +02001095 if (rc)
1096 return rc;
Heiko Carstens08d07962008-01-26 14:10:56 +01001097 for_each_present_cpu(cpu) {
1098 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001099 if (rc)
1100 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 return 0;
1103}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104subsys_initcall(topology_init);