Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/s390/kernel/smp.c |
| 3 | * |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 1999,2007 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com), |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 6 | * Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 7 | * Heiko Carstens (heiko.carstens@de.ibm.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 9 | * based on other smp stuff by |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * (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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/mm.h> |
Alexey Dobriyan | 4e950f6 | 2007-07-30 02:36:13 +0400 | [diff] [blame] | 26 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/spinlock.h> |
| 28 | #include <linux/kernel_stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/delay.h> |
| 30 | #include <linux/cache.h> |
| 31 | #include <linux/interrupt.h> |
| 32 | #include <linux/cpu.h> |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 33 | #include <linux/timex.h> |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 34 | #include <linux/bootmem.h> |
Michael Holzheu | 46b05d2 | 2007-02-21 10:55:21 +0100 | [diff] [blame] | 35 | #include <asm/ipl.h> |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 36 | #include <asm/setup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #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 Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 43 | #include <asm/timer.h> |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 44 | #include <asm/lowcore.h> |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 45 | #include <asm/sclp.h> |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 46 | #include <asm/cpu.h> |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 47 | #include "entry.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* |
| 50 | * An array with a pointer the lowcore of every CPU. |
| 51 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | struct _lowcore *lowcore_ptr[NR_CPUS]; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 53 | EXPORT_SYMBOL(lowcore_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Heiko Carstens | 255acee | 2006-02-17 13:52:46 -0800 | [diff] [blame] | 55 | cpumask_t cpu_online_map = CPU_MASK_NONE; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 56 | EXPORT_SYMBOL(cpu_online_map); |
| 57 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 58 | cpumask_t cpu_possible_map = CPU_MASK_ALL; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 59 | EXPORT_SYMBOL(cpu_possible_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | static struct task_struct *current_set[NR_CPUS]; |
| 62 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 63 | static u8 smp_cpu_type; |
| 64 | static int smp_use_sigp_detection; |
| 65 | |
| 66 | enum s390_cpu_state { |
| 67 | CPU_STATE_STANDBY, |
| 68 | CPU_STATE_CONFIGURED, |
| 69 | }; |
| 70 | |
Heiko Carstens | dbd70fb | 2008-04-17 07:46:12 +0200 | [diff] [blame] | 71 | DEFINE_MUTEX(smp_cpu_state_mutex); |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 72 | int smp_cpu_polarization[NR_CPUS]; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 73 | static int smp_cpu_state[NR_CPUS]; |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 74 | static int cpu_management; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 75 | |
| 76 | static DEFINE_PER_CPU(struct cpu, cpu_devices); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | static void smp_ext_bitcall(int, ec_bit_sig); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Heiko Carstens | 677d762 | 2007-11-20 11:13:37 +0100 | [diff] [blame] | 80 | void smp_send_stop(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 82 | int cpu, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Heiko Carstens | 677d762 | 2007-11-20 11:13:37 +0100 | [diff] [blame] | 84 | /* 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 Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 90 | /* stop all processors */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 98 | while (!smp_cpu_not_running(cpu)) |
Heiko Carstens | c6b5b84 | 2006-12-04 15:40:33 +0100 | [diff] [blame] | 99 | cpu_relax(); |
| 100 | } |
| 101 | } |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | * This is the main routine where commands issued by other |
| 105 | * cpus are handled. |
| 106 | */ |
| 107 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 108 | static void do_ext_call_interrupt(__u16 code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 110 | unsigned long bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 112 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | bits = xchg(&S390_lowcore.ext_call_fast, 0); |
| 119 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 120 | if (test_bit(ec_call_function, &bits)) |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 121 | generic_smp_call_function_interrupt(); |
| 122 | |
| 123 | if (test_bit(ec_call_function_single, &bits)) |
| 124 | generic_smp_call_function_single_interrupt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | /* |
| 128 | * Send an external call sigp to another cpu and return without waiting |
| 129 | * for its completion. |
| 130 | */ |
| 131 | static void smp_ext_bitcall(int cpu, ec_bit_sig sig) |
| 132 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 133 | /* |
| 134 | * Set signaling bit in lowcore of target cpu and kick it |
| 135 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | set_bit(sig, (unsigned long *) &lowcore_ptr[cpu]->ext_call_fast); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 137 | while (signal_processor(cpu, sigp_emergency_signal) == sigp_busy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | udelay(10); |
| 139 | } |
| 140 | |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 141 | void 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 | |
| 149 | void arch_send_call_function_single_ipi(int cpu) |
| 150 | { |
| 151 | smp_ext_bitcall(cpu, ec_call_function_single); |
| 152 | } |
| 153 | |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 154 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /* |
| 156 | * this function sends a 'purge tlb' signal to another CPU. |
| 157 | */ |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 158 | static void smp_ptlb_callback(void *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 160 | __tlb_flush_local(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | void smp_ptlb_all(void) |
| 164 | { |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 165 | on_each_cpu(smp_ptlb_callback, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | EXPORT_SYMBOL(smp_ptlb_all); |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 168 | #endif /* ! CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
| 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 | */ |
| 175 | void smp_send_reschedule(int cpu) |
| 176 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 177 | smp_ext_bitcall(cpu, ec_schedule); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | /* |
| 181 | * parameter area for the set/clear control bit callbacks |
| 182 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 183 | struct ec_creg_mask_parms { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | unsigned long orvals[16]; |
| 185 | unsigned long andvals[16]; |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 186 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
| 188 | /* |
| 189 | * callback for setting/clearing control bits |
| 190 | */ |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 191 | static void smp_ctl_bit_callback(void *info) |
| 192 | { |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 193 | struct ec_creg_mask_parms *pp = info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | unsigned long cregs[16]; |
| 195 | int i; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 196 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 197 | __ctl_store(cregs, 0, 15); |
| 198 | for (i = 0; i <= 15; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | cregs[i] = (cregs[i] & pp->andvals[i]) | pp->orvals[i]; |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 200 | __ctl_load(cregs, 0, 15); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | /* |
| 204 | * Set a bit in a control register of all cpus |
| 205 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 206 | void smp_ctl_set_bit(int cr, int bit) |
| 207 | { |
| 208 | struct ec_creg_mask_parms parms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 210 | memset(&parms.orvals, 0, sizeof(parms.orvals)); |
| 211 | memset(&parms.andvals, 0xff, sizeof(parms.andvals)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | parms.orvals[cr] = 1 << bit; |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 213 | on_each_cpu(smp_ctl_bit_callback, &parms, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | } |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 215 | EXPORT_SYMBOL(smp_ctl_set_bit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | /* |
| 218 | * Clear a bit in a control register of all cpus |
| 219 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 220 | void smp_ctl_clear_bit(int cr, int bit) |
| 221 | { |
| 222 | struct ec_creg_mask_parms parms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 224 | memset(&parms.orvals, 0, sizeof(parms.orvals)); |
| 225 | memset(&parms.andvals, 0xff, sizeof(parms.andvals)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | parms.andvals[cr] = ~(1L << bit); |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 227 | on_each_cpu(smp_ctl_bit_callback, &parms, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 229 | EXPORT_SYMBOL(smp_ctl_clear_bit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 231 | /* |
| 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 Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 238 | #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 | */ |
| 246 | unsigned int zfcpdump_prefix_array[NR_CPUS + 1] \ |
| 247 | __attribute__((__section__(".data"))); |
| 248 | |
Heiko Carstens | 285f672 | 2007-07-10 11:24:13 +0200 | [diff] [blame] | 249 | static void __init smp_get_save_area(unsigned int cpu, unsigned int phy_cpu) |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 250 | { |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 251 | if (ipl_info.type != IPL_TYPE_FCP_DUMP) |
| 252 | return; |
Heiko Carstens | 285f672 | 2007-07-10 11:24:13 +0200 | [diff] [blame] | 253 | 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 Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 257 | } |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 258 | zfcpdump_save_areas[cpu] = kmalloc(sizeof(union save_area), GFP_KERNEL); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 259 | __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 Carstens | 285f672 | 2007-07-10 11:24:13 +0200 | [diff] [blame] | 262 | 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 Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | union save_area *zfcpdump_save_areas[NR_CPUS + 1]; |
| 273 | EXPORT_SYMBOL_GPL(zfcpdump_save_areas); |
| 274 | |
| 275 | #else |
Heiko Carstens | 285f672 | 2007-07-10 11:24:13 +0200 | [diff] [blame] | 276 | |
| 277 | static inline void smp_get_save_area(unsigned int cpu, unsigned int phy_cpu) { } |
| 278 | |
| 279 | #endif /* CONFIG_ZFCPDUMP || CONFIG_ZFCPDUMP_MODULE */ |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 280 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 281 | static 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 Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 294 | static 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 | |
| 305 | static 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 Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 316 | smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 317 | 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 Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 328 | static int smp_rescan_cpus_sclp(cpumask_t avail) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 329 | { |
| 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 Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 337 | info = kmalloc(sizeof(*info), GFP_KERNEL); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 338 | 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 Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 350 | smp_cpu_polarization[logical_cpu] = POLARIZATION_UNKNWN; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 351 | 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 | } |
| 360 | out: |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 361 | kfree(info); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 362 | return rc; |
| 363 | } |
| 364 | |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 365 | static int __smp_rescan_cpus(void) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 366 | { |
| 367 | cpumask_t avail; |
| 368 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 369 | cpus_xor(avail, cpu_possible_map, cpu_present_map); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 370 | if (smp_use_sigp_detection) |
| 371 | return smp_rescan_cpus_sigp(avail); |
| 372 | else |
| 373 | return smp_rescan_cpus_sclp(avail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 376 | static 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 | } |
| 426 | out: |
| 427 | kfree(info); |
| 428 | printk(KERN_INFO "CPUs: %d configured, %d standby\n", c_cpus, s_cpus); |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 429 | get_online_cpus(); |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 430 | __smp_rescan_cpus(); |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 431 | put_online_cpus(); |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 432 | } |
| 433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | /* |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 435 | * Activate a secondary processor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | */ |
Heiko Carstens | ea1f4ee | 2007-05-31 17:38:05 +0200 | [diff] [blame] | 437 | int __cpuinit start_secondary(void *cpuvoid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 439 | /* Setup the cpu */ |
| 440 | cpu_init(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 441 | preempt_disable(); |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 442 | /* Enable TOD clock interrupts on the secondary cpu. */ |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 443 | init_cpu_timer(); |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 444 | /* Enable cpu timer interrupts on the secondary cpu. */ |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 445 | init_cpu_vtimer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | /* Enable pfault pseudo page faults on this cpu. */ |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 447 | pfault_init(); |
| 448 | |
Manfred Spraul | e545a61 | 2008-09-07 16:57:22 +0200 | [diff] [blame] | 449 | /* call cpu notifiers */ |
| 450 | notify_cpu_starting(smp_processor_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | /* Mark this cpu as online */ |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 452 | ipi_call_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | cpu_set(smp_processor_id(), cpu_online_map); |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 454 | ipi_call_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | /* Switch on interrupts */ |
| 456 | local_irq_enable(); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 457 | /* Print info about this processor */ |
| 458 | print_cpu_info(&S390_lowcore.cpu_data); |
| 459 | /* cpu_idle will call schedule for us */ |
| 460 | cpu_idle(); |
| 461 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | static void __init smp_create_idle(unsigned int cpu) |
| 465 | { |
| 466 | struct task_struct *p; |
| 467 | |
| 468 | /* |
| 469 | * don't care about the psw and regs settings since we'll never |
| 470 | * reschedule the forked task. |
| 471 | */ |
| 472 | p = fork_idle(cpu); |
| 473 | if (IS_ERR(p)) |
| 474 | panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p)); |
| 475 | current_set[cpu] = p; |
| 476 | } |
| 477 | |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 478 | static int __cpuinit smp_alloc_lowcore(int cpu) |
| 479 | { |
| 480 | unsigned long async_stack, panic_stack; |
| 481 | struct _lowcore *lowcore; |
| 482 | int lc_order; |
| 483 | |
| 484 | lc_order = sizeof(long) == 8 ? 1 : 0; |
| 485 | lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, lc_order); |
| 486 | if (!lowcore) |
| 487 | return -ENOMEM; |
| 488 | async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER); |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 489 | panic_stack = __get_free_page(GFP_KERNEL); |
Heiko Carstens | 591bb4f | 2008-02-19 15:29:29 +0100 | [diff] [blame] | 490 | if (!panic_stack || !async_stack) |
| 491 | goto out; |
Heiko Carstens | 98c7b38 | 2008-03-05 12:37:09 +0100 | [diff] [blame] | 492 | memcpy(lowcore, &S390_lowcore, 512); |
| 493 | memset((char *)lowcore + 512, 0, sizeof(*lowcore) - 512); |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 494 | lowcore->async_stack = async_stack + ASYNC_SIZE; |
| 495 | lowcore->panic_stack = panic_stack + PAGE_SIZE; |
| 496 | |
| 497 | #ifndef CONFIG_64BIT |
| 498 | if (MACHINE_HAS_IEEE) { |
| 499 | unsigned long save_area; |
| 500 | |
| 501 | save_area = get_zeroed_page(GFP_KERNEL); |
| 502 | if (!save_area) |
Martin Schwidefsky | 33b1d09 | 2008-12-25 13:39:27 +0100 | [diff] [blame^] | 503 | goto out; |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 504 | lowcore->extended_save_area_addr = (u32) save_area; |
| 505 | } |
| 506 | #endif |
| 507 | lowcore_ptr[cpu] = lowcore; |
| 508 | return 0; |
| 509 | |
Heiko Carstens | 591bb4f | 2008-02-19 15:29:29 +0100 | [diff] [blame] | 510 | out: |
Martin Schwidefsky | 33b1d09 | 2008-12-25 13:39:27 +0100 | [diff] [blame^] | 511 | free_page(panic_stack); |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 512 | free_pages(async_stack, ASYNC_ORDER); |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 513 | free_pages((unsigned long) lowcore, lc_order); |
| 514 | return -ENOMEM; |
| 515 | } |
| 516 | |
| 517 | #ifdef CONFIG_HOTPLUG_CPU |
| 518 | static void smp_free_lowcore(int cpu) |
| 519 | { |
| 520 | struct _lowcore *lowcore; |
| 521 | int lc_order; |
| 522 | |
| 523 | lc_order = sizeof(long) == 8 ? 1 : 0; |
| 524 | lowcore = lowcore_ptr[cpu]; |
| 525 | #ifndef CONFIG_64BIT |
| 526 | if (MACHINE_HAS_IEEE) |
| 527 | free_page((unsigned long) lowcore->extended_save_area_addr); |
| 528 | #endif |
| 529 | free_page(lowcore->panic_stack - PAGE_SIZE); |
| 530 | free_pages(lowcore->async_stack - ASYNC_SIZE, ASYNC_ORDER); |
| 531 | free_pages((unsigned long) lowcore, lc_order); |
| 532 | lowcore_ptr[cpu] = NULL; |
| 533 | } |
| 534 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 535 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | /* Upping and downing of CPUs */ |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 537 | int __cpuinit __cpu_up(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | { |
| 539 | struct task_struct *idle; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 540 | struct _lowcore *cpu_lowcore; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | struct stack_frame *sf; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 542 | sigp_ccode ccode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 544 | if (smp_cpu_state[cpu] != CPU_STATE_CONFIGURED) |
| 545 | return -EIO; |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 546 | if (smp_alloc_lowcore(cpu)) |
| 547 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | |
| 549 | ccode = signal_processor_p((__u32)(unsigned long)(lowcore_ptr[cpu]), |
| 550 | cpu, sigp_set_prefix); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 551 | if (ccode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | printk("sigp_set_prefix failed for cpu %d " |
| 553 | "with condition code %d\n", |
| 554 | (int) cpu, (int) ccode); |
| 555 | return -EIO; |
| 556 | } |
| 557 | |
| 558 | idle = current_set[cpu]; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 559 | cpu_lowcore = lowcore_ptr[cpu]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | cpu_lowcore->kernel_stack = (unsigned long) |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 561 | task_stack_page(idle) + THREAD_SIZE; |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 562 | cpu_lowcore->thread_info = (unsigned long) task_thread_info(idle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | sf = (struct stack_frame *) (cpu_lowcore->kernel_stack |
| 564 | - sizeof(struct pt_regs) |
| 565 | - sizeof(struct stack_frame)); |
| 566 | memset(sf, 0, sizeof(struct stack_frame)); |
| 567 | sf->gprs[9] = (unsigned long) sf; |
| 568 | cpu_lowcore->save_area[15] = (unsigned long) sf; |
Segher Boessenkool | 24d3e21 | 2008-06-10 10:03:23 +0200 | [diff] [blame] | 569 | __ctl_store(cpu_lowcore->cregs_save_area, 0, 15); |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 570 | asm volatile( |
| 571 | " stam 0,15,0(%0)" |
| 572 | : : "a" (&cpu_lowcore->access_regs_save_area) : "memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | cpu_lowcore->percpu_offset = __per_cpu_offset[cpu]; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 574 | cpu_lowcore->current_task = (unsigned long) idle; |
| 575 | cpu_lowcore->cpu_data.cpu_nr = cpu; |
Heiko Carstens | 591bb4f | 2008-02-19 15:29:29 +0100 | [diff] [blame] | 576 | cpu_lowcore->kernel_asce = S390_lowcore.kernel_asce; |
| 577 | cpu_lowcore->ipl_device = S390_lowcore.ipl_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | eieio(); |
Michael Ryan | 699ff13 | 2006-03-24 03:15:17 -0800 | [diff] [blame] | 579 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 580 | while (signal_processor(cpu, sigp_restart) == sigp_busy) |
Michael Ryan | 699ff13 | 2006-03-24 03:15:17 -0800 | [diff] [blame] | 581 | udelay(10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
| 583 | while (!cpu_online(cpu)) |
| 584 | cpu_relax(); |
| 585 | return 0; |
| 586 | } |
| 587 | |
Heiko Carstens | 37a3302 | 2006-02-17 13:52:47 -0800 | [diff] [blame] | 588 | static int __init setup_possible_cpus(char *s) |
| 589 | { |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 590 | int pcpus, cpu; |
| 591 | |
| 592 | pcpus = simple_strtoul(s, NULL, 0); |
| 593 | cpu_possible_map = cpumask_of_cpu(0); |
| 594 | for (cpu = 1; cpu < pcpus && cpu < NR_CPUS; cpu++) |
| 595 | cpu_set(cpu, cpu_possible_map); |
Heiko Carstens | 37a3302 | 2006-02-17 13:52:47 -0800 | [diff] [blame] | 596 | return 0; |
| 597 | } |
| 598 | early_param("possible_cpus", setup_possible_cpus); |
| 599 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 600 | #ifdef CONFIG_HOTPLUG_CPU |
| 601 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 602 | int __cpu_disable(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | { |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 604 | struct ec_creg_mask_parms cr_parms; |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 605 | int cpu = smp_processor_id(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 607 | cpu_clear(cpu, cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | /* Disable pfault pseudo page faults on this cpu. */ |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 610 | pfault_fini(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 612 | memset(&cr_parms.orvals, 0, sizeof(cr_parms.orvals)); |
| 613 | memset(&cr_parms.andvals, 0xff, sizeof(cr_parms.andvals)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 615 | /* disable all external interrupts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | cr_parms.orvals[0] = 0; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 617 | cr_parms.andvals[0] = ~(1 << 15 | 1 << 14 | 1 << 13 | 1 << 12 | |
| 618 | 1 << 11 | 1 << 10 | 1 << 6 | 1 << 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | /* disable all I/O interrupts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | cr_parms.orvals[6] = 0; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 621 | cr_parms.andvals[6] = ~(1 << 31 | 1 << 30 | 1 << 29 | 1 << 28 | |
| 622 | 1 << 27 | 1 << 26 | 1 << 25 | 1 << 24); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | /* disable most machine checks */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | cr_parms.orvals[14] = 0; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 625 | cr_parms.andvals[14] = ~(1 << 28 | 1 << 27 | 1 << 26 | |
| 626 | 1 << 25 | 1 << 24); |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 627 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | smp_ctl_bit_callback(&cr_parms); |
| 629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | return 0; |
| 631 | } |
| 632 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 633 | void __cpu_die(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | { |
| 635 | /* Wait until target cpu is down */ |
| 636 | while (!smp_cpu_not_running(cpu)) |
| 637 | cpu_relax(); |
Heiko Carstens | 1cb6bb4 | 2008-01-26 14:11:14 +0100 | [diff] [blame] | 638 | smp_free_lowcore(cpu); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 639 | printk(KERN_INFO "Processor %d spun down\n", cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } |
| 641 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 642 | void cpu_die(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | { |
| 644 | idle_task_exit(); |
| 645 | signal_processor(smp_processor_id(), sigp_stop); |
| 646 | BUG(); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 647 | for (;;); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | } |
| 649 | |
Heiko Carstens | 255acee | 2006-02-17 13:52:46 -0800 | [diff] [blame] | 650 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | void __init smp_prepare_cpus(unsigned int max_cpus) |
| 653 | { |
Heiko Carstens | 591bb4f | 2008-02-19 15:29:29 +0100 | [diff] [blame] | 654 | #ifndef CONFIG_64BIT |
| 655 | unsigned long save_area = 0; |
| 656 | #endif |
| 657 | unsigned long async_stack, panic_stack; |
| 658 | struct _lowcore *lowcore; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | unsigned int cpu; |
Heiko Carstens | 591bb4f | 2008-02-19 15:29:29 +0100 | [diff] [blame] | 660 | int lc_order; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 662 | smp_detect_cpus(); |
| 663 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 664 | /* request the 0x1201 emergency signal external interrupt */ |
| 665 | if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0) |
| 666 | panic("Couldn't request external interrupt 0x1201"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | print_cpu_info(&S390_lowcore.cpu_data); |
| 668 | |
Heiko Carstens | 591bb4f | 2008-02-19 15:29:29 +0100 | [diff] [blame] | 669 | /* Reallocate current lowcore, but keep its contents. */ |
| 670 | lc_order = sizeof(long) == 8 ? 1 : 0; |
| 671 | lowcore = (void *) __get_free_pages(GFP_KERNEL | GFP_DMA, lc_order); |
| 672 | panic_stack = __get_free_page(GFP_KERNEL); |
| 673 | async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER); |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 674 | #ifndef CONFIG_64BIT |
Heiko Carstens | 77fa224 | 2005-06-25 14:55:30 -0700 | [diff] [blame] | 675 | if (MACHINE_HAS_IEEE) |
Heiko Carstens | 591bb4f | 2008-02-19 15:29:29 +0100 | [diff] [blame] | 676 | save_area = get_zeroed_page(GFP_KERNEL); |
Heiko Carstens | 77fa224 | 2005-06-25 14:55:30 -0700 | [diff] [blame] | 677 | #endif |
Heiko Carstens | 591bb4f | 2008-02-19 15:29:29 +0100 | [diff] [blame] | 678 | local_irq_disable(); |
| 679 | local_mcck_disable(); |
| 680 | lowcore_ptr[smp_processor_id()] = lowcore; |
| 681 | *lowcore = S390_lowcore; |
| 682 | lowcore->panic_stack = panic_stack + PAGE_SIZE; |
| 683 | lowcore->async_stack = async_stack + ASYNC_SIZE; |
| 684 | #ifndef CONFIG_64BIT |
| 685 | if (MACHINE_HAS_IEEE) |
| 686 | lowcore->extended_save_area_addr = (u32) save_area; |
| 687 | #endif |
| 688 | set_prefix((u32)(unsigned long) lowcore); |
| 689 | local_mcck_enable(); |
| 690 | local_irq_enable(); |
KAMEZAWA Hiroyuki | 97db7fb | 2006-03-31 02:30:26 -0800 | [diff] [blame] | 691 | for_each_possible_cpu(cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | if (cpu != smp_processor_id()) |
| 693 | smp_create_idle(cpu); |
| 694 | } |
| 695 | |
Heiko Carstens | ea1f4ee | 2007-05-31 17:38:05 +0200 | [diff] [blame] | 696 | void __init smp_prepare_boot_cpu(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
| 698 | BUG_ON(smp_processor_id() != 0); |
| 699 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 700 | current_thread_info()->cpu = 0; |
| 701 | cpu_set(0, cpu_present_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | cpu_set(0, cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | S390_lowcore.percpu_offset = __per_cpu_offset[0]; |
| 704 | current_set[0] = current; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 705 | smp_cpu_state[0] = CPU_STATE_CONFIGURED; |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 706 | smp_cpu_polarization[0] = POLARIZATION_UNKNWN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | } |
| 708 | |
Heiko Carstens | ea1f4ee | 2007-05-31 17:38:05 +0200 | [diff] [blame] | 709 | void __init smp_cpus_done(unsigned int max_cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | /* |
| 714 | * the frequency of the profiling timer can be changed |
| 715 | * by writing a multiplier value into /proc/profile. |
| 716 | * |
| 717 | * usually you want to run this on all CPUs ;) |
| 718 | */ |
| 719 | int setup_profiling_timer(unsigned int multiplier) |
| 720 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 721 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
| 723 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 724 | #ifdef CONFIG_HOTPLUG_CPU |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 725 | static ssize_t cpu_configure_show(struct sys_device *dev, |
| 726 | struct sysdev_attribute *attr, char *buf) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 727 | { |
| 728 | ssize_t count; |
| 729 | |
| 730 | mutex_lock(&smp_cpu_state_mutex); |
| 731 | count = sprintf(buf, "%d\n", smp_cpu_state[dev->id]); |
| 732 | mutex_unlock(&smp_cpu_state_mutex); |
| 733 | return count; |
| 734 | } |
| 735 | |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 736 | static ssize_t cpu_configure_store(struct sys_device *dev, |
| 737 | struct sysdev_attribute *attr, |
| 738 | const char *buf, size_t count) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 739 | { |
| 740 | int cpu = dev->id; |
| 741 | int val, rc; |
| 742 | char delim; |
| 743 | |
| 744 | if (sscanf(buf, "%d %c", &val, &delim) != 1) |
| 745 | return -EINVAL; |
| 746 | if (val != 0 && val != 1) |
| 747 | return -EINVAL; |
| 748 | |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 749 | get_online_cpus(); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 750 | mutex_lock(&smp_cpu_state_mutex); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 751 | rc = -EBUSY; |
| 752 | if (cpu_online(cpu)) |
| 753 | goto out; |
| 754 | rc = 0; |
| 755 | switch (val) { |
| 756 | case 0: |
| 757 | if (smp_cpu_state[cpu] == CPU_STATE_CONFIGURED) { |
| 758 | rc = sclp_cpu_deconfigure(__cpu_logical_map[cpu]); |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 759 | if (!rc) { |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 760 | smp_cpu_state[cpu] = CPU_STATE_STANDBY; |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 761 | smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN; |
| 762 | } |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 763 | } |
| 764 | break; |
| 765 | case 1: |
| 766 | if (smp_cpu_state[cpu] == CPU_STATE_STANDBY) { |
| 767 | rc = sclp_cpu_configure(__cpu_logical_map[cpu]); |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 768 | if (!rc) { |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 769 | smp_cpu_state[cpu] = CPU_STATE_CONFIGURED; |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 770 | smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN; |
| 771 | } |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 772 | } |
| 773 | break; |
| 774 | default: |
| 775 | break; |
| 776 | } |
| 777 | out: |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 778 | mutex_unlock(&smp_cpu_state_mutex); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 779 | put_online_cpus(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 780 | return rc ? rc : count; |
| 781 | } |
| 782 | static SYSDEV_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store); |
| 783 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 784 | |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 785 | static ssize_t cpu_polarization_show(struct sys_device *dev, |
| 786 | struct sysdev_attribute *attr, char *buf) |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 787 | { |
| 788 | int cpu = dev->id; |
| 789 | ssize_t count; |
| 790 | |
| 791 | mutex_lock(&smp_cpu_state_mutex); |
| 792 | switch (smp_cpu_polarization[cpu]) { |
| 793 | case POLARIZATION_HRZ: |
| 794 | count = sprintf(buf, "horizontal\n"); |
| 795 | break; |
| 796 | case POLARIZATION_VL: |
| 797 | count = sprintf(buf, "vertical:low\n"); |
| 798 | break; |
| 799 | case POLARIZATION_VM: |
| 800 | count = sprintf(buf, "vertical:medium\n"); |
| 801 | break; |
| 802 | case POLARIZATION_VH: |
| 803 | count = sprintf(buf, "vertical:high\n"); |
| 804 | break; |
| 805 | default: |
| 806 | count = sprintf(buf, "unknown\n"); |
| 807 | break; |
| 808 | } |
| 809 | mutex_unlock(&smp_cpu_state_mutex); |
| 810 | return count; |
| 811 | } |
| 812 | static SYSDEV_ATTR(polarization, 0444, cpu_polarization_show, NULL); |
| 813 | |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 814 | static ssize_t show_cpu_address(struct sys_device *dev, |
| 815 | struct sysdev_attribute *attr, char *buf) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 816 | { |
| 817 | return sprintf(buf, "%d\n", __cpu_logical_map[dev->id]); |
| 818 | } |
| 819 | static SYSDEV_ATTR(address, 0444, show_cpu_address, NULL); |
| 820 | |
| 821 | |
| 822 | static struct attribute *cpu_common_attrs[] = { |
| 823 | #ifdef CONFIG_HOTPLUG_CPU |
| 824 | &attr_configure.attr, |
| 825 | #endif |
| 826 | &attr_address.attr, |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 827 | &attr_polarization.attr, |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 828 | NULL, |
| 829 | }; |
| 830 | |
| 831 | static struct attribute_group cpu_common_attr_group = { |
| 832 | .attrs = cpu_common_attrs, |
| 833 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 835 | static ssize_t show_capability(struct sys_device *dev, |
| 836 | struct sysdev_attribute *attr, char *buf) |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 837 | { |
| 838 | unsigned int capability; |
| 839 | int rc; |
| 840 | |
| 841 | rc = get_cpu_capability(&capability); |
| 842 | if (rc) |
| 843 | return rc; |
| 844 | return sprintf(buf, "%u\n", capability); |
| 845 | } |
| 846 | static SYSDEV_ATTR(capability, 0444, show_capability, NULL); |
| 847 | |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 848 | static ssize_t show_idle_count(struct sys_device *dev, |
| 849 | struct sysdev_attribute *attr, char *buf) |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 850 | { |
| 851 | struct s390_idle_data *idle; |
| 852 | unsigned long long idle_count; |
| 853 | |
| 854 | idle = &per_cpu(s390_idle, dev->id); |
| 855 | spin_lock_irq(&idle->lock); |
| 856 | idle_count = idle->idle_count; |
| 857 | spin_unlock_irq(&idle->lock); |
| 858 | return sprintf(buf, "%llu\n", idle_count); |
| 859 | } |
| 860 | static SYSDEV_ATTR(idle_count, 0444, show_idle_count, NULL); |
| 861 | |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 862 | static ssize_t show_idle_time(struct sys_device *dev, |
| 863 | struct sysdev_attribute *attr, char *buf) |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 864 | { |
| 865 | struct s390_idle_data *idle; |
| 866 | unsigned long long new_time; |
| 867 | |
| 868 | idle = &per_cpu(s390_idle, dev->id); |
| 869 | spin_lock_irq(&idle->lock); |
| 870 | if (idle->in_idle) { |
| 871 | new_time = get_clock(); |
| 872 | idle->idle_time += new_time - idle->idle_enter; |
| 873 | idle->idle_enter = new_time; |
| 874 | } |
| 875 | new_time = idle->idle_time; |
| 876 | spin_unlock_irq(&idle->lock); |
Heiko Carstens | 69d39d6 | 2007-11-05 11:10:13 +0100 | [diff] [blame] | 877 | return sprintf(buf, "%llu\n", new_time >> 12); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 878 | } |
Heiko Carstens | 69d39d6 | 2007-11-05 11:10:13 +0100 | [diff] [blame] | 879 | static SYSDEV_ATTR(idle_time_us, 0444, show_idle_time, NULL); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 880 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 881 | static struct attribute *cpu_online_attrs[] = { |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 882 | &attr_capability.attr, |
| 883 | &attr_idle_count.attr, |
Heiko Carstens | 69d39d6 | 2007-11-05 11:10:13 +0100 | [diff] [blame] | 884 | &attr_idle_time_us.attr, |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 885 | NULL, |
| 886 | }; |
| 887 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 888 | static struct attribute_group cpu_online_attr_group = { |
| 889 | .attrs = cpu_online_attrs, |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 890 | }; |
| 891 | |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 892 | static int __cpuinit smp_cpu_notify(struct notifier_block *self, |
| 893 | unsigned long action, void *hcpu) |
| 894 | { |
| 895 | unsigned int cpu = (unsigned int)(long)hcpu; |
| 896 | struct cpu *c = &per_cpu(cpu_devices, cpu); |
| 897 | struct sys_device *s = &c->sysdev; |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 898 | struct s390_idle_data *idle; |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 899 | |
| 900 | switch (action) { |
| 901 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 902 | case CPU_ONLINE_FROZEN: |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 903 | idle = &per_cpu(s390_idle, cpu); |
| 904 | spin_lock_irq(&idle->lock); |
| 905 | idle->idle_enter = 0; |
| 906 | idle->idle_time = 0; |
| 907 | idle->idle_count = 0; |
| 908 | spin_unlock_irq(&idle->lock); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 909 | if (sysfs_create_group(&s->kobj, &cpu_online_attr_group)) |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 910 | return NOTIFY_BAD; |
| 911 | break; |
| 912 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 913 | case CPU_DEAD_FROZEN: |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 914 | sysfs_remove_group(&s->kobj, &cpu_online_attr_group); |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 915 | break; |
| 916 | } |
| 917 | return NOTIFY_OK; |
| 918 | } |
| 919 | |
| 920 | static struct notifier_block __cpuinitdata smp_cpu_nb = { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 921 | .notifier_call = smp_cpu_notify, |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 922 | }; |
| 923 | |
Heiko Carstens | 2bc89b5 | 2008-02-05 16:50:40 +0100 | [diff] [blame] | 924 | static int __devinit smp_add_present_cpu(int cpu) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 925 | { |
| 926 | struct cpu *c = &per_cpu(cpu_devices, cpu); |
| 927 | struct sys_device *s = &c->sysdev; |
| 928 | int rc; |
| 929 | |
| 930 | c->hotpluggable = 1; |
| 931 | rc = register_cpu(c, cpu); |
| 932 | if (rc) |
| 933 | goto out; |
| 934 | rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group); |
| 935 | if (rc) |
| 936 | goto out_cpu; |
| 937 | if (!cpu_online(cpu)) |
| 938 | goto out; |
| 939 | rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group); |
| 940 | if (!rc) |
| 941 | return 0; |
| 942 | sysfs_remove_group(&s->kobj, &cpu_common_attr_group); |
| 943 | out_cpu: |
| 944 | #ifdef CONFIG_HOTPLUG_CPU |
| 945 | unregister_cpu(c); |
| 946 | #endif |
| 947 | out: |
| 948 | return rc; |
| 949 | } |
| 950 | |
| 951 | #ifdef CONFIG_HOTPLUG_CPU |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 952 | |
Heiko Carstens | 67060d9 | 2008-05-30 10:03:27 +0200 | [diff] [blame] | 953 | int __ref smp_rescan_cpus(void) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 954 | { |
| 955 | cpumask_t newcpus; |
| 956 | int cpu; |
| 957 | int rc; |
| 958 | |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 959 | get_online_cpus(); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 960 | mutex_lock(&smp_cpu_state_mutex); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 961 | newcpus = cpu_present_map; |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 962 | rc = __smp_rescan_cpus(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 963 | if (rc) |
| 964 | goto out; |
| 965 | cpus_andnot(newcpus, cpu_present_map, newcpus); |
| 966 | for_each_cpu_mask(cpu, newcpus) { |
| 967 | rc = smp_add_present_cpu(cpu); |
| 968 | if (rc) |
| 969 | cpu_clear(cpu, cpu_present_map); |
| 970 | } |
| 971 | rc = 0; |
| 972 | out: |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 973 | mutex_unlock(&smp_cpu_state_mutex); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 974 | put_online_cpus(); |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 975 | if (!cpus_empty(newcpus)) |
| 976 | topology_schedule_update(); |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 977 | return rc; |
| 978 | } |
| 979 | |
Heiko Carstens | da5aae7 | 2008-10-28 11:10:16 +0100 | [diff] [blame] | 980 | static ssize_t __ref rescan_store(struct sysdev_class *class, const char *buf, |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 981 | size_t count) |
| 982 | { |
| 983 | int rc; |
| 984 | |
| 985 | rc = smp_rescan_cpus(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 986 | return rc ? rc : count; |
| 987 | } |
Heiko Carstens | da5aae7 | 2008-10-28 11:10:16 +0100 | [diff] [blame] | 988 | static SYSDEV_CLASS_ATTR(rescan, 0200, NULL, rescan_store); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 989 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 990 | |
Heiko Carstens | da5aae7 | 2008-10-28 11:10:16 +0100 | [diff] [blame] | 991 | static ssize_t dispatching_show(struct sysdev_class *class, char *buf) |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 992 | { |
| 993 | ssize_t count; |
| 994 | |
| 995 | mutex_lock(&smp_cpu_state_mutex); |
| 996 | count = sprintf(buf, "%d\n", cpu_management); |
| 997 | mutex_unlock(&smp_cpu_state_mutex); |
| 998 | return count; |
| 999 | } |
| 1000 | |
Heiko Carstens | da5aae7 | 2008-10-28 11:10:16 +0100 | [diff] [blame] | 1001 | static ssize_t dispatching_store(struct sysdev_class *dev, const char *buf, |
| 1002 | size_t count) |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1003 | { |
| 1004 | int val, rc; |
| 1005 | char delim; |
| 1006 | |
| 1007 | if (sscanf(buf, "%d %c", &val, &delim) != 1) |
| 1008 | return -EINVAL; |
| 1009 | if (val != 0 && val != 1) |
| 1010 | return -EINVAL; |
| 1011 | rc = 0; |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1012 | get_online_cpus(); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 1013 | mutex_lock(&smp_cpu_state_mutex); |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1014 | if (cpu_management == val) |
| 1015 | goto out; |
| 1016 | rc = topology_set_cpu_management(val); |
| 1017 | if (!rc) |
| 1018 | cpu_management = val; |
| 1019 | out: |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1020 | mutex_unlock(&smp_cpu_state_mutex); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 1021 | put_online_cpus(); |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1022 | return rc ? rc : count; |
| 1023 | } |
Heiko Carstens | da5aae7 | 2008-10-28 11:10:16 +0100 | [diff] [blame] | 1024 | static SYSDEV_CLASS_ATTR(dispatching, 0644, dispatching_show, |
| 1025 | dispatching_store); |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | static int __init topology_init(void) |
| 1028 | { |
| 1029 | int cpu; |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 1030 | int rc; |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1031 | |
| 1032 | register_cpu_notifier(&smp_cpu_nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1034 | #ifdef CONFIG_HOTPLUG_CPU |
Heiko Carstens | da5aae7 | 2008-10-28 11:10:16 +0100 | [diff] [blame] | 1035 | rc = sysdev_class_create_file(&cpu_sysdev_class, &attr_rescan); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1036 | if (rc) |
| 1037 | return rc; |
| 1038 | #endif |
Heiko Carstens | da5aae7 | 2008-10-28 11:10:16 +0100 | [diff] [blame] | 1039 | rc = sysdev_class_create_file(&cpu_sysdev_class, &attr_dispatching); |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1040 | if (rc) |
| 1041 | return rc; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1042 | for_each_present_cpu(cpu) { |
| 1043 | rc = smp_add_present_cpu(cpu); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 1044 | if (rc) |
| 1045 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | } |
| 1047 | return 0; |
| 1048 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | subsys_initcall(topology_init); |