blob: b448d33321c6d96c4732c4e6349a98671a56ec01 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* smp.c: Sparc64 SMP support.
2 *
David S. Miller27a2ef32007-07-14 00:58:53 -07003 * Copyright (C) 1997, 2007 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/interrupt.h>
14#include <linux/kernel_stat.h>
15#include <linux/delay.h>
16#include <linux/init.h>
17#include <linux/spinlock.h>
18#include <linux/fs.h>
19#include <linux/seq_file.h>
20#include <linux/cache.h>
21#include <linux/jiffies.h>
22#include <linux/profile.h>
23#include <linux/bootmem.h>
24
25#include <asm/head.h>
26#include <asm/ptrace.h>
27#include <asm/atomic.h>
28#include <asm/tlbflush.h>
29#include <asm/mmu_context.h>
30#include <asm/cpudata.h>
David S. Miller27a2ef32007-07-14 00:58:53 -070031#include <asm/hvtramp.h>
32#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/irq.h>
Al Viro6d24c8d2006-10-08 08:23:28 -040035#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/page.h>
37#include <asm/pgtable.h>
38#include <asm/oplib.h>
39#include <asm/uaccess.h>
40#include <asm/timer.h>
41#include <asm/starfire.h>
42#include <asm/tlb.h>
David S. Miller56fb4df2006-02-26 23:24:22 -080043#include <asm/sections.h>
David S. Miller07f8e5f2006-06-21 23:34:02 -070044#include <asm/prom.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070045#include <asm/mdesc.h>
David S. Miller4f0234f2007-07-13 16:03:42 -070046#include <asm/ldc.h>
David S. Millere02044092007-07-16 03:49:40 -070047#include <asm/hypervisor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049extern void calibrate_delay(void);
50
David S. Millera2f9f6b2007-06-04 21:48:33 -070051int sparc64_multi_core __read_mostly;
52
David S. Miller4f0234f2007-07-13 16:03:42 -070053cpumask_t cpu_possible_map __read_mostly = CPU_MASK_NONE;
Andrew Mortonc12a8282005-07-12 12:09:43 -070054cpumask_t cpu_online_map __read_mostly = CPU_MASK_NONE;
David S. Miller8935dce2006-03-08 16:09:19 -080055cpumask_t cpu_sibling_map[NR_CPUS] __read_mostly =
56 { [0 ... NR_CPUS-1] = CPU_MASK_NONE };
David S. Millerf78eae22007-06-04 17:01:39 -070057cpumask_t cpu_core_map[NR_CPUS] __read_mostly =
58 { [0 ... NR_CPUS-1] = CPU_MASK_NONE };
David S. Miller4f0234f2007-07-13 16:03:42 -070059
60EXPORT_SYMBOL(cpu_possible_map);
61EXPORT_SYMBOL(cpu_online_map);
62EXPORT_SYMBOL(cpu_sibling_map);
63EXPORT_SYMBOL(cpu_core_map);
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static cpumask_t smp_commenced_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67void smp_info(struct seq_file *m)
68{
69 int i;
70
71 seq_printf(m, "State:\n");
Andrew Morton394e3902006-03-23 03:01:05 -080072 for_each_online_cpu(i)
73 seq_printf(m, "CPU%d:\t\tonline\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76void smp_bogo(struct seq_file *m)
77{
78 int i;
79
Andrew Morton394e3902006-03-23 03:01:05 -080080 for_each_online_cpu(i)
81 seq_printf(m,
Andrew Morton394e3902006-03-23 03:01:05 -080082 "Cpu%dClkTck\t: %016lx\n",
Andrew Morton394e3902006-03-23 03:01:05 -080083 i, cpu_data(i).clock_tick);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
David S. Millere02044092007-07-16 03:49:40 -070086static __cacheline_aligned_in_smp DEFINE_SPINLOCK(call_lock);
87
David S. Miller112f4872007-03-05 15:28:37 -080088extern void setup_sparc64_timer(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static volatile unsigned long callin_flag = 0;
91
David S. Miller4f0234f2007-07-13 16:03:42 -070092void __devinit smp_callin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 int cpuid = hard_smp_processor_id();
95
David S. Miller56fb4df2006-02-26 23:24:22 -080096 __local_per_cpu_offset = __per_cpu_offset(cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David S. Miller4a07e642006-02-14 13:49:32 -080098 if (tlb_type == hypervisor)
David S. Miller490384e2006-02-11 14:41:18 -080099 sun4v_ktsb_register();
David S. Miller481295f2006-02-07 21:51:08 -0800100
David S. Miller56fb4df2006-02-26 23:24:22 -0800101 __flush_tlb_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
David S. Miller112f4872007-03-05 15:28:37 -0800103 setup_sparc64_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
David S. Miller816242d2005-05-23 15:52:08 -0700105 if (cheetah_pcache_forced_on)
106 cheetah_enable_pcache();
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 local_irq_enable();
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 callin_flag = 1;
111 __asm__ __volatile__("membar #Sync\n\t"
112 "flush %%g6" : : : "memory");
113
114 /* Clear this or we will die instantly when we
115 * schedule back to this idler...
116 */
David S. Millerdb7d9a42005-07-24 19:36:26 -0700117 current_thread_info()->new_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 /* Attach to the address space of init_task. */
120 atomic_inc(&init_mm.mm_count);
121 current->active_mm = &init_mm;
122
123 while (!cpu_isset(cpuid, smp_commenced_mask))
David S. Miller4f071182005-08-29 12:46:22 -0700124 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
David S. Millere02044092007-07-16 03:49:40 -0700126 spin_lock(&call_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 cpu_set(cpuid, cpu_online_map);
David S. Millere02044092007-07-16 03:49:40 -0700128 spin_unlock(&call_lock);
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800129
130 /* idle thread is expected to have preempt disabled */
131 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134void cpu_panic(void)
135{
136 printk("CPU[%d]: Returns from cpu_idle!\n", smp_processor_id());
137 panic("SMP bolixed\n");
138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/* This tick register synchronization scheme is taken entirely from
141 * the ia64 port, see arch/ia64/kernel/smpboot.c for details and credit.
142 *
143 * The only change I've made is to rework it so that the master
144 * initiates the synchonization instead of the slave. -DaveM
145 */
146
147#define MASTER 0
148#define SLAVE (SMP_CACHE_BYTES/sizeof(unsigned long))
149
150#define NUM_ROUNDS 64 /* magic value */
151#define NUM_ITERS 5 /* likewise */
152
153static DEFINE_SPINLOCK(itc_sync_lock);
154static unsigned long go[SLAVE + 1];
155
156#define DEBUG_TICK_SYNC 0
157
158static inline long get_delta (long *rt, long *master)
159{
160 unsigned long best_t0 = 0, best_t1 = ~0UL, best_tm = 0;
161 unsigned long tcenter, t0, t1, tm;
162 unsigned long i;
163
164 for (i = 0; i < NUM_ITERS; i++) {
165 t0 = tick_ops->get_tick();
166 go[MASTER] = 1;
David S. Miller4f071182005-08-29 12:46:22 -0700167 membar_storeload();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 while (!(tm = go[SLAVE]))
David S. Miller4f071182005-08-29 12:46:22 -0700169 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 go[SLAVE] = 0;
David S. Miller4f071182005-08-29 12:46:22 -0700171 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 t1 = tick_ops->get_tick();
173
174 if (t1 - t0 < best_t1 - best_t0)
175 best_t0 = t0, best_t1 = t1, best_tm = tm;
176 }
177
178 *rt = best_t1 - best_t0;
179 *master = best_tm - best_t0;
180
181 /* average best_t0 and best_t1 without overflow: */
182 tcenter = (best_t0/2 + best_t1/2);
183 if (best_t0 % 2 + best_t1 % 2 == 2)
184 tcenter++;
185 return tcenter - best_tm;
186}
187
188void smp_synchronize_tick_client(void)
189{
190 long i, delta, adj, adjust_latency = 0, done = 0;
191 unsigned long flags, rt, master_time_stamp, bound;
192#if DEBUG_TICK_SYNC
193 struct {
194 long rt; /* roundtrip time */
195 long master; /* master's timestamp */
196 long diff; /* difference between midpoint and master's timestamp */
197 long lat; /* estimate of itc adjustment latency */
198 } t[NUM_ROUNDS];
199#endif
200
201 go[MASTER] = 1;
202
203 while (go[MASTER])
David S. Miller4f071182005-08-29 12:46:22 -0700204 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 local_irq_save(flags);
207 {
208 for (i = 0; i < NUM_ROUNDS; i++) {
209 delta = get_delta(&rt, &master_time_stamp);
210 if (delta == 0) {
211 done = 1; /* let's lock on to this... */
212 bound = rt;
213 }
214
215 if (!done) {
216 if (i > 0) {
217 adjust_latency += -delta;
218 adj = -delta + adjust_latency/4;
219 } else
220 adj = -delta;
221
David S. Miller112f4872007-03-05 15:28:37 -0800222 tick_ops->add_tick(adj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224#if DEBUG_TICK_SYNC
225 t[i].rt = rt;
226 t[i].master = master_time_stamp;
227 t[i].diff = delta;
228 t[i].lat = adjust_latency/4;
229#endif
230 }
231 }
232 local_irq_restore(flags);
233
234#if DEBUG_TICK_SYNC
235 for (i = 0; i < NUM_ROUNDS; i++)
236 printk("rt=%5ld master=%5ld diff=%5ld adjlat=%5ld\n",
237 t[i].rt, t[i].master, t[i].diff, t[i].lat);
238#endif
239
240 printk(KERN_INFO "CPU %d: synchronized TICK with master CPU (last diff %ld cycles,"
241 "maxerr %lu cycles)\n", smp_processor_id(), delta, rt);
242}
243
244static void smp_start_sync_tick_client(int cpu);
245
246static void smp_synchronize_one_tick(int cpu)
247{
248 unsigned long flags, i;
249
250 go[MASTER] = 0;
251
252 smp_start_sync_tick_client(cpu);
253
254 /* wait for client to be ready */
255 while (!go[MASTER])
David S. Miller4f071182005-08-29 12:46:22 -0700256 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /* now let the client proceed into his loop */
259 go[MASTER] = 0;
David S. Miller4f071182005-08-29 12:46:22 -0700260 membar_storeload();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 spin_lock_irqsave(&itc_sync_lock, flags);
263 {
264 for (i = 0; i < NUM_ROUNDS*NUM_ITERS; i++) {
265 while (!go[MASTER])
David S. Miller4f071182005-08-29 12:46:22 -0700266 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 go[MASTER] = 0;
David S. Miller4f071182005-08-29 12:46:22 -0700268 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 go[SLAVE] = tick_ops->get_tick();
David S. Miller4f071182005-08-29 12:46:22 -0700270 membar_storeload();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272 }
273 spin_unlock_irqrestore(&itc_sync_lock, flags);
274}
275
David S. Millerb14f5c12007-07-14 00:45:16 -0700276#if defined(CONFIG_SUN_LDOMS) && defined(CONFIG_HOTPLUG_CPU)
David S. Miller27a2ef32007-07-14 00:58:53 -0700277/* XXX Put this in some common place. XXX */
278static unsigned long kimage_addr_to_ra(void *p)
279{
280 unsigned long val = (unsigned long) p;
281
282 return kern_base + (val - KERNBASE);
283}
284
David S. Millerb14f5c12007-07-14 00:45:16 -0700285static void ldom_startcpu_cpuid(unsigned int cpu, unsigned long thread_reg)
286{
287 extern unsigned long sparc64_ttable_tl0;
288 extern unsigned long kern_locked_tte_data;
289 extern int bigkernel;
290 struct hvtramp_descr *hdesc;
291 unsigned long trampoline_ra;
292 struct trap_per_cpu *tb;
293 u64 tte_vaddr, tte_data;
294 unsigned long hv_err;
295
296 hdesc = kzalloc(sizeof(*hdesc), GFP_KERNEL);
297 if (!hdesc) {
David S. Miller27a2ef32007-07-14 00:58:53 -0700298 printk(KERN_ERR "ldom_startcpu_cpuid: Cannot allocate "
David S. Millerb14f5c12007-07-14 00:45:16 -0700299 "hvtramp_descr.\n");
300 return;
301 }
302
303 hdesc->cpu = cpu;
304 hdesc->num_mappings = (bigkernel ? 2 : 1);
305
306 tb = &trap_block[cpu];
307 tb->hdesc = hdesc;
308
309 hdesc->fault_info_va = (unsigned long) &tb->fault_info;
310 hdesc->fault_info_pa = kimage_addr_to_ra(&tb->fault_info);
311
312 hdesc->thread_reg = thread_reg;
313
314 tte_vaddr = (unsigned long) KERNBASE;
315 tte_data = kern_locked_tte_data;
316
317 hdesc->maps[0].vaddr = tte_vaddr;
318 hdesc->maps[0].tte = tte_data;
319 if (bigkernel) {
320 tte_vaddr += 0x400000;
321 tte_data += 0x400000;
322 hdesc->maps[1].vaddr = tte_vaddr;
323 hdesc->maps[1].tte = tte_data;
324 }
325
326 trampoline_ra = kimage_addr_to_ra(hv_cpu_startup);
327
328 hv_err = sun4v_cpu_start(cpu, trampoline_ra,
329 kimage_addr_to_ra(&sparc64_ttable_tl0),
330 __pa(hdesc));
David S. Millere02044092007-07-16 03:49:40 -0700331 if (hv_err)
332 printk(KERN_ERR "ldom_startcpu_cpuid: sun4v_cpu_start() "
333 "gives error %lu\n", hv_err);
David S. Millerb14f5c12007-07-14 00:45:16 -0700334}
335#endif
336
David S. Miller72aff532006-02-17 01:29:17 -0800337extern void sun4v_init_mondo_queues(int use_bootmem, int cpu, int alloc, int load);
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339extern unsigned long sparc64_cpu_startup;
340
341/* The OBP cpu startup callback truncates the 3rd arg cookie to
342 * 32-bits (I think) so to be safe we have it read the pointer
343 * contained here so we work on >4GB machines. -DaveM
344 */
345static struct thread_info *cpu_new_thread = NULL;
346
347static int __devinit smp_boot_one_cpu(unsigned int cpu)
348{
David S. Millerb37d40d2007-07-15 01:08:03 -0700349 struct trap_per_cpu *tb = &trap_block[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 unsigned long entry =
351 (unsigned long)(&sparc64_cpu_startup);
352 unsigned long cookie =
353 (unsigned long)(&cpu_new_thread);
354 struct task_struct *p;
David S. Miller7890f792006-02-15 02:26:54 -0800355 int timeout, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 p = fork_idle(cpu);
358 callin_flag = 0;
Al Virof3169642006-01-12 01:05:42 -0800359 cpu_new_thread = task_thread_info(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
David S. Miller7890f792006-02-15 02:26:54 -0800361 if (tlb_type == hypervisor) {
David S. Miller72aff532006-02-17 01:29:17 -0800362 /* Alloc the mondo queues, cpu will load them. */
363 sun4v_init_mondo_queues(0, cpu, 1, 0);
364
David S. Millerb14f5c12007-07-14 00:45:16 -0700365#if defined(CONFIG_SUN_LDOMS) && defined(CONFIG_HOTPLUG_CPU)
David S. Miller4f0234f2007-07-13 16:03:42 -0700366 if (ldom_domaining_enabled)
367 ldom_startcpu_cpuid(cpu,
368 (unsigned long) cpu_new_thread);
369 else
370#endif
371 prom_startcpu_cpuid(cpu, entry, cookie);
David S. Miller7890f792006-02-15 02:26:54 -0800372 } else {
David S. Miller5cbc3072007-05-25 15:49:59 -0700373 struct device_node *dp = of_find_node_by_cpuid(cpu);
David S. Miller7890f792006-02-15 02:26:54 -0800374
David S. Miller07f8e5f2006-06-21 23:34:02 -0700375 prom_startcpu(dp->node, entry, cookie);
David S. Miller7890f792006-02-15 02:26:54 -0800376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
David S. Miller4f0234f2007-07-13 16:03:42 -0700378 for (timeout = 0; timeout < 50000; timeout++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (callin_flag)
380 break;
381 udelay(100);
382 }
David S. Miller72aff532006-02-17 01:29:17 -0800383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (callin_flag) {
385 ret = 0;
386 } else {
387 printk("Processor %d is stuck.\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 ret = -ENODEV;
389 }
390 cpu_new_thread = NULL;
391
David S. Millerb37d40d2007-07-15 01:08:03 -0700392 if (tb->hdesc) {
393 kfree(tb->hdesc);
394 tb->hdesc = NULL;
395 }
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return ret;
398}
399
400static void spitfire_xcall_helper(u64 data0, u64 data1, u64 data2, u64 pstate, unsigned long cpu)
401{
402 u64 result, target;
403 int stuck, tmp;
404
405 if (this_is_starfire) {
406 /* map to real upaid */
407 cpu = (((cpu & 0x3c) << 1) |
408 ((cpu & 0x40) >> 4) |
409 (cpu & 0x3));
410 }
411
412 target = (cpu << 14) | 0x70;
413again:
414 /* Ok, this is the real Spitfire Errata #54.
415 * One must read back from a UDB internal register
416 * after writes to the UDB interrupt dispatch, but
417 * before the membar Sync for that write.
418 * So we use the high UDB control register (ASI 0x7f,
419 * ADDR 0x20) for the dummy read. -DaveM
420 */
421 tmp = 0x40;
422 __asm__ __volatile__(
423 "wrpr %1, %2, %%pstate\n\t"
424 "stxa %4, [%0] %3\n\t"
425 "stxa %5, [%0+%8] %3\n\t"
426 "add %0, %8, %0\n\t"
427 "stxa %6, [%0+%8] %3\n\t"
428 "membar #Sync\n\t"
429 "stxa %%g0, [%7] %3\n\t"
430 "membar #Sync\n\t"
431 "mov 0x20, %%g1\n\t"
432 "ldxa [%%g1] 0x7f, %%g0\n\t"
433 "membar #Sync"
434 : "=r" (tmp)
435 : "r" (pstate), "i" (PSTATE_IE), "i" (ASI_INTR_W),
436 "r" (data0), "r" (data1), "r" (data2), "r" (target),
437 "r" (0x10), "0" (tmp)
438 : "g1");
439
440 /* NOTE: PSTATE_IE is still clear. */
441 stuck = 100000;
442 do {
443 __asm__ __volatile__("ldxa [%%g0] %1, %0"
444 : "=r" (result)
445 : "i" (ASI_INTR_DISPATCH_STAT));
446 if (result == 0) {
447 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
448 : : "r" (pstate));
449 return;
450 }
451 stuck -= 1;
452 if (stuck == 0)
453 break;
454 } while (result & 0x1);
455 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
456 : : "r" (pstate));
457 if (stuck == 0) {
458 printk("CPU[%d]: mondo stuckage result[%016lx]\n",
459 smp_processor_id(), result);
460 } else {
461 udelay(2);
462 goto again;
463 }
464}
465
466static __inline__ void spitfire_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t mask)
467{
468 u64 pstate;
469 int i;
470
471 __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate));
472 for_each_cpu_mask(i, mask)
473 spitfire_xcall_helper(data0, data1, data2, pstate, i);
474}
475
476/* Cheetah now allows to send the whole 64-bytes of data in the interrupt
477 * packet, but we have no use for that. However we do take advantage of
478 * the new pipelining feature (ie. dispatch to multiple cpus simultaneously).
479 */
480static void cheetah_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t mask)
481{
482 u64 pstate, ver;
David S. Miller22adb352007-05-26 01:14:43 -0700483 int nack_busy_id, is_jbus, need_more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 if (cpus_empty(mask))
486 return;
487
488 /* Unfortunately, someone at Sun had the brilliant idea to make the
489 * busy/nack fields hard-coded by ITID number for this Ultra-III
490 * derivative processor.
491 */
492 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
David S. Miller92704a12006-02-26 23:27:19 -0800493 is_jbus = ((ver >> 32) == __JALAPENO_ID ||
494 (ver >> 32) == __SERRANO_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate));
497
498retry:
David S. Miller22adb352007-05-26 01:14:43 -0700499 need_more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 __asm__ __volatile__("wrpr %0, %1, %%pstate\n\t"
501 : : "r" (pstate), "i" (PSTATE_IE));
502
503 /* Setup the dispatch data registers. */
504 __asm__ __volatile__("stxa %0, [%3] %6\n\t"
505 "stxa %1, [%4] %6\n\t"
506 "stxa %2, [%5] %6\n\t"
507 "membar #Sync\n\t"
508 : /* no outputs */
509 : "r" (data0), "r" (data1), "r" (data2),
510 "r" (0x40), "r" (0x50), "r" (0x60),
511 "i" (ASI_INTR_W));
512
513 nack_busy_id = 0;
514 {
515 int i;
516
517 for_each_cpu_mask(i, mask) {
518 u64 target = (i << 14) | 0x70;
519
David S. Miller92704a12006-02-26 23:27:19 -0800520 if (!is_jbus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 target |= (nack_busy_id << 24);
522 __asm__ __volatile__(
523 "stxa %%g0, [%0] %1\n\t"
524 "membar #Sync\n\t"
525 : /* no outputs */
526 : "r" (target), "i" (ASI_INTR_W));
527 nack_busy_id++;
David S. Miller22adb352007-05-26 01:14:43 -0700528 if (nack_busy_id == 32) {
529 need_more = 1;
530 break;
531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533 }
534
535 /* Now, poll for completion. */
536 {
537 u64 dispatch_stat;
538 long stuck;
539
540 stuck = 100000 * nack_busy_id;
541 do {
542 __asm__ __volatile__("ldxa [%%g0] %1, %0"
543 : "=r" (dispatch_stat)
544 : "i" (ASI_INTR_DISPATCH_STAT));
545 if (dispatch_stat == 0UL) {
546 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
547 : : "r" (pstate));
David S. Miller22adb352007-05-26 01:14:43 -0700548 if (unlikely(need_more)) {
549 int i, cnt = 0;
550 for_each_cpu_mask(i, mask) {
551 cpu_clear(i, mask);
552 cnt++;
553 if (cnt == 32)
554 break;
555 }
556 goto retry;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return;
559 }
560 if (!--stuck)
561 break;
562 } while (dispatch_stat & 0x5555555555555555UL);
563
564 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
565 : : "r" (pstate));
566
567 if ((dispatch_stat & ~(0x5555555555555555UL)) == 0) {
568 /* Busy bits will not clear, continue instead
569 * of freezing up on this cpu.
570 */
571 printk("CPU[%d]: mondo stuckage result[%016lx]\n",
572 smp_processor_id(), dispatch_stat);
573 } else {
574 int i, this_busy_nack = 0;
575
576 /* Delay some random time with interrupts enabled
577 * to prevent deadlock.
578 */
579 udelay(2 * nack_busy_id);
580
581 /* Clear out the mask bits for cpus which did not
582 * NACK us.
583 */
584 for_each_cpu_mask(i, mask) {
585 u64 check_mask;
586
David S. Miller92704a12006-02-26 23:27:19 -0800587 if (is_jbus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 check_mask = (0x2UL << (2*i));
589 else
590 check_mask = (0x2UL <<
591 this_busy_nack);
592 if ((dispatch_stat & check_mask) == 0)
593 cpu_clear(i, mask);
594 this_busy_nack += 2;
David S. Miller22adb352007-05-26 01:14:43 -0700595 if (this_busy_nack == 64)
596 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
599 goto retry;
600 }
601 }
602}
603
David S. Miller1d2f1f92006-02-08 16:41:20 -0800604/* Multi-cpu list version. */
David S. Millera43fe0e2006-02-04 03:10:53 -0800605static void hypervisor_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t mask)
606{
David S. Millerb830ab62006-02-28 15:10:26 -0800607 struct trap_per_cpu *tb;
608 u16 *cpu_list;
609 u64 *mondo;
610 cpumask_t error_mask;
611 unsigned long flags, status;
David S. Miller3cab0c32006-03-02 21:50:47 -0800612 int cnt, retries, this_cpu, prev_sent, i;
David S. Miller1d2f1f92006-02-08 16:41:20 -0800613
David S. Miller17f34f02007-05-14 02:01:52 -0700614 if (cpus_empty(mask))
615 return;
616
David S. Millerb830ab62006-02-28 15:10:26 -0800617 /* We have to do this whole thing with interrupts fully disabled.
618 * Otherwise if we send an xcall from interrupt context it will
619 * corrupt both our mondo block and cpu list state.
620 *
621 * One consequence of this is that we cannot use timeout mechanisms
622 * that depend upon interrupts being delivered locally. So, for
623 * example, we cannot sample jiffies and expect it to advance.
624 *
625 * Fortunately, udelay() uses %stick/%tick so we can use that.
626 */
627 local_irq_save(flags);
628
629 this_cpu = smp_processor_id();
630 tb = &trap_block[this_cpu];
631
632 mondo = __va(tb->cpu_mondo_block_pa);
David S. Miller1d2f1f92006-02-08 16:41:20 -0800633 mondo[0] = data0;
634 mondo[1] = data1;
635 mondo[2] = data2;
636 wmb();
637
David S. Millerb830ab62006-02-28 15:10:26 -0800638 cpu_list = __va(tb->cpu_list_pa);
639
640 /* Setup the initial cpu list. */
641 cnt = 0;
642 for_each_cpu_mask(i, mask)
643 cpu_list[cnt++] = i;
644
645 cpus_clear(error_mask);
David S. Miller1d2f1f92006-02-08 16:41:20 -0800646 retries = 0;
David S. Miller3cab0c32006-03-02 21:50:47 -0800647 prev_sent = 0;
David S. Miller1d2f1f92006-02-08 16:41:20 -0800648 do {
David S. Miller3cab0c32006-03-02 21:50:47 -0800649 int forward_progress, n_sent;
David S. Miller1d2f1f92006-02-08 16:41:20 -0800650
David S. Millerb830ab62006-02-28 15:10:26 -0800651 status = sun4v_cpu_mondo_send(cnt,
652 tb->cpu_list_pa,
653 tb->cpu_mondo_block_pa);
David S. Miller1d2f1f92006-02-08 16:41:20 -0800654
David S. Millerb830ab62006-02-28 15:10:26 -0800655 /* HV_EOK means all cpus received the xcall, we're done. */
656 if (likely(status == HV_EOK))
David S. Miller1d2f1f92006-02-08 16:41:20 -0800657 break;
658
David S. Miller3cab0c32006-03-02 21:50:47 -0800659 /* First, see if we made any forward progress.
660 *
661 * The hypervisor indicates successful sends by setting
662 * cpu list entries to the value 0xffff.
David S. Millerb830ab62006-02-28 15:10:26 -0800663 */
David S. Miller3cab0c32006-03-02 21:50:47 -0800664 n_sent = 0;
David S. Millerb830ab62006-02-28 15:10:26 -0800665 for (i = 0; i < cnt; i++) {
David S. Miller3cab0c32006-03-02 21:50:47 -0800666 if (likely(cpu_list[i] == 0xffff))
667 n_sent++;
David S. Miller1d2f1f92006-02-08 16:41:20 -0800668 }
669
David S. Miller3cab0c32006-03-02 21:50:47 -0800670 forward_progress = 0;
671 if (n_sent > prev_sent)
672 forward_progress = 1;
673
674 prev_sent = n_sent;
675
David S. Millerb830ab62006-02-28 15:10:26 -0800676 /* If we get a HV_ECPUERROR, then one or more of the cpus
677 * in the list are in error state. Use the cpu_state()
678 * hypervisor call to find out which cpus are in error state.
679 */
680 if (unlikely(status == HV_ECPUERROR)) {
681 for (i = 0; i < cnt; i++) {
682 long err;
683 u16 cpu;
David S. Miller1d2f1f92006-02-08 16:41:20 -0800684
David S. Millerb830ab62006-02-28 15:10:26 -0800685 cpu = cpu_list[i];
686 if (cpu == 0xffff)
687 continue;
688
689 err = sun4v_cpu_state(cpu);
690 if (err >= 0 &&
691 err == HV_CPU_STATE_ERROR) {
David S. Miller3cab0c32006-03-02 21:50:47 -0800692 cpu_list[i] = 0xffff;
David S. Millerb830ab62006-02-28 15:10:26 -0800693 cpu_set(cpu, error_mask);
694 }
695 }
696 } else if (unlikely(status != HV_EWOULDBLOCK))
697 goto fatal_mondo_error;
698
David S. Miller3cab0c32006-03-02 21:50:47 -0800699 /* Don't bother rewriting the CPU list, just leave the
700 * 0xffff and non-0xffff entries in there and the
701 * hypervisor will do the right thing.
702 *
703 * Only advance timeout state if we didn't make any
704 * forward progress.
705 */
David S. Millerb830ab62006-02-28 15:10:26 -0800706 if (unlikely(!forward_progress)) {
707 if (unlikely(++retries > 10000))
708 goto fatal_mondo_timeout;
709
710 /* Delay a little bit to let other cpus catch up
711 * on their cpu mondo queue work.
712 */
713 udelay(2 * cnt);
714 }
David S. Miller1d2f1f92006-02-08 16:41:20 -0800715 } while (1);
716
David S. Millerb830ab62006-02-28 15:10:26 -0800717 local_irq_restore(flags);
718
719 if (unlikely(!cpus_empty(error_mask)))
720 goto fatal_mondo_cpu_error;
721
722 return;
723
724fatal_mondo_cpu_error:
725 printk(KERN_CRIT "CPU[%d]: SUN4V mondo cpu error, some target cpus "
726 "were in error state\n",
727 this_cpu);
728 printk(KERN_CRIT "CPU[%d]: Error mask [ ", this_cpu);
729 for_each_cpu_mask(i, error_mask)
730 printk("%d ", i);
731 printk("]\n");
732 return;
733
734fatal_mondo_timeout:
735 local_irq_restore(flags);
736 printk(KERN_CRIT "CPU[%d]: SUN4V mondo timeout, no forward "
737 " progress after %d retries.\n",
738 this_cpu, retries);
739 goto dump_cpu_list_and_out;
740
741fatal_mondo_error:
742 local_irq_restore(flags);
743 printk(KERN_CRIT "CPU[%d]: Unexpected SUN4V mondo error %lu\n",
744 this_cpu, status);
745 printk(KERN_CRIT "CPU[%d]: Args were cnt(%d) cpulist_pa(%lx) "
746 "mondo_block_pa(%lx)\n",
747 this_cpu, cnt, tb->cpu_list_pa, tb->cpu_mondo_block_pa);
748
749dump_cpu_list_and_out:
750 printk(KERN_CRIT "CPU[%d]: CPU list [ ", this_cpu);
751 for (i = 0; i < cnt; i++)
752 printk("%u ", cpu_list[i]);
753 printk("]\n");
David S. Millera43fe0e2006-02-04 03:10:53 -0800754}
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756/* Send cross call to all processors mentioned in MASK
757 * except self.
758 */
759static void smp_cross_call_masked(unsigned long *func, u32 ctx, u64 data1, u64 data2, cpumask_t mask)
760{
761 u64 data0 = (((u64)ctx)<<32 | (((u64)func) & 0xffffffff));
762 int this_cpu = get_cpu();
763
764 cpus_and(mask, mask, cpu_online_map);
765 cpu_clear(this_cpu, mask);
766
767 if (tlb_type == spitfire)
768 spitfire_xcall_deliver(data0, data1, data2, mask);
David S. Millera43fe0e2006-02-04 03:10:53 -0800769 else if (tlb_type == cheetah || tlb_type == cheetah_plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 cheetah_xcall_deliver(data0, data1, data2, mask);
David S. Millera43fe0e2006-02-04 03:10:53 -0800771 else
772 hypervisor_xcall_deliver(data0, data1, data2, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 /* NOTE: Caller runs local copy on master. */
774
775 put_cpu();
776}
777
778extern unsigned long xcall_sync_tick;
779
780static void smp_start_sync_tick_client(int cpu)
781{
782 cpumask_t mask = cpumask_of_cpu(cpu);
783
784 smp_cross_call_masked(&xcall_sync_tick,
785 0, 0, 0, mask);
786}
787
788/* Send cross call to all processors except self. */
789#define smp_cross_call(func, ctx, data1, data2) \
790 smp_cross_call_masked(func, ctx, data1, data2, cpu_online_map)
791
792struct call_data_struct {
793 void (*func) (void *info);
794 void *info;
795 atomic_t finished;
796 int wait;
797};
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799static struct call_data_struct *call_data;
800
801extern unsigned long xcall_call_function;
802
David S. Milleraa1d1a02006-04-06 16:54:33 -0700803/**
804 * smp_call_function(): Run a function on all other CPUs.
805 * @func: The function to run. This must be fast and non-blocking.
806 * @info: An arbitrary pointer to pass to the function.
807 * @nonatomic: currently unused.
808 * @wait: If true, wait (atomically) until function has completed on other CPUs.
809 *
810 * Returns 0 on success, else a negative status code. Does not return until
811 * remote CPUs are nearly ready to execute <<func>> or are or have executed.
812 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 * You must not call this function with disabled interrupts or from a
814 * hardware interrupt handler or from a bottom half handler.
815 */
David S. Millerbd407912006-01-31 18:31:38 -0800816static int smp_call_function_mask(void (*func)(void *info), void *info,
817 int nonatomic, int wait, cpumask_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 struct call_data_struct data;
David S. Milleree290742006-03-06 22:50:44 -0800820 int cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /* Can deadlock when called with interrupts disabled */
823 WARN_ON(irqs_disabled());
824
825 data.func = func;
826 data.info = info;
827 atomic_set(&data.finished, 0);
828 data.wait = wait;
829
830 spin_lock(&call_lock);
831
David S. Milleree290742006-03-06 22:50:44 -0800832 cpu_clear(smp_processor_id(), mask);
833 cpus = cpus_weight(mask);
834 if (!cpus)
835 goto out_unlock;
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 call_data = &data;
David S. Milleraa1d1a02006-04-06 16:54:33 -0700838 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
David S. Millerbd407912006-01-31 18:31:38 -0800840 smp_cross_call_masked(&xcall_call_function, 0, 0, 0, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
David S. Milleraa1d1a02006-04-06 16:54:33 -0700842 /* Wait for response */
843 while (atomic_read(&data.finished) != cpus)
844 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
David S. Milleree290742006-03-06 22:50:44 -0800846out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 spin_unlock(&call_lock);
848
849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
David S. Millerbd407912006-01-31 18:31:38 -0800852int smp_call_function(void (*func)(void *info), void *info,
853 int nonatomic, int wait)
854{
855 return smp_call_function_mask(func, info, nonatomic, wait,
856 cpu_online_map);
857}
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859void smp_call_function_client(int irq, struct pt_regs *regs)
860{
861 void (*func) (void *info) = call_data->func;
862 void *info = call_data->info;
863
864 clear_softint(1 << irq);
865 if (call_data->wait) {
866 /* let initiator proceed only after completion */
867 func(info);
868 atomic_inc(&call_data->finished);
869 } else {
870 /* let initiator proceed after getting data */
871 atomic_inc(&call_data->finished);
872 func(info);
873 }
874}
875
David S. Millerbd407912006-01-31 18:31:38 -0800876static void tsb_sync(void *info)
877{
David S. Miller6f25f392006-03-28 13:29:26 -0800878 struct trap_per_cpu *tp = &trap_block[raw_smp_processor_id()];
David S. Millerbd407912006-01-31 18:31:38 -0800879 struct mm_struct *mm = info;
880
David S. Miller6f25f392006-03-28 13:29:26 -0800881 /* It is not valid to test "currrent->active_mm == mm" here.
882 *
883 * The value of "current" is not changed atomically with
884 * switch_mm(). But that's OK, we just need to check the
885 * current cpu's trap block PGD physical address.
886 */
887 if (tp->pgd_paddr == __pa(mm->pgd))
David S. Millerbd407912006-01-31 18:31:38 -0800888 tsb_context_switch(mm);
889}
890
891void smp_tsb_sync(struct mm_struct *mm)
892{
893 smp_call_function_mask(tsb_sync, mm, 0, 1, mm->cpu_vm_mask);
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896extern unsigned long xcall_flush_tlb_mm;
897extern unsigned long xcall_flush_tlb_pending;
898extern unsigned long xcall_flush_tlb_kernel_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899extern unsigned long xcall_report_regs;
900extern unsigned long xcall_receive_signal;
David S. Milleree290742006-03-06 22:50:44 -0800901extern unsigned long xcall_new_mmu_context_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903#ifdef DCACHE_ALIASING_POSSIBLE
904extern unsigned long xcall_flush_dcache_page_cheetah;
905#endif
906extern unsigned long xcall_flush_dcache_page_spitfire;
907
908#ifdef CONFIG_DEBUG_DCFLUSH
909extern atomic_t dcpage_flushes;
910extern atomic_t dcpage_flushes_xcall;
911#endif
912
913static __inline__ void __local_flush_dcache_page(struct page *page)
914{
915#ifdef DCACHE_ALIASING_POSSIBLE
916 __flush_dcache_page(page_address(page),
917 ((tlb_type == spitfire) &&
918 page_mapping(page) != NULL));
919#else
920 if (page_mapping(page) != NULL &&
921 tlb_type == spitfire)
922 __flush_icache_page(__pa(page_address(page)));
923#endif
924}
925
926void smp_flush_dcache_page_impl(struct page *page, int cpu)
927{
928 cpumask_t mask = cpumask_of_cpu(cpu);
David S. Millera43fe0e2006-02-04 03:10:53 -0800929 int this_cpu;
930
931 if (tlb_type == hypervisor)
932 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934#ifdef CONFIG_DEBUG_DCFLUSH
935 atomic_inc(&dcpage_flushes);
936#endif
David S. Millera43fe0e2006-02-04 03:10:53 -0800937
938 this_cpu = get_cpu();
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (cpu == this_cpu) {
941 __local_flush_dcache_page(page);
942 } else if (cpu_online(cpu)) {
943 void *pg_addr = page_address(page);
944 u64 data0;
945
946 if (tlb_type == spitfire) {
947 data0 =
948 ((u64)&xcall_flush_dcache_page_spitfire);
949 if (page_mapping(page) != NULL)
950 data0 |= ((u64)1 << 32);
951 spitfire_xcall_deliver(data0,
952 __pa(pg_addr),
953 (u64) pg_addr,
954 mask);
David S. Millera43fe0e2006-02-04 03:10:53 -0800955 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956#ifdef DCACHE_ALIASING_POSSIBLE
957 data0 =
958 ((u64)&xcall_flush_dcache_page_cheetah);
959 cheetah_xcall_deliver(data0,
960 __pa(pg_addr),
961 0, mask);
962#endif
963 }
964#ifdef CONFIG_DEBUG_DCFLUSH
965 atomic_inc(&dcpage_flushes_xcall);
966#endif
967 }
968
969 put_cpu();
970}
971
972void flush_dcache_page_all(struct mm_struct *mm, struct page *page)
973{
974 void *pg_addr = page_address(page);
975 cpumask_t mask = cpu_online_map;
976 u64 data0;
David S. Millera43fe0e2006-02-04 03:10:53 -0800977 int this_cpu;
978
979 if (tlb_type == hypervisor)
980 return;
981
982 this_cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 cpu_clear(this_cpu, mask);
985
986#ifdef CONFIG_DEBUG_DCFLUSH
987 atomic_inc(&dcpage_flushes);
988#endif
989 if (cpus_empty(mask))
990 goto flush_self;
991 if (tlb_type == spitfire) {
992 data0 = ((u64)&xcall_flush_dcache_page_spitfire);
993 if (page_mapping(page) != NULL)
994 data0 |= ((u64)1 << 32);
995 spitfire_xcall_deliver(data0,
996 __pa(pg_addr),
997 (u64) pg_addr,
998 mask);
David S. Millera43fe0e2006-02-04 03:10:53 -0800999 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000#ifdef DCACHE_ALIASING_POSSIBLE
1001 data0 = ((u64)&xcall_flush_dcache_page_cheetah);
1002 cheetah_xcall_deliver(data0,
1003 __pa(pg_addr),
1004 0, mask);
1005#endif
1006 }
1007#ifdef CONFIG_DEBUG_DCFLUSH
1008 atomic_inc(&dcpage_flushes_xcall);
1009#endif
1010 flush_self:
1011 __local_flush_dcache_page(page);
1012
1013 put_cpu();
1014}
1015
David S. Millera0663a72006-02-23 14:19:28 -08001016static void __smp_receive_signal_mask(cpumask_t mask)
1017{
1018 smp_cross_call_masked(&xcall_receive_signal, 0, 0, 0, mask);
1019}
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021void smp_receive_signal(int cpu)
1022{
1023 cpumask_t mask = cpumask_of_cpu(cpu);
1024
David S. Millera0663a72006-02-23 14:19:28 -08001025 if (cpu_online(cpu))
1026 __smp_receive_signal_mask(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
1029void smp_receive_signal_client(int irq, struct pt_regs *regs)
1030{
David S. Milleree290742006-03-06 22:50:44 -08001031 clear_softint(1 << irq);
1032}
1033
1034void smp_new_mmu_context_version_client(int irq, struct pt_regs *regs)
1035{
David S. Millera0663a72006-02-23 14:19:28 -08001036 struct mm_struct *mm;
David S. Milleree290742006-03-06 22:50:44 -08001037 unsigned long flags;
David S. Millera0663a72006-02-23 14:19:28 -08001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 clear_softint(1 << irq);
David S. Millera0663a72006-02-23 14:19:28 -08001040
1041 /* See if we need to allocate a new TLB context because
1042 * the version of the one we are using is now out of date.
1043 */
1044 mm = current->active_mm;
David S. Milleree290742006-03-06 22:50:44 -08001045 if (unlikely(!mm || (mm == &init_mm)))
1046 return;
David S. Millera0663a72006-02-23 14:19:28 -08001047
David S. Milleree290742006-03-06 22:50:44 -08001048 spin_lock_irqsave(&mm->context.lock, flags);
David S. Milleraac0aad2006-02-27 17:56:51 -08001049
David S. Milleree290742006-03-06 22:50:44 -08001050 if (unlikely(!CTX_VALID(mm->context)))
1051 get_new_mmu_context(mm);
David S. Milleraac0aad2006-02-27 17:56:51 -08001052
David S. Milleree290742006-03-06 22:50:44 -08001053 spin_unlock_irqrestore(&mm->context.lock, flags);
David S. Milleraac0aad2006-02-27 17:56:51 -08001054
David S. Milleree290742006-03-06 22:50:44 -08001055 load_secondary_context(mm);
1056 __flush_tlb_mm(CTX_HWBITS(mm->context),
1057 SECONDARY_CONTEXT);
David S. Millera0663a72006-02-23 14:19:28 -08001058}
1059
1060void smp_new_mmu_context_version(void)
1061{
David S. Milleree290742006-03-06 22:50:44 -08001062 smp_cross_call(&xcall_new_mmu_context_version, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
1065void smp_report_regs(void)
1066{
1067 smp_cross_call(&xcall_report_regs, 0, 0, 0);
1068}
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070/* We know that the window frames of the user have been flushed
1071 * to the stack before we get here because all callers of us
1072 * are flush_tlb_*() routines, and these run after flush_cache_*()
1073 * which performs the flushw.
1074 *
1075 * The SMP TLB coherency scheme we use works as follows:
1076 *
1077 * 1) mm->cpu_vm_mask is a bit mask of which cpus an address
1078 * space has (potentially) executed on, this is the heuristic
1079 * we use to avoid doing cross calls.
1080 *
1081 * Also, for flushing from kswapd and also for clones, we
1082 * use cpu_vm_mask as the list of cpus to make run the TLB.
1083 *
1084 * 2) TLB context numbers are shared globally across all processors
1085 * in the system, this allows us to play several games to avoid
1086 * cross calls.
1087 *
1088 * One invariant is that when a cpu switches to a process, and
1089 * that processes tsk->active_mm->cpu_vm_mask does not have the
1090 * current cpu's bit set, that tlb context is flushed locally.
1091 *
1092 * If the address space is non-shared (ie. mm->count == 1) we avoid
1093 * cross calls when we want to flush the currently running process's
1094 * tlb state. This is done by clearing all cpu bits except the current
1095 * processor's in current->active_mm->cpu_vm_mask and performing the
1096 * flush locally only. This will force any subsequent cpus which run
1097 * this task to flush the context from the local tlb if the process
1098 * migrates to another cpu (again).
1099 *
1100 * 3) For shared address spaces (threads) and swapping we bite the
1101 * bullet for most cases and perform the cross call (but only to
1102 * the cpus listed in cpu_vm_mask).
1103 *
1104 * The performance gain from "optimizing" away the cross call for threads is
1105 * questionable (in theory the big win for threads is the massive sharing of
1106 * address space state across processors).
1107 */
David S. Miller62dbec72005-11-07 14:09:58 -08001108
1109/* This currently is only used by the hugetlb arch pre-fault
1110 * hook on UltraSPARC-III+ and later when changing the pagesize
1111 * bits of the context register for an address space.
1112 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113void smp_flush_tlb_mm(struct mm_struct *mm)
1114{
David S. Miller62dbec72005-11-07 14:09:58 -08001115 u32 ctx = CTX_HWBITS(mm->context);
1116 int cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
David S. Miller62dbec72005-11-07 14:09:58 -08001118 if (atomic_read(&mm->mm_users) == 1) {
1119 mm->cpu_vm_mask = cpumask_of_cpu(cpu);
1120 goto local_flush_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
David S. Miller62dbec72005-11-07 14:09:58 -08001122
1123 smp_cross_call_masked(&xcall_flush_tlb_mm,
1124 ctx, 0, 0,
1125 mm->cpu_vm_mask);
1126
1127local_flush_and_out:
1128 __flush_tlb_mm(ctx, SECONDARY_CONTEXT);
1129
1130 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133void smp_flush_tlb_pending(struct mm_struct *mm, unsigned long nr, unsigned long *vaddrs)
1134{
1135 u32 ctx = CTX_HWBITS(mm->context);
1136 int cpu = get_cpu();
1137
Hugh Dickinsdedeb002005-11-07 14:09:01 -08001138 if (mm == current->active_mm && atomic_read(&mm->mm_users) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 mm->cpu_vm_mask = cpumask_of_cpu(cpu);
Hugh Dickinsdedeb002005-11-07 14:09:01 -08001140 else
1141 smp_cross_call_masked(&xcall_flush_tlb_pending,
1142 ctx, nr, (unsigned long) vaddrs,
1143 mm->cpu_vm_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 __flush_tlb_pending(ctx, nr, vaddrs);
1146
1147 put_cpu();
1148}
1149
1150void smp_flush_tlb_kernel_range(unsigned long start, unsigned long end)
1151{
1152 start &= PAGE_MASK;
1153 end = PAGE_ALIGN(end);
1154 if (start != end) {
1155 smp_cross_call(&xcall_flush_tlb_kernel_range,
1156 0, start, end);
1157
1158 __flush_tlb_kernel_range(start, end);
1159 }
1160}
1161
1162/* CPU capture. */
1163/* #define CAPTURE_DEBUG */
1164extern unsigned long xcall_capture;
1165
1166static atomic_t smp_capture_depth = ATOMIC_INIT(0);
1167static atomic_t smp_capture_registry = ATOMIC_INIT(0);
1168static unsigned long penguins_are_doing_time;
1169
1170void smp_capture(void)
1171{
1172 int result = atomic_add_ret(1, &smp_capture_depth);
1173
1174 if (result == 1) {
1175 int ncpus = num_online_cpus();
1176
1177#ifdef CAPTURE_DEBUG
1178 printk("CPU[%d]: Sending penguins to jail...",
1179 smp_processor_id());
1180#endif
1181 penguins_are_doing_time = 1;
David S. Miller4f071182005-08-29 12:46:22 -07001182 membar_storestore_loadstore();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 atomic_inc(&smp_capture_registry);
1184 smp_cross_call(&xcall_capture, 0, 0, 0);
1185 while (atomic_read(&smp_capture_registry) != ncpus)
David S. Miller4f071182005-08-29 12:46:22 -07001186 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187#ifdef CAPTURE_DEBUG
1188 printk("done\n");
1189#endif
1190 }
1191}
1192
1193void smp_release(void)
1194{
1195 if (atomic_dec_and_test(&smp_capture_depth)) {
1196#ifdef CAPTURE_DEBUG
1197 printk("CPU[%d]: Giving pardon to "
1198 "imprisoned penguins\n",
1199 smp_processor_id());
1200#endif
1201 penguins_are_doing_time = 0;
David S. Miller4f071182005-08-29 12:46:22 -07001202 membar_storeload_storestore();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 atomic_dec(&smp_capture_registry);
1204 }
1205}
1206
1207/* Imprisoned penguins run with %pil == 15, but PSTATE_IE set, so they
1208 * can service tlb flush xcalls...
1209 */
1210extern void prom_world(int);
David S. Miller96c6e0d2006-01-31 18:32:29 -08001211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212void smp_penguin_jailcell(int irq, struct pt_regs *regs)
1213{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 clear_softint(1 << irq);
1215
1216 preempt_disable();
1217
1218 __asm__ __volatile__("flushw");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 prom_world(1);
1220 atomic_inc(&smp_capture_registry);
David S. Miller4f071182005-08-29 12:46:22 -07001221 membar_storeload_storestore();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 while (penguins_are_doing_time)
David S. Miller4f071182005-08-29 12:46:22 -07001223 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 atomic_dec(&smp_capture_registry);
1225 prom_world(0);
1226
1227 preempt_enable();
1228}
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230/* /proc/profile writes can call this, don't __init it please. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231int setup_profiling_timer(unsigned int multiplier)
1232{
David S. Miller777a4472007-02-22 06:24:10 -08001233 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
1236void __init smp_prepare_cpus(unsigned int max_cpus)
1237{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
1240void __devinit smp_prepare_boot_cpu(void)
1241{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
David S. Miller5cbc3072007-05-25 15:49:59 -07001244void __devinit smp_fill_in_sib_core_maps(void)
1245{
1246 unsigned int i;
1247
David S. Millere02044092007-07-16 03:49:40 -07001248 for_each_present_cpu(i) {
David S. Miller5cbc3072007-05-25 15:49:59 -07001249 unsigned int j;
1250
David S. Miller39dd9922007-07-15 01:29:24 -07001251 cpus_clear(cpu_core_map[i]);
David S. Miller5cbc3072007-05-25 15:49:59 -07001252 if (cpu_data(i).core_id == 0) {
David S. Millerf78eae22007-06-04 17:01:39 -07001253 cpu_set(i, cpu_core_map[i]);
David S. Miller5cbc3072007-05-25 15:49:59 -07001254 continue;
1255 }
1256
David S. Millere02044092007-07-16 03:49:40 -07001257 for_each_present_cpu(j) {
David S. Miller5cbc3072007-05-25 15:49:59 -07001258 if (cpu_data(i).core_id ==
1259 cpu_data(j).core_id)
David S. Millerf78eae22007-06-04 17:01:39 -07001260 cpu_set(j, cpu_core_map[i]);
1261 }
1262 }
1263
David S. Millere02044092007-07-16 03:49:40 -07001264 for_each_present_cpu(i) {
David S. Millerf78eae22007-06-04 17:01:39 -07001265 unsigned int j;
1266
David S. Miller39dd9922007-07-15 01:29:24 -07001267 cpus_clear(cpu_sibling_map[i]);
David S. Millerf78eae22007-06-04 17:01:39 -07001268 if (cpu_data(i).proc_id == -1) {
1269 cpu_set(i, cpu_sibling_map[i]);
1270 continue;
1271 }
1272
David S. Millere02044092007-07-16 03:49:40 -07001273 for_each_present_cpu(j) {
David S. Millerf78eae22007-06-04 17:01:39 -07001274 if (cpu_data(i).proc_id ==
1275 cpu_data(j).proc_id)
David S. Miller5cbc3072007-05-25 15:49:59 -07001276 cpu_set(j, cpu_sibling_map[i]);
1277 }
1278 }
1279}
1280
Gautham R Shenoyb282b6f2007-01-10 23:15:34 -08001281int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 int ret = smp_boot_one_cpu(cpu);
1284
1285 if (!ret) {
1286 cpu_set(cpu, smp_commenced_mask);
1287 while (!cpu_isset(cpu, cpu_online_map))
1288 mb();
1289 if (!cpu_isset(cpu, cpu_online_map)) {
1290 ret = -ENODEV;
1291 } else {
David S. Miller02fead72006-02-11 23:22:47 -08001292 /* On SUN4V, writes to %tick and %stick are
1293 * not allowed.
1294 */
1295 if (tlb_type != hypervisor)
1296 smp_synchronize_one_tick(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298 }
1299 return ret;
1300}
1301
David S. Miller4f0234f2007-07-13 16:03:42 -07001302#ifdef CONFIG_HOTPLUG_CPU
David S. Millere02044092007-07-16 03:49:40 -07001303void cpu_play_dead(void)
1304{
1305 int cpu = smp_processor_id();
1306 unsigned long pstate;
1307
1308 idle_task_exit();
1309
1310 if (tlb_type == hypervisor) {
1311 struct trap_per_cpu *tb = &trap_block[cpu];
1312
1313 sun4v_cpu_qconf(HV_CPU_QUEUE_CPU_MONDO,
1314 tb->cpu_mondo_pa, 0);
1315 sun4v_cpu_qconf(HV_CPU_QUEUE_DEVICE_MONDO,
1316 tb->dev_mondo_pa, 0);
1317 sun4v_cpu_qconf(HV_CPU_QUEUE_RES_ERROR,
1318 tb->resum_mondo_pa, 0);
1319 sun4v_cpu_qconf(HV_CPU_QUEUE_NONRES_ERROR,
1320 tb->nonresum_mondo_pa, 0);
1321 }
1322
1323 cpu_clear(cpu, smp_commenced_mask);
1324 membar_safe("#Sync");
1325
1326 local_irq_disable();
1327
1328 __asm__ __volatile__(
1329 "rdpr %%pstate, %0\n\t"
1330 "wrpr %0, %1, %%pstate"
1331 : "=r" (pstate)
1332 : "i" (PSTATE_IE));
1333
1334 while (1)
1335 barrier();
1336}
1337
David S. Miller4f0234f2007-07-13 16:03:42 -07001338int __cpu_disable(void)
1339{
David S. Millere02044092007-07-16 03:49:40 -07001340 int cpu = smp_processor_id();
1341 cpuinfo_sparc *c;
1342 int i;
1343
1344 for_each_cpu_mask(i, cpu_core_map[cpu])
1345 cpu_clear(cpu, cpu_core_map[i]);
1346 cpus_clear(cpu_core_map[cpu]);
1347
1348 for_each_cpu_mask(i, cpu_sibling_map[cpu])
1349 cpu_clear(cpu, cpu_sibling_map[i]);
1350 cpus_clear(cpu_sibling_map[cpu]);
1351
1352 c = &cpu_data(cpu);
1353
1354 c->core_id = 0;
1355 c->proc_id = -1;
1356
1357 spin_lock(&call_lock);
1358 cpu_clear(cpu, cpu_online_map);
1359 spin_unlock(&call_lock);
1360
1361 smp_wmb();
1362
1363 /* Make sure no interrupts point to this cpu. */
1364 fixup_irqs();
1365
1366 local_irq_enable();
1367 mdelay(1);
1368 local_irq_disable();
1369
1370 return 0;
David S. Miller4f0234f2007-07-13 16:03:42 -07001371}
1372
1373void __cpu_die(unsigned int cpu)
1374{
David S. Millere02044092007-07-16 03:49:40 -07001375 int i;
1376
1377 for (i = 0; i < 100; i++) {
1378 smp_rmb();
1379 if (!cpu_isset(cpu, smp_commenced_mask))
1380 break;
1381 msleep(100);
1382 }
1383 if (cpu_isset(cpu, smp_commenced_mask)) {
1384 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
1385 } else {
1386#if defined(CONFIG_SUN_LDOMS)
1387 unsigned long hv_err;
1388 int limit = 100;
1389
1390 do {
1391 hv_err = sun4v_cpu_stop(cpu);
1392 if (hv_err == HV_EOK) {
1393 cpu_clear(cpu, cpu_present_map);
1394 break;
1395 }
1396 } while (--limit > 0);
1397 if (limit <= 0) {
1398 printk(KERN_ERR "sun4v_cpu_stop() fails err=%lu\n",
1399 hv_err);
1400 }
1401#endif
1402 }
David S. Miller4f0234f2007-07-13 16:03:42 -07001403}
1404#endif
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406void __init smp_cpus_done(unsigned int max_cpus)
1407{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410void smp_send_reschedule(int cpu)
1411{
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001412 smp_receive_signal(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413}
1414
1415/* This is a nop because we capture all other cpus
1416 * anyways when making the PROM active.
1417 */
1418void smp_send_stop(void)
1419{
1420}
1421
David S. Millerd369ddd2005-07-10 15:45:11 -07001422unsigned long __per_cpu_base __read_mostly;
1423unsigned long __per_cpu_shift __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425EXPORT_SYMBOL(__per_cpu_base);
1426EXPORT_SYMBOL(__per_cpu_shift);
1427
David S. Miller5cbc3072007-05-25 15:49:59 -07001428void __init real_setup_per_cpu_areas(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
1430 unsigned long goal, size, i;
1431 char *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 /* Copy section for each CPU (we discard the original) */
David S. Miller5a089002006-12-14 23:40:57 -08001434 goal = PERCPU_ENOUGH_ROOM;
1435
Jeremy Fitzhardingeb6e35902007-05-02 19:27:12 +02001436 __per_cpu_shift = PAGE_SHIFT;
1437 for (size = PAGE_SIZE; size < goal; size <<= 1UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 __per_cpu_shift++;
1439
Jeremy Fitzhardingeb6e35902007-05-02 19:27:12 +02001440 ptr = alloc_bootmem_pages(size * NR_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 __per_cpu_base = ptr - __per_cpu_start;
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 for (i = 0; i < NR_CPUS; i++, ptr += size)
1445 memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start);
David S. Miller951bc822006-05-31 01:24:02 -07001446
1447 /* Setup %g5 for the boot cpu. */
1448 __local_per_cpu_offset = __per_cpu_offset(smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}