blob: 458a288981cb50c15952491fdea969052021542e [file] [log] [blame]
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +01001/*
2 * Copyright (C) 2002 ARM Ltd.
3 * Copyright (C) 2008 STMicroelctronics.
4 * Copyright (C) 2009 ST-Ericsson.
5 * Author: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
6 *
7 * This file is based on arm realview platform
8 *
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.
12 */
13#include <linux/init.h>
14#include <linux/errno.h>
15#include <linux/delay.h>
16#include <linux/device.h>
17#include <linux/smp.h>
18#include <linux/io.h>
19
20#include <asm/cacheflush.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010021#include <asm/smp_scu.h>
22#include <mach/hardware.h>
23
24/*
25 * control for which core is the next to come out of the secondary
26 * boot "holding pen"
27 */
28volatile int __cpuinitdata pen_release = -1;
29
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010030static DEFINE_SPINLOCK(boot_lock);
31
32void __cpuinit platform_secondary_init(unsigned int cpu)
33{
34 trace_hardirqs_off();
35
36 /*
37 * if any interrupts are already enabled for the primary
38 * core (e.g. timer irq), then they will not have been enabled
39 * for us: do so
40 */
Rabin Vincent817412d2010-05-03 08:31:35 +010041 gic_cpu_init(0, __io_address(UX500_GIC_CPU_BASE));
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010042
43 /*
44 * let the primary processor know we're out of the
45 * pen, then head off into the C entry point
46 */
47 pen_release = -1;
48
49 /*
50 * Synchronise with the boot thread.
51 */
52 spin_lock(&boot_lock);
53 spin_unlock(&boot_lock);
54}
55
56int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
57{
58 unsigned long timeout;
59
60 /*
61 * set synchronisation state between this boot processor
62 * and the secondary one
63 */
64 spin_lock(&boot_lock);
65
66 /*
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.
70 */
71 pen_release = cpu;
Srinidhi Kasagar8e797a72010-04-03 19:10:45 +010072 __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release));
73 outer_clean_range(__pa(&pen_release), __pa(&pen_release) + 1);
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010074
Russell Kingad3b6992010-11-15 09:42:08 +000075 smp_cross_call(cpumask_of(cpu), 1);
Sundar Iyer9d704c02010-09-15 10:45:51 +010076
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010077 timeout = jiffies + (1 * HZ);
78 while (time_before(jiffies, timeout)) {
79 if (pen_release == -1)
80 break;
81 }
82
83 /*
84 * now the secondary core is starting up let it run its
85 * calibrations, then wait for it to finish
86 */
87 spin_unlock(&boot_lock);
88
89 return pen_release != -1 ? -ENOSYS : 0;
90}
91
92static void __init wakeup_secondary(void)
93{
94 /* nobody is to be released from the pen yet */
95 pen_release = -1;
96
97 /*
98 * write the address of secondary startup into the backup ram register
99 * at offset 0x1FF4, then write the magic number 0xA1FEED01 to the
100 * backup ram register at offset 0x1FF0, which is what boot rom code
101 * is waiting for. This would wake up the secondary core from WFE
102 */
103#define U8500_CPU1_JUMPADDR_OFFSET 0x1FF4
104 __raw_writel(virt_to_phys(u8500_secondary_startup),
Rabin Vincent817412d2010-05-03 08:31:35 +0100105 __io_address(UX500_BACKUPRAM0_BASE) +
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100106 U8500_CPU1_JUMPADDR_OFFSET);
107
108#define U8500_CPU1_WAKEMAGIC_OFFSET 0x1FF0
109 __raw_writel(0xA1FEED01,
Rabin Vincent817412d2010-05-03 08:31:35 +0100110 __io_address(UX500_BACKUPRAM0_BASE) +
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100111 U8500_CPU1_WAKEMAGIC_OFFSET);
112
113 /* make sure write buffer is drained */
114 mb();
115}
116
117/*
118 * Initialise the CPU possible map early - this describes the CPUs
119 * which may be present or become present in the system.
120 */
121void __init smp_init_cpus(void)
122{
Russell Kingfd778f02010-12-02 18:09:37 +0000123 unsigned int i, ncores;
124
125 ncores = scu_get_core_count(__io_address(UX500_SCU_BASE));
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100126
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100127 /* sanity check */
Russell Kingbbc3d142010-12-03 10:42:58 +0000128 if (ncores > NR_CPUS) {
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100129 printk(KERN_WARNING
130 "U8500: no. of cores (%d) greater than configured "
131 "maximum of %d - clipping\n",
Russell Kingbbc3d142010-12-03 10:42:58 +0000132 ncores, NR_CPUS);
133 ncores = NR_CPUS;
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100134 }
135
Russell Kingbbc3d142010-12-03 10:42:58 +0000136 for (i = 0; i < ncores; i++)
137 set_cpu_possible(i, true);
138}
139
Russell King05c74a62010-12-03 11:09:48 +0000140void __init platform_smp_prepare_cpus(unsigned int max_cpus)
Russell Kingbbc3d142010-12-03 10:42:58 +0000141{
Russell Kingbbc3d142010-12-03 10:42:58 +0000142 int i;
143
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100144 /*
145 * Initialise the present map, which describes the set of CPUs
146 * actually populated at the present time.
147 */
148 for (i = 0; i < max_cpus; i++)
149 set_cpu_present(i, true);
150
Russell King05c74a62010-12-03 11:09:48 +0000151 scu_enable(__io_address(UX500_SCU_BASE));
152 wakeup_secondary();
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100153}