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