blob: 176a43e5b8b47fc4ba1c4e20fcbe3cf9b3ecce31 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/kernel/smp.c
3 *
Heiko Carstens39ce0102007-04-27 16:02:00 +02004 * Copyright IBM Corp. 1999,2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
Heiko Carstens39ce0102007-04-27 16:02:00 +02006 * Martin Schwidefsky (schwidefsky@de.ibm.com)
7 * Heiko Carstens (heiko.carstens@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Heiko Carstens39ce0102007-04-27 16:02:00 +02009 * based on other smp stuff by
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * (c) 1995 Alan Cox, CymruNET Ltd <alan@cymru.net>
11 * (c) 1998 Ingo Molnar
12 *
13 * We work with logical cpu numbering everywhere we can. The only
14 * functions using the real cpu address (got from STAP) are the sigp
15 * functions. For all other functions we use the identity mapping.
16 * That means that cpu_number_map[i] == i for every cpu. cpu_number_map is
17 * used e.g. to find the idle task belonging to a logical cpu. Every array
18 * in the kernel is sorted by the logical cpu number and not by the physical
19 * one which is causing all the confusion with __cpu_logical_map and
20 * cpu_number_map in other architectures.
21 */
22
23#include <linux/module.h>
24#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040026#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/spinlock.h>
28#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/delay.h>
30#include <linux/cache.h>
31#include <linux/interrupt.h>
32#include <linux/cpu.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010033#include <linux/timex.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020034#include <linux/bootmem.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010035#include <asm/ipl.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010036#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/sigp.h>
38#include <asm/pgalloc.h>
39#include <asm/irq.h>
40#include <asm/s390_ext.h>
41#include <asm/cpcmd.h>
42#include <asm/tlbflush.h>
Heiko Carstens2b67fc42007-02-05 21:16:47 +010043#include <asm/timer.h>
Michael Holzheu411ed322007-04-27 16:01:49 +020044#include <asm/lowcore.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010045#include <asm/sclp.h>
Heiko Carstensfae8b222007-10-22 12:52:39 +020046#include <asm/cpu.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020047#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
50 * An array with a pointer the lowcore of every CPU.
51 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052struct _lowcore *lowcore_ptr[NR_CPUS];
Heiko Carstens39ce0102007-04-27 16:02:00 +020053EXPORT_SYMBOL(lowcore_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Heiko Carstens255acee2006-02-17 13:52:46 -080055cpumask_t cpu_online_map = CPU_MASK_NONE;
Heiko Carstens39ce0102007-04-27 16:02:00 +020056EXPORT_SYMBOL(cpu_online_map);
57
Heiko Carstens48483b32008-01-26 14:11:05 +010058cpumask_t cpu_possible_map = CPU_MASK_ALL;
Heiko Carstens39ce0102007-04-27 16:02:00 +020059EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static struct task_struct *current_set[NR_CPUS];
62
Heiko Carstens08d07962008-01-26 14:10:56 +010063static u8 smp_cpu_type;
64static int smp_use_sigp_detection;
65
66enum s390_cpu_state {
67 CPU_STATE_STANDBY,
68 CPU_STATE_CONFIGURED,
69};
70
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020071DEFINE_MUTEX(smp_cpu_state_mutex);
Heiko Carstensc10fde02008-04-17 07:46:13 +020072int smp_cpu_polarization[NR_CPUS];
Heiko Carstens08d07962008-01-26 14:10:56 +010073static int smp_cpu_state[NR_CPUS];
Heiko Carstensc10fde02008-04-17 07:46:13 +020074static int cpu_management;
Heiko Carstens08d07962008-01-26 14:10:56 +010075
76static DEFINE_PER_CPU(struct cpu, cpu_devices);
Heiko Carstens08d07962008-01-26 14:10:56 +010077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static void smp_ext_bitcall(int, ec_bit_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Heiko Carstens677d7622007-11-20 11:13:37 +010080void smp_send_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Heiko Carstens39ce0102007-04-27 16:02:00 +020082 int cpu, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Heiko Carstens677d7622007-11-20 11:13:37 +010084 /* Disable all interrupts/machine checks */
85 __load_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK);
86
87 /* write magic number to zero page (absolute 0) */
88 lowcore_ptr[smp_processor_id()]->panic_magic = __PANIC_MAGIC;
89
Heiko Carstens39ce0102007-04-27 16:02:00 +020090 /* stop all processors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 for_each_online_cpu(cpu) {
92 if (cpu == smp_processor_id())
93 continue;
94 do {
95 rc = signal_processor(cpu, sigp_stop);
96 } while (rc == sigp_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Heiko Carstens39ce0102007-04-27 16:02:00 +020098 while (!smp_cpu_not_running(cpu))
Heiko Carstensc6b5b842006-12-04 15:40:33 +010099 cpu_relax();
100 }
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * This is the main routine where commands issued by other
105 * cpus are handled.
106 */
107
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100108static void do_ext_call_interrupt(__u16 code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200110 unsigned long bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Heiko Carstens39ce0102007-04-27 16:02:00 +0200112 /*
113 * handle bit signal external calls
114 *
115 * For the ec_schedule signal we have to do nothing. All the work
116 * is done automatically when we return from the interrupt.
117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 bits = xchg(&S390_lowcore.ext_call_fast, 0);
119
Heiko Carstens39ce0102007-04-27 16:02:00 +0200120 if (test_bit(ec_call_function, &bits))
Heiko Carstensca9fc752008-12-25 13:38:39 +0100121 generic_smp_call_function_interrupt();
122
123 if (test_bit(ec_call_function_single, &bits))
124 generic_smp_call_function_single_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127/*
128 * Send an external call sigp to another cpu and return without waiting
129 * for its completion.
130 */
131static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
132{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200133 /*
134 * Set signaling bit in lowcore of target cpu and kick it
135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200137 while (signal_processor(cpu, sigp_emergency_signal) == sigp_busy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 udelay(10);
139}
140
Heiko Carstensca9fc752008-12-25 13:38:39 +0100141void arch_send_call_function_ipi(cpumask_t mask)
142{
143 int cpu;
144
145 for_each_cpu_mask(cpu, mask)
146 smp_ext_bitcall(cpu, ec_call_function);
147}
148
149void arch_send_call_function_single_ipi(int cpu)
150{
151 smp_ext_bitcall(cpu, ec_call_function_single);
152}
153
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800154#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
156 * this function sends a 'purge tlb' signal to another CPU.
157 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200158static void smp_ptlb_callback(void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200160 __tlb_flush_local();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163void smp_ptlb_all(void)
164{
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200165 on_each_cpu(smp_ptlb_callback, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167EXPORT_SYMBOL(smp_ptlb_all);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800168#endif /* ! CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170/*
171 * this function sends a 'reschedule' IPI to another CPU.
172 * it goes straight through and wastes no time serializing
173 * anything. Worst case is that we lose a reschedule ...
174 */
175void smp_send_reschedule(int cpu)
176{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200177 smp_ext_bitcall(cpu, ec_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180/*
181 * parameter area for the set/clear control bit callbacks
182 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200183struct ec_creg_mask_parms {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 unsigned long orvals[16];
185 unsigned long andvals[16];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200186};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188/*
189 * callback for setting/clearing control bits
190 */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200191static void smp_ctl_bit_callback(void *info)
192{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200193 struct ec_creg_mask_parms *pp = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 unsigned long cregs[16];
195 int i;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200196
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200197 __ctl_store(cregs, 0, 15);
198 for (i = 0; i <= 15; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i];
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200200 __ctl_load(cregs, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/*
204 * Set a bit in a control register of all cpus
205 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200206void smp_ctl_set_bit(int cr, int bit)
207{
208 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200210 memset(&parms.orvals, 0, sizeof(parms.orvals));
211 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 parms.orvals[cr] = 1 << bit;
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200213 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200215EXPORT_SYMBOL(smp_ctl_set_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217/*
218 * Clear a bit in a control register of all cpus
219 */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200220void smp_ctl_clear_bit(int cr, int bit)
221{
222 struct ec_creg_mask_parms parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200224 memset(&parms.orvals, 0, sizeof(parms.orvals));
225 memset(&parms.andvals, 0xff, sizeof(parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 parms.andvals[cr] = ~(1L << bit);
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200227 on_each_cpu(smp_ctl_bit_callback, &parms, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
Heiko Carstens39ce0102007-04-27 16:02:00 +0200229EXPORT_SYMBOL(smp_ctl_clear_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Heiko Carstens08d07962008-01-26 14:10:56 +0100231/*
232 * In early ipl state a temp. logically cpu number is needed, so the sigp
233 * functions can be used to sense other cpus. Since NR_CPUS is >= 2 on
234 * CONFIG_SMP and the ipl cpu is logical cpu 0, it must be 1.
235 */
236#define CPU_INIT_NO 1
237
Michael Holzheu411ed322007-04-27 16:01:49 +0200238#if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_ZFCPDUMP_MODULE)
239
240/*
241 * zfcpdump_prefix_array holds prefix registers for the following scenario:
242 * 64 bit zfcpdump kernel and 31 bit kernel which is to be dumped. We have to
243 * save its prefix registers, since they get lost, when switching from 31 bit
244 * to 64 bit.
245 */
246unsigned int zfcpdump_prefix_array[NR_CPUS + 1] \
247 __attribute__((__section__(".data")));
248
Heiko Carstens285f6722007-07-10 11:24:13 +0200249static void __init smp_get_save_area(unsigned int cpu, unsigned int phy_cpu)
Michael Holzheu411ed322007-04-27 16:01:49 +0200250{
Michael Holzheu411ed322007-04-27 16:01:49 +0200251 if (ipl_info.type != IPL_TYPE_FCP_DUMP)
252 return;
Heiko Carstens285f6722007-07-10 11:24:13 +0200253 if (cpu >= NR_CPUS) {
254 printk(KERN_WARNING "Registers for cpu %i not saved since dump "
255 "kernel was compiled with NR_CPUS=%i\n", cpu, NR_CPUS);
256 return;
Michael Holzheu411ed322007-04-27 16:01:49 +0200257 }
Heiko Carstens48483b32008-01-26 14:11:05 +0100258 zfcpdump_save_areas[cpu] = kmalloc(sizeof(union save_area), GFP_KERNEL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100259 __cpu_logical_map[CPU_INIT_NO] = (__u16) phy_cpu;
260 while (signal_processor(CPU_INIT_NO, sigp_stop_and_store_status) ==
261 sigp_busy)
Heiko Carstens285f6722007-07-10 11:24:13 +0200262 cpu_relax();
263 memcpy(zfcpdump_save_areas[cpu],
264 (void *)(unsigned long) store_prefix() + SAVE_AREA_BASE,
265 SAVE_AREA_SIZE);
266#ifdef CONFIG_64BIT
267 /* copy original prefix register */
268 zfcpdump_save_areas[cpu]->s390x.pref_reg = zfcpdump_prefix_array[cpu];
269#endif
Michael Holzheu411ed322007-04-27 16:01:49 +0200270}
271
272union save_area *zfcpdump_save_areas[NR_CPUS + 1];
273EXPORT_SYMBOL_GPL(zfcpdump_save_areas);
274
275#else
Heiko Carstens285f6722007-07-10 11:24:13 +0200276
277static inline void smp_get_save_area(unsigned int cpu, unsigned int phy_cpu) { }
278
279#endif /* CONFIG_ZFCPDUMP || CONFIG_ZFCPDUMP_MODULE */
Michael Holzheu411ed322007-04-27 16:01:49 +0200280
Heiko Carstens08d07962008-01-26 14:10:56 +0100281static int cpu_stopped(int cpu)
282{
283 __u32 status;
284
285 /* Check for stopped state */
286 if (signal_processor_ps(&status, 0, cpu, sigp_sense) ==
287 sigp_status_stored) {
288 if (status & 0x40)
289 return 1;
290 }
291 return 0;
292}
293
Heiko Carstens08d07962008-01-26 14:10:56 +0100294static int cpu_known(int cpu_id)
295{
296 int cpu;
297
298 for_each_present_cpu(cpu) {
299 if (__cpu_logical_map[cpu] == cpu_id)
300 return 1;
301 }
302 return 0;
303}
304
305static int smp_rescan_cpus_sigp(cpumask_t avail)
306{
307 int cpu_id, logical_cpu;
308
309 logical_cpu = first_cpu(avail);
310 if (logical_cpu == NR_CPUS)
311 return 0;
312 for (cpu_id = 0; cpu_id <= 65535; cpu_id++) {
313 if (cpu_known(cpu_id))
314 continue;
315 __cpu_logical_map[logical_cpu] = cpu_id;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200316 smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN;
Heiko Carstens08d07962008-01-26 14:10:56 +0100317 if (!cpu_stopped(logical_cpu))
318 continue;
319 cpu_set(logical_cpu, cpu_present_map);
320 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
321 logical_cpu = next_cpu(logical_cpu, avail);
322 if (logical_cpu == NR_CPUS)
323 break;
324 }
325 return 0;
326}
327
Heiko Carstens48483b32008-01-26 14:11:05 +0100328static int smp_rescan_cpus_sclp(cpumask_t avail)
Heiko Carstens08d07962008-01-26 14:10:56 +0100329{
330 struct sclp_cpu_info *info;
331 int cpu_id, logical_cpu, cpu;
332 int rc;
333
334 logical_cpu = first_cpu(avail);
335 if (logical_cpu == NR_CPUS)
336 return 0;
Heiko Carstens48483b32008-01-26 14:11:05 +0100337 info = kmalloc(sizeof(*info), GFP_KERNEL);
Heiko Carstens08d07962008-01-26 14:10:56 +0100338 if (!info)
339 return -ENOMEM;
340 rc = sclp_get_cpu_info(info);
341 if (rc)
342 goto out;
343 for (cpu = 0; cpu < info->combined; cpu++) {
344 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
345 continue;
346 cpu_id = info->cpu[cpu].address;
347 if (cpu_known(cpu_id))
348 continue;
349 __cpu_logical_map[logical_cpu] = cpu_id;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200350 smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN;
Heiko Carstens08d07962008-01-26 14:10:56 +0100351 cpu_set(logical_cpu, cpu_present_map);
352 if (cpu >= info->configured)
353 smp_cpu_state[logical_cpu] = CPU_STATE_STANDBY;
354 else
355 smp_cpu_state[logical_cpu] = CPU_STATE_CONFIGURED;
356 logical_cpu = next_cpu(logical_cpu, avail);
357 if (logical_cpu == NR_CPUS)
358 break;
359 }
360out:
Heiko Carstens48483b32008-01-26 14:11:05 +0100361 kfree(info);
Heiko Carstens08d07962008-01-26 14:10:56 +0100362 return rc;
363}
364
Heiko Carstens1e489512008-04-30 13:38:37 +0200365static int __smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +0100366{
367 cpumask_t avail;
368
Heiko Carstens48483b32008-01-26 14:11:05 +0100369 cpus_xor(avail, cpu_possible_map, cpu_present_map);
Heiko Carstens08d07962008-01-26 14:10:56 +0100370 if (smp_use_sigp_detection)
371 return smp_rescan_cpus_sigp(avail);
372 else
373 return smp_rescan_cpus_sclp(avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Heiko Carstens48483b32008-01-26 14:11:05 +0100376static void __init smp_detect_cpus(void)
377{
378 unsigned int cpu, c_cpus, s_cpus;
379 struct sclp_cpu_info *info;
380 u16 boot_cpu_addr, cpu_addr;
381
382 c_cpus = 1;
383 s_cpus = 0;
384 boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
385 info = kmalloc(sizeof(*info), GFP_KERNEL);
386 if (!info)
387 panic("smp_detect_cpus failed to allocate memory\n");
388 /* Use sigp detection algorithm if sclp doesn't work. */
389 if (sclp_get_cpu_info(info)) {
390 smp_use_sigp_detection = 1;
391 for (cpu = 0; cpu <= 65535; cpu++) {
392 if (cpu == boot_cpu_addr)
393 continue;
394 __cpu_logical_map[CPU_INIT_NO] = cpu;
395 if (!cpu_stopped(CPU_INIT_NO))
396 continue;
397 smp_get_save_area(c_cpus, cpu);
398 c_cpus++;
399 }
400 goto out;
401 }
402
403 if (info->has_cpu_type) {
404 for (cpu = 0; cpu < info->combined; cpu++) {
405 if (info->cpu[cpu].address == boot_cpu_addr) {
406 smp_cpu_type = info->cpu[cpu].type;
407 break;
408 }
409 }
410 }
411
412 for (cpu = 0; cpu < info->combined; cpu++) {
413 if (info->has_cpu_type && info->cpu[cpu].type != smp_cpu_type)
414 continue;
415 cpu_addr = info->cpu[cpu].address;
416 if (cpu_addr == boot_cpu_addr)
417 continue;
418 __cpu_logical_map[CPU_INIT_NO] = cpu_addr;
419 if (!cpu_stopped(CPU_INIT_NO)) {
420 s_cpus++;
421 continue;
422 }
423 smp_get_save_area(c_cpus, cpu_addr);
424 c_cpus++;
425 }
426out:
427 kfree(info);
428 printk(KERN_INFO "CPUs: %d configured, %d standby\n", c_cpus, s_cpus);
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100429 get_online_cpus();
Heiko Carstens1e489512008-04-30 13:38:37 +0200430 __smp_rescan_cpus();
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100431 put_online_cpus();
Heiko Carstens48483b32008-01-26 14:11:05 +0100432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/*
Heiko Carstens39ce0102007-04-27 16:02:00 +0200435 * Activate a secondary processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200437int __cpuinit start_secondary(void *cpuvoid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200439 /* Setup the cpu */
440 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800441 preempt_disable();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100442 /* Enable TOD clock interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200443 init_cpu_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#ifdef CONFIG_VIRT_TIMER
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100445 /* Enable cpu timer interrupts on the secondary cpu. */
Heiko Carstens39ce0102007-04-27 16:02:00 +0200446 init_cpu_vtimer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /* Enable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100449 pfault_init();
450
Manfred Spraule545a612008-09-07 16:57:22 +0200451 /* call cpu notifiers */
452 notify_cpu_starting(smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /* Mark this cpu as online */
Heiko Carstensca9fc752008-12-25 13:38:39 +0100454 ipi_call_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 cpu_set(smp_processor_id(), cpu_online_map);
Heiko Carstensca9fc752008-12-25 13:38:39 +0100456 ipi_call_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /* Switch on interrupts */
458 local_irq_enable();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200459 /* Print info about this processor */
460 print_cpu_info(&S390_lowcore.cpu_data);
461 /* cpu_idle will call schedule for us */
462 cpu_idle();
463 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466static void __init smp_create_idle(unsigned int cpu)
467{
468 struct task_struct *p;
469
470 /*
471 * don't care about the psw and regs settings since we'll never
472 * reschedule the forked task.
473 */
474 p = fork_idle(cpu);
475 if (IS_ERR(p))
476 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
477 current_set[cpu] = p;
478}
479
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100480static int __cpuinit smp_alloc_lowcore(int cpu)
481{
482 unsigned long async_stack, panic_stack;
483 struct _lowcore *lowcore;
484 int lc_order;
485
486 lc_order = sizeof(long) == 8 ? 1 : 0;
487 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, lc_order);
488 if (!lowcore)
489 return -ENOMEM;
490 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100491 panic_stack = __get_free_page(GFP_KERNEL);
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100492 if (!panic_stack || !async_stack)
493 goto out;
Heiko Carstens98c7b382008-03-05 12:37:09 +0100494 memcpy(lowcore, &S390_lowcore, 512);
495 memset((char *)lowcore + 512, 0, sizeof(*lowcore) - 512);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100496 lowcore->async_stack = async_stack + ASYNC_SIZE;
497 lowcore->panic_stack = panic_stack + PAGE_SIZE;
498
499#ifndef CONFIG_64BIT
500 if (MACHINE_HAS_IEEE) {
501 unsigned long save_area;
502
503 save_area = get_zeroed_page(GFP_KERNEL);
504 if (!save_area)
505 goto out_save_area;
506 lowcore->extended_save_area_addr = (u32) save_area;
507 }
508#endif
509 lowcore_ptr[cpu] = lowcore;
510 return 0;
511
512#ifndef CONFIG_64BIT
513out_save_area:
514 free_page(panic_stack);
515#endif
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100516out:
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100517 free_pages(async_stack, ASYNC_ORDER);
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100518 free_pages((unsigned long) lowcore, lc_order);
519 return -ENOMEM;
520}
521
522#ifdef CONFIG_HOTPLUG_CPU
523static void smp_free_lowcore(int cpu)
524{
525 struct _lowcore *lowcore;
526 int lc_order;
527
528 lc_order = sizeof(long) == 8 ? 1 : 0;
529 lowcore = lowcore_ptr[cpu];
530#ifndef CONFIG_64BIT
531 if (MACHINE_HAS_IEEE)
532 free_page((unsigned long) lowcore->extended_save_area_addr);
533#endif
534 free_page(lowcore->panic_stack - PAGE_SIZE);
535 free_pages(lowcore->async_stack - ASYNC_SIZE, ASYNC_ORDER);
536 free_pages((unsigned long) lowcore, lc_order);
537 lowcore_ptr[cpu] = NULL;
538}
539#endif /* CONFIG_HOTPLUG_CPU */
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541/* Upping and downing of CPUs */
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100542int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 struct task_struct *idle;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200545 struct _lowcore *cpu_lowcore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct stack_frame *sf;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200547 sigp_ccode ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Heiko Carstens08d07962008-01-26 14:10:56 +0100549 if (smp_cpu_state[cpu] != CPU_STATE_CONFIGURED)
550 return -EIO;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100551 if (smp_alloc_lowcore(cpu))
552 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 ccode = signal_processor_p((__u32)(unsigned long)(lowcore_ptr[cpu]),
555 cpu, sigp_set_prefix);
Heiko Carstens39ce0102007-04-27 16:02:00 +0200556 if (ccode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 printk("sigp_set_prefix failed for cpu %d "
558 "with condition code %d\n",
559 (int) cpu, (int) ccode);
560 return -EIO;
561 }
562
563 idle = current_set[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200564 cpu_lowcore = lowcore_ptr[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 cpu_lowcore->kernel_stack = (unsigned long)
Heiko Carstens39ce0102007-04-27 16:02:00 +0200566 task_stack_page(idle) + THREAD_SIZE;
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100567 cpu_lowcore->thread_info = (unsigned long) task_thread_info(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 sf = (struct stack_frame *) (cpu_lowcore->kernel_stack
569 - sizeof(struct pt_regs)
570 - sizeof(struct stack_frame));
571 memset(sf, 0, sizeof(struct stack_frame));
572 sf->gprs[9] = (unsigned long) sf;
573 cpu_lowcore->save_area[15] = (unsigned long) sf;
Segher Boessenkool24d3e212008-06-10 10:03:23 +0200574 __ctl_store(cpu_lowcore->cregs_save_area, 0, 15);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200575 asm volatile(
576 " stam 0,15,0(%0)"
577 : : "a" (&cpu_lowcore->access_regs_save_area) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 cpu_lowcore->percpu_offset = __per_cpu_offset[cpu];
Heiko Carstens39ce0102007-04-27 16:02:00 +0200579 cpu_lowcore->current_task = (unsigned long) idle;
580 cpu_lowcore->cpu_data.cpu_nr = cpu;
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100581 cpu_lowcore->kernel_asce = S390_lowcore.kernel_asce;
582 cpu_lowcore->ipl_device = S390_lowcore.ipl_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 eieio();
Michael Ryan699ff132006-03-24 03:15:17 -0800584
Heiko Carstens39ce0102007-04-27 16:02:00 +0200585 while (signal_processor(cpu, sigp_restart) == sigp_busy)
Michael Ryan699ff132006-03-24 03:15:17 -0800586 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 while (!cpu_online(cpu))
589 cpu_relax();
590 return 0;
591}
592
Heiko Carstens37a33022006-02-17 13:52:47 -0800593static int __init setup_possible_cpus(char *s)
594{
Heiko Carstens48483b32008-01-26 14:11:05 +0100595 int pcpus, cpu;
596
597 pcpus = simple_strtoul(s, NULL, 0);
598 cpu_possible_map = cpumask_of_cpu(0);
599 for (cpu = 1; cpu < pcpus && cpu < NR_CPUS; cpu++)
600 cpu_set(cpu, cpu_possible_map);
Heiko Carstens37a33022006-02-17 13:52:47 -0800601 return 0;
602}
603early_param("possible_cpus", setup_possible_cpus);
604
Heiko Carstens48483b32008-01-26 14:11:05 +0100605#ifdef CONFIG_HOTPLUG_CPU
606
Heiko Carstens39ce0102007-04-27 16:02:00 +0200607int __cpu_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200609 struct ec_creg_mask_parms cr_parms;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700610 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700612 cpu_clear(cpu, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /* Disable pfault pseudo page faults on this cpu. */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100615 pfault_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200617 memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals));
618 memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200620 /* disable all external interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 cr_parms.orvals[0] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200622 cr_parms.andvals[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 |
623 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* disable all I/O interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 cr_parms.orvals[6] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200626 cr_parms.andvals[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 |
627 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* disable most machine checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 cr_parms.orvals[14] = 0;
Heiko Carstens39ce0102007-04-27 16:02:00 +0200630 cr_parms.andvals[14] = ~(1 << 28 | 1 << 27 | 1 << 26 |
631 1 << 25 | 1 << 24);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 smp_ctl_bit_callback(&cr_parms);
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 0;
636}
637
Heiko Carstens39ce0102007-04-27 16:02:00 +0200638void __cpu_die(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 /* Wait until target cpu is down */
641 while (!smp_cpu_not_running(cpu))
642 cpu_relax();
Heiko Carstens1cb6bb42008-01-26 14:11:14 +0100643 smp_free_lowcore(cpu);
Heiko Carstens08d07962008-01-26 14:10:56 +0100644 printk(KERN_INFO "Processor %d spun down\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Heiko Carstens39ce0102007-04-27 16:02:00 +0200647void cpu_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 idle_task_exit();
650 signal_processor(smp_processor_id(), sigp_stop);
651 BUG();
Heiko Carstens39ce0102007-04-27 16:02:00 +0200652 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Heiko Carstens255acee2006-02-17 13:52:46 -0800655#endif /* CONFIG_HOTPLUG_CPU */
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657void __init smp_prepare_cpus(unsigned int max_cpus)
658{
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100659#ifndef CONFIG_64BIT
660 unsigned long save_area = 0;
661#endif
662 unsigned long async_stack, panic_stack;
663 struct _lowcore *lowcore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 unsigned int cpu;
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100665 int lc_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Heiko Carstens48483b32008-01-26 14:11:05 +0100667 smp_detect_cpus();
668
Heiko Carstens39ce0102007-04-27 16:02:00 +0200669 /* request the 0x1201 emergency signal external interrupt */
670 if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0)
671 panic("Couldn't request external interrupt 0x1201");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 print_cpu_info(&S390_lowcore.cpu_data);
673
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100674 /* Reallocate current lowcore, but keep its contents. */
675 lc_order = sizeof(long) == 8 ? 1 : 0;
676 lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, lc_order);
677 panic_stack = __get_free_page(GFP_KERNEL);
678 async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800679#ifndef CONFIG_64BIT
Heiko Carstens77fa2242005-06-25 14:55:30 -0700680 if (MACHINE_HAS_IEEE)
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100681 save_area = get_zeroed_page(GFP_KERNEL);
Heiko Carstens77fa2242005-06-25 14:55:30 -0700682#endif
Heiko Carstens591bb4f2008-02-19 15:29:29 +0100683 local_irq_disable();
684 local_mcck_disable();
685 lowcore_ptr[smp_processor_id()] = lowcore;
686 *lowcore = S390_lowcore;
687 lowcore->panic_stack = panic_stack + PAGE_SIZE;
688 lowcore->async_stack = async_stack + ASYNC_SIZE;
689#ifndef CONFIG_64BIT
690 if (MACHINE_HAS_IEEE)
691 lowcore->extended_save_area_addr = (u32) save_area;
692#endif
693 set_prefix((u32)(unsigned long) lowcore);
694 local_mcck_enable();
695 local_irq_enable();
KAMEZAWA Hiroyuki97db7fb2006-03-31 02:30:26 -0800696 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (cpu != smp_processor_id())
698 smp_create_idle(cpu);
699}
700
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200701void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 BUG_ON(smp_processor_id() != 0);
704
Heiko Carstens48483b32008-01-26 14:11:05 +0100705 current_thread_info()->cpu = 0;
706 cpu_set(0, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 cpu_set(0, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 S390_lowcore.percpu_offset = __per_cpu_offset[0];
709 current_set[0] = current;
Heiko Carstens08d07962008-01-26 14:10:56 +0100710 smp_cpu_state[0] = CPU_STATE_CONFIGURED;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200711 smp_cpu_polarization[0] = POLARIZATION_UNKNWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Heiko Carstensea1f4ee2007-05-31 17:38:05 +0200714void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
718/*
719 * the frequency of the profiling timer can be changed
720 * by writing a multiplier value into /proc/profile.
721 *
722 * usually you want to run this on all CPUs ;)
723 */
724int setup_profiling_timer(unsigned int multiplier)
725{
Heiko Carstens39ce0102007-04-27 16:02:00 +0200726 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Heiko Carstens08d07962008-01-26 14:10:56 +0100729#ifdef CONFIG_HOTPLUG_CPU
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200730static ssize_t cpu_configure_show(struct sys_device *dev,
731 struct sysdev_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100732{
733 ssize_t count;
734
735 mutex_lock(&smp_cpu_state_mutex);
736 count = sprintf(buf, "%d\n", smp_cpu_state[dev->id]);
737 mutex_unlock(&smp_cpu_state_mutex);
738 return count;
739}
740
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200741static ssize_t cpu_configure_store(struct sys_device *dev,
742 struct sysdev_attribute *attr,
743 const char *buf, size_t count)
Heiko Carstens08d07962008-01-26 14:10:56 +0100744{
745 int cpu = dev->id;
746 int val, rc;
747 char delim;
748
749 if (sscanf(buf, "%d %c", &val, &delim) != 1)
750 return -EINVAL;
751 if (val != 0 && val != 1)
752 return -EINVAL;
753
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100754 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +0200755 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100756 rc = -EBUSY;
757 if (cpu_online(cpu))
758 goto out;
759 rc = 0;
760 switch (val) {
761 case 0:
762 if (smp_cpu_state[cpu] == CPU_STATE_CONFIGURED) {
763 rc = sclp_cpu_deconfigure(__cpu_logical_map[cpu]);
Heiko Carstensc10fde02008-04-17 07:46:13 +0200764 if (!rc) {
Heiko Carstens08d07962008-01-26 14:10:56 +0100765 smp_cpu_state[cpu] = CPU_STATE_STANDBY;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200766 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
767 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100768 }
769 break;
770 case 1:
771 if (smp_cpu_state[cpu] == CPU_STATE_STANDBY) {
772 rc = sclp_cpu_configure(__cpu_logical_map[cpu]);
Heiko Carstensc10fde02008-04-17 07:46:13 +0200773 if (!rc) {
Heiko Carstens08d07962008-01-26 14:10:56 +0100774 smp_cpu_state[cpu] = CPU_STATE_CONFIGURED;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200775 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
776 }
Heiko Carstens08d07962008-01-26 14:10:56 +0100777 }
778 break;
779 default:
780 break;
781 }
782out:
Heiko Carstens08d07962008-01-26 14:10:56 +0100783 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +0200784 put_online_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100785 return rc ? rc : count;
786}
787static SYSDEV_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store);
788#endif /* CONFIG_HOTPLUG_CPU */
789
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200790static ssize_t cpu_polarization_show(struct sys_device *dev,
791 struct sysdev_attribute *attr, char *buf)
Heiko Carstensc10fde02008-04-17 07:46:13 +0200792{
793 int cpu = dev->id;
794 ssize_t count;
795
796 mutex_lock(&smp_cpu_state_mutex);
797 switch (smp_cpu_polarization[cpu]) {
798 case POLARIZATION_HRZ:
799 count = sprintf(buf, "horizontal\n");
800 break;
801 case POLARIZATION_VL:
802 count = sprintf(buf, "vertical:low\n");
803 break;
804 case POLARIZATION_VM:
805 count = sprintf(buf, "vertical:medium\n");
806 break;
807 case POLARIZATION_VH:
808 count = sprintf(buf, "vertical:high\n");
809 break;
810 default:
811 count = sprintf(buf, "unknown\n");
812 break;
813 }
814 mutex_unlock(&smp_cpu_state_mutex);
815 return count;
816}
817static SYSDEV_ATTR(polarization, 0444, cpu_polarization_show, NULL);
818
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200819static ssize_t show_cpu_address(struct sys_device *dev,
820 struct sysdev_attribute *attr, char *buf)
Heiko Carstens08d07962008-01-26 14:10:56 +0100821{
822 return sprintf(buf, "%d\n", __cpu_logical_map[dev->id]);
823}
824static SYSDEV_ATTR(address, 0444, show_cpu_address, NULL);
825
826
827static struct attribute *cpu_common_attrs[] = {
828#ifdef CONFIG_HOTPLUG_CPU
829 &attr_configure.attr,
830#endif
831 &attr_address.attr,
Heiko Carstensc10fde02008-04-17 07:46:13 +0200832 &attr_polarization.attr,
Heiko Carstens08d07962008-01-26 14:10:56 +0100833 NULL,
834};
835
836static struct attribute_group cpu_common_attr_group = {
837 .attrs = cpu_common_attrs,
838};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200840static ssize_t show_capability(struct sys_device *dev,
841 struct sysdev_attribute *attr, char *buf)
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200842{
843 unsigned int capability;
844 int rc;
845
846 rc = get_cpu_capability(&capability);
847 if (rc)
848 return rc;
849 return sprintf(buf, "%u\n", capability);
850}
851static SYSDEV_ATTR(capability, 0444, show_capability, NULL);
852
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200853static ssize_t show_idle_count(struct sys_device *dev,
854 struct sysdev_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +0200855{
856 struct s390_idle_data *idle;
857 unsigned long long idle_count;
858
859 idle = &per_cpu(s390_idle, dev->id);
860 spin_lock_irq(&idle->lock);
861 idle_count = idle->idle_count;
862 spin_unlock_irq(&idle->lock);
863 return sprintf(buf, "%llu\n", idle_count);
864}
865static SYSDEV_ATTR(idle_count, 0444, show_idle_count, NULL);
866
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200867static ssize_t show_idle_time(struct sys_device *dev,
868 struct sysdev_attribute *attr, char *buf)
Heiko Carstensfae8b222007-10-22 12:52:39 +0200869{
870 struct s390_idle_data *idle;
871 unsigned long long new_time;
872
873 idle = &per_cpu(s390_idle, dev->id);
874 spin_lock_irq(&idle->lock);
875 if (idle->in_idle) {
876 new_time = get_clock();
877 idle->idle_time += new_time - idle->idle_enter;
878 idle->idle_enter = new_time;
879 }
880 new_time = idle->idle_time;
881 spin_unlock_irq(&idle->lock);
Heiko Carstens69d39d62007-11-05 11:10:13 +0100882 return sprintf(buf, "%llu\n", new_time >> 12);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200883}
Heiko Carstens69d39d62007-11-05 11:10:13 +0100884static SYSDEV_ATTR(idle_time_us, 0444, show_idle_time, NULL);
Heiko Carstensfae8b222007-10-22 12:52:39 +0200885
Heiko Carstens08d07962008-01-26 14:10:56 +0100886static struct attribute *cpu_online_attrs[] = {
Heiko Carstensfae8b222007-10-22 12:52:39 +0200887 &attr_capability.attr,
888 &attr_idle_count.attr,
Heiko Carstens69d39d62007-11-05 11:10:13 +0100889 &attr_idle_time_us.attr,
Heiko Carstensfae8b222007-10-22 12:52:39 +0200890 NULL,
891};
892
Heiko Carstens08d07962008-01-26 14:10:56 +0100893static struct attribute_group cpu_online_attr_group = {
894 .attrs = cpu_online_attrs,
Heiko Carstensfae8b222007-10-22 12:52:39 +0200895};
896
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200897static int __cpuinit smp_cpu_notify(struct notifier_block *self,
898 unsigned long action, void *hcpu)
899{
900 unsigned int cpu = (unsigned int)(long)hcpu;
901 struct cpu *c = &per_cpu(cpu_devices, cpu);
902 struct sys_device *s = &c->sysdev;
Heiko Carstensfae8b222007-10-22 12:52:39 +0200903 struct s390_idle_data *idle;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200904
905 switch (action) {
906 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700907 case CPU_ONLINE_FROZEN:
Heiko Carstensfae8b222007-10-22 12:52:39 +0200908 idle = &per_cpu(s390_idle, cpu);
909 spin_lock_irq(&idle->lock);
910 idle->idle_enter = 0;
911 idle->idle_time = 0;
912 idle->idle_count = 0;
913 spin_unlock_irq(&idle->lock);
Heiko Carstens08d07962008-01-26 14:10:56 +0100914 if (sysfs_create_group(&s->kobj, &cpu_online_attr_group))
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200915 return NOTIFY_BAD;
916 break;
917 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700918 case CPU_DEAD_FROZEN:
Heiko Carstens08d07962008-01-26 14:10:56 +0100919 sysfs_remove_group(&s->kobj, &cpu_online_attr_group);
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200920 break;
921 }
922 return NOTIFY_OK;
923}
924
925static struct notifier_block __cpuinitdata smp_cpu_nb = {
Heiko Carstens39ce0102007-04-27 16:02:00 +0200926 .notifier_call = smp_cpu_notify,
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +0200927};
928
Heiko Carstens2bc89b52008-02-05 16:50:40 +0100929static int __devinit smp_add_present_cpu(int cpu)
Heiko Carstens08d07962008-01-26 14:10:56 +0100930{
931 struct cpu *c = &per_cpu(cpu_devices, cpu);
932 struct sys_device *s = &c->sysdev;
933 int rc;
934
935 c->hotpluggable = 1;
936 rc = register_cpu(c, cpu);
937 if (rc)
938 goto out;
939 rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group);
940 if (rc)
941 goto out_cpu;
942 if (!cpu_online(cpu))
943 goto out;
944 rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group);
945 if (!rc)
946 return 0;
947 sysfs_remove_group(&s->kobj, &cpu_common_attr_group);
948out_cpu:
949#ifdef CONFIG_HOTPLUG_CPU
950 unregister_cpu(c);
951#endif
952out:
953 return rc;
954}
955
956#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1e489512008-04-30 13:38:37 +0200957
Heiko Carstens67060d92008-05-30 10:03:27 +0200958int __ref smp_rescan_cpus(void)
Heiko Carstens08d07962008-01-26 14:10:56 +0100959{
960 cpumask_t newcpus;
961 int cpu;
962 int rc;
963
Martin Schwidefsky9d40d2e2008-01-26 14:11:31 +0100964 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +0200965 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens08d07962008-01-26 14:10:56 +0100966 newcpus = cpu_present_map;
Heiko Carstens1e489512008-04-30 13:38:37 +0200967 rc = __smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100968 if (rc)
969 goto out;
970 cpus_andnot(newcpus, cpu_present_map, newcpus);
971 for_each_cpu_mask(cpu, newcpus) {
972 rc = smp_add_present_cpu(cpu);
973 if (rc)
974 cpu_clear(cpu, cpu_present_map);
975 }
976 rc = 0;
977out:
Heiko Carstens08d07962008-01-26 14:10:56 +0100978 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +0200979 put_online_cpus();
Heiko Carstensc10fde02008-04-17 07:46:13 +0200980 if (!cpus_empty(newcpus))
981 topology_schedule_update();
Heiko Carstens1e489512008-04-30 13:38:37 +0200982 return rc;
983}
984
Heiko Carstensda5aae72008-10-28 11:10:16 +0100985static ssize_t __ref rescan_store(struct sysdev_class *class, const char *buf,
Heiko Carstens1e489512008-04-30 13:38:37 +0200986 size_t count)
987{
988 int rc;
989
990 rc = smp_rescan_cpus();
Heiko Carstens08d07962008-01-26 14:10:56 +0100991 return rc ? rc : count;
992}
Heiko Carstensda5aae72008-10-28 11:10:16 +0100993static SYSDEV_CLASS_ATTR(rescan, 0200, NULL, rescan_store);
Heiko Carstens08d07962008-01-26 14:10:56 +0100994#endif /* CONFIG_HOTPLUG_CPU */
995
Heiko Carstensda5aae72008-10-28 11:10:16 +0100996static ssize_t dispatching_show(struct sysdev_class *class, char *buf)
Heiko Carstensc10fde02008-04-17 07:46:13 +0200997{
998 ssize_t count;
999
1000 mutex_lock(&smp_cpu_state_mutex);
1001 count = sprintf(buf, "%d\n", cpu_management);
1002 mutex_unlock(&smp_cpu_state_mutex);
1003 return count;
1004}
1005
Heiko Carstensda5aae72008-10-28 11:10:16 +01001006static ssize_t dispatching_store(struct sysdev_class *dev, const char *buf,
1007 size_t count)
Heiko Carstensc10fde02008-04-17 07:46:13 +02001008{
1009 int val, rc;
1010 char delim;
1011
1012 if (sscanf(buf, "%d %c", &val, &delim) != 1)
1013 return -EINVAL;
1014 if (val != 0 && val != 1)
1015 return -EINVAL;
1016 rc = 0;
Heiko Carstensc10fde02008-04-17 07:46:13 +02001017 get_online_cpus();
Heiko Carstens0b18d312008-04-30 13:38:36 +02001018 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstensc10fde02008-04-17 07:46:13 +02001019 if (cpu_management == val)
1020 goto out;
1021 rc = topology_set_cpu_management(val);
1022 if (!rc)
1023 cpu_management = val;
1024out:
Heiko Carstensc10fde02008-04-17 07:46:13 +02001025 mutex_unlock(&smp_cpu_state_mutex);
Heiko Carstens0b18d312008-04-30 13:38:36 +02001026 put_online_cpus();
Heiko Carstensc10fde02008-04-17 07:46:13 +02001027 return rc ? rc : count;
1028}
Heiko Carstensda5aae72008-10-28 11:10:16 +01001029static SYSDEV_CLASS_ATTR(dispatching, 0644, dispatching_show,
1030 dispatching_store);
Heiko Carstensc10fde02008-04-17 07:46:13 +02001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032static int __init topology_init(void)
1033{
1034 int cpu;
Heiko Carstensfae8b222007-10-22 12:52:39 +02001035 int rc;
Heiko Carstens2fc2d1e2007-04-27 16:01:56 +02001036
1037 register_cpu_notifier(&smp_cpu_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Heiko Carstens08d07962008-01-26 14:10:56 +01001039#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstensda5aae72008-10-28 11:10:16 +01001040 rc = sysdev_class_create_file(&cpu_sysdev_class, &attr_rescan);
Heiko Carstens08d07962008-01-26 14:10:56 +01001041 if (rc)
1042 return rc;
1043#endif
Heiko Carstensda5aae72008-10-28 11:10:16 +01001044 rc = sysdev_class_create_file(&cpu_sysdev_class, &attr_dispatching);
Heiko Carstensc10fde02008-04-17 07:46:13 +02001045 if (rc)
1046 return rc;
Heiko Carstens08d07962008-01-26 14:10:56 +01001047 for_each_present_cpu(cpu) {
1048 rc = smp_add_present_cpu(cpu);
Heiko Carstensfae8b222007-10-22 12:52:39 +02001049 if (rc)
1050 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
1052 return 0;
1053}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054subsys_initcall(topology_init);