RealView: Use only the shadow mapping of ARM11MPCore local timers
[deliverable/linux.git] / arch / arm / mach-realview / platsmp.c
CommitLineData
862184fe
RK
1/*
2 * linux/arch/arm/mach-realview/platsmp.c
3 *
4 * Copyright (C) 2002 ARM Ltd.
5 * All Rights Reserved
6 *
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.
10 */
11#include <linux/init.h>
12#include <linux/errno.h>
13#include <linux/delay.h>
14#include <linux/device.h>
15#include <linux/smp.h>
fced80c7 16#include <linux/io.h>
862184fe
RK
17
18#include <asm/cacheflush.h>
a09e64fb 19#include <mach/hardware.h>
7dd19e75 20#include <asm/mach-types.h>
862184fe 21
a09e64fb
RK
22#include <mach/board-eb.h>
23#include <mach/board-pb11mp.h>
24#include <mach/scu.h>
b7b0ba94 25
862184fe
RK
26extern void realview_secondary_startup(void);
27
28/*
29 * control for which core is the next to come out of the secondary
30 * boot "holding pen"
31 */
32volatile int __cpuinitdata pen_release = -1;
33
34static unsigned int __init get_core_count(void)
35{
36 unsigned int ncores;
b7b0ba94
CM
37 void __iomem *scu_base = 0;
38
4c3ea371
JC
39 if (machine_is_realview_eb() &&
40 (core_tile_eb11mp() || core_tile_a9mp()))
b7b0ba94 41 scu_base = __io_address(REALVIEW_EB11MP_SCU_BASE);
e67172f5
CM
42 else if (machine_is_realview_pb11mp())
43 scu_base = __io_address(REALVIEW_TC11MP_SCU_BASE);
862184fe 44
b7b0ba94
CM
45 if (scu_base) {
46 ncores = __raw_readl(scu_base + SCU_CONFIG);
7dd19e75
CM
47 ncores = (ncores & 0x03) + 1;
48 } else
49 ncores = 1;
862184fe 50
7dd19e75 51 return ncores;
862184fe
RK
52}
53
b7b0ba94
CM
54/*
55 * Setup the SCU
56 */
57static void scu_enable(void)
58{
59 u32 scu_ctrl;
60 void __iomem *scu_base;
61
4c3ea371
JC
62 if (machine_is_realview_eb() &&
63 (core_tile_eb11mp() || core_tile_a9mp()))
b7b0ba94 64 scu_base = __io_address(REALVIEW_EB11MP_SCU_BASE);
e67172f5
CM
65 else if (machine_is_realview_pb11mp())
66 scu_base = __io_address(REALVIEW_TC11MP_SCU_BASE);
b7b0ba94
CM
67 else
68 BUG();
69
70 scu_ctrl = __raw_readl(scu_base + SCU_CTRL);
71 scu_ctrl |= 1;
72 __raw_writel(scu_ctrl, scu_base + SCU_CTRL);
73}
74
862184fe
RK
75static DEFINE_SPINLOCK(boot_lock);
76
77void __cpuinit platform_secondary_init(unsigned int cpu)
78{
08383ef2
CM
79 trace_hardirqs_off();
80
862184fe
RK
81 /*
82 * the primary core may have used a "cross call" soft interrupt
83 * to get this processor out of WFI in the BootMonitor - make
84 * sure that we are no longer being sent this soft interrupt
85 */
86 smp_cross_call_done(cpumask_of_cpu(cpu));
87
88 /*
89 * if any interrupts are already enabled for the primary
90 * core (e.g. timer irq), then they will not have been enabled
91 * for us: do so
92 */
4c3ea371
JC
93 if (machine_is_realview_eb() &&
94 (core_tile_eb11mp() || core_tile_a9mp()))
e67172f5
CM
95 gic_cpu_init(0, __io_address(REALVIEW_EB11MP_GIC_CPU_BASE));
96 else if (machine_is_realview_pb11mp())
97 gic_cpu_init(0, __io_address(REALVIEW_TC11MP_GIC_CPU_BASE));
862184fe
RK
98
99 /*
100 * let the primary processor know we're out of the
101 * pen, then head off into the C entry point
102 */
103 pen_release = -1;
0e0ba769 104 smp_wmb();
862184fe
RK
105
106 /*
107 * Synchronise with the boot thread.
108 */
109 spin_lock(&boot_lock);
110 spin_unlock(&boot_lock);
111}
112
113int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
114{
115 unsigned long timeout;
116
117 /*
118 * set synchronisation state between this boot processor
119 * and the secondary one
120 */
121 spin_lock(&boot_lock);
122
123 /*
124 * The secondary processor is waiting to be released from
125 * the holding pen - release it, then wait for it to flag
126 * that it has been released by resetting pen_release.
127 *
128 * Note that "pen_release" is the hardware CPU ID, whereas
129 * "cpu" is Linux's internal ID.
130 */
131 pen_release = cpu;
132 flush_cache_all();
133
134 /*
135 * XXX
136 *
137 * This is a later addition to the booting protocol: the
138 * bootMonitor now puts secondary cores into WFI, so
139 * poke_milo() no longer gets the cores moving; we need
140 * to send a soft interrupt to wake the secondary core.
141 * Use smp_cross_call() for this, since there's little
142 * point duplicating the code here
143 */
144 smp_cross_call(cpumask_of_cpu(cpu));
145
146 timeout = jiffies + (1 * HZ);
147 while (time_before(jiffies, timeout)) {
0e0ba769 148 smp_rmb();
862184fe
RK
149 if (pen_release == -1)
150 break;
151
152 udelay(10);
153 }
154
155 /*
156 * now the secondary core is starting up let it run its
157 * calibrations, then wait for it to finish
158 */
159 spin_unlock(&boot_lock);
160
161 return pen_release != -1 ? -ENOSYS : 0;
162}
163
164static void __init poke_milo(void)
165{
166 extern void secondary_startup(void);
167
168 /* nobody is to be released from the pen yet */
169 pen_release = -1;
170
171 /*
172 * write the address of secondary startup into the system-wide
173 * flags register, then clear the bottom two bits, which is what
174 * BootMonitor is waiting for
175 */
176#if 1
177#define REALVIEW_SYS_FLAGSS_OFFSET 0x30
178 __raw_writel(virt_to_phys(realview_secondary_startup),
5d43045b
RK
179 __io_address(REALVIEW_SYS_BASE) +
180 REALVIEW_SYS_FLAGSS_OFFSET);
862184fe
RK
181#define REALVIEW_SYS_FLAGSC_OFFSET 0x34
182 __raw_writel(3,
5d43045b
RK
183 __io_address(REALVIEW_SYS_BASE) +
184 REALVIEW_SYS_FLAGSC_OFFSET);
862184fe
RK
185#endif
186
187 mb();
188}
189
7bbb7940
RK
190/*
191 * Initialise the CPU possible map early - this describes the CPUs
192 * which may be present or become present in the system.
193 */
194void __init smp_init_cpus(void)
195{
196 unsigned int i, ncores = get_core_count();
197
198 for (i = 0; i < ncores; i++)
199 cpu_set(i, cpu_possible_map);
200}
201
862184fe
RK
202void __init smp_prepare_cpus(unsigned int max_cpus)
203{
204 unsigned int ncores = get_core_count();
205 unsigned int cpu = smp_processor_id();
206 int i;
207
208 /* sanity check */
209 if (ncores == 0) {
210 printk(KERN_ERR
211 "Realview: strange CM count of 0? Default to 1\n");
212
213 ncores = 1;
214 }
215
216 if (ncores > NR_CPUS) {
217 printk(KERN_WARNING
218 "Realview: no. of cores (%d) greater than configured "
219 "maximum of %d - clipping\n",
220 ncores, NR_CPUS);
221 ncores = NR_CPUS;
222 }
223
224 smp_store_cpu_info(cpu);
225
226 /*
227 * are we trying to boot more cores than exist?
228 */
229 if (max_cpus > ncores)
230 max_cpus = ncores;
231
a8655e83 232#ifdef CONFIG_LOCAL_TIMERS
2a98beb6 233 /*
a8655e83
CM
234 * Enable the local timer for primary CPU. If the device is
235 * dummy (!CONFIG_LOCAL_TIMERS), it was already registers in
236 * realview_timer_init
2a98beb6 237 */
4c3ea371
JC
238 if ((machine_is_realview_eb() &&
239 (core_tile_eb11mp() || core_tile_a9mp())) ||
e67172f5 240 machine_is_realview_pb11mp())
ebac6546 241 local_timer_setup();
a8655e83 242#endif
2a98beb6 243
862184fe 244 /*
7bbb7940
RK
245 * Initialise the present map, which describes the set of CPUs
246 * actually populated at the present time.
862184fe 247 */
7bbb7940 248 for (i = 0; i < max_cpus; i++)
862184fe 249 cpu_set(i, cpu_present_map);
862184fe
RK
250
251 /*
b7b0ba94
CM
252 * Initialise the SCU if there are more than one CPU and let
253 * them know where to start. Note that, on modern versions of
254 * MILO, the "poke" doesn't actually do anything until each
255 * individual core is sent a soft interrupt to get it out of
256 * WFI
862184fe 257 */
b7b0ba94
CM
258 if (max_cpus > 1) {
259 scu_enable();
862184fe 260 poke_milo();
b7b0ba94 261 }
862184fe 262}
This page took 0.307386 seconds and 5 git commands to generate.