2011-01-28 22:08:20 +00:00
|
|
|
/*
|
|
|
|
* sun4m SMP support.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
|
|
|
|
*/
|
|
|
|
|
2012-04-04 19:49:26 +00:00
|
|
|
#include <linux/clockchips.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/profile.h>
|
2008-02-06 09:37:51 +00:00
|
|
|
#include <linux/delay.h>
|
2012-05-14 03:49:31 +00:00
|
|
|
#include <linux/sched.h>
|
2008-10-13 03:52:26 +00:00
|
|
|
#include <linux/cpu.h>
|
2008-02-06 09:37:51 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/cacheflush.h>
|
2012-03-30 13:53:50 +00:00
|
|
|
#include <asm/switch_to.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/tlbflush.h>
|
2012-04-04 19:49:26 +00:00
|
|
|
#include <asm/timer.h>
|
2012-05-14 03:49:31 +00:00
|
|
|
#include <asm/oplib.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-07-22 02:18:57 +00:00
|
|
|
#include "irq.h"
|
2011-01-28 22:08:20 +00:00
|
|
|
#include "kernel.h"
|
2007-07-22 02:18:57 +00:00
|
|
|
|
2011-05-02 00:08:53 +00:00
|
|
|
#define IRQ_IPI_SINGLE 12
|
|
|
|
#define IRQ_IPI_MASK 13
|
|
|
|
#define IRQ_IPI_RESCHED 14
|
2005-04-16 22:20:36 +00:00
|
|
|
#define IRQ_CROSS_CALL 15
|
|
|
|
|
2009-01-08 02:09:10 +00:00
|
|
|
static inline unsigned long
|
|
|
|
swap_ulong(volatile unsigned long *ptr, unsigned long val)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
__asm__ __volatile__("swap [%1], %0\n\t" :
|
|
|
|
"=&r" (val), "=&r" (ptr) :
|
|
|
|
"0" (val), "1" (ptr));
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2006-06-20 07:36:10 +00:00
|
|
|
void __cpuinit smp4m_callin(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int cpuid = hard_smp_processor_id();
|
|
|
|
|
2012-05-14 03:49:31 +00:00
|
|
|
local_ops->cache_all();
|
|
|
|
local_ops->tlb_all();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-09-07 14:57:22 +00:00
|
|
|
notify_cpu_starting(cpuid);
|
|
|
|
|
2012-04-04 19:49:26 +00:00
|
|
|
register_percpu_ce(cpuid);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
calibrate_delay();
|
|
|
|
smp_store_cpu_info(cpuid);
|
|
|
|
|
2012-05-14 03:49:31 +00:00
|
|
|
local_ops->cache_all();
|
|
|
|
local_ops->tlb_all();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unblock the master CPU _only_ when the scheduler state
|
|
|
|
* of all secondary CPUs will be up-to-date, so after
|
|
|
|
* the SMP initialization the master will be just allowed
|
|
|
|
* to call the scheduler code.
|
|
|
|
*/
|
|
|
|
/* Allow master to continue. */
|
2009-01-08 02:09:10 +00:00
|
|
|
swap_ulong(&cpu_callin_map[cpuid], 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-24 06:36:19 +00:00
|
|
|
/* XXX: What's up with all the flushes? */
|
2012-05-14 03:49:31 +00:00
|
|
|
local_ops->cache_all();
|
|
|
|
local_ops->tlb_all();
|
2011-01-28 22:08:20 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Fix idle thread fields. */
|
|
|
|
__asm__ __volatile__("ld [%0], %%g6\n\t"
|
|
|
|
: : "r" (¤t_set[cpuid])
|
|
|
|
: "memory" /* paranoid */);
|
|
|
|
|
|
|
|
/* Attach to the address space of init_task. */
|
|
|
|
atomic_inc(&init_mm.mm_count);
|
|
|
|
current->active_mm = &init_mm;
|
|
|
|
|
2011-05-16 20:38:07 +00:00
|
|
|
while (!cpumask_test_cpu(cpuid, &smp_commenced_mask))
|
2006-03-24 06:36:19 +00:00
|
|
|
mb();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
local_irq_enable();
|
2006-03-24 06:36:19 +00:00
|
|
|
|
2009-03-16 04:10:22 +00:00
|
|
|
set_cpu_online(cpuid, true);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cycle through the processors asking the PROM to start each one.
|
|
|
|
*/
|
|
|
|
void __init smp4m_boot_cpus(void)
|
|
|
|
{
|
2012-04-04 19:49:26 +00:00
|
|
|
sun4m_unmask_profile_irq();
|
2012-05-14 03:49:31 +00:00
|
|
|
local_ops->cache_all();
|
2006-03-24 06:36:19 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-20 13:05:56 +00:00
|
|
|
int __cpuinit smp4m_boot_one_cpu(int i, struct task_struct *idle)
|
2006-03-24 06:36:19 +00:00
|
|
|
{
|
|
|
|
unsigned long *entry = &sun4m_cpu_startup;
|
|
|
|
int timeout;
|
|
|
|
int cpu_node;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-24 06:36:19 +00:00
|
|
|
cpu_find_by_mid(i, &cpu_node);
|
2012-04-20 13:05:56 +00:00
|
|
|
current_set[i] = task_thread_info(idle);
|
2006-03-24 06:36:19 +00:00
|
|
|
|
|
|
|
/* See trampoline.S for details... */
|
2011-01-28 22:08:20 +00:00
|
|
|
entry += ((i - 1) * 3);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-24 06:36:19 +00:00
|
|
|
/*
|
|
|
|
* Initialize the contexts table
|
|
|
|
* Since the call to prom_startcpu() trashes the structure,
|
|
|
|
* we need to re-initialize it for each cpu
|
|
|
|
*/
|
|
|
|
smp_penguin_ctable.which_io = 0;
|
|
|
|
smp_penguin_ctable.phys_addr = (unsigned int) srmmu_ctx_table_phys;
|
|
|
|
smp_penguin_ctable.reg_size = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-24 06:36:19 +00:00
|
|
|
/* whirrr, whirrr, whirrrrrrrrr... */
|
2011-01-28 22:08:20 +00:00
|
|
|
printk(KERN_INFO "Starting CPU %d at %p\n", i, entry);
|
2012-05-14 03:49:31 +00:00
|
|
|
local_ops->cache_all();
|
2011-01-28 22:08:20 +00:00
|
|
|
prom_startcpu(cpu_node, &smp_penguin_ctable, 0, (char *)entry);
|
2006-03-24 06:36:19 +00:00
|
|
|
|
|
|
|
/* wheee... it's going... */
|
2011-01-28 22:08:20 +00:00
|
|
|
for (timeout = 0; timeout < 10000; timeout++) {
|
|
|
|
if (cpu_callin_map[i])
|
2006-03-24 06:36:19 +00:00
|
|
|
break;
|
|
|
|
udelay(200);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-03-24 06:36:19 +00:00
|
|
|
if (!(cpu_callin_map[i])) {
|
2011-01-28 22:08:20 +00:00
|
|
|
printk(KERN_ERR "Processor %d is stuck.\n", i);
|
2006-03-24 06:36:19 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-05-14 03:49:31 +00:00
|
|
|
local_ops->cache_all();
|
2006-03-24 06:36:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init smp4m_smp_done(void)
|
|
|
|
{
|
|
|
|
int i, first;
|
|
|
|
int *prev;
|
|
|
|
|
|
|
|
/* setup cpu list for irq rotation */
|
|
|
|
first = 0;
|
|
|
|
prev = &first;
|
2009-03-16 04:10:24 +00:00
|
|
|
for_each_online_cpu(i) {
|
|
|
|
*prev = i;
|
|
|
|
prev = &cpu_data(i).next;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2006-03-24 06:36:19 +00:00
|
|
|
*prev = first;
|
2012-05-14 03:49:31 +00:00
|
|
|
local_ops->cache_all();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Ok, they are spinning and ready to go. */
|
|
|
|
}
|
|
|
|
|
2012-05-14 13:14:36 +00:00
|
|
|
static void sun4m_send_ipi(int cpu, int level)
|
2011-05-02 00:08:53 +00:00
|
|
|
{
|
2012-05-14 13:14:36 +00:00
|
|
|
sbus_writel(SUN4M_SOFT_INT(level), &sun4m_irq_percpu[cpu]->set);
|
2011-05-02 00:08:53 +00:00
|
|
|
}
|
|
|
|
|
2012-05-14 13:14:36 +00:00
|
|
|
static void sun4m_ipi_resched(int cpu)
|
2011-05-02 00:08:53 +00:00
|
|
|
{
|
2012-05-14 13:14:36 +00:00
|
|
|
sun4m_send_ipi(cpu, IRQ_IPI_RESCHED);
|
2011-05-02 00:08:53 +00:00
|
|
|
}
|
|
|
|
|
2012-05-14 13:14:36 +00:00
|
|
|
static void sun4m_ipi_single(int cpu)
|
2011-05-02 00:08:53 +00:00
|
|
|
{
|
2012-05-14 13:14:36 +00:00
|
|
|
sun4m_send_ipi(cpu, IRQ_IPI_SINGLE);
|
2011-05-02 00:08:53 +00:00
|
|
|
}
|
|
|
|
|
2012-05-14 13:14:36 +00:00
|
|
|
static void sun4m_ipi_mask_one(int cpu)
|
2011-05-02 00:08:53 +00:00
|
|
|
{
|
2012-05-14 13:14:36 +00:00
|
|
|
sun4m_send_ipi(cpu, IRQ_IPI_MASK);
|
2011-05-02 00:08:53 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static struct smp_funcall {
|
|
|
|
smpfunc_t func;
|
|
|
|
unsigned long arg1;
|
|
|
|
unsigned long arg2;
|
|
|
|
unsigned long arg3;
|
|
|
|
unsigned long arg4;
|
|
|
|
unsigned long arg5;
|
2006-03-24 06:36:19 +00:00
|
|
|
unsigned long processors_in[SUN4M_NCPUS]; /* Set when ipi entered. */
|
|
|
|
unsigned long processors_out[SUN4M_NCPUS]; /* Set when ipi exited. */
|
2005-04-16 22:20:36 +00:00
|
|
|
} ccall_info;
|
|
|
|
|
|
|
|
static DEFINE_SPINLOCK(cross_call_lock);
|
|
|
|
|
|
|
|
/* Cross calls must be serialized, at least currently. */
|
2012-05-14 13:14:36 +00:00
|
|
|
static void sun4m_cross_call(smpfunc_t func, cpumask_t mask, unsigned long arg1,
|
2008-06-05 18:40:58 +00:00
|
|
|
unsigned long arg2, unsigned long arg3,
|
2008-08-28 03:03:22 +00:00
|
|
|
unsigned long arg4)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-03-24 06:36:19 +00:00
|
|
|
register int ncpus = SUN4M_NCPUS;
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&cross_call_lock, flags);
|
|
|
|
|
|
|
|
/* Init function glue. */
|
|
|
|
ccall_info.func = func;
|
|
|
|
ccall_info.arg1 = arg1;
|
|
|
|
ccall_info.arg2 = arg2;
|
|
|
|
ccall_info.arg3 = arg3;
|
|
|
|
ccall_info.arg4 = arg4;
|
2008-08-28 03:03:22 +00:00
|
|
|
ccall_info.arg5 = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Init receive/complete mapping, plus fire the IPI's off. */
|
|
|
|
{
|
|
|
|
register int i;
|
|
|
|
|
2011-05-16 20:38:07 +00:00
|
|
|
cpumask_clear_cpu(smp_processor_id(), &mask);
|
|
|
|
cpumask_and(&mask, cpu_online_mask, &mask);
|
2011-01-28 22:08:20 +00:00
|
|
|
for (i = 0; i < ncpus; i++) {
|
2011-05-16 20:38:07 +00:00
|
|
|
if (cpumask_test_cpu(i, &mask)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
ccall_info.processors_in[i] = 0;
|
|
|
|
ccall_info.processors_out[i] = 0;
|
2012-05-14 13:14:36 +00:00
|
|
|
sun4m_send_ipi(i, IRQ_CROSS_CALL);
|
2005-04-16 22:20:36 +00:00
|
|
|
} else {
|
|
|
|
ccall_info.processors_in[i] = 1;
|
|
|
|
ccall_info.processors_out[i] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
register int i;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
do {
|
2011-05-16 20:38:07 +00:00
|
|
|
if (!cpumask_test_cpu(i, &mask))
|
2008-08-28 03:03:22 +00:00
|
|
|
continue;
|
2011-01-28 22:08:20 +00:00
|
|
|
while (!ccall_info.processors_in[i])
|
2005-04-16 22:20:36 +00:00
|
|
|
barrier();
|
2011-01-28 22:08:20 +00:00
|
|
|
} while (++i < ncpus);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
i = 0;
|
|
|
|
do {
|
2011-05-16 20:38:07 +00:00
|
|
|
if (!cpumask_test_cpu(i, &mask))
|
2008-08-28 03:03:22 +00:00
|
|
|
continue;
|
2011-01-28 22:08:20 +00:00
|
|
|
while (!ccall_info.processors_out[i])
|
2005-04-16 22:20:36 +00:00
|
|
|
barrier();
|
2011-01-28 22:08:20 +00:00
|
|
|
} while (++i < ncpus);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&cross_call_lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Running cross calls. */
|
|
|
|
void smp4m_cross_call_irq(void)
|
|
|
|
{
|
|
|
|
int i = smp_processor_id();
|
|
|
|
|
|
|
|
ccall_info.processors_in[i] = 1;
|
|
|
|
ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3,
|
|
|
|
ccall_info.arg4, ccall_info.arg5);
|
|
|
|
ccall_info.processors_out[i] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void smp4m_percpu_timer_interrupt(struct pt_regs *regs)
|
|
|
|
{
|
2006-10-08 13:30:44 +00:00
|
|
|
struct pt_regs *old_regs;
|
2012-04-04 19:49:26 +00:00
|
|
|
struct clock_event_device *ce;
|
2005-04-16 22:20:36 +00:00
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
2006-10-08 13:30:44 +00:00
|
|
|
old_regs = set_irq_regs(regs);
|
|
|
|
|
2012-04-04 19:49:26 +00:00
|
|
|
ce = &per_cpu(sparc32_clockevent, cpu);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-04 19:49:26 +00:00
|
|
|
if (ce->mode & CLOCK_EVT_MODE_PERIODIC)
|
|
|
|
sun4m_clear_profile_irq(cpu);
|
|
|
|
else
|
2012-05-14 15:30:35 +00:00
|
|
|
sparc_config.load_profile_irq(cpu, 0); /* Is this needless? */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-04 19:49:26 +00:00
|
|
|
irq_enter();
|
|
|
|
ce->event_handler(ce);
|
|
|
|
irq_exit();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-10-08 13:30:44 +00:00
|
|
|
set_irq_regs(old_regs);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2012-05-14 13:14:36 +00:00
|
|
|
static const struct sparc32_ipi_ops sun4m_ipi_ops = {
|
|
|
|
.cross_call = sun4m_cross_call,
|
|
|
|
.resched = sun4m_ipi_resched,
|
|
|
|
.single = sun4m_ipi_single,
|
|
|
|
.mask_one = sun4m_ipi_mask_one,
|
|
|
|
};
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
void __init sun4m_init_smp(void)
|
|
|
|
{
|
2012-05-14 13:14:36 +00:00
|
|
|
sparc32_ipi_ops = &sun4m_ipi_ops;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|