blob: 96a55972b986bd7103270ceeabd037e21edbb4bb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Smp support for ppc.
3 *
4 * Written by Cort Dougan (cort@cs.nmt.edu) borrowing a great
5 * deal of code from the sparc and intel versions.
6 *
7 * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
8 *
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/sched.h>
14#include <linux/smp.h>
15#include <linux/smp_lock.h>
16#include <linux/interrupt.h>
17#include <linux/kernel_stat.h>
18#include <linux/delay.h>
19#include <linux/init.h>
20#include <linux/spinlock.h>
21#include <linux/cache.h>
22
23#include <asm/ptrace.h>
24#include <asm/atomic.h>
25#include <asm/irq.h>
26#include <asm/page.h>
27#include <asm/pgtable.h>
28#include <asm/io.h>
29#include <asm/prom.h>
30#include <asm/smp.h>
31#include <asm/residual.h>
32#include <asm/time.h>
33#include <asm/thread_info.h>
34#include <asm/tlbflush.h>
35#include <asm/xmon.h>
Paul Mackerrasb60fc8bb2005-10-10 14:14:55 +100036#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38volatile int smp_commenced;
39int smp_tb_synchronized;
40struct cpuinfo_PPC cpu_data[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070041atomic_t ipi_recv;
42atomic_t ipi_sent;
43cpumask_t cpu_online_map;
44cpumask_t cpu_possible_map;
45int smp_hw_index[NR_CPUS];
46struct thread_info *secondary_ti;
Paul Mackerras31139972005-09-10 21:13:13 +100047static struct task_struct *idle_tasks[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49EXPORT_SYMBOL(cpu_online_map);
50EXPORT_SYMBOL(cpu_possible_map);
51
52/* SMP operations for this machine */
Paul Mackerras7ed476d2005-10-19 21:44:51 +100053struct smp_ops_t *smp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/* all cpu mappings are 1-1 -- Cort */
56volatile unsigned long cpu_callin_map[NR_CPUS];
57
58int start_secondary(void *);
59void smp_call_function_interrupt(void);
60static int __smp_call_function(void (*func) (void *info), void *info,
61 int wait, int target);
62
63/* Low level assembly function used to backup CPU 0 state */
64extern void __save_cpu_setup(void);
65
66/* Since OpenPIC has only 4 IPIs, we use slightly different message numbers.
67 *
68 * Make sure this matches openpic_request_IPIs in open_pic.c, or what shows up
69 * in /proc/interrupts will be wrong!!! --Troy */
70#define PPC_MSG_CALL_FUNCTION 0
71#define PPC_MSG_RESCHEDULE 1
72#define PPC_MSG_INVALIDATE_TLB 2
73#define PPC_MSG_XMON_BREAK 3
74
75static inline void
Paul Mackerras7ed476d2005-10-19 21:44:51 +100076smp_message_pass(int target, int msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Paul Mackerras7ed476d2005-10-19 21:44:51 +100078 if (smp_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 atomic_inc(&ipi_sent);
Paul Mackerras7ed476d2005-10-19 21:44:51 +100080 smp_ops->message_pass(target, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82}
83
84/*
85 * Common functions
86 */
Al Viro39e3eb72006-10-09 12:48:42 +010087void smp_message_recv(int msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 atomic_inc(&ipi_recv);
90
91 switch( msg ) {
92 case PPC_MSG_CALL_FUNCTION:
93 smp_call_function_interrupt();
94 break;
95 case PPC_MSG_RESCHEDULE:
96 set_need_resched();
97 break;
98 case PPC_MSG_INVALIDATE_TLB:
99 _tlbia();
100 break;
101#ifdef CONFIG_XMON
102 case PPC_MSG_XMON_BREAK:
Al Viro39e3eb72006-10-09 12:48:42 +0100103 xmon(get_irq_regs());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 break;
105#endif /* CONFIG_XMON */
106 default:
107 printk("SMP %d: smp_message_recv(): unknown msg %d\n",
108 smp_processor_id(), msg);
109 break;
110 }
111}
112
113/*
114 * 750's don't broadcast tlb invalidates so
115 * we have to emulate that behavior.
116 * -- Cort
117 */
118void smp_send_tlb_invalidate(int cpu)
119{
120 if ( PVR_VER(mfspr(SPRN_PVR)) == 8 )
Paul Mackerras7ed476d2005-10-19 21:44:51 +1000121 smp_message_pass(MSG_ALL_BUT_SELF, PPC_MSG_INVALIDATE_TLB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124void smp_send_reschedule(int cpu)
125{
126 /*
127 * This is only used if `cpu' is running an idle task,
128 * so it will reschedule itself anyway...
129 *
130 * This isn't the case anymore since the other CPU could be
131 * sleeping and won't reschedule until the next interrupt (such
132 * as the timer).
133 * -- Cort
134 */
135 /* This is only used if `cpu' is running an idle task,
136 so it will reschedule itself anyway... */
Paul Mackerras7ed476d2005-10-19 21:44:51 +1000137 smp_message_pass(cpu, PPC_MSG_RESCHEDULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140#ifdef CONFIG_XMON
141void smp_send_xmon_break(int cpu)
142{
Paul Mackerras7ed476d2005-10-19 21:44:51 +1000143 smp_message_pass(cpu, PPC_MSG_XMON_BREAK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145#endif /* CONFIG_XMON */
146
147static void stop_this_cpu(void *dummy)
148{
149 local_irq_disable();
150 while (1)
151 ;
152}
153
154void smp_send_stop(void)
155{
156 smp_call_function(stop_this_cpu, NULL, 1, 0);
157}
158
159/*
160 * Structure and data for smp_call_function(). This is designed to minimise
161 * static memory requirements. It also looks cleaner.
162 * Stolen from the i386 version.
163 */
164static DEFINE_SPINLOCK(call_lock);
165
166static struct call_data_struct {
167 void (*func) (void *info);
168 void *info;
169 atomic_t started;
170 atomic_t finished;
171 int wait;
172} *call_data;
173
174/*
175 * this function sends a 'generic call function' IPI to all other CPUs
176 * in the system.
177 */
178
179int smp_call_function(void (*func) (void *info), void *info, int nonatomic,
180 int wait)
181/*
182 * [SUMMARY] Run a function on all other CPUs.
183 * <func> The function to run. This must be fast and non-blocking.
184 * <info> An arbitrary pointer to pass to the function.
185 * <nonatomic> currently unused.
186 * <wait> If true, wait (atomically) until function has completed on other CPUs.
187 * [RETURNS] 0 on success, else a negative status code. Does not return until
188 * remote CPUs are nearly ready to execute <<func>> or are or have executed.
189 *
190 * You must not call this function with disabled interrupts or from a
191 * hardware interrupt handler or from a bottom half handler.
192 */
193{
194 /* FIXME: get cpu lock with hotplug cpus, or change this to
195 bitmask. --RR */
196 if (num_online_cpus() <= 1)
197 return 0;
198 /* Can deadlock when called with interrupts disabled */
199 WARN_ON(irqs_disabled());
200 return __smp_call_function(func, info, wait, MSG_ALL_BUT_SELF);
201}
202
203static int __smp_call_function(void (*func) (void *info), void *info,
204 int wait, int target)
205{
206 struct call_data_struct data;
207 int ret = -1;
208 int timeout;
209 int ncpus = 1;
210
211 if (target == MSG_ALL_BUT_SELF)
212 ncpus = num_online_cpus() - 1;
213 else if (target == MSG_ALL)
214 ncpus = num_online_cpus();
215
216 data.func = func;
217 data.info = info;
218 atomic_set(&data.started, 0);
219 data.wait = wait;
220 if (wait)
221 atomic_set(&data.finished, 0);
222
223 spin_lock(&call_lock);
224 call_data = &data;
225 /* Send a message to all other CPUs and wait for them to respond */
Paul Mackerras7ed476d2005-10-19 21:44:51 +1000226 smp_message_pass(target, PPC_MSG_CALL_FUNCTION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /* Wait for response */
229 timeout = 1000000;
230 while (atomic_read(&data.started) != ncpus) {
231 if (--timeout == 0) {
232 printk("smp_call_function on cpu %d: other cpus not responding (%d)\n",
233 smp_processor_id(), atomic_read(&data.started));
234 goto out;
235 }
236 barrier();
237 udelay(1);
238 }
239
240 if (wait) {
241 timeout = 1000000;
242 while (atomic_read(&data.finished) != ncpus) {
243 if (--timeout == 0) {
244 printk("smp_call_function on cpu %d: other cpus not finishing (%d/%d)\n",
245 smp_processor_id(), atomic_read(&data.finished), atomic_read(&data.started));
246 goto out;
247 }
248 barrier();
249 udelay(1);
250 }
251 }
252 ret = 0;
253
254 out:
255 spin_unlock(&call_lock);
256 return ret;
257}
258
259void smp_call_function_interrupt(void)
260{
261 void (*func) (void *info) = call_data->func;
262 void *info = call_data->info;
263 int wait = call_data->wait;
264
265 /*
266 * Notify initiating CPU that I've grabbed the data and am
267 * about to execute the function
268 */
269 atomic_inc(&call_data->started);
270 /*
271 * At this point the info structure may be out of scope unless wait==1
272 */
273 (*func)(info);
274 if (wait)
275 atomic_inc(&call_data->finished);
276}
277
278static void __devinit smp_store_cpu_info(int id)
279{
280 struct cpuinfo_PPC *c = &cpu_data[id];
281
282 /* assume bogomips are same for everything */
283 c->loops_per_jiffy = loops_per_jiffy;
284 c->pvr = mfspr(SPRN_PVR);
285}
286
287void __init smp_prepare_cpus(unsigned int max_cpus)
288{
Paul Mackerras31139972005-09-10 21:13:13 +1000289 int num_cpus, i, cpu;
290 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /* Fixup boot cpu */
293 smp_store_cpu_info(smp_processor_id());
294 cpu_callin_map[smp_processor_id()] = 1;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (smp_ops == NULL) {
297 printk("SMP not supported on this machine.\n");
298 return;
299 }
300
301 /* Probe platform for CPUs: always linear. */
302 num_cpus = smp_ops->probe();
Johannes Bergef969432005-12-10 18:41:50 -0800303
304 if (num_cpus < 2)
305 smp_tb_synchronized = 1;
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 for (i = 0; i < num_cpus; ++i)
308 cpu_set(i, cpu_possible_map);
309
310 /* Backup CPU 0 state */
311 __save_cpu_setup();
312
KAMEZAWA Hiroyukib848e0a2006-03-28 14:50:52 -0800313 for_each_possible_cpu(cpu) {
Paul Mackerras31139972005-09-10 21:13:13 +1000314 if (cpu == smp_processor_id())
315 continue;
316 /* create a process for the processor */
317 p = fork_idle(cpu);
318 if (IS_ERR(p))
319 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
Al Virob5e2fc12006-01-12 01:06:01 -0800320 task_thread_info(p)->cpu = cpu;
Paul Mackerras31139972005-09-10 21:13:13 +1000321 idle_tasks[cpu] = p;
322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325void __devinit smp_prepare_boot_cpu(void)
326{
327 cpu_set(smp_processor_id(), cpu_online_map);
328 cpu_set(smp_processor_id(), cpu_possible_map);
329}
330
331int __init setup_profiling_timer(unsigned int multiplier)
332{
333 return 0;
334}
335
336/* Processor coming up starts here */
337int __devinit start_secondary(void *unused)
338{
339 int cpu;
340
341 atomic_inc(&init_mm.mm_count);
342 current->active_mm = &init_mm;
343
344 cpu = smp_processor_id();
345 smp_store_cpu_info(cpu);
346 set_dec(tb_ticks_per_jiffy);
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800347 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 cpu_callin_map[cpu] = 1;
349
Paul Mackerras31139972005-09-10 21:13:13 +1000350 printk("CPU %d done callin...\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 smp_ops->setup_cpu(cpu);
Paul Mackerras31139972005-09-10 21:13:13 +1000352 printk("CPU %d done setup...\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 smp_ops->take_timebase();
Paul Mackerras31139972005-09-10 21:13:13 +1000354 printk("CPU %d done timebase take...\n", cpu);
355
356 spin_lock(&call_lock);
357 cpu_set(cpu, cpu_online_map);
358 spin_unlock(&call_lock);
359
360 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 cpu_idle();
363 return 0;
364}
365
366int __cpu_up(unsigned int cpu)
367{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 char buf[32];
369 int c;
370
Al Virob5e2fc12006-01-12 01:06:01 -0800371 secondary_ti = task_thread_info(idle_tasks[cpu]);
Paul Mackerras31139972005-09-10 21:13:13 +1000372 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /*
375 * There was a cache flush loop here to flush the cache
376 * to memory for the first 8MB of RAM. The cache flush
377 * has been pushed into the kick_cpu function for those
378 * platforms that need it.
379 */
380
381 /* wake up cpu */
382 smp_ops->kick_cpu(cpu);
383
384 /*
385 * wait to see if the cpu made a callin (is actually up).
386 * use this value that I found through experimentation.
387 * -- Cort
388 */
389 for (c = 1000; c && !cpu_callin_map[cpu]; c--)
390 udelay(100);
391
392 if (!cpu_callin_map[cpu]) {
393 sprintf(buf, "didn't find cpu %u", cpu);
394 if (ppc_md.progress) ppc_md.progress(buf, 0x360+cpu);
395 printk("Processor %u is stuck.\n", cpu);
396 return -ENOENT;
397 }
398
399 sprintf(buf, "found cpu %u", cpu);
400 if (ppc_md.progress) ppc_md.progress(buf, 0x350+cpu);
401 printk("Processor %d found.\n", cpu);
402
403 smp_ops->give_timebase();
Paul Mackerras31139972005-09-10 21:13:13 +1000404
405 /* Wait until cpu puts itself in the online map */
406 while (!cpu_online(cpu))
407 cpu_relax();
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return 0;
410}
411
412void smp_cpus_done(unsigned int max_cpus)
413{
414 smp_ops->setup_cpu(0);
415}