Merge branch 'next/fixes-non-critical' into next/cleanup
[cascardo/linux.git] / arch / arm / mach-exynos / platsmp.c
1  /*
2  * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
3  *              http://www.samsung.com
4  *
5  * Cloned from linux/arch/arm/mach-vexpress/platsmp.c
6  *
7  *  Copyright (C) 2002 ARM Ltd.
8  *  All Rights Reserved
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13 */
14
15 #include <linux/init.h>
16 #include <linux/errno.h>
17 #include <linux/delay.h>
18 #include <linux/device.h>
19 #include <linux/jiffies.h>
20 #include <linux/smp.h>
21 #include <linux/io.h>
22 #include <linux/of_address.h>
23
24 #include <asm/cacheflush.h>
25 #include <asm/smp_plat.h>
26 #include <asm/smp_scu.h>
27 #include <asm/firmware.h>
28
29 #include "common.h"
30 #include "regs-pmu.h"
31
32 extern void exynos4_secondary_startup(void);
33
34 /**
35  * exynos_core_power_down : power down the specified cpu
36  * @cpu : the cpu to power down
37  *
38  * Power down the specified cpu. The sequence must be finished by a
39  * call to cpu_do_idle()
40  *
41  */
42 void exynos_cpu_power_down(int cpu)
43 {
44         __raw_writel(0, EXYNOS_ARM_CORE_CONFIGURATION(cpu));
45 }
46
47 /**
48  * exynos_cpu_power_up : power up the specified cpu
49  * @cpu : the cpu to power up
50  *
51  * Power up the specified cpu
52  */
53 void exynos_cpu_power_up(int cpu)
54 {
55         __raw_writel(S5P_CORE_LOCAL_PWR_EN,
56                      EXYNOS_ARM_CORE_CONFIGURATION(cpu));
57 }
58
59 /**
60  * exynos_cpu_power_state : returns the power state of the cpu
61  * @cpu : the cpu to retrieve the power state from
62  *
63  */
64 int exynos_cpu_power_state(int cpu)
65 {
66         return (__raw_readl(EXYNOS_ARM_CORE_STATUS(cpu)) &
67                         S5P_CORE_LOCAL_PWR_EN);
68 }
69
70 /**
71  * exynos_cluster_power_down : power down the specified cluster
72  * @cluster : the cluster to power down
73  */
74 void exynos_cluster_power_down(int cluster)
75 {
76         __raw_writel(0, EXYNOS_COMMON_CONFIGURATION(cluster));
77 }
78
79 /**
80  * exynos_cluster_power_up : power up the specified cluster
81  * @cluster : the cluster to power up
82  */
83 void exynos_cluster_power_up(int cluster)
84 {
85         __raw_writel(S5P_CORE_LOCAL_PWR_EN,
86                      EXYNOS_COMMON_CONFIGURATION(cluster));
87 }
88
89 /**
90  * exynos_cluster_power_state : returns the power state of the cluster
91  * @cluster : the cluster to retrieve the power state from
92  *
93  */
94 int exynos_cluster_power_state(int cluster)
95 {
96         return (__raw_readl(EXYNOS_COMMON_STATUS(cluster)) &
97                         S5P_CORE_LOCAL_PWR_EN);
98 }
99
100 static inline void __iomem *cpu_boot_reg_base(void)
101 {
102         if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_1_1)
103                 return S5P_INFORM5;
104         return sysram_base_addr;
105 }
106
107 static inline void __iomem *cpu_boot_reg(int cpu)
108 {
109         void __iomem *boot_reg;
110
111         boot_reg = cpu_boot_reg_base();
112         if (!boot_reg)
113                 return ERR_PTR(-ENODEV);
114         if (soc_is_exynos4412())
115                 boot_reg += 4*cpu;
116         else if (soc_is_exynos5420() || soc_is_exynos5800())
117                 boot_reg += 4;
118         return boot_reg;
119 }
120
121 /*
122  * Write pen_release in a way that is guaranteed to be visible to all
123  * observers, irrespective of whether they're taking part in coherency
124  * or not.  This is necessary for the hotplug code to work reliably.
125  */
126 static void write_pen_release(int val)
127 {
128         pen_release = val;
129         smp_wmb();
130         sync_cache_w(&pen_release);
131 }
132
133 static void __iomem *scu_base_addr(void)
134 {
135         return (void __iomem *)(S5P_VA_SCU);
136 }
137
138 static DEFINE_SPINLOCK(boot_lock);
139
140 static void exynos_secondary_init(unsigned int cpu)
141 {
142         /*
143          * let the primary processor know we're out of the
144          * pen, then head off into the C entry point
145          */
146         write_pen_release(-1);
147
148         /*
149          * Synchronise with the boot thread.
150          */
151         spin_lock(&boot_lock);
152         spin_unlock(&boot_lock);
153 }
154
155 static int exynos_boot_secondary(unsigned int cpu, struct task_struct *idle)
156 {
157         unsigned long timeout;
158         unsigned long phys_cpu = cpu_logical_map(cpu);
159         int ret = -ENOSYS;
160
161         /*
162          * Set synchronisation state between this boot processor
163          * and the secondary one
164          */
165         spin_lock(&boot_lock);
166
167         /*
168          * The secondary processor is waiting to be released from
169          * the holding pen - release it, then wait for it to flag
170          * that it has been released by resetting pen_release.
171          *
172          * Note that "pen_release" is the hardware CPU ID, whereas
173          * "cpu" is Linux's internal ID.
174          */
175         write_pen_release(phys_cpu);
176
177         if (!exynos_cpu_power_state(cpu)) {
178                 exynos_cpu_power_up(cpu);
179                 timeout = 10;
180
181                 /* wait max 10 ms until cpu1 is on */
182                 while (exynos_cpu_power_state(cpu) != S5P_CORE_LOCAL_PWR_EN) {
183                         if (timeout-- == 0)
184                                 break;
185
186                         mdelay(1);
187                 }
188
189                 if (timeout == 0) {
190                         printk(KERN_ERR "cpu1 power enable failed");
191                         spin_unlock(&boot_lock);
192                         return -ETIMEDOUT;
193                 }
194         }
195         /*
196          * Send the secondary CPU a soft interrupt, thereby causing
197          * the boot monitor to read the system wide flags register,
198          * and branch to the address found there.
199          */
200
201         timeout = jiffies + (1 * HZ);
202         while (time_before(jiffies, timeout)) {
203                 unsigned long boot_addr;
204
205                 smp_rmb();
206
207                 boot_addr = virt_to_phys(exynos4_secondary_startup);
208
209                 /*
210                  * Try to set boot address using firmware first
211                  * and fall back to boot register if it fails.
212                  */
213                 ret = call_firmware_op(set_cpu_boot_addr, phys_cpu, boot_addr);
214                 if (ret && ret != -ENOSYS)
215                         goto fail;
216                 if (ret == -ENOSYS) {
217                         void __iomem *boot_reg = cpu_boot_reg(phys_cpu);
218
219                         if (IS_ERR(boot_reg)) {
220                                 ret = PTR_ERR(boot_reg);
221                                 goto fail;
222                         }
223                         __raw_writel(boot_addr, cpu_boot_reg(phys_cpu));
224                 }
225
226                 call_firmware_op(cpu_boot, phys_cpu);
227
228                 arch_send_wakeup_ipi_mask(cpumask_of(cpu));
229
230                 if (pen_release == -1)
231                         break;
232
233                 udelay(10);
234         }
235
236         /*
237          * now the secondary core is starting up let it run its
238          * calibrations, then wait for it to finish
239          */
240 fail:
241         spin_unlock(&boot_lock);
242
243         return pen_release != -1 ? ret : 0;
244 }
245
246 /*
247  * Initialise the CPU possible map early - this describes the CPUs
248  * which may be present or become present in the system.
249  */
250
251 static void __init exynos_smp_init_cpus(void)
252 {
253         void __iomem *scu_base = scu_base_addr();
254         unsigned int i, ncores;
255
256         if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A9)
257                 ncores = scu_base ? scu_get_core_count(scu_base) : 1;
258         else
259                 /*
260                  * CPU Nodes are passed thru DT and set_cpu_possible
261                  * is set by "arm_dt_init_cpu_maps".
262                  */
263                 return;
264
265         /* sanity check */
266         if (ncores > nr_cpu_ids) {
267                 pr_warn("SMP: %u cores greater than maximum (%u), clipping\n",
268                         ncores, nr_cpu_ids);
269                 ncores = nr_cpu_ids;
270         }
271
272         for (i = 0; i < ncores; i++)
273                 set_cpu_possible(i, true);
274 }
275
276 static void __init exynos_smp_prepare_cpus(unsigned int max_cpus)
277 {
278         int i;
279
280         exynos_sysram_init();
281
282         if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A9)
283                 scu_enable(scu_base_addr());
284
285         /*
286          * Write the address of secondary startup into the
287          * system-wide flags register. The boot monitor waits
288          * until it receives a soft interrupt, and then the
289          * secondary CPU branches to this address.
290          *
291          * Try using firmware operation first and fall back to
292          * boot register if it fails.
293          */
294         for (i = 1; i < max_cpus; ++i) {
295                 unsigned long phys_cpu;
296                 unsigned long boot_addr;
297                 int ret;
298
299                 phys_cpu = cpu_logical_map(i);
300                 boot_addr = virt_to_phys(exynos4_secondary_startup);
301
302                 ret = call_firmware_op(set_cpu_boot_addr, phys_cpu, boot_addr);
303                 if (ret && ret != -ENOSYS)
304                         break;
305                 if (ret == -ENOSYS) {
306                         void __iomem *boot_reg = cpu_boot_reg(phys_cpu);
307
308                         if (IS_ERR(boot_reg))
309                                 break;
310                         __raw_writel(boot_addr, cpu_boot_reg(phys_cpu));
311                 }
312         }
313 }
314
315 struct smp_operations exynos_smp_ops __initdata = {
316         .smp_init_cpus          = exynos_smp_init_cpus,
317         .smp_prepare_cpus       = exynos_smp_prepare_cpus,
318         .smp_secondary_init     = exynos_secondary_init,
319         .smp_boot_secondary     = exynos_boot_secondary,
320 #ifdef CONFIG_HOTPLUG_CPU
321         .cpu_die                = exynos_cpu_die,
322 #endif
323 };