kernel.org linux-2.6.10
[linux-2.6.git] / arch / mips / sgi-ip32 / crime.c
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 2001, 2003 Keith M Wesolowski
7  */
8 #include <linux/types.h>
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/interrupt.h>
12 #include <asm/bootinfo.h>
13 #include <asm/io.h>
14 #include <asm/mipsregs.h>
15 #include <asm/ptrace.h>
16 #include <asm/page.h>
17 #include <asm/ip32/crime.h>
18 #include <asm/ip32/mace.h>
19
20 struct sgi_crime *crime;
21 struct sgi_mace *mace;
22
23 void __init crime_init(void)
24 {
25         unsigned int id, rev;
26         const int field = 2 * sizeof(unsigned long);
27         
28         crime = ioremap(CRIME_BASE, sizeof(struct sgi_crime));
29         mace = ioremap(MACE_BASE, sizeof(struct sgi_mace));
30
31         id = crime->id;
32         rev = id & CRIME_ID_REV;
33         id = (id & CRIME_ID_IDBITS) >> 4;
34         printk (KERN_INFO "CRIME id %1x rev %d at 0x%0*lx\n",
35                 id, rev, field, (unsigned long) CRIME_BASE);
36 }
37
38 irqreturn_t
39 crime_memerr_intr (unsigned int irq, void *dev_id, struct pt_regs *regs)
40 {
41         unsigned long stat, addr;
42         int fatal = 0;
43
44         stat = crime->mem_error_stat & CRIME_MEM_ERROR_STAT_MASK;
45         addr = crime->mem_error_addr & CRIME_MEM_ERROR_ADDR_MASK;
46
47         printk("CRIME memory error at 0x%08lx ST 0x%08lx<", addr, stat);
48
49         if (stat & CRIME_MEM_ERROR_INV)
50                 printk("INV,");
51         if (stat & CRIME_MEM_ERROR_ECC) {
52                 unsigned long ecc_syn =
53                         crime->mem_ecc_syn & CRIME_MEM_ERROR_ECC_SYN_MASK;
54                 unsigned long ecc_gen =
55                         crime->mem_ecc_chk & CRIME_MEM_ERROR_ECC_CHK_MASK;
56                 printk("ECC,SYN=0x%08lx,GEN=0x%08lx,", ecc_syn, ecc_gen);
57         }
58         if (stat & CRIME_MEM_ERROR_MULTIPLE) {
59                 fatal = 1;
60                 printk("MULTIPLE,");
61         }
62         if (stat & CRIME_MEM_ERROR_HARD_ERR) {
63                 fatal = 1;
64                 printk("HARD,");
65         }
66         if (stat & CRIME_MEM_ERROR_SOFT_ERR)
67                 printk("SOFT,");
68         if (stat & CRIME_MEM_ERROR_CPU_ACCESS)
69                 printk("CPU,");
70         if (stat & CRIME_MEM_ERROR_VICE_ACCESS)
71                 printk("VICE,");
72         if (stat & CRIME_MEM_ERROR_GBE_ACCESS)
73                 printk("GBE,");
74         if (stat & CRIME_MEM_ERROR_RE_ACCESS)
75                 printk("RE,REID=0x%02lx,", (stat & CRIME_MEM_ERROR_RE_ID)>>8);
76         if (stat & CRIME_MEM_ERROR_MACE_ACCESS)
77                 printk("MACE,MACEID=0x%02lx,", stat & CRIME_MEM_ERROR_MACE_ID);
78
79         crime->mem_error_stat = 0;
80
81         if (fatal) {
82                 printk("FATAL>\n");
83                 panic("Fatal memory error.");
84         } else
85                 printk("NONFATAL>\n");
86
87         return IRQ_HANDLED;
88 }
89
90 irqreturn_t
91 crime_cpuerr_intr (unsigned int irq, void *dev_id, struct pt_regs *regs)
92 {
93         unsigned long stat = crime->cpu_error_stat & CRIME_CPU_ERROR_MASK;
94         unsigned long addr = crime->cpu_error_addr & CRIME_CPU_ERROR_ADDR_MASK;
95
96         addr <<= 2;
97         printk ("CRIME CPU error at 0x%09lx status 0x%08lx\n", addr, stat);
98         crime->cpu_error_stat = 0;
99
100         return IRQ_HANDLED;
101 }