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