blob: 1dde312eebda7ec16b58b09fa80c9d0780e13091 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* sun4m_smp.c: Sparc SUN4M SMP support.
2 *
3 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
4 */
5
6#include <asm/head.h>
7
8#include <linux/kernel.h>
9#include <linux/sched.h>
10#include <linux/threads.h>
11#include <linux/smp.h>
12#include <linux/smp_lock.h>
13#include <linux/interrupt.h>
14#include <linux/kernel_stat.h>
15#include <linux/init.h>
16#include <linux/spinlock.h>
17#include <linux/mm.h>
18#include <linux/swap.h>
19#include <linux/profile.h>
20#include <asm/cacheflush.h>
21#include <asm/tlbflush.h>
22
23#include <asm/ptrace.h>
24#include <asm/atomic.h>
25
26#include <asm/delay.h>
27#include <asm/irq.h>
28#include <asm/page.h>
29#include <asm/pgalloc.h>
30#include <asm/pgtable.h>
31#include <asm/oplib.h>
32#include <asm/cpudata.h>
33
34#define IRQ_RESCHEDULE 13
35#define IRQ_STOP_CPU 14
36#define IRQ_CROSS_CALL 15
37
38extern ctxd_t *srmmu_ctx_table_phys;
39
40extern void calibrate_delay(void);
41
42extern volatile int smp_processors_ready;
43extern int smp_num_cpus;
44extern volatile unsigned long cpu_callin_map[NR_CPUS];
45extern unsigned char boot_cpu_id;
46extern int smp_activated;
47extern volatile int __cpu_number_map[NR_CPUS];
48extern volatile int __cpu_logical_map[NR_CPUS];
49extern volatile unsigned long ipi_count;
50extern volatile int smp_process_available;
51extern volatile int smp_commenced;
52extern int __smp4m_processor_id(void);
53
54/*#define SMP_DEBUG*/
55
56#ifdef SMP_DEBUG
57#define SMP_PRINTK(x) printk x
58#else
59#define SMP_PRINTK(x)
60#endif
61
62static inline unsigned long swap(volatile unsigned long *ptr, unsigned long val)
63{
64 __asm__ __volatile__("swap [%1], %0\n\t" :
65 "=&r" (val), "=&r" (ptr) :
66 "0" (val), "1" (ptr));
67 return val;
68}
69
70static void smp_setup_percpu_timer(void);
71extern void cpu_probe(void);
72
73void __init smp4m_callin(void)
74{
75 int cpuid = hard_smp_processor_id();
76
77 local_flush_cache_all();
78 local_flush_tlb_all();
79
80 set_irq_udt(boot_cpu_id);
81
82 /* Get our local ticker going. */
83 smp_setup_percpu_timer();
84
85 calibrate_delay();
86 smp_store_cpu_info(cpuid);
87
88 local_flush_cache_all();
89 local_flush_tlb_all();
90
91 /*
92 * Unblock the master CPU _only_ when the scheduler state
93 * of all secondary CPUs will be up-to-date, so after
94 * the SMP initialization the master will be just allowed
95 * to call the scheduler code.
96 */
97 /* Allow master to continue. */
98 swap((unsigned long *)&cpu_callin_map[cpuid], 1);
99
100 local_flush_cache_all();
101 local_flush_tlb_all();
102
103 cpu_probe();
104
105 /* Fix idle thread fields. */
106 __asm__ __volatile__("ld [%0], %%g6\n\t"
107 : : "r" (&current_set[cpuid])
108 : "memory" /* paranoid */);
109
110 /* Attach to the address space of init_task. */
111 atomic_inc(&init_mm.mm_count);
112 current->active_mm = &init_mm;
113
114 while(!smp_commenced)
115 barrier();
116
117 local_flush_cache_all();
118 local_flush_tlb_all();
119
120 local_irq_enable();
121}
122
123extern void init_IRQ(void);
124extern void cpu_panic(void);
125
126/*
127 * Cycle through the processors asking the PROM to start each one.
128 */
129
130extern struct linux_prom_registers smp_penguin_ctable;
131extern unsigned long trapbase_cpu1[];
132extern unsigned long trapbase_cpu2[];
133extern unsigned long trapbase_cpu3[];
134
135void __init smp4m_boot_cpus(void)
136{
137 int cpucount = 0;
138 int i, mid;
139
140 printk("Entering SMP Mode...\n");
141
142 local_irq_enable();
143 cpus_clear(cpu_present_map);
144
145 for (i = 0; !cpu_find_by_instance(i, NULL, &mid); i++)
146 cpu_set(mid, cpu_present_map);
147
148 for(i=0; i < NR_CPUS; i++) {
149 __cpu_number_map[i] = -1;
150 __cpu_logical_map[i] = -1;
151 }
152
153 __cpu_number_map[boot_cpu_id] = 0;
154 __cpu_logical_map[0] = boot_cpu_id;
155 current_thread_info()->cpu = boot_cpu_id;
156
157 smp_store_cpu_info(boot_cpu_id);
158 set_irq_udt(boot_cpu_id);
159 smp_setup_percpu_timer();
160 local_flush_cache_all();
161 if(cpu_find_by_instance(1, NULL, NULL))
162 return; /* Not an MP box. */
163 for(i = 0; i < NR_CPUS; i++) {
164 if(i == boot_cpu_id)
165 continue;
166
167 if (cpu_isset(i, cpu_present_map)) {
168 extern unsigned long sun4m_cpu_startup;
169 unsigned long *entry = &sun4m_cpu_startup;
170 struct task_struct *p;
171 int timeout;
172
173 /* Cook up an idler for this guy. */
174 p = fork_idle(i);
175 cpucount++;
Al Virod562ef62006-01-12 01:05:46 -0800176 current_set[i] = task_thread_info(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* See trampoline.S for details... */
178 entry += ((i-1) * 3);
179
180 /*
181 * Initialize the contexts table
182 * Since the call to prom_startcpu() trashes the structure,
183 * we need to re-initialize it for each cpu
184 */
185 smp_penguin_ctable.which_io = 0;
186 smp_penguin_ctable.phys_addr = (unsigned int) srmmu_ctx_table_phys;
187 smp_penguin_ctable.reg_size = 0;
188
189 /* whirrr, whirrr, whirrrrrrrrr... */
190 printk("Starting CPU %d at %p\n", i, entry);
191 local_flush_cache_all();
192 prom_startcpu(cpu_data(i).prom_node,
193 &smp_penguin_ctable, 0, (char *)entry);
194
195 /* wheee... it's going... */
196 for(timeout = 0; timeout < 10000; timeout++) {
197 if(cpu_callin_map[i])
198 break;
199 udelay(200);
200 }
201 if(cpu_callin_map[i]) {
202 /* Another "Red Snapper". */
203 __cpu_number_map[i] = i;
204 __cpu_logical_map[i] = i;
205 } else {
206 cpucount--;
207 printk("Processor %d is stuck.\n", i);
208 }
209 }
210 if(!(cpu_callin_map[i])) {
211 cpu_clear(i, cpu_present_map);
212 __cpu_number_map[i] = -1;
213 }
214 }
215 local_flush_cache_all();
216 if(cpucount == 0) {
217 printk("Error: only one Processor found.\n");
218 cpu_present_map = cpumask_of_cpu(smp_processor_id());
219 } else {
220 unsigned long bogosum = 0;
Andrew Morton394e3902006-03-23 03:01:05 -0800221 for_each_present_cpu(i)
222 bogosum += cpu_data(i).udelay_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 printk("Total of %d Processors activated (%lu.%02lu BogoMIPS).\n",
224 cpucount + 1,
225 bogosum/(500000/HZ),
226 (bogosum/(5000/HZ))%100);
227 smp_activated = 1;
228 smp_num_cpus = cpucount + 1;
229 }
230
231 /* Free unneeded trap tables */
232 if (!cpu_isset(i, cpu_present_map)) {
233 ClearPageReserved(virt_to_page(trapbase_cpu1));
Nick Piggin7835e982006-03-22 00:08:40 -0800234 init_page_count(virt_to_page(trapbase_cpu1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 free_page((unsigned long)trapbase_cpu1);
236 totalram_pages++;
237 num_physpages++;
238 }
239 if (!cpu_isset(2, cpu_present_map)) {
240 ClearPageReserved(virt_to_page(trapbase_cpu2));
Nick Piggin7835e982006-03-22 00:08:40 -0800241 init_page_count(virt_to_page(trapbase_cpu2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 free_page((unsigned long)trapbase_cpu2);
243 totalram_pages++;
244 num_physpages++;
245 }
246 if (!cpu_isset(3, cpu_present_map)) {
247 ClearPageReserved(virt_to_page(trapbase_cpu3));
Nick Piggin7835e982006-03-22 00:08:40 -0800248 init_page_count(virt_to_page(trapbase_cpu3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 free_page((unsigned long)trapbase_cpu3);
250 totalram_pages++;
251 num_physpages++;
252 }
253
254 /* Ok, they are spinning and ready to go. */
255 smp_processors_ready = 1;
256}
257
258/* At each hardware IRQ, we get this called to forward IRQ reception
259 * to the next processor. The caller must disable the IRQ level being
260 * serviced globally so that there are no double interrupts received.
261 *
262 * XXX See sparc64 irq.c.
263 */
264void smp4m_irq_rotate(int cpu)
265{
266}
267
268/* Cross calls, in order to work efficiently and atomically do all
269 * the message passing work themselves, only stopcpu and reschedule
270 * messages come through here.
271 */
272void smp4m_message_pass(int target, int msg, unsigned long data, int wait)
273{
274 static unsigned long smp_cpu_in_msg[NR_CPUS];
275 cpumask_t mask;
276 int me = smp_processor_id();
277 int irq, i;
278
279 if(msg == MSG_RESCHEDULE) {
280 irq = IRQ_RESCHEDULE;
281
282 if(smp_cpu_in_msg[me])
283 return;
284 } else if(msg == MSG_STOP_CPU) {
285 irq = IRQ_STOP_CPU;
286 } else {
287 goto barf;
288 }
289
290 smp_cpu_in_msg[me]++;
291 if(target == MSG_ALL_BUT_SELF || target == MSG_ALL) {
292 mask = cpu_present_map;
293 if(target == MSG_ALL_BUT_SELF)
294 cpu_clear(me, mask);
295 for(i = 0; i < 4; i++) {
296 if (cpu_isset(i, mask))
297 set_cpu_int(i, irq);
298 }
299 } else {
300 set_cpu_int(target, irq);
301 }
302 smp_cpu_in_msg[me]--;
303
304 return;
305barf:
306 printk("Yeeee, trying to send SMP msg(%d) on cpu %d\n", msg, me);
307 panic("Bogon SMP message pass.");
308}
309
310static struct smp_funcall {
311 smpfunc_t func;
312 unsigned long arg1;
313 unsigned long arg2;
314 unsigned long arg3;
315 unsigned long arg4;
316 unsigned long arg5;
317 unsigned long processors_in[NR_CPUS]; /* Set when ipi entered. */
318 unsigned long processors_out[NR_CPUS]; /* Set when ipi exited. */
319} ccall_info;
320
321static DEFINE_SPINLOCK(cross_call_lock);
322
323/* Cross calls must be serialized, at least currently. */
324void smp4m_cross_call(smpfunc_t func, unsigned long arg1, unsigned long arg2,
325 unsigned long arg3, unsigned long arg4, unsigned long arg5)
326{
327 if(smp_processors_ready) {
328 register int ncpus = smp_num_cpus;
329 unsigned long flags;
330
331 spin_lock_irqsave(&cross_call_lock, flags);
332
333 /* Init function glue. */
334 ccall_info.func = func;
335 ccall_info.arg1 = arg1;
336 ccall_info.arg2 = arg2;
337 ccall_info.arg3 = arg3;
338 ccall_info.arg4 = arg4;
339 ccall_info.arg5 = arg5;
340
341 /* Init receive/complete mapping, plus fire the IPI's off. */
342 {
343 cpumask_t mask = cpu_present_map;
344 register int i;
345
346 cpu_clear(smp_processor_id(), mask);
347 for(i = 0; i < ncpus; i++) {
348 if (cpu_isset(i, mask)) {
349 ccall_info.processors_in[i] = 0;
350 ccall_info.processors_out[i] = 0;
351 set_cpu_int(i, IRQ_CROSS_CALL);
352 } else {
353 ccall_info.processors_in[i] = 1;
354 ccall_info.processors_out[i] = 1;
355 }
356 }
357 }
358
359 {
360 register int i;
361
362 i = 0;
363 do {
364 while(!ccall_info.processors_in[i])
365 barrier();
366 } while(++i < ncpus);
367
368 i = 0;
369 do {
370 while(!ccall_info.processors_out[i])
371 barrier();
372 } while(++i < ncpus);
373 }
374
375 spin_unlock_irqrestore(&cross_call_lock, flags);
376 }
377}
378
379/* Running cross calls. */
380void smp4m_cross_call_irq(void)
381{
382 int i = smp_processor_id();
383
384 ccall_info.processors_in[i] = 1;
385 ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3,
386 ccall_info.arg4, ccall_info.arg5);
387 ccall_info.processors_out[i] = 1;
388}
389
390void smp4m_percpu_timer_interrupt(struct pt_regs *regs)
391{
392 int cpu = smp_processor_id();
393
394 clear_profile_irq(cpu);
395
396 profile_tick(CPU_PROFILING, regs);
397
398 if(!--prof_counter(cpu)) {
399 int user = user_mode(regs);
400
401 irq_enter();
402 update_process_times(user);
403 irq_exit();
404
405 prof_counter(cpu) = prof_multiplier(cpu);
406 }
407}
408
409extern unsigned int lvl14_resolution;
410
411static void __init smp_setup_percpu_timer(void)
412{
413 int cpu = smp_processor_id();
414
415 prof_counter(cpu) = prof_multiplier(cpu) = 1;
416 load_profile_irq(cpu, lvl14_resolution);
417
418 if(cpu == boot_cpu_id)
419 enable_pil_irq(14);
420}
421
422void __init smp4m_blackbox_id(unsigned *addr)
423{
424 int rd = *addr & 0x3e000000;
425 int rs1 = rd >> 11;
426
427 addr[0] = 0x81580000 | rd; /* rd %tbr, reg */
428 addr[1] = 0x8130200c | rd | rs1; /* srl reg, 0xc, reg */
429 addr[2] = 0x80082003 | rd | rs1; /* and reg, 3, reg */
430}
431
432void __init smp4m_blackbox_current(unsigned *addr)
433{
434 int rd = *addr & 0x3e000000;
435 int rs1 = rd >> 11;
436
437 addr[0] = 0x81580000 | rd; /* rd %tbr, reg */
438 addr[2] = 0x8130200a | rd | rs1; /* srl reg, 0xa, reg */
439 addr[4] = 0x8008200c | rd | rs1; /* and reg, 3, reg */
440}
441
442void __init sun4m_init_smp(void)
443{
444 BTFIXUPSET_BLACKBOX(hard_smp_processor_id, smp4m_blackbox_id);
445 BTFIXUPSET_BLACKBOX(load_current, smp4m_blackbox_current);
446 BTFIXUPSET_CALL(smp_cross_call, smp4m_cross_call, BTFIXUPCALL_NORM);
447 BTFIXUPSET_CALL(smp_message_pass, smp4m_message_pass, BTFIXUPCALL_NORM);
448 BTFIXUPSET_CALL(__hard_smp_processor_id, __smp4m_processor_id, BTFIXUPCALL_NORM);
449}