blob: 46bf263c315318cabb1c1530e6584f2060512497 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/alpha/kernel/smp.c
3 *
4 * 2001-07-09 Phil Ezolt (Phillip.Ezolt@compaq.com)
5 * Renamed modified smp_call_function to smp_call_function_on_cpu()
6 * Created an function that conforms to the old calling convention
7 * of smp_call_function().
8 *
9 * This is helpful for DCPI.
10 *
11 */
12
13#include <linux/errno.h>
14#include <linux/kernel.h>
15#include <linux/kernel_stat.h>
16#include <linux/module.h>
17#include <linux/sched.h>
18#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040019#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/threads.h>
21#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/interrupt.h>
23#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/spinlock.h>
26#include <linux/irq.h>
27#include <linux/cache.h>
28#include <linux/profile.h>
29#include <linux/bitops.h>
Alexey Dobriyan574f34c2008-10-15 22:01:19 -070030#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/hwrpb.h>
33#include <asm/ptrace.h>
Arun Sharma600634972011-07-26 16:09:06 -070034#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <asm/io.h>
37#include <asm/irq.h>
38#include <asm/pgtable.h>
39#include <asm/pgalloc.h>
40#include <asm/mmu_context.h>
41#include <asm/tlbflush.h>
42
43#include "proto.h"
44#include "irq_impl.h"
45
46
47#define DEBUG_SMP 0
48#if DEBUG_SMP
49#define DBGS(args) printk args
50#else
51#define DBGS(args)
52#endif
53
54/* A collection of per-processor data. */
55struct cpuinfo_alpha cpu_data[NR_CPUS];
Al Virocff52da2006-10-11 17:40:22 +010056EXPORT_SYMBOL(cpu_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/* A collection of single bit ipi messages. */
59static struct {
60 unsigned long bits ____cacheline_aligned;
61} ipi_data[NR_CPUS] __cacheline_aligned;
62
63enum ipi_message_type {
64 IPI_RESCHEDULE,
65 IPI_CALL_FUNC,
66 IPI_CPU_STOP,
67};
68
69/* Set to a secondary's cpuid when it comes online. */
Greg Kroah-Hartmanf8d6c8d2012-12-21 14:05:55 -080070static int smp_secondary_alive = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072int smp_num_probed; /* Internal processor count */
73int smp_num_cpus = 1; /* Number that came online. */
Al Virocff52da2006-10-11 17:40:22 +010074EXPORT_SYMBOL(smp_num_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/*
77 * Called by both boot and secondaries to move global data into
78 * per-processor storage.
79 */
80static inline void __init
81smp_store_cpu_info(int cpuid)
82{
83 cpu_data[cpuid].loops_per_jiffy = loops_per_jiffy;
84 cpu_data[cpuid].last_asn = ASN_FIRST_VERSION;
85 cpu_data[cpuid].need_new_asn = 0;
86 cpu_data[cpuid].asn_lock = 0;
87}
88
89/*
90 * Ideally sets up per-cpu profiling hooks. Doesn't do much now...
91 */
92static inline void __init
93smp_setup_percpu_timer(int cpuid)
94{
95 cpu_data[cpuid].prof_counter = 1;
96 cpu_data[cpuid].prof_multiplier = 1;
97}
98
99static void __init
100wait_boot_cpu_to_stop(int cpuid)
101{
102 unsigned long stop = jiffies + 10*HZ;
103
104 while (time_before(jiffies, stop)) {
105 if (!smp_secondary_alive)
106 return;
107 barrier();
108 }
109
110 printk("wait_boot_cpu_to_stop: FAILED on CPU %d, hanging now\n", cpuid);
111 for (;;)
112 barrier();
113}
114
115/*
116 * Where secondaries begin a life of C.
117 */
Paul Gortmakerab39c772013-06-17 15:43:14 -0400118void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119smp_callin(void)
120{
121 int cpuid = hard_smp_processor_id();
122
Rusty Russell1371be02009-02-16 17:31:59 -0600123 if (cpu_online(cpuid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 printk("??, cpu 0x%x already present??\n", cpuid);
125 BUG();
126 }
Rusty Russell1371be02009-02-16 17:31:59 -0600127 set_cpu_online(cpuid, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* Turn on machine checks. */
130 wrmces(7);
131
132 /* Set trap vectors. */
133 trap_init();
134
135 /* Set interrupt vector. */
136 wrent(entInt, 0);
137
138 /* Get our local ticker going. */
139 smp_setup_percpu_timer(cpuid);
Richard Hendersona1659d62013-07-14 10:57:34 -0700140 init_clockevent();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 /* Call platform-specific callin, if specified */
Richard Hendersona1659d62013-07-14 10:57:34 -0700143 if (alpha_mv.smp_callin)
144 alpha_mv.smp_callin();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* All kernel threads share the same mm context. */
147 atomic_inc(&init_mm.mm_count);
148 current->active_mm = &init_mm;
149
Manfred Spraule545a612008-09-07 16:57:22 +0200150 /* inform the notifiers about the new cpu */
151 notify_cpu_starting(cpuid);
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* Must have completely accurate bogos. */
154 local_irq_enable();
155
156 /* Wait boot CPU to stop with irq enabled before running
157 calibrate_delay. */
158 wait_boot_cpu_to_stop(cpuid);
159 mb();
160 calibrate_delay();
161
162 smp_store_cpu_info(cpuid);
163 /* Allow master to continue only after we written loops_per_jiffy. */
164 wmb();
165 smp_secondary_alive = 1;
166
167 DBGS(("smp_callin: commencing CPU %d current %p active_mm %p\n",
168 cpuid, current, current->active_mm));
169
Frederic Weisbecker6a6c0272012-08-23 14:11:25 +0200170 preempt_disable();
Thomas Gleixnerfc6d73d2016-02-26 18:43:40 +0000171 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174/* Wait until hwrpb->txrdy is clear for cpu. Return -1 on timeout. */
Greg Kroah-Hartmanf8d6c8d2012-12-21 14:05:55 -0800175static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176wait_for_txrdy (unsigned long cpumask)
177{
178 unsigned long timeout;
179
180 if (!(hwrpb->txrdy & cpumask))
181 return 0;
182
183 timeout = jiffies + 10*HZ;
184 while (time_before(jiffies, timeout)) {
185 if (!(hwrpb->txrdy & cpumask))
186 return 0;
187 udelay(10);
188 barrier();
189 }
190
191 return -1;
192}
193
194/*
195 * Send a message to a secondary's console. "START" is one such
196 * interesting message. ;-)
197 */
Paul Gortmakerab39c772013-06-17 15:43:14 -0400198static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199send_secondary_console_msg(char *str, int cpuid)
200{
201 struct percpu_struct *cpu;
202 register char *cp1, *cp2;
203 unsigned long cpumask;
204 size_t len;
205
206 cpu = (struct percpu_struct *)
207 ((char*)hwrpb
208 + hwrpb->processor_offset
209 + cpuid * hwrpb->processor_size);
210
211 cpumask = (1UL << cpuid);
212 if (wait_for_txrdy(cpumask))
213 goto timeout;
214
215 cp2 = str;
216 len = strlen(cp2);
217 *(unsigned int *)&cpu->ipc_buffer[0] = len;
218 cp1 = (char *) &cpu->ipc_buffer[1];
219 memcpy(cp1, cp2, len);
220
221 /* atomic test and set */
222 wmb();
223 set_bit(cpuid, &hwrpb->rxrdy);
224
225 if (wait_for_txrdy(cpumask))
226 goto timeout;
227 return;
228
229 timeout:
230 printk("Processor %x not ready\n", cpuid);
231}
232
233/*
234 * A secondary console wants to send a message. Receive it.
235 */
236static void
237recv_secondary_console_msg(void)
238{
239 int mycpu, i, cnt;
240 unsigned long txrdy = hwrpb->txrdy;
241 char *cp1, *cp2, buf[80];
242 struct percpu_struct *cpu;
243
244 DBGS(("recv_secondary_console_msg: TXRDY 0x%lx.\n", txrdy));
245
246 mycpu = hard_smp_processor_id();
247
248 for (i = 0; i < NR_CPUS; i++) {
249 if (!(txrdy & (1UL << i)))
250 continue;
251
252 DBGS(("recv_secondary_console_msg: "
253 "TXRDY contains CPU %d.\n", i));
254
255 cpu = (struct percpu_struct *)
256 ((char*)hwrpb
257 + hwrpb->processor_offset
258 + i * hwrpb->processor_size);
259
260 DBGS(("recv_secondary_console_msg: on %d from %d"
261 " HALT_REASON 0x%lx FLAGS 0x%lx\n",
262 mycpu, i, cpu->halt_reason, cpu->flags));
263
264 cnt = cpu->ipc_buffer[0] >> 32;
265 if (cnt <= 0 || cnt >= 80)
266 strcpy(buf, "<<< BOGUS MSG >>>");
267 else {
Chen Gang91b678c2013-05-29 19:04:09 +0800268 cp1 = (char *) &cpu->ipc_buffer[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 cp2 = buf;
Chen Gang00ee0302013-05-29 18:51:28 +0800270 memcpy(cp2, cp1, cnt);
271 cp2[cnt] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 while ((cp2 = strchr(cp2, '\r')) != 0) {
274 *cp2 = ' ';
275 if (cp2[1] == '\n')
276 cp2[1] = ' ';
277 }
278 }
279
280 DBGS((KERN_INFO "recv_secondary_console_msg: on %d "
281 "message is '%s'\n", mycpu, buf));
282 }
283
284 hwrpb->txrdy = 0;
285}
286
287/*
288 * Convince the console to have a secondary cpu begin execution.
289 */
Paul Gortmakerab39c772013-06-17 15:43:14 -0400290static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291secondary_cpu_start(int cpuid, struct task_struct *idle)
292{
293 struct percpu_struct *cpu;
294 struct pcb_struct *hwpcb, *ipcb;
295 unsigned long timeout;
296
297 cpu = (struct percpu_struct *)
298 ((char*)hwrpb
299 + hwrpb->processor_offset
300 + cpuid * hwrpb->processor_size);
301 hwpcb = (struct pcb_struct *) cpu->hwpcb;
Al Viro37bfbaf2006-01-12 01:05:36 -0800302 ipcb = &task_thread_info(idle)->pcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* Initialize the CPU's HWPCB to something just good enough for
305 us to get started. Immediately after starting, we'll swpctx
306 to the target idle task's pcb. Reuse the stack in the mean
307 time. Precalculate the target PCBB. */
308 hwpcb->ksp = (unsigned long)ipcb + sizeof(union thread_union) - 16;
309 hwpcb->usp = 0;
310 hwpcb->ptbr = ipcb->ptbr;
311 hwpcb->pcc = 0;
312 hwpcb->asn = 0;
313 hwpcb->unique = virt_to_phys(ipcb);
314 hwpcb->flags = ipcb->flags;
315 hwpcb->res1 = hwpcb->res2 = 0;
316
317#if 0
318 DBGS(("KSP 0x%lx PTBR 0x%lx VPTBR 0x%lx UNIQUE 0x%lx\n",
319 hwpcb->ksp, hwpcb->ptbr, hwrpb->vptb, hwpcb->unique));
320#endif
321 DBGS(("Starting secondary cpu %d: state 0x%lx pal_flags 0x%lx\n",
322 cpuid, idle->state, ipcb->flags));
323
324 /* Setup HWRPB fields that SRM uses to activate secondary CPU */
325 hwrpb->CPU_restart = __smp_callin;
326 hwrpb->CPU_restart_data = (unsigned long) __smp_callin;
327
328 /* Recalculate and update the HWRPB checksum */
329 hwrpb_update_checksum(hwrpb);
330
331 /*
332 * Send a "start" command to the specified processor.
333 */
334
335 /* SRM III 3.4.1.3 */
336 cpu->flags |= 0x22; /* turn on Context Valid and Restart Capable */
337 cpu->flags &= ~1; /* turn off Bootstrap In Progress */
338 wmb();
339
340 send_secondary_console_msg("START\r\n", cpuid);
341
342 /* Wait 10 seconds for an ACK from the console. */
343 timeout = jiffies + 10*HZ;
344 while (time_before(jiffies, timeout)) {
345 if (cpu->flags & 1)
346 goto started;
347 udelay(10);
348 barrier();
349 }
350 printk(KERN_ERR "SMP: Processor %d failed to start.\n", cpuid);
351 return -1;
352
353 started:
354 DBGS(("secondary_cpu_start: SUCCESS for CPU %d!!!\n", cpuid));
355 return 0;
356}
357
358/*
359 * Bring one cpu online.
360 */
Paul Gortmakerab39c772013-06-17 15:43:14 -0400361static int
Thomas Gleixner2ec94152012-04-20 13:05:55 +0000362smp_boot_one_cpu(int cpuid, struct task_struct *idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 unsigned long timeout;
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /* Signal the secondary to wait a moment. */
367 smp_secondary_alive = -1;
368
369 /* Whirrr, whirrr, whirrrrrrrrr... */
370 if (secondary_cpu_start(cpuid, idle))
371 return -1;
372
373 /* Notify the secondary CPU it can run calibrate_delay. */
374 mb();
375 smp_secondary_alive = 0;
376
377 /* We've been acked by the console; wait one second for
378 the task to start up for real. */
379 timeout = jiffies + 1*HZ;
380 while (time_before(jiffies, timeout)) {
381 if (smp_secondary_alive == 1)
382 goto alive;
383 udelay(10);
384 barrier();
385 }
386
387 /* We failed to boot the CPU. */
388
389 printk(KERN_ERR "SMP: Processor %d is stuck.\n", cpuid);
390 return -1;
391
392 alive:
393 /* Another "Red Snapper". */
394 return 0;
395}
396
397/*
398 * Called from setup_arch. Detect an SMP system and which processors
399 * are present.
400 */
401void __init
402setup_smp(void)
403{
404 struct percpu_struct *cpubase, *cpu;
405 unsigned long i;
406
407 if (boot_cpuid != 0) {
408 printk(KERN_WARNING "SMP: Booting off cpu %d instead of 0?\n",
409 boot_cpuid);
410 }
411
412 if (hwrpb->nr_processors > 1) {
413 int boot_cpu_palrev;
414
415 DBGS(("setup_smp: nr_processors %ld\n",
416 hwrpb->nr_processors));
417
418 cpubase = (struct percpu_struct *)
419 ((char*)hwrpb + hwrpb->processor_offset);
420 boot_cpu_palrev = cpubase->pal_revision;
421
422 for (i = 0; i < hwrpb->nr_processors; i++) {
423 cpu = (struct percpu_struct *)
424 ((char *)cpubase + i*hwrpb->processor_size);
425 if ((cpu->flags & 0x1cc) == 0x1cc) {
426 smp_num_probed++;
Rusty Russell1371be02009-02-16 17:31:59 -0600427 set_cpu_possible(i, true);
428 set_cpu_present(i, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 cpu->pal_revision = boot_cpu_palrev;
430 }
431
432 DBGS(("setup_smp: CPU %d: flags 0x%lx type 0x%lx\n",
433 i, cpu->flags, cpu->type));
434 DBGS(("setup_smp: CPU %d: PAL rev 0x%lx\n",
435 i, cpu->pal_revision));
436 }
437 } else {
438 smp_num_probed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Rusty Russell5f054e32012-03-29 15:38:31 +1030441 printk(KERN_INFO "SMP: %d CPUs probed -- cpu_present_mask = %lx\n",
KOSAKI Motohiro81740fc2011-05-24 17:12:56 -0700442 smp_num_probed, cpumask_bits(cpu_present_mask)[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445/*
446 * Called by smp_init prepare the secondaries
447 */
448void __init
449smp_prepare_cpus(unsigned int max_cpus)
450{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* Take care of some initial bookkeeping. */
452 memset(ipi_data, 0, sizeof(ipi_data));
453
454 current_thread_info()->cpu = boot_cpuid;
455
456 smp_store_cpu_info(boot_cpuid);
457 smp_setup_percpu_timer(boot_cpuid);
458
459 /* Nothing to do on a UP box, or when told not to. */
460 if (smp_num_probed == 1 || max_cpus == 0) {
Rusty Russell1371be02009-02-16 17:31:59 -0600461 init_cpu_possible(cpumask_of(boot_cpuid));
462 init_cpu_present(cpumask_of(boot_cpuid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 printk(KERN_INFO "SMP mode deactivated.\n");
464 return;
465 }
466
467 printk(KERN_INFO "SMP starting up secondaries.\n");
468
Ivan Kokshaysky328c2a82006-02-08 11:55:06 +0300469 smp_num_cpus = smp_num_probed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Greg Kroah-Hartmanf8d6c8d2012-12-21 14:05:55 -0800472void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473smp_prepare_boot_cpu(void)
474{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Paul Gortmakerab39c772013-06-17 15:43:14 -0400477int
Thomas Gleixner8239c252012-04-20 13:05:42 +0000478__cpu_up(unsigned int cpu, struct task_struct *tidle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Thomas Gleixner2ec94152012-04-20 13:05:55 +0000480 smp_boot_one_cpu(cpu, tidle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 return cpu_online(cpu) ? 0 : -ENOSYS;
483}
484
485void __init
486smp_cpus_done(unsigned int max_cpus)
487{
488 int cpu;
489 unsigned long bogosum = 0;
490
491 for(cpu = 0; cpu < NR_CPUS; cpu++)
492 if (cpu_online(cpu))
493 bogosum += cpu_data[cpu].loops_per_jiffy;
494
495 printk(KERN_INFO "SMP: Total of %d processors activated "
496 "(%lu.%02lu BogoMIPS).\n",
497 num_online_cpus(),
498 (bogosum + 2500) / (500000/HZ),
499 ((bogosum + 2500) / (5000/HZ)) % 100);
500}
501
Al Viroed5f6562007-07-26 17:34:19 +0100502int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503setup_profiling_timer(unsigned int multiplier)
504{
505 return -EINVAL;
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508static void
Rusty Russell81065e42009-09-24 09:34:43 -0600509send_ipi_message(const struct cpumask *to_whom, enum ipi_message_type operation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 int i;
512
513 mb();
Rusty Russell81065e42009-09-24 09:34:43 -0600514 for_each_cpu(i, to_whom)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 set_bit(operation, &ipi_data[i].bits);
516
517 mb();
Rusty Russell81065e42009-09-24 09:34:43 -0600518 for_each_cpu(i, to_whom)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 wripir(i);
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522void
523handle_ipi(struct pt_regs *regs)
524{
525 int this_cpu = smp_processor_id();
526 unsigned long *pending_ipis = &ipi_data[this_cpu].bits;
527 unsigned long ops;
528
529#if 0
530 DBGS(("handle_ipi: on CPU %d ops 0x%lx PC 0x%lx\n",
531 this_cpu, *pending_ipis, regs->pc));
532#endif
533
534 mb(); /* Order interrupt and bit testing. */
535 while ((ops = xchg(pending_ipis, 0)) != 0) {
536 mb(); /* Order bit clearing and data access. */
537 do {
538 unsigned long which;
539
540 which = ops & -ops;
541 ops &= ~which;
542 which = __ffs(which);
543
544 switch (which) {
545 case IPI_RESCHEDULE:
Peter Zijlstra184748c2011-04-05 17:23:39 +0200546 scheduler_ipi();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 break;
548
549 case IPI_CALL_FUNC:
Jens Axboec524a1d2008-06-10 20:47:29 +0200550 generic_smp_call_function_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 break;
Jens Axboec524a1d2008-06-10 20:47:29 +0200552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 case IPI_CPU_STOP:
554 halt();
555
556 default:
557 printk(KERN_CRIT "Unknown IPI on CPU %d: %lu\n",
558 this_cpu, which);
559 break;
560 }
561 } while (ops);
562
563 mb(); /* Order data access and bit testing. */
564 }
565
566 cpu_data[this_cpu].ipi_count++;
567
568 if (hwrpb->txrdy)
569 recv_secondary_console_msg();
570}
571
572void
573smp_send_reschedule(int cpu)
574{
575#ifdef DEBUG_IPI_MSG
576 if (cpu == hard_smp_processor_id())
577 printk(KERN_WARNING
578 "smp_send_reschedule: Sending IPI to self.\n");
579#endif
Rusty Russell81065e42009-09-24 09:34:43 -0600580 send_ipi_message(cpumask_of(cpu), IPI_RESCHEDULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
583void
584smp_send_stop(void)
585{
KOSAKI Motohiro81740fc2011-05-24 17:12:56 -0700586 cpumask_t to_whom;
587 cpumask_copy(&to_whom, cpu_possible_mask);
588 cpumask_clear_cpu(smp_processor_id(), &to_whom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589#ifdef DEBUG_IPI_MSG
590 if (hard_smp_processor_id() != boot_cpu_id)
591 printk(KERN_WARNING "smp_send_stop: Not on boot cpu.\n");
592#endif
Rusty Russell81065e42009-09-24 09:34:43 -0600593 send_ipi_message(&to_whom, IPI_CPU_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Rusty Russell81065e42009-09-24 09:34:43 -0600596void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Jens Axboec524a1d2008-06-10 20:47:29 +0200598 send_ipi_message(mask, IPI_CALL_FUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Jens Axboec524a1d2008-06-10 20:47:29 +0200601void arch_send_call_function_single_ipi(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Jiang Liu614aab52013-12-16 00:36:25 +0800603 send_ipi_message(cpumask_of(cpu), IPI_CALL_FUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606static void
607ipi_imb(void *ignored)
608{
609 imb();
610}
611
612void
613smp_imb(void)
614{
615 /* Must wait other processors to flush their icache before continue. */
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200616 if (on_each_cpu(ipi_imb, NULL, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 printk(KERN_CRIT "smp_imb: timed out\n");
618}
Al Virocff52da2006-10-11 17:40:22 +0100619EXPORT_SYMBOL(smp_imb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621static void
622ipi_flush_tlb_all(void *ignored)
623{
624 tbia();
625}
626
627void
628flush_tlb_all(void)
629{
630 /* Although we don't have any data to pass, we do want to
631 synchronize with the other processors. */
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200632 if (on_each_cpu(ipi_flush_tlb_all, NULL, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 printk(KERN_CRIT "flush_tlb_all: timed out\n");
634 }
635}
636
637#define asn_locked() (cpu_data[smp_processor_id()].asn_lock)
638
639static void
640ipi_flush_tlb_mm(void *x)
641{
642 struct mm_struct *mm = (struct mm_struct *) x;
643 if (mm == current->active_mm && !asn_locked())
644 flush_tlb_current(mm);
645 else
646 flush_tlb_other(mm);
647}
648
649void
650flush_tlb_mm(struct mm_struct *mm)
651{
652 preempt_disable();
653
654 if (mm == current->active_mm) {
655 flush_tlb_current(mm);
656 if (atomic_read(&mm->mm_users) <= 1) {
657 int cpu, this_cpu = smp_processor_id();
658 for (cpu = 0; cpu < NR_CPUS; cpu++) {
659 if (!cpu_online(cpu) || cpu == this_cpu)
660 continue;
661 if (mm->context[cpu])
662 mm->context[cpu] = 0;
663 }
664 preempt_enable();
665 return;
666 }
667 }
668
Jens Axboe8691e5a2008-06-06 11:18:06 +0200669 if (smp_call_function(ipi_flush_tlb_mm, mm, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 printk(KERN_CRIT "flush_tlb_mm: timed out\n");
671 }
672
673 preempt_enable();
674}
Al Virocff52da2006-10-11 17:40:22 +0100675EXPORT_SYMBOL(flush_tlb_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677struct flush_tlb_page_struct {
678 struct vm_area_struct *vma;
679 struct mm_struct *mm;
680 unsigned long addr;
681};
682
683static void
684ipi_flush_tlb_page(void *x)
685{
686 struct flush_tlb_page_struct *data = (struct flush_tlb_page_struct *)x;
687 struct mm_struct * mm = data->mm;
688
689 if (mm == current->active_mm && !asn_locked())
690 flush_tlb_current_page(mm, data->vma, data->addr);
691 else
692 flush_tlb_other(mm);
693}
694
695void
696flush_tlb_page(struct vm_area_struct *vma, unsigned long addr)
697{
698 struct flush_tlb_page_struct data;
699 struct mm_struct *mm = vma->vm_mm;
700
701 preempt_disable();
702
703 if (mm == current->active_mm) {
704 flush_tlb_current_page(mm, vma, addr);
705 if (atomic_read(&mm->mm_users) <= 1) {
706 int cpu, this_cpu = smp_processor_id();
707 for (cpu = 0; cpu < NR_CPUS; cpu++) {
708 if (!cpu_online(cpu) || cpu == this_cpu)
709 continue;
710 if (mm->context[cpu])
711 mm->context[cpu] = 0;
712 }
713 preempt_enable();
714 return;
715 }
716 }
717
718 data.vma = vma;
719 data.mm = mm;
720 data.addr = addr;
721
Jens Axboe8691e5a2008-06-06 11:18:06 +0200722 if (smp_call_function(ipi_flush_tlb_page, &data, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 printk(KERN_CRIT "flush_tlb_page: timed out\n");
724 }
725
726 preempt_enable();
727}
Al Virocff52da2006-10-11 17:40:22 +0100728EXPORT_SYMBOL(flush_tlb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730void
731flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
732{
733 /* On the Alpha we always flush the whole user tlb. */
734 flush_tlb_mm(vma->vm_mm);
735}
Al Virocff52da2006-10-11 17:40:22 +0100736EXPORT_SYMBOL(flush_tlb_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738static void
739ipi_flush_icache_page(void *x)
740{
741 struct mm_struct *mm = (struct mm_struct *) x;
742 if (mm == current->active_mm && !asn_locked())
743 __load_new_mm_context(mm);
744 else
745 flush_tlb_other(mm);
746}
747
748void
749flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
750 unsigned long addr, int len)
751{
752 struct mm_struct *mm = vma->vm_mm;
753
754 if ((vma->vm_flags & VM_EXEC) == 0)
755 return;
756
757 preempt_disable();
758
759 if (mm == current->active_mm) {
760 __load_new_mm_context(mm);
761 if (atomic_read(&mm->mm_users) <= 1) {
762 int cpu, this_cpu = smp_processor_id();
763 for (cpu = 0; cpu < NR_CPUS; cpu++) {
764 if (!cpu_online(cpu) || cpu == this_cpu)
765 continue;
766 if (mm->context[cpu])
767 mm->context[cpu] = 0;
768 }
769 preempt_enable();
770 return;
771 }
772 }
773
Jens Axboe8691e5a2008-06-06 11:18:06 +0200774 if (smp_call_function(ipi_flush_icache_page, mm, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 printk(KERN_CRIT "flush_icache_page: timed out\n");
776 }
777
778 preempt_enable();
779}