1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#undef DEBUG
16
17#include <linux/kernel.h>
18#include <linux/sched.h>
19#include <linux/smp.h>
20#include <linux/interrupt.h>
21#include <linux/delay.h>
22#include <linux/init.h>
23#include <linux/spinlock.h>
24#include <linux/cache.h>
25#include <linux/err.h>
26#include <linux/device.h>
27#include <linux/cpu.h>
28
29#include <asm/ptrace.h>
30#include <linux/atomic.h>
31#include <asm/irq.h>
32#include <asm/page.h>
33#include <asm/pgtable.h>
34#include <asm/io.h>
35#include <asm/prom.h>
36#include <asm/smp.h>
37#include <asm/paca.h>
38#include <asm/machdep.h>
39#include <asm/cputable.h>
40#include <asm/firmware.h>
41#include <asm/rtas.h>
42#include <asm/cputhreads.h>
43#include <asm/code-patching.h>
44
45#include "interrupt.h"
46#include <asm/udbg.h>
47
48#ifdef DEBUG
49#define DBG(fmt...) udbg_printf(fmt)
50#else
51#define DBG(fmt...)
52#endif
53
54
55
56
57
58static cpumask_t of_spin_map;
59
60
61
62
63
64
65
66
67
68
69
70
71static inline int smp_startup_cpu(unsigned int lcpu)
72{
73 int status;
74 unsigned long start_here =
75 __pa(ppc_function_entry(generic_secondary_smp_init));
76 unsigned int pcpu;
77 int start_cpu;
78
79 if (cpumask_test_cpu(lcpu, &of_spin_map))
80
81 return 1;
82
83 pcpu = get_hard_smp_processor_id(lcpu);
84
85
86 task_thread_info(paca[lcpu].__current)->preempt_count = 0;
87
88
89
90
91
92 start_cpu = rtas_token("start-cpu");
93 if (start_cpu == RTAS_UNKNOWN_SERVICE)
94 return 1;
95
96 status = rtas_call(start_cpu, 3, 1, NULL, pcpu, start_here, lcpu);
97 if (status != 0) {
98 printk(KERN_ERR "start-cpu failed: %i\n", status);
99 return 0;
100 }
101
102 return 1;
103}
104
105static int __init smp_iic_probe(void)
106{
107 iic_request_IPIs();
108
109 return cpumask_weight(cpu_possible_mask);
110}
111
112static void smp_cell_setup_cpu(int cpu)
113{
114 if (cpu != boot_cpuid)
115 iic_setup_cpu();
116
117
118
119
120 mtspr(SPRN_DABRX, DABRX_KERNEL | DABRX_USER);
121}
122
123static int smp_cell_kick_cpu(int nr)
124{
125 BUG_ON(nr < 0 || nr >= NR_CPUS);
126
127 if (!smp_startup_cpu(nr))
128 return -ENOENT;
129
130
131
132
133
134
135 paca[nr].cpu_start = 1;
136
137 return 0;
138}
139
140static struct smp_ops_t bpa_iic_smp_ops = {
141 .message_pass = iic_message_pass,
142 .probe = smp_iic_probe,
143 .kick_cpu = smp_cell_kick_cpu,
144 .setup_cpu = smp_cell_setup_cpu,
145 .cpu_bootable = smp_generic_cpu_bootable,
146};
147
148
149void __init smp_init_cell(void)
150{
151 int i;
152
153 DBG(" -> smp_init_cell()\n");
154
155 smp_ops = &bpa_iic_smp_ops;
156
157
158 if (cpu_has_feature(CPU_FTR_SMT)) {
159 for_each_present_cpu(i) {
160 if (cpu_thread_in_core(i) == 0)
161 cpumask_set_cpu(i, &of_spin_map);
162 }
163 } else
164 cpumask_copy(&of_spin_map, cpu_present_mask);
165
166 cpumask_clear_cpu(boot_cpuid, &of_spin_map);
167
168
169 if (rtas_token("freeze-time-base") != RTAS_UNKNOWN_SERVICE) {
170 smp_ops->give_timebase = rtas_give_timebase;
171 smp_ops->take_timebase = rtas_take_timebase;
172 }
173
174 DBG(" <- smp_init_cell()\n");
175}
176