patch-2.4.19 linux-2.4.19/arch/mips64/sgi-ip27/ip27-berr.c
Next file: linux-2.4.19/arch/mips64/sgi-ip27/ip27-dbe-glue.S
Previous file: linux-2.4.19/arch/mips64/sgi-ip27/Makefile
Back to the patch index
Back to the overall index
- Lines: 143
- Date:
Fri Aug 2 17:39:43 2002
- Orig file:
linux-2.4.18/arch/mips64/sgi-ip27/ip27-berr.c
- Orig date:
Sun Sep 9 10:43:02 2001
diff -urN linux-2.4.18/arch/mips64/sgi-ip27/ip27-berr.c linux-2.4.19/arch/mips64/sgi-ip27/ip27-berr.c
@@ -5,6 +5,7 @@
*
* Copyright (C) 1994, 1995, 1996, 1999, 2000 by Ralf Baechle
* Copyright (C) 1999, 2000 by Silicon Graphics
+ * Copyright (C) 2002 Maciej W. Rozycki
*/
#include <linux/init.h>
#include <linux/kernel.h>
@@ -14,86 +15,12 @@
#include <asm/sn/addrs.h>
#include <asm/sn/arch.h>
#include <asm/sn/sn0/hub.h>
+#include <asm/traps.h>
#include <asm/uaccess.h>
extern void dump_tlb_addr(unsigned long addr);
extern void dump_tlb_all(void);
-extern asmlinkage void handle_ibe(void);
-extern asmlinkage void handle_dbe(void);
-
-extern const struct exception_table_entry __start___dbe_table[];
-extern const struct exception_table_entry __stop___dbe_table[];
-
-static inline unsigned long
-search_one_table(const struct exception_table_entry *first,
- const struct exception_table_entry *last,
- unsigned long value)
-{
- while (first <= last) {
- const struct exception_table_entry *mid;
- long diff;
-
- mid = (last - first) / 2 + first;
- diff = mid->insn - value;
- if (diff == 0)
- return mid->nextinsn;
- else if (diff < 0)
- first = mid+1;
- else
- last = mid-1;
- }
- return 0;
-}
-
-extern spinlock_t modlist_lock;
-
-static inline unsigned long
-search_dbe_table(unsigned long addr)
-{
- unsigned long ret;
-
-#ifndef CONFIG_MODULES
- /* There is only the kernel to search. */
- ret = search_one_table(__start___dbe_table, __stop___dbe_table-1, addr);
- return ret;
-#else
- unsigned long flags;
-
- /* The kernel is the last "module" -- no need to treat it special. */
- struct module *mp;
- struct archdata *ap;
-
- spin_lock_irqsave(&modlist_lock, flags);
- for (mp = module_list; mp != NULL; mp = mp->next) {
- if (!mod_member_present(mp, archdata_end) ||
- !mod_archdata_member_present(mp, struct archdata,
- dbe_table_end))
- continue;
- ap = (struct archdata *)(mod->archdata_start);
-
- if (ap->dbe_table_start == NULL ||
- !(mp->flags & (MOD_RUNNING | MOD_INITIALIZING)))
- continue;
- ret = search_one_table(ap->dbe_table_start,
- ap->dbe_table_end - 1, addr);
- if (ret)
- break;
- }
- spin_unlock_irqrestore(&modlist_lock, flags);
- return ret;
-#endif
-}
-
-void do_ibe(struct pt_regs *regs)
-{
- printk("Got ibe at 0x%lx\n", regs->cp0_epc);
- show_regs(regs);
- dump_tlb_addr(regs->cp0_epc);
- force_sig(SIGBUS, current);
- while(1);
-}
-
static void dump_hub_information(unsigned long errst0, unsigned long errst1)
{
static char *err_type[2][8] = {
@@ -127,21 +54,17 @@
? : "invalid");
}
-void do_dbe(struct pt_regs *regs)
+int be_ip27_handler(struct pt_regs *regs, int is_fixup)
{
- unsigned long fixup, errst0, errst1;
+ unsigned long errst0, errst1;
+ int data = regs->cp0_cause & 4;
int cpu = LOCAL_HUB_L(PI_CPU_NUM);
- fixup = search_dbe_table(regs->cp0_epc);
- if (fixup) {
- long new_epc;
-
- new_epc = fixup_exception(dpf_reg, fixup, regs->cp0_epc);
- regs->cp0_epc = new_epc;
- return;
- }
+ if (is_fixup)
+ return MIPS_BE_FIXUP;
- printk("Slice %c got dbe at 0x%lx\n", 'A' + cpu, regs->cp0_epc);
+ printk("Slice %c got %cbe at 0x%lx\n", 'A' + cpu, data ? 'd' : 'i',
+ regs->cp0_epc);
printk("Hub information:\n");
printk("ERR_INT_PEND = 0x%06lx\n", LOCAL_HUB_L(PI_ERR_INT_PEND));
errst0 = LOCAL_HUB_L(cpu ? PI_ERR_STATUS0_B : PI_ERR_STATUS0_A);
@@ -153,15 +76,13 @@
force_sig(SIGBUS, current);
}
-void __init
-bus_error_init(void)
+void __init bus_error_init(void)
{
/* XXX Initialize all the Hub & Bridge error handling here. */
int cpu = LOCAL_HUB_L(PI_CPU_NUM);
int cpuoff = cpu << 8;
- set_except_vector(6, handle_ibe);
- set_except_vector(7, handle_dbe);
+ be_board_handler = be_ip27_handler;
LOCAL_HUB_S(PI_ERR_INT_PEND,
cpu ? PI_ERR_CLEAR_ALL_B : PI_ERR_CLEAR_ALL_A);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)