Merge tag 'v3.3.7' into 3.3/master
[zen-stable.git] / arch / arm / plat-versatile / platsmp.c
blob49c7db48c7f13d21b5211f1900ff99d639c4df8f
1 /*
2 * linux/arch/arm/plat-versatile/platsmp.c
4 * Copyright (C) 2002 ARM Ltd.
5 * All Rights Reserved
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/init.h>
12 #include <linux/errno.h>
13 #include <linux/delay.h>
14 #include <linux/device.h>
15 #include <linux/jiffies.h>
16 #include <linux/smp.h>
18 #include <asm/cacheflush.h>
19 #include <asm/smp_plat.h>
20 #include <asm/hardware/gic.h>
23 * control for which core is the next to come out of the secondary
24 * boot "holding pen"
26 volatile int __cpuinitdata pen_release = -1;
29 * Write pen_release in a way that is guaranteed to be visible to all
30 * observers, irrespective of whether they're taking part in coherency
31 * or not. This is necessary for the hotplug code to work reliably.
33 static void __cpuinit write_pen_release(int val)
35 pen_release = val;
36 smp_wmb();
37 __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release));
38 outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1));
41 static DEFINE_SPINLOCK(boot_lock);
43 void __cpuinit platform_secondary_init(unsigned int cpu)
46 * if any interrupts are already enabled for the primary
47 * core (e.g. timer irq), then they will not have been enabled
48 * for us: do so
50 gic_secondary_init(0);
53 * let the primary processor know we're out of the
54 * pen, then head off into the C entry point
56 write_pen_release(-1);
59 * Synchronise with the boot thread.
61 spin_lock(&boot_lock);
62 spin_unlock(&boot_lock);
65 int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
67 unsigned long timeout;
70 * Set synchronisation state between this boot processor
71 * and the secondary one
73 spin_lock(&boot_lock);
76 * This is really belt and braces; we hold unintended secondary
77 * CPUs in the holding pen until we're ready for them. However,
78 * since we haven't sent them a soft interrupt, they shouldn't
79 * be there.
81 write_pen_release(cpu_logical_map(cpu));
84 * Send the secondary CPU a soft interrupt, thereby causing
85 * the boot monitor to read the system wide flags register,
86 * and branch to the address found there.
88 gic_raise_softirq(cpumask_of(cpu), 1);
90 timeout = jiffies + (1 * HZ);
91 while (time_before(jiffies, timeout)) {
92 smp_rmb();
93 if (pen_release == -1)
94 break;
96 udelay(10);
100 * now the secondary core is starting up let it run its
101 * calibrations, then wait for it to finish
103 spin_unlock(&boot_lock);
105 return pen_release != -1 ? -ENOSYS : 0;