2 * Alpha specific irq code.
5 #include <linux/config.h>
6 #include <linux/init.h>
7 #include <linux/sched.h>
9 #include <linux/kernel_stat.h>
11 #include <asm/machvec.h>
17 /* Hack minimum IPL during interrupt processing for broken hardware. */
18 #ifdef CONFIG_ALPHA_BROKEN_IRQ_MASK
23 * Performance counter hook. A module can override this to
24 * do something useful.
27 dummy_perf(unsigned long vector
, struct pt_regs
*regs
)
30 printk(KERN_CRIT
"Performance counter interrupt!\n");
33 void (*perf_irq
)(unsigned long, struct pt_regs
*) = dummy_perf
;
36 * The main interrupt entry point.
40 do_entInt(unsigned long type
, unsigned long vector
,
41 unsigned long la_ptr
, struct pt_regs
*regs
)
50 printk(KERN_CRIT
"Interprocessor interrupt? "
51 "You must be kidding!\n");
60 smp_percpu_timer_interrupt(regs
);
61 cpu
= smp_processor_id();
62 if (cpu
!= boot_cpuid
) {
63 kstat_cpu(cpu
).irqs
[RTC_IRQ
]++;
65 handle_irq(RTC_IRQ
, regs
);
69 handle_irq(RTC_IRQ
, regs
);
73 alpha_mv
.machine_check(vector
, la_ptr
, regs
);
76 alpha_mv
.device_interrupt(vector
, regs
);
79 perf_irq(la_ptr
, regs
);
82 printk(KERN_CRIT
"Hardware intr %ld %lx? Huh?\n",
85 printk(KERN_CRIT
"PC = %016lx PS=%04lx\n", regs
->pc
, regs
->ps
);
89 common_init_isa_dma(void)
91 outb(0, DMA1_RESET_REG
);
92 outb(0, DMA2_RESET_REG
);
93 outb(0, DMA1_CLR_MASK_REG
);
94 outb(0, DMA2_CLR_MASK_REG
);
100 /* Just in case the platform init_irq() causes interrupts/mchecks
101 (as is the case with RAWHIDE, at least). */
108 * machine error checks
110 #define MCHK_K_TPERR 0x0080
111 #define MCHK_K_TCPERR 0x0082
112 #define MCHK_K_HERR 0x0084
113 #define MCHK_K_ECC_C 0x0086
114 #define MCHK_K_ECC_NC 0x0088
115 #define MCHK_K_OS_BUGCHECK 0x008A
116 #define MCHK_K_PAL_BUGCHECK 0x0090
119 struct mcheck_info __mcheck_info
;
123 process_mcheck_info(unsigned long vector
, unsigned long la_ptr
,
124 struct pt_regs
*regs
, const char *machine
,
127 struct el_common
*mchk_header
;
131 * See if the machine check is due to a badaddr() and if so,
135 #ifdef CONFIG_VERBOSE_MCHECK
136 if (alpha_verbose_mcheck
> 1) {
137 printk(KERN_CRIT
"%s machine check %s\n", machine
,
138 expected
? "expected." : "NOT expected!!!");
143 int cpu
= smp_processor_id();
144 mcheck_expected(cpu
) = 0;
145 mcheck_taken(cpu
) = 1;
149 mchk_header
= (struct el_common
*)la_ptr
;
151 printk(KERN_CRIT
"%s machine check: vector=0x%lx pc=0x%lx code=0x%x\n",
152 machine
, vector
, regs
->pc
, mchk_header
->code
);
154 switch (mchk_header
->code
) {
155 /* Machine check reasons. Defined according to PALcode sources. */
156 case 0x80: reason
= "tag parity error"; break;
157 case 0x82: reason
= "tag control parity error"; break;
158 case 0x84: reason
= "generic hard error"; break;
159 case 0x86: reason
= "correctable ECC error"; break;
160 case 0x88: reason
= "uncorrectable ECC error"; break;
161 case 0x8A: reason
= "OS-specific PAL bugcheck"; break;
162 case 0x90: reason
= "callsys in kernel mode"; break;
163 case 0x96: reason
= "i-cache read retryable error"; break;
164 case 0x98: reason
= "processor detected hard error"; break;
166 /* System specific (these are for Alcor, at least): */
167 case 0x202: reason
= "system detected hard error"; break;
168 case 0x203: reason
= "system detected uncorrectable ECC error"; break;
169 case 0x204: reason
= "SIO SERR occurred on PCI bus"; break;
170 case 0x205: reason
= "parity error detected by core logic"; break;
171 case 0x206: reason
= "SIO IOCHK occurred on ISA bus"; break;
172 case 0x207: reason
= "non-existent memory error"; break;
173 case 0x208: reason
= "MCHK_K_DCSR"; break;
174 case 0x209: reason
= "PCI SERR detected"; break;
175 case 0x20b: reason
= "PCI data parity error detected"; break;
176 case 0x20d: reason
= "PCI address parity error detected"; break;
177 case 0x20f: reason
= "PCI master abort error"; break;
178 case 0x211: reason
= "PCI target abort error"; break;
179 case 0x213: reason
= "scatter/gather PTE invalid error"; break;
180 case 0x215: reason
= "flash ROM write error"; break;
181 case 0x217: reason
= "IOA timeout detected"; break;
182 case 0x219: reason
= "IOCHK#, EISA add-in board parity or other catastrophic error"; break;
183 case 0x21b: reason
= "EISA fail-safe timer timeout"; break;
184 case 0x21d: reason
= "EISA bus time-out"; break;
185 case 0x21f: reason
= "EISA software generated NMI"; break;
186 case 0x221: reason
= "unexpected ev5 IRQ[3] interrupt"; break;
187 default: reason
= "unknown"; break;
190 printk(KERN_CRIT
"machine check type: %s%s\n",
191 reason
, mchk_header
->retry
? " (retryable)" : "");
193 dik_show_regs(regs
, NULL
);
195 #ifdef CONFIG_VERBOSE_MCHECK
196 if (alpha_verbose_mcheck
> 1) {
197 /* Dump the logout area to give all info. */
198 unsigned long *ptr
= (unsigned long *)la_ptr
;
200 for (i
= 0; i
< mchk_header
->size
/ sizeof(long); i
+= 2) {
201 printk(KERN_CRIT
" +%8lx %016lx %016lx\n",
202 i
*sizeof(long), ptr
[i
], ptr
[i
+1]);
205 #endif /* CONFIG_VERBOSE_MCHECK */
209 * The special RTC interrupt type. The interrupt itself was
210 * processed by PALcode, and comes in via entInt vector 1.
213 static void rtc_enable_disable(unsigned int irq
) { }
214 static unsigned int rtc_startup(unsigned int irq
) { return 0; }
216 struct irqaction timer_irqaction
= {
217 .handler
= timer_interrupt
,
218 .flags
= SA_INTERRUPT
,
222 static struct hw_interrupt_type rtc_irq_type
= {
224 .startup
= rtc_startup
,
225 .shutdown
= rtc_enable_disable
,
226 .enable
= rtc_enable_disable
,
227 .disable
= rtc_enable_disable
,
228 .ack
= rtc_enable_disable
,
229 .end
= rtc_enable_disable
,
235 irq_desc
[RTC_IRQ
].status
= IRQ_DISABLED
;
236 irq_desc
[RTC_IRQ
].handler
= &rtc_irq_type
;
237 setup_irq(RTC_IRQ
, &timer_irqaction
);
240 /* Dummy irqactions. */
241 struct irqaction isa_cascade_irqaction
= {
242 .handler
= no_action
,
243 .name
= "isa-cascade"
246 struct irqaction timer_cascade_irqaction
= {
247 .handler
= no_action
,
248 .name
= "timer-cascade"
251 struct irqaction halt_switch_irqaction
= {
252 .handler
= no_action
,
253 .name
= "halt-switch"