blob: 8c245859d2126166bc530fc8eba75741253c8f4d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* smp.c: Sparc64 SMP support.
2 *
3 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
4 */
5
6#include <linux/module.h>
7#include <linux/kernel.h>
8#include <linux/sched.h>
9#include <linux/mm.h>
10#include <linux/pagemap.h>
11#include <linux/threads.h>
12#include <linux/smp.h>
13#include <linux/smp_lock.h>
14#include <linux/interrupt.h>
15#include <linux/kernel_stat.h>
16#include <linux/delay.h>
17#include <linux/init.h>
18#include <linux/spinlock.h>
19#include <linux/fs.h>
20#include <linux/seq_file.h>
21#include <linux/cache.h>
22#include <linux/jiffies.h>
23#include <linux/profile.h>
24#include <linux/bootmem.h>
25
26#include <asm/head.h>
27#include <asm/ptrace.h>
28#include <asm/atomic.h>
29#include <asm/tlbflush.h>
30#include <asm/mmu_context.h>
31#include <asm/cpudata.h>
32
33#include <asm/irq.h>
34#include <asm/page.h>
35#include <asm/pgtable.h>
36#include <asm/oplib.h>
37#include <asm/uaccess.h>
38#include <asm/timer.h>
39#include <asm/starfire.h>
40#include <asm/tlb.h>
David S. Miller56fb4df2006-02-26 23:24:22 -080041#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043extern void calibrate_delay(void);
44
45/* Please don't make this stuff initdata!!! --DaveM */
46static unsigned char boot_cpu_id;
47
Andrew Mortonc12a8282005-07-12 12:09:43 -070048cpumask_t cpu_online_map __read_mostly = CPU_MASK_NONE;
49cpumask_t phys_cpu_present_map __read_mostly = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static cpumask_t smp_commenced_mask;
51static cpumask_t cpu_callout_map;
52
53void smp_info(struct seq_file *m)
54{
55 int i;
56
57 seq_printf(m, "State:\n");
58 for (i = 0; i < NR_CPUS; i++) {
59 if (cpu_online(i))
60 seq_printf(m,
61 "CPU%d:\t\tonline\n", i);
62 }
63}
64
65void smp_bogo(struct seq_file *m)
66{
67 int i;
68
69 for (i = 0; i < NR_CPUS; i++)
70 if (cpu_online(i))
71 seq_printf(m,
72 "Cpu%dBogo\t: %lu.%02lu\n"
73 "Cpu%dClkTck\t: %016lx\n",
74 i, cpu_data(i).udelay_val / (500000/HZ),
75 (cpu_data(i).udelay_val / (5000/HZ)) % 100,
76 i, cpu_data(i).clock_tick);
77}
78
79void __init smp_store_cpu_info(int id)
80{
81 int cpu_node;
82
83 /* multiplier and counter set by
84 smp_setup_percpu_timer() */
85 cpu_data(id).udelay_val = loops_per_jiffy;
86
87 cpu_find_by_mid(id, &cpu_node);
88 cpu_data(id).clock_tick = prom_getintdefault(cpu_node,
89 "clock-frequency", 0);
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 cpu_data(id).idle_volume = 1;
David S. Miller80dc0d62005-09-26 00:32:17 -070092
93 cpu_data(id).dcache_size = prom_getintdefault(cpu_node, "dcache-size",
94 16 * 1024);
95 cpu_data(id).dcache_line_size =
96 prom_getintdefault(cpu_node, "dcache-line-size", 32);
97 cpu_data(id).icache_size = prom_getintdefault(cpu_node, "icache-size",
98 16 * 1024);
99 cpu_data(id).icache_line_size =
100 prom_getintdefault(cpu_node, "icache-line-size", 32);
101 cpu_data(id).ecache_size = prom_getintdefault(cpu_node, "ecache-size",
102 4 * 1024 * 1024);
103 cpu_data(id).ecache_line_size =
104 prom_getintdefault(cpu_node, "ecache-line-size", 64);
105 printk("CPU[%d]: Caches "
106 "D[sz(%d):line_sz(%d)] "
107 "I[sz(%d):line_sz(%d)] "
108 "E[sz(%d):line_sz(%d)]\n",
109 id,
110 cpu_data(id).dcache_size, cpu_data(id).dcache_line_size,
111 cpu_data(id).icache_size, cpu_data(id).icache_line_size,
112 cpu_data(id).ecache_size, cpu_data(id).ecache_line_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static void smp_setup_percpu_timer(void);
116
117static volatile unsigned long callin_flag = 0;
118
119extern void inherit_locked_prom_mappings(int save_p);
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121void __init smp_callin(void)
122{
123 int cpuid = hard_smp_processor_id();
124
125 inherit_locked_prom_mappings(0);
126
David S. Miller56fb4df2006-02-26 23:24:22 -0800127 __local_per_cpu_offset = __per_cpu_offset(cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
David S. Miller56fb4df2006-02-26 23:24:22 -0800129 __flush_tlb_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 smp_setup_percpu_timer();
132
David S. Miller816242d2005-05-23 15:52:08 -0700133 if (cheetah_pcache_forced_on)
134 cheetah_enable_pcache();
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 local_irq_enable();
137
138 calibrate_delay();
139 smp_store_cpu_info(cpuid);
140 callin_flag = 1;
141 __asm__ __volatile__("membar #Sync\n\t"
142 "flush %%g6" : : : "memory");
143
144 /* Clear this or we will die instantly when we
145 * schedule back to this idler...
146 */
David S. Millerdb7d9a42005-07-24 19:36:26 -0700147 current_thread_info()->new_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /* Attach to the address space of init_task. */
150 atomic_inc(&init_mm.mm_count);
151 current->active_mm = &init_mm;
152
153 while (!cpu_isset(cpuid, smp_commenced_mask))
David S. Miller4f071182005-08-29 12:46:22 -0700154 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 cpu_set(cpuid, cpu_online_map);
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800157
158 /* idle thread is expected to have preempt disabled */
159 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162void cpu_panic(void)
163{
164 printk("CPU[%d]: Returns from cpu_idle!\n", smp_processor_id());
165 panic("SMP bolixed\n");
166}
167
David S. Millerd369ddd2005-07-10 15:45:11 -0700168static unsigned long current_tick_offset __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170/* This tick register synchronization scheme is taken entirely from
171 * the ia64 port, see arch/ia64/kernel/smpboot.c for details and credit.
172 *
173 * The only change I've made is to rework it so that the master
174 * initiates the synchonization instead of the slave. -DaveM
175 */
176
177#define MASTER 0
178#define SLAVE (SMP_CACHE_BYTES/sizeof(unsigned long))
179
180#define NUM_ROUNDS 64 /* magic value */
181#define NUM_ITERS 5 /* likewise */
182
183static DEFINE_SPINLOCK(itc_sync_lock);
184static unsigned long go[SLAVE + 1];
185
186#define DEBUG_TICK_SYNC 0
187
188static inline long get_delta (long *rt, long *master)
189{
190 unsigned long best_t0 = 0, best_t1 = ~0UL, best_tm = 0;
191 unsigned long tcenter, t0, t1, tm;
192 unsigned long i;
193
194 for (i = 0; i < NUM_ITERS; i++) {
195 t0 = tick_ops->get_tick();
196 go[MASTER] = 1;
David S. Miller4f071182005-08-29 12:46:22 -0700197 membar_storeload();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 while (!(tm = go[SLAVE]))
David S. Miller4f071182005-08-29 12:46:22 -0700199 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 go[SLAVE] = 0;
David S. Miller4f071182005-08-29 12:46:22 -0700201 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 t1 = tick_ops->get_tick();
203
204 if (t1 - t0 < best_t1 - best_t0)
205 best_t0 = t0, best_t1 = t1, best_tm = tm;
206 }
207
208 *rt = best_t1 - best_t0;
209 *master = best_tm - best_t0;
210
211 /* average best_t0 and best_t1 without overflow: */
212 tcenter = (best_t0/2 + best_t1/2);
213 if (best_t0 % 2 + best_t1 % 2 == 2)
214 tcenter++;
215 return tcenter - best_tm;
216}
217
218void smp_synchronize_tick_client(void)
219{
220 long i, delta, adj, adjust_latency = 0, done = 0;
221 unsigned long flags, rt, master_time_stamp, bound;
222#if DEBUG_TICK_SYNC
223 struct {
224 long rt; /* roundtrip time */
225 long master; /* master's timestamp */
226 long diff; /* difference between midpoint and master's timestamp */
227 long lat; /* estimate of itc adjustment latency */
228 } t[NUM_ROUNDS];
229#endif
230
231 go[MASTER] = 1;
232
233 while (go[MASTER])
David S. Miller4f071182005-08-29 12:46:22 -0700234 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 local_irq_save(flags);
237 {
238 for (i = 0; i < NUM_ROUNDS; i++) {
239 delta = get_delta(&rt, &master_time_stamp);
240 if (delta == 0) {
241 done = 1; /* let's lock on to this... */
242 bound = rt;
243 }
244
245 if (!done) {
246 if (i > 0) {
247 adjust_latency += -delta;
248 adj = -delta + adjust_latency/4;
249 } else
250 adj = -delta;
251
252 tick_ops->add_tick(adj, current_tick_offset);
253 }
254#if DEBUG_TICK_SYNC
255 t[i].rt = rt;
256 t[i].master = master_time_stamp;
257 t[i].diff = delta;
258 t[i].lat = adjust_latency/4;
259#endif
260 }
261 }
262 local_irq_restore(flags);
263
264#if DEBUG_TICK_SYNC
265 for (i = 0; i < NUM_ROUNDS; i++)
266 printk("rt=%5ld master=%5ld diff=%5ld adjlat=%5ld\n",
267 t[i].rt, t[i].master, t[i].diff, t[i].lat);
268#endif
269
270 printk(KERN_INFO "CPU %d: synchronized TICK with master CPU (last diff %ld cycles,"
271 "maxerr %lu cycles)\n", smp_processor_id(), delta, rt);
272}
273
274static void smp_start_sync_tick_client(int cpu);
275
276static void smp_synchronize_one_tick(int cpu)
277{
278 unsigned long flags, i;
279
280 go[MASTER] = 0;
281
282 smp_start_sync_tick_client(cpu);
283
284 /* wait for client to be ready */
285 while (!go[MASTER])
David S. Miller4f071182005-08-29 12:46:22 -0700286 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /* now let the client proceed into his loop */
289 go[MASTER] = 0;
David S. Miller4f071182005-08-29 12:46:22 -0700290 membar_storeload();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 spin_lock_irqsave(&itc_sync_lock, flags);
293 {
294 for (i = 0; i < NUM_ROUNDS*NUM_ITERS; i++) {
295 while (!go[MASTER])
David S. Miller4f071182005-08-29 12:46:22 -0700296 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 go[MASTER] = 0;
David S. Miller4f071182005-08-29 12:46:22 -0700298 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 go[SLAVE] = tick_ops->get_tick();
David S. Miller4f071182005-08-29 12:46:22 -0700300 membar_storeload();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
303 spin_unlock_irqrestore(&itc_sync_lock, flags);
304}
305
306extern unsigned long sparc64_cpu_startup;
307
308/* The OBP cpu startup callback truncates the 3rd arg cookie to
309 * 32-bits (I think) so to be safe we have it read the pointer
310 * contained here so we work on >4GB machines. -DaveM
311 */
312static struct thread_info *cpu_new_thread = NULL;
313
314static int __devinit smp_boot_one_cpu(unsigned int cpu)
315{
316 unsigned long entry =
317 (unsigned long)(&sparc64_cpu_startup);
318 unsigned long cookie =
319 (unsigned long)(&cpu_new_thread);
320 struct task_struct *p;
321 int timeout, ret, cpu_node;
322
323 p = fork_idle(cpu);
324 callin_flag = 0;
Al Virof3169642006-01-12 01:05:42 -0800325 cpu_new_thread = task_thread_info(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 cpu_set(cpu, cpu_callout_map);
327
328 cpu_find_by_mid(cpu, &cpu_node);
329 prom_startcpu(cpu_node, entry, cookie);
330
331 for (timeout = 0; timeout < 5000000; timeout++) {
332 if (callin_flag)
333 break;
334 udelay(100);
335 }
336 if (callin_flag) {
337 ret = 0;
338 } else {
339 printk("Processor %d is stuck.\n", cpu);
340 cpu_clear(cpu, cpu_callout_map);
341 ret = -ENODEV;
342 }
343 cpu_new_thread = NULL;
344
345 return ret;
346}
347
348static void spitfire_xcall_helper(u64 data0, u64 data1, u64 data2, u64 pstate, unsigned long cpu)
349{
350 u64 result, target;
351 int stuck, tmp;
352
353 if (this_is_starfire) {
354 /* map to real upaid */
355 cpu = (((cpu & 0x3c) << 1) |
356 ((cpu & 0x40) >> 4) |
357 (cpu & 0x3));
358 }
359
360 target = (cpu << 14) | 0x70;
361again:
362 /* Ok, this is the real Spitfire Errata #54.
363 * One must read back from a UDB internal register
364 * after writes to the UDB interrupt dispatch, but
365 * before the membar Sync for that write.
366 * So we use the high UDB control register (ASI 0x7f,
367 * ADDR 0x20) for the dummy read. -DaveM
368 */
369 tmp = 0x40;
370 __asm__ __volatile__(
371 "wrpr %1, %2, %%pstate\n\t"
372 "stxa %4, [%0] %3\n\t"
373 "stxa %5, [%0+%8] %3\n\t"
374 "add %0, %8, %0\n\t"
375 "stxa %6, [%0+%8] %3\n\t"
376 "membar #Sync\n\t"
377 "stxa %%g0, [%7] %3\n\t"
378 "membar #Sync\n\t"
379 "mov 0x20, %%g1\n\t"
380 "ldxa [%%g1] 0x7f, %%g0\n\t"
381 "membar #Sync"
382 : "=r" (tmp)
383 : "r" (pstate), "i" (PSTATE_IE), "i" (ASI_INTR_W),
384 "r" (data0), "r" (data1), "r" (data2), "r" (target),
385 "r" (0x10), "0" (tmp)
386 : "g1");
387
388 /* NOTE: PSTATE_IE is still clear. */
389 stuck = 100000;
390 do {
391 __asm__ __volatile__("ldxa [%%g0] %1, %0"
392 : "=r" (result)
393 : "i" (ASI_INTR_DISPATCH_STAT));
394 if (result == 0) {
395 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
396 : : "r" (pstate));
397 return;
398 }
399 stuck -= 1;
400 if (stuck == 0)
401 break;
402 } while (result & 0x1);
403 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
404 : : "r" (pstate));
405 if (stuck == 0) {
406 printk("CPU[%d]: mondo stuckage result[%016lx]\n",
407 smp_processor_id(), result);
408 } else {
409 udelay(2);
410 goto again;
411 }
412}
413
414static __inline__ void spitfire_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t mask)
415{
416 u64 pstate;
417 int i;
418
419 __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate));
420 for_each_cpu_mask(i, mask)
421 spitfire_xcall_helper(data0, data1, data2, pstate, i);
422}
423
424/* Cheetah now allows to send the whole 64-bytes of data in the interrupt
425 * packet, but we have no use for that. However we do take advantage of
426 * the new pipelining feature (ie. dispatch to multiple cpus simultaneously).
427 */
428static void cheetah_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t mask)
429{
430 u64 pstate, ver;
431 int nack_busy_id, is_jalapeno;
432
433 if (cpus_empty(mask))
434 return;
435
436 /* Unfortunately, someone at Sun had the brilliant idea to make the
437 * busy/nack fields hard-coded by ITID number for this Ultra-III
438 * derivative processor.
439 */
440 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
441 is_jalapeno = ((ver >> 32) == 0x003e0016);
442
443 __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate));
444
445retry:
446 __asm__ __volatile__("wrpr %0, %1, %%pstate\n\t"
447 : : "r" (pstate), "i" (PSTATE_IE));
448
449 /* Setup the dispatch data registers. */
450 __asm__ __volatile__("stxa %0, [%3] %6\n\t"
451 "stxa %1, [%4] %6\n\t"
452 "stxa %2, [%5] %6\n\t"
453 "membar #Sync\n\t"
454 : /* no outputs */
455 : "r" (data0), "r" (data1), "r" (data2),
456 "r" (0x40), "r" (0x50), "r" (0x60),
457 "i" (ASI_INTR_W));
458
459 nack_busy_id = 0;
460 {
461 int i;
462
463 for_each_cpu_mask(i, mask) {
464 u64 target = (i << 14) | 0x70;
465
466 if (!is_jalapeno)
467 target |= (nack_busy_id << 24);
468 __asm__ __volatile__(
469 "stxa %%g0, [%0] %1\n\t"
470 "membar #Sync\n\t"
471 : /* no outputs */
472 : "r" (target), "i" (ASI_INTR_W));
473 nack_busy_id++;
474 }
475 }
476
477 /* Now, poll for completion. */
478 {
479 u64 dispatch_stat;
480 long stuck;
481
482 stuck = 100000 * nack_busy_id;
483 do {
484 __asm__ __volatile__("ldxa [%%g0] %1, %0"
485 : "=r" (dispatch_stat)
486 : "i" (ASI_INTR_DISPATCH_STAT));
487 if (dispatch_stat == 0UL) {
488 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
489 : : "r" (pstate));
490 return;
491 }
492 if (!--stuck)
493 break;
494 } while (dispatch_stat & 0x5555555555555555UL);
495
496 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
497 : : "r" (pstate));
498
499 if ((dispatch_stat & ~(0x5555555555555555UL)) == 0) {
500 /* Busy bits will not clear, continue instead
501 * of freezing up on this cpu.
502 */
503 printk("CPU[%d]: mondo stuckage result[%016lx]\n",
504 smp_processor_id(), dispatch_stat);
505 } else {
506 int i, this_busy_nack = 0;
507
508 /* Delay some random time with interrupts enabled
509 * to prevent deadlock.
510 */
511 udelay(2 * nack_busy_id);
512
513 /* Clear out the mask bits for cpus which did not
514 * NACK us.
515 */
516 for_each_cpu_mask(i, mask) {
517 u64 check_mask;
518
519 if (is_jalapeno)
520 check_mask = (0x2UL << (2*i));
521 else
522 check_mask = (0x2UL <<
523 this_busy_nack);
524 if ((dispatch_stat & check_mask) == 0)
525 cpu_clear(i, mask);
526 this_busy_nack += 2;
527 }
528
529 goto retry;
530 }
531 }
532}
533
534/* Send cross call to all processors mentioned in MASK
535 * except self.
536 */
537static void smp_cross_call_masked(unsigned long *func, u32 ctx, u64 data1, u64 data2, cpumask_t mask)
538{
539 u64 data0 = (((u64)ctx)<<32 | (((u64)func) & 0xffffffff));
540 int this_cpu = get_cpu();
541
542 cpus_and(mask, mask, cpu_online_map);
543 cpu_clear(this_cpu, mask);
544
545 if (tlb_type == spitfire)
546 spitfire_xcall_deliver(data0, data1, data2, mask);
547 else
548 cheetah_xcall_deliver(data0, data1, data2, mask);
549 /* NOTE: Caller runs local copy on master. */
550
551 put_cpu();
552}
553
554extern unsigned long xcall_sync_tick;
555
556static void smp_start_sync_tick_client(int cpu)
557{
558 cpumask_t mask = cpumask_of_cpu(cpu);
559
560 smp_cross_call_masked(&xcall_sync_tick,
561 0, 0, 0, mask);
562}
563
564/* Send cross call to all processors except self. */
565#define smp_cross_call(func, ctx, data1, data2) \
566 smp_cross_call_masked(func, ctx, data1, data2, cpu_online_map)
567
568struct call_data_struct {
569 void (*func) (void *info);
570 void *info;
571 atomic_t finished;
572 int wait;
573};
574
575static DEFINE_SPINLOCK(call_lock);
576static struct call_data_struct *call_data;
577
578extern unsigned long xcall_call_function;
579
580/*
581 * You must not call this function with disabled interrupts or from a
582 * hardware interrupt handler or from a bottom half handler.
583 */
584int smp_call_function(void (*func)(void *info), void *info,
585 int nonatomic, int wait)
586{
587 struct call_data_struct data;
588 int cpus = num_online_cpus() - 1;
589 long timeout;
590
591 if (!cpus)
592 return 0;
593
594 /* Can deadlock when called with interrupts disabled */
595 WARN_ON(irqs_disabled());
596
597 data.func = func;
598 data.info = info;
599 atomic_set(&data.finished, 0);
600 data.wait = wait;
601
602 spin_lock(&call_lock);
603
604 call_data = &data;
605
606 smp_cross_call(&xcall_call_function, 0, 0, 0);
607
608 /*
609 * Wait for other cpus to complete function or at
610 * least snap the call data.
611 */
612 timeout = 1000000;
613 while (atomic_read(&data.finished) != cpus) {
614 if (--timeout <= 0)
615 goto out_timeout;
616 barrier();
617 udelay(1);
618 }
619
620 spin_unlock(&call_lock);
621
622 return 0;
623
624out_timeout:
625 spin_unlock(&call_lock);
626 printk("XCALL: Remote cpus not responding, ncpus=%ld finished=%ld\n",
627 (long) num_online_cpus() - 1L,
628 (long) atomic_read(&data.finished));
629 return 0;
630}
631
632void smp_call_function_client(int irq, struct pt_regs *regs)
633{
634 void (*func) (void *info) = call_data->func;
635 void *info = call_data->info;
636
637 clear_softint(1 << irq);
638 if (call_data->wait) {
639 /* let initiator proceed only after completion */
640 func(info);
641 atomic_inc(&call_data->finished);
642 } else {
643 /* let initiator proceed after getting data */
644 atomic_inc(&call_data->finished);
645 func(info);
646 }
647}
648
649extern unsigned long xcall_flush_tlb_mm;
650extern unsigned long xcall_flush_tlb_pending;
651extern unsigned long xcall_flush_tlb_kernel_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652extern unsigned long xcall_report_regs;
653extern unsigned long xcall_receive_signal;
654
655#ifdef DCACHE_ALIASING_POSSIBLE
656extern unsigned long xcall_flush_dcache_page_cheetah;
657#endif
658extern unsigned long xcall_flush_dcache_page_spitfire;
659
660#ifdef CONFIG_DEBUG_DCFLUSH
661extern atomic_t dcpage_flushes;
662extern atomic_t dcpage_flushes_xcall;
663#endif
664
665static __inline__ void __local_flush_dcache_page(struct page *page)
666{
667#ifdef DCACHE_ALIASING_POSSIBLE
668 __flush_dcache_page(page_address(page),
669 ((tlb_type == spitfire) &&
670 page_mapping(page) != NULL));
671#else
672 if (page_mapping(page) != NULL &&
673 tlb_type == spitfire)
674 __flush_icache_page(__pa(page_address(page)));
675#endif
676}
677
678void smp_flush_dcache_page_impl(struct page *page, int cpu)
679{
680 cpumask_t mask = cpumask_of_cpu(cpu);
681 int this_cpu = get_cpu();
682
683#ifdef CONFIG_DEBUG_DCFLUSH
684 atomic_inc(&dcpage_flushes);
685#endif
686 if (cpu == this_cpu) {
687 __local_flush_dcache_page(page);
688 } else if (cpu_online(cpu)) {
689 void *pg_addr = page_address(page);
690 u64 data0;
691
692 if (tlb_type == spitfire) {
693 data0 =
694 ((u64)&xcall_flush_dcache_page_spitfire);
695 if (page_mapping(page) != NULL)
696 data0 |= ((u64)1 << 32);
697 spitfire_xcall_deliver(data0,
698 __pa(pg_addr),
699 (u64) pg_addr,
700 mask);
701 } else {
702#ifdef DCACHE_ALIASING_POSSIBLE
703 data0 =
704 ((u64)&xcall_flush_dcache_page_cheetah);
705 cheetah_xcall_deliver(data0,
706 __pa(pg_addr),
707 0, mask);
708#endif
709 }
710#ifdef CONFIG_DEBUG_DCFLUSH
711 atomic_inc(&dcpage_flushes_xcall);
712#endif
713 }
714
715 put_cpu();
716}
717
718void flush_dcache_page_all(struct mm_struct *mm, struct page *page)
719{
720 void *pg_addr = page_address(page);
721 cpumask_t mask = cpu_online_map;
722 u64 data0;
723 int this_cpu = get_cpu();
724
725 cpu_clear(this_cpu, mask);
726
727#ifdef CONFIG_DEBUG_DCFLUSH
728 atomic_inc(&dcpage_flushes);
729#endif
730 if (cpus_empty(mask))
731 goto flush_self;
732 if (tlb_type == spitfire) {
733 data0 = ((u64)&xcall_flush_dcache_page_spitfire);
734 if (page_mapping(page) != NULL)
735 data0 |= ((u64)1 << 32);
736 spitfire_xcall_deliver(data0,
737 __pa(pg_addr),
738 (u64) pg_addr,
739 mask);
740 } else {
741#ifdef DCACHE_ALIASING_POSSIBLE
742 data0 = ((u64)&xcall_flush_dcache_page_cheetah);
743 cheetah_xcall_deliver(data0,
744 __pa(pg_addr),
745 0, mask);
746#endif
747 }
748#ifdef CONFIG_DEBUG_DCFLUSH
749 atomic_inc(&dcpage_flushes_xcall);
750#endif
751 flush_self:
752 __local_flush_dcache_page(page);
753
754 put_cpu();
755}
756
757void smp_receive_signal(int cpu)
758{
759 cpumask_t mask = cpumask_of_cpu(cpu);
760
761 if (cpu_online(cpu)) {
762 u64 data0 = (((u64)&xcall_receive_signal) & 0xffffffff);
763
764 if (tlb_type == spitfire)
765 spitfire_xcall_deliver(data0, 0, 0, mask);
766 else
767 cheetah_xcall_deliver(data0, 0, 0, mask);
768 }
769}
770
771void smp_receive_signal_client(int irq, struct pt_regs *regs)
772{
773 /* Just return, rtrap takes care of the rest. */
774 clear_softint(1 << irq);
775}
776
777void smp_report_regs(void)
778{
779 smp_cross_call(&xcall_report_regs, 0, 0, 0);
780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/* We know that the window frames of the user have been flushed
783 * to the stack before we get here because all callers of us
784 * are flush_tlb_*() routines, and these run after flush_cache_*()
785 * which performs the flushw.
786 *
787 * The SMP TLB coherency scheme we use works as follows:
788 *
789 * 1) mm->cpu_vm_mask is a bit mask of which cpus an address
790 * space has (potentially) executed on, this is the heuristic
791 * we use to avoid doing cross calls.
792 *
793 * Also, for flushing from kswapd and also for clones, we
794 * use cpu_vm_mask as the list of cpus to make run the TLB.
795 *
796 * 2) TLB context numbers are shared globally across all processors
797 * in the system, this allows us to play several games to avoid
798 * cross calls.
799 *
800 * One invariant is that when a cpu switches to a process, and
801 * that processes tsk->active_mm->cpu_vm_mask does not have the
802 * current cpu's bit set, that tlb context is flushed locally.
803 *
804 * If the address space is non-shared (ie. mm->count == 1) we avoid
805 * cross calls when we want to flush the currently running process's
806 * tlb state. This is done by clearing all cpu bits except the current
807 * processor's in current->active_mm->cpu_vm_mask and performing the
808 * flush locally only. This will force any subsequent cpus which run
809 * this task to flush the context from the local tlb if the process
810 * migrates to another cpu (again).
811 *
812 * 3) For shared address spaces (threads) and swapping we bite the
813 * bullet for most cases and perform the cross call (but only to
814 * the cpus listed in cpu_vm_mask).
815 *
816 * The performance gain from "optimizing" away the cross call for threads is
817 * questionable (in theory the big win for threads is the massive sharing of
818 * address space state across processors).
819 */
David S. Miller62dbec72005-11-07 14:09:58 -0800820
821/* This currently is only used by the hugetlb arch pre-fault
822 * hook on UltraSPARC-III+ and later when changing the pagesize
823 * bits of the context register for an address space.
824 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825void smp_flush_tlb_mm(struct mm_struct *mm)
826{
David S. Miller62dbec72005-11-07 14:09:58 -0800827 u32 ctx = CTX_HWBITS(mm->context);
828 int cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
David S. Miller62dbec72005-11-07 14:09:58 -0800830 if (atomic_read(&mm->mm_users) == 1) {
831 mm->cpu_vm_mask = cpumask_of_cpu(cpu);
832 goto local_flush_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
David S. Miller62dbec72005-11-07 14:09:58 -0800834
835 smp_cross_call_masked(&xcall_flush_tlb_mm,
836 ctx, 0, 0,
837 mm->cpu_vm_mask);
838
839local_flush_and_out:
840 __flush_tlb_mm(ctx, SECONDARY_CONTEXT);
841
842 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
845void smp_flush_tlb_pending(struct mm_struct *mm, unsigned long nr, unsigned long *vaddrs)
846{
847 u32 ctx = CTX_HWBITS(mm->context);
848 int cpu = get_cpu();
849
Hugh Dickinsdedeb002005-11-07 14:09:01 -0800850 if (mm == current->active_mm && atomic_read(&mm->mm_users) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 mm->cpu_vm_mask = cpumask_of_cpu(cpu);
Hugh Dickinsdedeb002005-11-07 14:09:01 -0800852 else
853 smp_cross_call_masked(&xcall_flush_tlb_pending,
854 ctx, nr, (unsigned long) vaddrs,
855 mm->cpu_vm_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 __flush_tlb_pending(ctx, nr, vaddrs);
858
859 put_cpu();
860}
861
862void smp_flush_tlb_kernel_range(unsigned long start, unsigned long end)
863{
864 start &= PAGE_MASK;
865 end = PAGE_ALIGN(end);
866 if (start != end) {
867 smp_cross_call(&xcall_flush_tlb_kernel_range,
868 0, start, end);
869
870 __flush_tlb_kernel_range(start, end);
871 }
872}
873
874/* CPU capture. */
875/* #define CAPTURE_DEBUG */
876extern unsigned long xcall_capture;
877
878static atomic_t smp_capture_depth = ATOMIC_INIT(0);
879static atomic_t smp_capture_registry = ATOMIC_INIT(0);
880static unsigned long penguins_are_doing_time;
881
882void smp_capture(void)
883{
884 int result = atomic_add_ret(1, &smp_capture_depth);
885
886 if (result == 1) {
887 int ncpus = num_online_cpus();
888
889#ifdef CAPTURE_DEBUG
890 printk("CPU[%d]: Sending penguins to jail...",
891 smp_processor_id());
892#endif
893 penguins_are_doing_time = 1;
David S. Miller4f071182005-08-29 12:46:22 -0700894 membar_storestore_loadstore();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 atomic_inc(&smp_capture_registry);
896 smp_cross_call(&xcall_capture, 0, 0, 0);
897 while (atomic_read(&smp_capture_registry) != ncpus)
David S. Miller4f071182005-08-29 12:46:22 -0700898 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899#ifdef CAPTURE_DEBUG
900 printk("done\n");
901#endif
902 }
903}
904
905void smp_release(void)
906{
907 if (atomic_dec_and_test(&smp_capture_depth)) {
908#ifdef CAPTURE_DEBUG
909 printk("CPU[%d]: Giving pardon to "
910 "imprisoned penguins\n",
911 smp_processor_id());
912#endif
913 penguins_are_doing_time = 0;
David S. Miller4f071182005-08-29 12:46:22 -0700914 membar_storeload_storestore();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 atomic_dec(&smp_capture_registry);
916 }
917}
918
919/* Imprisoned penguins run with %pil == 15, but PSTATE_IE set, so they
920 * can service tlb flush xcalls...
921 */
922extern void prom_world(int);
923extern void save_alternate_globals(unsigned long *);
924extern void restore_alternate_globals(unsigned long *);
925void smp_penguin_jailcell(int irq, struct pt_regs *regs)
926{
927 unsigned long global_save[24];
928
929 clear_softint(1 << irq);
930
931 preempt_disable();
932
933 __asm__ __volatile__("flushw");
934 save_alternate_globals(global_save);
935 prom_world(1);
936 atomic_inc(&smp_capture_registry);
David S. Miller4f071182005-08-29 12:46:22 -0700937 membar_storeload_storestore();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 while (penguins_are_doing_time)
David S. Miller4f071182005-08-29 12:46:22 -0700939 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 restore_alternate_globals(global_save);
941 atomic_dec(&smp_capture_registry);
942 prom_world(0);
943
944 preempt_enable();
945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947#define prof_multiplier(__cpu) cpu_data(__cpu).multiplier
948#define prof_counter(__cpu) cpu_data(__cpu).counter
949
950void smp_percpu_timer_interrupt(struct pt_regs *regs)
951{
952 unsigned long compare, tick, pstate;
953 int cpu = smp_processor_id();
954 int user = user_mode(regs);
955
956 /*
957 * Check for level 14 softint.
958 */
959 {
960 unsigned long tick_mask = tick_ops->softint_mask;
961
962 if (!(get_softint() & tick_mask)) {
963 extern void handler_irq(int, struct pt_regs *);
964
965 handler_irq(14, regs);
966 return;
967 }
968 clear_softint(tick_mask);
969 }
970
971 do {
972 profile_tick(CPU_PROFILING, regs);
973 if (!--prof_counter(cpu)) {
974 irq_enter();
975
976 if (cpu == boot_cpu_id) {
977 kstat_this_cpu.irqs[0]++;
978 timer_tick_interrupt(regs);
979 }
980
981 update_process_times(user);
982
983 irq_exit();
984
985 prof_counter(cpu) = prof_multiplier(cpu);
986 }
987
988 /* Guarantee that the following sequences execute
989 * uninterrupted.
990 */
991 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
992 "wrpr %0, %1, %%pstate"
993 : "=r" (pstate)
994 : "i" (PSTATE_IE));
995
996 compare = tick_ops->add_compare(current_tick_offset);
997 tick = tick_ops->get_tick();
998
999 /* Restore PSTATE_IE. */
1000 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
1001 : /* no outputs */
1002 : "r" (pstate));
1003 } while (time_after_eq(tick, compare));
1004}
1005
1006static void __init smp_setup_percpu_timer(void)
1007{
1008 int cpu = smp_processor_id();
1009 unsigned long pstate;
1010
1011 prof_counter(cpu) = prof_multiplier(cpu) = 1;
1012
1013 /* Guarantee that the following sequences execute
1014 * uninterrupted.
1015 */
1016 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
1017 "wrpr %0, %1, %%pstate"
1018 : "=r" (pstate)
1019 : "i" (PSTATE_IE));
1020
1021 tick_ops->init_tick(current_tick_offset);
1022
1023 /* Restore PSTATE_IE. */
1024 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
1025 : /* no outputs */
1026 : "r" (pstate));
1027}
1028
1029void __init smp_tick_init(void)
1030{
1031 boot_cpu_id = hard_smp_processor_id();
1032 current_tick_offset = timer_tick_offset;
1033
1034 cpu_set(boot_cpu_id, cpu_online_map);
1035 prof_counter(boot_cpu_id) = prof_multiplier(boot_cpu_id) = 1;
1036}
1037
1038/* /proc/profile writes can call this, don't __init it please. */
1039static DEFINE_SPINLOCK(prof_setup_lock);
1040
1041int setup_profiling_timer(unsigned int multiplier)
1042{
1043 unsigned long flags;
1044 int i;
1045
1046 if ((!multiplier) || (timer_tick_offset / multiplier) < 1000)
1047 return -EINVAL;
1048
1049 spin_lock_irqsave(&prof_setup_lock, flags);
1050 for (i = 0; i < NR_CPUS; i++)
1051 prof_multiplier(i) = multiplier;
1052 current_tick_offset = (timer_tick_offset / multiplier);
1053 spin_unlock_irqrestore(&prof_setup_lock, flags);
1054
1055 return 0;
1056}
1057
David S. Miller7abea922006-02-25 13:39:56 -08001058/* Constrain the number of cpus to max_cpus. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059void __init smp_prepare_cpus(unsigned int max_cpus)
1060{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (num_possible_cpus() > max_cpus) {
David S. Miller7abea922006-02-25 13:39:56 -08001062 int instance, mid;
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 instance = 0;
1065 while (!cpu_find_by_instance(instance, NULL, &mid)) {
1066 if (mid != boot_cpu_id) {
1067 cpu_clear(mid, phys_cpu_present_map);
1068 if (num_possible_cpus() <= max_cpus)
1069 break;
1070 }
1071 instance++;
1072 }
1073 }
1074
1075 smp_store_cpu_info(boot_cpu_id);
1076}
1077
David S. Miller7abea922006-02-25 13:39:56 -08001078/* Set this up early so that things like the scheduler can init
1079 * properly. We use the same cpu mask for both the present and
1080 * possible cpu map.
1081 */
1082void __init smp_setup_cpu_possible_map(void)
1083{
1084 int instance, mid;
1085
1086 instance = 0;
1087 while (!cpu_find_by_instance(instance, NULL, &mid)) {
1088 if (mid < NR_CPUS)
1089 cpu_set(mid, phys_cpu_present_map);
1090 instance++;
1091 }
1092}
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094void __devinit smp_prepare_boot_cpu(void)
1095{
David S. Miller56fb4df2006-02-26 23:24:22 -08001096 int cpu = hard_smp_processor_id();
1097
1098 if (cpu >= NR_CPUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 prom_printf("Serious problem, boot cpu id >= NR_CPUS\n");
1100 prom_halt();
1101 }
1102
David S. Miller56fb4df2006-02-26 23:24:22 -08001103 current_thread_info()->cpu = cpu;
1104 __local_per_cpu_offset = __per_cpu_offset(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 cpu_set(smp_processor_id(), cpu_online_map);
1107 cpu_set(smp_processor_id(), phys_cpu_present_map);
1108}
1109
1110int __devinit __cpu_up(unsigned int cpu)
1111{
1112 int ret = smp_boot_one_cpu(cpu);
1113
1114 if (!ret) {
1115 cpu_set(cpu, smp_commenced_mask);
1116 while (!cpu_isset(cpu, cpu_online_map))
1117 mb();
1118 if (!cpu_isset(cpu, cpu_online_map)) {
1119 ret = -ENODEV;
1120 } else {
1121 smp_synchronize_one_tick(cpu);
1122 }
1123 }
1124 return ret;
1125}
1126
1127void __init smp_cpus_done(unsigned int max_cpus)
1128{
1129 unsigned long bogosum = 0;
1130 int i;
1131
1132 for (i = 0; i < NR_CPUS; i++) {
1133 if (cpu_online(i))
1134 bogosum += cpu_data(i).udelay_val;
1135 }
1136 printk("Total of %ld processors activated "
1137 "(%lu.%02lu BogoMIPS).\n",
1138 (long) num_online_cpus(),
1139 bogosum/(500000/HZ),
1140 (bogosum/(5000/HZ))%100);
1141}
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143void smp_send_reschedule(int cpu)
1144{
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001145 smp_receive_signal(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
1148/* This is a nop because we capture all other cpus
1149 * anyways when making the PROM active.
1150 */
1151void smp_send_stop(void)
1152{
1153}
1154
David S. Millerd369ddd2005-07-10 15:45:11 -07001155unsigned long __per_cpu_base __read_mostly;
1156unsigned long __per_cpu_shift __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158EXPORT_SYMBOL(__per_cpu_base);
1159EXPORT_SYMBOL(__per_cpu_shift);
1160
1161void __init setup_per_cpu_areas(void)
1162{
1163 unsigned long goal, size, i;
1164 char *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 /* Copy section for each CPU (we discard the original) */
David S. Miller56fb4df2006-02-26 23:24:22 -08001167 goal = ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168#ifdef CONFIG_MODULES
1169 if (goal < PERCPU_ENOUGH_ROOM)
1170 goal = PERCPU_ENOUGH_ROOM;
1171#endif
1172 __per_cpu_shift = 0;
1173 for (size = 1UL; size < goal; size <<= 1UL)
1174 __per_cpu_shift++;
1175
David S. Miller56fb4df2006-02-26 23:24:22 -08001176 ptr = alloc_bootmem(size * NR_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 __per_cpu_base = ptr - __per_cpu_start;
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 for (i = 0; i < NR_CPUS; i++, ptr += size)
1181 memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}