Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 2 | * SMP related functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 4 | * Copyright IBM Corp. 1999,2012 |
| 5 | * Author(s): Denis Joseph Barrow, |
| 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 | * |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 13 | * The code outside of smp.c uses logical cpu numbers, only smp.c does |
| 14 | * the translation of logical to physical cpu ids. All new code that |
| 15 | * operates on physical cpu numbers needs to go into smp.c. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | */ |
| 17 | |
Martin Schwidefsky | 395d31d | 2008-12-25 13:39:50 +0100 | [diff] [blame] | 18 | #define KMSG_COMPONENT "cpu" |
| 19 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 20 | |
Heiko Carstens | f230886 | 2011-01-05 12:48:08 +0100 | [diff] [blame] | 21 | #include <linux/workqueue.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/mm.h> |
Alexey Dobriyan | 4e950f6 | 2007-07-30 02:36:13 +0400 | [diff] [blame] | 25 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/spinlock.h> |
| 27 | #include <linux/kernel_stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/interrupt.h> |
Christian Borntraeger | 3324e60 | 2009-03-26 15:23:56 +0100 | [diff] [blame] | 30 | #include <linux/irqflags.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/cpu.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 33 | #include <linux/crash_dump.h> |
Heiko Carstens | cbb870c | 2010-02-26 22:37:43 +0100 | [diff] [blame] | 34 | #include <asm/asm-offsets.h> |
Heiko Carstens | 1e3cab2 | 2012-03-30 09:40:55 +0200 | [diff] [blame] | 35 | #include <asm/switch_to.h> |
| 36 | #include <asm/facility.h> |
Michael Holzheu | 46b05d2 | 2007-02-21 10:55:21 +0100 | [diff] [blame] | 37 | #include <asm/ipl.h> |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 38 | #include <asm/setup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <asm/tlbflush.h> |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 41 | #include <asm/timer.h> |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 42 | #include <asm/lowcore.h> |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 43 | #include <asm/sclp.h> |
Martin Schwidefsky | c742b31 | 2008-12-31 15:11:42 +0100 | [diff] [blame] | 44 | #include <asm/vdso.h> |
Michael Holzheu | 3ab121a | 2012-03-11 11:59:32 -0400 | [diff] [blame] | 45 | #include <asm/debug.h> |
Michael Holzheu | 4857d4b | 2012-03-11 11:59:34 -0400 | [diff] [blame] | 46 | #include <asm/os_info.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 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 49 | enum { |
| 50 | sigp_sense = 1, |
| 51 | sigp_external_call = 2, |
| 52 | sigp_emergency_signal = 3, |
| 53 | sigp_start = 4, |
| 54 | sigp_stop = 5, |
| 55 | sigp_restart = 6, |
| 56 | sigp_stop_and_store_status = 9, |
| 57 | sigp_initial_cpu_reset = 11, |
| 58 | sigp_cpu_reset = 12, |
| 59 | sigp_set_prefix = 13, |
| 60 | sigp_store_status_at_address = 14, |
| 61 | sigp_store_extended_status_at_address = 15, |
| 62 | sigp_set_architecture = 18, |
| 63 | sigp_conditional_emergency_signal = 19, |
| 64 | sigp_sense_running = 21, |
| 65 | }; |
Heiko Carstens | fb380aa | 2010-01-13 20:44:37 +0100 | [diff] [blame] | 66 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 67 | enum { |
| 68 | sigp_order_code_accepted = 0, |
| 69 | sigp_status_stored = 1, |
| 70 | sigp_busy = 2, |
| 71 | sigp_not_operational = 3, |
| 72 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 74 | enum { |
| 75 | ec_schedule = 0, |
| 76 | ec_call_function, |
| 77 | ec_call_function_single, |
| 78 | ec_stop_cpu, |
| 79 | }; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 80 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 81 | enum { |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 82 | CPU_STATE_STANDBY, |
| 83 | CPU_STATE_CONFIGURED, |
| 84 | }; |
| 85 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 86 | struct pcpu { |
| 87 | struct cpu cpu; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 88 | struct _lowcore *lowcore; /* lowcore page(s) for the cpu */ |
| 89 | unsigned long async_stack; /* async stack for the cpu */ |
| 90 | unsigned long panic_stack; /* panic stack for the cpu */ |
| 91 | unsigned long ec_mask; /* bit mask for ec_xxx functions */ |
| 92 | int state; /* physical cpu state */ |
| 93 | u32 status; /* last status received via sigp */ |
| 94 | u16 address; /* physical cpu address */ |
| 95 | }; |
| 96 | |
| 97 | static u8 boot_cpu_type; |
| 98 | static u16 boot_cpu_address; |
| 99 | static struct pcpu pcpu_devices[NR_CPUS]; |
| 100 | |
Heiko Carstens | dbd70fb | 2008-04-17 07:46:12 +0200 | [diff] [blame] | 101 | DEFINE_MUTEX(smp_cpu_state_mutex); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 102 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 103 | /* |
| 104 | * Signal processor helper functions. |
| 105 | */ |
| 106 | static inline int __pcpu_sigp(u16 addr, u8 order, u32 parm, u32 *status) |
Heiko Carstens | 5c0b912 | 2009-09-11 10:29:05 +0200 | [diff] [blame] | 107 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 108 | register unsigned int reg1 asm ("1") = parm; |
| 109 | int cc; |
Heiko Carstens | 5c0b912 | 2009-09-11 10:29:05 +0200 | [diff] [blame] | 110 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 111 | asm volatile( |
| 112 | " sigp %1,%2,0(%3)\n" |
| 113 | " ipm %0\n" |
| 114 | " srl %0,28\n" |
| 115 | : "=d" (cc), "+d" (reg1) : "d" (addr), "a" (order) : "cc"); |
| 116 | if (status && cc == 1) |
| 117 | *status = reg1; |
| 118 | return cc; |
Heiko Carstens | 5c0b912 | 2009-09-11 10:29:05 +0200 | [diff] [blame] | 119 | } |
| 120 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 121 | static inline int __pcpu_sigp_relax(u16 addr, u8 order, u32 parm, u32 *status) |
Heiko Carstens | a93b8ec | 2010-02-26 22:37:35 +0100 | [diff] [blame] | 122 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 123 | int cc; |
| 124 | |
| 125 | while (1) { |
| 126 | cc = __pcpu_sigp(addr, order, parm, status); |
| 127 | if (cc != sigp_busy) |
| 128 | return cc; |
| 129 | cpu_relax(); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | static int pcpu_sigp_retry(struct pcpu *pcpu, u8 order, u32 parm) |
| 134 | { |
| 135 | int cc, retry; |
| 136 | |
| 137 | for (retry = 0; ; retry++) { |
| 138 | cc = __pcpu_sigp(pcpu->address, order, parm, &pcpu->status); |
| 139 | if (cc != sigp_busy) |
| 140 | break; |
| 141 | if (retry >= 3) |
| 142 | udelay(10); |
| 143 | } |
| 144 | return cc; |
| 145 | } |
| 146 | |
| 147 | static inline int pcpu_stopped(struct pcpu *pcpu) |
| 148 | { |
| 149 | if (__pcpu_sigp(pcpu->address, sigp_sense, |
| 150 | 0, &pcpu->status) != sigp_status_stored) |
| 151 | return 0; |
| 152 | /* Check for stopped and check stop state */ |
| 153 | return !!(pcpu->status & 0x50); |
| 154 | } |
| 155 | |
| 156 | static inline int pcpu_running(struct pcpu *pcpu) |
| 157 | { |
| 158 | if (__pcpu_sigp(pcpu->address, sigp_sense_running, |
| 159 | 0, &pcpu->status) != sigp_status_stored) |
| 160 | return 1; |
| 161 | /* Check for running status */ |
| 162 | return !(pcpu->status & 0x400); |
Heiko Carstens | a93b8ec | 2010-02-26 22:37:35 +0100 | [diff] [blame] | 163 | } |
| 164 | |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 165 | /* |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 166 | * Find struct pcpu by cpu address. |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 167 | */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 168 | static struct pcpu *pcpu_find_address(const struct cpumask *mask, int address) |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 169 | { |
| 170 | int cpu; |
| 171 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 172 | for_each_cpu(cpu, mask) |
| 173 | if (pcpu_devices[cpu].address == address) |
| 174 | return pcpu_devices + cpu; |
| 175 | return NULL; |
| 176 | } |
| 177 | |
| 178 | static void pcpu_ec_call(struct pcpu *pcpu, int ec_bit) |
| 179 | { |
| 180 | int order; |
| 181 | |
| 182 | set_bit(ec_bit, &pcpu->ec_mask); |
| 183 | order = pcpu_running(pcpu) ? |
| 184 | sigp_external_call : sigp_emergency_signal; |
| 185 | pcpu_sigp_retry(pcpu, order, 0); |
| 186 | } |
| 187 | |
| 188 | static int __cpuinit pcpu_alloc_lowcore(struct pcpu *pcpu, int cpu) |
| 189 | { |
| 190 | struct _lowcore *lc; |
| 191 | |
| 192 | if (pcpu != &pcpu_devices[0]) { |
| 193 | pcpu->lowcore = (struct _lowcore *) |
| 194 | __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER); |
| 195 | pcpu->async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER); |
| 196 | pcpu->panic_stack = __get_free_page(GFP_KERNEL); |
| 197 | if (!pcpu->lowcore || !pcpu->panic_stack || !pcpu->async_stack) |
| 198 | goto out; |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 199 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 200 | lc = pcpu->lowcore; |
| 201 | memcpy(lc, &S390_lowcore, 512); |
| 202 | memset((char *) lc + 512, 0, sizeof(*lc) - 512); |
| 203 | lc->async_stack = pcpu->async_stack + ASYNC_SIZE; |
| 204 | lc->panic_stack = pcpu->panic_stack + PAGE_SIZE; |
| 205 | lc->cpu_nr = cpu; |
| 206 | #ifndef CONFIG_64BIT |
| 207 | if (MACHINE_HAS_IEEE) { |
| 208 | lc->extended_save_area_addr = get_zeroed_page(GFP_KERNEL); |
| 209 | if (!lc->extended_save_area_addr) |
| 210 | goto out; |
| 211 | } |
| 212 | #else |
| 213 | if (vdso_alloc_per_cpu(lc)) |
| 214 | goto out; |
| 215 | #endif |
| 216 | lowcore_ptr[cpu] = lc; |
| 217 | pcpu_sigp_retry(pcpu, sigp_set_prefix, (u32)(unsigned long) lc); |
| 218 | return 0; |
| 219 | out: |
| 220 | if (pcpu != &pcpu_devices[0]) { |
| 221 | free_page(pcpu->panic_stack); |
| 222 | free_pages(pcpu->async_stack, ASYNC_ORDER); |
| 223 | free_pages((unsigned long) pcpu->lowcore, LC_ORDER); |
| 224 | } |
| 225 | return -ENOMEM; |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 226 | } |
| 227 | |
Heiko Carstens | 9d0f46a | 2012-05-09 16:27:35 +0200 | [diff] [blame] | 228 | #ifdef CONFIG_HOTPLUG_CPU |
| 229 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 230 | static void pcpu_free_lowcore(struct pcpu *pcpu) |
Heiko Carstens | 2c2df11 | 2010-02-26 22:37:34 +0100 | [diff] [blame] | 231 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 232 | pcpu_sigp_retry(pcpu, sigp_set_prefix, 0); |
| 233 | lowcore_ptr[pcpu - pcpu_devices] = NULL; |
| 234 | #ifndef CONFIG_64BIT |
| 235 | if (MACHINE_HAS_IEEE) { |
| 236 | struct _lowcore *lc = pcpu->lowcore; |
Heiko Carstens | 2c2df11 | 2010-02-26 22:37:34 +0100 | [diff] [blame] | 237 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 238 | free_page((unsigned long) lc->extended_save_area_addr); |
| 239 | lc->extended_save_area_addr = 0; |
| 240 | } |
| 241 | #else |
| 242 | vdso_free_per_cpu(pcpu->lowcore); |
| 243 | #endif |
| 244 | if (pcpu != &pcpu_devices[0]) { |
| 245 | free_page(pcpu->panic_stack); |
| 246 | free_pages(pcpu->async_stack, ASYNC_ORDER); |
| 247 | free_pages((unsigned long) pcpu->lowcore, LC_ORDER); |
| 248 | } |
Heiko Carstens | 2c2df11 | 2010-02-26 22:37:34 +0100 | [diff] [blame] | 249 | } |
| 250 | |
Heiko Carstens | 9d0f46a | 2012-05-09 16:27:35 +0200 | [diff] [blame] | 251 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 252 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 253 | static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu) |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 254 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 255 | struct _lowcore *lc = pcpu->lowcore; |
| 256 | |
| 257 | atomic_inc(&init_mm.context.attach_count); |
| 258 | lc->cpu_nr = cpu; |
| 259 | lc->percpu_offset = __per_cpu_offset[cpu]; |
| 260 | lc->kernel_asce = S390_lowcore.kernel_asce; |
| 261 | lc->machine_flags = S390_lowcore.machine_flags; |
| 262 | lc->ftrace_func = S390_lowcore.ftrace_func; |
| 263 | lc->user_timer = lc->system_timer = lc->steal_timer = 0; |
| 264 | __ctl_store(lc->cregs_save_area, 0, 15); |
| 265 | save_access_regs((unsigned int *) lc->access_regs_save_area); |
| 266 | memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list, |
| 267 | MAX_FACILITY_BIT/8); |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 268 | } |
| 269 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 270 | static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk) |
| 271 | { |
| 272 | struct _lowcore *lc = pcpu->lowcore; |
| 273 | struct thread_info *ti = task_thread_info(tsk); |
| 274 | |
| 275 | lc->kernel_stack = (unsigned long) task_stack_page(tsk) + THREAD_SIZE; |
| 276 | lc->thread_info = (unsigned long) task_thread_info(tsk); |
| 277 | lc->current_task = (unsigned long) tsk; |
| 278 | lc->user_timer = ti->user_timer; |
| 279 | lc->system_timer = ti->system_timer; |
| 280 | lc->steal_timer = 0; |
| 281 | } |
| 282 | |
| 283 | static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data) |
| 284 | { |
| 285 | struct _lowcore *lc = pcpu->lowcore; |
| 286 | |
| 287 | lc->restart_stack = lc->kernel_stack; |
| 288 | lc->restart_fn = (unsigned long) func; |
| 289 | lc->restart_data = (unsigned long) data; |
| 290 | lc->restart_source = -1UL; |
| 291 | pcpu_sigp_retry(pcpu, sigp_restart, 0); |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * Call function via PSW restart on pcpu and stop the current cpu. |
| 296 | */ |
| 297 | static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *), |
| 298 | void *data, unsigned long stack) |
| 299 | { |
Michael Holzheu | 061da3d | 2012-05-24 14:38:26 +0200 | [diff] [blame^] | 300 | struct _lowcore *lc = lowcore_ptr[pcpu - pcpu_devices]; |
| 301 | struct { |
| 302 | unsigned long stack; |
| 303 | void *func; |
| 304 | void *data; |
| 305 | unsigned long source; |
| 306 | } restart = { stack, func, data, stap() }; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 307 | |
| 308 | __load_psw_mask(psw_kernel_bits); |
Michael Holzheu | 061da3d | 2012-05-24 14:38:26 +0200 | [diff] [blame^] | 309 | if (pcpu->address == restart.source) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 310 | func(data); /* should not return */ |
| 311 | /* Stop target cpu (if func returns this stops the current cpu). */ |
| 312 | pcpu_sigp_retry(pcpu, sigp_stop, 0); |
| 313 | /* Restart func on the target cpu and stop the current cpu. */ |
Michael Holzheu | 061da3d | 2012-05-24 14:38:26 +0200 | [diff] [blame^] | 314 | memcpy_absolute(&lc->restart_stack, &restart, sizeof(restart)); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 315 | asm volatile( |
| 316 | "0: sigp 0,%0,6 # sigp restart to target cpu\n" |
| 317 | " brc 2,0b # busy, try again\n" |
| 318 | "1: sigp 0,%1,5 # sigp stop to current cpu\n" |
| 319 | " brc 2,1b # busy, try again\n" |
Michael Holzheu | 061da3d | 2012-05-24 14:38:26 +0200 | [diff] [blame^] | 320 | : : "d" (pcpu->address), "d" (restart.source) : "0", "1", "cc"); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 321 | for (;;) ; |
| 322 | } |
| 323 | |
| 324 | /* |
| 325 | * Call function on an online CPU. |
| 326 | */ |
| 327 | void smp_call_online_cpu(void (*func)(void *), void *data) |
| 328 | { |
| 329 | struct pcpu *pcpu; |
| 330 | |
| 331 | /* Use the current cpu if it is online. */ |
| 332 | pcpu = pcpu_find_address(cpu_online_mask, stap()); |
| 333 | if (!pcpu) |
| 334 | /* Use the first online cpu. */ |
| 335 | pcpu = pcpu_devices + cpumask_first(cpu_online_mask); |
| 336 | pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack); |
| 337 | } |
| 338 | |
| 339 | /* |
| 340 | * Call function on the ipl CPU. |
| 341 | */ |
| 342 | void smp_call_ipl_cpu(void (*func)(void *), void *data) |
| 343 | { |
Michael Holzheu | c6da39f | 2012-03-13 11:25:08 -0400 | [diff] [blame] | 344 | pcpu_delegate(&pcpu_devices[0], func, data, |
| 345 | pcpu_devices->panic_stack + PAGE_SIZE); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | int smp_find_processor_id(u16 address) |
| 349 | { |
| 350 | int cpu; |
| 351 | |
| 352 | for_each_present_cpu(cpu) |
| 353 | if (pcpu_devices[cpu].address == address) |
| 354 | return cpu; |
| 355 | return -1; |
| 356 | } |
| 357 | |
| 358 | int smp_vcpu_scheduled(int cpu) |
| 359 | { |
| 360 | return pcpu_running(pcpu_devices + cpu); |
| 361 | } |
| 362 | |
| 363 | void smp_yield(void) |
| 364 | { |
| 365 | if (MACHINE_HAS_DIAG44) |
| 366 | asm volatile("diag 0,0,0x44"); |
| 367 | } |
| 368 | |
| 369 | void smp_yield_cpu(int cpu) |
| 370 | { |
| 371 | if (MACHINE_HAS_DIAG9C) |
| 372 | asm volatile("diag %0,0,0x9c" |
| 373 | : : "d" (pcpu_devices[cpu].address)); |
| 374 | else if (MACHINE_HAS_DIAG44) |
| 375 | asm volatile("diag 0,0,0x44"); |
| 376 | } |
| 377 | |
| 378 | /* |
| 379 | * Send cpus emergency shutdown signal. This gives the cpus the |
| 380 | * opportunity to complete outstanding interrupts. |
| 381 | */ |
| 382 | void smp_emergency_stop(cpumask_t *cpumask) |
| 383 | { |
| 384 | u64 end; |
| 385 | int cpu; |
| 386 | |
| 387 | end = get_clock() + (1000000UL << 12); |
| 388 | for_each_cpu(cpu, cpumask) { |
| 389 | struct pcpu *pcpu = pcpu_devices + cpu; |
| 390 | set_bit(ec_stop_cpu, &pcpu->ec_mask); |
| 391 | while (__pcpu_sigp(pcpu->address, sigp_emergency_signal, |
| 392 | 0, NULL) == sigp_busy && |
| 393 | get_clock() < end) |
| 394 | cpu_relax(); |
| 395 | } |
| 396 | while (get_clock() < end) { |
| 397 | for_each_cpu(cpu, cpumask) |
| 398 | if (pcpu_stopped(pcpu_devices + cpu)) |
| 399 | cpumask_clear_cpu(cpu, cpumask); |
| 400 | if (cpumask_empty(cpumask)) |
| 401 | break; |
| 402 | cpu_relax(); |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | /* |
| 407 | * Stop all cpus but the current one. |
| 408 | */ |
Heiko Carstens | 677d762 | 2007-11-20 11:13:37 +0100 | [diff] [blame] | 409 | void smp_send_stop(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 411 | cpumask_t cpumask; |
| 412 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
Heiko Carstens | 677d762 | 2007-11-20 11:13:37 +0100 | [diff] [blame] | 414 | /* Disable all interrupts/machine checks */ |
Martin Schwidefsky | b50511e | 2011-10-30 15:16:50 +0100 | [diff] [blame] | 415 | __load_psw_mask(psw_kernel_bits | PSW_MASK_DAT); |
Christian Borntraeger | 3324e60 | 2009-03-26 15:23:56 +0100 | [diff] [blame] | 416 | trace_hardirqs_off(); |
Heiko Carstens | 677d762 | 2007-11-20 11:13:37 +0100 | [diff] [blame] | 417 | |
Michael Holzheu | 3ab121a | 2012-03-11 11:59:32 -0400 | [diff] [blame] | 418 | debug_set_critical(); |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 419 | cpumask_copy(&cpumask, cpu_online_mask); |
| 420 | cpumask_clear_cpu(smp_processor_id(), &cpumask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 422 | if (oops_in_progress) |
| 423 | smp_emergency_stop(&cpumask); |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 424 | |
| 425 | /* stop all processors */ |
| 426 | for_each_cpu(cpu, &cpumask) { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 427 | struct pcpu *pcpu = pcpu_devices + cpu; |
| 428 | pcpu_sigp_retry(pcpu, sigp_stop, 0); |
| 429 | while (!pcpu_stopped(pcpu)) |
Heiko Carstens | c6b5b84 | 2006-12-04 15:40:33 +0100 | [diff] [blame] | 430 | cpu_relax(); |
| 431 | } |
| 432 | } |
| 433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | /* |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 435 | * Stop the current cpu. |
| 436 | */ |
| 437 | void smp_stop_cpu(void) |
| 438 | { |
| 439 | pcpu_sigp_retry(pcpu_devices + smp_processor_id(), sigp_stop, 0); |
| 440 | for (;;) ; |
| 441 | } |
| 442 | |
| 443 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | * This is the main routine where commands issued by other |
| 445 | * cpus are handled. |
| 446 | */ |
Heiko Carstens | fde15c3 | 2012-03-11 11:59:31 -0400 | [diff] [blame] | 447 | static void do_ext_call_interrupt(struct ext_code ext_code, |
Martin Schwidefsky | f6649a7 | 2010-10-25 16:10:38 +0200 | [diff] [blame] | 448 | unsigned int param32, unsigned long param64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 450 | unsigned long bits; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 451 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 453 | cpu = smp_processor_id(); |
Heiko Carstens | fde15c3 | 2012-03-11 11:59:31 -0400 | [diff] [blame] | 454 | if (ext_code.code == 0x1202) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 455 | kstat_cpu(cpu).irqs[EXTINT_EXC]++; |
Heiko Carstens | 2a3a2d6 | 2011-10-30 15:17:19 +0100 | [diff] [blame] | 456 | else |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 457 | kstat_cpu(cpu).irqs[EXTINT_EMS]++; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 458 | /* |
| 459 | * handle bit signal external calls |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 460 | */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 461 | bits = xchg(&pcpu_devices[cpu].ec_mask, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 463 | if (test_bit(ec_stop_cpu, &bits)) |
| 464 | smp_stop_cpu(); |
| 465 | |
Peter Zijlstra | 184748c | 2011-04-05 17:23:39 +0200 | [diff] [blame] | 466 | if (test_bit(ec_schedule, &bits)) |
| 467 | scheduler_ipi(); |
| 468 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 469 | if (test_bit(ec_call_function, &bits)) |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 470 | generic_smp_call_function_interrupt(); |
| 471 | |
| 472 | if (test_bit(ec_call_function_single, &bits)) |
| 473 | generic_smp_call_function_single_interrupt(); |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Rusty Russell | 630cd04 | 2009-09-24 09:34:45 -0600 | [diff] [blame] | 477 | void arch_send_call_function_ipi_mask(const struct cpumask *mask) |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 478 | { |
| 479 | int cpu; |
| 480 | |
Rusty Russell | 630cd04 | 2009-09-24 09:34:45 -0600 | [diff] [blame] | 481 | for_each_cpu(cpu, mask) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 482 | pcpu_ec_call(pcpu_devices + cpu, ec_call_function); |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 483 | } |
| 484 | |
| 485 | void arch_send_call_function_single_ipi(int cpu) |
| 486 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 487 | pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single); |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 488 | } |
| 489 | |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 490 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | /* |
| 492 | * this function sends a 'purge tlb' signal to another CPU. |
| 493 | */ |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 494 | static void smp_ptlb_callback(void *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | { |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 496 | __tlb_flush_local(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | void smp_ptlb_all(void) |
| 500 | { |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 501 | on_each_cpu(smp_ptlb_callback, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | EXPORT_SYMBOL(smp_ptlb_all); |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 504 | #endif /* ! CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
| 506 | /* |
| 507 | * this function sends a 'reschedule' IPI to another CPU. |
| 508 | * it goes straight through and wastes no time serializing |
| 509 | * anything. Worst case is that we lose a reschedule ... |
| 510 | */ |
| 511 | void smp_send_reschedule(int cpu) |
| 512 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 513 | pcpu_ec_call(pcpu_devices + cpu, ec_schedule); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | /* |
| 517 | * parameter area for the set/clear control bit callbacks |
| 518 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 519 | struct ec_creg_mask_parms { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 520 | unsigned long orval; |
| 521 | unsigned long andval; |
| 522 | int cr; |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 523 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | /* |
| 526 | * callback for setting/clearing control bits |
| 527 | */ |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 528 | static void smp_ctl_bit_callback(void *info) |
| 529 | { |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 530 | struct ec_creg_mask_parms *pp = info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | unsigned long cregs[16]; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 532 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 533 | __ctl_store(cregs, 0, 15); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 534 | cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval; |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 535 | __ctl_load(cregs, 0, 15); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | /* |
| 539 | * Set a bit in a control register of all cpus |
| 540 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 541 | void smp_ctl_set_bit(int cr, int bit) |
| 542 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 543 | struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 545 | on_each_cpu(smp_ctl_bit_callback, &parms, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 547 | EXPORT_SYMBOL(smp_ctl_set_bit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | |
| 549 | /* |
| 550 | * Clear a bit in a control register of all cpus |
| 551 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 552 | void smp_ctl_clear_bit(int cr, int bit) |
| 553 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 554 | struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), cr }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 556 | on_each_cpu(smp_ctl_bit_callback, &parms, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 558 | EXPORT_SYMBOL(smp_ctl_clear_bit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 560 | #if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_CRASH_DUMP) |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 561 | |
Heiko Carstens | f64ca21 | 2010-02-26 22:37:32 +0100 | [diff] [blame] | 562 | struct save_area *zfcpdump_save_areas[NR_CPUS + 1]; |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 563 | EXPORT_SYMBOL_GPL(zfcpdump_save_areas); |
| 564 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 565 | static void __init smp_get_save_area(int cpu, u16 address) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 566 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 567 | void *lc = pcpu_devices[0].lowcore; |
| 568 | struct save_area *save_area; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 569 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 570 | if (is_kdump_kernel()) |
| 571 | return; |
| 572 | if (!OLDMEM_BASE && (address == boot_cpu_address || |
| 573 | ipl_info.type != IPL_TYPE_FCP_DUMP)) |
| 574 | return; |
| 575 | if (cpu >= NR_CPUS) { |
| 576 | pr_warning("CPU %i exceeds the maximum %i and is excluded " |
| 577 | "from the dump\n", cpu, NR_CPUS - 1); |
| 578 | return; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 579 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 580 | save_area = kmalloc(sizeof(struct save_area), GFP_KERNEL); |
| 581 | if (!save_area) |
| 582 | panic("could not allocate memory for save area\n"); |
| 583 | zfcpdump_save_areas[cpu] = save_area; |
| 584 | #ifdef CONFIG_CRASH_DUMP |
| 585 | if (address == boot_cpu_address) { |
| 586 | /* Copy the registers of the boot cpu. */ |
| 587 | copy_oldmem_page(1, (void *) save_area, sizeof(*save_area), |
| 588 | SAVE_AREA_BASE - PAGE_SIZE, 0); |
| 589 | return; |
| 590 | } |
| 591 | #endif |
| 592 | /* Get the registers of a non-boot cpu. */ |
| 593 | __pcpu_sigp_relax(address, sigp_stop_and_store_status, 0, NULL); |
| 594 | memcpy_real(save_area, lc + SAVE_AREA_BASE, sizeof(*save_area)); |
| 595 | } |
| 596 | |
| 597 | int smp_store_status(int cpu) |
| 598 | { |
| 599 | struct pcpu *pcpu; |
| 600 | |
| 601 | pcpu = pcpu_devices + cpu; |
| 602 | if (__pcpu_sigp_relax(pcpu->address, sigp_stop_and_store_status, |
| 603 | 0, NULL) != sigp_order_code_accepted) |
| 604 | return -EIO; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 605 | return 0; |
| 606 | } |
| 607 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 608 | #else /* CONFIG_ZFCPDUMP || CONFIG_CRASH_DUMP */ |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 609 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 610 | static inline void smp_get_save_area(int cpu, u16 address) { } |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 611 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 612 | #endif /* CONFIG_ZFCPDUMP || CONFIG_CRASH_DUMP */ |
| 613 | |
| 614 | static struct sclp_cpu_info *smp_get_cpu_info(void) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 615 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 616 | static int use_sigp_detection; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 617 | struct sclp_cpu_info *info; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 618 | int address; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 619 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 620 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 621 | if (info && (use_sigp_detection || sclp_get_cpu_info(info))) { |
| 622 | use_sigp_detection = 1; |
| 623 | for (address = 0; address <= MAX_CPU_ADDRESS; address++) { |
| 624 | if (__pcpu_sigp_relax(address, sigp_sense, 0, NULL) == |
| 625 | sigp_not_operational) |
| 626 | continue; |
| 627 | info->cpu[info->configured].address = address; |
| 628 | info->configured++; |
| 629 | } |
| 630 | info->combined = info->configured; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 631 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 632 | return info; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 633 | } |
| 634 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 635 | static int __devinit smp_add_present_cpu(int cpu); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 636 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 637 | static int __devinit __smp_rescan_cpus(struct sclp_cpu_info *info, |
| 638 | int sysfs_add) |
| 639 | { |
| 640 | struct pcpu *pcpu; |
| 641 | cpumask_t avail; |
| 642 | int cpu, nr, i; |
| 643 | |
| 644 | nr = 0; |
KOSAKI Motohiro | 0f1959f | 2011-05-23 10:24:36 +0200 | [diff] [blame] | 645 | cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 646 | cpu = cpumask_first(&avail); |
| 647 | for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) { |
| 648 | if (info->has_cpu_type && info->cpu[i].type != boot_cpu_type) |
| 649 | continue; |
| 650 | if (pcpu_find_address(cpu_present_mask, info->cpu[i].address)) |
| 651 | continue; |
| 652 | pcpu = pcpu_devices + cpu; |
| 653 | pcpu->address = info->cpu[i].address; |
| 654 | pcpu->state = (cpu >= info->configured) ? |
| 655 | CPU_STATE_STANDBY : CPU_STATE_CONFIGURED; |
| 656 | cpu_set_polarization(cpu, POLARIZATION_UNKNOWN); |
| 657 | set_cpu_present(cpu, true); |
| 658 | if (sysfs_add && smp_add_present_cpu(cpu) != 0) |
| 659 | set_cpu_present(cpu, false); |
| 660 | else |
| 661 | nr++; |
| 662 | cpu = cpumask_next(cpu, &avail); |
| 663 | } |
| 664 | return nr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | } |
| 666 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 667 | static void __init smp_detect_cpus(void) |
| 668 | { |
| 669 | unsigned int cpu, c_cpus, s_cpus; |
| 670 | struct sclp_cpu_info *info; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 671 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 672 | info = smp_get_cpu_info(); |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 673 | if (!info) |
| 674 | panic("smp_detect_cpus failed to allocate memory\n"); |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 675 | if (info->has_cpu_type) { |
| 676 | for (cpu = 0; cpu < info->combined; cpu++) { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 677 | if (info->cpu[cpu].address != boot_cpu_address) |
| 678 | continue; |
| 679 | /* The boot cpu dictates the cpu type. */ |
| 680 | boot_cpu_type = info->cpu[cpu].type; |
| 681 | break; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 682 | } |
| 683 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 684 | c_cpus = s_cpus = 0; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 685 | for (cpu = 0; cpu < info->combined; cpu++) { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 686 | if (info->has_cpu_type && info->cpu[cpu].type != boot_cpu_type) |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 687 | continue; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 688 | if (cpu < info->configured) { |
| 689 | smp_get_save_area(c_cpus, info->cpu[cpu].address); |
| 690 | c_cpus++; |
| 691 | } else |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 692 | s_cpus++; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 693 | } |
Martin Schwidefsky | 395d31d | 2008-12-25 13:39:50 +0100 | [diff] [blame] | 694 | pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus); |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 695 | get_online_cpus(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 696 | __smp_rescan_cpus(info, 0); |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 697 | put_online_cpus(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 698 | kfree(info); |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 699 | } |
| 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | /* |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 702 | * Activate a secondary processor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 704 | static void __cpuinit smp_start_secondary(void *cpuvoid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 706 | S390_lowcore.last_update_clock = get_clock(); |
| 707 | S390_lowcore.restart_stack = (unsigned long) restart_stack; |
| 708 | S390_lowcore.restart_fn = (unsigned long) do_restart; |
| 709 | S390_lowcore.restart_data = 0; |
| 710 | S390_lowcore.restart_source = -1UL; |
| 711 | restore_access_regs(S390_lowcore.access_regs_save_area); |
| 712 | __ctl_load(S390_lowcore.cregs_save_area, 0, 15); |
| 713 | __load_psw_mask(psw_kernel_bits | PSW_MASK_DAT); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 714 | cpu_init(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 715 | preempt_disable(); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 716 | init_cpu_timer(); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 717 | init_cpu_vtimer(); |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 718 | pfault_init(); |
Manfred Spraul | e545a61 | 2008-09-07 16:57:22 +0200 | [diff] [blame] | 719 | notify_cpu_starting(smp_processor_id()); |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 720 | ipi_call_lock(); |
KOSAKI Motohiro | 0f1959f | 2011-05-23 10:24:36 +0200 | [diff] [blame] | 721 | set_cpu_online(smp_processor_id(), true); |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 722 | ipi_call_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | local_irq_enable(); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 724 | /* cpu_idle will call schedule for us */ |
| 725 | cpu_idle(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | } |
| 727 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | /* Upping and downing of CPUs */ |
Thomas Gleixner | 8239c25 | 2012-04-20 13:05:42 +0000 | [diff] [blame] | 729 | int __cpuinit __cpu_up(unsigned int cpu, struct task_struct *tidle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 731 | struct pcpu *pcpu; |
| 732 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 734 | pcpu = pcpu_devices + cpu; |
| 735 | if (pcpu->state != CPU_STATE_CONFIGURED) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 736 | return -EIO; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 737 | if (pcpu_sigp_retry(pcpu, sigp_initial_cpu_reset, 0) != |
| 738 | sigp_order_code_accepted) |
| 739 | return -EIO; |
Thomas Gleixner | e80e781 | 2012-04-20 13:05:52 +0000 | [diff] [blame] | 740 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 741 | rc = pcpu_alloc_lowcore(pcpu, cpu); |
| 742 | if (rc) |
| 743 | return rc; |
| 744 | pcpu_prepare_secondary(pcpu, cpu); |
Thomas Gleixner | e80e781 | 2012-04-20 13:05:52 +0000 | [diff] [blame] | 745 | pcpu_attach_task(pcpu, tidle); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 746 | pcpu_start_fn(pcpu, smp_start_secondary, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | while (!cpu_online(cpu)) |
| 748 | cpu_relax(); |
| 749 | return 0; |
| 750 | } |
| 751 | |
Heiko Carstens | 37a3302 | 2006-02-17 13:52:47 -0800 | [diff] [blame] | 752 | static int __init setup_possible_cpus(char *s) |
| 753 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 754 | int max, cpu; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 755 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 756 | if (kstrtoint(s, 0, &max) < 0) |
| 757 | return 0; |
Heiko Carstens | 88e0128 | 2009-04-14 15:36:25 +0200 | [diff] [blame] | 758 | init_cpu_possible(cpumask_of(0)); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 759 | for (cpu = 1; cpu < max && cpu < nr_cpu_ids; cpu++) |
Rusty Russell | def6cfb | 2009-03-26 15:25:00 +0100 | [diff] [blame] | 760 | set_cpu_possible(cpu, true); |
Heiko Carstens | 37a3302 | 2006-02-17 13:52:47 -0800 | [diff] [blame] | 761 | return 0; |
| 762 | } |
| 763 | early_param("possible_cpus", setup_possible_cpus); |
| 764 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 765 | #ifdef CONFIG_HOTPLUG_CPU |
| 766 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 767 | int __cpu_disable(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 769 | unsigned long cregs[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 771 | set_cpu_online(smp_processor_id(), false); |
| 772 | /* Disable pseudo page faults on this cpu. */ |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 773 | pfault_fini(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 774 | /* Disable interrupt sources via control register. */ |
| 775 | __ctl_store(cregs, 0, 15); |
| 776 | cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */ |
| 777 | cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */ |
| 778 | cregs[14] &= ~0x1f000000UL; /* disable most machine checks */ |
| 779 | __ctl_load(cregs, 0, 15); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | return 0; |
| 781 | } |
| 782 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 783 | void __cpu_die(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 785 | struct pcpu *pcpu; |
| 786 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | /* Wait until target cpu is down */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 788 | pcpu = pcpu_devices + cpu; |
| 789 | while (!pcpu_stopped(pcpu)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | cpu_relax(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 791 | pcpu_free_lowcore(pcpu); |
Martin Schwidefsky | 050eef3 | 2010-08-24 09:26:21 +0200 | [diff] [blame] | 792 | atomic_dec(&init_mm.context.attach_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | } |
| 794 | |
Heiko Carstens | b456d94 | 2011-05-23 10:24:33 +0200 | [diff] [blame] | 795 | void __noreturn cpu_die(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | { |
| 797 | idle_task_exit(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 798 | pcpu_sigp_retry(pcpu_devices + smp_processor_id(), sigp_stop, 0); |
| 799 | for (;;) ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | } |
| 801 | |
Heiko Carstens | 255acee | 2006-02-17 13:52:46 -0800 | [diff] [blame] | 802 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | void __init smp_prepare_cpus(unsigned int max_cpus) |
| 805 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 806 | /* request the 0x1201 emergency signal external interrupt */ |
| 807 | if (register_external_interrupt(0x1201, do_ext_call_interrupt) != 0) |
| 808 | panic("Couldn't request external interrupt 0x1201"); |
Martin Schwidefsky | d98e19c | 2011-10-30 15:16:58 +0100 | [diff] [blame] | 809 | /* request the 0x1202 external call external interrupt */ |
| 810 | if (register_external_interrupt(0x1202, do_ext_call_interrupt) != 0) |
| 811 | panic("Couldn't request external interrupt 0x1202"); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 812 | smp_detect_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | } |
| 814 | |
Heiko Carstens | ea1f4ee | 2007-05-31 17:38:05 +0200 | [diff] [blame] | 815 | void __init smp_prepare_boot_cpu(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 817 | struct pcpu *pcpu = pcpu_devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 819 | boot_cpu_address = stap(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 820 | pcpu->state = CPU_STATE_CONFIGURED; |
| 821 | pcpu->address = boot_cpu_address; |
| 822 | pcpu->lowcore = (struct _lowcore *)(unsigned long) store_prefix(); |
| 823 | pcpu->async_stack = S390_lowcore.async_stack - ASYNC_SIZE; |
| 824 | pcpu->panic_stack = S390_lowcore.panic_stack - PAGE_SIZE; |
| 825 | S390_lowcore.percpu_offset = __per_cpu_offset[0]; |
| 826 | cpu_set_polarization(0, POLARIZATION_UNKNOWN); |
KOSAKI Motohiro | 0f1959f | 2011-05-23 10:24:36 +0200 | [diff] [blame] | 827 | set_cpu_present(0, true); |
| 828 | set_cpu_online(0, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | } |
| 830 | |
Heiko Carstens | ea1f4ee | 2007-05-31 17:38:05 +0200 | [diff] [blame] | 831 | void __init smp_cpus_done(unsigned int max_cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | } |
| 834 | |
Heiko Carstens | 02beacc | 2010-01-13 20:44:34 +0100 | [diff] [blame] | 835 | void __init smp_setup_processor_id(void) |
| 836 | { |
| 837 | S390_lowcore.cpu_nr = 0; |
Heiko Carstens | 02beacc | 2010-01-13 20:44:34 +0100 | [diff] [blame] | 838 | } |
| 839 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | /* |
| 841 | * the frequency of the profiling timer can be changed |
| 842 | * by writing a multiplier value into /proc/profile. |
| 843 | * |
| 844 | * usually you want to run this on all CPUs ;) |
| 845 | */ |
| 846 | int setup_profiling_timer(unsigned int multiplier) |
| 847 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 848 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 851 | #ifdef CONFIG_HOTPLUG_CPU |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 852 | static ssize_t cpu_configure_show(struct device *dev, |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 853 | struct device_attribute *attr, char *buf) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 854 | { |
| 855 | ssize_t count; |
| 856 | |
| 857 | mutex_lock(&smp_cpu_state_mutex); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 858 | count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 859 | mutex_unlock(&smp_cpu_state_mutex); |
| 860 | return count; |
| 861 | } |
| 862 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 863 | static ssize_t cpu_configure_store(struct device *dev, |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 864 | struct device_attribute *attr, |
| 865 | const char *buf, size_t count) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 866 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 867 | struct pcpu *pcpu; |
| 868 | int cpu, val, rc; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 869 | char delim; |
| 870 | |
| 871 | if (sscanf(buf, "%d %c", &val, &delim) != 1) |
| 872 | return -EINVAL; |
| 873 | if (val != 0 && val != 1) |
| 874 | return -EINVAL; |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 875 | get_online_cpus(); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 876 | mutex_lock(&smp_cpu_state_mutex); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 877 | rc = -EBUSY; |
Heiko Carstens | 2c2df11 | 2010-02-26 22:37:34 +0100 | [diff] [blame] | 878 | /* disallow configuration changes of online cpus and cpu 0 */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 879 | cpu = dev->id; |
Heiko Carstens | 2c2df11 | 2010-02-26 22:37:34 +0100 | [diff] [blame] | 880 | if (cpu_online(cpu) || cpu == 0) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 881 | goto out; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 882 | pcpu = pcpu_devices + cpu; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 883 | rc = 0; |
| 884 | switch (val) { |
| 885 | case 0: |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 886 | if (pcpu->state != CPU_STATE_CONFIGURED) |
| 887 | break; |
| 888 | rc = sclp_cpu_deconfigure(pcpu->address); |
| 889 | if (rc) |
| 890 | break; |
| 891 | pcpu->state = CPU_STATE_STANDBY; |
| 892 | cpu_set_polarization(cpu, POLARIZATION_UNKNOWN); |
| 893 | topology_expect_change(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 894 | break; |
| 895 | case 1: |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 896 | if (pcpu->state != CPU_STATE_STANDBY) |
| 897 | break; |
| 898 | rc = sclp_cpu_configure(pcpu->address); |
| 899 | if (rc) |
| 900 | break; |
| 901 | pcpu->state = CPU_STATE_CONFIGURED; |
| 902 | cpu_set_polarization(cpu, POLARIZATION_UNKNOWN); |
| 903 | topology_expect_change(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 904 | break; |
| 905 | default: |
| 906 | break; |
| 907 | } |
| 908 | out: |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 909 | mutex_unlock(&smp_cpu_state_mutex); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 910 | put_online_cpus(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 911 | return rc ? rc : count; |
| 912 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 913 | static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 914 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 915 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 916 | static ssize_t show_cpu_address(struct device *dev, |
| 917 | struct device_attribute *attr, char *buf) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 918 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 919 | return sprintf(buf, "%d\n", pcpu_devices[dev->id].address); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 920 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 921 | static DEVICE_ATTR(address, 0444, show_cpu_address, NULL); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 922 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 923 | static struct attribute *cpu_common_attrs[] = { |
| 924 | #ifdef CONFIG_HOTPLUG_CPU |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 925 | &dev_attr_configure.attr, |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 926 | #endif |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 927 | &dev_attr_address.attr, |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 928 | NULL, |
| 929 | }; |
| 930 | |
| 931 | static struct attribute_group cpu_common_attr_group = { |
| 932 | .attrs = cpu_common_attrs, |
| 933 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 935 | static ssize_t show_capability(struct device *dev, |
| 936 | struct device_attribute *attr, char *buf) |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 937 | { |
| 938 | unsigned int capability; |
| 939 | int rc; |
| 940 | |
| 941 | rc = get_cpu_capability(&capability); |
| 942 | if (rc) |
| 943 | return rc; |
| 944 | return sprintf(buf, "%u\n", capability); |
| 945 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 946 | static DEVICE_ATTR(capability, 0444, show_capability, NULL); |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 947 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 948 | static ssize_t show_idle_count(struct device *dev, |
| 949 | struct device_attribute *attr, char *buf) |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 950 | { |
Martin Schwidefsky | 4c1051e | 2012-03-11 11:59:27 -0400 | [diff] [blame] | 951 | struct s390_idle_data *idle = &per_cpu(s390_idle, dev->id); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 952 | unsigned long long idle_count; |
Martin Schwidefsky | e98bbaa | 2009-06-22 12:08:20 +0200 | [diff] [blame] | 953 | unsigned int sequence; |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 954 | |
Martin Schwidefsky | 4c1051e | 2012-03-11 11:59:27 -0400 | [diff] [blame] | 955 | do { |
| 956 | sequence = ACCESS_ONCE(idle->sequence); |
| 957 | idle_count = ACCESS_ONCE(idle->idle_count); |
| 958 | if (ACCESS_ONCE(idle->idle_enter)) |
| 959 | idle_count++; |
| 960 | } while ((sequence & 1) || (idle->sequence != sequence)); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 961 | return sprintf(buf, "%llu\n", idle_count); |
| 962 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 963 | static DEVICE_ATTR(idle_count, 0444, show_idle_count, NULL); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 964 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 965 | static ssize_t show_idle_time(struct device *dev, |
| 966 | struct device_attribute *attr, char *buf) |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 967 | { |
Martin Schwidefsky | 4c1051e | 2012-03-11 11:59:27 -0400 | [diff] [blame] | 968 | struct s390_idle_data *idle = &per_cpu(s390_idle, dev->id); |
| 969 | unsigned long long now, idle_time, idle_enter, idle_exit; |
Martin Schwidefsky | e98bbaa | 2009-06-22 12:08:20 +0200 | [diff] [blame] | 970 | unsigned int sequence; |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 971 | |
Martin Schwidefsky | 4c1051e | 2012-03-11 11:59:27 -0400 | [diff] [blame] | 972 | do { |
| 973 | now = get_clock(); |
| 974 | sequence = ACCESS_ONCE(idle->sequence); |
| 975 | idle_time = ACCESS_ONCE(idle->idle_time); |
| 976 | idle_enter = ACCESS_ONCE(idle->idle_enter); |
| 977 | idle_exit = ACCESS_ONCE(idle->idle_exit); |
| 978 | } while ((sequence & 1) || (idle->sequence != sequence)); |
| 979 | idle_time += idle_enter ? ((idle_exit ? : now) - idle_enter) : 0; |
Martin Schwidefsky | 6f43092 | 2008-12-31 15:11:40 +0100 | [diff] [blame] | 980 | return sprintf(buf, "%llu\n", idle_time >> 12); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 981 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 982 | static DEVICE_ATTR(idle_time_us, 0444, show_idle_time, NULL); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 983 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 984 | static struct attribute *cpu_online_attrs[] = { |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 985 | &dev_attr_capability.attr, |
| 986 | &dev_attr_idle_count.attr, |
| 987 | &dev_attr_idle_time_us.attr, |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 988 | NULL, |
| 989 | }; |
| 990 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 991 | static struct attribute_group cpu_online_attr_group = { |
| 992 | .attrs = cpu_online_attrs, |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 993 | }; |
| 994 | |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 995 | static int __cpuinit smp_cpu_notify(struct notifier_block *self, |
| 996 | unsigned long action, void *hcpu) |
| 997 | { |
| 998 | unsigned int cpu = (unsigned int)(long)hcpu; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 999 | struct cpu *c = &pcpu_devices[cpu].cpu; |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1000 | struct device *s = &c->dev; |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 1001 | struct s390_idle_data *idle; |
Akinobu Mita | d882ba6 | 2010-05-26 14:43:34 -0700 | [diff] [blame] | 1002 | int err = 0; |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1003 | |
| 1004 | switch (action) { |
| 1005 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1006 | case CPU_ONLINE_FROZEN: |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 1007 | idle = &per_cpu(s390_idle, cpu); |
Martin Schwidefsky | e98bbaa | 2009-06-22 12:08:20 +0200 | [diff] [blame] | 1008 | memset(idle, 0, sizeof(struct s390_idle_data)); |
Akinobu Mita | d882ba6 | 2010-05-26 14:43:34 -0700 | [diff] [blame] | 1009 | err = sysfs_create_group(&s->kobj, &cpu_online_attr_group); |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1010 | break; |
| 1011 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1012 | case CPU_DEAD_FROZEN: |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1013 | sysfs_remove_group(&s->kobj, &cpu_online_attr_group); |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1014 | break; |
| 1015 | } |
Akinobu Mita | d882ba6 | 2010-05-26 14:43:34 -0700 | [diff] [blame] | 1016 | return notifier_from_errno(err); |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1017 | } |
| 1018 | |
| 1019 | static struct notifier_block __cpuinitdata smp_cpu_nb = { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 1020 | .notifier_call = smp_cpu_notify, |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1021 | }; |
| 1022 | |
Heiko Carstens | 2bc89b5 | 2008-02-05 16:50:40 +0100 | [diff] [blame] | 1023 | static int __devinit smp_add_present_cpu(int cpu) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1024 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1025 | struct cpu *c = &pcpu_devices[cpu].cpu; |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1026 | struct device *s = &c->dev; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1027 | int rc; |
| 1028 | |
| 1029 | c->hotpluggable = 1; |
| 1030 | rc = register_cpu(c, cpu); |
| 1031 | if (rc) |
| 1032 | goto out; |
| 1033 | rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group); |
| 1034 | if (rc) |
| 1035 | goto out_cpu; |
Heiko Carstens | 83a24e3 | 2011-12-27 11:27:09 +0100 | [diff] [blame] | 1036 | if (cpu_online(cpu)) { |
| 1037 | rc = sysfs_create_group(&s->kobj, &cpu_online_attr_group); |
| 1038 | if (rc) |
| 1039 | goto out_online; |
| 1040 | } |
| 1041 | rc = topology_cpu_init(c); |
| 1042 | if (rc) |
| 1043 | goto out_topology; |
| 1044 | return 0; |
| 1045 | |
| 1046 | out_topology: |
| 1047 | if (cpu_online(cpu)) |
| 1048 | sysfs_remove_group(&s->kobj, &cpu_online_attr_group); |
| 1049 | out_online: |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1050 | sysfs_remove_group(&s->kobj, &cpu_common_attr_group); |
| 1051 | out_cpu: |
| 1052 | #ifdef CONFIG_HOTPLUG_CPU |
| 1053 | unregister_cpu(c); |
| 1054 | #endif |
| 1055 | out: |
| 1056 | return rc; |
| 1057 | } |
| 1058 | |
| 1059 | #ifdef CONFIG_HOTPLUG_CPU |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 1060 | |
Heiko Carstens | 67060d9 | 2008-05-30 10:03:27 +0200 | [diff] [blame] | 1061 | int __ref smp_rescan_cpus(void) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1062 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1063 | struct sclp_cpu_info *info; |
| 1064 | int nr; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1065 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1066 | info = smp_get_cpu_info(); |
| 1067 | if (!info) |
| 1068 | return -ENOMEM; |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 1069 | get_online_cpus(); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 1070 | mutex_lock(&smp_cpu_state_mutex); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1071 | nr = __smp_rescan_cpus(info, 1); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1072 | mutex_unlock(&smp_cpu_state_mutex); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 1073 | put_online_cpus(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1074 | kfree(info); |
| 1075 | if (nr) |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1076 | topology_schedule_update(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1077 | return 0; |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 1078 | } |
| 1079 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1080 | static ssize_t __ref rescan_store(struct device *dev, |
| 1081 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 1082 | const char *buf, |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 1083 | size_t count) |
| 1084 | { |
| 1085 | int rc; |
| 1086 | |
| 1087 | rc = smp_rescan_cpus(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1088 | return rc ? rc : count; |
| 1089 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1090 | static DEVICE_ATTR(rescan, 0200, NULL, rescan_store); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1091 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 1092 | |
Heiko Carstens | 83a24e3 | 2011-12-27 11:27:09 +0100 | [diff] [blame] | 1093 | static int __init s390_smp_init(void) |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1094 | { |
Heiko Carstens | 83a24e3 | 2011-12-27 11:27:09 +0100 | [diff] [blame] | 1095 | int cpu, rc; |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1096 | |
| 1097 | register_cpu_notifier(&smp_cpu_nb); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1098 | #ifdef CONFIG_HOTPLUG_CPU |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1099 | rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1100 | if (rc) |
| 1101 | return rc; |
| 1102 | #endif |
| 1103 | for_each_present_cpu(cpu) { |
| 1104 | rc = smp_add_present_cpu(cpu); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 1105 | if (rc) |
| 1106 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | } |
| 1108 | return 0; |
| 1109 | } |
Heiko Carstens | 83a24e3 | 2011-12-27 11:27:09 +0100 | [diff] [blame] | 1110 | subsys_initcall(s390_smp_init); |