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