blob: 23ca4543a24c7380a55dbecfd2e58839c47ab136 [file] [log] [blame]
Taniya Das137dc8e2011-12-02 14:50:00 +05301/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#include <linux/init.h>
14#include <linux/errno.h>
15#include <linux/delay.h>
16#include <linux/device.h>
17#include <linux/jiffies.h>
18#include <linux/smp.h>
19#include <linux/io.h>
Taniya Dase30a6b22012-03-20 11:37:45 +053020#include <linux/interrupt.h>
Taniya Das137dc8e2011-12-02 14:50:00 +053021
22#include <asm/cacheflush.h>
23#include <asm/hardware/gic.h>
24#include <asm/hardware/cache-l2x0.h>
25#include <asm/smp_scu.h>
26#include <asm/unified.h>
27#include <mach/msm_iomap.h>
28#include <mach/smp.h>
29#include "pm.h"
30
31#define MSM_CORE1_RESET 0xA8600590
Taniya Das63da6462012-02-27 17:22:11 +053032#define MSM_CORE1_STATUS_MSK 0x02800000
33
Taniya Das137dc8e2011-12-02 14:50:00 +053034/*
35 * control for which core is the next to come out of the secondary
36 * boot "holding pen"
37 */
38int pen_release = -1;
39
40static bool cold_boot_done;
41
42static uint32_t *msm8625_boot_vector;
43
44/*
45 * Write pen_release in a way that is guaranteed to be visible to all
46 * observers, irrespective of whether they're taking part in coherency
47 * or not. This is necessary for the hotplug code to work reliably.
48 */
49static void __cpuinit write_pen_release(int val)
50{
51 pen_release = val;
52 smp_wmb();
53 __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release));
54 outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1));
55}
56
57static void __iomem *scu_base_addr(void)
58{
59 return MSM_SCU_BASE;
60}
61
62static DEFINE_SPINLOCK(boot_lock);
Taniya Dase30a6b22012-03-20 11:37:45 +053063static DEFINE_RAW_SPINLOCK(irq_controller_lock);
64
65/*
66 * MP_CORE_IPC will be used to generate interrupt and can be used by either
67 * of core.
68 * To bring core1 out of GDFS we need to raise the SPI using the MP_CORE_IPC.
69 */
70static void raise_clear_spi(unsigned int cpu, bool set)
71{
72 int value;
73
74 value = __raw_readl(MSM_CSR_BASE + 0x54);
75 if (set)
76 __raw_writel(value | BIT(cpu), MSM_CSR_BASE + 0x54);
77 else
78 __raw_writel(value & ~BIT(cpu), MSM_CSR_BASE + 0x54);
79 mb();
80}
81
82/*
83 * Configure the GIC after we come out of power collapse.
84 * This function will configure some of the GIC registers so as to prepare the
85 * core1 to receive an SPI(ACSR_MP_CORE_IPC1, (32 + 8)), which will bring
86 * core1 out of GDFS.
87 */
88static void core1_gic_configure_and_raise(void)
89{
90 unsigned int value = 0;
91
92 raw_spin_lock(&irq_controller_lock);
93
94 value = __raw_readl(MSM_QGIC_DIST_BASE + GIC_DIST_ACTIVE_BIT + 0x4);
95 value |= BIT(8);
96 __raw_writel(value, MSM_QGIC_DIST_BASE + GIC_DIST_ACTIVE_BIT + 0x4);
97 mb();
98
99 value = __raw_readl(MSM_QGIC_DIST_BASE + GIC_DIST_TARGET + 0x24);
100 value |= BIT(13);
101 __raw_writel(value, MSM_QGIC_DIST_BASE + GIC_DIST_TARGET + 0x24);
102 mb();
103
104 value = __raw_readl(MSM_QGIC_DIST_BASE + GIC_DIST_TARGET + 0x28);
105 value |= BIT(1);
106 __raw_writel(value, MSM_QGIC_DIST_BASE + GIC_DIST_TARGET + 0x28);
107 mb();
108
109 value = __raw_readl(MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET + 0x4);
110 value |= BIT(8);
111 __raw_writel(value, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET + 0x4);
112 mb();
113
114 value = __raw_readl(MSM_QGIC_DIST_BASE + GIC_DIST_PENDING_SET + 0x4);
115 value |= BIT(8);
116 __raw_writel(value, MSM_QGIC_DIST_BASE + GIC_DIST_PENDING_SET + 0x4);
117 mb();
118
119 raise_clear_spi(1, true);
120 raw_spin_unlock(&irq_controller_lock);
121}
122
Murali Nalajalaa30aad02012-04-17 16:20:14 +0530123static void clear_pending_spi(unsigned int irq)
Taniya Dase30a6b22012-03-20 11:37:45 +0530124{
Taniya Dase30a6b22012-03-20 11:37:45 +0530125 /* Clear the IRQ from the ENABLE_SET */
Taniya Dase30a6b22012-03-20 11:37:45 +0530126 local_irq_disable();
127 gic_clear_spi_pending(irq);
Taniya Dase30a6b22012-03-20 11:37:45 +0530128 local_irq_enable();
129}
Taniya Das137dc8e2011-12-02 14:50:00 +0530130
131void __cpuinit platform_secondary_init(unsigned int cpu)
132{
Murali Nalajalaa7efba12012-02-23 18:13:52 +0530133 pr_debug("CPU%u: Booted secondary processor\n", cpu);
134
135 WARN_ON(msm_platform_secondary_init(cpu));
136
Taniya Das137dc8e2011-12-02 14:50:00 +0530137 /*
138 * if any interrupts are already enabled for the primary
139 * core (e.g. timer irq), then they will not have been enabled
140 * for us: do so
141 */
142 gic_secondary_init(0);
143
144 /*
145 * let the primary processor know we're out of the
146 * pen, then head off into the C entry point
147 */
148 write_pen_release(-1);
149
Murali Nalajalaa30aad02012-04-17 16:20:14 +0530150 /* clear the IPC1(SPI-8) pending SPI */
151 if (power_collapsed) {
152 raise_clear_spi(1, false);
153 clear_pending_spi(MSM8625_INT_ACSR_MP_CORE_IPC1);
154 power_collapsed = 0;
155 }
156
Taniya Das137dc8e2011-12-02 14:50:00 +0530157 /*
158 * Synchronise with the boot thread.
159 */
160 spin_lock(&boot_lock);
161 spin_unlock(&boot_lock);
162}
163
Taniya Das63da6462012-02-27 17:22:11 +0530164static int __cpuinit msm8625_release_secondary(void)
165{
166 void __iomem *base_ptr;
167 int value = 0;
168 unsigned long timeout;
169
170 /*
171 * loop to ensure that the GHS_STATUS_CORE1 bit in the
172 * MPA5_STATUS_REG(0x3c) is set. The timeout for the while
173 * loop can be set as 20us as of now
174 */
175 timeout = jiffies + usecs_to_jiffies(20);
176 while (time_before(jiffies, timeout)) {
177 value = __raw_readl(MSM_CFG_CTL_BASE + 0x3c);
178 if ((value & MSM_CORE1_STATUS_MSK) ==
179 MSM_CORE1_STATUS_MSK)
180 break;
181 udelay(1);
182 }
183
184 if (!value) {
185 pr_err("Core 1 cannot be brought out of Reset!!!\n");
186 return -ENODEV;
187 }
188
189 base_ptr = ioremap_nocache(MSM_CORE1_RESET, SZ_4);
190 if (!base_ptr)
191 return -ENODEV;
192 /* Reset core 1 out of reset */
193 __raw_writel(0x0, base_ptr);
194 mb();
195
196 iounmap(base_ptr);
197
198 return 0;
199}
200
Taniya Das137dc8e2011-12-02 14:50:00 +0530201int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
202{
203 unsigned long timeout;
Taniya Das137dc8e2011-12-02 14:50:00 +0530204
205 if (cold_boot_done == false) {
Taniya Das63da6462012-02-27 17:22:11 +0530206 if (msm8625_release_secondary()) {
207 pr_err("Failed to release secondary core\n");
Taniya Das137dc8e2011-12-02 14:50:00 +0530208 return -ENODEV;
Taniya Das63da6462012-02-27 17:22:11 +0530209 }
Taniya Das137dc8e2011-12-02 14:50:00 +0530210 cold_boot_done = true;
Taniya Das137dc8e2011-12-02 14:50:00 +0530211 }
212
213 /*
214 * Set synchronisation state between this boot processor
215 * and the secondary one
216 */
217 spin_lock(&boot_lock);
218
219 /*
220 * This is really belt and braces; we hold unintended secondary
221 * CPUs in the holding pen until we're ready for them. However,
222 * since we haven't sent them a soft interrupt, they shouldn't
223 * be there.
224 */
225 write_pen_release(cpu);
226
227 /*
228 * Send the secondary CPU a soft interrupt, thereby causing
229 * the boot monitor to read the system wide flags register,
230 * and branch to the address found there.
Taniya Dase30a6b22012-03-20 11:37:45 +0530231 *
232 * power_collapsed is the flag which will be updated for Powercollapse.
233 * Once we are out of PC, as Core1 will be in the state of GDFS which
234 * needs to be brought out by raising an SPI.
Taniya Das137dc8e2011-12-02 14:50:00 +0530235 */
Taniya Dase30a6b22012-03-20 11:37:45 +0530236
237 if (power_collapsed)
238 core1_gic_configure_and_raise();
239 else
240 gic_raise_softirq(cpumask_of(cpu), 1);
Taniya Das137dc8e2011-12-02 14:50:00 +0530241
242 timeout = jiffies + (1 * HZ);
243 while (time_before(jiffies, timeout)) {
244 smp_rmb();
245 if (pen_release == -1)
246 break;
247
248 udelay(10);
249 }
250
251 /*
252 * now the secondary core is starting up let it run its
253 * calibrations, then wait for it to finish
254 */
255 spin_unlock(&boot_lock);
256
257 return 0;
258}
259
260/*
261 * Initialise the CPU possible map early - this describes the CPUs
262 * which may be present or become present in the system.
263 */
264void __init smp_init_cpus(void)
265{
266 void __iomem *scu_base = scu_base_addr();
267
268 unsigned int i, ncores;
269
270 ncores = scu_base ? scu_get_core_count(scu_base) : 1;
271
272 for (i = 0; i < ncores; i++)
273 set_cpu_possible(i, true);
274
275 set_smp_cross_call(gic_raise_softirq);
276}
277
278static void __init msm8625_boot_vector_init(uint32_t *boot_vector,
279 unsigned long entry)
280{
281 if (!boot_vector)
282 return;
283 msm8625_boot_vector = boot_vector;
284
285 msm8625_boot_vector[0] = 0xE51FF004; /* ldr pc, 4 */
286 msm8625_boot_vector[1] = entry;
287}
288
289void __init platform_smp_prepare_cpus(unsigned int max_cpus)
290{
291 int i, value;
Taniya Dasfe04d4f2012-03-14 11:13:21 +0530292 void __iomem *second_ptr;
Taniya Das137dc8e2011-12-02 14:50:00 +0530293
294 /*
295 * Initialise the present map, which describes the set of CPUs
296 * actually populated at the present time.
297 */
298 for (i = 0; i < max_cpus; i++)
299 set_cpu_present(i, true);
300
301 scu_enable(scu_base_addr());
302
303 /*
304 * Write the address of secondary startup into the
305 * boot remapper register. The secondary CPU branches to this address.
306 */
Taniya Dasfe04d4f2012-03-14 11:13:21 +0530307 __raw_writel(MSM8625_SECONDARY_PHYS, (MSM_CFG_CTL_BASE + 0x34));
Taniya Das137dc8e2011-12-02 14:50:00 +0530308 mb();
309
Taniya Dasfe04d4f2012-03-14 11:13:21 +0530310 second_ptr = ioremap_nocache(MSM8625_SECONDARY_PHYS, SZ_8);
311 if (!second_ptr) {
312 pr_err("failed to ioremap for secondary core\n");
313 return;
314 }
Taniya Das137dc8e2011-12-02 14:50:00 +0530315
Taniya Dasfe04d4f2012-03-14 11:13:21 +0530316 msm8625_boot_vector_init(second_ptr,
317 virt_to_phys(msm_secondary_startup));
318 iounmap(second_ptr);
Taniya Das137dc8e2011-12-02 14:50:00 +0530319
320 /* Enable boot remapper address: bit 26 for core1 */
321 value = __raw_readl(MSM_CFG_CTL_BASE + 0x30);
322 __raw_writel(value | (0x4 << 24), MSM_CFG_CTL_BASE + 0x30) ;
323 mb();
324}