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