blob: 2ff1acaf2be71757559c629b906a0b6f7aa99e67 [file] [log] [blame]
Russell King862184f2005-11-07 21:05:42 +00001/*
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>
16
17#include <asm/cacheflush.h>
Russell King862184f2005-11-07 21:05:42 +000018#include <asm/hardware.h>
Russell Kingce07d902005-11-16 14:38:19 +000019#include <asm/io.h>
Catalin Marinas7dd19e72008-02-04 17:39:00 +010020#include <asm/mach-types.h>
Russell King862184f2005-11-07 21:05:42 +000021
Catalin Marinasb7b0ba92008-04-18 22:43:08 +010022#include <asm/arch/board-eb.h>
23#include <asm/arch/scu.h>
24
Russell King862184f2005-11-07 21:05:42 +000025extern void realview_secondary_startup(void);
26
27/*
28 * control for which core is the next to come out of the secondary
29 * boot "holding pen"
30 */
31volatile int __cpuinitdata pen_release = -1;
32
33static unsigned int __init get_core_count(void)
34{
35 unsigned int ncores;
Catalin Marinasb7b0ba92008-04-18 22:43:08 +010036 void __iomem *scu_base = 0;
Russell King862184f2005-11-07 21:05:42 +000037
Catalin Marinasb7b0ba92008-04-18 22:43:08 +010038 if (machine_is_realview_eb() && core_tile_eb11mp())
39 scu_base = __io_address(REALVIEW_EB11MP_SCU_BASE);
40
41 if (scu_base) {
42 ncores = __raw_readl(scu_base + SCU_CONFIG);
Catalin Marinas7dd19e72008-02-04 17:39:00 +010043 ncores = (ncores & 0x03) + 1;
44 } else
45 ncores = 1;
Russell King862184f2005-11-07 21:05:42 +000046
Catalin Marinas7dd19e72008-02-04 17:39:00 +010047 return ncores;
Russell King862184f2005-11-07 21:05:42 +000048}
49
Catalin Marinasb7b0ba92008-04-18 22:43:08 +010050/*
51 * Setup the SCU
52 */
53static void scu_enable(void)
54{
55 u32 scu_ctrl;
56 void __iomem *scu_base;
57
58 if (machine_is_realview_eb() && core_tile_eb11mp())
59 scu_base = __io_address(REALVIEW_EB11MP_SCU_BASE);
60 else
61 BUG();
62
63 scu_ctrl = __raw_readl(scu_base + SCU_CTRL);
64 scu_ctrl |= 1;
65 __raw_writel(scu_ctrl, scu_base + SCU_CTRL);
66}
67
Russell King862184f2005-11-07 21:05:42 +000068static DEFINE_SPINLOCK(boot_lock);
69
70void __cpuinit platform_secondary_init(unsigned int cpu)
71{
72 /*
73 * the primary core may have used a "cross call" soft interrupt
74 * to get this processor out of WFI in the BootMonitor - make
75 * sure that we are no longer being sent this soft interrupt
76 */
77 smp_cross_call_done(cpumask_of_cpu(cpu));
78
79 /*
80 * if any interrupts are already enabled for the primary
81 * core (e.g. timer irq), then they will not have been enabled
82 * for us: do so
83 */
Catalin Marinas356cb472008-02-04 17:34:58 +010084 gic_cpu_init(0, __io_address(REALVIEW_EB11MP_GIC_CPU_BASE));
Russell King862184f2005-11-07 21:05:42 +000085
86 /*
87 * let the primary processor know we're out of the
88 * pen, then head off into the C entry point
89 */
90 pen_release = -1;
Catalin Marinas0e0ba762007-02-15 19:05:29 +010091 smp_wmb();
Russell King862184f2005-11-07 21:05:42 +000092
93 /*
94 * Synchronise with the boot thread.
95 */
96 spin_lock(&boot_lock);
97 spin_unlock(&boot_lock);
98}
99
100int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
101{
102 unsigned long timeout;
103
104 /*
105 * set synchronisation state between this boot processor
106 * and the secondary one
107 */
108 spin_lock(&boot_lock);
109
110 /*
111 * The secondary processor is waiting to be released from
112 * the holding pen - release it, then wait for it to flag
113 * that it has been released by resetting pen_release.
114 *
115 * Note that "pen_release" is the hardware CPU ID, whereas
116 * "cpu" is Linux's internal ID.
117 */
118 pen_release = cpu;
119 flush_cache_all();
120
121 /*
122 * XXX
123 *
124 * This is a later addition to the booting protocol: the
125 * bootMonitor now puts secondary cores into WFI, so
126 * poke_milo() no longer gets the cores moving; we need
127 * to send a soft interrupt to wake the secondary core.
128 * Use smp_cross_call() for this, since there's little
129 * point duplicating the code here
130 */
131 smp_cross_call(cpumask_of_cpu(cpu));
132
133 timeout = jiffies + (1 * HZ);
134 while (time_before(jiffies, timeout)) {
Catalin Marinas0e0ba762007-02-15 19:05:29 +0100135 smp_rmb();
Russell King862184f2005-11-07 21:05:42 +0000136 if (pen_release == -1)
137 break;
138
139 udelay(10);
140 }
141
142 /*
143 * now the secondary core is starting up let it run its
144 * calibrations, then wait for it to finish
145 */
146 spin_unlock(&boot_lock);
147
148 return pen_release != -1 ? -ENOSYS : 0;
149}
150
151static void __init poke_milo(void)
152{
153 extern void secondary_startup(void);
154
155 /* nobody is to be released from the pen yet */
156 pen_release = -1;
157
158 /*
159 * write the address of secondary startup into the system-wide
160 * flags register, then clear the bottom two bits, which is what
161 * BootMonitor is waiting for
162 */
163#if 1
164#define REALVIEW_SYS_FLAGSS_OFFSET 0x30
165 __raw_writel(virt_to_phys(realview_secondary_startup),
Russell King5d430452005-11-08 10:44:46 +0000166 __io_address(REALVIEW_SYS_BASE) +
167 REALVIEW_SYS_FLAGSS_OFFSET);
Russell King862184f2005-11-07 21:05:42 +0000168#define REALVIEW_SYS_FLAGSC_OFFSET 0x34
169 __raw_writel(3,
Russell King5d430452005-11-08 10:44:46 +0000170 __io_address(REALVIEW_SYS_BASE) +
171 REALVIEW_SYS_FLAGSC_OFFSET);
Russell King862184f2005-11-07 21:05:42 +0000172#endif
173
174 mb();
175}
176
Russell King7bbb7942006-02-16 11:08:09 +0000177/*
178 * Initialise the CPU possible map early - this describes the CPUs
179 * which may be present or become present in the system.
180 */
181void __init smp_init_cpus(void)
182{
183 unsigned int i, ncores = get_core_count();
184
185 for (i = 0; i < ncores; i++)
186 cpu_set(i, cpu_possible_map);
187}
188
Russell King862184f2005-11-07 21:05:42 +0000189void __init smp_prepare_cpus(unsigned int max_cpus)
190{
191 unsigned int ncores = get_core_count();
192 unsigned int cpu = smp_processor_id();
193 int i;
194
195 /* sanity check */
196 if (ncores == 0) {
197 printk(KERN_ERR
198 "Realview: strange CM count of 0? Default to 1\n");
199
200 ncores = 1;
201 }
202
203 if (ncores > NR_CPUS) {
204 printk(KERN_WARNING
205 "Realview: no. of cores (%d) greater than configured "
206 "maximum of %d - clipping\n",
207 ncores, NR_CPUS);
208 ncores = NR_CPUS;
209 }
210
211 smp_store_cpu_info(cpu);
212
213 /*
214 * are we trying to boot more cores than exist?
215 */
216 if (max_cpus > ncores)
217 max_cpus = ncores;
218
Catalin Marinasa8655e82008-02-04 17:30:57 +0100219#ifdef CONFIG_LOCAL_TIMERS
Russell King862184f2005-11-07 21:05:42 +0000220 /*
Catalin Marinasa8655e82008-02-04 17:30:57 +0100221 * Enable the local timer for primary CPU. If the device is
222 * dummy (!CONFIG_LOCAL_TIMERS), it was already registers in
223 * realview_timer_init
Russell King2a98beb2005-11-09 10:50:29 +0000224 */
Catalin Marinas7dd19e72008-02-04 17:39:00 +0100225 if (machine_is_realview_eb() && core_tile_eb11mp())
226 local_timer_setup(cpu);
Catalin Marinasa8655e82008-02-04 17:30:57 +0100227#endif
Russell King2a98beb2005-11-09 10:50:29 +0000228
229 /*
Russell King7bbb7942006-02-16 11:08:09 +0000230 * Initialise the present map, which describes the set of CPUs
231 * actually populated at the present time.
Russell King862184f2005-11-07 21:05:42 +0000232 */
Russell King7bbb7942006-02-16 11:08:09 +0000233 for (i = 0; i < max_cpus; i++)
Russell King862184f2005-11-07 21:05:42 +0000234 cpu_set(i, cpu_present_map);
Russell King862184f2005-11-07 21:05:42 +0000235
236 /*
Catalin Marinasb7b0ba92008-04-18 22:43:08 +0100237 * Initialise the SCU if there are more than one CPU and let
238 * them know where to start. Note that, on modern versions of
239 * MILO, the "poke" doesn't actually do anything until each
240 * individual core is sent a soft interrupt to get it out of
241 * WFI
Russell King862184f2005-11-07 21:05:42 +0000242 */
Catalin Marinasb7b0ba92008-04-18 22:43:08 +0100243 if (max_cpus > 1) {
244 scu_enable();
Russell King862184f2005-11-07 21:05:42 +0000245 poke_milo();
Catalin Marinasb7b0ba92008-04-18 22:43:08 +0100246 }
Russell King862184f2005-11-07 21:05:42 +0000247}