smp.c 2.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * Copyright (C) 2001, 2002, 2003 Broadcom Corporation
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#include <linux/init.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/smp.h>
#include <linux/kernel_stat.h>

#include <asm/mmu_context.h>
#include <asm/io.h>
#include <asm/sibyte/sb1250.h>
#include <asm/sibyte/sb1250_regs.h>
#include <asm/sibyte/sb1250_int.h>

static void *mailbox_set_regs[] = {
32 33
	IOADDR(A_IMR_CPU0_BASE + R_IMR_MAILBOX_SET_CPU),
	IOADDR(A_IMR_CPU1_BASE + R_IMR_MAILBOX_SET_CPU)
L
Linus Torvalds 已提交
34 35 36
};

static void *mailbox_clear_regs[] = {
37 38
	IOADDR(A_IMR_CPU0_BASE + R_IMR_MAILBOX_CLR_CPU),
	IOADDR(A_IMR_CPU1_BASE + R_IMR_MAILBOX_CLR_CPU)
L
Linus Torvalds 已提交
39 40 41
};

static void *mailbox_regs[] = {
42 43
	IOADDR(A_IMR_CPU0_BASE + R_IMR_MAILBOX_CPU),
	IOADDR(A_IMR_CPU1_BASE + R_IMR_MAILBOX_CPU)
L
Linus Torvalds 已提交
44 45 46 47 48
};

/*
 * SMP init and finish on secondary CPUs
 */
49
void __cpuinit sb1250_smp_init(void)
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57
{
	unsigned int imask = STATUSF_IP4 | STATUSF_IP3 | STATUSF_IP2 |
		STATUSF_IP1 | STATUSF_IP0;

	/* Set interrupt mask, but don't enable */
	change_c0_status(ST0_IM, imask);
}

58
void __cpuinit sb1250_smp_finish(void)
L
Linus Torvalds 已提交
59
{
60 61 62
	extern void sb1250_clockevent_init(void);

	sb1250_clockevent_init();
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76
	local_irq_enable();
}

/*
 * These are routines for dealing with the sb1250 smp capabilities
 * independent of board/firmware
 */

/*
 * Simple enough; everything is set up, so just poke the appropriate mailbox
 * register, and we should be set
 */
void core_send_ipi(int cpu, unsigned int action)
{
77
	__raw_writeq((((u64)action) << 48), mailbox_set_regs[cpu]);
L
Linus Torvalds 已提交
78 79
}

80
void sb1250_mailbox_interrupt(void)
L
Linus Torvalds 已提交
81 82 83 84 85 86
{
	int cpu = smp_processor_id();
	unsigned int action;

	kstat_this_cpu.irqs[K_INT_MBOX_0]++;
	/* Load the mailbox register to figure out what we're supposed to do */
87
	action = (____raw_readq(mailbox_regs[cpu]) >> 48) & 0xffff;
L
Linus Torvalds 已提交
88 89

	/* Clear the mailbox to clear the interrupt */
90
	____raw_writeq(((u64)action) << 48, mailbox_clear_regs[cpu]);
L
Linus Torvalds 已提交
91 92 93 94 95 96 97 98 99

	/*
	 * Nothing to do for SMP_RESCHEDULE_YOURSELF; returning from the
	 * interrupt will do the reschedule for us
	 */

	if (action & SMP_CALL_FUNCTION)
		smp_call_function_interrupt();
}