sun4m_smp.c 7.0 KB
Newer Older
1 2
/*
 *  sun4m SMP support.
L
Linus Torvalds 已提交
3 4 5 6
 *
 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
 */

7
#include <linux/clockchips.h>
L
Linus Torvalds 已提交
8 9
#include <linux/interrupt.h>
#include <linux/profile.h>
10
#include <linux/delay.h>
R
Robert Reif 已提交
11
#include <linux/cpu.h>
12

L
Linus Torvalds 已提交
13
#include <asm/cacheflush.h>
14
#include <asm/switch_to.h>
L
Linus Torvalds 已提交
15
#include <asm/tlbflush.h>
16
#include <asm/timer.h>
L
Linus Torvalds 已提交
17

18
#include "irq.h"
19
#include "kernel.h"
20

21 22 23
#define IRQ_IPI_SINGLE		12
#define IRQ_IPI_MASK		13
#define IRQ_IPI_RESCHED		14
L
Linus Torvalds 已提交
24 25
#define IRQ_CROSS_CALL		15

26 27
static inline unsigned long
swap_ulong(volatile unsigned long *ptr, unsigned long val)
L
Linus Torvalds 已提交
28 29 30 31 32 33 34
{
	__asm__ __volatile__("swap [%1], %0\n\t" :
			     "=&r" (val), "=&r" (ptr) :
			     "0" (val), "1" (ptr));
	return val;
}

35
static void smp4m_ipi_init(void);
L
Linus Torvalds 已提交
36

37
void __cpuinit smp4m_callin(void)
L
Linus Torvalds 已提交
38 39 40 41 42 43
{
	int cpuid = hard_smp_processor_id();

	local_flush_cache_all();
	local_flush_tlb_all();

44 45
	notify_cpu_starting(cpuid);

46
	register_percpu_ce(cpuid);
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60

	calibrate_delay();
	smp_store_cpu_info(cpuid);

	local_flush_cache_all();
	local_flush_tlb_all();

	/*
	 * 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. */
61
	swap_ulong(&cpu_callin_map[cpuid], 1);
L
Linus Torvalds 已提交
62

63
	/* XXX: What's up with all the flushes? */
L
Linus Torvalds 已提交
64 65
	local_flush_cache_all();
	local_flush_tlb_all();
66

L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74 75
	/* Fix idle thread fields. */
	__asm__ __volatile__("ld [%0], %%g6\n\t"
			     : : "r" (&current_set[cpuid])
			     : "memory" /* paranoid */);

	/* Attach to the address space of init_task. */
	atomic_inc(&init_mm.mm_count);
	current->active_mm = &init_mm;

76
	while (!cpumask_test_cpu(cpuid, &smp_commenced_mask))
77
		mb();
L
Linus Torvalds 已提交
78 79

	local_irq_enable();
80

81
	set_cpu_online(cpuid, true);
L
Linus Torvalds 已提交
82 83 84 85 86 87 88
}

/*
 *	Cycle through the processors asking the PROM to start each one.
 */
void __init smp4m_boot_cpus(void)
{
89
	smp4m_ipi_init();
90
	sun4m_unmask_profile_irq();
91 92
	local_flush_cache_all();
}
L
Linus Torvalds 已提交
93

94
int __cpuinit smp4m_boot_one_cpu(int i)
95 96 97 98 99
{
	unsigned long *entry = &sun4m_cpu_startup;
	struct task_struct *p;
	int timeout;
	int cpu_node;
L
Linus Torvalds 已提交
100

101 102 103 104 105 106
	cpu_find_by_mid(i, &cpu_node);

	/* Cook up an idler for this guy. */
	p = fork_idle(i);
	current_set[i] = task_thread_info(p);
	/* See trampoline.S for details... */
107
	entry += ((i - 1) * 3);
L
Linus Torvalds 已提交
108

109 110 111 112 113 114 115 116
	/*
	 * 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;
L
Linus Torvalds 已提交
117

118
	/* whirrr, whirrr, whirrrrrrrrr... */
119
	printk(KERN_INFO "Starting CPU %d at %p\n", i, entry);
120
	local_flush_cache_all();
121
	prom_startcpu(cpu_node, &smp_penguin_ctable, 0, (char *)entry);
122 123

	/* wheee... it's going... */
124 125
	for (timeout = 0; timeout < 10000; timeout++) {
		if (cpu_callin_map[i])
126 127
			break;
		udelay(200);
L
Linus Torvalds 已提交
128 129
	}

130
	if (!(cpu_callin_map[i])) {
131
		printk(KERN_ERR "Processor %d is stuck.\n", i);
132 133
		return -ENODEV;
	}
L
Linus Torvalds 已提交
134 135

	local_flush_cache_all();
136 137 138 139 140 141 142 143 144 145 146
	return 0;
}

void __init smp4m_smp_done(void)
{
	int i, first;
	int *prev;

	/* setup cpu list for irq rotation */
	first = 0;
	prev = &first;
147 148 149
	for_each_online_cpu(i) {
		*prev = i;
		prev = &cpu_data(i).next;
L
Linus Torvalds 已提交
150
	}
151
	*prev = first;
L
Linus Torvalds 已提交
152 153 154 155 156
	local_flush_cache_all();

	/* Ok, they are spinning and ready to go. */
}

157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177

/* Initialize IPIs on the SUN4M SMP machine */
static void __init smp4m_ipi_init(void)
{
}

static void smp4m_ipi_resched(int cpu)
{
	set_cpu_int(cpu, IRQ_IPI_RESCHED);
}

static void smp4m_ipi_single(int cpu)
{
	set_cpu_int(cpu, IRQ_IPI_SINGLE);
}

static void smp4m_ipi_mask_one(int cpu)
{
	set_cpu_int(cpu, IRQ_IPI_MASK);
}

L
Linus Torvalds 已提交
178 179 180 181 182 183 184
static struct smp_funcall {
	smpfunc_t func;
	unsigned long arg1;
	unsigned long arg2;
	unsigned long arg3;
	unsigned long arg4;
	unsigned long arg5;
185 186
	unsigned long processors_in[SUN4M_NCPUS];  /* Set when ipi entered. */
	unsigned long processors_out[SUN4M_NCPUS]; /* Set when ipi exited. */
L
Linus Torvalds 已提交
187 188 189 190 191
} ccall_info;

static DEFINE_SPINLOCK(cross_call_lock);

/* Cross calls must be serialized, at least currently. */
192
static void smp4m_cross_call(smpfunc_t func, cpumask_t mask, unsigned long arg1,
A
Adrian Bunk 已提交
193
			     unsigned long arg2, unsigned long arg3,
194
			     unsigned long arg4)
L
Linus Torvalds 已提交
195
{
196
		register int ncpus = SUN4M_NCPUS;
L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204 205 206
		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;
207
		ccall_info.arg5 = 0;
L
Linus Torvalds 已提交
208 209 210 211 212

		/* Init receive/complete mapping, plus fire the IPI's off. */
		{
			register int i;

213 214
			cpumask_clear_cpu(smp_processor_id(), &mask);
			cpumask_and(&mask, cpu_online_mask, &mask);
215
			for (i = 0; i < ncpus; i++) {
216
				if (cpumask_test_cpu(i, &mask)) {
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
					ccall_info.processors_in[i] = 0;
					ccall_info.processors_out[i] = 0;
					set_cpu_int(i, IRQ_CROSS_CALL);
				} else {
					ccall_info.processors_in[i] = 1;
					ccall_info.processors_out[i] = 1;
				}
			}
		}

		{
			register int i;

			i = 0;
			do {
232
				if (!cpumask_test_cpu(i, &mask))
233
					continue;
234
				while (!ccall_info.processors_in[i])
L
Linus Torvalds 已提交
235
					barrier();
236
			} while (++i < ncpus);
L
Linus Torvalds 已提交
237 238 239

			i = 0;
			do {
240
				if (!cpumask_test_cpu(i, &mask))
241
					continue;
242
				while (!ccall_info.processors_out[i])
L
Linus Torvalds 已提交
243
					barrier();
244
			} while (++i < ncpus);
L
Linus Torvalds 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
		}
		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)
{
A
Al Viro 已提交
262
	struct pt_regs *old_regs;
263
	struct clock_event_device *ce;
L
Linus Torvalds 已提交
264 265
	int cpu = smp_processor_id();

A
Al Viro 已提交
266 267
	old_regs = set_irq_regs(regs);

268
	ce = &per_cpu(sparc32_clockevent, cpu);
L
Linus Torvalds 已提交
269

270 271 272 273
	if (ce->mode & CLOCK_EVT_MODE_PERIODIC)
		sun4m_clear_profile_irq(cpu);
	else
		load_profile_irq(cpu, 0); /* Is this needless? */
L
Linus Torvalds 已提交
274

275 276 277
	irq_enter();
	ce->event_handler(ce);
	irq_exit();
L
Linus Torvalds 已提交
278

A
Al Viro 已提交
279
	set_irq_regs(old_regs);
L
Linus Torvalds 已提交
280 281
}

A
Adrian Bunk 已提交
282
static void __init smp4m_blackbox_id(unsigned *addr)
L
Linus Torvalds 已提交
283 284 285
{
	int rd = *addr & 0x3e000000;
	int rs1 = rd >> 11;
286

L
Linus Torvalds 已提交
287
	addr[0] = 0x81580000 | rd;		/* rd %tbr, reg */
288
	addr[1] = 0x8130200c | rd | rs1;	/* srl reg, 0xc, reg */
L
Linus Torvalds 已提交
289 290 291
	addr[2] = 0x80082003 | rd | rs1;	/* and reg, 3, reg */
}

A
Adrian Bunk 已提交
292
static void __init smp4m_blackbox_current(unsigned *addr)
L
Linus Torvalds 已提交
293 294 295
{
	int rd = *addr & 0x3e000000;
	int rs1 = rd >> 11;
296

L
Linus Torvalds 已提交
297
	addr[0] = 0x81580000 | rd;		/* rd %tbr, reg */
298
	addr[2] = 0x8130200a | rd | rs1;	/* srl reg, 0xa, reg */
299
	addr[4] = 0x8008200c | rd | rs1;	/* and reg, 0xc, reg */
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307
}

void __init sun4m_init_smp(void)
{
	BTFIXUPSET_BLACKBOX(hard_smp_processor_id, smp4m_blackbox_id);
	BTFIXUPSET_BLACKBOX(load_current, smp4m_blackbox_current);
	BTFIXUPSET_CALL(smp_cross_call, smp4m_cross_call, BTFIXUPCALL_NORM);
	BTFIXUPSET_CALL(__hard_smp_processor_id, __smp4m_processor_id, BTFIXUPCALL_NORM);
308 309 310
	BTFIXUPSET_CALL(smp_ipi_resched, smp4m_ipi_resched, BTFIXUPCALL_NORM);
	BTFIXUPSET_CALL(smp_ipi_single, smp4m_ipi_single, BTFIXUPCALL_NORM);
	BTFIXUPSET_CALL(smp_ipi_mask_one, smp4m_ipi_mask_one, BTFIXUPCALL_NORM);
L
Linus Torvalds 已提交
311
}