1 /* sun4m_smp.c: Sparc SUN4M SMP support.
3 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
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>
18 #include <linux/swap.h>
19 #include <asm/cacheflush.h>
20 #include <asm/tlbflush.h>
22 #include <asm/ptrace.h>
23 #include <asm/atomic.h>
25 #include <asm/delay.h>
28 #include <asm/pgalloc.h>
29 #include <asm/pgtable.h>
30 #include <asm/oplib.h>
31 #include <asm/hardirq.h>
32 #include <asm/cpudata.h>
34 #define IRQ_RESCHEDULE 13
35 #define IRQ_STOP_CPU 14
36 #define IRQ_CROSS_CALL 15
38 extern ctxd_t *srmmu_ctx_table_phys;
40 extern void calibrate_delay(void);
42 extern volatile int smp_processors_ready;
43 extern int smp_num_cpus;
44 extern int smp_threads_ready;
45 extern volatile unsigned long cpu_callin_map[NR_CPUS];
46 extern unsigned char boot_cpu_id;
47 extern int smp_activated;
48 extern volatile int __cpu_number_map[NR_CPUS];
49 extern volatile int __cpu_logical_map[NR_CPUS];
50 extern volatile unsigned long ipi_count;
51 extern volatile int smp_process_available;
52 extern volatile int smp_commenced;
53 extern int __smp4m_processor_id(void);
58 #define SMP_PRINTK(x) printk x
63 static inline unsigned long swap(volatile unsigned long *ptr, unsigned long val)
65 __asm__ __volatile__("swap [%1], %0\n\t" :
66 "=&r" (val), "=&r" (ptr) :
67 "0" (val), "1" (ptr));
71 static void smp_setup_percpu_timer(void);
72 extern void cpu_probe(void);
74 void __init smp4m_callin(void)
76 int cpuid = hard_smp_processor_id();
78 local_flush_cache_all();
79 local_flush_tlb_all();
81 set_irq_udt(boot_cpu_id);
83 /* Get our local ticker going. */
84 smp_setup_percpu_timer();
87 smp_store_cpu_info(cpuid);
89 local_flush_cache_all();
90 local_flush_tlb_all();
93 * Unblock the master CPU _only_ when the scheduler state
94 * of all secondary CPUs will be up-to-date, so after
95 * the SMP initialization the master will be just allowed
96 * to call the scheduler code.
98 /* Allow master to continue. */
99 swap((unsigned long *)&cpu_callin_map[cpuid], 1);
101 local_flush_cache_all();
102 local_flush_tlb_all();
106 /* Fix idle thread fields. */
107 __asm__ __volatile__("ld [%0], %%g6\n\t"
108 : : "r" (¤t_set[cpuid])
109 : "memory" /* paranoid */);
111 /* Attach to the address space of init_task. */
112 atomic_inc(&init_mm.mm_count);
113 current->active_mm = &init_mm;
115 while(!smp_commenced)
118 local_flush_cache_all();
119 local_flush_tlb_all();
124 extern int cpu_idle(void *unused);
125 extern void init_IRQ(void);
126 extern void cpu_panic(void);
129 * Cycle through the processors asking the PROM to start each one.
132 extern struct linux_prom_registers smp_penguin_ctable;
133 extern unsigned long trapbase_cpu1[];
134 extern unsigned long trapbase_cpu2[];
135 extern unsigned long trapbase_cpu3[];
137 void __init smp4m_boot_cpus(void)
142 printk("Entering SMP Mode...\n");
145 cpus_clear(cpu_present_map);
147 for (i = 0; !cpu_find_by_instance(i, NULL, &mid); i++)
148 cpu_set(mid, cpu_present_map);
150 for(i=0; i < NR_CPUS; i++) {
151 __cpu_number_map[i] = -1;
152 __cpu_logical_map[i] = -1;
155 __cpu_number_map[boot_cpu_id] = 0;
156 __cpu_logical_map[0] = boot_cpu_id;
157 current_thread_info()->cpu = boot_cpu_id;
159 smp_store_cpu_info(boot_cpu_id);
160 set_irq_udt(boot_cpu_id);
161 smp_setup_percpu_timer();
162 local_flush_cache_all();
163 if(cpu_find_by_instance(1, NULL, NULL))
164 return; /* Not an MP box. */
165 for(i = 0; i < NR_CPUS; i++) {
169 if (cpu_isset(i, cpu_present_map)) {
170 extern unsigned long sun4m_cpu_startup;
171 unsigned long *entry = &sun4m_cpu_startup;
172 struct task_struct *p;
175 /* Cook up an idler for this guy. */
176 kernel_thread(start_secondary, NULL, CLONE_IDLETASK);
180 p = prev_task(&init_task);
184 current_set[i] = p->thread_info;
188 /* See trampoline.S for details... */
189 entry += ((i-1) * 3);
192 * Initialize the contexts table
193 * Since the call to prom_startcpu() trashes the structure,
194 * we need to re-initialize it for each cpu
196 smp_penguin_ctable.which_io = 0;
197 smp_penguin_ctable.phys_addr = (unsigned int) srmmu_ctx_table_phys;
198 smp_penguin_ctable.reg_size = 0;
200 /* whirrr, whirrr, whirrrrrrrrr... */
201 printk("Starting CPU %d at %p\n", i, entry);
202 local_flush_cache_all();
203 prom_startcpu(cpu_data(i).prom_node,
204 &smp_penguin_ctable, 0, (char *)entry);
206 /* wheee... it's going... */
207 for(timeout = 0; timeout < 10000; timeout++) {
208 if(cpu_callin_map[i])
212 if(cpu_callin_map[i]) {
213 /* Another "Red Snapper". */
214 __cpu_number_map[i] = i;
215 __cpu_logical_map[i] = i;
218 printk("Processor %d is stuck.\n", i);
221 if(!(cpu_callin_map[i])) {
222 cpu_clear(i, cpu_present_map);
223 __cpu_number_map[i] = -1;
226 local_flush_cache_all();
228 printk("Error: only one Processor found.\n");
229 cpu_present_map = cpumask_of_cpu(smp_processor_id());
231 unsigned long bogosum = 0;
232 for(i = 0; i < NR_CPUS; i++) {
233 if (cpu_isset(i, cpu_present_map))
234 bogosum += cpu_data(i).udelay_val;
236 printk("Total of %d Processors activated (%lu.%02lu BogoMIPS).\n",
239 (bogosum/(5000/HZ))%100);
241 smp_num_cpus = cpucount + 1;
244 /* Free unneeded trap tables */
245 if (!cpu_isset(i, cpu_present_map)) {
246 ClearPageReserved(virt_to_page(trapbase_cpu1));
247 set_page_count(virt_to_page(trapbase_cpu1), 1);
248 free_page((unsigned long)trapbase_cpu1);
252 if (!cpu_isset(2, cpu_present_map)) {
253 ClearPageReserved(virt_to_page(trapbase_cpu2));
254 set_page_count(virt_to_page(trapbase_cpu2), 1);
255 free_page((unsigned long)trapbase_cpu2);
259 if (!cpu_isset(3, cpu_present_map)) {
260 ClearPageReserved(virt_to_page(trapbase_cpu3));
261 set_page_count(virt_to_page(trapbase_cpu3), 1);
262 free_page((unsigned long)trapbase_cpu3);
267 /* Ok, they are spinning and ready to go. */
268 smp_processors_ready = 1;
271 /* At each hardware IRQ, we get this called to forward IRQ reception
272 * to the next processor. The caller must disable the IRQ level being
273 * serviced globally so that there are no double interrupts received.
275 * XXX See sparc64 irq.c.
277 void smp4m_irq_rotate(int cpu)
281 /* Cross calls, in order to work efficiently and atomically do all
282 * the message passing work themselves, only stopcpu and reschedule
283 * messages come through here.
285 void smp4m_message_pass(int target, int msg, unsigned long data, int wait)
287 static unsigned long smp_cpu_in_msg[NR_CPUS];
289 int me = smp_processor_id();
292 if(msg == MSG_RESCHEDULE) {
293 irq = IRQ_RESCHEDULE;
295 if(smp_cpu_in_msg[me])
297 } else if(msg == MSG_STOP_CPU) {
303 smp_cpu_in_msg[me]++;
304 if(target == MSG_ALL_BUT_SELF || target == MSG_ALL) {
305 mask = cpu_present_map;
306 if(target == MSG_ALL_BUT_SELF)
308 for(i = 0; i < 4; i++) {
309 if (cpu_isset(i, mask))
313 set_cpu_int(target, irq);
315 smp_cpu_in_msg[me]--;
319 printk("Yeeee, trying to send SMP msg(%d) on cpu %d\n", msg, me);
320 panic("Bogon SMP message pass.");
323 static struct smp_funcall {
330 unsigned long processors_in[NR_CPUS]; /* Set when ipi entered. */
331 unsigned long processors_out[NR_CPUS]; /* Set when ipi exited. */
334 static spinlock_t cross_call_lock = SPIN_LOCK_UNLOCKED;
336 /* Cross calls must be serialized, at least currently. */
337 void smp4m_cross_call(smpfunc_t func, unsigned long arg1, unsigned long arg2,
338 unsigned long arg3, unsigned long arg4, unsigned long arg5)
340 if(smp_processors_ready) {
341 register int ncpus = smp_num_cpus;
344 spin_lock_irqsave(&cross_call_lock, flags);
346 /* Init function glue. */
347 ccall_info.func = func;
348 ccall_info.arg1 = arg1;
349 ccall_info.arg2 = arg2;
350 ccall_info.arg3 = arg3;
351 ccall_info.arg4 = arg4;
352 ccall_info.arg5 = arg5;
354 /* Init receive/complete mapping, plus fire the IPI's off. */
356 cpumask_t mask = cpu_present_map;
359 cpu_clear(smp_processor_id(), mask);
360 for(i = 0; i < ncpus; i++) {
361 if (cpu_isset(i, mask)) {
362 ccall_info.processors_in[i] = 0;
363 ccall_info.processors_out[i] = 0;
364 set_cpu_int(i, IRQ_CROSS_CALL);
366 ccall_info.processors_in[i] = 1;
367 ccall_info.processors_out[i] = 1;
377 while(!ccall_info.processors_in[i])
379 } while(++i < ncpus);
383 while(!ccall_info.processors_out[i])
385 } while(++i < ncpus);
388 spin_unlock_irqrestore(&cross_call_lock, flags);
392 /* Running cross calls. */
393 void smp4m_cross_call_irq(void)
395 int i = smp_processor_id();
397 ccall_info.processors_in[i] = 1;
398 ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3,
399 ccall_info.arg4, ccall_info.arg5);
400 ccall_info.processors_out[i] = 1;
403 extern void sparc_do_profile(unsigned long pc, unsigned long o7);
405 void smp4m_percpu_timer_interrupt(struct pt_regs *regs)
407 int cpu = smp_processor_id();
409 clear_profile_irq(cpu);
412 sparc_do_profile(regs->pc, regs->u_regs[UREG_RETPC]);
414 if(!--prof_counter(cpu)) {
415 int user = user_mode(regs);
418 update_process_times(user);
421 prof_counter(cpu) = prof_multiplier(cpu);
425 extern unsigned int lvl14_resolution;
427 static void __init smp_setup_percpu_timer(void)
429 int cpu = smp_processor_id();
431 prof_counter(cpu) = prof_multiplier(cpu) = 1;
432 load_profile_irq(cpu, lvl14_resolution);
434 if(cpu == boot_cpu_id)
438 void __init smp4m_blackbox_id(unsigned *addr)
440 int rd = *addr & 0x3e000000;
443 addr[0] = 0x81580000 | rd; /* rd %tbr, reg */
444 addr[1] = 0x8130200c | rd | rs1; /* srl reg, 0xc, reg */
445 addr[2] = 0x80082003 | rd | rs1; /* and reg, 3, reg */
448 void __init smp4m_blackbox_current(unsigned *addr)
450 int rd = *addr & 0x3e000000;
453 addr[0] = 0x81580000 | rd; /* rd %tbr, reg */
454 addr[2] = 0x8130200a | rd | rs1; /* srl reg, 0xa, reg */
455 addr[4] = 0x8008200c | rd | rs1; /* and reg, 3, reg */
458 void __init sun4m_init_smp(void)
460 BTFIXUPSET_BLACKBOX(hard_smp_processor_id, smp4m_blackbox_id);
461 BTFIXUPSET_BLACKBOX(load_current, smp4m_blackbox_current);
462 BTFIXUPSET_CALL(smp_cross_call, smp4m_cross_call, BTFIXUPCALL_NORM);
463 BTFIXUPSET_CALL(smp_message_pass, smp4m_message_pass, BTFIXUPCALL_NORM);
464 BTFIXUPSET_CALL(__hard_smp_processor_id, __smp4m_processor_id, BTFIXUPCALL_NORM);