blob: e42a749a56dd5c85abc823e2666ff7b4683c2da0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/smp.c
3 *
4 * Copyright (C) 2002 ARM Limited, All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
Russell Kingc97d4862006-10-25 13:59:16 +010010#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/delay.h>
12#include <linux/init.h>
13#include <linux/spinlock.h>
14#include <linux/sched.h>
15#include <linux/interrupt.h>
16#include <linux/cache.h>
17#include <linux/profile.h>
18#include <linux/errno.h>
19#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040020#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/cpu.h>
22#include <linux/smp.h>
23#include <linux/seq_file.h>
Russell Kingc97d4862006-10-25 13:59:16 +010024#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/atomic.h>
27#include <asm/cacheflush.h>
28#include <asm/cpu.h>
Russell Kinge65f38e2005-06-18 09:33:31 +010029#include <asm/mmu_context.h>
30#include <asm/pgtable.h>
31#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/processor.h>
33#include <asm/tlbflush.h>
34#include <asm/ptrace.h>
35
36/*
37 * bitmask of present and online CPUs.
38 * The present bitmask indicates that the CPU is physically present.
39 * The online bitmask indicates that the CPU is up and running.
40 */
Russell Kingd12734d2005-07-11 17:38:36 +010041cpumask_t cpu_possible_map;
Greg Bankse16b38f2006-10-02 02:17:40 -070042EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043cpumask_t cpu_online_map;
Greg Bankse16b38f2006-10-02 02:17:40 -070044EXPORT_SYMBOL(cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
Russell Kinge65f38e2005-06-18 09:33:31 +010047 * as from 2.5, kernels no longer have an init_tasks structure
48 * so we need some other way of telling a new secondary core
49 * where to place its SVC stack
50 */
51struct secondary_data secondary_data;
52
53/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * structures for inter-processor calls
55 * - A collection of single bit ipi messages.
56 */
57struct ipi_data {
58 spinlock_t lock;
59 unsigned long ipi_count;
60 unsigned long bits;
61};
62
63static DEFINE_PER_CPU(struct ipi_data, ipi_data) = {
64 .lock = SPIN_LOCK_UNLOCKED,
65};
66
67enum ipi_msg_type {
68 IPI_TIMER,
69 IPI_RESCHEDULE,
70 IPI_CALL_FUNC,
Jens Axboef6dd9fa2008-06-10 20:48:30 +020071 IPI_CALL_FUNC_SINGLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 IPI_CPU_STOP,
73};
74
Russell Kingbd6f68a2005-07-17 21:35:41 +010075int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Russell King71f512e82005-11-02 21:51:40 +000077 struct cpuinfo_arm *ci = &per_cpu(cpu_data, cpu);
78 struct task_struct *idle = ci->idle;
Russell Kinge65f38e2005-06-18 09:33:31 +010079 pgd_t *pgd;
80 pmd_t *pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int ret;
82
83 /*
Russell King71f512e82005-11-02 21:51:40 +000084 * Spawn a new process manually, if not already done.
85 * Grab a pointer to its task struct so we can mess with it
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
Russell King71f512e82005-11-02 21:51:40 +000087 if (!idle) {
88 idle = fork_idle(cpu);
89 if (IS_ERR(idle)) {
90 printk(KERN_ERR "CPU%u: fork() failed\n", cpu);
91 return PTR_ERR(idle);
92 }
93 ci->idle = idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 }
95
96 /*
Russell Kinge65f38e2005-06-18 09:33:31 +010097 * Allocate initial page tables to allow the new CPU to
98 * enable the MMU safely. This essentially means a set
99 * of our "standard" page tables, with the addition of
100 * a 1:1 mapping for the physical address of the kernel.
101 */
102 pgd = pgd_alloc(&init_mm);
Russell King058ddee2008-08-07 22:36:59 +0100103 pmd = pmd_offset(pgd + pgd_index(PHYS_OFFSET), PHYS_OFFSET);
Russell Kinge65f38e2005-06-18 09:33:31 +0100104 *pmd = __pmd((PHYS_OFFSET & PGDIR_MASK) |
105 PMD_TYPE_SECT | PMD_SECT_AP_WRITE);
106
107 /*
108 * We need to tell the secondary core where to find
109 * its stack and the page tables.
110 */
Al Viro32d39a92006-01-12 01:05:58 -0800111 secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
Russell Kinge65f38e2005-06-18 09:33:31 +0100112 secondary_data.pgdir = virt_to_phys(pgd);
113 wmb();
114
115 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * Now bring the CPU into our world.
117 */
118 ret = boot_secondary(cpu, idle);
Russell Kinge65f38e2005-06-18 09:33:31 +0100119 if (ret == 0) {
120 unsigned long timeout;
121
122 /*
123 * CPU was successfully started, wait for it
124 * to come online or time out.
125 */
126 timeout = jiffies + HZ;
127 while (time_before(jiffies, timeout)) {
128 if (cpu_online(cpu))
129 break;
130
131 udelay(10);
132 barrier();
133 }
134
135 if (!cpu_online(cpu))
136 ret = -EIO;
137 }
138
Russell King5d430452005-11-08 10:44:46 +0000139 secondary_data.stack = NULL;
Russell Kinge65f38e2005-06-18 09:33:31 +0100140 secondary_data.pgdir = 0;
141
Russell King058ddee2008-08-07 22:36:59 +0100142 *pmd = __pmd(0);
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800143 pgd_free(&init_mm, pgd);
Russell Kinge65f38e2005-06-18 09:33:31 +0100144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (ret) {
Russell King0908db22005-06-19 19:48:16 +0100146 printk(KERN_CRIT "CPU%u: processor failed to boot\n", cpu);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /*
149 * FIXME: We need to clean up the new idle thread. --rmk
150 */
151 }
152
153 return ret;
154}
155
Russell Kinga054a812005-11-02 22:24:33 +0000156#ifdef CONFIG_HOTPLUG_CPU
157/*
158 * __cpu_disable runs on the processor to be shutdown.
159 */
160int __cpuexit __cpu_disable(void)
161{
162 unsigned int cpu = smp_processor_id();
163 struct task_struct *p;
164 int ret;
165
166 ret = mach_cpu_disable(cpu);
167 if (ret)
168 return ret;
169
170 /*
171 * Take this CPU offline. Once we clear this, we can't return,
172 * and we must not schedule until we're ready to give up the cpu.
173 */
174 cpu_clear(cpu, cpu_online_map);
175
176 /*
177 * OK - migrate IRQs away from this CPU
178 */
179 migrate_irqs();
180
181 /*
Russell King37ee16a2005-11-08 19:08:05 +0000182 * Stop the local timer for this CPU.
183 */
184 local_timer_stop(cpu);
185
186 /*
Russell Kinga054a812005-11-02 22:24:33 +0000187 * Flush user cache and TLB mappings, and then remove this CPU
188 * from the vm mask set of all processes.
189 */
190 flush_cache_all();
191 local_flush_tlb_all();
192
193 read_lock(&tasklist_lock);
194 for_each_process(p) {
195 if (p->mm)
196 cpu_clear(cpu, p->mm->cpu_vm_mask);
197 }
198 read_unlock(&tasklist_lock);
199
200 return 0;
201}
202
203/*
204 * called on the thread which is asking for a CPU to be shutdown -
205 * waits until shutdown has completed, or it is timed out.
206 */
207void __cpuexit __cpu_die(unsigned int cpu)
208{
209 if (!platform_cpu_kill(cpu))
210 printk("CPU%u: unable to kill\n", cpu);
211}
212
213/*
214 * Called from the idle thread for the CPU which has been shutdown.
215 *
216 * Note that we disable IRQs here, but do not re-enable them
217 * before returning to the caller. This is also the behaviour
218 * of the other hotplug-cpu capable cores, so presumably coming
219 * out of idle fixes this.
220 */
221void __cpuexit cpu_die(void)
222{
223 unsigned int cpu = smp_processor_id();
224
225 local_irq_disable();
226 idle_task_exit();
227
228 /*
229 * actual CPU shutdown procedure is at least platform (if not
230 * CPU) specific
231 */
232 platform_cpu_die(cpu);
233
234 /*
235 * Do not return to the idle loop - jump back to the secondary
236 * cpu initialisation. There's some initialisation which needs
237 * to be repeated to undo the effects of taking the CPU offline.
238 */
239 __asm__("mov sp, %0\n"
240 " b secondary_start_kernel"
241 :
Al Viro32d39a92006-01-12 01:05:58 -0800242 : "r" (task_stack_page(current) + THREAD_SIZE - 8));
Russell Kinga054a812005-11-02 22:24:33 +0000243}
244#endif /* CONFIG_HOTPLUG_CPU */
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/*
Russell Kinge65f38e2005-06-18 09:33:31 +0100247 * This is the secondary CPU boot entry. We're using this CPUs
248 * idle thread stack, but a set of temporary page tables.
249 */
Russell Kingbd6f68a2005-07-17 21:35:41 +0100250asmlinkage void __cpuinit secondary_start_kernel(void)
Russell Kinge65f38e2005-06-18 09:33:31 +0100251{
252 struct mm_struct *mm = &init_mm;
Russell Kingda2660d2005-11-12 17:21:47 +0000253 unsigned int cpu = smp_processor_id();
Russell Kinge65f38e2005-06-18 09:33:31 +0100254
255 printk("CPU%u: Booted secondary processor\n", cpu);
256
257 /*
258 * All kernel threads share the same mm context; grab a
259 * reference and switch to it.
260 */
261 atomic_inc(&mm->mm_users);
262 atomic_inc(&mm->mm_count);
263 current->active_mm = mm;
264 cpu_set(cpu, mm->cpu_vm_mask);
265 cpu_switch_mm(mm->pgd, mm);
266 enter_lazy_tlb(mm, current);
Russell King505d7b12005-07-28 20:32:47 +0100267 local_flush_tlb_all();
Russell Kinge65f38e2005-06-18 09:33:31 +0100268
269 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800270 preempt_disable();
Russell Kinge65f38e2005-06-18 09:33:31 +0100271
272 /*
273 * Give the platform a chance to do its own initialisation.
274 */
275 platform_secondary_init(cpu);
276
277 /*
278 * Enable local interrupts.
279 */
Manfred Spraule545a612008-09-07 16:57:22 +0200280 notify_cpu_starting(cpu);
Russell Kinge65f38e2005-06-18 09:33:31 +0100281 local_irq_enable();
282 local_fiq_enable();
283
Catalin Marinasa8655e82008-02-04 17:30:57 +0100284 /*
285 * Setup local timer for this CPU.
286 */
287 local_timer_setup(cpu);
288
Russell Kinge65f38e2005-06-18 09:33:31 +0100289 calibrate_delay();
290
291 smp_store_cpu_info(cpu);
292
293 /*
294 * OK, now it's safe to let the boot CPU continue
295 */
296 cpu_set(cpu, cpu_online_map);
297
298 /*
299 * OK, it's off to the idle thread for us
300 */
301 cpu_idle();
302}
303
304/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * Called by both boot and secondaries to move global data into
306 * per-processor storage.
307 */
Russell Kingbd6f68a2005-07-17 21:35:41 +0100308void __cpuinit smp_store_cpu_info(unsigned int cpuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 struct cpuinfo_arm *cpu_info = &per_cpu(cpu_data, cpuid);
311
312 cpu_info->loops_per_jiffy = loops_per_jiffy;
313}
314
315void __init smp_cpus_done(unsigned int max_cpus)
316{
317 int cpu;
318 unsigned long bogosum = 0;
319
320 for_each_online_cpu(cpu)
321 bogosum += per_cpu(cpu_data, cpu).loops_per_jiffy;
322
323 printk(KERN_INFO "SMP: Total of %d processors activated "
324 "(%lu.%02lu BogoMIPS).\n",
325 num_online_cpus(),
326 bogosum / (500000/HZ),
327 (bogosum / (5000/HZ)) % 100);
328}
329
330void __init smp_prepare_boot_cpu(void)
331{
332 unsigned int cpu = smp_processor_id();
333
Russell King71f512e82005-11-02 21:51:40 +0000334 per_cpu(cpu_data, cpu).idle = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337static void send_ipi_message(cpumask_t callmap, enum ipi_msg_type msg)
338{
339 unsigned long flags;
340 unsigned int cpu;
341
342 local_irq_save(flags);
343
344 for_each_cpu_mask(cpu, callmap) {
345 struct ipi_data *ipi = &per_cpu(ipi_data, cpu);
346
347 spin_lock(&ipi->lock);
348 ipi->bits |= 1 << msg;
349 spin_unlock(&ipi->lock);
350 }
351
352 /*
353 * Call the platform specific cross-CPU call function.
354 */
355 smp_cross_call(callmap);
356
357 local_irq_restore(flags);
358}
359
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200360void arch_send_call_function_ipi(cpumask_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200362 send_ipi_message(mask, IPI_CALL_FUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200365void arch_send_call_function_single_ipi(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200367 send_ipi_message(cpumask_of_cpu(cpu), IPI_CALL_FUNC_SINGLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
Catalin Marinas3e459992008-02-04 17:28:56 +0100369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370void show_ipi_list(struct seq_file *p)
371{
372 unsigned int cpu;
373
374 seq_puts(p, "IPI:");
375
Russell Kinge11b2232005-07-11 19:26:31 +0100376 for_each_present_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 seq_printf(p, " %10lu", per_cpu(ipi_data, cpu).ipi_count);
378
379 seq_putc(p, '\n');
380}
381
Russell King37ee16a2005-11-08 19:08:05 +0000382void show_local_irqs(struct seq_file *p)
383{
384 unsigned int cpu;
385
386 seq_printf(p, "LOC: ");
387
388 for_each_present_cpu(cpu)
389 seq_printf(p, "%10u ", irq_stat[cpu].local_timer_irqs);
390
391 seq_putc(p, '\n');
392}
393
Russell Kingc97d4862006-10-25 13:59:16 +0100394static void ipi_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 irq_enter();
Catalin Marinas3e459992008-02-04 17:28:56 +0100397 local_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 irq_exit();
399}
400
Russell King37ee16a2005-11-08 19:08:05 +0000401#ifdef CONFIG_LOCAL_TIMERS
Russell Kingb9811d72007-05-08 11:31:07 +0100402asmlinkage void __exception do_local_timer(struct pt_regs *regs)
Russell King37ee16a2005-11-08 19:08:05 +0000403{
Russell Kingc97d4862006-10-25 13:59:16 +0100404 struct pt_regs *old_regs = set_irq_regs(regs);
Russell King37ee16a2005-11-08 19:08:05 +0000405 int cpu = smp_processor_id();
406
407 if (local_timer_ack()) {
408 irq_stat[cpu].local_timer_irqs++;
Russell Kingc97d4862006-10-25 13:59:16 +0100409 ipi_timer();
Russell King37ee16a2005-11-08 19:08:05 +0000410 }
Russell Kingc97d4862006-10-25 13:59:16 +0100411
412 set_irq_regs(old_regs);
Russell King37ee16a2005-11-08 19:08:05 +0000413}
414#endif
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416static DEFINE_SPINLOCK(stop_lock);
417
418/*
419 * ipi_cpu_stop - handle IPI from smp_send_stop()
420 */
421static void ipi_cpu_stop(unsigned int cpu)
422{
423 spin_lock(&stop_lock);
424 printk(KERN_CRIT "CPU%u: stopping\n", cpu);
425 dump_stack();
426 spin_unlock(&stop_lock);
427
428 cpu_clear(cpu, cpu_online_map);
429
430 local_fiq_disable();
431 local_irq_disable();
432
433 while (1)
434 cpu_relax();
435}
436
437/*
438 * Main handler for inter-processor interrupts
439 *
440 * For ARM, the ipimask now only identifies a single
441 * category of IPI (Bit 1 IPIs have been replaced by a
442 * different mechanism):
443 *
444 * Bit 0 - Inter-processor function call
445 */
Russell Kingb9811d72007-05-08 11:31:07 +0100446asmlinkage void __exception do_IPI(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 unsigned int cpu = smp_processor_id();
449 struct ipi_data *ipi = &per_cpu(ipi_data, cpu);
Russell Kingc97d4862006-10-25 13:59:16 +0100450 struct pt_regs *old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 ipi->ipi_count++;
453
454 for (;;) {
455 unsigned long msgs;
456
457 spin_lock(&ipi->lock);
458 msgs = ipi->bits;
459 ipi->bits = 0;
460 spin_unlock(&ipi->lock);
461
462 if (!msgs)
463 break;
464
465 do {
466 unsigned nextmsg;
467
468 nextmsg = msgs & -msgs;
469 msgs &= ~nextmsg;
470 nextmsg = ffz(~nextmsg);
471
472 switch (nextmsg) {
473 case IPI_TIMER:
Russell Kingc97d4862006-10-25 13:59:16 +0100474 ipi_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
476
477 case IPI_RESCHEDULE:
478 /*
479 * nothing more to do - eveything is
480 * done on the interrupt return path
481 */
482 break;
483
484 case IPI_CALL_FUNC:
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200485 generic_smp_call_function_interrupt();
486 break;
487
488 case IPI_CALL_FUNC_SINGLE:
489 generic_smp_call_function_single_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
491
492 case IPI_CPU_STOP:
493 ipi_cpu_stop(cpu);
494 break;
495
496 default:
497 printk(KERN_CRIT "CPU%u: Unknown IPI message 0x%x\n",
498 cpu, nextmsg);
499 break;
500 }
501 } while (msgs);
502 }
Russell Kingc97d4862006-10-25 13:59:16 +0100503
504 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507void smp_send_reschedule(int cpu)
508{
509 send_ipi_message(cpumask_of_cpu(cpu), IPI_RESCHEDULE);
510}
511
512void smp_send_timer(void)
513{
514 cpumask_t mask = cpu_online_map;
515 cpu_clear(smp_processor_id(), mask);
516 send_ipi_message(mask, IPI_TIMER);
517}
518
Catalin Marinas3e459992008-02-04 17:28:56 +0100519void smp_timer_broadcast(cpumask_t mask)
520{
521 send_ipi_message(mask, IPI_TIMER);
522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524void smp_send_stop(void)
525{
526 cpumask_t mask = cpu_online_map;
527 cpu_clear(smp_processor_id(), mask);
528 send_ipi_message(mask, IPI_CPU_STOP);
529}
530
531/*
532 * not supported here
533 */
Russell King5048bcb2007-07-23 12:59:46 +0100534int setup_profiling_timer(unsigned int multiplier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 return -EINVAL;
537}
Russell King4b0ef3b2005-06-28 13:49:16 +0100538
539static int
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200540on_each_cpu_mask(void (*func)(void *), void *info, int wait, cpumask_t mask)
Russell King4b0ef3b2005-06-28 13:49:16 +0100541{
542 int ret = 0;
543
544 preempt_disable();
545
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200546 ret = smp_call_function_mask(mask, func, info, wait);
Russell King4b0ef3b2005-06-28 13:49:16 +0100547 if (cpu_isset(smp_processor_id(), mask))
548 func(info);
549
550 preempt_enable();
551
552 return ret;
553}
554
555/**********************************************************************/
556
557/*
558 * TLB operations
559 */
560struct tlb_args {
561 struct vm_area_struct *ta_vma;
562 unsigned long ta_start;
563 unsigned long ta_end;
564};
565
566static inline void ipi_flush_tlb_all(void *ignored)
567{
568 local_flush_tlb_all();
569}
570
571static inline void ipi_flush_tlb_mm(void *arg)
572{
573 struct mm_struct *mm = (struct mm_struct *)arg;
574
575 local_flush_tlb_mm(mm);
576}
577
578static inline void ipi_flush_tlb_page(void *arg)
579{
580 struct tlb_args *ta = (struct tlb_args *)arg;
581
582 local_flush_tlb_page(ta->ta_vma, ta->ta_start);
583}
584
585static inline void ipi_flush_tlb_kernel_page(void *arg)
586{
587 struct tlb_args *ta = (struct tlb_args *)arg;
588
589 local_flush_tlb_kernel_page(ta->ta_start);
590}
591
592static inline void ipi_flush_tlb_range(void *arg)
593{
594 struct tlb_args *ta = (struct tlb_args *)arg;
595
596 local_flush_tlb_range(ta->ta_vma, ta->ta_start, ta->ta_end);
597}
598
599static inline void ipi_flush_tlb_kernel_range(void *arg)
600{
601 struct tlb_args *ta = (struct tlb_args *)arg;
602
603 local_flush_tlb_kernel_range(ta->ta_start, ta->ta_end);
604}
605
606void flush_tlb_all(void)
607{
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200608 on_each_cpu(ipi_flush_tlb_all, NULL, 1);
Russell King4b0ef3b2005-06-28 13:49:16 +0100609}
610
611void flush_tlb_mm(struct mm_struct *mm)
612{
613 cpumask_t mask = mm->cpu_vm_mask;
614
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200615 on_each_cpu_mask(ipi_flush_tlb_mm, mm, 1, mask);
Russell King4b0ef3b2005-06-28 13:49:16 +0100616}
617
618void flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
619{
620 cpumask_t mask = vma->vm_mm->cpu_vm_mask;
621 struct tlb_args ta;
622
623 ta.ta_vma = vma;
624 ta.ta_start = uaddr;
625
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200626 on_each_cpu_mask(ipi_flush_tlb_page, &ta, 1, mask);
Russell King4b0ef3b2005-06-28 13:49:16 +0100627}
628
629void flush_tlb_kernel_page(unsigned long kaddr)
630{
631 struct tlb_args ta;
632
633 ta.ta_start = kaddr;
634
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200635 on_each_cpu(ipi_flush_tlb_kernel_page, &ta, 1);
Russell King4b0ef3b2005-06-28 13:49:16 +0100636}
637
638void flush_tlb_range(struct vm_area_struct *vma,
639 unsigned long start, unsigned long end)
640{
641 cpumask_t mask = vma->vm_mm->cpu_vm_mask;
642 struct tlb_args ta;
643
644 ta.ta_vma = vma;
645 ta.ta_start = start;
646 ta.ta_end = end;
647
Jens Axboef6dd9fa2008-06-10 20:48:30 +0200648 on_each_cpu_mask(ipi_flush_tlb_range, &ta, 1, mask);
Russell King4b0ef3b2005-06-28 13:49:16 +0100649}
650
651void flush_tlb_kernel_range(unsigned long start, unsigned long end)
652{
653 struct tlb_args ta;
654
655 ta.ta_start = start;
656 ta.ta_end = end;
657
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200658 on_each_cpu(ipi_flush_tlb_kernel_range, &ta, 1);
Russell King4b0ef3b2005-06-28 13:49:16 +0100659}