]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/x86/cpu/interrupts.c
dm: Use uclass_first_device_err() where it is useful
[people/ms/u-boot.git] / arch / x86 / cpu / interrupts.c
CommitLineData
2262cfee 1/*
dbf7115a
GR
2 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
564a9984 4 *
2262cfee 5 * (C) Copyright 2002
fa82f871 6 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
2262cfee 7 *
433ff2bd
GR
8 * Portions of this file are derived from the Linux kernel source
9 * Copyright (C) 1991, 1992 Linus Torvalds
10 *
1a459660 11 * SPDX-License-Identifier: GPL-2.0+
2262cfee
WD
12 */
13
14#include <common.h>
12d6929e 15#include <dm.h>
095593c0
SR
16#include <asm/cache.h>
17#include <asm/control_regs.h>
9933d609 18#include <asm/interrupt.h>
ca56a4ce 19#include <asm/io.h>
0c24c9cc 20#include <asm/processor-flags.h>
717979fd 21#include <linux/compiler.h>
7c71034d 22#include <asm/msr.h>
8aba36d8 23#include <asm/processor.h>
7c71034d 24#include <asm/u-boot-x86.h>
1dae2e0e 25#include <asm/i8259.h>
2262cfee 26
7282d834
SG
27DECLARE_GLOBAL_DATA_PTR;
28
564a9984
GR
29#define DECLARE_INTERRUPT(x) \
30 ".globl irq_"#x"\n" \
0fc1b49e
GR
31 ".hidden irq_"#x"\n" \
32 ".type irq_"#x", @function\n" \
564a9984 33 "irq_"#x":\n" \
564a9984
GR
34 "pushl $"#x"\n" \
35 "jmp irq_common_entry\n"
2262cfee 36
3ccd49ca
BM
37static char *exceptions[] = {
38 "Divide Error",
39 "Debug",
40 "NMI Interrupt",
41 "Breakpoint",
42 "Overflow",
43 "BOUND Range Exceeded",
44 "Invalid Opcode (Undefined Opcode)",
45 "Device Not Avaiable (No Math Coprocessor)",
46 "Double Fault",
47 "Coprocessor Segment Overrun",
48 "Invalid TSS",
49 "Segment Not Present",
50 "Stack Segment Fault",
8aba36d8 51 "General Protection",
3ccd49ca
BM
52 "Page Fault",
53 "Reserved",
54 "x87 FPU Floating-Point Error",
55 "Alignment Check",
56 "Machine Check",
57 "SIMD Floating-Point Exception",
58 "Virtualization Exception",
59 "Reserved",
60 "Reserved",
61 "Reserved",
62 "Reserved",
63 "Reserved",
64 "Reserved",
65 "Reserved",
66 "Reserved",
67 "Reserved",
68 "Reserved",
69 "Reserved"
70};
71
e1ffd817 72static void dump_regs(struct irq_regs *regs)
433ff2bd 73{
013cf483 74 unsigned long cs, eip, eflags;
433ff2bd
GR
75 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
76 unsigned long d0, d1, d2, d3, d6, d7;
ca56a4ce 77 unsigned long sp;
433ff2bd 78
013cf483
BM
79 /*
80 * Some exceptions cause an error code to be saved on the current stack
81 * after the EIP value. We should extract CS/EIP/EFLAGS from different
82 * position on the stack based on the exception number.
83 */
84 switch (regs->irq_id) {
85 case EXC_DF:
86 case EXC_TS:
87 case EXC_NP:
88 case EXC_SS:
89 case EXC_GP:
90 case EXC_PF:
91 case EXC_AC:
92 cs = regs->context.ctx2.xcs;
93 eip = regs->context.ctx2.eip;
94 eflags = regs->context.ctx2.eflags;
95 /* We should fix up the ESP due to error code */
96 regs->esp += 4;
97 break;
98 default:
99 cs = regs->context.ctx1.xcs;
100 eip = regs->context.ctx1.eip;
101 eflags = regs->context.ctx1.eflags;
102 break;
103 }
104
433ff2bd 105 printf("EIP: %04x:[<%08lx>] EFLAGS: %08lx\n",
013cf483 106 (u16)cs, eip, eflags);
7399515d
SG
107 if (gd->flags & GD_FLG_RELOC)
108 printf("Original EIP :[<%08lx>]\n", eip - gd->reloc_off);
433ff2bd
GR
109
110 printf("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
111 regs->eax, regs->ebx, regs->ecx, regs->edx);
112 printf("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
113 regs->esi, regs->edi, regs->ebp, regs->esp);
114 printf(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n",
717979fd
GR
115 (u16)regs->xds, (u16)regs->xes, (u16)regs->xfs,
116 (u16)regs->xgs, (u16)regs->xss);
433ff2bd
GR
117
118 cr0 = read_cr0();
119 cr2 = read_cr2();
120 cr3 = read_cr3();
121 cr4 = read_cr4();
122
123 printf("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n",
124 cr0, cr2, cr3, cr4);
125
126 d0 = get_debugreg(0);
127 d1 = get_debugreg(1);
128 d2 = get_debugreg(2);
129 d3 = get_debugreg(3);
130
131 printf("DR0: %08lx DR1: %08lx DR2: %08lx DR3: %08lx\n",
132 d0, d1, d2, d3);
133
134 d6 = get_debugreg(6);
135 d7 = get_debugreg(7);
136 printf("DR6: %08lx DR7: %08lx\n",
137 d6, d7);
ca56a4ce
GR
138
139 printf("Stack:\n");
140 sp = regs->esp;
141
142 sp += 64;
143
144 while (sp > (regs->esp - 16)) {
145 if (sp == regs->esp)
146 printf("--->");
147 else
148 printf(" ");
149 printf("0x%8.8lx : 0x%8.8lx\n", sp, (ulong)readl(sp));
150 sp -= 4;
151 }
433ff2bd
GR
152}
153
3ccd49ca
BM
154static void do_exception(struct irq_regs *regs)
155{
156 printf("%s\n", exceptions[regs->irq_id]);
157 dump_regs(regs);
158 hang();
159}
160
2262cfee
WD
161struct idt_entry {
162 u16 base_low;
163 u16 selector;
164 u8 res;
165 u8 access;
166 u16 base_high;
717979fd 167} __packed;
2262cfee 168
564a9984
GR
169struct desc_ptr {
170 unsigned short size;
171 unsigned long address;
717979fd 172} __packed;
2262cfee 173
58c7a675 174struct idt_entry idt[256] __aligned(16);
2262cfee 175
564a9984 176struct desc_ptr idt_ptr;
2262cfee 177
564a9984
GR
178static inline void load_idt(const struct desc_ptr *dtr)
179{
717979fd 180 asm volatile("cs lidt %0" : : "m" (*dtr));
564a9984 181}
2262cfee 182
abf0cd3d 183void set_vector(u8 intnum, void *routine)
2262cfee 184{
1c409bc7
GR
185 idt[intnum].base_high = (u16)((u32)(routine) >> 16);
186 idt[intnum].base_low = (u16)((u32)(routine) & 0xffff);
2262cfee
WD
187}
188
717979fd
GR
189/*
190 * Ideally these would be defined static to avoid a checkpatch warning, but
191 * the compiler cannot see them in the inline asm and complains that they
192 * aren't defined
193 */
564a9984
GR
194void irq_0(void);
195void irq_1(void);
2262cfee 196
abf0cd3d 197int cpu_init_interrupts(void)
2262cfee
WD
198{
199 int i;
8bde7f77 200
564a9984
GR
201 int irq_entry_size = irq_1 - irq_0;
202 void *irq_entry = (void *)irq_0;
203
2262cfee 204 /* Setup the IDT */
717979fd 205 for (i = 0; i < 256; i++) {
2262cfee 206 idt[i].access = 0x8e;
8bde7f77 207 idt[i].res = 0;
8aba36d8 208 idt[i].selector = X86_GDT_ENTRY_32BIT_CS * X86_GDT_ENTRY_SIZE;
564a9984
GR
209 set_vector(i, irq_entry);
210 irq_entry += irq_entry_size;
8bde7f77
WD
211 }
212
8aba36d8 213 idt_ptr.size = 256 * 8 - 1;
564a9984 214 idt_ptr.address = (unsigned long) idt;
564a9984
GR
215
216 load_idt(&idt_ptr);
8bde7f77 217
2262cfee
WD
218 return 0;
219}
220
6f41e0e7
SG
221void *x86_get_idt(void)
222{
223 return &idt_ptr;
224}
225
564a9984
GR
226void __do_irq(int irq)
227{
228 printf("Unhandled IRQ : %d\n", irq);
229}
230void do_irq(int irq) __attribute__((weak, alias("__do_irq")));
231
2262cfee
WD
232void enable_interrupts(void)
233{
234 asm("sti\n");
235}
236
237int disable_interrupts(void)
238{
239 long flags;
8bde7f77 240
2262cfee 241 asm volatile ("pushfl ; popl %0 ; cli\n" : "=g" (flags) : );
8bde7f77 242
717979fd 243 return flags & X86_EFLAGS_IF;
2262cfee 244}
564a9984 245
1dae2e0e
BM
246int interrupt_init(void)
247{
12d6929e
SG
248 struct udevice *dev;
249 int ret;
250
251 /* Try to set up the interrupt router, but don't require one */
3f603cbb 252 ret = uclass_first_device_err(UCLASS_IRQ, &dev);
12d6929e
SG
253 if (ret && ret != -ENODEV)
254 return ret;
255
3dcdd17b
BS
256 /*
257 * When running as an EFI application we are not in control of
258 * interrupts and should leave them alone.
259 */
260#ifndef CONFIG_EFI_APP
1dae2e0e
BM
261 /* Just in case... */
262 disable_interrupts();
263
da3fe247 264#ifdef CONFIG_I8259_PIC
1dae2e0e
BM
265 /* Initialize the master/slave i8259 pic */
266 i8259_init();
267#endif
268
269 /* Initialize core interrupt and exception functionality of CPU */
270 cpu_init_interrupts();
271
e49cceac
SG
272 /*
273 * It is now safe to enable interrupts.
274 *
275 * TODO(sjg@chromium.org): But we don't handle these correctly when
276 * booted from EFI.
277 */
278 if (ll_boot_init())
279 enable_interrupts();
3dcdd17b 280#endif
1dae2e0e
BM
281
282 return 0;
283}
284
564a9984 285/* IRQ Low-Level Service Routine */
7228efa3 286void irq_llsr(struct irq_regs *regs)
564a9984
GR
287{
288 /*
289 * For detailed description of each exception, refer to:
fa82f871 290 * Intel® 64 and IA-32 Architectures Software Developer's Manual
564a9984
GR
291 * Volume 1: Basic Architecture
292 * Order Number: 253665-029US, November 2008
293 * Table 6-1. Exceptions and Interrupts
294 */
3ccd49ca
BM
295 if (regs->irq_id < 32) {
296 /* Architecture defined exception */
297 do_exception(regs);
298 } else {
564a9984 299 /* Hardware or User IRQ */
7228efa3 300 do_irq(regs->irq_id);
564a9984
GR
301 }
302}
303
304/*
305 * OK - This looks really horrible, but it serves a purpose - It helps create
306 * fully relocatable code.
307 * - The call to irq_llsr will be a relative jump
308 * - The IRQ entries will be guaranteed to be in order
433ff2bd
GR
309 * Interrupt entries are now very small (a push and a jump) but they are
310 * now slower (all registers pushed on stack which provides complete
311 * crash dumps in the low level handlers
7228efa3
GR
312 *
313 * Interrupt Entry Point:
314 * - Interrupt has caused eflags, CS and EIP to be pushed
315 * - Interrupt Vector Handler has pushed orig_eax
316 * - pt_regs.esp needs to be adjusted by 40 bytes:
317 * 12 bytes pushed by CPU (EFLAGSF, CS, EIP)
318 * 4 bytes pushed by vector handler (irq_id)
319 * 24 bytes pushed before SP (SS, GS, FS, ES, DS, EAX)
320 * NOTE: Only longs are pushed on/popped off the stack!
564a9984
GR
321 */
322asm(".globl irq_common_entry\n" \
0fc1b49e
GR
323 ".hidden irq_common_entry\n" \
324 ".type irq_common_entry, @function\n" \
564a9984 325 "irq_common_entry:\n" \
433ff2bd 326 "cld\n" \
7228efa3 327 "pushl %ss\n" \
433ff2bd
GR
328 "pushl %gs\n" \
329 "pushl %fs\n" \
330 "pushl %es\n" \
331 "pushl %ds\n" \
332 "pushl %eax\n" \
7228efa3
GR
333 "movl %esp, %eax\n" \
334 "addl $40, %eax\n" \
335 "pushl %eax\n" \
433ff2bd
GR
336 "pushl %ebp\n" \
337 "pushl %edi\n" \
338 "pushl %esi\n" \
339 "pushl %edx\n" \
340 "pushl %ecx\n" \
341 "pushl %ebx\n" \
342 "mov %esp, %eax\n" \
564a9984 343 "call irq_llsr\n" \
433ff2bd
GR
344 "popl %ebx\n" \
345 "popl %ecx\n" \
346 "popl %edx\n" \
347 "popl %esi\n" \
348 "popl %edi\n" \
349 "popl %ebp\n" \
350 "popl %eax\n" \
7228efa3 351 "popl %eax\n" \
433ff2bd
GR
352 "popl %ds\n" \
353 "popl %es\n" \
354 "popl %fs\n" \
355 "popl %gs\n" \
7228efa3 356 "popl %ss\n" \
433ff2bd 357 "add $4, %esp\n" \
564a9984
GR
358 "iret\n" \
359 DECLARE_INTERRUPT(0) \
360 DECLARE_INTERRUPT(1) \
361 DECLARE_INTERRUPT(2) \
362 DECLARE_INTERRUPT(3) \
363 DECLARE_INTERRUPT(4) \
364 DECLARE_INTERRUPT(5) \
365 DECLARE_INTERRUPT(6) \
366 DECLARE_INTERRUPT(7) \
367 DECLARE_INTERRUPT(8) \
368 DECLARE_INTERRUPT(9) \
369 DECLARE_INTERRUPT(10) \
370 DECLARE_INTERRUPT(11) \
371 DECLARE_INTERRUPT(12) \
372 DECLARE_INTERRUPT(13) \
373 DECLARE_INTERRUPT(14) \
374 DECLARE_INTERRUPT(15) \
375 DECLARE_INTERRUPT(16) \
376 DECLARE_INTERRUPT(17) \
377 DECLARE_INTERRUPT(18) \
378 DECLARE_INTERRUPT(19) \
379 DECLARE_INTERRUPT(20) \
380 DECLARE_INTERRUPT(21) \
381 DECLARE_INTERRUPT(22) \
382 DECLARE_INTERRUPT(23) \
383 DECLARE_INTERRUPT(24) \
384 DECLARE_INTERRUPT(25) \
385 DECLARE_INTERRUPT(26) \
386 DECLARE_INTERRUPT(27) \
387 DECLARE_INTERRUPT(28) \
388 DECLARE_INTERRUPT(29) \
389 DECLARE_INTERRUPT(30) \
390 DECLARE_INTERRUPT(31) \
391 DECLARE_INTERRUPT(32) \
392 DECLARE_INTERRUPT(33) \
393 DECLARE_INTERRUPT(34) \
394 DECLARE_INTERRUPT(35) \
395 DECLARE_INTERRUPT(36) \
396 DECLARE_INTERRUPT(37) \
397 DECLARE_INTERRUPT(38) \
398 DECLARE_INTERRUPT(39) \
399 DECLARE_INTERRUPT(40) \
400 DECLARE_INTERRUPT(41) \
401 DECLARE_INTERRUPT(42) \
402 DECLARE_INTERRUPT(43) \
403 DECLARE_INTERRUPT(44) \
404 DECLARE_INTERRUPT(45) \
405 DECLARE_INTERRUPT(46) \
406 DECLARE_INTERRUPT(47) \
407 DECLARE_INTERRUPT(48) \
408 DECLARE_INTERRUPT(49) \
409 DECLARE_INTERRUPT(50) \
410 DECLARE_INTERRUPT(51) \
411 DECLARE_INTERRUPT(52) \
412 DECLARE_INTERRUPT(53) \
413 DECLARE_INTERRUPT(54) \
414 DECLARE_INTERRUPT(55) \
415 DECLARE_INTERRUPT(56) \
416 DECLARE_INTERRUPT(57) \
417 DECLARE_INTERRUPT(58) \
418 DECLARE_INTERRUPT(59) \
419 DECLARE_INTERRUPT(60) \
420 DECLARE_INTERRUPT(61) \
421 DECLARE_INTERRUPT(62) \
422 DECLARE_INTERRUPT(63) \
423 DECLARE_INTERRUPT(64) \
424 DECLARE_INTERRUPT(65) \
425 DECLARE_INTERRUPT(66) \
426 DECLARE_INTERRUPT(67) \
427 DECLARE_INTERRUPT(68) \
428 DECLARE_INTERRUPT(69) \
429 DECLARE_INTERRUPT(70) \
430 DECLARE_INTERRUPT(71) \
431 DECLARE_INTERRUPT(72) \
432 DECLARE_INTERRUPT(73) \
433 DECLARE_INTERRUPT(74) \
434 DECLARE_INTERRUPT(75) \
435 DECLARE_INTERRUPT(76) \
436 DECLARE_INTERRUPT(77) \
437 DECLARE_INTERRUPT(78) \
438 DECLARE_INTERRUPT(79) \
439 DECLARE_INTERRUPT(80) \
440 DECLARE_INTERRUPT(81) \
441 DECLARE_INTERRUPT(82) \
442 DECLARE_INTERRUPT(83) \
443 DECLARE_INTERRUPT(84) \
444 DECLARE_INTERRUPT(85) \
445 DECLARE_INTERRUPT(86) \
446 DECLARE_INTERRUPT(87) \
447 DECLARE_INTERRUPT(88) \
448 DECLARE_INTERRUPT(89) \
449 DECLARE_INTERRUPT(90) \
450 DECLARE_INTERRUPT(91) \
451 DECLARE_INTERRUPT(92) \
452 DECLARE_INTERRUPT(93) \
453 DECLARE_INTERRUPT(94) \
454 DECLARE_INTERRUPT(95) \
455 DECLARE_INTERRUPT(97) \
456 DECLARE_INTERRUPT(96) \
457 DECLARE_INTERRUPT(98) \
458 DECLARE_INTERRUPT(99) \
459 DECLARE_INTERRUPT(100) \
460 DECLARE_INTERRUPT(101) \
461 DECLARE_INTERRUPT(102) \
462 DECLARE_INTERRUPT(103) \
463 DECLARE_INTERRUPT(104) \
464 DECLARE_INTERRUPT(105) \
465 DECLARE_INTERRUPT(106) \
466 DECLARE_INTERRUPT(107) \
467 DECLARE_INTERRUPT(108) \
468 DECLARE_INTERRUPT(109) \
469 DECLARE_INTERRUPT(110) \
470 DECLARE_INTERRUPT(111) \
471 DECLARE_INTERRUPT(112) \
472 DECLARE_INTERRUPT(113) \
473 DECLARE_INTERRUPT(114) \
474 DECLARE_INTERRUPT(115) \
475 DECLARE_INTERRUPT(116) \
476 DECLARE_INTERRUPT(117) \
477 DECLARE_INTERRUPT(118) \
478 DECLARE_INTERRUPT(119) \
479 DECLARE_INTERRUPT(120) \
480 DECLARE_INTERRUPT(121) \
481 DECLARE_INTERRUPT(122) \
482 DECLARE_INTERRUPT(123) \
483 DECLARE_INTERRUPT(124) \
484 DECLARE_INTERRUPT(125) \
485 DECLARE_INTERRUPT(126) \
486 DECLARE_INTERRUPT(127) \
487 DECLARE_INTERRUPT(128) \
488 DECLARE_INTERRUPT(129) \
489 DECLARE_INTERRUPT(130) \
490 DECLARE_INTERRUPT(131) \
491 DECLARE_INTERRUPT(132) \
492 DECLARE_INTERRUPT(133) \
493 DECLARE_INTERRUPT(134) \
494 DECLARE_INTERRUPT(135) \
495 DECLARE_INTERRUPT(136) \
496 DECLARE_INTERRUPT(137) \
497 DECLARE_INTERRUPT(138) \
498 DECLARE_INTERRUPT(139) \
499 DECLARE_INTERRUPT(140) \
500 DECLARE_INTERRUPT(141) \
501 DECLARE_INTERRUPT(142) \
502 DECLARE_INTERRUPT(143) \
503 DECLARE_INTERRUPT(144) \
504 DECLARE_INTERRUPT(145) \
505 DECLARE_INTERRUPT(146) \
506 DECLARE_INTERRUPT(147) \
507 DECLARE_INTERRUPT(148) \
508 DECLARE_INTERRUPT(149) \
509 DECLARE_INTERRUPT(150) \
510 DECLARE_INTERRUPT(151) \
511 DECLARE_INTERRUPT(152) \
512 DECLARE_INTERRUPT(153) \
513 DECLARE_INTERRUPT(154) \
514 DECLARE_INTERRUPT(155) \
515 DECLARE_INTERRUPT(156) \
516 DECLARE_INTERRUPT(157) \
517 DECLARE_INTERRUPT(158) \
518 DECLARE_INTERRUPT(159) \
519 DECLARE_INTERRUPT(160) \
520 DECLARE_INTERRUPT(161) \
521 DECLARE_INTERRUPT(162) \
522 DECLARE_INTERRUPT(163) \
523 DECLARE_INTERRUPT(164) \
524 DECLARE_INTERRUPT(165) \
525 DECLARE_INTERRUPT(166) \
526 DECLARE_INTERRUPT(167) \
527 DECLARE_INTERRUPT(168) \
528 DECLARE_INTERRUPT(169) \
529 DECLARE_INTERRUPT(170) \
530 DECLARE_INTERRUPT(171) \
531 DECLARE_INTERRUPT(172) \
532 DECLARE_INTERRUPT(173) \
533 DECLARE_INTERRUPT(174) \
534 DECLARE_INTERRUPT(175) \
535 DECLARE_INTERRUPT(176) \
536 DECLARE_INTERRUPT(177) \
537 DECLARE_INTERRUPT(178) \
538 DECLARE_INTERRUPT(179) \
539 DECLARE_INTERRUPT(180) \
540 DECLARE_INTERRUPT(181) \
541 DECLARE_INTERRUPT(182) \
542 DECLARE_INTERRUPT(183) \
543 DECLARE_INTERRUPT(184) \
544 DECLARE_INTERRUPT(185) \
545 DECLARE_INTERRUPT(186) \
546 DECLARE_INTERRUPT(187) \
547 DECLARE_INTERRUPT(188) \
548 DECLARE_INTERRUPT(189) \
549 DECLARE_INTERRUPT(190) \
550 DECLARE_INTERRUPT(191) \
551 DECLARE_INTERRUPT(192) \
552 DECLARE_INTERRUPT(193) \
553 DECLARE_INTERRUPT(194) \
554 DECLARE_INTERRUPT(195) \
555 DECLARE_INTERRUPT(196) \
556 DECLARE_INTERRUPT(197) \
557 DECLARE_INTERRUPT(198) \
558 DECLARE_INTERRUPT(199) \
559 DECLARE_INTERRUPT(200) \
560 DECLARE_INTERRUPT(201) \
561 DECLARE_INTERRUPT(202) \
562 DECLARE_INTERRUPT(203) \
563 DECLARE_INTERRUPT(204) \
564 DECLARE_INTERRUPT(205) \
565 DECLARE_INTERRUPT(206) \
566 DECLARE_INTERRUPT(207) \
567 DECLARE_INTERRUPT(208) \
568 DECLARE_INTERRUPT(209) \
569 DECLARE_INTERRUPT(210) \
570 DECLARE_INTERRUPT(211) \
571 DECLARE_INTERRUPT(212) \
572 DECLARE_INTERRUPT(213) \
573 DECLARE_INTERRUPT(214) \
574 DECLARE_INTERRUPT(215) \
575 DECLARE_INTERRUPT(216) \
576 DECLARE_INTERRUPT(217) \
577 DECLARE_INTERRUPT(218) \
578 DECLARE_INTERRUPT(219) \
579 DECLARE_INTERRUPT(220) \
580 DECLARE_INTERRUPT(221) \
581 DECLARE_INTERRUPT(222) \
582 DECLARE_INTERRUPT(223) \
583 DECLARE_INTERRUPT(224) \
584 DECLARE_INTERRUPT(225) \
585 DECLARE_INTERRUPT(226) \
586 DECLARE_INTERRUPT(227) \
587 DECLARE_INTERRUPT(228) \
588 DECLARE_INTERRUPT(229) \
589 DECLARE_INTERRUPT(230) \
590 DECLARE_INTERRUPT(231) \
591 DECLARE_INTERRUPT(232) \
592 DECLARE_INTERRUPT(233) \
593 DECLARE_INTERRUPT(234) \
594 DECLARE_INTERRUPT(235) \
595 DECLARE_INTERRUPT(236) \
596 DECLARE_INTERRUPT(237) \
597 DECLARE_INTERRUPT(238) \
598 DECLARE_INTERRUPT(239) \
599 DECLARE_INTERRUPT(240) \
600 DECLARE_INTERRUPT(241) \
601 DECLARE_INTERRUPT(242) \
602 DECLARE_INTERRUPT(243) \
603 DECLARE_INTERRUPT(244) \
604 DECLARE_INTERRUPT(245) \
605 DECLARE_INTERRUPT(246) \
606 DECLARE_INTERRUPT(247) \
607 DECLARE_INTERRUPT(248) \
608 DECLARE_INTERRUPT(249) \
609 DECLARE_INTERRUPT(250) \
610 DECLARE_INTERRUPT(251) \
611 DECLARE_INTERRUPT(252) \
612 DECLARE_INTERRUPT(253) \
613 DECLARE_INTERRUPT(254) \
614 DECLARE_INTERRUPT(255));