1
2
3
4
5
6
7
8
9
10
11#include <linux/delay.h>
12#include <linux/jiffies.h>
13#include <linux/io.h>
14#include <linux/smp.h>
15#include <asm/cacheflush.h>
16#include <asm/smp_scu.h>
17#include <mach/spear.h>
18#include "generic.h"
19
20
21volatile int spear_pen_release = -1;
22
23
24
25
26
27
28
29
30static void spear_write_pen_release(int val)
31{
32 spear_pen_release = val;
33 smp_wmb();
34 sync_cache_w(&spear_pen_release);
35}
36
37static DEFINE_SPINLOCK(boot_lock);
38
39static void __iomem *scu_base = IOMEM(VA_SCU_BASE);
40
41static void spear13xx_secondary_init(unsigned int cpu)
42{
43
44
45
46
47 spear_write_pen_release(-1);
48
49
50
51
52 spin_lock(&boot_lock);
53 spin_unlock(&boot_lock);
54}
55
56static int spear13xx_boot_secondary(unsigned int cpu, struct task_struct *idle)
57{
58 unsigned long timeout;
59
60
61
62
63
64 spin_lock(&boot_lock);
65
66
67
68
69
70
71
72
73
74 spear_write_pen_release(cpu);
75
76 timeout = jiffies + (1 * HZ);
77 while (time_before(jiffies, timeout)) {
78 smp_rmb();
79 if (spear_pen_release == -1)
80 break;
81
82 udelay(10);
83 }
84
85
86
87
88
89 spin_unlock(&boot_lock);
90
91 return spear_pen_release != -1 ? -ENOSYS : 0;
92}
93
94
95
96
97
98static void __init spear13xx_smp_init_cpus(void)
99{
100 unsigned int i, ncores = scu_get_core_count(scu_base);
101
102 if (ncores > nr_cpu_ids) {
103 pr_warn("SMP: %u cores greater than maximum (%u), clipping\n",
104 ncores, nr_cpu_ids);
105 ncores = nr_cpu_ids;
106 }
107
108 for (i = 0; i < ncores; i++)
109 set_cpu_possible(i, true);
110}
111
112static void __init spear13xx_smp_prepare_cpus(unsigned int max_cpus)
113{
114
115 scu_enable(scu_base);
116
117
118
119
120
121
122 __raw_writel(__pa_symbol(spear13xx_secondary_startup), SYS_LOCATION);
123}
124
125const struct smp_operations spear13xx_smp_ops __initconst = {
126 .smp_init_cpus = spear13xx_smp_init_cpus,
127 .smp_prepare_cpus = spear13xx_smp_prepare_cpus,
128 .smp_secondary_init = spear13xx_secondary_init,
129 .smp_boot_secondary = spear13xx_boot_secondary,
130#ifdef CONFIG_HOTPLUG_CPU
131 .cpu_die = spear13xx_cpu_die,
132#endif
133};
134