blob: 51c44d4c98902c2f08283ab7a8bdf2c3c2075785 [file] [log] [blame]
Changhwan Youn2b12b5c2010-07-26 21:08:52 +09001/* linux/arch/arm/mach-s5pv310/platsmp.c
2 *
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com/
5 *
6 * Cloned from linux/arch/arm/mach-vexpress/platsmp.c
7 *
8 * Copyright (C) 2002 ARM Ltd.
9 * All Rights Reserved
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
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>
Changhwan Youn2b12b5c2010-07-26 21:08:52 +090025#include <asm/smp_scu.h>
26#include <asm/unified.h>
27
28#include <mach/hardware.h>
29#include <mach/regs-clock.h>
30
31extern void s5pv310_secondary_startup(void);
32
33/*
34 * control for which core is the next to come out of the secondary
35 * boot "holding pen"
36 */
37
38volatile int __cpuinitdata pen_release = -1;
39
40static void __iomem *scu_base_addr(void)
41{
42 return (void __iomem *)(S5P_VA_SCU);
43}
44
45static DEFINE_SPINLOCK(boot_lock);
46
47void __cpuinit platform_secondary_init(unsigned int cpu)
48{
49 trace_hardirqs_off();
50
51 /*
52 * if any interrupts are already enabled for the primary
53 * core (e.g. timer irq), then they will not have been enabled
54 * for us: do so
55 */
56 gic_cpu_init(0, gic_cpu_base_addr);
57
58 /*
59 * let the primary processor know we're out of the
60 * pen, then head off into the C entry point
61 */
62 pen_release = -1;
63 smp_wmb();
64
65 /*
66 * Synchronise with the boot thread.
67 */
68 spin_lock(&boot_lock);
69 spin_unlock(&boot_lock);
70}
71
72int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
73{
74 unsigned long timeout;
75
76 /*
77 * Set synchronisation state between this boot processor
78 * and the secondary one
79 */
80 spin_lock(&boot_lock);
81
82 /*
83 * The secondary processor is waiting to be released from
84 * the holding pen - release it, then wait for it to flag
85 * that it has been released by resetting pen_release.
86 *
87 * Note that "pen_release" is the hardware CPU ID, whereas
88 * "cpu" is Linux's internal ID.
89 */
90 pen_release = cpu;
91 __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release));
92 outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1));
93
94 /*
95 * Send the secondary CPU a soft interrupt, thereby causing
96 * the boot monitor to read the system wide flags register,
97 * and branch to the address found there.
98 */
Russell Kingad3b6992010-11-15 09:42:08 +000099 smp_cross_call(cpumask_of(cpu), 1);
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900100
101 timeout = jiffies + (1 * HZ);
102 while (time_before(jiffies, timeout)) {
103 smp_rmb();
104 if (pen_release == -1)
105 break;
106
107 udelay(10);
108 }
109
110 /*
111 * now the secondary core is starting up let it run its
112 * calibrations, then wait for it to finish
113 */
114 spin_unlock(&boot_lock);
115
116 return pen_release != -1 ? -ENOSYS : 0;
117}
118
119/*
120 * Initialise the CPU possible map early - this describes the CPUs
121 * which may be present or become present in the system.
122 */
123
124void __init smp_init_cpus(void)
125{
126 void __iomem *scu_base = scu_base_addr();
127 unsigned int i, ncores;
128
129 ncores = scu_base ? scu_get_core_count(scu_base) : 1;
130
131 /* sanity check */
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900132 if (ncores > NR_CPUS) {
133 printk(KERN_WARNING
134 "S5PV310: no. of cores (%d) greater than configured "
135 "maximum of %d - clipping\n",
136 ncores, NR_CPUS);
137 ncores = NR_CPUS;
138 }
139
140 for (i = 0; i < ncores; i++)
141 set_cpu_possible(i, true);
142}
143
Russell King05c74a62010-12-03 11:09:48 +0000144void __init platform_smp_prepare_cpus(unsigned int max_cpus)
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900145{
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900146 int i;
147
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900148 /*
149 * Initialise the present map, which describes the set of CPUs
150 * actually populated at the present time.
151 */
152 for (i = 0; i < max_cpus; i++)
153 set_cpu_present(i, true);
154
Russell King05c74a62010-12-03 11:09:48 +0000155 scu_enable(scu_base_addr());
156
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900157 /*
Russell King05c74a62010-12-03 11:09:48 +0000158 * Write the address of secondary startup into the
159 * system-wide flags register. The boot monitor waits
160 * until it receives a soft interrupt, and then the
161 * secondary CPU branches to this address.
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900162 */
Changhwan Youn766211e2010-08-27 17:57:44 +0900163 __raw_writel(BSYM(virt_to_phys(s5pv310_secondary_startup)), S5P_VA_SYSRAM);
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900164}