blob: 8a65f158153ddcc26deb2cb820e6387d775cd079 [file] [log] [blame]
Sam Ravnborgaba20a82011-01-28 22:08:20 +00001/*
2 * sun4m SMP support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
5 */
6
Tkhai Kirill62f08282012-04-04 21:49:26 +02007#include <linux/clockchips.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/profile.h>
Adrian Bunk6c81c322008-02-06 01:37:51 -080010#include <linux/delay.h>
David S. Miller5d83d662012-05-13 20:49:31 -070011#include <linux/sched.h>
Robert Reif4245e592008-10-12 20:52:26 -070012#include <linux/cpu.h>
Adrian Bunk6c81c322008-02-06 01:37:51 -080013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/cacheflush.h>
Sam Ravnborgbde4d8b2012-03-30 15:53:50 +020015#include <asm/switch_to.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/tlbflush.h>
Tkhai Kirill62f08282012-04-04 21:49:26 +020017#include <asm/timer.h>
David S. Miller5d83d662012-05-13 20:49:31 -070018#include <asm/oplib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Al Viro32231a62007-07-21 19:18:57 -070020#include "irq.h"
Sam Ravnborgaba20a82011-01-28 22:08:20 +000021#include "kernel.h"
Al Viro32231a62007-07-21 19:18:57 -070022
Daniel Hellstromecbc42b2011-05-02 00:08:53 +000023#define IRQ_IPI_SINGLE 12
24#define IRQ_IPI_MASK 13
25#define IRQ_IPI_RESCHED 14
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define IRQ_CROSS_CALL 15
27
Wu Fengguang1a8a27c2009-01-07 18:09:10 -080028static inline unsigned long
29swap_ulong(volatile unsigned long *ptr, unsigned long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 __asm__ __volatile__("swap [%1], %0\n\t" :
32 "=&r" (val), "=&r" (ptr) :
33 "0" (val), "1" (ptr));
34 return val;
35}
36
Sam Ravnborgf9fd3482013-02-15 15:52:06 +010037void __cpuinit sun4m_cpu_pre_starting(void *arg)
38{
39}
40
41void __cpuinit sun4m_cpu_pre_online(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 int cpuid = hard_smp_processor_id();
44
Sam Ravnborgf9fd3482013-02-15 15:52:06 +010045 /* Allow master to continue. The master will then give us the
46 * go-ahead by setting the smp_commenced_mask and will wait without
47 * timeouts until our setup is completed fully (signified by
48 * our bit being set in the cpu_online_mask).
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 */
Wu Fengguang1a8a27c2009-01-07 18:09:10 -080050 swap_ulong(&cpu_callin_map[cpuid], 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Bob Breuera54123e2006-03-23 22:36:19 -080052 /* XXX: What's up with all the flushes? */
David S. Miller5d83d662012-05-13 20:49:31 -070053 local_ops->cache_all();
54 local_ops->tlb_all();
Sam Ravnborgaba20a82011-01-28 22:08:20 +000055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 /* Fix idle thread fields. */
57 __asm__ __volatile__("ld [%0], %%g6\n\t"
58 : : "r" (&current_set[cpuid])
59 : "memory" /* paranoid */);
60
61 /* Attach to the address space of init_task. */
62 atomic_inc(&init_mm.mm_count);
63 current->active_mm = &init_mm;
64
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -070065 while (!cpumask_test_cpu(cpuid, &smp_commenced_mask))
Bob Breuera54123e2006-03-23 22:36:19 -080066 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * Cycle through the processors asking the PROM to start each one.
71 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072void __init smp4m_boot_cpus(void)
73{
Tkhai Kirill62f08282012-04-04 21:49:26 +020074 sun4m_unmask_profile_irq();
David S. Miller5d83d662012-05-13 20:49:31 -070075 local_ops->cache_all();
Bob Breuera54123e2006-03-23 22:36:19 -080076}
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Thomas Gleixnerf0a2bc72012-04-20 13:05:56 +000078int __cpuinit smp4m_boot_one_cpu(int i, struct task_struct *idle)
Bob Breuera54123e2006-03-23 22:36:19 -080079{
Bob Breuera54123e2006-03-23 22:36:19 -080080 unsigned long *entry = &sun4m_cpu_startup;
Bob Breuera54123e2006-03-23 22:36:19 -080081 int timeout;
82 int cpu_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bob Breuera54123e2006-03-23 22:36:19 -080084 cpu_find_by_mid(i, &cpu_node);
Thomas Gleixnerf0a2bc72012-04-20 13:05:56 +000085 current_set[i] = task_thread_info(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Bob Breuera54123e2006-03-23 22:36:19 -080087 /* See trampoline.S for details... */
Sam Ravnborgaba20a82011-01-28 22:08:20 +000088 entry += ((i - 1) * 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Bob Breuera54123e2006-03-23 22:36:19 -080090 /*
91 * Initialize the contexts table
92 * Since the call to prom_startcpu() trashes the structure,
93 * we need to re-initialize it for each cpu
94 */
95 smp_penguin_ctable.which_io = 0;
96 smp_penguin_ctable.phys_addr = (unsigned int) srmmu_ctx_table_phys;
97 smp_penguin_ctable.reg_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Bob Breuera54123e2006-03-23 22:36:19 -080099 /* whirrr, whirrr, whirrrrrrrrr... */
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000100 printk(KERN_INFO "Starting CPU %d at %p\n", i, entry);
David S. Miller5d83d662012-05-13 20:49:31 -0700101 local_ops->cache_all();
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000102 prom_startcpu(cpu_node, &smp_penguin_ctable, 0, (char *)entry);
Bob Breuera54123e2006-03-23 22:36:19 -0800103
104 /* wheee... it's going... */
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000105 for (timeout = 0; timeout < 10000; timeout++) {
106 if (cpu_callin_map[i])
Bob Breuera54123e2006-03-23 22:36:19 -0800107 break;
108 udelay(200);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110
Bob Breuera54123e2006-03-23 22:36:19 -0800111 if (!(cpu_callin_map[i])) {
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000112 printk(KERN_ERR "Processor %d is stuck.\n", i);
Bob Breuera54123e2006-03-23 22:36:19 -0800113 return -ENODEV;
114 }
115
David S. Miller5d83d662012-05-13 20:49:31 -0700116 local_ops->cache_all();
Bob Breuera54123e2006-03-23 22:36:19 -0800117 return 0;
118}
119
120void __init smp4m_smp_done(void)
121{
122 int i, first;
123 int *prev;
124
125 /* setup cpu list for irq rotation */
126 first = 0;
127 prev = &first;
Rusty Russellec7c14b2009-03-16 14:40:24 +1030128 for_each_online_cpu(i) {
129 *prev = i;
130 prev = &cpu_data(i).next;
Bob Breuera54123e2006-03-23 22:36:19 -0800131 }
132 *prev = first;
David S. Miller5d83d662012-05-13 20:49:31 -0700133 local_ops->cache_all();
Bob Breuera54123e2006-03-23 22:36:19 -0800134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 /* Ok, they are spinning and ready to go. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200138static void sun4m_send_ipi(int cpu, int level)
Daniel Hellstromecbc42b2011-05-02 00:08:53 +0000139{
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200140 sbus_writel(SUN4M_SOFT_INT(level), &sun4m_irq_percpu[cpu]->set);
Daniel Hellstromecbc42b2011-05-02 00:08:53 +0000141}
142
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200143static void sun4m_ipi_resched(int cpu)
Daniel Hellstromecbc42b2011-05-02 00:08:53 +0000144{
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200145 sun4m_send_ipi(cpu, IRQ_IPI_RESCHED);
Daniel Hellstromecbc42b2011-05-02 00:08:53 +0000146}
147
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200148static void sun4m_ipi_single(int cpu)
Daniel Hellstromecbc42b2011-05-02 00:08:53 +0000149{
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200150 sun4m_send_ipi(cpu, IRQ_IPI_SINGLE);
Daniel Hellstromecbc42b2011-05-02 00:08:53 +0000151}
152
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200153static void sun4m_ipi_mask_one(int cpu)
Daniel Hellstromecbc42b2011-05-02 00:08:53 +0000154{
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200155 sun4m_send_ipi(cpu, IRQ_IPI_MASK);
Daniel Hellstromecbc42b2011-05-02 00:08:53 +0000156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static struct smp_funcall {
159 smpfunc_t func;
160 unsigned long arg1;
161 unsigned long arg2;
162 unsigned long arg3;
163 unsigned long arg4;
164 unsigned long arg5;
Bob Breuera54123e2006-03-23 22:36:19 -0800165 unsigned long processors_in[SUN4M_NCPUS]; /* Set when ipi entered. */
166 unsigned long processors_out[SUN4M_NCPUS]; /* Set when ipi exited. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167} ccall_info;
168
169static DEFINE_SPINLOCK(cross_call_lock);
170
171/* Cross calls must be serialized, at least currently. */
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200172static void sun4m_cross_call(smpfunc_t func, cpumask_t mask, unsigned long arg1,
Adrian Bunkc61c65c2008-06-05 11:40:58 -0700173 unsigned long arg2, unsigned long arg3,
David S. Miller66e4f8c2008-08-27 20:03:22 -0700174 unsigned long arg4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Bob Breuera54123e2006-03-23 22:36:19 -0800176 register int ncpus = SUN4M_NCPUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 unsigned long flags;
178
179 spin_lock_irqsave(&cross_call_lock, flags);
180
181 /* Init function glue. */
182 ccall_info.func = func;
183 ccall_info.arg1 = arg1;
184 ccall_info.arg2 = arg2;
185 ccall_info.arg3 = arg3;
186 ccall_info.arg4 = arg4;
David S. Miller66e4f8c2008-08-27 20:03:22 -0700187 ccall_info.arg5 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 /* Init receive/complete mapping, plus fire the IPI's off. */
190 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 register int i;
192
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -0700193 cpumask_clear_cpu(smp_processor_id(), &mask);
194 cpumask_and(&mask, cpu_online_mask, &mask);
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000195 for (i = 0; i < ncpus; i++) {
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -0700196 if (cpumask_test_cpu(i, &mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 ccall_info.processors_in[i] = 0;
198 ccall_info.processors_out[i] = 0;
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200199 sun4m_send_ipi(i, IRQ_CROSS_CALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 } else {
201 ccall_info.processors_in[i] = 1;
202 ccall_info.processors_out[i] = 1;
203 }
204 }
205 }
206
207 {
208 register int i;
209
210 i = 0;
211 do {
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -0700212 if (!cpumask_test_cpu(i, &mask))
David S. Miller66e4f8c2008-08-27 20:03:22 -0700213 continue;
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000214 while (!ccall_info.processors_in[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 barrier();
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000216 } while (++i < ncpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 i = 0;
219 do {
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -0700220 if (!cpumask_test_cpu(i, &mask))
David S. Miller66e4f8c2008-08-27 20:03:22 -0700221 continue;
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000222 while (!ccall_info.processors_out[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 barrier();
Sam Ravnborgaba20a82011-01-28 22:08:20 +0000224 } while (++i < ncpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 spin_unlock_irqrestore(&cross_call_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229/* Running cross calls. */
230void smp4m_cross_call_irq(void)
231{
232 int i = smp_processor_id();
233
234 ccall_info.processors_in[i] = 1;
235 ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3,
236 ccall_info.arg4, ccall_info.arg5);
237 ccall_info.processors_out[i] = 1;
238}
239
240void smp4m_percpu_timer_interrupt(struct pt_regs *regs)
241{
Al Viro0d844382006-10-08 14:30:44 +0100242 struct pt_regs *old_regs;
Tkhai Kirill62f08282012-04-04 21:49:26 +0200243 struct clock_event_device *ce;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 int cpu = smp_processor_id();
245
Al Viro0d844382006-10-08 14:30:44 +0100246 old_regs = set_irq_regs(regs);
247
Tkhai Kirill62f08282012-04-04 21:49:26 +0200248 ce = &per_cpu(sparc32_clockevent, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Tkhai Kirill62f08282012-04-04 21:49:26 +0200250 if (ce->mode & CLOCK_EVT_MODE_PERIODIC)
251 sun4m_clear_profile_irq(cpu);
252 else
Sam Ravnborg08c93882012-05-14 17:30:35 +0200253 sparc_config.load_profile_irq(cpu, 0); /* Is this needless? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Tkhai Kirill62f08282012-04-04 21:49:26 +0200255 irq_enter();
256 ce->event_handler(ce);
257 irq_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Al Viro0d844382006-10-08 14:30:44 +0100259 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200262static const struct sparc32_ipi_ops sun4m_ipi_ops = {
263 .cross_call = sun4m_cross_call,
264 .resched = sun4m_ipi_resched,
265 .single = sun4m_ipi_single,
266 .mask_one = sun4m_ipi_mask_one,
267};
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269void __init sun4m_init_smp(void)
270{
Sam Ravnborg4ba22b12012-05-14 15:14:36 +0200271 sparc32_ipi_ops = &sun4m_ipi_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}