blob: 78aa51a3ea6adb2b5b2ec7617a234df42feff949 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00002/*
Graeme Russdbf71152011-04-13 19:43:26 +10003 * (C) Copyright 2008-2011
4 * Graeme Russ, <graeme.russ@gmail.com>
Graeme Russ564a9982009-11-24 20:04:18 +11005 *
wdenk2262cfe2002-11-18 00:14:45 +00006 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02007 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk2262cfe2002-11-18 00:14:45 +00008 *
Graeme Russ433ff2b2010-04-24 00:05:38 +10009 * Portions of this file are derived from the Linux kernel source
10 * Copyright (C) 1991, 1992 Linus Torvalds
wdenk2262cfe2002-11-18 00:14:45 +000011 */
12
13#include <common.h>
Simon Glass12d69292016-01-19 21:32:26 -070014#include <dm.h>
Heinrich Schuchardt74b76352019-08-25 19:55:12 +020015#include <efi_loader.h>
Simon Glassc30b7ad2019-11-14 12:57:41 -070016#include <irq_func.h>
Stefan Reinauer095593c2012-12-02 04:49:50 +000017#include <asm/control_regs.h>
Bin Menge2126712016-05-22 01:45:33 -070018#include <asm/i8259.h>
Graeme Russ9933d602008-12-07 10:29:01 +110019#include <asm/interrupt.h>
Graeme Russca56a4c2011-02-12 15:11:28 +110020#include <asm/io.h>
Bin Menge2126712016-05-22 01:45:33 -070021#include <asm/lapic.h>
Bin Menge2126712016-05-22 01:45:33 -070022#include <asm/processor-flags.h>
wdenk2262cfe2002-11-18 00:14:45 +000023
Simon Glass7282d832013-04-17 16:13:33 +000024DECLARE_GLOBAL_DATA_PTR;
25
Graeme Russ564a9982009-11-24 20:04:18 +110026#define DECLARE_INTERRUPT(x) \
27 ".globl irq_"#x"\n" \
Graeme Russ0fc1b492009-11-24 20:04:19 +110028 ".hidden irq_"#x"\n" \
29 ".type irq_"#x", @function\n" \
Graeme Russ564a9982009-11-24 20:04:18 +110030 "irq_"#x":\n" \
Graeme Russ564a9982009-11-24 20:04:18 +110031 "pushl $"#x"\n" \
J. Tang3c03f492017-02-09 21:54:13 -050032 "jmp.d32 irq_common_entry\n"
wdenk2262cfe2002-11-18 00:14:45 +000033
Bin Meng3ccd49c2015-07-10 10:51:23 +080034static char *exceptions[] = {
35 "Divide Error",
36 "Debug",
37 "NMI Interrupt",
38 "Breakpoint",
39 "Overflow",
40 "BOUND Range Exceeded",
41 "Invalid Opcode (Undefined Opcode)",
Vagrant Cascadian048a92e2019-05-03 14:28:37 -080042 "Device Not Available (No Math Coprocessor)",
Bin Meng3ccd49c2015-07-10 10:51:23 +080043 "Double Fault",
44 "Coprocessor Segment Overrun",
45 "Invalid TSS",
46 "Segment Not Present",
47 "Stack Segment Fault",
Simon Glass8aba36d2015-07-31 09:31:32 -060048 "General Protection",
Bin Meng3ccd49c2015-07-10 10:51:23 +080049 "Page Fault",
50 "Reserved",
51 "x87 FPU Floating-Point Error",
52 "Alignment Check",
53 "Machine Check",
54 "SIMD Floating-Point Exception",
55 "Virtualization Exception",
56 "Reserved",
57 "Reserved",
58 "Reserved",
59 "Reserved",
60 "Reserved",
61 "Reserved",
62 "Reserved",
63 "Reserved",
64 "Reserved",
65 "Reserved",
66 "Reserved"
67};
68
Heinrich Schuchardt74b76352019-08-25 19:55:12 +020069/**
70 * show_efi_loaded_images() - show loaded UEFI images
71 *
72 * List all loaded UEFI images.
73 *
74 * @eip: instruction pointer
75 */
76static void show_efi_loaded_images(uintptr_t eip)
77{
78 efi_print_image_infos((void *)eip);
79}
80
Simon Glasse1ffd812014-11-06 13:20:08 -070081static void dump_regs(struct irq_regs *regs)
Graeme Russ433ff2b2010-04-24 00:05:38 +100082{
Bin Meng013cf482015-07-10 10:38:32 +080083 unsigned long cs, eip, eflags;
Graeme Russ433ff2b2010-04-24 00:05:38 +100084 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
85 unsigned long d0, d1, d2, d3, d6, d7;
Graeme Russca56a4c2011-02-12 15:11:28 +110086 unsigned long sp;
Graeme Russ433ff2b2010-04-24 00:05:38 +100087
Bin Meng013cf482015-07-10 10:38:32 +080088 /*
89 * Some exceptions cause an error code to be saved on the current stack
90 * after the EIP value. We should extract CS/EIP/EFLAGS from different
91 * position on the stack based on the exception number.
92 */
93 switch (regs->irq_id) {
94 case EXC_DF:
95 case EXC_TS:
96 case EXC_NP:
97 case EXC_SS:
98 case EXC_GP:
99 case EXC_PF:
100 case EXC_AC:
101 cs = regs->context.ctx2.xcs;
102 eip = regs->context.ctx2.eip;
103 eflags = regs->context.ctx2.eflags;
104 /* We should fix up the ESP due to error code */
105 regs->esp += 4;
106 break;
107 default:
108 cs = regs->context.ctx1.xcs;
109 eip = regs->context.ctx1.eip;
110 eflags = regs->context.ctx1.eflags;
111 break;
112 }
113
Graeme Russ433ff2b2010-04-24 00:05:38 +1000114 printf("EIP: %04x:[<%08lx>] EFLAGS: %08lx\n",
Bin Meng013cf482015-07-10 10:38:32 +0800115 (u16)cs, eip, eflags);
Simon Glass73995152015-08-10 22:02:54 -0600116 if (gd->flags & GD_FLG_RELOC)
117 printf("Original EIP :[<%08lx>]\n", eip - gd->reloc_off);
Graeme Russ433ff2b2010-04-24 00:05:38 +1000118
119 printf("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
120 regs->eax, regs->ebx, regs->ecx, regs->edx);
121 printf("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
122 regs->esi, regs->edi, regs->ebp, regs->esp);
123 printf(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n",
Graeme Russ717979f2011-11-08 02:33:13 +0000124 (u16)regs->xds, (u16)regs->xes, (u16)regs->xfs,
125 (u16)regs->xgs, (u16)regs->xss);
Graeme Russ433ff2b2010-04-24 00:05:38 +1000126
127 cr0 = read_cr0();
128 cr2 = read_cr2();
129 cr3 = read_cr3();
130 cr4 = read_cr4();
131
132 printf("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n",
133 cr0, cr2, cr3, cr4);
134
135 d0 = get_debugreg(0);
136 d1 = get_debugreg(1);
137 d2 = get_debugreg(2);
138 d3 = get_debugreg(3);
139
140 printf("DR0: %08lx DR1: %08lx DR2: %08lx DR3: %08lx\n",
141 d0, d1, d2, d3);
142
143 d6 = get_debugreg(6);
144 d7 = get_debugreg(7);
145 printf("DR6: %08lx DR7: %08lx\n",
146 d6, d7);
Graeme Russca56a4c2011-02-12 15:11:28 +1100147
148 printf("Stack:\n");
149 sp = regs->esp;
150
151 sp += 64;
152
153 while (sp > (regs->esp - 16)) {
154 if (sp == regs->esp)
155 printf("--->");
156 else
157 printf(" ");
158 printf("0x%8.8lx : 0x%8.8lx\n", sp, (ulong)readl(sp));
159 sp -= 4;
160 }
Heinrich Schuchardt74b76352019-08-25 19:55:12 +0200161 show_efi_loaded_images(eip);
Graeme Russ433ff2b2010-04-24 00:05:38 +1000162}
163
Bin Meng3ccd49c2015-07-10 10:51:23 +0800164static void do_exception(struct irq_regs *regs)
165{
166 printf("%s\n", exceptions[regs->irq_id]);
167 dump_regs(regs);
168 hang();
169}
170
wdenk2262cfe2002-11-18 00:14:45 +0000171struct idt_entry {
172 u16 base_low;
173 u16 selector;
174 u8 res;
175 u8 access;
176 u16 base_high;
Graeme Russ717979f2011-11-08 02:33:13 +0000177} __packed;
wdenk2262cfe2002-11-18 00:14:45 +0000178
Graeme Russ564a9982009-11-24 20:04:18 +1100179struct desc_ptr {
180 unsigned short size;
181 unsigned long address;
Graeme Russ717979f2011-11-08 02:33:13 +0000182} __packed;
wdenk2262cfe2002-11-18 00:14:45 +0000183
Graeme Russ58c7a672011-12-19 14:26:18 +1100184struct idt_entry idt[256] __aligned(16);
wdenk2262cfe2002-11-18 00:14:45 +0000185
Graeme Russ564a9982009-11-24 20:04:18 +1100186struct desc_ptr idt_ptr;
wdenk2262cfe2002-11-18 00:14:45 +0000187
Graeme Russ564a9982009-11-24 20:04:18 +1100188static inline void load_idt(const struct desc_ptr *dtr)
189{
Graeme Russ717979f2011-11-08 02:33:13 +0000190 asm volatile("cs lidt %0" : : "m" (*dtr));
Graeme Russ564a9982009-11-24 20:04:18 +1100191}
wdenk2262cfe2002-11-18 00:14:45 +0000192
Graeme Russabf0cd32009-02-24 21:13:40 +1100193void set_vector(u8 intnum, void *routine)
wdenk2262cfe2002-11-18 00:14:45 +0000194{
Simon Glass21b3b662016-09-25 21:33:25 -0600195 idt[intnum].base_high = (u16)((ulong)(routine) >> 16);
196 idt[intnum].base_low = (u16)((ulong)(routine) & 0xffff);
wdenk2262cfe2002-11-18 00:14:45 +0000197}
198
Graeme Russ717979f2011-11-08 02:33:13 +0000199/*
200 * Ideally these would be defined static to avoid a checkpatch warning, but
201 * the compiler cannot see them in the inline asm and complains that they
202 * aren't defined
203 */
Graeme Russ564a9982009-11-24 20:04:18 +1100204void irq_0(void);
205void irq_1(void);
wdenk2262cfe2002-11-18 00:14:45 +0000206
Graeme Russabf0cd32009-02-24 21:13:40 +1100207int cpu_init_interrupts(void)
wdenk2262cfe2002-11-18 00:14:45 +0000208{
209 int i;
wdenk8bde7f72003-06-27 21:31:46 +0000210
Graeme Russ564a9982009-11-24 20:04:18 +1100211 int irq_entry_size = irq_1 - irq_0;
212 void *irq_entry = (void *)irq_0;
213
wdenk2262cfe2002-11-18 00:14:45 +0000214 /* Setup the IDT */
Graeme Russ717979f2011-11-08 02:33:13 +0000215 for (i = 0; i < 256; i++) {
wdenk2262cfe2002-11-18 00:14:45 +0000216 idt[i].access = 0x8e;
wdenk8bde7f72003-06-27 21:31:46 +0000217 idt[i].res = 0;
Simon Glass8aba36d2015-07-31 09:31:32 -0600218 idt[i].selector = X86_GDT_ENTRY_32BIT_CS * X86_GDT_ENTRY_SIZE;
Graeme Russ564a9982009-11-24 20:04:18 +1100219 set_vector(i, irq_entry);
220 irq_entry += irq_entry_size;
wdenk8bde7f72003-06-27 21:31:46 +0000221 }
222
Simon Glass8aba36d2015-07-31 09:31:32 -0600223 idt_ptr.size = 256 * 8 - 1;
Graeme Russ564a9982009-11-24 20:04:18 +1100224 idt_ptr.address = (unsigned long) idt;
Graeme Russ564a9982009-11-24 20:04:18 +1100225
226 load_idt(&idt_ptr);
wdenk8bde7f72003-06-27 21:31:46 +0000227
wdenk2262cfe2002-11-18 00:14:45 +0000228 return 0;
229}
230
Simon Glass6f41e0e7b2015-04-28 20:25:16 -0600231void *x86_get_idt(void)
232{
233 return &idt_ptr;
234}
235
Graeme Russ564a9982009-11-24 20:04:18 +1100236void __do_irq(int irq)
237{
238 printf("Unhandled IRQ : %d\n", irq);
239}
240void do_irq(int irq) __attribute__((weak, alias("__do_irq")));
241
wdenk2262cfe2002-11-18 00:14:45 +0000242void enable_interrupts(void)
243{
244 asm("sti\n");
245}
246
247int disable_interrupts(void)
248{
249 long flags;
wdenk8bde7f72003-06-27 21:31:46 +0000250
Simon Glass34722da2017-01-16 07:04:00 -0700251#if CONFIG_IS_ENABLED(X86_64)
Simon Glass35233da2016-09-25 21:33:23 -0600252 asm volatile ("pushfq ; popq %0 ; cli\n" : "=g" (flags) : );
253#else
wdenk2262cfe2002-11-18 00:14:45 +0000254 asm volatile ("pushfl ; popl %0 ; cli\n" : "=g" (flags) : );
Simon Glass35233da2016-09-25 21:33:23 -0600255#endif
Graeme Russ717979f2011-11-08 02:33:13 +0000256 return flags & X86_EFLAGS_IF;
wdenk2262cfe2002-11-18 00:14:45 +0000257}
Graeme Russ564a9982009-11-24 20:04:18 +1100258
Bin Meng1dae2e02014-11-20 16:11:16 +0800259int interrupt_init(void)
260{
Simon Glass12d69292016-01-19 21:32:26 -0700261 struct udevice *dev;
262 int ret;
263
264 /* Try to set up the interrupt router, but don't require one */
Simon Glass3f603cb2016-02-11 13:23:26 -0700265 ret = uclass_first_device_err(UCLASS_IRQ, &dev);
Simon Glass12d69292016-01-19 21:32:26 -0700266 if (ret && ret != -ENODEV)
267 return ret;
268
Ben Stoltz3dcdd172015-08-04 12:33:46 -0600269 /*
270 * When running as an EFI application we are not in control of
271 * interrupts and should leave them alone.
272 */
273#ifndef CONFIG_EFI_APP
Bin Meng1dae2e02014-11-20 16:11:16 +0800274 /* Just in case... */
275 disable_interrupts();
276
Bin Mengda3fe242015-10-22 19:13:30 -0700277#ifdef CONFIG_I8259_PIC
Bin Meng1dae2e02014-11-20 16:11:16 +0800278 /* Initialize the master/slave i8259 pic */
279 i8259_init();
280#endif
281
Hannes Schmelzerda4cfa62018-11-18 23:19:43 +0100282#ifdef CONFIG_APIC
Bin Menge2126712016-05-22 01:45:33 -0700283 lapic_setup();
Hannes Schmelzerda4cfa62018-11-18 23:19:43 +0100284#endif
Bin Menge2126712016-05-22 01:45:33 -0700285
Bin Meng1dae2e02014-11-20 16:11:16 +0800286 /* Initialize core interrupt and exception functionality of CPU */
287 cpu_init_interrupts();
288
Simon Glasse49ccea2015-08-04 12:34:00 -0600289 /*
290 * It is now safe to enable interrupts.
291 *
292 * TODO(sjg@chromium.org): But we don't handle these correctly when
293 * booted from EFI.
294 */
295 if (ll_boot_init())
296 enable_interrupts();
Ben Stoltz3dcdd172015-08-04 12:33:46 -0600297#endif
Bin Meng1dae2e02014-11-20 16:11:16 +0800298
299 return 0;
300}
301
Graeme Russ564a9982009-11-24 20:04:18 +1100302/* IRQ Low-Level Service Routine */
Graeme Russ7228efa2010-10-07 20:03:23 +1100303void irq_llsr(struct irq_regs *regs)
Graeme Russ564a9982009-11-24 20:04:18 +1100304{
305 /*
306 * For detailed description of each exception, refer to:
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200307 * Intel® 64 and IA-32 Architectures Software Developer's Manual
Graeme Russ564a9982009-11-24 20:04:18 +1100308 * Volume 1: Basic Architecture
309 * Order Number: 253665-029US, November 2008
310 * Table 6-1. Exceptions and Interrupts
311 */
Bin Meng3ccd49c2015-07-10 10:51:23 +0800312 if (regs->irq_id < 32) {
313 /* Architecture defined exception */
314 do_exception(regs);
315 } else {
Graeme Russ564a9982009-11-24 20:04:18 +1100316 /* Hardware or User IRQ */
Graeme Russ7228efa2010-10-07 20:03:23 +1100317 do_irq(regs->irq_id);
Graeme Russ564a9982009-11-24 20:04:18 +1100318 }
319}
320
321/*
322 * OK - This looks really horrible, but it serves a purpose - It helps create
323 * fully relocatable code.
324 * - The call to irq_llsr will be a relative jump
325 * - The IRQ entries will be guaranteed to be in order
Graeme Russ433ff2b2010-04-24 00:05:38 +1000326 * Interrupt entries are now very small (a push and a jump) but they are
327 * now slower (all registers pushed on stack which provides complete
328 * crash dumps in the low level handlers
Graeme Russ7228efa2010-10-07 20:03:23 +1100329 *
330 * Interrupt Entry Point:
331 * - Interrupt has caused eflags, CS and EIP to be pushed
332 * - Interrupt Vector Handler has pushed orig_eax
333 * - pt_regs.esp needs to be adjusted by 40 bytes:
334 * 12 bytes pushed by CPU (EFLAGSF, CS, EIP)
335 * 4 bytes pushed by vector handler (irq_id)
336 * 24 bytes pushed before SP (SS, GS, FS, ES, DS, EAX)
337 * NOTE: Only longs are pushed on/popped off the stack!
Graeme Russ564a9982009-11-24 20:04:18 +1100338 */
339asm(".globl irq_common_entry\n" \
Graeme Russ0fc1b492009-11-24 20:04:19 +1100340 ".hidden irq_common_entry\n" \
341 ".type irq_common_entry, @function\n" \
Graeme Russ564a9982009-11-24 20:04:18 +1100342 "irq_common_entry:\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000343 "cld\n" \
Graeme Russ7228efa2010-10-07 20:03:23 +1100344 "pushl %ss\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000345 "pushl %gs\n" \
346 "pushl %fs\n" \
347 "pushl %es\n" \
348 "pushl %ds\n" \
349 "pushl %eax\n" \
Graeme Russ7228efa2010-10-07 20:03:23 +1100350 "movl %esp, %eax\n" \
351 "addl $40, %eax\n" \
352 "pushl %eax\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000353 "pushl %ebp\n" \
354 "pushl %edi\n" \
355 "pushl %esi\n" \
356 "pushl %edx\n" \
357 "pushl %ecx\n" \
358 "pushl %ebx\n" \
359 "mov %esp, %eax\n" \
Graeme Russ564a9982009-11-24 20:04:18 +1100360 "call irq_llsr\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000361 "popl %ebx\n" \
362 "popl %ecx\n" \
363 "popl %edx\n" \
364 "popl %esi\n" \
365 "popl %edi\n" \
366 "popl %ebp\n" \
367 "popl %eax\n" \
Graeme Russ7228efa2010-10-07 20:03:23 +1100368 "popl %eax\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000369 "popl %ds\n" \
370 "popl %es\n" \
371 "popl %fs\n" \
372 "popl %gs\n" \
Graeme Russ7228efa2010-10-07 20:03:23 +1100373 "popl %ss\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000374 "add $4, %esp\n" \
Graeme Russ564a9982009-11-24 20:04:18 +1100375 "iret\n" \
376 DECLARE_INTERRUPT(0) \
377 DECLARE_INTERRUPT(1) \
378 DECLARE_INTERRUPT(2) \
379 DECLARE_INTERRUPT(3) \
380 DECLARE_INTERRUPT(4) \
381 DECLARE_INTERRUPT(5) \
382 DECLARE_INTERRUPT(6) \
383 DECLARE_INTERRUPT(7) \
384 DECLARE_INTERRUPT(8) \
385 DECLARE_INTERRUPT(9) \
386 DECLARE_INTERRUPT(10) \
387 DECLARE_INTERRUPT(11) \
388 DECLARE_INTERRUPT(12) \
389 DECLARE_INTERRUPT(13) \
390 DECLARE_INTERRUPT(14) \
391 DECLARE_INTERRUPT(15) \
392 DECLARE_INTERRUPT(16) \
393 DECLARE_INTERRUPT(17) \
394 DECLARE_INTERRUPT(18) \
395 DECLARE_INTERRUPT(19) \
396 DECLARE_INTERRUPT(20) \
397 DECLARE_INTERRUPT(21) \
398 DECLARE_INTERRUPT(22) \
399 DECLARE_INTERRUPT(23) \
400 DECLARE_INTERRUPT(24) \
401 DECLARE_INTERRUPT(25) \
402 DECLARE_INTERRUPT(26) \
403 DECLARE_INTERRUPT(27) \
404 DECLARE_INTERRUPT(28) \
405 DECLARE_INTERRUPT(29) \
406 DECLARE_INTERRUPT(30) \
407 DECLARE_INTERRUPT(31) \
408 DECLARE_INTERRUPT(32) \
409 DECLARE_INTERRUPT(33) \
410 DECLARE_INTERRUPT(34) \
411 DECLARE_INTERRUPT(35) \
412 DECLARE_INTERRUPT(36) \
413 DECLARE_INTERRUPT(37) \
414 DECLARE_INTERRUPT(38) \
415 DECLARE_INTERRUPT(39) \
416 DECLARE_INTERRUPT(40) \
417 DECLARE_INTERRUPT(41) \
418 DECLARE_INTERRUPT(42) \
419 DECLARE_INTERRUPT(43) \
420 DECLARE_INTERRUPT(44) \
421 DECLARE_INTERRUPT(45) \
422 DECLARE_INTERRUPT(46) \
423 DECLARE_INTERRUPT(47) \
424 DECLARE_INTERRUPT(48) \
425 DECLARE_INTERRUPT(49) \
426 DECLARE_INTERRUPT(50) \
427 DECLARE_INTERRUPT(51) \
428 DECLARE_INTERRUPT(52) \
429 DECLARE_INTERRUPT(53) \
430 DECLARE_INTERRUPT(54) \
431 DECLARE_INTERRUPT(55) \
432 DECLARE_INTERRUPT(56) \
433 DECLARE_INTERRUPT(57) \
434 DECLARE_INTERRUPT(58) \
435 DECLARE_INTERRUPT(59) \
436 DECLARE_INTERRUPT(60) \
437 DECLARE_INTERRUPT(61) \
438 DECLARE_INTERRUPT(62) \
439 DECLARE_INTERRUPT(63) \
440 DECLARE_INTERRUPT(64) \
441 DECLARE_INTERRUPT(65) \
442 DECLARE_INTERRUPT(66) \
443 DECLARE_INTERRUPT(67) \
444 DECLARE_INTERRUPT(68) \
445 DECLARE_INTERRUPT(69) \
446 DECLARE_INTERRUPT(70) \
447 DECLARE_INTERRUPT(71) \
448 DECLARE_INTERRUPT(72) \
449 DECLARE_INTERRUPT(73) \
450 DECLARE_INTERRUPT(74) \
451 DECLARE_INTERRUPT(75) \
452 DECLARE_INTERRUPT(76) \
453 DECLARE_INTERRUPT(77) \
454 DECLARE_INTERRUPT(78) \
455 DECLARE_INTERRUPT(79) \
456 DECLARE_INTERRUPT(80) \
457 DECLARE_INTERRUPT(81) \
458 DECLARE_INTERRUPT(82) \
459 DECLARE_INTERRUPT(83) \
460 DECLARE_INTERRUPT(84) \
461 DECLARE_INTERRUPT(85) \
462 DECLARE_INTERRUPT(86) \
463 DECLARE_INTERRUPT(87) \
464 DECLARE_INTERRUPT(88) \
465 DECLARE_INTERRUPT(89) \
466 DECLARE_INTERRUPT(90) \
467 DECLARE_INTERRUPT(91) \
468 DECLARE_INTERRUPT(92) \
469 DECLARE_INTERRUPT(93) \
470 DECLARE_INTERRUPT(94) \
471 DECLARE_INTERRUPT(95) \
472 DECLARE_INTERRUPT(97) \
473 DECLARE_INTERRUPT(96) \
474 DECLARE_INTERRUPT(98) \
475 DECLARE_INTERRUPT(99) \
476 DECLARE_INTERRUPT(100) \
477 DECLARE_INTERRUPT(101) \
478 DECLARE_INTERRUPT(102) \
479 DECLARE_INTERRUPT(103) \
480 DECLARE_INTERRUPT(104) \
481 DECLARE_INTERRUPT(105) \
482 DECLARE_INTERRUPT(106) \
483 DECLARE_INTERRUPT(107) \
484 DECLARE_INTERRUPT(108) \
485 DECLARE_INTERRUPT(109) \
486 DECLARE_INTERRUPT(110) \
487 DECLARE_INTERRUPT(111) \
488 DECLARE_INTERRUPT(112) \
489 DECLARE_INTERRUPT(113) \
490 DECLARE_INTERRUPT(114) \
491 DECLARE_INTERRUPT(115) \
492 DECLARE_INTERRUPT(116) \
493 DECLARE_INTERRUPT(117) \
494 DECLARE_INTERRUPT(118) \
495 DECLARE_INTERRUPT(119) \
496 DECLARE_INTERRUPT(120) \
497 DECLARE_INTERRUPT(121) \
498 DECLARE_INTERRUPT(122) \
499 DECLARE_INTERRUPT(123) \
500 DECLARE_INTERRUPT(124) \
501 DECLARE_INTERRUPT(125) \
502 DECLARE_INTERRUPT(126) \
503 DECLARE_INTERRUPT(127) \
504 DECLARE_INTERRUPT(128) \
505 DECLARE_INTERRUPT(129) \
506 DECLARE_INTERRUPT(130) \
507 DECLARE_INTERRUPT(131) \
508 DECLARE_INTERRUPT(132) \
509 DECLARE_INTERRUPT(133) \
510 DECLARE_INTERRUPT(134) \
511 DECLARE_INTERRUPT(135) \
512 DECLARE_INTERRUPT(136) \
513 DECLARE_INTERRUPT(137) \
514 DECLARE_INTERRUPT(138) \
515 DECLARE_INTERRUPT(139) \
516 DECLARE_INTERRUPT(140) \
517 DECLARE_INTERRUPT(141) \
518 DECLARE_INTERRUPT(142) \
519 DECLARE_INTERRUPT(143) \
520 DECLARE_INTERRUPT(144) \
521 DECLARE_INTERRUPT(145) \
522 DECLARE_INTERRUPT(146) \
523 DECLARE_INTERRUPT(147) \
524 DECLARE_INTERRUPT(148) \
525 DECLARE_INTERRUPT(149) \
526 DECLARE_INTERRUPT(150) \
527 DECLARE_INTERRUPT(151) \
528 DECLARE_INTERRUPT(152) \
529 DECLARE_INTERRUPT(153) \
530 DECLARE_INTERRUPT(154) \
531 DECLARE_INTERRUPT(155) \
532 DECLARE_INTERRUPT(156) \
533 DECLARE_INTERRUPT(157) \
534 DECLARE_INTERRUPT(158) \
535 DECLARE_INTERRUPT(159) \
536 DECLARE_INTERRUPT(160) \
537 DECLARE_INTERRUPT(161) \
538 DECLARE_INTERRUPT(162) \
539 DECLARE_INTERRUPT(163) \
540 DECLARE_INTERRUPT(164) \
541 DECLARE_INTERRUPT(165) \
542 DECLARE_INTERRUPT(166) \
543 DECLARE_INTERRUPT(167) \
544 DECLARE_INTERRUPT(168) \
545 DECLARE_INTERRUPT(169) \
546 DECLARE_INTERRUPT(170) \
547 DECLARE_INTERRUPT(171) \
548 DECLARE_INTERRUPT(172) \
549 DECLARE_INTERRUPT(173) \
550 DECLARE_INTERRUPT(174) \
551 DECLARE_INTERRUPT(175) \
552 DECLARE_INTERRUPT(176) \
553 DECLARE_INTERRUPT(177) \
554 DECLARE_INTERRUPT(178) \
555 DECLARE_INTERRUPT(179) \
556 DECLARE_INTERRUPT(180) \
557 DECLARE_INTERRUPT(181) \
558 DECLARE_INTERRUPT(182) \
559 DECLARE_INTERRUPT(183) \
560 DECLARE_INTERRUPT(184) \
561 DECLARE_INTERRUPT(185) \
562 DECLARE_INTERRUPT(186) \
563 DECLARE_INTERRUPT(187) \
564 DECLARE_INTERRUPT(188) \
565 DECLARE_INTERRUPT(189) \
566 DECLARE_INTERRUPT(190) \
567 DECLARE_INTERRUPT(191) \
568 DECLARE_INTERRUPT(192) \
569 DECLARE_INTERRUPT(193) \
570 DECLARE_INTERRUPT(194) \
571 DECLARE_INTERRUPT(195) \
572 DECLARE_INTERRUPT(196) \
573 DECLARE_INTERRUPT(197) \
574 DECLARE_INTERRUPT(198) \
575 DECLARE_INTERRUPT(199) \
576 DECLARE_INTERRUPT(200) \
577 DECLARE_INTERRUPT(201) \
578 DECLARE_INTERRUPT(202) \
579 DECLARE_INTERRUPT(203) \
580 DECLARE_INTERRUPT(204) \
581 DECLARE_INTERRUPT(205) \
582 DECLARE_INTERRUPT(206) \
583 DECLARE_INTERRUPT(207) \
584 DECLARE_INTERRUPT(208) \
585 DECLARE_INTERRUPT(209) \
586 DECLARE_INTERRUPT(210) \
587 DECLARE_INTERRUPT(211) \
588 DECLARE_INTERRUPT(212) \
589 DECLARE_INTERRUPT(213) \
590 DECLARE_INTERRUPT(214) \
591 DECLARE_INTERRUPT(215) \
592 DECLARE_INTERRUPT(216) \
593 DECLARE_INTERRUPT(217) \
594 DECLARE_INTERRUPT(218) \
595 DECLARE_INTERRUPT(219) \
596 DECLARE_INTERRUPT(220) \
597 DECLARE_INTERRUPT(221) \
598 DECLARE_INTERRUPT(222) \
599 DECLARE_INTERRUPT(223) \
600 DECLARE_INTERRUPT(224) \
601 DECLARE_INTERRUPT(225) \
602 DECLARE_INTERRUPT(226) \
603 DECLARE_INTERRUPT(227) \
604 DECLARE_INTERRUPT(228) \
605 DECLARE_INTERRUPT(229) \
606 DECLARE_INTERRUPT(230) \
607 DECLARE_INTERRUPT(231) \
608 DECLARE_INTERRUPT(232) \
609 DECLARE_INTERRUPT(233) \
610 DECLARE_INTERRUPT(234) \
611 DECLARE_INTERRUPT(235) \
612 DECLARE_INTERRUPT(236) \
613 DECLARE_INTERRUPT(237) \
614 DECLARE_INTERRUPT(238) \
615 DECLARE_INTERRUPT(239) \
616 DECLARE_INTERRUPT(240) \
617 DECLARE_INTERRUPT(241) \
618 DECLARE_INTERRUPT(242) \
619 DECLARE_INTERRUPT(243) \
620 DECLARE_INTERRUPT(244) \
621 DECLARE_INTERRUPT(245) \
622 DECLARE_INTERRUPT(246) \
623 DECLARE_INTERRUPT(247) \
624 DECLARE_INTERRUPT(248) \
625 DECLARE_INTERRUPT(249) \
626 DECLARE_INTERRUPT(250) \
627 DECLARE_INTERRUPT(251) \
628 DECLARE_INTERRUPT(252) \
629 DECLARE_INTERRUPT(253) \
630 DECLARE_INTERRUPT(254) \
631 DECLARE_INTERRUPT(255));