1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#include <linux/init.h>
17#include <linux/errno.h>
18#include <linux/delay.h>
19#include <linux/device.h>
20#include <linux/jiffies.h>
21#include <linux/smp.h>
22#include <linux/io.h>
23
24#include <asm/cacheflush.h>
25#include <asm/hardware/gic.h>
26#include <asm/smp_scu.h>
27#include <asm/unified.h>
28
29#include <mach/hardware.h>
30#include <mach/regs-clock.h>
31#include <mach/regs-pmu.h>
32
33extern void exynos4_secondary_startup(void);
34
35#define CPU1_BOOT_REG S5P_VA_SYSRAM
36
37
38
39
40
41
42volatile int __cpuinitdata pen_release = -1;
43
44
45
46
47
48
49static void 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 (void __iomem *)(S5P_VA_SCU);
60}
61
62static DEFINE_SPINLOCK(boot_lock);
63
64static void __cpuinit exynos4_gic_secondary_init(void)
65{
66 void __iomem *dist_base = S5P_VA_GIC_DIST +
67 (EXYNOS4_GIC_BANK_OFFSET * smp_processor_id());
68 void __iomem *cpu_base = S5P_VA_GIC_CPU +
69 (EXYNOS4_GIC_BANK_OFFSET * smp_processor_id());
70 int i;
71
72
73
74
75
76 __raw_writel(0xffff0000, dist_base + GIC_DIST_ENABLE_CLEAR);
77 __raw_writel(0x0000ffff, dist_base + GIC_DIST_ENABLE_SET);
78
79
80
81
82 for (i = 0; i < 32; i += 4)
83 __raw_writel(0xa0a0a0a0, dist_base + GIC_DIST_PRI + i * 4 / 4);
84
85 __raw_writel(0xf0, cpu_base + GIC_CPU_PRIMASK);
86 __raw_writel(1, cpu_base + GIC_CPU_CTRL);
87}
88
89void __cpuinit platform_secondary_init(unsigned int cpu)
90{
91
92
93
94
95
96 exynos4_gic_secondary_init();
97
98
99
100
101
102 write_pen_release(-1);
103
104
105
106
107 spin_lock(&boot_lock);
108 spin_unlock(&boot_lock);
109
110 set_cpu_online(cpu, true);
111}
112
113int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
114{
115 unsigned long timeout;
116
117
118
119
120
121 spin_lock(&boot_lock);
122
123
124
125
126
127
128
129
130
131 write_pen_release(cpu);
132
133 if (!(__raw_readl(S5P_ARM_CORE1_STATUS) & S5P_CORE_LOCAL_PWR_EN)) {
134 __raw_writel(S5P_CORE_LOCAL_PWR_EN,
135 S5P_ARM_CORE1_CONFIGURATION);
136
137 timeout = 10;
138
139
140 while ((__raw_readl(S5P_ARM_CORE1_STATUS)
141 & S5P_CORE_LOCAL_PWR_EN) != S5P_CORE_LOCAL_PWR_EN) {
142 if (timeout-- == 0)
143 break;
144
145 mdelay(1);
146 }
147
148 if (timeout == 0) {
149 printk(KERN_ERR "cpu1 power enable failed");
150 spin_unlock(&boot_lock);
151 return -ETIMEDOUT;
152 }
153 }
154
155
156
157
158
159
160 timeout = jiffies + (1 * HZ);
161 while (time_before(jiffies, timeout)) {
162 smp_rmb();
163
164 __raw_writel(BSYM(virt_to_phys(exynos4_secondary_startup)),
165 CPU1_BOOT_REG);
166 gic_raise_softirq(cpumask_of(cpu), 1);
167
168 if (pen_release == -1)
169 break;
170
171 udelay(10);
172 }
173
174
175
176
177
178 spin_unlock(&boot_lock);
179
180 return pen_release != -1 ? -ENOSYS : 0;
181}
182
183
184
185
186
187
188void __init smp_init_cpus(void)
189{
190 void __iomem *scu_base = scu_base_addr();
191 unsigned int i, ncores;
192
193 ncores = scu_base ? scu_get_core_count(scu_base) : 1;
194
195
196 if (ncores > NR_CPUS) {
197 printk(KERN_WARNING
198 "EXYNOS4: no. of cores (%d) greater than configured "
199 "maximum of %d - clipping\n",
200 ncores, NR_CPUS);
201 ncores = NR_CPUS;
202 }
203
204 for (i = 0; i < ncores; i++)
205 set_cpu_possible(i, true);
206
207 set_smp_cross_call(gic_raise_softirq);
208}
209
210void __init platform_smp_prepare_cpus(unsigned int max_cpus)
211{
212
213 scu_enable(scu_base_addr());
214
215
216
217
218
219
220
221 __raw_writel(BSYM(virt_to_phys(exynos4_secondary_startup)), S5P_VA_SYSRAM);
222}
223