2 * Copyright (C) 2001, 2002, 2003 Broadcom Corporation
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 #include <linux/init.h>
20 #include <linux/delay.h>
21 #include <linux/interrupt.h>
22 #include <linux/smp.h>
23 #include <linux/kernel_stat.h>
25 #include <asm/mmu_context.h>
27 #include <asm/sibyte/sb1250.h>
28 #include <asm/sibyte/sb1250_regs.h>
29 #include <asm/sibyte/sb1250_int.h>
31 static void *mailbox_set_regs
[] = {
32 IOADDR(A_IMR_CPU0_BASE
+ R_IMR_MAILBOX_SET_CPU
),
33 IOADDR(A_IMR_CPU1_BASE
+ R_IMR_MAILBOX_SET_CPU
)
36 static void *mailbox_clear_regs
[] = {
37 IOADDR(A_IMR_CPU0_BASE
+ R_IMR_MAILBOX_CLR_CPU
),
38 IOADDR(A_IMR_CPU1_BASE
+ R_IMR_MAILBOX_CLR_CPU
)
41 static void *mailbox_regs
[] = {
42 IOADDR(A_IMR_CPU0_BASE
+ R_IMR_MAILBOX_CPU
),
43 IOADDR(A_IMR_CPU1_BASE
+ R_IMR_MAILBOX_CPU
)
47 * SMP init and finish on secondary CPUs
49 void __cpuinit
sb1250_smp_init(void)
51 unsigned int imask
= STATUSF_IP4
| STATUSF_IP3
| STATUSF_IP2
|
52 STATUSF_IP1
| STATUSF_IP0
;
54 /* Set interrupt mask, but don't enable */
55 change_c0_status(ST0_IM
, imask
);
58 void __cpuinit
sb1250_smp_finish(void)
60 extern void sb1250_clockevent_init(void);
62 sb1250_clockevent_init();
67 * These are routines for dealing with the sb1250 smp capabilities
68 * independent of board/firmware
72 * Simple enough; everything is set up, so just poke the appropriate mailbox
73 * register, and we should be set
75 void core_send_ipi(int cpu
, unsigned int action
)
77 __raw_writeq((((u64
)action
) << 48), mailbox_set_regs
[cpu
]);
80 void sb1250_mailbox_interrupt(void)
82 int cpu
= smp_processor_id();
85 kstat_this_cpu
.irqs
[K_INT_MBOX_0
]++;
86 /* Load the mailbox register to figure out what we're supposed to do */
87 action
= (____raw_readq(mailbox_regs
[cpu
]) >> 48) & 0xffff;
89 /* Clear the mailbox to clear the interrupt */
90 ____raw_writeq(((u64
)action
) << 48, mailbox_clear_regs
[cpu
]);
93 * Nothing to do for SMP_RESCHEDULE_YOURSELF; returning from the
94 * interrupt will do the reschedule for us
97 if (action
& SMP_CALL_FUNCTION
)
98 smp_call_function_interrupt();