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