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