2 * linux/arch/arm/kernel/smp.c
4 * Copyright (C) 2002 ARM Limited, All Rights Reserved.
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.
10 #include <linux/config.h>
11 #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>
20 #include <linux/cpu.h>
21 #include <linux/smp.h>
22 #include <linux/seq_file.h>
24 #include <asm/atomic.h>
25 #include <asm/cacheflush.h>
27 #include <asm/mmu_context.h>
28 #include <asm/pgtable.h>
29 #include <asm/pgalloc.h>
30 #include <asm/processor.h>
31 #include <asm/tlbflush.h>
32 #include <asm/ptrace.h>
35 * bitmask of present and online CPUs.
36 * The present bitmask indicates that the CPU is physically present.
37 * The online bitmask indicates that the CPU is up and running.
39 cpumask_t cpu_possible_map;
40 cpumask_t cpu_online_map;
43 * as from 2.5, kernels no longer have an init_tasks structure
44 * so we need some other way of telling a new secondary core
45 * where to place its SVC stack
47 struct secondary_data secondary_data;
50 * structures for inter-processor calls
51 * - A collection of single bit ipi messages.
55 unsigned long ipi_count;
59 static DEFINE_PER_CPU(struct ipi_data, ipi_data) = {
60 .lock = SPIN_LOCK_UNLOCKED,
70 struct smp_call_struct {
71 void (*func)(void *info);
78 static struct smp_call_struct * volatile smp_call_function_data;
79 static DEFINE_SPINLOCK(smp_call_function_lock);
81 int __cpuinit __cpu_up(unsigned int cpu)
83 struct cpuinfo_arm *ci = &per_cpu(cpu_data, cpu);
84 struct task_struct *idle = ci->idle;
90 * Spawn a new process manually, if not already done.
91 * Grab a pointer to its task struct so we can mess with it
94 idle = fork_idle(cpu);
96 printk(KERN_ERR "CPU%u: fork() failed\n", cpu);
103 * Allocate initial page tables to allow the new CPU to
104 * enable the MMU safely. This essentially means a set
105 * of our "standard" page tables, with the addition of
106 * a 1:1 mapping for the physical address of the kernel.
108 pgd = pgd_alloc(&init_mm);
109 pmd = pmd_offset(pgd, PHYS_OFFSET);
110 *pmd = __pmd((PHYS_OFFSET & PGDIR_MASK) |
111 PMD_TYPE_SECT | PMD_SECT_AP_WRITE);
114 * We need to tell the secondary core where to find
115 * its stack and the page tables.
117 secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
118 secondary_data.pgdir = virt_to_phys(pgd);
122 * Now bring the CPU into our world.
124 ret = boot_secondary(cpu, idle);
126 unsigned long timeout;
129 * CPU was successfully started, wait for it
130 * to come online or time out.
132 timeout = jiffies + HZ;
133 while (time_before(jiffies, timeout)) {
141 if (!cpu_online(cpu))
145 secondary_data.stack = NULL;
146 secondary_data.pgdir = 0;
148 *pmd_offset(pgd, PHYS_OFFSET) = __pmd(0);
152 printk(KERN_CRIT "CPU%u: processor failed to boot\n", cpu);
155 * FIXME: We need to clean up the new idle thread. --rmk
162 #ifdef CONFIG_HOTPLUG_CPU
164 * __cpu_disable runs on the processor to be shutdown.
166 int __cpuexit __cpu_disable(void)
168 unsigned int cpu = smp_processor_id();
169 struct task_struct *p;
172 ret = mach_cpu_disable(cpu);
177 * Take this CPU offline. Once we clear this, we can't return,
178 * and we must not schedule until we're ready to give up the cpu.
180 cpu_clear(cpu, cpu_online_map);
183 * OK - migrate IRQs away from this CPU
188 * Stop the local timer for this CPU.
190 local_timer_stop(cpu);
193 * Flush user cache and TLB mappings, and then remove this CPU
194 * from the vm mask set of all processes.
197 local_flush_tlb_all();
199 read_lock(&tasklist_lock);
200 for_each_process(p) {
202 cpu_clear(cpu, p->mm->cpu_vm_mask);
204 read_unlock(&tasklist_lock);
210 * called on the thread which is asking for a CPU to be shutdown -
211 * waits until shutdown has completed, or it is timed out.
213 void __cpuexit __cpu_die(unsigned int cpu)
215 if (!platform_cpu_kill(cpu))
216 printk("CPU%u: unable to kill\n", cpu);
220 * Called from the idle thread for the CPU which has been shutdown.
222 * Note that we disable IRQs here, but do not re-enable them
223 * before returning to the caller. This is also the behaviour
224 * of the other hotplug-cpu capable cores, so presumably coming
225 * out of idle fixes this.
227 void __cpuexit cpu_die(void)
229 unsigned int cpu = smp_processor_id();
235 * actual CPU shutdown procedure is at least platform (if not
238 platform_cpu_die(cpu);
241 * Do not return to the idle loop - jump back to the secondary
242 * cpu initialisation. There's some initialisation which needs
243 * to be repeated to undo the effects of taking the CPU offline.
245 __asm__("mov sp, %0\n"
246 " b secondary_start_kernel"
248 : "r" (task_stack_page(current) + THREAD_SIZE - 8));
250 #endif /* CONFIG_HOTPLUG_CPU */
253 * This is the secondary CPU boot entry. We're using this CPUs
254 * idle thread stack, but a set of temporary page tables.
256 asmlinkage void __cpuinit secondary_start_kernel(void)
258 struct mm_struct *mm = &init_mm;
259 unsigned int cpu = smp_processor_id();
261 printk("CPU%u: Booted secondary processor\n", cpu);
264 * All kernel threads share the same mm context; grab a
265 * reference and switch to it.
267 atomic_inc(&mm->mm_users);
268 atomic_inc(&mm->mm_count);
269 current->active_mm = mm;
270 cpu_set(cpu, mm->cpu_vm_mask);
271 cpu_switch_mm(mm->pgd, mm);
272 enter_lazy_tlb(mm, current);
273 local_flush_tlb_all();
279 * Give the platform a chance to do its own initialisation.
281 platform_secondary_init(cpu);
284 * Enable local interrupts.
291 smp_store_cpu_info(cpu);
294 * OK, now it's safe to let the boot CPU continue
296 cpu_set(cpu, cpu_online_map);
299 * Setup local timer for this CPU.
301 local_timer_setup(cpu);
304 * OK, it's off to the idle thread for us
310 * Called by both boot and secondaries to move global data into
311 * per-processor storage.
313 void __cpuinit smp_store_cpu_info(unsigned int cpuid)
315 struct cpuinfo_arm *cpu_info = &per_cpu(cpu_data, cpuid);
317 cpu_info->loops_per_jiffy = loops_per_jiffy;
320 void __init smp_cpus_done(unsigned int max_cpus)
323 unsigned long bogosum = 0;
325 for_each_online_cpu(cpu)
326 bogosum += per_cpu(cpu_data, cpu).loops_per_jiffy;
328 printk(KERN_INFO "SMP: Total of %d processors activated "
329 "(%lu.%02lu BogoMIPS).\n",
331 bogosum / (500000/HZ),
332 (bogosum / (5000/HZ)) % 100);
335 void __init smp_prepare_boot_cpu(void)
337 unsigned int cpu = smp_processor_id();
339 per_cpu(cpu_data, cpu).idle = current;
342 static void send_ipi_message(cpumask_t callmap, enum ipi_msg_type msg)
347 local_irq_save(flags);
349 for_each_cpu_mask(cpu, callmap) {
350 struct ipi_data *ipi = &per_cpu(ipi_data, cpu);
352 spin_lock(&ipi->lock);
353 ipi->bits |= 1 << msg;
354 spin_unlock(&ipi->lock);
358 * Call the platform specific cross-CPU call function.
360 smp_cross_call(callmap);
362 local_irq_restore(flags);
366 * You must not call this function with disabled interrupts, from a
367 * hardware interrupt handler, nor from a bottom half handler.
369 static int smp_call_function_on_cpu(void (*func)(void *info), void *info,
370 int retry, int wait, cpumask_t callmap)
372 struct smp_call_struct data;
373 unsigned long timeout;
380 cpu_clear(smp_processor_id(), callmap);
381 if (cpus_empty(callmap))
384 data.pending = callmap;
386 data.unfinished = callmap;
389 * try to get the mutex on smp_call_function_data
391 spin_lock(&smp_call_function_lock);
392 smp_call_function_data = &data;
394 send_ipi_message(callmap, IPI_CALL_FUNC);
396 timeout = jiffies + HZ;
397 while (!cpus_empty(data.pending) && time_before(jiffies, timeout))
403 if (!cpus_empty(data.pending)) {
405 * this may be causing our panic - report it
408 "CPU%u: smp_call_function timeout for %p(%p)\n"
409 " callmap %lx pending %lx, %swait\n",
410 smp_processor_id(), func, info, *cpus_addr(callmap),
411 *cpus_addr(data.pending), wait ? "" : "no ");
416 timeout = jiffies + (5 * HZ);
417 while (!cpus_empty(data.pending) && time_before(jiffies, timeout))
420 if (cpus_empty(data.pending))
421 printk(KERN_CRIT " RESOLVED\n");
423 printk(KERN_CRIT " STILL STUCK\n");
427 * whatever happened, we're done with the data, so release it
429 smp_call_function_data = NULL;
430 spin_unlock(&smp_call_function_lock);
432 if (!cpus_empty(data.pending)) {
438 while (!cpus_empty(data.unfinished))
445 int smp_call_function(void (*func)(void *info), void *info, int retry,
448 return smp_call_function_on_cpu(func, info, retry, wait,
452 void show_ipi_list(struct seq_file *p)
458 for_each_present_cpu(cpu)
459 seq_printf(p, " %10lu", per_cpu(ipi_data, cpu).ipi_count);
464 void show_local_irqs(struct seq_file *p)
468 seq_printf(p, "LOC: ");
470 for_each_present_cpu(cpu)
471 seq_printf(p, "%10u ", irq_stat[cpu].local_timer_irqs);
476 static void ipi_timer(struct pt_regs *regs)
478 int user = user_mode(regs);
481 profile_tick(CPU_PROFILING, regs);
482 update_process_times(user);
486 #ifdef CONFIG_LOCAL_TIMERS
487 asmlinkage void do_local_timer(struct pt_regs *regs)
489 int cpu = smp_processor_id();
491 if (local_timer_ack()) {
492 irq_stat[cpu].local_timer_irqs++;
499 * ipi_call_function - handle IPI from smp_call_function()
501 * Note that we copy data out of the cross-call structure and then
502 * let the caller know that we're here and have done with their data
504 static void ipi_call_function(unsigned int cpu)
506 struct smp_call_struct *data = smp_call_function_data;
507 void (*func)(void *info) = data->func;
508 void *info = data->info;
509 int wait = data->wait;
511 cpu_clear(cpu, data->pending);
516 cpu_clear(cpu, data->unfinished);
519 static DEFINE_SPINLOCK(stop_lock);
522 * ipi_cpu_stop - handle IPI from smp_send_stop()
524 static void ipi_cpu_stop(unsigned int cpu)
526 spin_lock(&stop_lock);
527 printk(KERN_CRIT "CPU%u: stopping\n", cpu);
529 spin_unlock(&stop_lock);
531 cpu_clear(cpu, cpu_online_map);
541 * Main handler for inter-processor interrupts
543 * For ARM, the ipimask now only identifies a single
544 * category of IPI (Bit 1 IPIs have been replaced by a
545 * different mechanism):
547 * Bit 0 - Inter-processor function call
549 asmlinkage void do_IPI(struct pt_regs *regs)
551 unsigned int cpu = smp_processor_id();
552 struct ipi_data *ipi = &per_cpu(ipi_data, cpu);
559 spin_lock(&ipi->lock);
562 spin_unlock(&ipi->lock);
570 nextmsg = msgs & -msgs;
572 nextmsg = ffz(~nextmsg);
581 * nothing more to do - eveything is
582 * done on the interrupt return path
587 ipi_call_function(cpu);
595 printk(KERN_CRIT "CPU%u: Unknown IPI message 0x%x\n",
603 void smp_send_reschedule(int cpu)
605 send_ipi_message(cpumask_of_cpu(cpu), IPI_RESCHEDULE);
608 void smp_send_timer(void)
610 cpumask_t mask = cpu_online_map;
611 cpu_clear(smp_processor_id(), mask);
612 send_ipi_message(mask, IPI_TIMER);
615 void smp_send_stop(void)
617 cpumask_t mask = cpu_online_map;
618 cpu_clear(smp_processor_id(), mask);
619 send_ipi_message(mask, IPI_CPU_STOP);
625 int __init setup_profiling_timer(unsigned int multiplier)
631 on_each_cpu_mask(void (*func)(void *), void *info, int retry, int wait,
638 ret = smp_call_function_on_cpu(func, info, retry, wait, mask);
639 if (cpu_isset(smp_processor_id(), mask))
647 /**********************************************************************/
653 struct vm_area_struct *ta_vma;
654 unsigned long ta_start;
655 unsigned long ta_end;
658 static inline void ipi_flush_tlb_all(void *ignored)
660 local_flush_tlb_all();
663 static inline void ipi_flush_tlb_mm(void *arg)
665 struct mm_struct *mm = (struct mm_struct *)arg;
667 local_flush_tlb_mm(mm);
670 static inline void ipi_flush_tlb_page(void *arg)
672 struct tlb_args *ta = (struct tlb_args *)arg;
674 local_flush_tlb_page(ta->ta_vma, ta->ta_start);
677 static inline void ipi_flush_tlb_kernel_page(void *arg)
679 struct tlb_args *ta = (struct tlb_args *)arg;
681 local_flush_tlb_kernel_page(ta->ta_start);
684 static inline void ipi_flush_tlb_range(void *arg)
686 struct tlb_args *ta = (struct tlb_args *)arg;
688 local_flush_tlb_range(ta->ta_vma, ta->ta_start, ta->ta_end);
691 static inline void ipi_flush_tlb_kernel_range(void *arg)
693 struct tlb_args *ta = (struct tlb_args *)arg;
695 local_flush_tlb_kernel_range(ta->ta_start, ta->ta_end);
698 void flush_tlb_all(void)
700 on_each_cpu(ipi_flush_tlb_all, NULL, 1, 1);
703 void flush_tlb_mm(struct mm_struct *mm)
705 cpumask_t mask = mm->cpu_vm_mask;
707 on_each_cpu_mask(ipi_flush_tlb_mm, mm, 1, 1, mask);
710 void flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
712 cpumask_t mask = vma->vm_mm->cpu_vm_mask;
718 on_each_cpu_mask(ipi_flush_tlb_page, &ta, 1, 1, mask);
721 void flush_tlb_kernel_page(unsigned long kaddr)
727 on_each_cpu(ipi_flush_tlb_kernel_page, &ta, 1, 1);
730 void flush_tlb_range(struct vm_area_struct *vma,
731 unsigned long start, unsigned long end)
733 cpumask_t mask = vma->vm_mm->cpu_vm_mask;
740 on_each_cpu_mask(ipi_flush_tlb_range, &ta, 1, 1, mask);
743 void flush_tlb_kernel_range(unsigned long start, unsigned long end)
750 on_each_cpu(ipi_flush_tlb_kernel_range, &ta, 1, 1);