blob: 70edbe06e4c6150b6828129a767db81188cf2f42 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk591dda52002-11-18 00:14:45 +00002/*
Graeme Russ45fc1d82011-04-13 19:43:26 +10003 * (C) Copyright 2008-2011
4 * Graeme Russ, <graeme.russ@gmail.com>
Graeme Russd11b0852009-11-24 20:04:18 +11005 *
wdenk591dda52002-11-18 00:14:45 +00006 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02007 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk591dda52002-11-18 00:14:45 +00008 *
Graeme Russc39acb42010-04-24 00:05:38 +10009 * Portions of this file are derived from the Linux kernel source
10 * Copyright (C) 1991, 1992 Linus Torvalds
wdenk591dda52002-11-18 00:14:45 +000011 */
12
13#include <common.h>
Simon Glass754f55e2016-01-19 21:32:26 -070014#include <dm.h>
Heinrich Schuchardt954108d2019-08-25 19:55:12 +020015#include <efi_loader.h>
Simon Glassf11478f2019-12-28 10:45:07 -070016#include <hang.h>
Simon Glassda25eff2019-12-28 10:44:56 -070017#include <init.h>
Simon Glass9b61c7c2019-11-14 12:57:41 -070018#include <irq_func.h>
Stefan Reinauer2acf8482012-12-02 04:49:50 +000019#include <asm/control_regs.h>
Bin Mengd538c362016-05-22 01:45:33 -070020#include <asm/i8259.h>
Graeme Russ0c8c62e2008-12-07 10:29:01 +110021#include <asm/interrupt.h>
Graeme Russ68699802011-02-12 15:11:28 +110022#include <asm/io.h>
Bin Mengd538c362016-05-22 01:45:33 -070023#include <asm/lapic.h>
Bin Mengd538c362016-05-22 01:45:33 -070024#include <asm/processor-flags.h>
wdenk591dda52002-11-18 00:14:45 +000025
Simon Glassbb6306c2013-04-17 16:13:33 +000026DECLARE_GLOBAL_DATA_PTR;
27
Graeme Russd11b0852009-11-24 20:04:18 +110028#define DECLARE_INTERRUPT(x) \
29 ".globl irq_"#x"\n" \
Graeme Russ1aafcc92009-11-24 20:04:19 +110030 ".hidden irq_"#x"\n" \
31 ".type irq_"#x", @function\n" \
Graeme Russd11b0852009-11-24 20:04:18 +110032 "irq_"#x":\n" \
Graeme Russd11b0852009-11-24 20:04:18 +110033 "pushl $"#x"\n" \
J. Tang6c0712a2017-02-09 21:54:13 -050034 "jmp.d32 irq_common_entry\n"
wdenk591dda52002-11-18 00:14:45 +000035
Bin Mengfdebed82015-07-10 10:51:23 +080036static char *exceptions[] = {
37 "Divide Error",
38 "Debug",
39 "NMI Interrupt",
40 "Breakpoint",
41 "Overflow",
42 "BOUND Range Exceeded",
43 "Invalid Opcode (Undefined Opcode)",
Vagrant Cascadian973c0992019-05-03 14:28:37 -080044 "Device Not Available (No Math Coprocessor)",
Bin Mengfdebed82015-07-10 10:51:23 +080045 "Double Fault",
46 "Coprocessor Segment Overrun",
47 "Invalid TSS",
48 "Segment Not Present",
49 "Stack Segment Fault",
Simon Glassc4b9ef82015-07-31 09:31:32 -060050 "General Protection",
Bin Mengfdebed82015-07-10 10:51:23 +080051 "Page Fault",
52 "Reserved",
53 "x87 FPU Floating-Point Error",
54 "Alignment Check",
55 "Machine Check",
56 "SIMD Floating-Point Exception",
57 "Virtualization Exception",
58 "Reserved",
59 "Reserved",
60 "Reserved",
61 "Reserved",
62 "Reserved",
63 "Reserved",
64 "Reserved",
65 "Reserved",
66 "Reserved",
67 "Reserved",
68 "Reserved"
69};
70
Heinrich Schuchardt954108d2019-08-25 19:55:12 +020071/**
72 * show_efi_loaded_images() - show loaded UEFI images
73 *
74 * List all loaded UEFI images.
75 *
76 * @eip: instruction pointer
77 */
78static void show_efi_loaded_images(uintptr_t eip)
79{
80 efi_print_image_infos((void *)eip);
81}
82
Simon Glass83374332014-11-06 13:20:08 -070083static void dump_regs(struct irq_regs *regs)
Graeme Russc39acb42010-04-24 00:05:38 +100084{
Bin Meng9ff054b2015-07-10 10:38:32 +080085 unsigned long cs, eip, eflags;
Graeme Russc39acb42010-04-24 00:05:38 +100086 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
87 unsigned long d0, d1, d2, d3, d6, d7;
Graeme Russ68699802011-02-12 15:11:28 +110088 unsigned long sp;
Graeme Russc39acb42010-04-24 00:05:38 +100089
Bin Meng9ff054b2015-07-10 10:38:32 +080090 /*
91 * Some exceptions cause an error code to be saved on the current stack
92 * after the EIP value. We should extract CS/EIP/EFLAGS from different
93 * position on the stack based on the exception number.
94 */
95 switch (regs->irq_id) {
96 case EXC_DF:
97 case EXC_TS:
98 case EXC_NP:
99 case EXC_SS:
100 case EXC_GP:
101 case EXC_PF:
102 case EXC_AC:
103 cs = regs->context.ctx2.xcs;
104 eip = regs->context.ctx2.eip;
105 eflags = regs->context.ctx2.eflags;
106 /* We should fix up the ESP due to error code */
107 regs->esp += 4;
108 break;
109 default:
110 cs = regs->context.ctx1.xcs;
111 eip = regs->context.ctx1.eip;
112 eflags = regs->context.ctx1.eflags;
113 break;
114 }
115
Graeme Russc39acb42010-04-24 00:05:38 +1000116 printf("EIP: %04x:[<%08lx>] EFLAGS: %08lx\n",
Bin Meng9ff054b2015-07-10 10:38:32 +0800117 (u16)cs, eip, eflags);
Simon Glass79dd4342015-08-10 22:02:54 -0600118 if (gd->flags & GD_FLG_RELOC)
119 printf("Original EIP :[<%08lx>]\n", eip - gd->reloc_off);
Graeme Russc39acb42010-04-24 00:05:38 +1000120
121 printf("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
122 regs->eax, regs->ebx, regs->ecx, regs->edx);
123 printf("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
124 regs->esi, regs->edi, regs->ebp, regs->esp);
125 printf(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n",
Graeme Russfdee8b12011-11-08 02:33:13 +0000126 (u16)regs->xds, (u16)regs->xes, (u16)regs->xfs,
127 (u16)regs->xgs, (u16)regs->xss);
Graeme Russc39acb42010-04-24 00:05:38 +1000128
129 cr0 = read_cr0();
130 cr2 = read_cr2();
131 cr3 = read_cr3();
132 cr4 = read_cr4();
133
134 printf("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n",
135 cr0, cr2, cr3, cr4);
136
137 d0 = get_debugreg(0);
138 d1 = get_debugreg(1);
139 d2 = get_debugreg(2);
140 d3 = get_debugreg(3);
141
142 printf("DR0: %08lx DR1: %08lx DR2: %08lx DR3: %08lx\n",
143 d0, d1, d2, d3);
144
145 d6 = get_debugreg(6);
146 d7 = get_debugreg(7);
147 printf("DR6: %08lx DR7: %08lx\n",
148 d6, d7);
Graeme Russ68699802011-02-12 15:11:28 +1100149
150 printf("Stack:\n");
151 sp = regs->esp;
152
153 sp += 64;
154
155 while (sp > (regs->esp - 16)) {
156 if (sp == regs->esp)
157 printf("--->");
158 else
159 printf(" ");
160 printf("0x%8.8lx : 0x%8.8lx\n", sp, (ulong)readl(sp));
161 sp -= 4;
162 }
Heinrich Schuchardt954108d2019-08-25 19:55:12 +0200163 show_efi_loaded_images(eip);
Graeme Russc39acb42010-04-24 00:05:38 +1000164}
165
Bin Mengfdebed82015-07-10 10:51:23 +0800166static void do_exception(struct irq_regs *regs)
167{
168 printf("%s\n", exceptions[regs->irq_id]);
169 dump_regs(regs);
170 hang();
171}
172
wdenk591dda52002-11-18 00:14:45 +0000173struct idt_entry {
174 u16 base_low;
175 u16 selector;
176 u8 res;
177 u8 access;
178 u16 base_high;
Graeme Russfdee8b12011-11-08 02:33:13 +0000179} __packed;
wdenk591dda52002-11-18 00:14:45 +0000180
Graeme Russd11b0852009-11-24 20:04:18 +1100181struct desc_ptr {
182 unsigned short size;
183 unsigned long address;
Graeme Russfdee8b12011-11-08 02:33:13 +0000184} __packed;
wdenk591dda52002-11-18 00:14:45 +0000185
Graeme Russaf3f2c82011-12-19 14:26:18 +1100186struct idt_entry idt[256] __aligned(16);
wdenk591dda52002-11-18 00:14:45 +0000187
Graeme Russd11b0852009-11-24 20:04:18 +1100188struct desc_ptr idt_ptr;
wdenk591dda52002-11-18 00:14:45 +0000189
Graeme Russd11b0852009-11-24 20:04:18 +1100190static inline void load_idt(const struct desc_ptr *dtr)
191{
Graeme Russfdee8b12011-11-08 02:33:13 +0000192 asm volatile("cs lidt %0" : : "m" (*dtr));
Graeme Russd11b0852009-11-24 20:04:18 +1100193}
wdenk591dda52002-11-18 00:14:45 +0000194
Graeme Russ77290ee2009-02-24 21:13:40 +1100195void set_vector(u8 intnum, void *routine)
wdenk591dda52002-11-18 00:14:45 +0000196{
Simon Glassb58770f2016-09-25 21:33:25 -0600197 idt[intnum].base_high = (u16)((ulong)(routine) >> 16);
198 idt[intnum].base_low = (u16)((ulong)(routine) & 0xffff);
wdenk591dda52002-11-18 00:14:45 +0000199}
200
Graeme Russfdee8b12011-11-08 02:33:13 +0000201/*
202 * Ideally these would be defined static to avoid a checkpatch warning, but
203 * the compiler cannot see them in the inline asm and complains that they
204 * aren't defined
205 */
Graeme Russd11b0852009-11-24 20:04:18 +1100206void irq_0(void);
207void irq_1(void);
wdenk591dda52002-11-18 00:14:45 +0000208
Graeme Russ77290ee2009-02-24 21:13:40 +1100209int cpu_init_interrupts(void)
wdenk591dda52002-11-18 00:14:45 +0000210{
211 int i;
wdenk57b2d802003-06-27 21:31:46 +0000212
Graeme Russd11b0852009-11-24 20:04:18 +1100213 int irq_entry_size = irq_1 - irq_0;
214 void *irq_entry = (void *)irq_0;
215
wdenk591dda52002-11-18 00:14:45 +0000216 /* Setup the IDT */
Graeme Russfdee8b12011-11-08 02:33:13 +0000217 for (i = 0; i < 256; i++) {
wdenk591dda52002-11-18 00:14:45 +0000218 idt[i].access = 0x8e;
wdenk57b2d802003-06-27 21:31:46 +0000219 idt[i].res = 0;
Simon Glassc4b9ef82015-07-31 09:31:32 -0600220 idt[i].selector = X86_GDT_ENTRY_32BIT_CS * X86_GDT_ENTRY_SIZE;
Graeme Russd11b0852009-11-24 20:04:18 +1100221 set_vector(i, irq_entry);
222 irq_entry += irq_entry_size;
wdenk57b2d802003-06-27 21:31:46 +0000223 }
224
Simon Glassc4b9ef82015-07-31 09:31:32 -0600225 idt_ptr.size = 256 * 8 - 1;
Graeme Russd11b0852009-11-24 20:04:18 +1100226 idt_ptr.address = (unsigned long) idt;
Graeme Russd11b0852009-11-24 20:04:18 +1100227
228 load_idt(&idt_ptr);
wdenk57b2d802003-06-27 21:31:46 +0000229
wdenk591dda52002-11-18 00:14:45 +0000230 return 0;
231}
232
Simon Glass98d7e982015-04-28 20:25:16 -0600233void *x86_get_idt(void)
234{
235 return &idt_ptr;
236}
237
Graeme Russd11b0852009-11-24 20:04:18 +1100238void __do_irq(int irq)
239{
240 printf("Unhandled IRQ : %d\n", irq);
241}
242void do_irq(int irq) __attribute__((weak, alias("__do_irq")));
243
wdenk591dda52002-11-18 00:14:45 +0000244void enable_interrupts(void)
245{
246 asm("sti\n");
247}
248
249int disable_interrupts(void)
250{
251 long flags;
wdenk57b2d802003-06-27 21:31:46 +0000252
Simon Glass1560a632017-01-16 07:04:00 -0700253#if CONFIG_IS_ENABLED(X86_64)
Simon Glass87086d52016-09-25 21:33:23 -0600254 asm volatile ("pushfq ; popq %0 ; cli\n" : "=g" (flags) : );
255#else
wdenk591dda52002-11-18 00:14:45 +0000256 asm volatile ("pushfl ; popl %0 ; cli\n" : "=g" (flags) : );
Simon Glass87086d52016-09-25 21:33:23 -0600257#endif
Graeme Russfdee8b12011-11-08 02:33:13 +0000258 return flags & X86_EFLAGS_IF;
wdenk591dda52002-11-18 00:14:45 +0000259}
Graeme Russd11b0852009-11-24 20:04:18 +1100260
Bin Mengcb9d9cb2014-11-20 16:11:16 +0800261int interrupt_init(void)
262{
Simon Glass754f55e2016-01-19 21:32:26 -0700263 struct udevice *dev;
264 int ret;
265
266 /* Try to set up the interrupt router, but don't require one */
Simon Glassc7298e72016-02-11 13:23:26 -0700267 ret = uclass_first_device_err(UCLASS_IRQ, &dev);
Simon Glass754f55e2016-01-19 21:32:26 -0700268 if (ret && ret != -ENODEV)
269 return ret;
270
Ben Stoltzab76a472015-08-04 12:33:46 -0600271 /*
272 * When running as an EFI application we are not in control of
273 * interrupts and should leave them alone.
274 */
275#ifndef CONFIG_EFI_APP
Bin Mengcb9d9cb2014-11-20 16:11:16 +0800276 /* Just in case... */
277 disable_interrupts();
278
Bin Mengb29a08c2015-10-22 19:13:30 -0700279#ifdef CONFIG_I8259_PIC
Bin Mengcb9d9cb2014-11-20 16:11:16 +0800280 /* Initialize the master/slave i8259 pic */
281 i8259_init();
282#endif
283
Hannes Schmelzerd18df3c2018-11-18 23:19:43 +0100284#ifdef CONFIG_APIC
Bin Mengd538c362016-05-22 01:45:33 -0700285 lapic_setup();
Hannes Schmelzerd18df3c2018-11-18 23:19:43 +0100286#endif
Bin Mengd538c362016-05-22 01:45:33 -0700287
Bin Mengcb9d9cb2014-11-20 16:11:16 +0800288 /* Initialize core interrupt and exception functionality of CPU */
289 cpu_init_interrupts();
290
Simon Glass2b6d80b2015-08-04 12:34:00 -0600291 /*
292 * It is now safe to enable interrupts.
293 *
294 * TODO(sjg@chromium.org): But we don't handle these correctly when
295 * booted from EFI.
296 */
297 if (ll_boot_init())
298 enable_interrupts();
Ben Stoltzab76a472015-08-04 12:33:46 -0600299#endif
Bin Mengcb9d9cb2014-11-20 16:11:16 +0800300
301 return 0;
302}
303
Graeme Russd11b0852009-11-24 20:04:18 +1100304/* IRQ Low-Level Service Routine */
Graeme Russ43261532010-10-07 20:03:23 +1100305void irq_llsr(struct irq_regs *regs)
Graeme Russd11b0852009-11-24 20:04:18 +1100306{
307 /*
308 * For detailed description of each exception, refer to:
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +0200309 * Intel® 64 and IA-32 Architectures Software Developer's Manual
Graeme Russd11b0852009-11-24 20:04:18 +1100310 * Volume 1: Basic Architecture
311 * Order Number: 253665-029US, November 2008
312 * Table 6-1. Exceptions and Interrupts
313 */
Bin Mengfdebed82015-07-10 10:51:23 +0800314 if (regs->irq_id < 32) {
315 /* Architecture defined exception */
316 do_exception(regs);
317 } else {
Graeme Russd11b0852009-11-24 20:04:18 +1100318 /* Hardware or User IRQ */
Graeme Russ43261532010-10-07 20:03:23 +1100319 do_irq(regs->irq_id);
Graeme Russd11b0852009-11-24 20:04:18 +1100320 }
321}
322
323/*
324 * OK - This looks really horrible, but it serves a purpose - It helps create
325 * fully relocatable code.
326 * - The call to irq_llsr will be a relative jump
327 * - The IRQ entries will be guaranteed to be in order
Graeme Russc39acb42010-04-24 00:05:38 +1000328 * Interrupt entries are now very small (a push and a jump) but they are
329 * now slower (all registers pushed on stack which provides complete
330 * crash dumps in the low level handlers
Graeme Russ43261532010-10-07 20:03:23 +1100331 *
332 * Interrupt Entry Point:
333 * - Interrupt has caused eflags, CS and EIP to be pushed
334 * - Interrupt Vector Handler has pushed orig_eax
335 * - pt_regs.esp needs to be adjusted by 40 bytes:
336 * 12 bytes pushed by CPU (EFLAGSF, CS, EIP)
337 * 4 bytes pushed by vector handler (irq_id)
338 * 24 bytes pushed before SP (SS, GS, FS, ES, DS, EAX)
339 * NOTE: Only longs are pushed on/popped off the stack!
Graeme Russd11b0852009-11-24 20:04:18 +1100340 */
341asm(".globl irq_common_entry\n" \
Graeme Russ1aafcc92009-11-24 20:04:19 +1100342 ".hidden irq_common_entry\n" \
343 ".type irq_common_entry, @function\n" \
Graeme Russd11b0852009-11-24 20:04:18 +1100344 "irq_common_entry:\n" \
Graeme Russc39acb42010-04-24 00:05:38 +1000345 "cld\n" \
Graeme Russ43261532010-10-07 20:03:23 +1100346 "pushl %ss\n" \
Graeme Russc39acb42010-04-24 00:05:38 +1000347 "pushl %gs\n" \
348 "pushl %fs\n" \
349 "pushl %es\n" \
350 "pushl %ds\n" \
351 "pushl %eax\n" \
Graeme Russ43261532010-10-07 20:03:23 +1100352 "movl %esp, %eax\n" \
353 "addl $40, %eax\n" \
354 "pushl %eax\n" \
Graeme Russc39acb42010-04-24 00:05:38 +1000355 "pushl %ebp\n" \
356 "pushl %edi\n" \
357 "pushl %esi\n" \
358 "pushl %edx\n" \
359 "pushl %ecx\n" \
360 "pushl %ebx\n" \
361 "mov %esp, %eax\n" \
Graeme Russd11b0852009-11-24 20:04:18 +1100362 "call irq_llsr\n" \
Graeme Russc39acb42010-04-24 00:05:38 +1000363 "popl %ebx\n" \
364 "popl %ecx\n" \
365 "popl %edx\n" \
366 "popl %esi\n" \
367 "popl %edi\n" \
368 "popl %ebp\n" \
369 "popl %eax\n" \
Graeme Russ43261532010-10-07 20:03:23 +1100370 "popl %eax\n" \
Graeme Russc39acb42010-04-24 00:05:38 +1000371 "popl %ds\n" \
372 "popl %es\n" \
373 "popl %fs\n" \
374 "popl %gs\n" \
Graeme Russ43261532010-10-07 20:03:23 +1100375 "popl %ss\n" \
Graeme Russc39acb42010-04-24 00:05:38 +1000376 "add $4, %esp\n" \
Graeme Russd11b0852009-11-24 20:04:18 +1100377 "iret\n" \
378 DECLARE_INTERRUPT(0) \
379 DECLARE_INTERRUPT(1) \
380 DECLARE_INTERRUPT(2) \
381 DECLARE_INTERRUPT(3) \
382 DECLARE_INTERRUPT(4) \
383 DECLARE_INTERRUPT(5) \
384 DECLARE_INTERRUPT(6) \
385 DECLARE_INTERRUPT(7) \
386 DECLARE_INTERRUPT(8) \
387 DECLARE_INTERRUPT(9) \
388 DECLARE_INTERRUPT(10) \
389 DECLARE_INTERRUPT(11) \
390 DECLARE_INTERRUPT(12) \
391 DECLARE_INTERRUPT(13) \
392 DECLARE_INTERRUPT(14) \
393 DECLARE_INTERRUPT(15) \
394 DECLARE_INTERRUPT(16) \
395 DECLARE_INTERRUPT(17) \
396 DECLARE_INTERRUPT(18) \
397 DECLARE_INTERRUPT(19) \
398 DECLARE_INTERRUPT(20) \
399 DECLARE_INTERRUPT(21) \
400 DECLARE_INTERRUPT(22) \
401 DECLARE_INTERRUPT(23) \
402 DECLARE_INTERRUPT(24) \
403 DECLARE_INTERRUPT(25) \
404 DECLARE_INTERRUPT(26) \
405 DECLARE_INTERRUPT(27) \
406 DECLARE_INTERRUPT(28) \
407 DECLARE_INTERRUPT(29) \
408 DECLARE_INTERRUPT(30) \
409 DECLARE_INTERRUPT(31) \
410 DECLARE_INTERRUPT(32) \
411 DECLARE_INTERRUPT(33) \
412 DECLARE_INTERRUPT(34) \
413 DECLARE_INTERRUPT(35) \
414 DECLARE_INTERRUPT(36) \
415 DECLARE_INTERRUPT(37) \
416 DECLARE_INTERRUPT(38) \
417 DECLARE_INTERRUPT(39) \
418 DECLARE_INTERRUPT(40) \
419 DECLARE_INTERRUPT(41) \
420 DECLARE_INTERRUPT(42) \
421 DECLARE_INTERRUPT(43) \
422 DECLARE_INTERRUPT(44) \
423 DECLARE_INTERRUPT(45) \
424 DECLARE_INTERRUPT(46) \
425 DECLARE_INTERRUPT(47) \
426 DECLARE_INTERRUPT(48) \
427 DECLARE_INTERRUPT(49) \
428 DECLARE_INTERRUPT(50) \
429 DECLARE_INTERRUPT(51) \
430 DECLARE_INTERRUPT(52) \
431 DECLARE_INTERRUPT(53) \
432 DECLARE_INTERRUPT(54) \
433 DECLARE_INTERRUPT(55) \
434 DECLARE_INTERRUPT(56) \
435 DECLARE_INTERRUPT(57) \
436 DECLARE_INTERRUPT(58) \
437 DECLARE_INTERRUPT(59) \
438 DECLARE_INTERRUPT(60) \
439 DECLARE_INTERRUPT(61) \
440 DECLARE_INTERRUPT(62) \
441 DECLARE_INTERRUPT(63) \
442 DECLARE_INTERRUPT(64) \
443 DECLARE_INTERRUPT(65) \
444 DECLARE_INTERRUPT(66) \
445 DECLARE_INTERRUPT(67) \
446 DECLARE_INTERRUPT(68) \
447 DECLARE_INTERRUPT(69) \
448 DECLARE_INTERRUPT(70) \
449 DECLARE_INTERRUPT(71) \
450 DECLARE_INTERRUPT(72) \
451 DECLARE_INTERRUPT(73) \
452 DECLARE_INTERRUPT(74) \
453 DECLARE_INTERRUPT(75) \
454 DECLARE_INTERRUPT(76) \
455 DECLARE_INTERRUPT(77) \
456 DECLARE_INTERRUPT(78) \
457 DECLARE_INTERRUPT(79) \
458 DECLARE_INTERRUPT(80) \
459 DECLARE_INTERRUPT(81) \
460 DECLARE_INTERRUPT(82) \
461 DECLARE_INTERRUPT(83) \
462 DECLARE_INTERRUPT(84) \
463 DECLARE_INTERRUPT(85) \
464 DECLARE_INTERRUPT(86) \
465 DECLARE_INTERRUPT(87) \
466 DECLARE_INTERRUPT(88) \
467 DECLARE_INTERRUPT(89) \
468 DECLARE_INTERRUPT(90) \
469 DECLARE_INTERRUPT(91) \
470 DECLARE_INTERRUPT(92) \
471 DECLARE_INTERRUPT(93) \
472 DECLARE_INTERRUPT(94) \
473 DECLARE_INTERRUPT(95) \
474 DECLARE_INTERRUPT(97) \
475 DECLARE_INTERRUPT(96) \
476 DECLARE_INTERRUPT(98) \
477 DECLARE_INTERRUPT(99) \
478 DECLARE_INTERRUPT(100) \
479 DECLARE_INTERRUPT(101) \
480 DECLARE_INTERRUPT(102) \
481 DECLARE_INTERRUPT(103) \
482 DECLARE_INTERRUPT(104) \
483 DECLARE_INTERRUPT(105) \
484 DECLARE_INTERRUPT(106) \
485 DECLARE_INTERRUPT(107) \
486 DECLARE_INTERRUPT(108) \
487 DECLARE_INTERRUPT(109) \
488 DECLARE_INTERRUPT(110) \
489 DECLARE_INTERRUPT(111) \
490 DECLARE_INTERRUPT(112) \
491 DECLARE_INTERRUPT(113) \
492 DECLARE_INTERRUPT(114) \
493 DECLARE_INTERRUPT(115) \
494 DECLARE_INTERRUPT(116) \
495 DECLARE_INTERRUPT(117) \
496 DECLARE_INTERRUPT(118) \
497 DECLARE_INTERRUPT(119) \
498 DECLARE_INTERRUPT(120) \
499 DECLARE_INTERRUPT(121) \
500 DECLARE_INTERRUPT(122) \
501 DECLARE_INTERRUPT(123) \
502 DECLARE_INTERRUPT(124) \
503 DECLARE_INTERRUPT(125) \
504 DECLARE_INTERRUPT(126) \
505 DECLARE_INTERRUPT(127) \
506 DECLARE_INTERRUPT(128) \
507 DECLARE_INTERRUPT(129) \
508 DECLARE_INTERRUPT(130) \
509 DECLARE_INTERRUPT(131) \
510 DECLARE_INTERRUPT(132) \
511 DECLARE_INTERRUPT(133) \
512 DECLARE_INTERRUPT(134) \
513 DECLARE_INTERRUPT(135) \
514 DECLARE_INTERRUPT(136) \
515 DECLARE_INTERRUPT(137) \
516 DECLARE_INTERRUPT(138) \
517 DECLARE_INTERRUPT(139) \
518 DECLARE_INTERRUPT(140) \
519 DECLARE_INTERRUPT(141) \
520 DECLARE_INTERRUPT(142) \
521 DECLARE_INTERRUPT(143) \
522 DECLARE_INTERRUPT(144) \
523 DECLARE_INTERRUPT(145) \
524 DECLARE_INTERRUPT(146) \
525 DECLARE_INTERRUPT(147) \
526 DECLARE_INTERRUPT(148) \
527 DECLARE_INTERRUPT(149) \
528 DECLARE_INTERRUPT(150) \
529 DECLARE_INTERRUPT(151) \
530 DECLARE_INTERRUPT(152) \
531 DECLARE_INTERRUPT(153) \
532 DECLARE_INTERRUPT(154) \
533 DECLARE_INTERRUPT(155) \
534 DECLARE_INTERRUPT(156) \
535 DECLARE_INTERRUPT(157) \
536 DECLARE_INTERRUPT(158) \
537 DECLARE_INTERRUPT(159) \
538 DECLARE_INTERRUPT(160) \
539 DECLARE_INTERRUPT(161) \
540 DECLARE_INTERRUPT(162) \
541 DECLARE_INTERRUPT(163) \
542 DECLARE_INTERRUPT(164) \
543 DECLARE_INTERRUPT(165) \
544 DECLARE_INTERRUPT(166) \
545 DECLARE_INTERRUPT(167) \
546 DECLARE_INTERRUPT(168) \
547 DECLARE_INTERRUPT(169) \
548 DECLARE_INTERRUPT(170) \
549 DECLARE_INTERRUPT(171) \
550 DECLARE_INTERRUPT(172) \
551 DECLARE_INTERRUPT(173) \
552 DECLARE_INTERRUPT(174) \
553 DECLARE_INTERRUPT(175) \
554 DECLARE_INTERRUPT(176) \
555 DECLARE_INTERRUPT(177) \
556 DECLARE_INTERRUPT(178) \
557 DECLARE_INTERRUPT(179) \
558 DECLARE_INTERRUPT(180) \
559 DECLARE_INTERRUPT(181) \
560 DECLARE_INTERRUPT(182) \
561 DECLARE_INTERRUPT(183) \
562 DECLARE_INTERRUPT(184) \
563 DECLARE_INTERRUPT(185) \
564 DECLARE_INTERRUPT(186) \
565 DECLARE_INTERRUPT(187) \
566 DECLARE_INTERRUPT(188) \
567 DECLARE_INTERRUPT(189) \
568 DECLARE_INTERRUPT(190) \
569 DECLARE_INTERRUPT(191) \
570 DECLARE_INTERRUPT(192) \
571 DECLARE_INTERRUPT(193) \
572 DECLARE_INTERRUPT(194) \
573 DECLARE_INTERRUPT(195) \
574 DECLARE_INTERRUPT(196) \
575 DECLARE_INTERRUPT(197) \
576 DECLARE_INTERRUPT(198) \
577 DECLARE_INTERRUPT(199) \
578 DECLARE_INTERRUPT(200) \
579 DECLARE_INTERRUPT(201) \
580 DECLARE_INTERRUPT(202) \
581 DECLARE_INTERRUPT(203) \
582 DECLARE_INTERRUPT(204) \
583 DECLARE_INTERRUPT(205) \
584 DECLARE_INTERRUPT(206) \
585 DECLARE_INTERRUPT(207) \
586 DECLARE_INTERRUPT(208) \
587 DECLARE_INTERRUPT(209) \
588 DECLARE_INTERRUPT(210) \
589 DECLARE_INTERRUPT(211) \
590 DECLARE_INTERRUPT(212) \
591 DECLARE_INTERRUPT(213) \
592 DECLARE_INTERRUPT(214) \
593 DECLARE_INTERRUPT(215) \
594 DECLARE_INTERRUPT(216) \
595 DECLARE_INTERRUPT(217) \
596 DECLARE_INTERRUPT(218) \
597 DECLARE_INTERRUPT(219) \
598 DECLARE_INTERRUPT(220) \
599 DECLARE_INTERRUPT(221) \
600 DECLARE_INTERRUPT(222) \
601 DECLARE_INTERRUPT(223) \
602 DECLARE_INTERRUPT(224) \
603 DECLARE_INTERRUPT(225) \
604 DECLARE_INTERRUPT(226) \
605 DECLARE_INTERRUPT(227) \
606 DECLARE_INTERRUPT(228) \
607 DECLARE_INTERRUPT(229) \
608 DECLARE_INTERRUPT(230) \
609 DECLARE_INTERRUPT(231) \
610 DECLARE_INTERRUPT(232) \
611 DECLARE_INTERRUPT(233) \
612 DECLARE_INTERRUPT(234) \
613 DECLARE_INTERRUPT(235) \
614 DECLARE_INTERRUPT(236) \
615 DECLARE_INTERRUPT(237) \
616 DECLARE_INTERRUPT(238) \
617 DECLARE_INTERRUPT(239) \
618 DECLARE_INTERRUPT(240) \
619 DECLARE_INTERRUPT(241) \
620 DECLARE_INTERRUPT(242) \
621 DECLARE_INTERRUPT(243) \
622 DECLARE_INTERRUPT(244) \
623 DECLARE_INTERRUPT(245) \
624 DECLARE_INTERRUPT(246) \
625 DECLARE_INTERRUPT(247) \
626 DECLARE_INTERRUPT(248) \
627 DECLARE_INTERRUPT(249) \
628 DECLARE_INTERRUPT(250) \
629 DECLARE_INTERRUPT(251) \
630 DECLARE_INTERRUPT(252) \
631 DECLARE_INTERRUPT(253) \
632 DECLARE_INTERRUPT(254) \
633 DECLARE_INTERRUPT(255));