1 /* sun4d_smp.c: Sparc SS1000/SC2000 SMP support.
3 * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
5 * Based on sun4m's smp.c, which is:
6 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
11 #include <linux/kernel.h>
12 #include <linux/sched.h>
13 #include <linux/threads.h>
14 #include <linux/smp.h>
15 #include <linux/interrupt.h>
16 #include <linux/kernel_stat.h>
17 #include <linux/init.h>
18 #include <linux/spinlock.h>
20 #include <linux/swap.h>
21 #include <linux/profile.h>
22 #include <linux/delay.h>
24 #include <asm/ptrace.h>
25 #include <asm/atomic.h>
26 #include <asm/irq_regs.h>
30 #include <asm/pgalloc.h>
31 #include <asm/pgtable.h>
32 #include <asm/oplib.h>
35 #include <asm/tlbflush.h>
36 #include <asm/cacheflush.h>
37 #include <asm/cpudata.h>
40 #define IRQ_CROSS_CALL 15
42 extern ctxd_t *srmmu_ctx_table_phys;
44 static volatile int smp_processors_ready = 0;
45 static int smp_highest_cpu;
46 extern volatile unsigned long cpu_callin_map[NR_CPUS];
47 extern cpuinfo_sparc cpu_data[NR_CPUS];
48 extern unsigned char boot_cpu_id;
49 extern volatile int smp_process_available;
51 extern cpumask_t smp_commenced_mask;
53 extern int __smp4d_processor_id(void);
55 /* #define SMP_DEBUG */
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);
73 extern void sun4d_distribute_irqs(void);
75 void __init smp4d_callin(void)
77 int cpuid = hard_smp4d_processor_id();
78 extern spinlock_t sun4d_imsk_lock;
81 /* Show we are alive */
82 cpu_leds[cpuid] = 0x6;
85 /* Enable level15 interrupt, disable level14 interrupt for now */
86 cc_set_imsk((cc_get_imsk() & ~0x8000) | 0x4000);
88 local_flush_cache_all();
89 local_flush_tlb_all();
91 notify_cpu_starting(cpuid);
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 /* Get our local ticker going. */
99 smp_setup_percpu_timer();
102 smp_store_cpu_info(cpuid);
103 local_flush_cache_all();
104 local_flush_tlb_all();
106 /* Allow master to continue. */
107 swap((unsigned long *)&cpu_callin_map[cpuid], 1);
108 local_flush_cache_all();
109 local_flush_tlb_all();
113 while((unsigned long)current_set[cpuid] < PAGE_OFFSET)
116 while(current_set[cpuid]->cpu != cpuid)
119 /* Fix idle thread fields. */
120 __asm__ __volatile__("ld [%0], %%g6\n\t"
121 : : "r" (¤t_set[cpuid])
122 : "memory" /* paranoid */);
124 cpu_leds[cpuid] = 0x9;
127 /* Attach to the address space of init_task. */
128 atomic_inc(&init_mm.mm_count);
129 current->active_mm = &init_mm;
131 local_flush_cache_all();
132 local_flush_tlb_all();
134 local_irq_enable(); /* We don't allow PIL 14 yet */
136 while (!cpu_isset(cpuid, smp_commenced_mask))
139 spin_lock_irqsave(&sun4d_imsk_lock, flags);
140 cc_set_imsk(cc_get_imsk() & ~0x4000); /* Allow PIL 14 as well */
141 spin_unlock_irqrestore(&sun4d_imsk_lock, flags);
142 cpu_set(cpuid, cpu_online_map);
146 extern void init_IRQ(void);
147 extern void cpu_panic(void);
150 * Cycle through the processors asking the PROM to start each one.
153 extern struct linux_prom_registers smp_penguin_ctable;
154 extern unsigned long trapbase_cpu1[];
155 extern unsigned long trapbase_cpu2[];
156 extern unsigned long trapbase_cpu3[];
158 void __init smp4d_boot_cpus(void)
161 current_set[0] = NULL;
162 smp_setup_percpu_timer();
163 local_flush_cache_all();
166 int __cpuinit smp4d_boot_one_cpu(int i)
168 extern unsigned long sun4d_cpu_startup;
169 unsigned long *entry = &sun4d_cpu_startup;
170 struct task_struct *p;
174 cpu_find_by_instance(i, &cpu_node,NULL);
175 /* Cook up an idler for this guy. */
177 current_set[i] = task_thread_info(p);
180 * Initialize the contexts table
181 * Since the call to prom_startcpu() trashes the structure,
182 * we need to re-initialize it for each cpu
184 smp_penguin_ctable.which_io = 0;
185 smp_penguin_ctable.phys_addr = (unsigned int) srmmu_ctx_table_phys;
186 smp_penguin_ctable.reg_size = 0;
188 /* whirrr, whirrr, whirrrrrrrrr... */
189 SMP_PRINTK(("Starting CPU %d at %p \n", i, entry));
190 local_flush_cache_all();
191 prom_startcpu(cpu_node,
192 &smp_penguin_ctable, 0, (char *)entry);
194 SMP_PRINTK(("prom_startcpu returned :)\n"));
196 /* wheee... it's going... */
197 for(timeout = 0; timeout < 10000; timeout++) {
198 if(cpu_callin_map[i])
203 if (!(cpu_callin_map[i])) {
204 printk("Processor %d is stuck.\n", i);
208 local_flush_cache_all();
212 void __init smp4d_smp_done(void)
217 /* setup cpu list for irq rotation */
220 for (i = 0; i < NR_CPUS; i++)
223 prev = &cpu_data(i).next;
226 local_flush_cache_all();
228 /* Free unneeded trap tables */
229 ClearPageReserved(virt_to_page(trapbase_cpu1));
230 init_page_count(virt_to_page(trapbase_cpu1));
231 free_page((unsigned long)trapbase_cpu1);
235 ClearPageReserved(virt_to_page(trapbase_cpu2));
236 init_page_count(virt_to_page(trapbase_cpu2));
237 free_page((unsigned long)trapbase_cpu2);
241 ClearPageReserved(virt_to_page(trapbase_cpu3));
242 init_page_count(virt_to_page(trapbase_cpu3));
243 free_page((unsigned long)trapbase_cpu3);
247 /* Ok, they are spinning and ready to go. */
248 smp_processors_ready = 1;
249 sun4d_distribute_irqs();
252 static struct smp_funcall {
259 unsigned char processors_in[NR_CPUS]; /* Set when ipi entered. */
260 unsigned char processors_out[NR_CPUS]; /* Set when ipi exited. */
261 } ccall_info __attribute__((aligned(8)));
263 static DEFINE_SPINLOCK(cross_call_lock);
265 /* Cross calls must be serialized, at least currently. */
266 static void smp4d_cross_call(smpfunc_t func, cpumask_t mask, unsigned long arg1,
267 unsigned long arg2, unsigned long arg3,
270 if(smp_processors_ready) {
271 register int high = smp_highest_cpu;
274 spin_lock_irqsave(&cross_call_lock, flags);
277 /* If you make changes here, make sure gcc generates proper code... */
278 register smpfunc_t f asm("i0") = func;
279 register unsigned long a1 asm("i1") = arg1;
280 register unsigned long a2 asm("i2") = arg2;
281 register unsigned long a3 asm("i3") = arg3;
282 register unsigned long a4 asm("i4") = arg4;
283 register unsigned long a5 asm("i5") = 0;
285 __asm__ __volatile__(
287 "std %2, [%6 + 8]\n\t"
288 "std %4, [%6 + 16]\n\t" : :
289 "r"(f), "r"(a1), "r"(a2), "r"(a3), "r"(a4), "r"(a5),
290 "r" (&ccall_info.func));
293 /* Init receive/complete mapping, plus fire the IPI's off. */
297 cpu_clear(smp_processor_id(), mask);
298 cpus_and(mask, cpu_online_map, mask);
299 for(i = 0; i <= high; i++) {
300 if (cpu_isset(i, mask)) {
301 ccall_info.processors_in[i] = 0;
302 ccall_info.processors_out[i] = 0;
303 sun4d_send_ipi(i, IRQ_CROSS_CALL);
313 if (!cpu_isset(i, mask))
315 while(!ccall_info.processors_in[i])
317 } while(++i <= high);
321 if (!cpu_isset(i, mask))
323 while(!ccall_info.processors_out[i])
325 } while(++i <= high);
328 spin_unlock_irqrestore(&cross_call_lock, flags);
332 /* Running cross calls. */
333 void smp4d_cross_call_irq(void)
335 int i = hard_smp4d_processor_id();
337 ccall_info.processors_in[i] = 1;
338 ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3,
339 ccall_info.arg4, ccall_info.arg5);
340 ccall_info.processors_out[i] = 1;
343 void smp4d_percpu_timer_interrupt(struct pt_regs *regs)
345 struct pt_regs *old_regs;
346 int cpu = hard_smp4d_processor_id();
347 static int cpu_tick[NR_CPUS];
348 static char led_mask[] = { 0xe, 0xd, 0xb, 0x7, 0xb, 0xd };
350 old_regs = set_irq_regs(regs);
351 bw_get_prof_limit(cpu);
352 bw_clear_intr_mask(0, 1); /* INTR_TABLE[0] & 1 is Profile IRQ */
355 if (!(cpu_tick[cpu] & 15)) {
356 if (cpu_tick[cpu] == 0x60)
358 cpu_leds[cpu] = led_mask[cpu_tick[cpu] >> 4];
362 profile_tick(CPU_PROFILING);
364 if(!--prof_counter(cpu)) {
365 int user = user_mode(regs);
368 update_process_times(user);
371 prof_counter(cpu) = prof_multiplier(cpu);
373 set_irq_regs(old_regs);
376 extern unsigned int lvl14_resolution;
378 static void __init smp_setup_percpu_timer(void)
380 int cpu = hard_smp4d_processor_id();
382 prof_counter(cpu) = prof_multiplier(cpu) = 1;
383 load_profile_irq(cpu, lvl14_resolution);
386 void __init smp4d_blackbox_id(unsigned *addr)
388 int rd = *addr & 0x3e000000;
390 addr[0] = 0xc0800800 | rd; /* lda [%g0] ASI_M_VIKING_TMP1, reg */
391 addr[1] = 0x01000000; /* nop */
392 addr[2] = 0x01000000; /* nop */
395 void __init smp4d_blackbox_current(unsigned *addr)
397 int rd = *addr & 0x3e000000;
399 addr[0] = 0xc0800800 | rd; /* lda [%g0] ASI_M_VIKING_TMP1, reg */
400 addr[2] = 0x81282002 | rd | (rd >> 11); /* sll reg, 2, reg */
401 addr[4] = 0x01000000; /* nop */
404 void __init sun4d_init_smp(void)
407 extern unsigned int t_nmi[], linux_trap_ipi15_sun4d[], linux_trap_ipi15_sun4m[];
409 /* Patch ipi15 trap table */
410 t_nmi[1] = t_nmi[1] + (linux_trap_ipi15_sun4d - linux_trap_ipi15_sun4m);
412 /* And set btfixup... */
413 BTFIXUPSET_BLACKBOX(hard_smp_processor_id, smp4d_blackbox_id);
414 BTFIXUPSET_BLACKBOX(load_current, smp4d_blackbox_current);
415 BTFIXUPSET_CALL(smp_cross_call, smp4d_cross_call, BTFIXUPCALL_NORM);
416 BTFIXUPSET_CALL(__hard_smp_processor_id, __smp4d_processor_id, BTFIXUPCALL_NORM);
418 for (i = 0; i < NR_CPUS; i++) {
419 ccall_info.processors_in[i] = 1;
420 ccall_info.processors_out[i] = 1;