Rev 3742 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 575 | palkovsky | 1 | /* |
| 2071 | jermar | 2 | * Copyright (c) 2005 Ondrej Palkovsky |
| 575 | palkovsky | 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 | |||
| 1757 | jermar | 29 | /** @addtogroup genericinterrupt |
| 1702 | cejka | 30 | * @{ |
| 31 | */ |
||
| 1264 | jermar | 32 | /** |
| 1702 | cejka | 33 | * @file |
| 1264 | jermar | 34 | * @brief Interrupt redirector. |
| 35 | * |
||
| 36 | * This file provides means of registering interrupt handlers |
||
| 37 | * by kernel functions and calling the handlers when interrupts |
||
| 38 | * occur. |
||
| 39 | */ |
||
| 40 | |||
| 575 | palkovsky | 41 | #include <interrupt.h> |
| 42 | #include <debug.h> |
||
| 578 | palkovsky | 43 | #include <console/kconsole.h> |
| 44 | #include <console/console.h> |
||
| 45 | #include <console/chardev.h> |
||
| 673 | jermar | 46 | #include <console/cmd.h> |
| 578 | palkovsky | 47 | #include <panic.h> |
| 48 | #include <print.h> |
||
| 49 | #include <symtab.h> |
||
| 3862 | rimsky | 50 | #include <arch/asm.h> |
| 575 | palkovsky | 51 | |
| 52 | static struct { |
||
| 578 | palkovsky | 53 | const char *name; |
| 575 | palkovsky | 54 | iroutine f; |
| 578 | palkovsky | 55 | } exc_table[IVT_ITEMS]; |
| 575 | palkovsky | 56 | |
| 623 | jermar | 57 | SPINLOCK_INITIALIZE(exctbl_lock); |
| 578 | palkovsky | 58 | |
| 59 | /** Register exception handler |
||
| 60 | * |
||
| 61 | * @param n Exception number |
||
| 62 | * @param name Description |
||
| 63 | * @param f Exception handler |
||
| 64 | */ |
||
| 65 | iroutine exc_register(int n, const char *name, iroutine f) |
||
| 575 | palkovsky | 66 | { |
| 67 | ASSERT(n < IVT_ITEMS); |
||
| 68 | |||
| 69 | iroutine old; |
||
| 70 | |||
| 578 | palkovsky | 71 | spinlock_lock(&exctbl_lock); |
| 72 | |||
| 73 | old = exc_table[n].f; |
||
| 74 | exc_table[n].f = f; |
||
| 75 | exc_table[n].name = name; |
||
| 76 | |||
| 77 | spinlock_unlock(&exctbl_lock); |
||
| 78 | |||
| 575 | palkovsky | 79 | return old; |
| 80 | } |
||
| 81 | |||
| 578 | palkovsky | 82 | /** Dispatch exception according to exception table |
| 83 | * |
||
| 575 | palkovsky | 84 | * Called directly from the assembler code. |
| 85 | * CPU is interrupts_disable()'d. |
||
| 86 | */ |
||
| 958 | jermar | 87 | void exc_dispatch(int n, istate_t *istate) |
| 575 | palkovsky | 88 | { |
| 89 | ASSERT(n < IVT_ITEMS); |
||
| 3665 | rimsky | 90 | |
| 91 | #ifdef CONFIG_UDEBUG |
||
| 92 | if (THREAD) THREAD->udebug.uspace_state = istate; |
||
| 93 | #endif |
||
| 575 | palkovsky | 94 | |
| 958 | jermar | 95 | exc_table[n].f(n + IVT_FIRST, istate); |
| 3665 | rimsky | 96 | |
| 97 | #ifdef CONFIG_UDEBUG |
||
| 98 | if (THREAD) THREAD->udebug.uspace_state = NULL; |
||
| 99 | #endif |
||
| 100 | |||
| 1597 | palkovsky | 101 | /* This is a safe place to exit exiting thread */ |
| 102 | if (THREAD && THREAD->interrupted && istate_from_uspace(istate)) |
||
| 103 | thread_exit(); |
||
| 575 | palkovsky | 104 | } |
| 578 | palkovsky | 105 | |
| 106 | /** Default 'null' exception handler */ |
||
| 958 | jermar | 107 | static void exc_undef(int n, istate_t *istate) |
| 578 | palkovsky | 108 | { |
| 1595 | palkovsky | 109 | fault_if_from_uspace(istate, "Unhandled exception %d.", n); |
| 578 | palkovsky | 110 | panic("Unhandled exception %d.", n); |
| 111 | } |
||
| 112 | |||
| 3742 | rimsky | 113 | #ifdef CONFIG_KCONSOLE |
| 114 | |||
| 664 | jermar | 115 | /** kconsole cmd - print all exceptions */ |
| 3742 | rimsky | 116 | static int cmd_exc_print(cmd_arg_t *argv) |
| 578 | palkovsky | 117 | { |
| 2745 | decky | 118 | #if (IVT_ITEMS > 0) |
| 2712 | decky | 119 | unsigned int i; |
| 578 | palkovsky | 120 | char *symbol; |
| 121 | |||
| 122 | spinlock_lock(&exctbl_lock); |
||
| 3055 | decky | 123 | |
| 124 | #ifdef __32_BITS__ |
||
| 125 | printf("Exc Description Handler Symbol\n"); |
||
| 126 | printf("--- -------------------- ---------- --------\n"); |
||
| 127 | #endif |
||
| 128 | |||
| 129 | #ifdef __64_BITS__ |
||
| 130 | printf("Exc Description Handler Symbol\n"); |
||
| 131 | printf("--- -------------------- ------------------ --------\n"); |
||
| 132 | #endif |
||
| 2712 | decky | 133 | |
| 134 | for (i = 0; i < IVT_ITEMS; i++) { |
||
| 135 | symbol = get_symtab_entry((unative_t) exc_table[i].f); |
||
| 578 | palkovsky | 136 | if (!symbol) |
| 137 | symbol = "not found"; |
||
| 3055 | decky | 138 | |
| 139 | #ifdef __32_BITS__ |
||
| 140 | printf("%-3u %-20s %10p %s\n", i + IVT_FIRST, exc_table[i].name, |
||
| 141 | exc_table[i].f, symbol); |
||
| 142 | #endif |
||
| 143 | |||
| 144 | #ifdef __64_BITS__ |
||
| 145 | printf("%-3u %-20s %18p %s\n", i + IVT_FIRST, exc_table[i].name, |
||
| 146 | exc_table[i].f, symbol); |
||
| 147 | #endif |
||
| 2712 | decky | 148 | |
| 149 | if (((i + 1) % 20) == 0) { |
||
| 150 | printf(" -- Press any key to continue -- "); |
||
| 579 | palkovsky | 151 | spinlock_unlock(&exctbl_lock); |
| 578 | palkovsky | 152 | getc(stdin); |
| 579 | palkovsky | 153 | spinlock_lock(&exctbl_lock); |
| 578 | palkovsky | 154 | printf("\n"); |
| 155 | } |
||
| 156 | } |
||
| 2712 | decky | 157 | |
| 578 | palkovsky | 158 | spinlock_unlock(&exctbl_lock); |
| 2745 | decky | 159 | #endif |
| 578 | palkovsky | 160 | |
| 161 | return 1; |
||
| 162 | } |
||
| 163 | |||
| 3742 | rimsky | 164 | |
| 578 | palkovsky | 165 | static cmd_info_t exc_info = { |
| 673 | jermar | 166 | .name = "exc", |
| 586 | jermar | 167 | .description = "Print exception table.", |
| 3742 | rimsky | 168 | .func = cmd_exc_print, |
| 578 | palkovsky | 169 | .help = NULL, |
| 170 | .argc = 0, |
||
| 171 | .argv = NULL |
||
| 172 | }; |
||
| 173 | |||
| 3742 | rimsky | 174 | #endif |
| 175 | |||
| 578 | palkovsky | 176 | /** Initialize generic exception handling support */ |
| 177 | void exc_init(void) |
||
| 178 | { |
||
| 179 | int i; |
||
| 180 | |||
| 3055 | decky | 181 | for (i = 0; i < IVT_ITEMS; i++) |
| 958 | jermar | 182 | exc_register(i, "undef", (iroutine) exc_undef); |
| 578 | palkovsky | 183 | |
| 3742 | rimsky | 184 | #ifdef CONFIG_KCONSOLE |
| 673 | jermar | 185 | cmd_initialize(&exc_info); |
| 578 | palkovsky | 186 | if (!cmd_register(&exc_info)) |
| 3742 | rimsky | 187 | printf("Cannot register command %s\n", exc_info.name); |
| 188 | #endif |
||
| 578 | palkovsky | 189 | } |
| 190 | |||
| 1757 | jermar | 191 | /** @} |
| 1702 | cejka | 192 | */ |