This source file includes following definitions.
- sirfsoc_secondary_init
- sirfsoc_boot_secondary
1
2
3
4
5
6
7
8 #include <linux/init.h>
9 #include <linux/smp.h>
10 #include <linux/delay.h>
11 #include <linux/of.h>
12 #include <linux/of_address.h>
13 #include <asm/page.h>
14 #include <asm/mach/map.h>
15 #include <asm/smp_plat.h>
16 #include <asm/smp_scu.h>
17 #include <asm/cacheflush.h>
18 #include <asm/cputype.h>
19
20 #include "common.h"
21
22 static void __iomem *clk_base;
23
24 static DEFINE_SPINLOCK(boot_lock);
25
26
27 volatile int prima2_pen_release = -1;
28
29 static void sirfsoc_secondary_init(unsigned int cpu)
30 {
31
32
33
34
35 prima2_pen_release = -1;
36 smp_wmb();
37
38
39
40
41 spin_lock(&boot_lock);
42 spin_unlock(&boot_lock);
43 }
44
45 static const struct of_device_id clk_ids[] = {
46 { .compatible = "sirf,atlas7-clkc" },
47 {},
48 };
49
50 static int sirfsoc_boot_secondary(unsigned int cpu, struct task_struct *idle)
51 {
52 unsigned long timeout;
53 struct device_node *np;
54
55 np = of_find_matching_node(NULL, clk_ids);
56 if (!np)
57 return -ENODEV;
58
59 clk_base = of_iomap(np, 0);
60 if (!clk_base)
61 return -ENOMEM;
62
63
64
65
66
67
68
69 #define SIRFSOC_CPU1_JUMPADDR_OFFSET 0x2bc
70 __raw_writel(__pa_symbol(sirfsoc_secondary_startup),
71 clk_base + SIRFSOC_CPU1_JUMPADDR_OFFSET);
72
73 #define SIRFSOC_CPU1_WAKEMAGIC_OFFSET 0x2b8
74 __raw_writel(0x3CAF5D62,
75 clk_base + SIRFSOC_CPU1_WAKEMAGIC_OFFSET);
76
77
78 mb();
79
80 spin_lock(&boot_lock);
81
82
83
84
85
86
87
88
89
90 prima2_pen_release = cpu_logical_map(cpu);
91 sync_cache_w(&prima2_pen_release);
92
93
94
95
96
97 dsb_sev();
98
99 timeout = jiffies + (1 * HZ);
100 while (time_before(jiffies, timeout)) {
101 smp_rmb();
102 if (prima2_pen_release == -1)
103 break;
104
105 udelay(10);
106 }
107
108
109
110
111
112 spin_unlock(&boot_lock);
113
114 return prima2_pen_release != -1 ? -ENOSYS : 0;
115 }
116
117 const struct smp_operations sirfsoc_smp_ops __initconst = {
118 .smp_secondary_init = sirfsoc_secondary_init,
119 .smp_boot_secondary = sirfsoc_boot_secondary,
120 #ifdef CONFIG_HOTPLUG_CPU
121 .cpu_die = sirfsoc_cpu_die,
122 #endif
123 };