mfd: Copy the device pointer to the twl4030-madc structure
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / alpha / kernel / irq_alpha.c
blob51b7fbd9e4c11406ce8950f6cecc64f1ebd7556a
1 /*
2 * Alpha specific irq code.
3 */
5 #include <linux/init.h>
6 #include <linux/sched.h>
7 #include <linux/irq.h>
8 #include <linux/kernel_stat.h>
9 #include <linux/module.h>
11 #include <asm/machvec.h>
12 #include <asm/dma.h>
13 #include <asm/perf_event.h>
15 #include "proto.h"
16 #include "irq_impl.h"
18 /* Hack minimum IPL during interrupt processing for broken hardware. */
19 #ifdef CONFIG_ALPHA_BROKEN_IRQ_MASK
20 int __min_ipl;
21 EXPORT_SYMBOL(__min_ipl);
22 #endif
25 * Performance counter hook. A module can override this to
26 * do something useful.
28 static void
29 dummy_perf(unsigned long vector, struct pt_regs *regs)
31 irq_err_count++;
32 printk(KERN_CRIT "Performance counter interrupt!\n");
35 void (*perf_irq)(unsigned long, struct pt_regs *) = dummy_perf;
36 EXPORT_SYMBOL(perf_irq);
39 * The main interrupt entry point.
42 asmlinkage void
43 do_entInt(unsigned long type, unsigned long vector,
44 unsigned long la_ptr, struct pt_regs *regs)
46 struct pt_regs *old_regs;
47 switch (type) {
48 case 0:
49 #ifdef CONFIG_SMP
50 handle_ipi(regs);
51 return;
52 #else
53 irq_err_count++;
54 printk(KERN_CRIT "Interprocessor interrupt? "
55 "You must be kidding!\n");
56 #endif
57 break;
58 case 1:
59 old_regs = set_irq_regs(regs);
60 #ifdef CONFIG_SMP
62 long cpu;
64 local_irq_disable();
65 smp_percpu_timer_interrupt(regs);
66 cpu = smp_processor_id();
67 if (cpu != boot_cpuid) {
68 kstat_incr_irqs_this_cpu(RTC_IRQ, irq_to_desc(RTC_IRQ));
69 } else {
70 handle_irq(RTC_IRQ);
73 #else
74 handle_irq(RTC_IRQ);
75 #endif
76 set_irq_regs(old_regs);
77 return;
78 case 2:
79 old_regs = set_irq_regs(regs);
80 alpha_mv.machine_check(vector, la_ptr);
81 set_irq_regs(old_regs);
82 return;
83 case 3:
84 old_regs = set_irq_regs(regs);
85 alpha_mv.device_interrupt(vector);
86 set_irq_regs(old_regs);
87 return;
88 case 4:
89 perf_irq(la_ptr, regs);
90 return;
91 default:
92 printk(KERN_CRIT "Hardware intr %ld %lx? Huh?\n",
93 type, vector);
95 printk(KERN_CRIT "PC = %016lx PS=%04lx\n", regs->pc, regs->ps);
98 void __init
99 common_init_isa_dma(void)
101 outb(0, DMA1_RESET_REG);
102 outb(0, DMA2_RESET_REG);
103 outb(0, DMA1_CLR_MASK_REG);
104 outb(0, DMA2_CLR_MASK_REG);
107 void __init
108 init_IRQ(void)
110 /* Just in case the platform init_irq() causes interrupts/mchecks
111 (as is the case with RAWHIDE, at least). */
112 wrent(entInt, 0);
114 alpha_mv.init_irq();
118 * machine error checks
120 #define MCHK_K_TPERR 0x0080
121 #define MCHK_K_TCPERR 0x0082
122 #define MCHK_K_HERR 0x0084
123 #define MCHK_K_ECC_C 0x0086
124 #define MCHK_K_ECC_NC 0x0088
125 #define MCHK_K_OS_BUGCHECK 0x008A
126 #define MCHK_K_PAL_BUGCHECK 0x0090
128 #ifndef CONFIG_SMP
129 struct mcheck_info __mcheck_info;
130 #endif
132 void
133 process_mcheck_info(unsigned long vector, unsigned long la_ptr,
134 const char *machine, int expected)
136 struct el_common *mchk_header;
137 const char *reason;
140 * See if the machine check is due to a badaddr() and if so,
141 * ignore it.
144 #ifdef CONFIG_VERBOSE_MCHECK
145 if (alpha_verbose_mcheck > 1) {
146 printk(KERN_CRIT "%s machine check %s\n", machine,
147 expected ? "expected." : "NOT expected!!!");
149 #endif
151 if (expected) {
152 int cpu = smp_processor_id();
153 mcheck_expected(cpu) = 0;
154 mcheck_taken(cpu) = 1;
155 return;
158 mchk_header = (struct el_common *)la_ptr;
160 printk(KERN_CRIT "%s machine check: vector=0x%lx pc=0x%lx code=0x%x\n",
161 machine, vector, get_irq_regs()->pc, mchk_header->code);
163 switch (mchk_header->code) {
164 /* Machine check reasons. Defined according to PALcode sources. */
165 case 0x80: reason = "tag parity error"; break;
166 case 0x82: reason = "tag control parity error"; break;
167 case 0x84: reason = "generic hard error"; break;
168 case 0x86: reason = "correctable ECC error"; break;
169 case 0x88: reason = "uncorrectable ECC error"; break;
170 case 0x8A: reason = "OS-specific PAL bugcheck"; break;
171 case 0x90: reason = "callsys in kernel mode"; break;
172 case 0x96: reason = "i-cache read retryable error"; break;
173 case 0x98: reason = "processor detected hard error"; break;
175 /* System specific (these are for Alcor, at least): */
176 case 0x202: reason = "system detected hard error"; break;
177 case 0x203: reason = "system detected uncorrectable ECC error"; break;
178 case 0x204: reason = "SIO SERR occurred on PCI bus"; break;
179 case 0x205: reason = "parity error detected by core logic"; break;
180 case 0x206: reason = "SIO IOCHK occurred on ISA bus"; break;
181 case 0x207: reason = "non-existent memory error"; break;
182 case 0x208: reason = "MCHK_K_DCSR"; break;
183 case 0x209: reason = "PCI SERR detected"; break;
184 case 0x20b: reason = "PCI data parity error detected"; break;
185 case 0x20d: reason = "PCI address parity error detected"; break;
186 case 0x20f: reason = "PCI master abort error"; break;
187 case 0x211: reason = "PCI target abort error"; break;
188 case 0x213: reason = "scatter/gather PTE invalid error"; break;
189 case 0x215: reason = "flash ROM write error"; break;
190 case 0x217: reason = "IOA timeout detected"; break;
191 case 0x219: reason = "IOCHK#, EISA add-in board parity or other catastrophic error"; break;
192 case 0x21b: reason = "EISA fail-safe timer timeout"; break;
193 case 0x21d: reason = "EISA bus time-out"; break;
194 case 0x21f: reason = "EISA software generated NMI"; break;
195 case 0x221: reason = "unexpected ev5 IRQ[3] interrupt"; break;
196 default: reason = "unknown"; break;
199 printk(KERN_CRIT "machine check type: %s%s\n",
200 reason, mchk_header->retry ? " (retryable)" : "");
202 dik_show_regs(get_irq_regs(), NULL);
204 #ifdef CONFIG_VERBOSE_MCHECK
205 if (alpha_verbose_mcheck > 1) {
206 /* Dump the logout area to give all info. */
207 unsigned long *ptr = (unsigned long *)la_ptr;
208 long i;
209 for (i = 0; i < mchk_header->size / sizeof(long); i += 2) {
210 printk(KERN_CRIT " +%8lx %016lx %016lx\n",
211 i*sizeof(long), ptr[i], ptr[i+1]);
214 #endif /* CONFIG_VERBOSE_MCHECK */
218 * The special RTC interrupt type. The interrupt itself was
219 * processed by PALcode, and comes in via entInt vector 1.
222 struct irqaction timer_irqaction = {
223 .handler = timer_interrupt,
224 .flags = IRQF_DISABLED,
225 .name = "timer",
228 void __init
229 init_rtc_irq(void)
231 irq_set_chip_and_handler_name(RTC_IRQ, &dummy_irq_chip,
232 handle_simple_irq, "RTC");
233 setup_irq(RTC_IRQ, &timer_irqaction);
236 /* Dummy irqactions. */
237 struct irqaction isa_cascade_irqaction = {
238 .handler = no_action,
239 .name = "isa-cascade"
242 struct irqaction timer_cascade_irqaction = {
243 .handler = no_action,
244 .name = "timer-cascade"
247 struct irqaction halt_switch_irqaction = {
248 .handler = no_action,
249 .name = "halt-switch"