blob: a1129384e2e31809d797cb9bb7bf4d2d9a5b1835 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
Graeme Russdbf71152011-04-13 19:43:26 +10002 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
Graeme Russ564a9982009-11-24 20:04:18 +11004 *
wdenk2262cfe2002-11-18 00:14:45 +00005 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02006 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk2262cfe2002-11-18 00:14:45 +00007 *
Graeme Russ433ff2b2010-04-24 00:05:38 +10008 * Portions of this file are derived from the Linux kernel source
9 * Copyright (C) 1991, 1992 Linus Torvalds
10 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020011 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +000012 */
13
14#include <common.h>
Stefan Reinauer095593c2012-12-02 04:49:50 +000015#include <asm/cache.h>
16#include <asm/control_regs.h>
Graeme Russ9933d602008-12-07 10:29:01 +110017#include <asm/interrupt.h>
Graeme Russca56a4c2011-02-12 15:11:28 +110018#include <asm/io.h>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110019#include <asm/processor-flags.h>
Graeme Russ717979f2011-11-08 02:33:13 +000020#include <linux/compiler.h>
Vadim Bendebury7c710342012-12-03 13:59:20 +000021#include <asm/msr.h>
Simon Glass8aba36d2015-07-31 09:31:32 -060022#include <asm/processor.h>
Vadim Bendebury7c710342012-12-03 13:59:20 +000023#include <asm/u-boot-x86.h>
Bin Meng1dae2e02014-11-20 16:11:16 +080024#include <asm/i8259.h>
wdenk2262cfe2002-11-18 00:14:45 +000025
Simon Glass7282d832013-04-17 16:13:33 +000026DECLARE_GLOBAL_DATA_PTR;
27
Graeme Russ564a9982009-11-24 20:04:18 +110028#define DECLARE_INTERRUPT(x) \
29 ".globl irq_"#x"\n" \
Graeme Russ0fc1b492009-11-24 20:04:19 +110030 ".hidden irq_"#x"\n" \
31 ".type irq_"#x", @function\n" \
Graeme Russ564a9982009-11-24 20:04:18 +110032 "irq_"#x":\n" \
Graeme Russ564a9982009-11-24 20:04:18 +110033 "pushl $"#x"\n" \
34 "jmp irq_common_entry\n"
wdenk2262cfe2002-11-18 00:14:45 +000035
Bin Meng3ccd49c2015-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)",
44 "Device Not Avaiable (No Math Coprocessor)",
45 "Double Fault",
46 "Coprocessor Segment Overrun",
47 "Invalid TSS",
48 "Segment Not Present",
49 "Stack Segment Fault",
Simon Glass8aba36d2015-07-31 09:31:32 -060050 "General Protection",
Bin Meng3ccd49c2015-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
Simon Glasse1ffd812014-11-06 13:20:08 -070071static void dump_regs(struct irq_regs *regs)
Graeme Russ433ff2b2010-04-24 00:05:38 +100072{
Bin Meng013cf482015-07-10 10:38:32 +080073 unsigned long cs, eip, eflags;
Graeme Russ433ff2b2010-04-24 00:05:38 +100074 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
75 unsigned long d0, d1, d2, d3, d6, d7;
Graeme Russca56a4c2011-02-12 15:11:28 +110076 unsigned long sp;
Graeme Russ433ff2b2010-04-24 00:05:38 +100077
Bin Meng013cf482015-07-10 10:38:32 +080078 /*
79 * Some exceptions cause an error code to be saved on the current stack
80 * after the EIP value. We should extract CS/EIP/EFLAGS from different
81 * position on the stack based on the exception number.
82 */
83 switch (regs->irq_id) {
84 case EXC_DF:
85 case EXC_TS:
86 case EXC_NP:
87 case EXC_SS:
88 case EXC_GP:
89 case EXC_PF:
90 case EXC_AC:
91 cs = regs->context.ctx2.xcs;
92 eip = regs->context.ctx2.eip;
93 eflags = regs->context.ctx2.eflags;
94 /* We should fix up the ESP due to error code */
95 regs->esp += 4;
96 break;
97 default:
98 cs = regs->context.ctx1.xcs;
99 eip = regs->context.ctx1.eip;
100 eflags = regs->context.ctx1.eflags;
101 break;
102 }
103
Graeme Russ433ff2b2010-04-24 00:05:38 +1000104 printf("EIP: %04x:[<%08lx>] EFLAGS: %08lx\n",
Bin Meng013cf482015-07-10 10:38:32 +0800105 (u16)cs, eip, eflags);
Graeme Russ433ff2b2010-04-24 00:05:38 +1000106
107 printf("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
108 regs->eax, regs->ebx, regs->ecx, regs->edx);
109 printf("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
110 regs->esi, regs->edi, regs->ebp, regs->esp);
111 printf(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n",
Graeme Russ717979f2011-11-08 02:33:13 +0000112 (u16)regs->xds, (u16)regs->xes, (u16)regs->xfs,
113 (u16)regs->xgs, (u16)regs->xss);
Graeme Russ433ff2b2010-04-24 00:05:38 +1000114
115 cr0 = read_cr0();
116 cr2 = read_cr2();
117 cr3 = read_cr3();
118 cr4 = read_cr4();
119
120 printf("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n",
121 cr0, cr2, cr3, cr4);
122
123 d0 = get_debugreg(0);
124 d1 = get_debugreg(1);
125 d2 = get_debugreg(2);
126 d3 = get_debugreg(3);
127
128 printf("DR0: %08lx DR1: %08lx DR2: %08lx DR3: %08lx\n",
129 d0, d1, d2, d3);
130
131 d6 = get_debugreg(6);
132 d7 = get_debugreg(7);
133 printf("DR6: %08lx DR7: %08lx\n",
134 d6, d7);
Graeme Russca56a4c2011-02-12 15:11:28 +1100135
136 printf("Stack:\n");
137 sp = regs->esp;
138
139 sp += 64;
140
141 while (sp > (regs->esp - 16)) {
142 if (sp == regs->esp)
143 printf("--->");
144 else
145 printf(" ");
146 printf("0x%8.8lx : 0x%8.8lx\n", sp, (ulong)readl(sp));
147 sp -= 4;
148 }
Graeme Russ433ff2b2010-04-24 00:05:38 +1000149}
150
Bin Meng3ccd49c2015-07-10 10:51:23 +0800151static void do_exception(struct irq_regs *regs)
152{
153 printf("%s\n", exceptions[regs->irq_id]);
154 dump_regs(regs);
155 hang();
156}
157
wdenk2262cfe2002-11-18 00:14:45 +0000158struct idt_entry {
159 u16 base_low;
160 u16 selector;
161 u8 res;
162 u8 access;
163 u16 base_high;
Graeme Russ717979f2011-11-08 02:33:13 +0000164} __packed;
wdenk2262cfe2002-11-18 00:14:45 +0000165
Graeme Russ564a9982009-11-24 20:04:18 +1100166struct desc_ptr {
167 unsigned short size;
168 unsigned long address;
Graeme Russ717979f2011-11-08 02:33:13 +0000169} __packed;
wdenk2262cfe2002-11-18 00:14:45 +0000170
Graeme Russ58c7a672011-12-19 14:26:18 +1100171struct idt_entry idt[256] __aligned(16);
wdenk2262cfe2002-11-18 00:14:45 +0000172
Graeme Russ564a9982009-11-24 20:04:18 +1100173struct desc_ptr idt_ptr;
wdenk2262cfe2002-11-18 00:14:45 +0000174
Graeme Russ564a9982009-11-24 20:04:18 +1100175static inline void load_idt(const struct desc_ptr *dtr)
176{
Graeme Russ717979f2011-11-08 02:33:13 +0000177 asm volatile("cs lidt %0" : : "m" (*dtr));
Graeme Russ564a9982009-11-24 20:04:18 +1100178}
wdenk2262cfe2002-11-18 00:14:45 +0000179
Graeme Russabf0cd32009-02-24 21:13:40 +1100180void set_vector(u8 intnum, void *routine)
wdenk2262cfe2002-11-18 00:14:45 +0000181{
Graeme Russ1c409bc2009-11-24 20:04:21 +1100182 idt[intnum].base_high = (u16)((u32)(routine) >> 16);
183 idt[intnum].base_low = (u16)((u32)(routine) & 0xffff);
wdenk2262cfe2002-11-18 00:14:45 +0000184}
185
Graeme Russ717979f2011-11-08 02:33:13 +0000186/*
187 * Ideally these would be defined static to avoid a checkpatch warning, but
188 * the compiler cannot see them in the inline asm and complains that they
189 * aren't defined
190 */
Graeme Russ564a9982009-11-24 20:04:18 +1100191void irq_0(void);
192void irq_1(void);
wdenk2262cfe2002-11-18 00:14:45 +0000193
Graeme Russabf0cd32009-02-24 21:13:40 +1100194int cpu_init_interrupts(void)
wdenk2262cfe2002-11-18 00:14:45 +0000195{
196 int i;
wdenk8bde7f72003-06-27 21:31:46 +0000197
Graeme Russ564a9982009-11-24 20:04:18 +1100198 int irq_entry_size = irq_1 - irq_0;
199 void *irq_entry = (void *)irq_0;
200
wdenk2262cfe2002-11-18 00:14:45 +0000201 /* Setup the IDT */
Graeme Russ717979f2011-11-08 02:33:13 +0000202 for (i = 0; i < 256; i++) {
wdenk2262cfe2002-11-18 00:14:45 +0000203 idt[i].access = 0x8e;
wdenk8bde7f72003-06-27 21:31:46 +0000204 idt[i].res = 0;
Simon Glass8aba36d2015-07-31 09:31:32 -0600205 idt[i].selector = X86_GDT_ENTRY_32BIT_CS * X86_GDT_ENTRY_SIZE;
Graeme Russ564a9982009-11-24 20:04:18 +1100206 set_vector(i, irq_entry);
207 irq_entry += irq_entry_size;
wdenk8bde7f72003-06-27 21:31:46 +0000208 }
209
Simon Glass8aba36d2015-07-31 09:31:32 -0600210 idt_ptr.size = 256 * 8 - 1;
Graeme Russ564a9982009-11-24 20:04:18 +1100211 idt_ptr.address = (unsigned long) idt;
Graeme Russ564a9982009-11-24 20:04:18 +1100212
213 load_idt(&idt_ptr);
wdenk8bde7f72003-06-27 21:31:46 +0000214
wdenk2262cfe2002-11-18 00:14:45 +0000215 return 0;
216}
217
Simon Glass6f41e0e7b2015-04-28 20:25:16 -0600218void *x86_get_idt(void)
219{
220 return &idt_ptr;
221}
222
Graeme Russ564a9982009-11-24 20:04:18 +1100223void __do_irq(int irq)
224{
225 printf("Unhandled IRQ : %d\n", irq);
226}
227void do_irq(int irq) __attribute__((weak, alias("__do_irq")));
228
wdenk2262cfe2002-11-18 00:14:45 +0000229void enable_interrupts(void)
230{
231 asm("sti\n");
232}
233
234int disable_interrupts(void)
235{
236 long flags;
wdenk8bde7f72003-06-27 21:31:46 +0000237
wdenk2262cfe2002-11-18 00:14:45 +0000238 asm volatile ("pushfl ; popl %0 ; cli\n" : "=g" (flags) : );
wdenk8bde7f72003-06-27 21:31:46 +0000239
Graeme Russ717979f2011-11-08 02:33:13 +0000240 return flags & X86_EFLAGS_IF;
wdenk2262cfe2002-11-18 00:14:45 +0000241}
Graeme Russ564a9982009-11-24 20:04:18 +1100242
Bin Meng1dae2e02014-11-20 16:11:16 +0800243int interrupt_init(void)
244{
Ben Stoltz3dcdd172015-08-04 12:33:46 -0600245 /*
246 * When running as an EFI application we are not in control of
247 * interrupts and should leave them alone.
248 */
249#ifndef CONFIG_EFI_APP
Bin Meng1dae2e02014-11-20 16:11:16 +0800250 /* Just in case... */
251 disable_interrupts();
252
253#ifdef CONFIG_SYS_PCAT_INTERRUPTS
254 /* Initialize the master/slave i8259 pic */
255 i8259_init();
256#endif
257
258 /* Initialize core interrupt and exception functionality of CPU */
259 cpu_init_interrupts();
260
261 /* It is now safe to enable interrupts */
262 enable_interrupts();
Ben Stoltz3dcdd172015-08-04 12:33:46 -0600263#endif
Bin Meng1dae2e02014-11-20 16:11:16 +0800264
265 return 0;
266}
267
Graeme Russ564a9982009-11-24 20:04:18 +1100268/* IRQ Low-Level Service Routine */
Graeme Russ7228efa2010-10-07 20:03:23 +1100269void irq_llsr(struct irq_regs *regs)
Graeme Russ564a9982009-11-24 20:04:18 +1100270{
271 /*
272 * For detailed description of each exception, refer to:
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200273 * Intel® 64 and IA-32 Architectures Software Developer's Manual
Graeme Russ564a9982009-11-24 20:04:18 +1100274 * Volume 1: Basic Architecture
275 * Order Number: 253665-029US, November 2008
276 * Table 6-1. Exceptions and Interrupts
277 */
Bin Meng3ccd49c2015-07-10 10:51:23 +0800278 if (regs->irq_id < 32) {
279 /* Architecture defined exception */
280 do_exception(regs);
281 } else {
Graeme Russ564a9982009-11-24 20:04:18 +1100282 /* Hardware or User IRQ */
Graeme Russ7228efa2010-10-07 20:03:23 +1100283 do_irq(regs->irq_id);
Graeme Russ564a9982009-11-24 20:04:18 +1100284 }
285}
286
287/*
288 * OK - This looks really horrible, but it serves a purpose - It helps create
289 * fully relocatable code.
290 * - The call to irq_llsr will be a relative jump
291 * - The IRQ entries will be guaranteed to be in order
Graeme Russ433ff2b2010-04-24 00:05:38 +1000292 * Interrupt entries are now very small (a push and a jump) but they are
293 * now slower (all registers pushed on stack which provides complete
294 * crash dumps in the low level handlers
Graeme Russ7228efa2010-10-07 20:03:23 +1100295 *
296 * Interrupt Entry Point:
297 * - Interrupt has caused eflags, CS and EIP to be pushed
298 * - Interrupt Vector Handler has pushed orig_eax
299 * - pt_regs.esp needs to be adjusted by 40 bytes:
300 * 12 bytes pushed by CPU (EFLAGSF, CS, EIP)
301 * 4 bytes pushed by vector handler (irq_id)
302 * 24 bytes pushed before SP (SS, GS, FS, ES, DS, EAX)
303 * NOTE: Only longs are pushed on/popped off the stack!
Graeme Russ564a9982009-11-24 20:04:18 +1100304 */
305asm(".globl irq_common_entry\n" \
Graeme Russ0fc1b492009-11-24 20:04:19 +1100306 ".hidden irq_common_entry\n" \
307 ".type irq_common_entry, @function\n" \
Graeme Russ564a9982009-11-24 20:04:18 +1100308 "irq_common_entry:\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000309 "cld\n" \
Graeme Russ7228efa2010-10-07 20:03:23 +1100310 "pushl %ss\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000311 "pushl %gs\n" \
312 "pushl %fs\n" \
313 "pushl %es\n" \
314 "pushl %ds\n" \
315 "pushl %eax\n" \
Graeme Russ7228efa2010-10-07 20:03:23 +1100316 "movl %esp, %eax\n" \
317 "addl $40, %eax\n" \
318 "pushl %eax\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000319 "pushl %ebp\n" \
320 "pushl %edi\n" \
321 "pushl %esi\n" \
322 "pushl %edx\n" \
323 "pushl %ecx\n" \
324 "pushl %ebx\n" \
325 "mov %esp, %eax\n" \
Graeme Russ564a9982009-11-24 20:04:18 +1100326 "call irq_llsr\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000327 "popl %ebx\n" \
328 "popl %ecx\n" \
329 "popl %edx\n" \
330 "popl %esi\n" \
331 "popl %edi\n" \
332 "popl %ebp\n" \
333 "popl %eax\n" \
Graeme Russ7228efa2010-10-07 20:03:23 +1100334 "popl %eax\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000335 "popl %ds\n" \
336 "popl %es\n" \
337 "popl %fs\n" \
338 "popl %gs\n" \
Graeme Russ7228efa2010-10-07 20:03:23 +1100339 "popl %ss\n" \
Graeme Russ433ff2b2010-04-24 00:05:38 +1000340 "add $4, %esp\n" \
Graeme Russ564a9982009-11-24 20:04:18 +1100341 "iret\n" \
342 DECLARE_INTERRUPT(0) \
343 DECLARE_INTERRUPT(1) \
344 DECLARE_INTERRUPT(2) \
345 DECLARE_INTERRUPT(3) \
346 DECLARE_INTERRUPT(4) \
347 DECLARE_INTERRUPT(5) \
348 DECLARE_INTERRUPT(6) \
349 DECLARE_INTERRUPT(7) \
350 DECLARE_INTERRUPT(8) \
351 DECLARE_INTERRUPT(9) \
352 DECLARE_INTERRUPT(10) \
353 DECLARE_INTERRUPT(11) \
354 DECLARE_INTERRUPT(12) \
355 DECLARE_INTERRUPT(13) \
356 DECLARE_INTERRUPT(14) \
357 DECLARE_INTERRUPT(15) \
358 DECLARE_INTERRUPT(16) \
359 DECLARE_INTERRUPT(17) \
360 DECLARE_INTERRUPT(18) \
361 DECLARE_INTERRUPT(19) \
362 DECLARE_INTERRUPT(20) \
363 DECLARE_INTERRUPT(21) \
364 DECLARE_INTERRUPT(22) \
365 DECLARE_INTERRUPT(23) \
366 DECLARE_INTERRUPT(24) \
367 DECLARE_INTERRUPT(25) \
368 DECLARE_INTERRUPT(26) \
369 DECLARE_INTERRUPT(27) \
370 DECLARE_INTERRUPT(28) \
371 DECLARE_INTERRUPT(29) \
372 DECLARE_INTERRUPT(30) \
373 DECLARE_INTERRUPT(31) \
374 DECLARE_INTERRUPT(32) \
375 DECLARE_INTERRUPT(33) \
376 DECLARE_INTERRUPT(34) \
377 DECLARE_INTERRUPT(35) \
378 DECLARE_INTERRUPT(36) \
379 DECLARE_INTERRUPT(37) \
380 DECLARE_INTERRUPT(38) \
381 DECLARE_INTERRUPT(39) \
382 DECLARE_INTERRUPT(40) \
383 DECLARE_INTERRUPT(41) \
384 DECLARE_INTERRUPT(42) \
385 DECLARE_INTERRUPT(43) \
386 DECLARE_INTERRUPT(44) \
387 DECLARE_INTERRUPT(45) \
388 DECLARE_INTERRUPT(46) \
389 DECLARE_INTERRUPT(47) \
390 DECLARE_INTERRUPT(48) \
391 DECLARE_INTERRUPT(49) \
392 DECLARE_INTERRUPT(50) \
393 DECLARE_INTERRUPT(51) \
394 DECLARE_INTERRUPT(52) \
395 DECLARE_INTERRUPT(53) \
396 DECLARE_INTERRUPT(54) \
397 DECLARE_INTERRUPT(55) \
398 DECLARE_INTERRUPT(56) \
399 DECLARE_INTERRUPT(57) \
400 DECLARE_INTERRUPT(58) \
401 DECLARE_INTERRUPT(59) \
402 DECLARE_INTERRUPT(60) \
403 DECLARE_INTERRUPT(61) \
404 DECLARE_INTERRUPT(62) \
405 DECLARE_INTERRUPT(63) \
406 DECLARE_INTERRUPT(64) \
407 DECLARE_INTERRUPT(65) \
408 DECLARE_INTERRUPT(66) \
409 DECLARE_INTERRUPT(67) \
410 DECLARE_INTERRUPT(68) \
411 DECLARE_INTERRUPT(69) \
412 DECLARE_INTERRUPT(70) \
413 DECLARE_INTERRUPT(71) \
414 DECLARE_INTERRUPT(72) \
415 DECLARE_INTERRUPT(73) \
416 DECLARE_INTERRUPT(74) \
417 DECLARE_INTERRUPT(75) \
418 DECLARE_INTERRUPT(76) \
419 DECLARE_INTERRUPT(77) \
420 DECLARE_INTERRUPT(78) \
421 DECLARE_INTERRUPT(79) \
422 DECLARE_INTERRUPT(80) \
423 DECLARE_INTERRUPT(81) \
424 DECLARE_INTERRUPT(82) \
425 DECLARE_INTERRUPT(83) \
426 DECLARE_INTERRUPT(84) \
427 DECLARE_INTERRUPT(85) \
428 DECLARE_INTERRUPT(86) \
429 DECLARE_INTERRUPT(87) \
430 DECLARE_INTERRUPT(88) \
431 DECLARE_INTERRUPT(89) \
432 DECLARE_INTERRUPT(90) \
433 DECLARE_INTERRUPT(91) \
434 DECLARE_INTERRUPT(92) \
435 DECLARE_INTERRUPT(93) \
436 DECLARE_INTERRUPT(94) \
437 DECLARE_INTERRUPT(95) \
438 DECLARE_INTERRUPT(97) \
439 DECLARE_INTERRUPT(96) \
440 DECLARE_INTERRUPT(98) \
441 DECLARE_INTERRUPT(99) \
442 DECLARE_INTERRUPT(100) \
443 DECLARE_INTERRUPT(101) \
444 DECLARE_INTERRUPT(102) \
445 DECLARE_INTERRUPT(103) \
446 DECLARE_INTERRUPT(104) \
447 DECLARE_INTERRUPT(105) \
448 DECLARE_INTERRUPT(106) \
449 DECLARE_INTERRUPT(107) \
450 DECLARE_INTERRUPT(108) \
451 DECLARE_INTERRUPT(109) \
452 DECLARE_INTERRUPT(110) \
453 DECLARE_INTERRUPT(111) \
454 DECLARE_INTERRUPT(112) \
455 DECLARE_INTERRUPT(113) \
456 DECLARE_INTERRUPT(114) \
457 DECLARE_INTERRUPT(115) \
458 DECLARE_INTERRUPT(116) \
459 DECLARE_INTERRUPT(117) \
460 DECLARE_INTERRUPT(118) \
461 DECLARE_INTERRUPT(119) \
462 DECLARE_INTERRUPT(120) \
463 DECLARE_INTERRUPT(121) \
464 DECLARE_INTERRUPT(122) \
465 DECLARE_INTERRUPT(123) \
466 DECLARE_INTERRUPT(124) \
467 DECLARE_INTERRUPT(125) \
468 DECLARE_INTERRUPT(126) \
469 DECLARE_INTERRUPT(127) \
470 DECLARE_INTERRUPT(128) \
471 DECLARE_INTERRUPT(129) \
472 DECLARE_INTERRUPT(130) \
473 DECLARE_INTERRUPT(131) \
474 DECLARE_INTERRUPT(132) \
475 DECLARE_INTERRUPT(133) \
476 DECLARE_INTERRUPT(134) \
477 DECLARE_INTERRUPT(135) \
478 DECLARE_INTERRUPT(136) \
479 DECLARE_INTERRUPT(137) \
480 DECLARE_INTERRUPT(138) \
481 DECLARE_INTERRUPT(139) \
482 DECLARE_INTERRUPT(140) \
483 DECLARE_INTERRUPT(141) \
484 DECLARE_INTERRUPT(142) \
485 DECLARE_INTERRUPT(143) \
486 DECLARE_INTERRUPT(144) \
487 DECLARE_INTERRUPT(145) \
488 DECLARE_INTERRUPT(146) \
489 DECLARE_INTERRUPT(147) \
490 DECLARE_INTERRUPT(148) \
491 DECLARE_INTERRUPT(149) \
492 DECLARE_INTERRUPT(150) \
493 DECLARE_INTERRUPT(151) \
494 DECLARE_INTERRUPT(152) \
495 DECLARE_INTERRUPT(153) \
496 DECLARE_INTERRUPT(154) \
497 DECLARE_INTERRUPT(155) \
498 DECLARE_INTERRUPT(156) \
499 DECLARE_INTERRUPT(157) \
500 DECLARE_INTERRUPT(158) \
501 DECLARE_INTERRUPT(159) \
502 DECLARE_INTERRUPT(160) \
503 DECLARE_INTERRUPT(161) \
504 DECLARE_INTERRUPT(162) \
505 DECLARE_INTERRUPT(163) \
506 DECLARE_INTERRUPT(164) \
507 DECLARE_INTERRUPT(165) \
508 DECLARE_INTERRUPT(166) \
509 DECLARE_INTERRUPT(167) \
510 DECLARE_INTERRUPT(168) \
511 DECLARE_INTERRUPT(169) \
512 DECLARE_INTERRUPT(170) \
513 DECLARE_INTERRUPT(171) \
514 DECLARE_INTERRUPT(172) \
515 DECLARE_INTERRUPT(173) \
516 DECLARE_INTERRUPT(174) \
517 DECLARE_INTERRUPT(175) \
518 DECLARE_INTERRUPT(176) \
519 DECLARE_INTERRUPT(177) \
520 DECLARE_INTERRUPT(178) \
521 DECLARE_INTERRUPT(179) \
522 DECLARE_INTERRUPT(180) \
523 DECLARE_INTERRUPT(181) \
524 DECLARE_INTERRUPT(182) \
525 DECLARE_INTERRUPT(183) \
526 DECLARE_INTERRUPT(184) \
527 DECLARE_INTERRUPT(185) \
528 DECLARE_INTERRUPT(186) \
529 DECLARE_INTERRUPT(187) \
530 DECLARE_INTERRUPT(188) \
531 DECLARE_INTERRUPT(189) \
532 DECLARE_INTERRUPT(190) \
533 DECLARE_INTERRUPT(191) \
534 DECLARE_INTERRUPT(192) \
535 DECLARE_INTERRUPT(193) \
536 DECLARE_INTERRUPT(194) \
537 DECLARE_INTERRUPT(195) \
538 DECLARE_INTERRUPT(196) \
539 DECLARE_INTERRUPT(197) \
540 DECLARE_INTERRUPT(198) \
541 DECLARE_INTERRUPT(199) \
542 DECLARE_INTERRUPT(200) \
543 DECLARE_INTERRUPT(201) \
544 DECLARE_INTERRUPT(202) \
545 DECLARE_INTERRUPT(203) \
546 DECLARE_INTERRUPT(204) \
547 DECLARE_INTERRUPT(205) \
548 DECLARE_INTERRUPT(206) \
549 DECLARE_INTERRUPT(207) \
550 DECLARE_INTERRUPT(208) \
551 DECLARE_INTERRUPT(209) \
552 DECLARE_INTERRUPT(210) \
553 DECLARE_INTERRUPT(211) \
554 DECLARE_INTERRUPT(212) \
555 DECLARE_INTERRUPT(213) \
556 DECLARE_INTERRUPT(214) \
557 DECLARE_INTERRUPT(215) \
558 DECLARE_INTERRUPT(216) \
559 DECLARE_INTERRUPT(217) \
560 DECLARE_INTERRUPT(218) \
561 DECLARE_INTERRUPT(219) \
562 DECLARE_INTERRUPT(220) \
563 DECLARE_INTERRUPT(221) \
564 DECLARE_INTERRUPT(222) \
565 DECLARE_INTERRUPT(223) \
566 DECLARE_INTERRUPT(224) \
567 DECLARE_INTERRUPT(225) \
568 DECLARE_INTERRUPT(226) \
569 DECLARE_INTERRUPT(227) \
570 DECLARE_INTERRUPT(228) \
571 DECLARE_INTERRUPT(229) \
572 DECLARE_INTERRUPT(230) \
573 DECLARE_INTERRUPT(231) \
574 DECLARE_INTERRUPT(232) \
575 DECLARE_INTERRUPT(233) \
576 DECLARE_INTERRUPT(234) \
577 DECLARE_INTERRUPT(235) \
578 DECLARE_INTERRUPT(236) \
579 DECLARE_INTERRUPT(237) \
580 DECLARE_INTERRUPT(238) \
581 DECLARE_INTERRUPT(239) \
582 DECLARE_INTERRUPT(240) \
583 DECLARE_INTERRUPT(241) \
584 DECLARE_INTERRUPT(242) \
585 DECLARE_INTERRUPT(243) \
586 DECLARE_INTERRUPT(244) \
587 DECLARE_INTERRUPT(245) \
588 DECLARE_INTERRUPT(246) \
589 DECLARE_INTERRUPT(247) \
590 DECLARE_INTERRUPT(248) \
591 DECLARE_INTERRUPT(249) \
592 DECLARE_INTERRUPT(250) \
593 DECLARE_INTERRUPT(251) \
594 DECLARE_INTERRUPT(252) \
595 DECLARE_INTERRUPT(253) \
596 DECLARE_INTERRUPT(254) \
597 DECLARE_INTERRUPT(255));