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 | * |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 1999, 2012 |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 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> |
Heiko Carstens | af51160e | 2016-12-03 09:48:01 +0100 | [diff] [blame] | 22 | #include <linux/bootmem.h> |
Paul Gortmaker | 3994a52 | 2017-02-09 15:20:23 -0500 | [diff] [blame] | 23 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/mm.h> |
Alexey Dobriyan | 4e950f6 | 2007-07-30 02:36:13 +0400 | [diff] [blame] | 26 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/spinlock.h> |
| 28 | #include <linux/kernel_stat.h> |
Christian Borntraeger | 9cf8edb | 2017-05-18 13:04:16 +0200 | [diff] [blame] | 29 | #include <linux/kmemleak.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/interrupt.h> |
Christian Borntraeger | 3324e60 | 2009-03-26 15:23:56 +0100 | [diff] [blame] | 32 | #include <linux/irqflags.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/cpu.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Ingo Molnar | ef8bd77 | 2017-02-08 18:51:36 +0100 | [diff] [blame] | 35 | #include <linux/sched/hotplug.h> |
Ingo Molnar | 68db0cf | 2017-02-08 18:51:37 +0100 | [diff] [blame] | 36 | #include <linux/sched/task_stack.h> |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 37 | #include <linux/crash_dump.h> |
Michael Holzheu | 1592a8e | 2015-05-26 19:05:23 +0200 | [diff] [blame] | 38 | #include <linux/memblock.h> |
Heiko Carstens | cbb870c | 2010-02-26 22:37:43 +0100 | [diff] [blame] | 39 | #include <asm/asm-offsets.h> |
Martin Schwidefsky | 1ec2772 | 2015-08-20 17:28:44 +0200 | [diff] [blame] | 40 | #include <asm/diag.h> |
Heiko Carstens | 1e3cab2 | 2012-03-30 09:40:55 +0200 | [diff] [blame] | 41 | #include <asm/switch_to.h> |
| 42 | #include <asm/facility.h> |
Michael Holzheu | 46b05d2 | 2007-02-21 10:55:21 +0100 | [diff] [blame] | 43 | #include <asm/ipl.h> |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 44 | #include <asm/setup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/tlbflush.h> |
Martin Schwidefsky | 27f6b41 | 2012-07-20 11:15:08 +0200 | [diff] [blame] | 47 | #include <asm/vtimer.h> |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 48 | #include <asm/lowcore.h> |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 49 | #include <asm/sclp.h> |
Martin Schwidefsky | c742b31 | 2008-12-31 15:11:42 +0100 | [diff] [blame] | 50 | #include <asm/vdso.h> |
Michael Holzheu | 3ab121a | 2012-03-11 11:59:32 -0400 | [diff] [blame] | 51 | #include <asm/debug.h> |
Michael Holzheu | 4857d4b | 2012-03-11 11:59:34 -0400 | [diff] [blame] | 52 | #include <asm/os_info.h> |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 53 | #include <asm/sigp.h> |
Martin Schwidefsky | b5f87f1 | 2014-10-01 10:57:57 +0200 | [diff] [blame] | 54 | #include <asm/idle.h> |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 55 | #include <asm/nmi.h> |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 56 | #include "entry.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 58 | enum { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 59 | ec_schedule = 0, |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 60 | ec_call_function_single, |
| 61 | ec_stop_cpu, |
| 62 | }; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 63 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 64 | enum { |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 65 | CPU_STATE_STANDBY, |
| 66 | CPU_STATE_CONFIGURED, |
| 67 | }; |
| 68 | |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 69 | static DEFINE_PER_CPU(struct cpu *, cpu_device); |
| 70 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 71 | struct pcpu { |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 72 | struct lowcore *lowcore; /* lowcore page(s) for the cpu */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 73 | unsigned long ec_mask; /* bit mask for ec_xxx functions */ |
Heiko Carstens | 3dbc78d | 2015-12-08 14:10:12 +0100 | [diff] [blame] | 74 | unsigned long ec_clk; /* sigp timestamp for ec_xxx */ |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 75 | signed char state; /* physical cpu state */ |
| 76 | signed char polarization; /* physical polarization */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 77 | u16 address; /* physical cpu address */ |
| 78 | }; |
| 79 | |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 80 | static u8 boot_core_type; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 81 | static struct pcpu pcpu_devices[NR_CPUS]; |
| 82 | |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 83 | static struct kmem_cache *pcpu_mcesa_cache; |
| 84 | |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 85 | unsigned int smp_cpu_mt_shift; |
| 86 | EXPORT_SYMBOL(smp_cpu_mt_shift); |
| 87 | |
| 88 | unsigned int smp_cpu_mtid; |
| 89 | EXPORT_SYMBOL(smp_cpu_mtid); |
| 90 | |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 91 | #ifdef CONFIG_CRASH_DUMP |
| 92 | __vector128 __initdata boot_cpu_vector_save_area[__NUM_VXRS]; |
| 93 | #endif |
| 94 | |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 95 | static unsigned int smp_max_threads __initdata = -1U; |
| 96 | |
| 97 | static int __init early_nosmt(char *s) |
| 98 | { |
| 99 | smp_max_threads = 1; |
| 100 | return 0; |
| 101 | } |
| 102 | early_param("nosmt", early_nosmt); |
| 103 | |
| 104 | static int __init early_smt(char *s) |
| 105 | { |
| 106 | get_option(&s, &smp_max_threads); |
| 107 | return 0; |
| 108 | } |
| 109 | early_param("smt", early_smt); |
| 110 | |
Heiko Carstens | 50ab9a9 | 2012-09-04 17:36:16 +0200 | [diff] [blame] | 111 | /* |
| 112 | * The smp_cpu_state_mutex must be held when changing the state or polarization |
| 113 | * member of a pcpu data structure within the pcpu_devices arreay. |
| 114 | */ |
Heiko Carstens | dbd70fb | 2008-04-17 07:46:12 +0200 | [diff] [blame] | 115 | DEFINE_MUTEX(smp_cpu_state_mutex); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 116 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 117 | /* |
| 118 | * Signal processor helper functions. |
| 119 | */ |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 120 | static inline int __pcpu_sigp_relax(u16 addr, u8 order, unsigned long parm) |
Heiko Carstens | a93b8ec | 2010-02-26 22:37:35 +0100 | [diff] [blame] | 121 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 122 | int cc; |
| 123 | |
| 124 | while (1) { |
Heiko Carstens | c5e3acd | 2012-08-30 14:24:42 +0200 | [diff] [blame] | 125 | cc = __pcpu_sigp(addr, order, parm, NULL); |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 126 | if (cc != SIGP_CC_BUSY) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 127 | return cc; |
| 128 | cpu_relax(); |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | static int pcpu_sigp_retry(struct pcpu *pcpu, u8 order, u32 parm) |
| 133 | { |
| 134 | int cc, retry; |
| 135 | |
| 136 | for (retry = 0; ; retry++) { |
Heiko Carstens | c5e3acd | 2012-08-30 14:24:42 +0200 | [diff] [blame] | 137 | cc = __pcpu_sigp(pcpu->address, order, parm, NULL); |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 138 | if (cc != SIGP_CC_BUSY) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 139 | break; |
| 140 | if (retry >= 3) |
| 141 | udelay(10); |
| 142 | } |
| 143 | return cc; |
| 144 | } |
| 145 | |
| 146 | static inline int pcpu_stopped(struct pcpu *pcpu) |
| 147 | { |
Heiko Carstens | 41459d36cf | 2012-09-14 11:09:52 +0200 | [diff] [blame] | 148 | u32 uninitialized_var(status); |
Heiko Carstens | c5e3acd | 2012-08-30 14:24:42 +0200 | [diff] [blame] | 149 | |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 150 | if (__pcpu_sigp(pcpu->address, SIGP_SENSE, |
Heiko Carstens | c5e3acd | 2012-08-30 14:24:42 +0200 | [diff] [blame] | 151 | 0, &status) != SIGP_CC_STATUS_STORED) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 152 | return 0; |
Heiko Carstens | c5e3acd | 2012-08-30 14:24:42 +0200 | [diff] [blame] | 153 | return !!(status & (SIGP_STATUS_CHECK_STOP|SIGP_STATUS_STOPPED)); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | static inline int pcpu_running(struct pcpu *pcpu) |
| 157 | { |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 158 | if (__pcpu_sigp(pcpu->address, SIGP_SENSE_RUNNING, |
Heiko Carstens | c5e3acd | 2012-08-30 14:24:42 +0200 | [diff] [blame] | 159 | 0, NULL) != SIGP_CC_STATUS_STORED) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 160 | return 1; |
Heiko Carstens | 524b24a | 2012-06-04 12:11:41 +0200 | [diff] [blame] | 161 | /* Status stored condition code is equivalent to cpu not running. */ |
| 162 | return 0; |
Heiko Carstens | a93b8ec | 2010-02-26 22:37:35 +0100 | [diff] [blame] | 163 | } |
| 164 | |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 165 | /* |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 166 | * Find struct pcpu by cpu address. |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 167 | */ |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 168 | static struct pcpu *pcpu_find_address(const struct cpumask *mask, u16 address) |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 169 | { |
| 170 | int cpu; |
| 171 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 172 | for_each_cpu(cpu, mask) |
| 173 | if (pcpu_devices[cpu].address == address) |
| 174 | return pcpu_devices + cpu; |
| 175 | return NULL; |
| 176 | } |
| 177 | |
| 178 | static void pcpu_ec_call(struct pcpu *pcpu, int ec_bit) |
| 179 | { |
| 180 | int order; |
| 181 | |
Heiko Carstens | dea2419 | 2013-12-03 10:06:29 +0100 | [diff] [blame] | 182 | if (test_and_set_bit(ec_bit, &pcpu->ec_mask)) |
| 183 | return; |
| 184 | order = pcpu_running(pcpu) ? SIGP_EXTERNAL_CALL : SIGP_EMERGENCY_SIGNAL; |
Heiko Carstens | 3dbc78d | 2015-12-08 14:10:12 +0100 | [diff] [blame] | 185 | pcpu->ec_clk = get_tod_clock_fast(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 186 | pcpu_sigp_retry(pcpu, order, 0); |
| 187 | } |
| 188 | |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 189 | #define ASYNC_FRAME_OFFSET (ASYNC_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE) |
| 190 | #define PANIC_FRAME_OFFSET (PAGE_SIZE - STACK_FRAME_OVERHEAD - __PT_SIZE) |
| 191 | |
Paul Gortmaker | e2741f1 | 2013-06-18 17:04:52 -0400 | [diff] [blame] | 192 | static int pcpu_alloc_lowcore(struct pcpu *pcpu, int cpu) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 193 | { |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 194 | unsigned long async_stack, panic_stack; |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 195 | unsigned long mcesa_origin, mcesa_bits; |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 196 | struct lowcore *lc; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 197 | |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 198 | mcesa_origin = mcesa_bits = 0; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 199 | if (pcpu != &pcpu_devices[0]) { |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 200 | pcpu->lowcore = (struct lowcore *) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 201 | __get_free_pages(GFP_KERNEL | GFP_DMA, LC_ORDER); |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 202 | async_stack = __get_free_pages(GFP_KERNEL, ASYNC_ORDER); |
| 203 | panic_stack = __get_free_page(GFP_KERNEL); |
| 204 | if (!pcpu->lowcore || !panic_stack || !async_stack) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 205 | goto out; |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 206 | if (MACHINE_HAS_VX || MACHINE_HAS_GS) { |
| 207 | mcesa_origin = (unsigned long) |
| 208 | kmem_cache_alloc(pcpu_mcesa_cache, GFP_KERNEL); |
| 209 | if (!mcesa_origin) |
| 210 | goto out; |
Christian Borntraeger | 9cf8edb | 2017-05-18 13:04:16 +0200 | [diff] [blame] | 211 | /* The pointer is stored with mcesa_bits ORed in */ |
| 212 | kmemleak_not_leak((void *) mcesa_origin); |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 213 | mcesa_bits = MACHINE_HAS_GS ? 11 : 0; |
| 214 | } |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 215 | } else { |
| 216 | async_stack = pcpu->lowcore->async_stack - ASYNC_FRAME_OFFSET; |
| 217 | panic_stack = pcpu->lowcore->panic_stack - PANIC_FRAME_OFFSET; |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 218 | mcesa_origin = pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK; |
| 219 | mcesa_bits = pcpu->lowcore->mcesad & MCESA_LC_MASK; |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 220 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 221 | lc = pcpu->lowcore; |
| 222 | memcpy(lc, &S390_lowcore, 512); |
| 223 | memset((char *) lc + 512, 0, sizeof(*lc) - 512); |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 224 | lc->async_stack = async_stack + ASYNC_FRAME_OFFSET; |
| 225 | lc->panic_stack = panic_stack + PANIC_FRAME_OFFSET; |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 226 | lc->mcesad = mcesa_origin | mcesa_bits; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 227 | lc->cpu_nr = cpu; |
Philipp Hachtmann | 6c8cd5b | 2014-04-07 18:25:23 +0200 | [diff] [blame] | 228 | lc->spinlock_lockval = arch_spin_lockval(cpu); |
Martin Schwidefsky | b96f7d8 | 2017-03-24 17:25:02 +0100 | [diff] [blame^] | 229 | lc->spinlock_index = 0; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 230 | if (vdso_alloc_per_cpu(lc)) |
| 231 | goto out; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 232 | lowcore_ptr[cpu] = lc; |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 233 | pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, (u32)(unsigned long) lc); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 234 | return 0; |
| 235 | out: |
| 236 | if (pcpu != &pcpu_devices[0]) { |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 237 | if (mcesa_origin) |
| 238 | kmem_cache_free(pcpu_mcesa_cache, |
| 239 | (void *) mcesa_origin); |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 240 | free_page(panic_stack); |
| 241 | free_pages(async_stack, ASYNC_ORDER); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 242 | free_pages((unsigned long) pcpu->lowcore, LC_ORDER); |
| 243 | } |
| 244 | return -ENOMEM; |
Michael Holzheu | 1943f53 | 2011-10-30 15:16:38 +0100 | [diff] [blame] | 245 | } |
| 246 | |
Heiko Carstens | 9d0f46a | 2012-05-09 16:27:35 +0200 | [diff] [blame] | 247 | #ifdef CONFIG_HOTPLUG_CPU |
| 248 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 249 | static void pcpu_free_lowcore(struct pcpu *pcpu) |
Heiko Carstens | 2c2df11 | 2010-02-26 22:37:34 +0100 | [diff] [blame] | 250 | { |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 251 | unsigned long mcesa_origin; |
| 252 | |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 253 | pcpu_sigp_retry(pcpu, SIGP_SET_PREFIX, 0); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 254 | lowcore_ptr[pcpu - pcpu_devices] = NULL; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 255 | vdso_free_per_cpu(pcpu->lowcore); |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 256 | if (pcpu == &pcpu_devices[0]) |
| 257 | return; |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 258 | if (MACHINE_HAS_VX || MACHINE_HAS_GS) { |
| 259 | mcesa_origin = pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK; |
| 260 | kmem_cache_free(pcpu_mcesa_cache, (void *) mcesa_origin); |
| 261 | } |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 262 | free_page(pcpu->lowcore->panic_stack-PANIC_FRAME_OFFSET); |
| 263 | free_pages(pcpu->lowcore->async_stack-ASYNC_FRAME_OFFSET, ASYNC_ORDER); |
| 264 | free_pages((unsigned long) pcpu->lowcore, LC_ORDER); |
Heiko Carstens | 2c2df11 | 2010-02-26 22:37:34 +0100 | [diff] [blame] | 265 | } |
| 266 | |
Heiko Carstens | 9d0f46a | 2012-05-09 16:27:35 +0200 | [diff] [blame] | 267 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 268 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 269 | static void pcpu_prepare_secondary(struct pcpu *pcpu, int cpu) |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 270 | { |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 271 | struct lowcore *lc = pcpu->lowcore; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 272 | |
Martin Schwidefsky | 64f31d5 | 2016-05-25 09:45:26 +0200 | [diff] [blame] | 273 | cpumask_set_cpu(cpu, &init_mm.context.cpu_attach_mask); |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 274 | cpumask_set_cpu(cpu, mm_cpumask(&init_mm)); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 275 | lc->cpu_nr = cpu; |
Philipp Hachtmann | 6c8cd5b | 2014-04-07 18:25:23 +0200 | [diff] [blame] | 276 | lc->spinlock_lockval = arch_spin_lockval(cpu); |
Martin Schwidefsky | b96f7d8 | 2017-03-24 17:25:02 +0100 | [diff] [blame^] | 277 | lc->spinlock_index = 0; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 278 | lc->percpu_offset = __per_cpu_offset[cpu]; |
| 279 | lc->kernel_asce = S390_lowcore.kernel_asce; |
| 280 | lc->machine_flags = S390_lowcore.machine_flags; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 281 | lc->user_timer = lc->system_timer = lc->steal_timer = 0; |
| 282 | __ctl_store(lc->cregs_save_area, 0, 15); |
| 283 | save_access_regs((unsigned int *) lc->access_regs_save_area); |
| 284 | memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list, |
| 285 | MAX_FACILITY_BIT/8); |
Martin Schwidefsky | b96f7d8 | 2017-03-24 17:25:02 +0100 | [diff] [blame^] | 286 | arch_spin_lock_setup(cpu); |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 287 | } |
| 288 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 289 | static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk) |
| 290 | { |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 291 | struct lowcore *lc = pcpu->lowcore; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 292 | |
Martin Schwidefsky | dc7ee00 | 2013-04-24 10:20:43 +0200 | [diff] [blame] | 293 | lc->kernel_stack = (unsigned long) task_stack_page(tsk) |
| 294 | + THREAD_SIZE - STACK_FRAME_OVERHEAD - sizeof(struct pt_regs); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 295 | lc->current_task = (unsigned long) tsk; |
Christian Borntraeger | e22cf8c | 2015-10-06 18:06:15 +0200 | [diff] [blame] | 296 | lc->lpp = LPP_MAGIC; |
| 297 | lc->current_pid = tsk->pid; |
Martin Schwidefsky | 90c53e6 | 2016-11-08 12:15:59 +0100 | [diff] [blame] | 298 | lc->user_timer = tsk->thread.user_timer; |
| 299 | lc->system_timer = tsk->thread.system_timer; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 300 | lc->steal_timer = 0; |
| 301 | } |
| 302 | |
| 303 | static void pcpu_start_fn(struct pcpu *pcpu, void (*func)(void *), void *data) |
| 304 | { |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 305 | struct lowcore *lc = pcpu->lowcore; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 306 | |
| 307 | lc->restart_stack = lc->kernel_stack; |
| 308 | lc->restart_fn = (unsigned long) func; |
| 309 | lc->restart_data = (unsigned long) data; |
| 310 | lc->restart_source = -1UL; |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 311 | pcpu_sigp_retry(pcpu, SIGP_RESTART, 0); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | /* |
| 315 | * Call function via PSW restart on pcpu and stop the current cpu. |
| 316 | */ |
| 317 | static void pcpu_delegate(struct pcpu *pcpu, void (*func)(void *), |
| 318 | void *data, unsigned long stack) |
| 319 | { |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 320 | struct lowcore *lc = lowcore_ptr[pcpu - pcpu_devices]; |
Heiko Carstens | fbe7656 | 2012-06-05 09:59:52 +0200 | [diff] [blame] | 321 | unsigned long source_cpu = stap(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 322 | |
Martin Schwidefsky | e258d71 | 2013-09-24 09:14:56 +0200 | [diff] [blame] | 323 | __load_psw_mask(PSW_KERNEL_BITS); |
Heiko Carstens | fbe7656 | 2012-06-05 09:59:52 +0200 | [diff] [blame] | 324 | if (pcpu->address == source_cpu) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 325 | func(data); /* should not return */ |
| 326 | /* Stop target cpu (if func returns this stops the current cpu). */ |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 327 | pcpu_sigp_retry(pcpu, SIGP_STOP, 0); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 328 | /* Restart func on the target cpu and stop the current cpu. */ |
Heiko Carstens | fbe7656 | 2012-06-05 09:59:52 +0200 | [diff] [blame] | 329 | mem_assign_absolute(lc->restart_stack, stack); |
| 330 | mem_assign_absolute(lc->restart_fn, (unsigned long) func); |
| 331 | mem_assign_absolute(lc->restart_data, (unsigned long) data); |
| 332 | mem_assign_absolute(lc->restart_source, source_cpu); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 333 | asm volatile( |
Heiko Carstens | eb54619 | 2012-06-04 15:05:43 +0200 | [diff] [blame] | 334 | "0: sigp 0,%0,%2 # sigp restart to target cpu\n" |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 335 | " brc 2,0b # busy, try again\n" |
Heiko Carstens | eb54619 | 2012-06-04 15:05:43 +0200 | [diff] [blame] | 336 | "1: sigp 0,%1,%3 # sigp stop to current cpu\n" |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 337 | " brc 2,1b # busy, try again\n" |
Heiko Carstens | fbe7656 | 2012-06-05 09:59:52 +0200 | [diff] [blame] | 338 | : : "d" (pcpu->address), "d" (source_cpu), |
Heiko Carstens | eb54619 | 2012-06-04 15:05:43 +0200 | [diff] [blame] | 339 | "K" (SIGP_RESTART), "K" (SIGP_STOP) |
| 340 | : "0", "1", "cc"); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 341 | for (;;) ; |
| 342 | } |
| 343 | |
| 344 | /* |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 345 | * Enable additional logical cpus for multi-threading. |
| 346 | */ |
| 347 | static int pcpu_set_smt(unsigned int mtid) |
| 348 | { |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 349 | int cc; |
| 350 | |
| 351 | if (smp_cpu_mtid == mtid) |
| 352 | return 0; |
Heiko Carstens | 80a60f6 | 2016-06-20 14:04:17 +0200 | [diff] [blame] | 353 | cc = __pcpu_sigp(0, SIGP_SET_MULTI_THREADING, mtid, NULL); |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 354 | if (cc == 0) { |
| 355 | smp_cpu_mtid = mtid; |
| 356 | smp_cpu_mt_shift = 0; |
| 357 | while (smp_cpu_mtid >= (1U << smp_cpu_mt_shift)) |
| 358 | smp_cpu_mt_shift++; |
| 359 | pcpu_devices[0].address = stap(); |
| 360 | } |
| 361 | return cc; |
| 362 | } |
| 363 | |
| 364 | /* |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 365 | * Call function on an online CPU. |
| 366 | */ |
| 367 | void smp_call_online_cpu(void (*func)(void *), void *data) |
| 368 | { |
| 369 | struct pcpu *pcpu; |
| 370 | |
| 371 | /* Use the current cpu if it is online. */ |
| 372 | pcpu = pcpu_find_address(cpu_online_mask, stap()); |
| 373 | if (!pcpu) |
| 374 | /* Use the first online cpu. */ |
| 375 | pcpu = pcpu_devices + cpumask_first(cpu_online_mask); |
| 376 | pcpu_delegate(pcpu, func, data, (unsigned long) restart_stack); |
| 377 | } |
| 378 | |
| 379 | /* |
| 380 | * Call function on the ipl CPU. |
| 381 | */ |
| 382 | void smp_call_ipl_cpu(void (*func)(void *), void *data) |
| 383 | { |
Michael Holzheu | c6da39f | 2012-03-13 11:25:08 -0400 | [diff] [blame] | 384 | pcpu_delegate(&pcpu_devices[0], func, data, |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 385 | pcpu_devices->lowcore->panic_stack - |
| 386 | PANIC_FRAME_OFFSET + PAGE_SIZE); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | int smp_find_processor_id(u16 address) |
| 390 | { |
| 391 | int cpu; |
| 392 | |
| 393 | for_each_present_cpu(cpu) |
| 394 | if (pcpu_devices[cpu].address == address) |
| 395 | return cpu; |
| 396 | return -1; |
| 397 | } |
| 398 | |
Christian Borntraeger | 760928c | 2016-11-02 05:08:32 -0400 | [diff] [blame] | 399 | bool arch_vcpu_is_preempted(int cpu) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 400 | { |
Christian Borntraeger | 760928c | 2016-11-02 05:08:32 -0400 | [diff] [blame] | 401 | if (test_cpu_flag_of(CIF_ENABLED_WAIT, cpu)) |
| 402 | return false; |
| 403 | if (pcpu_running(pcpu_devices + cpu)) |
| 404 | return false; |
| 405 | return true; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 406 | } |
Christian Borntraeger | 760928c | 2016-11-02 05:08:32 -0400 | [diff] [blame] | 407 | EXPORT_SYMBOL(arch_vcpu_is_preempted); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 408 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 409 | void smp_yield_cpu(int cpu) |
| 410 | { |
Martin Schwidefsky | 1ec2772 | 2015-08-20 17:28:44 +0200 | [diff] [blame] | 411 | if (MACHINE_HAS_DIAG9C) { |
Martin Schwidefsky | b5a6b71 | 2015-08-21 16:05:32 +0200 | [diff] [blame] | 412 | diag_stat_inc_norecursion(DIAG_STAT_X09C); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 413 | asm volatile("diag %0,0,0x9c" |
| 414 | : : "d" (pcpu_devices[cpu].address)); |
Martin Schwidefsky | 1ec2772 | 2015-08-20 17:28:44 +0200 | [diff] [blame] | 415 | } else if (MACHINE_HAS_DIAG44) { |
Martin Schwidefsky | b5a6b71 | 2015-08-21 16:05:32 +0200 | [diff] [blame] | 416 | diag_stat_inc_norecursion(DIAG_STAT_X044); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 417 | asm volatile("diag 0,0,0x44"); |
Martin Schwidefsky | 1ec2772 | 2015-08-20 17:28:44 +0200 | [diff] [blame] | 418 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | /* |
| 422 | * Send cpus emergency shutdown signal. This gives the cpus the |
| 423 | * opportunity to complete outstanding interrupts. |
| 424 | */ |
Heiko Carstens | 63df41d6 | 2013-09-06 19:10:48 +0200 | [diff] [blame] | 425 | static void smp_emergency_stop(cpumask_t *cpumask) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 426 | { |
| 427 | u64 end; |
| 428 | int cpu; |
| 429 | |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 430 | end = get_tod_clock() + (1000000UL << 12); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 431 | for_each_cpu(cpu, cpumask) { |
| 432 | struct pcpu *pcpu = pcpu_devices + cpu; |
| 433 | set_bit(ec_stop_cpu, &pcpu->ec_mask); |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 434 | while (__pcpu_sigp(pcpu->address, SIGP_EMERGENCY_SIGNAL, |
| 435 | 0, NULL) == SIGP_CC_BUSY && |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 436 | get_tod_clock() < end) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 437 | cpu_relax(); |
| 438 | } |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 439 | while (get_tod_clock() < end) { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 440 | for_each_cpu(cpu, cpumask) |
| 441 | if (pcpu_stopped(pcpu_devices + cpu)) |
| 442 | cpumask_clear_cpu(cpu, cpumask); |
| 443 | if (cpumask_empty(cpumask)) |
| 444 | break; |
| 445 | cpu_relax(); |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | /* |
| 450 | * Stop all cpus but the current one. |
| 451 | */ |
Heiko Carstens | 677d762 | 2007-11-20 11:13:37 +0100 | [diff] [blame] | 452 | void smp_send_stop(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | { |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 454 | cpumask_t cpumask; |
| 455 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
Heiko Carstens | 677d762 | 2007-11-20 11:13:37 +0100 | [diff] [blame] | 457 | /* Disable all interrupts/machine checks */ |
Martin Schwidefsky | e258d71 | 2013-09-24 09:14:56 +0200 | [diff] [blame] | 458 | __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT); |
Christian Borntraeger | 3324e60 | 2009-03-26 15:23:56 +0100 | [diff] [blame] | 459 | trace_hardirqs_off(); |
Heiko Carstens | 677d762 | 2007-11-20 11:13:37 +0100 | [diff] [blame] | 460 | |
Michael Holzheu | 3ab121a | 2012-03-11 11:59:32 -0400 | [diff] [blame] | 461 | debug_set_critical(); |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 462 | cpumask_copy(&cpumask, cpu_online_mask); |
| 463 | cpumask_clear_cpu(smp_processor_id(), &cpumask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 465 | if (oops_in_progress) |
| 466 | smp_emergency_stop(&cpumask); |
Martin Schwidefsky | 85ac7ca | 2011-12-27 11:27:22 +0100 | [diff] [blame] | 467 | |
| 468 | /* stop all processors */ |
| 469 | for_each_cpu(cpu, &cpumask) { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 470 | struct pcpu *pcpu = pcpu_devices + cpu; |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 471 | pcpu_sigp_retry(pcpu, SIGP_STOP, 0); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 472 | while (!pcpu_stopped(pcpu)) |
Heiko Carstens | c6b5b84 | 2006-12-04 15:40:33 +0100 | [diff] [blame] | 473 | cpu_relax(); |
| 474 | } |
| 475 | } |
| 476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | * This is the main routine where commands issued by other |
| 479 | * cpus are handled. |
| 480 | */ |
Heiko Carstens | 9acf73b | 2013-05-22 10:24:37 +0200 | [diff] [blame] | 481 | static void smp_handle_ext_call(void) |
| 482 | { |
| 483 | unsigned long bits; |
| 484 | |
| 485 | /* handle bit signal external calls */ |
| 486 | bits = xchg(&pcpu_devices[smp_processor_id()].ec_mask, 0); |
| 487 | if (test_bit(ec_stop_cpu, &bits)) |
| 488 | smp_stop_cpu(); |
| 489 | if (test_bit(ec_schedule, &bits)) |
| 490 | scheduler_ipi(); |
Heiko Carstens | 9acf73b | 2013-05-22 10:24:37 +0200 | [diff] [blame] | 491 | if (test_bit(ec_call_function_single, &bits)) |
| 492 | generic_smp_call_function_single_interrupt(); |
| 493 | } |
| 494 | |
Heiko Carstens | fde15c3 | 2012-03-11 11:59:31 -0400 | [diff] [blame] | 495 | static void do_ext_call_interrupt(struct ext_code ext_code, |
Martin Schwidefsky | f6649a7 | 2010-10-25 16:10:38 +0200 | [diff] [blame] | 496 | unsigned int param32, unsigned long param64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { |
Heiko Carstens | 9acf73b | 2013-05-22 10:24:37 +0200 | [diff] [blame] | 498 | inc_irq_stat(ext_code.code == 0x1202 ? IRQEXT_EXC : IRQEXT_EMS); |
| 499 | smp_handle_ext_call(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Rusty Russell | 630cd04 | 2009-09-24 09:34:45 -0600 | [diff] [blame] | 502 | void arch_send_call_function_ipi_mask(const struct cpumask *mask) |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 503 | { |
| 504 | int cpu; |
| 505 | |
Rusty Russell | 630cd04 | 2009-09-24 09:34:45 -0600 | [diff] [blame] | 506 | for_each_cpu(cpu, mask) |
Heiko Carstens | b6ed49e | 2013-05-21 15:34:56 +0200 | [diff] [blame] | 507 | pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single); |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | void arch_send_call_function_single_ipi(int cpu) |
| 511 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 512 | pcpu_ec_call(pcpu_devices + cpu, ec_call_function_single); |
Heiko Carstens | ca9fc75 | 2008-12-25 13:38:39 +0100 | [diff] [blame] | 513 | } |
| 514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | /* |
| 516 | * this function sends a 'reschedule' IPI to another CPU. |
| 517 | * it goes straight through and wastes no time serializing |
| 518 | * anything. Worst case is that we lose a reschedule ... |
| 519 | */ |
| 520 | void smp_send_reschedule(int cpu) |
| 521 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 522 | pcpu_ec_call(pcpu_devices + cpu, ec_schedule); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | /* |
| 526 | * parameter area for the set/clear control bit callbacks |
| 527 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 528 | struct ec_creg_mask_parms { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 529 | unsigned long orval; |
| 530 | unsigned long andval; |
| 531 | int cr; |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 532 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
| 534 | /* |
| 535 | * callback for setting/clearing control bits |
| 536 | */ |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 537 | static void smp_ctl_bit_callback(void *info) |
| 538 | { |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 539 | struct ec_creg_mask_parms *pp = info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | unsigned long cregs[16]; |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 541 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 542 | __ctl_store(cregs, 0, 15); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 543 | cregs[pp->cr] = (cregs[pp->cr] & pp->andval) | pp->orval; |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 544 | __ctl_load(cregs, 0, 15); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | /* |
| 548 | * Set a bit in a control register of all cpus |
| 549 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 550 | void smp_ctl_set_bit(int cr, int bit) |
| 551 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 552 | struct ec_creg_mask_parms parms = { 1UL << bit, -1UL, cr }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 554 | on_each_cpu(smp_ctl_bit_callback, &parms, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | } |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 556 | EXPORT_SYMBOL(smp_ctl_set_bit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
| 558 | /* |
| 559 | * Clear a bit in a control register of all cpus |
| 560 | */ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 561 | void smp_ctl_clear_bit(int cr, int bit) |
| 562 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 563 | struct ec_creg_mask_parms parms = { 0, ~(1UL << bit), cr }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 565 | on_each_cpu(smp_ctl_bit_callback, &parms, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 567 | EXPORT_SYMBOL(smp_ctl_clear_bit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
Michael Holzheu | bf28a59 | 2014-04-14 10:38:05 +0200 | [diff] [blame] | 569 | #ifdef CONFIG_CRASH_DUMP |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 570 | |
Heiko Carstens | 1af135a | 2015-06-26 12:10:49 +0200 | [diff] [blame] | 571 | int smp_store_status(int cpu) |
| 572 | { |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 573 | struct pcpu *pcpu = pcpu_devices + cpu; |
| 574 | unsigned long pa; |
Heiko Carstens | 1af135a | 2015-06-26 12:10:49 +0200 | [diff] [blame] | 575 | |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 576 | pa = __pa(&pcpu->lowcore->floating_pt_save_area); |
| 577 | if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_STATUS_AT_ADDRESS, |
| 578 | pa) != SIGP_CC_ORDER_CODE_ACCEPTED) |
Heiko Carstens | 1af135a | 2015-06-26 12:10:49 +0200 | [diff] [blame] | 579 | return -EIO; |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 580 | if (!MACHINE_HAS_VX && !MACHINE_HAS_GS) |
Heiko Carstens | 1af135a | 2015-06-26 12:10:49 +0200 | [diff] [blame] | 581 | return 0; |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 582 | pa = __pa(pcpu->lowcore->mcesad & MCESA_ORIGIN_MASK); |
| 583 | if (MACHINE_HAS_GS) |
| 584 | pa |= pcpu->lowcore->mcesad & MCESA_LC_MASK; |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 585 | if (__pcpu_sigp_relax(pcpu->address, SIGP_STORE_ADDITIONAL_STATUS, |
| 586 | pa) != SIGP_CC_ORDER_CODE_ACCEPTED) |
| 587 | return -EIO; |
Heiko Carstens | 1af135a | 2015-06-26 12:10:49 +0200 | [diff] [blame] | 588 | return 0; |
| 589 | } |
| 590 | |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 591 | /* |
| 592 | * Collect CPU state of the previous, crashed system. |
| 593 | * There are four cases: |
| 594 | * 1) standard zfcp dump |
| 595 | * condition: OLDMEM_BASE == NULL && ipl_info.type == IPL_TYPE_FCP_DUMP |
| 596 | * The state for all CPUs except the boot CPU needs to be collected |
| 597 | * with sigp stop-and-store-status. The boot CPU state is located in |
| 598 | * the absolute lowcore of the memory stored in the HSA. The zcore code |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 599 | * will copy the boot CPU state from the HSA. |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 600 | * 2) stand-alone kdump for SCSI (zfcp dump with swapped memory) |
| 601 | * condition: OLDMEM_BASE != NULL && ipl_info.type == IPL_TYPE_FCP_DUMP |
| 602 | * The state for all CPUs except the boot CPU needs to be collected |
| 603 | * with sigp stop-and-store-status. The firmware or the boot-loader |
| 604 | * stored the registers of the boot CPU in the absolute lowcore in the |
| 605 | * memory of the old system. |
| 606 | * 3) kdump and the old kernel did not store the CPU state, |
| 607 | * or stand-alone kdump for DASD |
| 608 | * condition: OLDMEM_BASE != NULL && !is_kdump_kernel() |
| 609 | * The state for all CPUs except the boot CPU needs to be collected |
| 610 | * with sigp stop-and-store-status. The kexec code or the boot-loader |
| 611 | * stored the registers of the boot CPU in the memory of the old system. |
| 612 | * 4) kdump and the old kernel stored the CPU state |
| 613 | * condition: OLDMEM_BASE != NULL && is_kdump_kernel() |
Martin Schwidefsky | 8a07dd0 | 2015-10-14 15:53:06 +0200 | [diff] [blame] | 614 | * This case does not exist for s390 anymore, setup_arch explicitly |
| 615 | * deactivates the elfcorehdr= kernel parameter |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 616 | */ |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 617 | static __init void smp_save_cpu_vxrs(struct save_area *sa, u16 addr, |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 618 | bool is_boot_cpu, unsigned long page) |
| 619 | { |
| 620 | __vector128 *vxrs = (__vector128 *) page; |
| 621 | |
| 622 | if (is_boot_cpu) |
| 623 | vxrs = boot_cpu_vector_save_area; |
| 624 | else |
| 625 | __pcpu_sigp_relax(addr, SIGP_STORE_ADDITIONAL_STATUS, page); |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 626 | save_area_add_vxrs(sa, vxrs); |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 627 | } |
| 628 | |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 629 | static __init void smp_save_cpu_regs(struct save_area *sa, u16 addr, |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 630 | bool is_boot_cpu, unsigned long page) |
| 631 | { |
| 632 | void *regs = (void *) page; |
| 633 | |
| 634 | if (is_boot_cpu) |
| 635 | copy_oldmem_kernel(regs, (void *) __LC_FPREGS_SAVE_AREA, 512); |
| 636 | else |
| 637 | __pcpu_sigp_relax(addr, SIGP_STORE_STATUS_AT_ADDRESS, page); |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 638 | save_area_add_regs(sa, regs); |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 639 | } |
| 640 | |
Michael Holzheu | 1592a8e | 2015-05-26 19:05:23 +0200 | [diff] [blame] | 641 | void __init smp_save_dump_cpus(void) |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 642 | { |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 643 | int addr, boot_cpu_addr, max_cpu_addr; |
| 644 | struct save_area *sa; |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 645 | unsigned long page; |
Michael Holzheu | 1592a8e | 2015-05-26 19:05:23 +0200 | [diff] [blame] | 646 | bool is_boot_cpu; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 647 | |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 648 | if (!(OLDMEM_BASE || ipl_info.type == IPL_TYPE_FCP_DUMP)) |
| 649 | /* No previous system present, normal boot. */ |
| 650 | return; |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 651 | /* Allocate a page as dumping area for the store status sigps */ |
| 652 | page = memblock_alloc_base(PAGE_SIZE, PAGE_SIZE, 1UL << 31); |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 653 | /* Set multi-threading state to the previous system. */ |
David Hildenbrand | 37c5f6c | 2015-05-06 13:18:59 +0200 | [diff] [blame] | 654 | pcpu_set_smt(sclp.mtid_prev); |
Michael Holzheu | 1592a8e | 2015-05-26 19:05:23 +0200 | [diff] [blame] | 655 | boot_cpu_addr = stap(); |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 656 | max_cpu_addr = SCLP_MAX_CORES << sclp.mtid_prev; |
| 657 | for (addr = 0; addr <= max_cpu_addr; addr++) { |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 658 | if (__pcpu_sigp_relax(addr, SIGP_SENSE, 0) == |
Michael Holzheu | 1592a8e | 2015-05-26 19:05:23 +0200 | [diff] [blame] | 659 | SIGP_CC_NOT_OPERATIONAL) |
| 660 | continue; |
Michael Holzheu | 1592a8e | 2015-05-26 19:05:23 +0200 | [diff] [blame] | 661 | is_boot_cpu = (addr == boot_cpu_addr); |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 662 | /* Allocate save area */ |
| 663 | sa = save_area_alloc(is_boot_cpu); |
| 664 | if (!sa) |
| 665 | panic("could not allocate memory for save area\n"); |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 666 | if (MACHINE_HAS_VX) |
| 667 | /* Get the vector registers */ |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 668 | smp_save_cpu_vxrs(sa, addr, is_boot_cpu, page); |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 669 | /* |
| 670 | * For a zfcp dump OLDMEM_BASE == NULL and the registers |
| 671 | * of the boot CPU are stored in the HSA. To retrieve |
| 672 | * these registers an SCLP request is required which is |
| 673 | * done by drivers/s390/char/zcore.c:init_cpu_info() |
| 674 | */ |
| 675 | if (!is_boot_cpu || OLDMEM_BASE) |
| 676 | /* Get the CPU registers */ |
Martin Schwidefsky | 1a2c584 | 2015-10-29 10:59:15 +0100 | [diff] [blame] | 677 | smp_save_cpu_regs(sa, addr, is_boot_cpu, page); |
Michael Holzheu | 1592a8e | 2015-05-26 19:05:23 +0200 | [diff] [blame] | 678 | } |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 679 | memblock_free(page, PAGE_SIZE); |
Michael Holzheu | 1592a8e | 2015-05-26 19:05:23 +0200 | [diff] [blame] | 680 | diag308_reset(); |
| 681 | pcpu_set_smt(0); |
Heiko Carstens | 1af135a | 2015-06-26 12:10:49 +0200 | [diff] [blame] | 682 | } |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 683 | #endif /* CONFIG_CRASH_DUMP */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 684 | |
Heiko Carstens | 50ab9a9 | 2012-09-04 17:36:16 +0200 | [diff] [blame] | 685 | void smp_cpu_set_polarization(int cpu, int val) |
| 686 | { |
| 687 | pcpu_devices[cpu].polarization = val; |
| 688 | } |
| 689 | |
| 690 | int smp_cpu_get_polarization(int cpu) |
| 691 | { |
| 692 | return pcpu_devices[cpu].polarization; |
| 693 | } |
| 694 | |
Heiko Carstens | af51160e | 2016-12-03 09:48:01 +0100 | [diff] [blame] | 695 | static void __ref smp_get_core_info(struct sclp_core_info *info, int early) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 696 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 697 | static int use_sigp_detection; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 698 | int address; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 699 | |
Heiko Carstens | af51160e | 2016-12-03 09:48:01 +0100 | [diff] [blame] | 700 | if (use_sigp_detection || sclp_get_core_info(info, early)) { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 701 | use_sigp_detection = 1; |
Martin Schwidefsky | e7086eb | 2015-06-17 10:45:31 +0200 | [diff] [blame] | 702 | for (address = 0; |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 703 | address < (SCLP_MAX_CORES << smp_cpu_mt_shift); |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 704 | address += (1U << smp_cpu_mt_shift)) { |
Martin Schwidefsky | 1a36a39 | 2015-10-29 10:28:26 +0100 | [diff] [blame] | 705 | if (__pcpu_sigp_relax(address, SIGP_SENSE, 0) == |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 706 | SIGP_CC_NOT_OPERATIONAL) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 707 | continue; |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 708 | info->core[info->configured].core_id = |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 709 | address >> smp_cpu_mt_shift; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 710 | info->configured++; |
| 711 | } |
| 712 | info->combined = info->configured; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 713 | } |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 714 | } |
| 715 | |
Paul Gortmaker | e2741f1 | 2013-06-18 17:04:52 -0400 | [diff] [blame] | 716 | static int smp_add_present_cpu(int cpu); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 717 | |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 718 | static int __smp_rescan_cpus(struct sclp_core_info *info, int sysfs_add) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 719 | { |
| 720 | struct pcpu *pcpu; |
| 721 | cpumask_t avail; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 722 | int cpu, nr, i, j; |
| 723 | u16 address; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 724 | |
| 725 | nr = 0; |
KOSAKI Motohiro | 0f1959f | 2011-05-23 10:24:36 +0200 | [diff] [blame] | 726 | cpumask_xor(&avail, cpu_possible_mask, cpu_present_mask); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 727 | cpu = cpumask_first(&avail); |
| 728 | for (i = 0; (i < info->combined) && (cpu < nr_cpu_ids); i++) { |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 729 | if (sclp.has_core_type && info->core[i].type != boot_core_type) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 730 | continue; |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 731 | address = info->core[i].core_id << smp_cpu_mt_shift; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 732 | for (j = 0; j <= smp_cpu_mtid; j++) { |
| 733 | if (pcpu_find_address(cpu_present_mask, address + j)) |
| 734 | continue; |
| 735 | pcpu = pcpu_devices + cpu; |
| 736 | pcpu->address = address + j; |
| 737 | pcpu->state = |
| 738 | (cpu >= info->configured*(smp_cpu_mtid + 1)) ? |
| 739 | CPU_STATE_STANDBY : CPU_STATE_CONFIGURED; |
| 740 | smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN); |
| 741 | set_cpu_present(cpu, true); |
| 742 | if (sysfs_add && smp_add_present_cpu(cpu) != 0) |
| 743 | set_cpu_present(cpu, false); |
| 744 | else |
| 745 | nr++; |
| 746 | cpu = cpumask_next(cpu, &avail); |
| 747 | if (cpu >= nr_cpu_ids) |
| 748 | break; |
| 749 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 750 | } |
| 751 | return nr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | } |
| 753 | |
Heiko Carstens | af51160e | 2016-12-03 09:48:01 +0100 | [diff] [blame] | 754 | void __init smp_detect_cpus(void) |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 755 | { |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 756 | unsigned int cpu, mtid, c_cpus, s_cpus; |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 757 | struct sclp_core_info *info; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 758 | u16 address; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 759 | |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 760 | /* Get CPU information */ |
Heiko Carstens | af51160e | 2016-12-03 09:48:01 +0100 | [diff] [blame] | 761 | info = memblock_virt_alloc(sizeof(*info), 8); |
| 762 | smp_get_core_info(info, 1); |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 763 | /* Find boot CPU type */ |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 764 | if (sclp.has_core_type) { |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 765 | address = stap(); |
| 766 | for (cpu = 0; cpu < info->combined; cpu++) |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 767 | if (info->core[cpu].core_id == address) { |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 768 | /* The boot cpu dictates the cpu type. */ |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 769 | boot_core_type = info->core[cpu].type; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 770 | break; |
| 771 | } |
| 772 | if (cpu >= info->combined) |
| 773 | panic("Could not find boot CPU type"); |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 774 | } |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 775 | |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 776 | /* Set multi-threading state for the current system */ |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 777 | mtid = boot_core_type ? sclp.mtid : sclp.mtid_cp; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 778 | mtid = (mtid < smp_max_threads) ? mtid : smp_max_threads - 1; |
| 779 | pcpu_set_smt(mtid); |
| 780 | |
| 781 | /* Print number of CPUs */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 782 | c_cpus = s_cpus = 0; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 783 | for (cpu = 0; cpu < info->combined; cpu++) { |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 784 | if (sclp.has_core_type && |
| 785 | info->core[cpu].type != boot_core_type) |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 786 | continue; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 787 | if (cpu < info->configured) |
| 788 | c_cpus += smp_cpu_mtid + 1; |
| 789 | else |
| 790 | s_cpus += smp_cpu_mtid + 1; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 791 | } |
Martin Schwidefsky | 395d31d | 2008-12-25 13:39:50 +0100 | [diff] [blame] | 792 | pr_info("%d configured CPUs, %d standby CPUs\n", c_cpus, s_cpus); |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 793 | |
| 794 | /* Add CPUs present at boot */ |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 795 | get_online_cpus(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 796 | __smp_rescan_cpus(info, 0); |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 797 | put_online_cpus(); |
Heiko Carstens | af51160e | 2016-12-03 09:48:01 +0100 | [diff] [blame] | 798 | memblock_free_early((unsigned long)info, sizeof(*info)); |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 799 | } |
| 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | /* |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 802 | * Activate a secondary processor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | */ |
Paul Gortmaker | e2741f1 | 2013-06-18 17:04:52 -0400 | [diff] [blame] | 804 | static void smp_start_secondary(void *cpuvoid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | { |
Martin Schwidefsky | 1887aa0 | 2017-09-22 14:17:41 +0200 | [diff] [blame] | 806 | int cpu = smp_processor_id(); |
| 807 | |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 808 | S390_lowcore.last_update_clock = get_tod_clock(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 809 | S390_lowcore.restart_stack = (unsigned long) restart_stack; |
| 810 | S390_lowcore.restart_fn = (unsigned long) do_restart; |
| 811 | S390_lowcore.restart_data = 0; |
| 812 | S390_lowcore.restart_source = -1UL; |
| 813 | restore_access_regs(S390_lowcore.access_regs_save_area); |
| 814 | __ctl_load(S390_lowcore.cregs_save_area, 0, 15); |
Martin Schwidefsky | e258d71 | 2013-09-24 09:14:56 +0200 | [diff] [blame] | 815 | __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 816 | cpu_init(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 817 | preempt_disable(); |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 818 | init_cpu_timer(); |
Martin Schwidefsky | b5f87f1 | 2014-10-01 10:57:57 +0200 | [diff] [blame] | 819 | vtime_init(); |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 820 | pfault_init(); |
Martin Schwidefsky | 1887aa0 | 2017-09-22 14:17:41 +0200 | [diff] [blame] | 821 | notify_cpu_starting(cpu); |
| 822 | if (topology_cpu_dedicated(cpu)) |
| 823 | set_cpu_flag(CIF_DEDICATED_CPU); |
| 824 | else |
| 825 | clear_cpu_flag(CIF_DEDICATED_CPU); |
| 826 | set_cpu_online(cpu, true); |
Heiko Carstens | 93f3b2e | 2013-01-02 16:54:12 +0100 | [diff] [blame] | 827 | inc_irq_stat(CPU_RST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | local_irq_enable(); |
Thomas Gleixner | fc6d73d | 2016-02-26 18:43:40 +0000 | [diff] [blame] | 829 | cpu_startup_entry(CPUHP_AP_ONLINE_IDLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | /* Upping and downing of CPUs */ |
Paul Gortmaker | e2741f1 | 2013-06-18 17:04:52 -0400 | [diff] [blame] | 833 | int __cpu_up(unsigned int cpu, struct task_struct *tidle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 835 | struct pcpu *pcpu; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 836 | int base, i, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 838 | pcpu = pcpu_devices + cpu; |
| 839 | if (pcpu->state != CPU_STATE_CONFIGURED) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 840 | return -EIO; |
Heiko Carstens | 5423145 | 2016-12-05 21:18:58 +0100 | [diff] [blame] | 841 | base = smp_get_base_cpu(cpu); |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 842 | for (i = 0; i <= smp_cpu_mtid; i++) { |
| 843 | if (base + i < nr_cpu_ids) |
| 844 | if (cpu_online(base + i)) |
| 845 | break; |
| 846 | } |
| 847 | /* |
| 848 | * If this is the first CPU of the core to get online |
| 849 | * do an initial CPU reset. |
| 850 | */ |
| 851 | if (i > smp_cpu_mtid && |
| 852 | pcpu_sigp_retry(pcpu_devices + base, SIGP_INITIAL_CPU_RESET, 0) != |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 853 | SIGP_CC_ORDER_CODE_ACCEPTED) |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 854 | return -EIO; |
Thomas Gleixner | e80e781 | 2012-04-20 13:05:52 +0000 | [diff] [blame] | 855 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 856 | rc = pcpu_alloc_lowcore(pcpu, cpu); |
| 857 | if (rc) |
| 858 | return rc; |
| 859 | pcpu_prepare_secondary(pcpu, cpu); |
Thomas Gleixner | e80e781 | 2012-04-20 13:05:52 +0000 | [diff] [blame] | 860 | pcpu_attach_task(pcpu, tidle); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 861 | pcpu_start_fn(pcpu, smp_start_secondary, NULL); |
Heiko Carstens | a1307bb | 2015-03-30 12:51:42 +0200 | [diff] [blame] | 862 | /* Wait until cpu puts itself in the online & active maps */ |
Peter Zijlstra (Intel) | e9d867a | 2016-03-10 12:54:08 +0100 | [diff] [blame] | 863 | while (!cpu_online(cpu)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | cpu_relax(); |
| 865 | return 0; |
| 866 | } |
| 867 | |
Heiko Carstens | d80512f | 2013-12-16 14:31:26 +0100 | [diff] [blame] | 868 | static unsigned int setup_possible_cpus __initdata; |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 869 | |
Heiko Carstens | d80512f | 2013-12-16 14:31:26 +0100 | [diff] [blame] | 870 | static int __init _setup_possible_cpus(char *s) |
| 871 | { |
| 872 | get_option(&s, &setup_possible_cpus); |
Heiko Carstens | 37a3302 | 2006-02-17 13:52:47 -0800 | [diff] [blame] | 873 | return 0; |
| 874 | } |
Heiko Carstens | d80512f | 2013-12-16 14:31:26 +0100 | [diff] [blame] | 875 | early_param("possible_cpus", _setup_possible_cpus); |
Heiko Carstens | 37a3302 | 2006-02-17 13:52:47 -0800 | [diff] [blame] | 876 | |
Heiko Carstens | 48483b3 | 2008-01-26 14:11:05 +0100 | [diff] [blame] | 877 | #ifdef CONFIG_HOTPLUG_CPU |
| 878 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 879 | int __cpu_disable(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 881 | unsigned long cregs[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | |
Heiko Carstens | 9acf73b | 2013-05-22 10:24:37 +0200 | [diff] [blame] | 883 | /* Handle possible pending IPIs */ |
| 884 | smp_handle_ext_call(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 885 | set_cpu_online(smp_processor_id(), false); |
| 886 | /* Disable pseudo page faults on this cpu. */ |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 887 | pfault_fini(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 888 | /* Disable interrupt sources via control register. */ |
| 889 | __ctl_store(cregs, 0, 15); |
| 890 | cregs[0] &= ~0x0000ee70UL; /* disable all external interrupts */ |
| 891 | cregs[6] &= ~0xff000000UL; /* disable all I/O interrupts */ |
| 892 | cregs[14] &= ~0x1f000000UL; /* disable most machine checks */ |
| 893 | __ctl_load(cregs, 0, 15); |
Martin Schwidefsky | fe0f497 | 2014-09-30 17:37:52 +0200 | [diff] [blame] | 894 | clear_cpu_flag(CIF_NOHZ_DELAY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | return 0; |
| 896 | } |
| 897 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 898 | void __cpu_die(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 900 | struct pcpu *pcpu; |
| 901 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | /* Wait until target cpu is down */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 903 | pcpu = pcpu_devices + cpu; |
| 904 | while (!pcpu_stopped(pcpu)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | cpu_relax(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 906 | pcpu_free_lowcore(pcpu); |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 907 | cpumask_clear_cpu(cpu, mm_cpumask(&init_mm)); |
Martin Schwidefsky | 64f31d5 | 2016-05-25 09:45:26 +0200 | [diff] [blame] | 908 | cpumask_clear_cpu(cpu, &init_mm.context.cpu_attach_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | } |
| 910 | |
Heiko Carstens | b456d94 | 2011-05-23 10:24:33 +0200 | [diff] [blame] | 911 | void __noreturn cpu_die(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | { |
| 913 | idle_task_exit(); |
Heiko Carstens | a9ae32c | 2012-06-04 12:55:15 +0200 | [diff] [blame] | 914 | pcpu_sigp_retry(pcpu_devices + smp_processor_id(), SIGP_STOP, 0); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 915 | for (;;) ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | } |
| 917 | |
Heiko Carstens | 255acee | 2006-02-17 13:52:46 -0800 | [diff] [blame] | 918 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 919 | |
Heiko Carstens | d80512f | 2013-12-16 14:31:26 +0100 | [diff] [blame] | 920 | void __init smp_fill_possible_mask(void) |
| 921 | { |
David Hildenbrand | 9747bc4 | 2015-05-06 09:29:53 +0200 | [diff] [blame] | 922 | unsigned int possible, sclp_max, cpu; |
Heiko Carstens | d80512f | 2013-12-16 14:31:26 +0100 | [diff] [blame] | 923 | |
David Hildenbrand | 3a9f3fe | 2015-05-06 13:19:29 +0200 | [diff] [blame] | 924 | sclp_max = max(sclp.mtid, sclp.mtid_cp) + 1; |
| 925 | sclp_max = min(smp_max_threads, sclp_max); |
Dan Carpenter | 61282af | 2016-07-18 09:02:56 +0200 | [diff] [blame] | 926 | sclp_max = (sclp.max_cores * sclp_max) ?: nr_cpu_ids; |
Heiko Carstens | cf813db | 2014-03-10 14:50:16 +0100 | [diff] [blame] | 927 | possible = setup_possible_cpus ?: nr_cpu_ids; |
David Hildenbrand | 9747bc4 | 2015-05-06 09:29:53 +0200 | [diff] [blame] | 928 | possible = min(possible, sclp_max); |
Heiko Carstens | d80512f | 2013-12-16 14:31:26 +0100 | [diff] [blame] | 929 | for (cpu = 0; cpu < possible && cpu < nr_cpu_ids; cpu++) |
| 930 | set_cpu_possible(cpu, true); |
| 931 | } |
| 932 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | void __init smp_prepare_cpus(unsigned int max_cpus) |
| 934 | { |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 935 | unsigned long size; |
| 936 | |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 937 | /* request the 0x1201 emergency signal external interrupt */ |
Thomas Huth | 1dad093 | 2014-03-31 15:24:08 +0200 | [diff] [blame] | 938 | if (register_external_irq(EXT_IRQ_EMERGENCY_SIG, do_ext_call_interrupt)) |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 939 | panic("Couldn't request external interrupt 0x1201"); |
Martin Schwidefsky | d98e19c | 2011-10-30 15:16:58 +0100 | [diff] [blame] | 940 | /* request the 0x1202 external call external interrupt */ |
Thomas Huth | 1dad093 | 2014-03-31 15:24:08 +0200 | [diff] [blame] | 941 | if (register_external_irq(EXT_IRQ_EXTERNAL_CALL, do_ext_call_interrupt)) |
Martin Schwidefsky | d98e19c | 2011-10-30 15:16:58 +0100 | [diff] [blame] | 942 | panic("Couldn't request external interrupt 0x1202"); |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame] | 943 | /* create slab cache for the machine-check-extended-save-areas */ |
| 944 | if (MACHINE_HAS_VX || MACHINE_HAS_GS) { |
| 945 | size = 1UL << (MACHINE_HAS_GS ? 11 : 10); |
| 946 | pcpu_mcesa_cache = kmem_cache_create("nmi_save_areas", |
| 947 | size, size, 0, NULL); |
| 948 | if (!pcpu_mcesa_cache) |
| 949 | panic("Couldn't create nmi save area cache"); |
| 950 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } |
| 952 | |
Heiko Carstens | ea1f4ee | 2007-05-31 17:38:05 +0200 | [diff] [blame] | 953 | void __init smp_prepare_boot_cpu(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 955 | struct pcpu *pcpu = pcpu_devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
Heiko Carstens | 0861b5a | 2017-03-16 11:02:36 +0100 | [diff] [blame] | 957 | WARN_ON(!cpu_present(0) || !cpu_online(0)); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 958 | pcpu->state = CPU_STATE_CONFIGURED; |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 959 | pcpu->lowcore = (struct lowcore *)(unsigned long) store_prefix(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 960 | S390_lowcore.percpu_offset = __per_cpu_offset[0]; |
Heiko Carstens | 50ab9a9 | 2012-09-04 17:36:16 +0200 | [diff] [blame] | 961 | smp_cpu_set_polarization(0, POLARIZATION_UNKNOWN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | } |
| 963 | |
Heiko Carstens | ea1f4ee | 2007-05-31 17:38:05 +0200 | [diff] [blame] | 964 | void __init smp_cpus_done(unsigned int max_cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | } |
| 967 | |
Heiko Carstens | 02beacc | 2010-01-13 20:44:34 +0100 | [diff] [blame] | 968 | void __init smp_setup_processor_id(void) |
| 969 | { |
Heiko Carstens | 0861b5a | 2017-03-16 11:02:36 +0100 | [diff] [blame] | 970 | pcpu_devices[0].address = stap(); |
Heiko Carstens | 02beacc | 2010-01-13 20:44:34 +0100 | [diff] [blame] | 971 | S390_lowcore.cpu_nr = 0; |
Philipp Hachtmann | 6c8cd5b | 2014-04-07 18:25:23 +0200 | [diff] [blame] | 972 | S390_lowcore.spinlock_lockval = arch_spin_lockval(0); |
Martin Schwidefsky | b96f7d8 | 2017-03-24 17:25:02 +0100 | [diff] [blame^] | 973 | S390_lowcore.spinlock_index = 0; |
Heiko Carstens | 02beacc | 2010-01-13 20:44:34 +0100 | [diff] [blame] | 974 | } |
| 975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | /* |
| 977 | * the frequency of the profiling timer can be changed |
| 978 | * by writing a multiplier value into /proc/profile. |
| 979 | * |
| 980 | * usually you want to run this on all CPUs ;) |
| 981 | */ |
| 982 | int setup_profiling_timer(unsigned int multiplier) |
| 983 | { |
Heiko Carstens | 39ce010 | 2007-04-27 16:02:00 +0200 | [diff] [blame] | 984 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
| 986 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 987 | #ifdef CONFIG_HOTPLUG_CPU |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 988 | static ssize_t cpu_configure_show(struct device *dev, |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 989 | struct device_attribute *attr, char *buf) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 990 | { |
| 991 | ssize_t count; |
| 992 | |
| 993 | mutex_lock(&smp_cpu_state_mutex); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 994 | count = sprintf(buf, "%d\n", pcpu_devices[dev->id].state); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 995 | mutex_unlock(&smp_cpu_state_mutex); |
| 996 | return count; |
| 997 | } |
| 998 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 999 | static ssize_t cpu_configure_store(struct device *dev, |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1000 | struct device_attribute *attr, |
| 1001 | const char *buf, size_t count) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1002 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1003 | struct pcpu *pcpu; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 1004 | int cpu, val, rc, i; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1005 | char delim; |
| 1006 | |
| 1007 | if (sscanf(buf, "%d %c", &val, &delim) != 1) |
| 1008 | return -EINVAL; |
| 1009 | if (val != 0 && val != 1) |
| 1010 | return -EINVAL; |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 1011 | get_online_cpus(); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 1012 | mutex_lock(&smp_cpu_state_mutex); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1013 | rc = -EBUSY; |
Heiko Carstens | 2c2df11 | 2010-02-26 22:37:34 +0100 | [diff] [blame] | 1014 | /* disallow configuration changes of online cpus and cpu 0 */ |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1015 | cpu = dev->id; |
Heiko Carstens | 5423145 | 2016-12-05 21:18:58 +0100 | [diff] [blame] | 1016 | cpu = smp_get_base_cpu(cpu); |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 1017 | if (cpu == 0) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1018 | goto out; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 1019 | for (i = 0; i <= smp_cpu_mtid; i++) |
| 1020 | if (cpu_online(cpu + i)) |
| 1021 | goto out; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1022 | pcpu = pcpu_devices + cpu; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1023 | rc = 0; |
| 1024 | switch (val) { |
| 1025 | case 0: |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1026 | if (pcpu->state != CPU_STATE_CONFIGURED) |
| 1027 | break; |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 1028 | rc = sclp_core_deconfigure(pcpu->address >> smp_cpu_mt_shift); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1029 | if (rc) |
| 1030 | break; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 1031 | for (i = 0; i <= smp_cpu_mtid; i++) { |
| 1032 | if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i)) |
| 1033 | continue; |
| 1034 | pcpu[i].state = CPU_STATE_STANDBY; |
| 1035 | smp_cpu_set_polarization(cpu + i, |
| 1036 | POLARIZATION_UNKNOWN); |
| 1037 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1038 | topology_expect_change(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1039 | break; |
| 1040 | case 1: |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1041 | if (pcpu->state != CPU_STATE_STANDBY) |
| 1042 | break; |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 1043 | rc = sclp_core_configure(pcpu->address >> smp_cpu_mt_shift); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1044 | if (rc) |
| 1045 | break; |
Martin Schwidefsky | 10ad34b | 2015-01-14 17:52:10 +0100 | [diff] [blame] | 1046 | for (i = 0; i <= smp_cpu_mtid; i++) { |
| 1047 | if (cpu + i >= nr_cpu_ids || !cpu_present(cpu + i)) |
| 1048 | continue; |
| 1049 | pcpu[i].state = CPU_STATE_CONFIGURED; |
| 1050 | smp_cpu_set_polarization(cpu + i, |
| 1051 | POLARIZATION_UNKNOWN); |
| 1052 | } |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1053 | topology_expect_change(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1054 | break; |
| 1055 | default: |
| 1056 | break; |
| 1057 | } |
| 1058 | out: |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1059 | mutex_unlock(&smp_cpu_state_mutex); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 1060 | put_online_cpus(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1061 | return rc ? rc : count; |
| 1062 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1063 | static DEVICE_ATTR(configure, 0644, cpu_configure_show, cpu_configure_store); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1064 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 1065 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1066 | static ssize_t show_cpu_address(struct device *dev, |
| 1067 | struct device_attribute *attr, char *buf) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1068 | { |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1069 | return sprintf(buf, "%d\n", pcpu_devices[dev->id].address); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1070 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1071 | static DEVICE_ATTR(address, 0444, show_cpu_address, NULL); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1072 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1073 | static struct attribute *cpu_common_attrs[] = { |
| 1074 | #ifdef CONFIG_HOTPLUG_CPU |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1075 | &dev_attr_configure.attr, |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1076 | #endif |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1077 | &dev_attr_address.attr, |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1078 | NULL, |
| 1079 | }; |
| 1080 | |
| 1081 | static struct attribute_group cpu_common_attr_group = { |
| 1082 | .attrs = cpu_common_attrs, |
| 1083 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1085 | static struct attribute *cpu_online_attrs[] = { |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1086 | &dev_attr_idle_count.attr, |
| 1087 | &dev_attr_idle_time_us.attr, |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 1088 | NULL, |
| 1089 | }; |
| 1090 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1091 | static struct attribute_group cpu_online_attr_group = { |
| 1092 | .attrs = cpu_online_attrs, |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 1093 | }; |
| 1094 | |
Sebastian Andrzej Siewior | dfbbd86 | 2016-11-04 15:45:03 +0100 | [diff] [blame] | 1095 | static int smp_cpu_online(unsigned int cpu) |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1096 | { |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 1097 | struct device *s = &per_cpu(cpu_device, cpu)->dev; |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1098 | |
Sebastian Andrzej Siewior | dfbbd86 | 2016-11-04 15:45:03 +0100 | [diff] [blame] | 1099 | return sysfs_create_group(&s->kobj, &cpu_online_attr_group); |
| 1100 | } |
| 1101 | static int smp_cpu_pre_down(unsigned int cpu) |
| 1102 | { |
| 1103 | struct device *s = &per_cpu(cpu_device, cpu)->dev; |
| 1104 | |
| 1105 | sysfs_remove_group(&s->kobj, &cpu_online_attr_group); |
| 1106 | return 0; |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1107 | } |
| 1108 | |
Paul Gortmaker | e2741f1 | 2013-06-18 17:04:52 -0400 | [diff] [blame] | 1109 | static int smp_add_present_cpu(int cpu) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1110 | { |
Heiko Carstens | 96619fc | 2013-12-05 12:42:09 +0100 | [diff] [blame] | 1111 | struct device *s; |
| 1112 | struct cpu *c; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1113 | int rc; |
| 1114 | |
Heiko Carstens | 96619fc | 2013-12-05 12:42:09 +0100 | [diff] [blame] | 1115 | c = kzalloc(sizeof(*c), GFP_KERNEL); |
| 1116 | if (!c) |
| 1117 | return -ENOMEM; |
Heiko Carstens | 2f859d0 | 2015-02-11 12:31:03 +0100 | [diff] [blame] | 1118 | per_cpu(cpu_device, cpu) = c; |
Heiko Carstens | 96619fc | 2013-12-05 12:42:09 +0100 | [diff] [blame] | 1119 | s = &c->dev; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1120 | c->hotpluggable = 1; |
| 1121 | rc = register_cpu(c, cpu); |
| 1122 | if (rc) |
| 1123 | goto out; |
| 1124 | rc = sysfs_create_group(&s->kobj, &cpu_common_attr_group); |
| 1125 | if (rc) |
| 1126 | goto out_cpu; |
Heiko Carstens | 83a24e3 | 2011-12-27 11:27:09 +0100 | [diff] [blame] | 1127 | rc = topology_cpu_init(c); |
| 1128 | if (rc) |
| 1129 | goto out_topology; |
| 1130 | return 0; |
| 1131 | |
| 1132 | out_topology: |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1133 | sysfs_remove_group(&s->kobj, &cpu_common_attr_group); |
| 1134 | out_cpu: |
| 1135 | #ifdef CONFIG_HOTPLUG_CPU |
| 1136 | unregister_cpu(c); |
| 1137 | #endif |
| 1138 | out: |
| 1139 | return rc; |
| 1140 | } |
| 1141 | |
| 1142 | #ifdef CONFIG_HOTPLUG_CPU |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 1143 | |
Heiko Carstens | 67060d9 | 2008-05-30 10:03:27 +0200 | [diff] [blame] | 1144 | int __ref smp_rescan_cpus(void) |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1145 | { |
Martin Schwidefsky | d08d943 | 2015-06-18 14:23:00 +0200 | [diff] [blame] | 1146 | struct sclp_core_info *info; |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1147 | int nr; |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1148 | |
Heiko Carstens | af51160e | 2016-12-03 09:48:01 +0100 | [diff] [blame] | 1149 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1150 | if (!info) |
| 1151 | return -ENOMEM; |
Heiko Carstens | af51160e | 2016-12-03 09:48:01 +0100 | [diff] [blame] | 1152 | smp_get_core_info(info, 0); |
Martin Schwidefsky | 9d40d2e | 2008-01-26 14:11:31 +0100 | [diff] [blame] | 1153 | get_online_cpus(); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 1154 | mutex_lock(&smp_cpu_state_mutex); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1155 | nr = __smp_rescan_cpus(info, 1); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1156 | mutex_unlock(&smp_cpu_state_mutex); |
Heiko Carstens | 0b18d31 | 2008-04-30 13:38:36 +0200 | [diff] [blame] | 1157 | put_online_cpus(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1158 | kfree(info); |
| 1159 | if (nr) |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1160 | topology_schedule_update(); |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 1161 | return 0; |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 1162 | } |
| 1163 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1164 | static ssize_t __ref rescan_store(struct device *dev, |
| 1165 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 1166 | const char *buf, |
Heiko Carstens | 1e48951 | 2008-04-30 13:38:37 +0200 | [diff] [blame] | 1167 | size_t count) |
| 1168 | { |
| 1169 | int rc; |
| 1170 | |
| 1171 | rc = smp_rescan_cpus(); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1172 | return rc ? rc : count; |
| 1173 | } |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1174 | static DEVICE_ATTR(rescan, 0200, NULL, rescan_store); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1175 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 1176 | |
Heiko Carstens | 83a24e3 | 2011-12-27 11:27:09 +0100 | [diff] [blame] | 1177 | static int __init s390_smp_init(void) |
Heiko Carstens | c10fde0 | 2008-04-17 07:46:13 +0200 | [diff] [blame] | 1178 | { |
Srivatsa S. Bhat | f4edbcd | 2014-03-11 02:05:58 +0530 | [diff] [blame] | 1179 | int cpu, rc = 0; |
Heiko Carstens | 2fc2d1e | 2007-04-27 16:01:56 +0200 | [diff] [blame] | 1180 | |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1181 | #ifdef CONFIG_HOTPLUG_CPU |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 1182 | rc = device_create_file(cpu_subsys.dev_root, &dev_attr_rescan); |
Heiko Carstens | 08d0796 | 2008-01-26 14:10:56 +0100 | [diff] [blame] | 1183 | if (rc) |
| 1184 | return rc; |
| 1185 | #endif |
| 1186 | for_each_present_cpu(cpu) { |
| 1187 | rc = smp_add_present_cpu(cpu); |
Heiko Carstens | fae8b22 | 2007-10-22 12:52:39 +0200 | [diff] [blame] | 1188 | if (rc) |
Srivatsa S. Bhat | f4edbcd | 2014-03-11 02:05:58 +0530 | [diff] [blame] | 1189 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | } |
Srivatsa S. Bhat | f4edbcd | 2014-03-11 02:05:58 +0530 | [diff] [blame] | 1191 | |
Sebastian Andrzej Siewior | dfbbd86 | 2016-11-04 15:45:03 +0100 | [diff] [blame] | 1192 | rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "s390/smp:online", |
| 1193 | smp_cpu_online, smp_cpu_pre_down); |
Heiko Carstens | e1108e8 | 2017-08-14 07:54:32 +0200 | [diff] [blame] | 1194 | rc = rc <= 0 ? rc : 0; |
Srivatsa S. Bhat | f4edbcd | 2014-03-11 02:05:58 +0530 | [diff] [blame] | 1195 | out: |
Srivatsa S. Bhat | f4edbcd | 2014-03-11 02:05:58 +0530 | [diff] [blame] | 1196 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | } |
Heiko Carstens | 83a24e3 | 2011-12-27 11:27:09 +0100 | [diff] [blame] | 1198 | subsys_initcall(s390_smp_init); |