2 * linux/arch/arm/mach-vexpress/platsmp.c
4 * Copyright (C) 2002 ARM Ltd.
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>
19 #include <asm/cacheflush.h>
20 #include <asm/localtimer.h>
21 #include <asm/smp_scu.h>
22 #include <asm/unified.h>
24 #include <mach/ct-ca9x4.h>
25 #include <mach/motherboard.h>
26 #define V2M_PA_CS7 0x10000000
30 extern void vexpress_secondary_startup(void);
33 * control for which core is the next to come out of the secondary
36 volatile int __cpuinitdata pen_release
= -1;
38 static void __iomem
*scu_base_addr(void)
40 return MMIO_P2V(A9_MPCORE_SCU
);
43 static DEFINE_SPINLOCK(boot_lock
);
45 void __cpuinit
platform_secondary_init(unsigned int cpu
)
50 * if any interrupts are already enabled for the primary
51 * core (e.g. timer irq), then they will not have been enabled
54 gic_cpu_init(0, gic_cpu_base_addr
);
57 * let the primary processor know we're out of the
58 * pen, then head off into the C entry point
64 * Synchronise with the boot thread.
66 spin_lock(&boot_lock
);
67 spin_unlock(&boot_lock
);
70 int __cpuinit
boot_secondary(unsigned int cpu
, struct task_struct
*idle
)
72 unsigned long timeout
;
75 * Set synchronisation state between this boot processor
76 * and the secondary one
78 spin_lock(&boot_lock
);
81 * This is really belt and braces; we hold unintended secondary
82 * CPUs in the holding pen until we're ready for them. However,
83 * since we haven't sent them a soft interrupt, they shouldn't
87 __cpuc_flush_dcache_area((void *)&pen_release
, sizeof(pen_release
));
88 outer_clean_range(__pa(&pen_release
), __pa(&pen_release
+ 1));
91 * Send the secondary CPU a soft interrupt, thereby causing
92 * the boot monitor to read the system wide flags register,
93 * and branch to the address found there.
95 smp_cross_call(cpumask_of(cpu
));
97 timeout
= jiffies
+ (1 * HZ
);
98 while (time_before(jiffies
, timeout
)) {
100 if (pen_release
== -1)
107 * now the secondary core is starting up let it run its
108 * calibrations, then wait for it to finish
110 spin_unlock(&boot_lock
);
112 return pen_release
!= -1 ? -ENOSYS
: 0;
116 * Initialise the CPU possible map early - this describes the CPUs
117 * which may be present or become present in the system.
119 void __init
smp_init_cpus(void)
121 void __iomem
*scu_base
= scu_base_addr();
122 unsigned int i
, ncores
;
124 ncores
= scu_base
? scu_get_core_count(scu_base
) : 1;
129 "vexpress: strange CM count of 0? Default to 1\n");
134 if (ncores
> NR_CPUS
) {
136 "vexpress: no. of cores (%d) greater than configured "
137 "maximum of %d - clipping\n",
142 for (i
= 0; i
< ncores
; i
++)
143 set_cpu_possible(i
, true);
146 void __init
smp_prepare_cpus(unsigned int max_cpus
)
148 unsigned int ncores
= num_possible_cpus();
149 unsigned int cpu
= smp_processor_id();
152 smp_store_cpu_info(cpu
);
155 * are we trying to boot more cores than exist?
157 if (max_cpus
> ncores
)
161 * Initialise the present map, which describes the set of CPUs
162 * actually populated at the present time.
164 for (i
= 0; i
< max_cpus
; i
++)
165 set_cpu_present(i
, true);
168 * Initialise the SCU if there are more than one CPU and let
169 * them know where to start.
173 * Enable the local timer or broadcast device for the
174 * boot CPU, but only if we have more than one CPU.
176 percpu_timer_setup();
178 scu_enable(scu_base_addr());
181 * Write the address of secondary startup into the
182 * system-wide flags register. The boot monitor waits
183 * until it receives a soft interrupt, and then the
184 * secondary CPU branches to this address.
186 writel(~0, MMIO_P2V(V2M_SYS_FLAGSCLR
));
187 writel(BSYM(virt_to_phys(vexpress_secondary_startup
)),
188 MMIO_P2V(V2M_SYS_FLAGSSET
));