blob: 7b7b64eb312975c6e677683f68a5abbbd3206f87 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * SMP Support
4 *
5 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
6 * Copyright (C) 1999, 2001, 2003 David Mosberger-Tang <davidm@hpl.hp.com>
7 *
8 * Lots of stuff stolen from arch/alpha/kernel/smp.c
9 *
10 * 01/05/16 Rohit Seth <rohit.seth@intel.com> IA64-SMP functions. Reorganized
11 * the existing code (on the lines of x86 port).
12 * 00/09/11 David Mosberger <davidm@hpl.hp.com> Do loops_per_jiffy
13 * calibration on each CPU.
14 * 00/08/23 Asit Mallick <asit.k.mallick@intel.com> fixed logical processor id
15 * 00/03/31 Rohit Seth <rohit.seth@intel.com> Fixes for Bootstrap Processor
16 * & cpu_online_map now gets done here (instead of setup.c)
17 * 99/10/05 davidm Update to bring it in sync with new command-line processing
18 * scheme.
19 * 10/13/00 Goutham Rao <goutham.rao@intel.com> Updated smp_call_function and
20 * smp_call_function_single to resend IPI on timeouts
21 */
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/sched.h>
25#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/smp.h>
28#include <linux/kernel_stat.h>
29#include <linux/mm.h>
30#include <linux/cache.h>
31#include <linux/delay.h>
32#include <linux/efi.h>
33#include <linux/bitops.h>
Zou Nan haia79561132006-12-07 09:51:35 -080034#include <linux/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Arun Sharma600634972011-07-26 16:09:06 -070036#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/current.h>
38#include <asm/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/io.h>
40#include <asm/irq.h>
41#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/processor.h>
43#include <asm/ptrace.h>
44#include <asm/sal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/tlbflush.h>
46#include <asm/unistd.h>
47#include <asm/mca.h>
Peter Zijlstrab3545192020-08-06 14:36:20 +020048#include <asm/xtp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
Jack Steiner3be44b92007-05-08 14:50:43 -070051 * Note: alignment of 4 entries/cacheline was empirically determined
52 * to be a good tradeoff between hot cachelines & spreading the array
53 * across too many cacheline.
54 */
55static struct local_tlb_flush_counts {
56 unsigned int count;
57} __attribute__((__aligned__(32))) local_tlb_flush_counts[NR_CPUS];
58
Tejun Heob9bf3122009-06-24 15:13:47 +090059static DEFINE_PER_CPU_SHARED_ALIGNED(unsigned short [NR_CPUS],
60 shadow_flush_counts);
Jack Steiner3be44b92007-05-08 14:50:43 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define IPI_CALL_FUNC 0
63#define IPI_CPU_STOP 1
Jens Axboef27b4332008-06-26 11:22:30 +020064#define IPI_CALL_FUNC_SINGLE 2
Zou Nan haia79561132006-12-07 09:51:35 -080065#define IPI_KDUMP_CPU_STOP 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* This needs to be cacheline aligned because it is written to by *other* CPUs. */
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -070068static DEFINE_PER_CPU_SHARED_ALIGNED(unsigned long, ipi_operation);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70extern void cpu_halt (void);
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static void
Hidetoshi Setoc0cd6612008-04-30 18:55:48 +090073stop_this_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 /*
76 * Remove this CPU:
77 */
Srivatsa S. Bhat7d7f9842012-03-28 14:42:46 -070078 set_cpu_online(smp_processor_id(), false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 max_xtp();
80 local_irq_disable();
81 cpu_halt();
82}
83
84void
85cpu_die(void)
86{
87 max_xtp();
88 local_irq_disable();
89 cpu_halt();
90 /* Should never be here */
91 BUG();
92 for (;;);
93}
94
95irqreturn_t
Keith Owens024e4f22006-10-18 15:36:49 +100096handle_IPI (int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 int this_cpu = get_cpu();
99 unsigned long *pending_ipis = &__ia64_per_cpu_var(ipi_operation);
100 unsigned long ops;
101
102 mb(); /* Order interrupt and bit testing. */
103 while ((ops = xchg(pending_ipis, 0)) != 0) {
104 mb(); /* Order bit clearing and data access. */
105 do {
106 unsigned long which;
107
108 which = ffz(~ops);
109 ops &= ~(1 << which);
110
111 switch (which) {
Hidetoshi Setoc0cd6612008-04-30 18:55:48 +0900112 case IPI_CPU_STOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 stop_this_cpu();
114 break;
Jens Axboef27b4332008-06-26 11:22:30 +0200115 case IPI_CALL_FUNC:
116 generic_smp_call_function_interrupt();
117 break;
118 case IPI_CALL_FUNC_SINGLE:
119 generic_smp_call_function_single_interrupt();
120 break;
Horms45a98fc2006-12-12 17:49:03 +0900121#ifdef CONFIG_KEXEC
Hidetoshi Setoc0cd6612008-04-30 18:55:48 +0900122 case IPI_KDUMP_CPU_STOP:
Zou Nan haia79561132006-12-07 09:51:35 -0800123 unw_init_running(kdump_cpu_freeze, NULL);
124 break;
125#endif
Hidetoshi Setoc0cd6612008-04-30 18:55:48 +0900126 default:
127 printk(KERN_CRIT "Unknown IPI on CPU %d: %lu\n",
128 this_cpu, which);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 break;
130 }
131 } while (ops);
132 mb(); /* Order data access and bit testing. */
133 }
134 put_cpu();
135 return IRQ_HANDLED;
136}
137
Jens Axboef27b4332008-06-26 11:22:30 +0200138
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*
Simon Arlott72fdbdc2007-05-11 14:55:43 -0700141 * Called with preemption disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
143static inline void
144send_IPI_single (int dest_cpu, int op)
145{
146 set_bit(op, &per_cpu(ipi_operation, dest_cpu));
Christoph Hellwig05933aa2019-08-13 09:25:02 +0200147 ia64_send_ipi(dest_cpu, IA64_IPI_VECTOR, IA64_IPI_DM_INT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150/*
Simon Arlott72fdbdc2007-05-11 14:55:43 -0700151 * Called with preemption disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
153static inline void
154send_IPI_allbutself (int op)
155{
156 unsigned int i;
157
hawkes@sgi.comdc565b52005-10-10 08:43:26 -0700158 for_each_online_cpu(i) {
159 if (i != smp_processor_id())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 send_IPI_single(i, op);
161 }
162}
163
164/*
Simon Arlott72fdbdc2007-05-11 14:55:43 -0700165 * Called with preemption disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 */
167static inline void
Rusty Russell40fe6972009-03-16 14:12:41 +1030168send_IPI_mask(const struct cpumask *mask, int op)
Xiantao Zhang31a6b112008-04-03 11:39:43 -0700169{
170 unsigned int cpu;
171
Rusty Russell40fe6972009-03-16 14:12:41 +1030172 for_each_cpu(cpu, mask) {
Xiantao Zhang31a6b112008-04-03 11:39:43 -0700173 send_IPI_single(cpu, op);
174 }
175}
176
177/*
178 * Called with preemption disabled.
179 */
180static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181send_IPI_all (int op)
182{
183 int i;
184
hawkes@sgi.comdc565b52005-10-10 08:43:26 -0700185 for_each_online_cpu(i) {
186 send_IPI_single(i, op);
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190/*
Simon Arlott72fdbdc2007-05-11 14:55:43 -0700191 * Called with preemption disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 */
193static inline void
194send_IPI_self (int op)
195{
196 send_IPI_single(smp_processor_id(), op);
197}
198
Horms45a98fc2006-12-12 17:49:03 +0900199#ifdef CONFIG_KEXEC
Zou Nan haia79561132006-12-07 09:51:35 -0800200void
Al Viroccbebda2007-02-09 16:38:10 +0000201kdump_smp_send_stop(void)
Zou Nan haia79561132006-12-07 09:51:35 -0800202{
203 send_IPI_allbutself(IPI_KDUMP_CPU_STOP);
204}
205
206void
Al Viroccbebda2007-02-09 16:38:10 +0000207kdump_smp_send_init(void)
Zou Nan haia79561132006-12-07 09:51:35 -0800208{
209 unsigned int cpu, self_cpu;
210 self_cpu = smp_processor_id();
211 for_each_online_cpu(cpu) {
212 if (cpu != self_cpu) {
213 if(kdump_status[cpu] == 0)
Christoph Hellwig05933aa2019-08-13 09:25:02 +0200214 ia64_send_ipi(cpu, 0, IA64_IPI_DM_INIT, 0);
Zou Nan haia79561132006-12-07 09:51:35 -0800215 }
216 }
217}
218#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/*
Simon Arlott72fdbdc2007-05-11 14:55:43 -0700220 * Called with preemption disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
222void
223smp_send_reschedule (int cpu)
224{
Christoph Hellwig05933aa2019-08-13 09:25:02 +0200225 ia64_send_ipi(cpu, IA64_IPI_RESCHEDULE, IA64_IPI_DM_INT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
Marcelo Tosattic4cb7682009-04-14 18:08:37 -0300227EXPORT_SYMBOL_GPL(smp_send_reschedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Jack Steiner3be44b92007-05-08 14:50:43 -0700229/*
Simon Arlott72fdbdc2007-05-11 14:55:43 -0700230 * Called with preemption disabled.
Jack Steiner3be44b92007-05-08 14:50:43 -0700231 */
232static void
233smp_send_local_flush_tlb (int cpu)
234{
Christoph Hellwig05933aa2019-08-13 09:25:02 +0200235 ia64_send_ipi(cpu, IA64_IPI_LOCAL_TLB_FLUSH, IA64_IPI_DM_INT, 0);
Jack Steiner3be44b92007-05-08 14:50:43 -0700236}
237
238void
239smp_local_flush_tlb(void)
240{
241 /*
242 * Use atomic ops. Otherwise, the load/increment/store sequence from
243 * a "++" operation can have the line stolen between the load & store.
244 * The overhead of the atomic op in negligible in this case & offers
245 * significant benefit for the brief periods where lots of cpus
246 * are simultaneously flushing TLBs.
247 */
248 ia64_fetchadd(1, &local_tlb_flush_counts[smp_processor_id()].count, acq);
249 local_flush_tlb_all();
250}
251
252#define FLUSH_DELAY 5 /* Usec backoff to eliminate excessive cacheline bouncing */
253
254void
255smp_flush_tlb_cpumask(cpumask_t xcpumask)
256{
Robin Holt97653f92008-08-15 09:21:24 -0500257 unsigned short *counts = __ia64_per_cpu_var(shadow_flush_counts);
Jack Steiner3be44b92007-05-08 14:50:43 -0700258 cpumask_t cpumask = xcpumask;
259 int mycpu, cpu, flush_mycpu = 0;
260
261 preempt_disable();
262 mycpu = smp_processor_id();
263
Rusty Russell5d2068d2015-03-05 10:49:16 +1030264 for_each_cpu(cpu, &cpumask)
Robin Holt97653f92008-08-15 09:21:24 -0500265 counts[cpu] = local_tlb_flush_counts[cpu].count & 0xffff;
Jack Steiner3be44b92007-05-08 14:50:43 -0700266
267 mb();
Rusty Russell5d2068d2015-03-05 10:49:16 +1030268 for_each_cpu(cpu, &cpumask) {
Jack Steiner3be44b92007-05-08 14:50:43 -0700269 if (cpu == mycpu)
270 flush_mycpu = 1;
271 else
272 smp_send_local_flush_tlb(cpu);
273 }
274
275 if (flush_mycpu)
276 smp_local_flush_tlb();
277
Rusty Russell5d2068d2015-03-05 10:49:16 +1030278 for_each_cpu(cpu, &cpumask)
Robin Holt97653f92008-08-15 09:21:24 -0500279 while(counts[cpu] == (local_tlb_flush_counts[cpu].count & 0xffff))
Jack Steiner3be44b92007-05-08 14:50:43 -0700280 udelay(FLUSH_DELAY);
281
282 preempt_enable();
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285void
286smp_flush_tlb_all (void)
287{
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200288 on_each_cpu((void (*)(void *))local_flush_tlb_all, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291void
292smp_flush_tlb_mm (struct mm_struct *mm)
293{
Dimitri Sivanich75c1c912010-12-28 13:34:42 -0600294 cpumask_var_t cpus;
Peter Chubba68db7632005-06-23 21:14:00 -0700295 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* this happens for the common case of a single-threaded fork(): */
297 if (likely(mm == current->active_mm && atomic_read(&mm->mm_users) == 1))
298 {
299 local_finish_flush_tlb_mm(mm);
Peter Chubba68db7632005-06-23 21:14:00 -0700300 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return;
302 }
Dimitri Sivanich75c1c912010-12-28 13:34:42 -0600303 if (!alloc_cpumask_var(&cpus, GFP_ATOMIC)) {
304 smp_call_function((void (*)(void *))local_finish_flush_tlb_mm,
305 mm, 1);
306 } else {
307 cpumask_copy(cpus, mm_cpumask(mm));
308 smp_call_function_many(cpus,
309 (void (*)(void *))local_finish_flush_tlb_mm, mm, 1);
310 free_cpumask_var(cpus);
311 }
Dimitri Sivanichedb91dc2009-04-15 10:56:25 -0500312 local_irq_disable();
313 local_finish_flush_tlb_mm(mm);
314 local_irq_enable();
Peter Chubba68db7632005-06-23 21:14:00 -0700315 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Jens Axboef27b4332008-06-26 11:22:30 +0200318void arch_send_call_function_single_ipi(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Jens Axboef27b4332008-06-26 11:22:30 +0200320 send_IPI_single(cpu, IPI_CALL_FUNC_SINGLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Rusty Russell40fe6972009-03-16 14:12:41 +1030323void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Xiantao Zhang31a6b112008-04-03 11:39:43 -0700324{
Jens Axboef27b4332008-06-26 11:22:30 +0200325 send_IPI_mask(mask, IPI_CALL_FUNC);
Xiantao Zhang31a6b112008-04-03 11:39:43 -0700326}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328/*
329 * this function calls the 'stop' function on all other CPUs in the system.
330 */
331void
332smp_send_stop (void)
333{
334 send_IPI_allbutself(IPI_CPU_STOP);
335}
336
Tony Luckcb2e0912007-07-20 16:14:28 -0700337int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338setup_profiling_timer (unsigned int multiplier)
339{
340 return -EINVAL;
341}