[a7fdfe1] | 1 | /*
|
---|
[973be64e] | 2 | * Copyright (C) 2005 Ondrej Palkovsky
|
---|
[a7fdfe1] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[cf26ba9] | 29 | /**
|
---|
| 30 | * @file interrupt.c
|
---|
| 31 | * @brief Interrupt redirector.
|
---|
| 32 | *
|
---|
| 33 | * This file provides means of registering interrupt handlers
|
---|
| 34 | * by kernel functions and calling the handlers when interrupts
|
---|
| 35 | * occur.
|
---|
| 36 | */
|
---|
| 37 |
|
---|
[973be64e] | 38 | #include <interrupt.h>
|
---|
| 39 | #include <debug.h>
|
---|
[aace6624] | 40 | #include <console/kconsole.h>
|
---|
| 41 | #include <console/console.h>
|
---|
| 42 | #include <console/chardev.h>
|
---|
[0132630] | 43 | #include <console/cmd.h>
|
---|
[aace6624] | 44 | #include <panic.h>
|
---|
| 45 | #include <print.h>
|
---|
| 46 | #include <symtab.h>
|
---|
[a7fdfe1] | 47 |
|
---|
[973be64e] | 48 | static struct {
|
---|
[aace6624] | 49 | const char *name;
|
---|
[973be64e] | 50 | iroutine f;
|
---|
[aace6624] | 51 | } exc_table[IVT_ITEMS];
|
---|
[a7fdfe1] | 52 |
|
---|
[dc747e3] | 53 | SPINLOCK_INITIALIZE(exctbl_lock);
|
---|
[aace6624] | 54 |
|
---|
| 55 | /** Register exception handler
|
---|
| 56 | *
|
---|
| 57 | * @param n Exception number
|
---|
| 58 | * @param name Description
|
---|
| 59 | * @param f Exception handler
|
---|
| 60 | */
|
---|
| 61 | iroutine exc_register(int n, const char *name, iroutine f)
|
---|
[973be64e] | 62 | {
|
---|
| 63 | ASSERT(n < IVT_ITEMS);
|
---|
| 64 |
|
---|
| 65 | iroutine old;
|
---|
| 66 |
|
---|
[aace6624] | 67 | spinlock_lock(&exctbl_lock);
|
---|
| 68 |
|
---|
| 69 | old = exc_table[n].f;
|
---|
| 70 | exc_table[n].f = f;
|
---|
| 71 | exc_table[n].name = name;
|
---|
| 72 |
|
---|
| 73 | spinlock_unlock(&exctbl_lock);
|
---|
| 74 |
|
---|
[973be64e] | 75 | return old;
|
---|
| 76 | }
|
---|
[a7fdfe1] | 77 |
|
---|
[aace6624] | 78 | /** Dispatch exception according to exception table
|
---|
| 79 | *
|
---|
[973be64e] | 80 | * Called directly from the assembler code.
|
---|
| 81 | * CPU is interrupts_disable()'d.
|
---|
| 82 | */
|
---|
[25d7709] | 83 | void exc_dispatch(int n, istate_t *istate)
|
---|
[973be64e] | 84 | {
|
---|
| 85 | ASSERT(n < IVT_ITEMS);
|
---|
| 86 |
|
---|
[25d7709] | 87 | exc_table[n].f(n + IVT_FIRST, istate);
|
---|
[aace6624] | 88 | }
|
---|
| 89 |
|
---|
| 90 | /** Default 'null' exception handler */
|
---|
[25d7709] | 91 | static void exc_undef(int n, istate_t *istate)
|
---|
[aace6624] | 92 | {
|
---|
| 93 | panic("Unhandled exception %d.", n);
|
---|
| 94 | }
|
---|
| 95 |
|
---|
[39494010] | 96 | /** kconsole cmd - print all exceptions */
|
---|
[aace6624] | 97 | static int exc_print_cmd(cmd_arg_t *argv)
|
---|
| 98 | {
|
---|
| 99 | int i;
|
---|
| 100 | char *symbol;
|
---|
| 101 |
|
---|
| 102 | spinlock_lock(&exctbl_lock);
|
---|
[6e716a59] | 103 | printf("Exc Description Handler\n");
|
---|
[aace6624] | 104 | for (i=0; i < IVT_ITEMS; i++) {
|
---|
| 105 | symbol = get_symtab_entry((__native)exc_table[i].f);
|
---|
| 106 | if (!symbol)
|
---|
| 107 | symbol = "not found";
|
---|
[ad45bde9] | 108 | printf("%d %s %.*p(%s)\n", i + IVT_FIRST, exc_table[i].name,
|
---|
| 109 | sizeof(__address) * 2, exc_table[i].f,symbol);
|
---|
[aace6624] | 110 | if (!((i+1) % 20)) {
|
---|
| 111 | printf("Press any key to continue.");
|
---|
[402fc8bf] | 112 | spinlock_unlock(&exctbl_lock);
|
---|
[aace6624] | 113 | getc(stdin);
|
---|
[402fc8bf] | 114 | spinlock_lock(&exctbl_lock);
|
---|
[aace6624] | 115 | printf("\n");
|
---|
| 116 | }
|
---|
| 117 | }
|
---|
| 118 | spinlock_unlock(&exctbl_lock);
|
---|
| 119 |
|
---|
| 120 | return 1;
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | static cmd_info_t exc_info = {
|
---|
[0132630] | 124 | .name = "exc",
|
---|
[adb2ebf8] | 125 | .description = "Print exception table.",
|
---|
[aace6624] | 126 | .func = exc_print_cmd,
|
---|
| 127 | .help = NULL,
|
---|
| 128 | .argc = 0,
|
---|
| 129 | .argv = NULL
|
---|
| 130 | };
|
---|
| 131 |
|
---|
| 132 | /** Initialize generic exception handling support */
|
---|
| 133 | void exc_init(void)
|
---|
| 134 | {
|
---|
| 135 | int i;
|
---|
| 136 |
|
---|
| 137 | for (i=0;i < IVT_ITEMS; i++)
|
---|
[25d7709] | 138 | exc_register(i, "undef", (iroutine) exc_undef);
|
---|
[aace6624] | 139 |
|
---|
[0132630] | 140 | cmd_initialize(&exc_info);
|
---|
[aace6624] | 141 | if (!cmd_register(&exc_info))
|
---|
| 142 | panic("could not register command %s\n", exc_info.name);
|
---|
[973be64e] | 143 | }
|
---|
[aace6624] | 144 |
|
---|