1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
8 #include <linux/clockchips.h>
9 #include <linux/interrupt.h>
10 #include <linux/profile.h>
11 #include <linux/delay.h>
12 #include <linux/sched/mm.h>
13 #include <linux/cpu.h>
15 #include <asm/cacheflush.h>
16 #include <asm/switch_to.h>
17 #include <asm/tlbflush.h>
18 #include <asm/timer.h>
19 #include <asm/oplib.h>
24 #define IRQ_IPI_SINGLE 12
25 #define IRQ_IPI_MASK 13
26 #define IRQ_IPI_RESCHED 14
27 #define IRQ_CROSS_CALL 15
29 static inline unsigned long
30 swap_ulong(volatile unsigned long *ptr
, unsigned long val
)
32 __asm__
__volatile__("swap [%1], %0\n\t" :
33 "=&r" (val
), "=&r" (ptr
) :
34 "0" (val
), "1" (ptr
));
38 void sun4m_cpu_pre_starting(void *arg
)
42 void sun4m_cpu_pre_online(void *arg
)
44 int cpuid
= hard_smp_processor_id();
46 /* Allow master to continue. The master will then give us the
47 * go-ahead by setting the smp_commenced_mask and will wait without
48 * timeouts until our setup is completed fully (signified by
49 * our bit being set in the cpu_online_mask).
51 swap_ulong(&cpu_callin_map
[cpuid
], 1);
53 /* XXX: What's up with all the flushes? */
54 local_ops
->cache_all();
57 /* Fix idle thread fields. */
58 __asm__
__volatile__("ld [%0], %%g6\n\t"
59 : : "r" (¤t_set
[cpuid
])
60 : "memory" /* paranoid */);
62 /* Attach to the address space of init_task. */
64 current
->active_mm
= &init_mm
;
66 while (!cpumask_test_cpu(cpuid
, &smp_commenced_mask
))
71 * Cycle through the processors asking the PROM to start each one.
73 void __init
smp4m_boot_cpus(void)
75 sun4m_unmask_profile_irq();
76 local_ops
->cache_all();
79 int smp4m_boot_one_cpu(int i
, struct task_struct
*idle
)
81 unsigned long *entry
= &sun4m_cpu_startup
;
85 cpu_find_by_mid(i
, &cpu_node
);
86 current_set
[i
] = task_thread_info(idle
);
88 /* See trampoline.S for details... */
89 entry
+= ((i
- 1) * 3);
92 * Initialize the contexts table
93 * Since the call to prom_startcpu() trashes the structure,
94 * we need to re-initialize it for each cpu
96 smp_penguin_ctable
.which_io
= 0;
97 smp_penguin_ctable
.phys_addr
= (unsigned int) srmmu_ctx_table_phys
;
98 smp_penguin_ctable
.reg_size
= 0;
100 /* whirrr, whirrr, whirrrrrrrrr... */
101 printk(KERN_INFO
"Starting CPU %d at %p\n", i
, entry
);
102 local_ops
->cache_all();
103 prom_startcpu(cpu_node
, &smp_penguin_ctable
, 0, (char *)entry
);
105 /* wheee... it's going... */
106 for (timeout
= 0; timeout
< 10000; timeout
++) {
107 if (cpu_callin_map
[i
])
112 if (!(cpu_callin_map
[i
])) {
113 printk(KERN_ERR
"Processor %d is stuck.\n", i
);
117 local_ops
->cache_all();
121 void __init
smp4m_smp_done(void)
126 /* setup cpu list for irq rotation */
129 for_each_online_cpu(i
) {
131 prev
= &cpu_data(i
).next
;
134 local_ops
->cache_all();
136 /* Ok, they are spinning and ready to go. */
139 static void sun4m_send_ipi(int cpu
, int level
)
141 sbus_writel(SUN4M_SOFT_INT(level
), &sun4m_irq_percpu
[cpu
]->set
);
144 static void sun4m_ipi_resched(int cpu
)
146 sun4m_send_ipi(cpu
, IRQ_IPI_RESCHED
);
149 static void sun4m_ipi_single(int cpu
)
151 sun4m_send_ipi(cpu
, IRQ_IPI_SINGLE
);
154 static void sun4m_ipi_mask_one(int cpu
)
156 sun4m_send_ipi(cpu
, IRQ_IPI_MASK
);
159 static struct smp_funcall
{
166 unsigned long processors_in
[SUN4M_NCPUS
]; /* Set when ipi entered. */
167 unsigned long processors_out
[SUN4M_NCPUS
]; /* Set when ipi exited. */
170 static DEFINE_SPINLOCK(cross_call_lock
);
172 /* Cross calls must be serialized, at least currently. */
173 static void sun4m_cross_call(void *func
, cpumask_t mask
, unsigned long arg1
,
174 unsigned long arg2
, unsigned long arg3
,
177 register int ncpus
= SUN4M_NCPUS
;
180 spin_lock_irqsave(&cross_call_lock
, flags
);
182 /* Init function glue. */
183 ccall_info
.func
= func
;
184 ccall_info
.arg1
= arg1
;
185 ccall_info
.arg2
= arg2
;
186 ccall_info
.arg3
= arg3
;
187 ccall_info
.arg4
= arg4
;
190 /* Init receive/complete mapping, plus fire the IPI's off. */
194 cpumask_clear_cpu(smp_processor_id(), &mask
);
195 cpumask_and(&mask
, cpu_online_mask
, &mask
);
196 for (i
= 0; i
< ncpus
; i
++) {
197 if (cpumask_test_cpu(i
, &mask
)) {
198 ccall_info
.processors_in
[i
] = 0;
199 ccall_info
.processors_out
[i
] = 0;
200 sun4m_send_ipi(i
, IRQ_CROSS_CALL
);
202 ccall_info
.processors_in
[i
] = 1;
203 ccall_info
.processors_out
[i
] = 1;
213 if (!cpumask_test_cpu(i
, &mask
))
215 while (!ccall_info
.processors_in
[i
])
217 } while (++i
< ncpus
);
221 if (!cpumask_test_cpu(i
, &mask
))
223 while (!ccall_info
.processors_out
[i
])
225 } while (++i
< ncpus
);
227 spin_unlock_irqrestore(&cross_call_lock
, flags
);
230 /* Running cross calls. */
231 void smp4m_cross_call_irq(void)
233 void (*func
)(unsigned long, unsigned long, unsigned long, unsigned long,
234 unsigned long) = ccall_info
.func
;
235 int i
= smp_processor_id();
237 ccall_info
.processors_in
[i
] = 1;
238 func(ccall_info
.arg1
, ccall_info
.arg2
, ccall_info
.arg3
, ccall_info
.arg4
,
240 ccall_info
.processors_out
[i
] = 1;
243 void smp4m_percpu_timer_interrupt(struct pt_regs
*regs
)
245 struct pt_regs
*old_regs
;
246 struct clock_event_device
*ce
;
247 int cpu
= smp_processor_id();
249 old_regs
= set_irq_regs(regs
);
251 ce
= &per_cpu(sparc32_clockevent
, cpu
);
253 if (clockevent_state_periodic(ce
))
254 sun4m_clear_profile_irq(cpu
);
256 sparc_config
.load_profile_irq(cpu
, 0); /* Is this needless? */
259 ce
->event_handler(ce
);
262 set_irq_regs(old_regs
);
265 static const struct sparc32_ipi_ops sun4m_ipi_ops
= {
266 .cross_call
= sun4m_cross_call
,
267 .resched
= sun4m_ipi_resched
,
268 .single
= sun4m_ipi_single
,
269 .mask_one
= sun4m_ipi_mask_one
,
272 void __init
sun4m_init_smp(void)
274 sparc32_ipi_ops
= &sun4m_ipi_ops
;