aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/dec/setup.c
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2005-06-22 16:56:26 -0400
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 14:31:30 -0400
commit64dac503e8265007ea5c53b4d6bf42488a8a8d7a (patch)
treed086e5ddd6d36118b476ed0fe01091d9d4d70cec /arch/mips/dec/setup.c
parent3b2396d972ce030e942fef9fcbea1e411b1a62db (diff)
System-specific handling of bus errors for DECstation variations
supporting parity errors only for memory (Pmax/3min/Maxine). Fixes for resources decoded by the KN04/KN05 MB ASIC. Additional clean-ups for the ECC handler. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/dec/setup.c')
-rw-r--r--arch/mips/dec/setup.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/mips/dec/setup.c b/arch/mips/dec/setup.c
index 82408ce710fc..f63fb9cd43c6 100644
--- a/arch/mips/dec/setup.c
+++ b/arch/mips/dec/setup.c
@@ -113,7 +113,16 @@ void __init dec_be_init(void)
113{ 113{
114 switch (mips_machtype) { 114 switch (mips_machtype) {
115 case MACH_DS23100: /* DS2100/DS3100 Pmin/Pmax */ 115 case MACH_DS23100: /* DS2100/DS3100 Pmin/Pmax */
116 board_be_handler = dec_kn01_be_handler;
117 busirq.handler = dec_kn01_be_interrupt;
116 busirq.flags |= SA_SHIRQ; 118 busirq.flags |= SA_SHIRQ;
119 dec_kn01_be_init();
120 break;
121 case MACH_DS5000_1XX: /* DS5000/1xx 3min */
122 case MACH_DS5000_XX: /* DS5000/xx Maxine */
123 board_be_handler = dec_kn02xa_be_handler;
124 busirq.handler = dec_kn02xa_be_interrupt;
125 dec_kn02xa_be_init();
117 break; 126 break;
118 case MACH_DS5000_200: /* DS5000/200 3max */ 127 case MACH_DS5000_200: /* DS5000/200 3max */
119 case MACH_DS5000_2X0: /* DS5000/240 3max+ */ 128 case MACH_DS5000_2X0: /* DS5000/240 3max+ */