ipv4: Minor logic clean-up in ipv4_mtu
[linux-2.6/cjktty.git] / arch / arm / mach-spear13xx / platsmp.c
blobf5d07f2663d705cac91da67ea6d65d5273bed343
1 /*
2 * arch/arm/mach-spear13xx/platsmp.c
4 * based upon linux/arch/arm/mach-realview/platsmp.c
6 * Copyright (C) 2012 ST Microelectronics Ltd.
7 * Shiraz Hashim <shiraz.hashim@st.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/delay.h>
15 #include <linux/jiffies.h>
16 #include <linux/io.h>
17 #include <linux/smp.h>
18 #include <asm/cacheflush.h>
19 #include <asm/hardware/gic.h>
20 #include <asm/smp_scu.h>
21 #include <mach/spear.h>
24 * control for which core is the next to come out of the secondary
25 * boot "holding pen"
27 volatile int __cpuinitdata pen_release = -1;
28 static DEFINE_SPINLOCK(boot_lock);
30 static void __iomem *scu_base = IOMEM(VA_SCU_BASE);
31 extern void spear13xx_secondary_startup(void);
33 void __cpuinit platform_secondary_init(unsigned int cpu)
36 * if any interrupts are already enabled for the primary
37 * core (e.g. timer irq), then they will not have been enabled
38 * for us: do so
40 gic_secondary_init(0);
43 * let the primary processor know we're out of the
44 * pen, then head off into the C entry point
46 pen_release = -1;
47 smp_wmb();
50 * Synchronise with the boot thread.
52 spin_lock(&boot_lock);
53 spin_unlock(&boot_lock);
56 int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
58 unsigned long timeout;
61 * set synchronisation state between this boot processor
62 * and the secondary one
64 spin_lock(&boot_lock);
67 * The secondary processor is waiting to be released from
68 * the holding pen - release it, then wait for it to flag
69 * that it has been released by resetting pen_release.
71 * Note that "pen_release" is the hardware CPU ID, whereas
72 * "cpu" is Linux's internal ID.
74 pen_release = cpu;
75 flush_cache_all();
76 outer_flush_all();
78 timeout = jiffies + (1 * HZ);
79 while (time_before(jiffies, timeout)) {
80 smp_rmb();
81 if (pen_release == -1)
82 break;
84 udelay(10);
88 * now the secondary core is starting up let it run its
89 * calibrations, then wait for it to finish
91 spin_unlock(&boot_lock);
93 return pen_release != -1 ? -ENOSYS : 0;
97 * Initialise the CPU possible map early - this describes the CPUs
98 * which may be present or become present in the system.
100 void __init smp_init_cpus(void)
102 unsigned int i, ncores = scu_get_core_count(scu_base);
104 if (ncores > nr_cpu_ids) {
105 pr_warn("SMP: %u cores greater than maximum (%u), clipping\n",
106 ncores, nr_cpu_ids);
107 ncores = nr_cpu_ids;
110 for (i = 0; i < ncores; i++)
111 set_cpu_possible(i, true);
113 set_smp_cross_call(gic_raise_softirq);
116 void __init platform_smp_prepare_cpus(unsigned int max_cpus)
119 scu_enable(scu_base);
122 * Write the address of secondary startup into the system-wide location
123 * (presently it is in SRAM). The BootMonitor waits until it receives a
124 * soft interrupt, and then the secondary CPU branches to this address.
126 __raw_writel(virt_to_phys(spear13xx_secondary_startup), SYS_LOCATION);