Rev 3424 | Go to most recent revision | 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> |
||
575 | palkovsky | 50 | |
51 | static struct { |
||
578 | palkovsky | 52 | const char *name; |
575 | palkovsky | 53 | iroutine f; |
578 | palkovsky | 54 | } exc_table[IVT_ITEMS]; |
575 | palkovsky | 55 | |
623 | jermar | 56 | SPINLOCK_INITIALIZE(exctbl_lock); |
578 | palkovsky | 57 | |
58 | /** Register exception handler |
||
59 | * |
||
60 | * @param n Exception number |
||
61 | * @param name Description |
||
62 | * @param f Exception handler |
||
63 | */ |
||
64 | iroutine exc_register(int n, const char *name, iroutine f) |
||
575 | palkovsky | 65 | { |
66 | ASSERT(n < IVT_ITEMS); |
||
67 | |||
68 | iroutine old; |
||
69 | |||
578 | palkovsky | 70 | spinlock_lock(&exctbl_lock); |
71 | |||
72 | old = exc_table[n].f; |
||
73 | exc_table[n].f = f; |
||
74 | exc_table[n].name = name; |
||
75 | |||
76 | spinlock_unlock(&exctbl_lock); |
||
77 | |||
575 | palkovsky | 78 | return old; |
79 | } |
||
80 | |||
578 | palkovsky | 81 | /** Dispatch exception according to exception table |
82 | * |
||
575 | palkovsky | 83 | * Called directly from the assembler code. |
84 | * CPU is interrupts_disable()'d. |
||
85 | */ |
||
958 | jermar | 86 | void exc_dispatch(int n, istate_t *istate) |
575 | palkovsky | 87 | { |
88 | ASSERT(n < IVT_ITEMS); |
||
2817 | svoboda | 89 | |
3431 | svoboda | 90 | #ifdef CONFIG_UDEBUG |
3018 | svoboda | 91 | if (THREAD) THREAD->udebug.uspace_state = istate; |
3431 | svoboda | 92 | #endif |
2799 | svoboda | 93 | |
958 | jermar | 94 | exc_table[n].f(n + IVT_FIRST, istate); |
2817 | svoboda | 95 | |
3431 | svoboda | 96 | #ifdef CONFIG_UDEBUG |
3018 | svoboda | 97 | if (THREAD) THREAD->udebug.uspace_state = NULL; |
3431 | svoboda | 98 | #endif |
2817 | svoboda | 99 | |
1597 | palkovsky | 100 | /* This is a safe place to exit exiting thread */ |
101 | if (THREAD && THREAD->interrupted && istate_from_uspace(istate)) |
||
102 | thread_exit(); |
||
575 | palkovsky | 103 | } |
578 | palkovsky | 104 | |
105 | /** Default 'null' exception handler */ |
||
958 | jermar | 106 | static void exc_undef(int n, istate_t *istate) |
578 | palkovsky | 107 | { |
1595 | palkovsky | 108 | fault_if_from_uspace(istate, "Unhandled exception %d.", n); |
578 | palkovsky | 109 | panic("Unhandled exception %d.", n); |
110 | } |
||
111 | |||
664 | jermar | 112 | /** kconsole cmd - print all exceptions */ |
578 | palkovsky | 113 | static int exc_print_cmd(cmd_arg_t *argv) |
114 | { |
||
2745 | decky | 115 | #if (IVT_ITEMS > 0) |
2712 | decky | 116 | unsigned int i; |
578 | palkovsky | 117 | char *symbol; |
118 | |||
119 | spinlock_lock(&exctbl_lock); |
||
3424 | svoboda | 120 | |
121 | #ifdef __32_BITS__ |
||
122 | printf("Exc Description Handler Symbol\n"); |
||
123 | printf("--- -------------------- ---------- --------\n"); |
||
124 | #endif |
||
125 | |||
126 | #ifdef __64_BITS__ |
||
127 | printf("Exc Description Handler Symbol\n"); |
||
128 | printf("--- -------------------- ------------------ --------\n"); |
||
129 | #endif |
||
2712 | decky | 130 | |
131 | for (i = 0; i < IVT_ITEMS; i++) { |
||
132 | symbol = get_symtab_entry((unative_t) exc_table[i].f); |
||
578 | palkovsky | 133 | if (!symbol) |
134 | symbol = "not found"; |
||
3424 | svoboda | 135 | |
136 | #ifdef __32_BITS__ |
||
137 | printf("%-3u %-20s %10p %s\n", i + IVT_FIRST, exc_table[i].name, |
||
138 | exc_table[i].f, symbol); |
||
139 | #endif |
||
140 | |||
141 | #ifdef __64_BITS__ |
||
142 | printf("%-3u %-20s %18p %s\n", i + IVT_FIRST, exc_table[i].name, |
||
143 | exc_table[i].f, symbol); |
||
144 | #endif |
||
2712 | decky | 145 | |
146 | if (((i + 1) % 20) == 0) { |
||
147 | printf(" -- Press any key to continue -- "); |
||
579 | palkovsky | 148 | spinlock_unlock(&exctbl_lock); |
578 | palkovsky | 149 | getc(stdin); |
579 | palkovsky | 150 | spinlock_lock(&exctbl_lock); |
578 | palkovsky | 151 | printf("\n"); |
152 | } |
||
153 | } |
||
2712 | decky | 154 | |
578 | palkovsky | 155 | spinlock_unlock(&exctbl_lock); |
2745 | decky | 156 | #endif |
578 | palkovsky | 157 | |
158 | return 1; |
||
159 | } |
||
160 | |||
161 | static cmd_info_t exc_info = { |
||
673 | jermar | 162 | .name = "exc", |
586 | jermar | 163 | .description = "Print exception table.", |
578 | palkovsky | 164 | .func = exc_print_cmd, |
165 | .help = NULL, |
||
166 | .argc = 0, |
||
167 | .argv = NULL |
||
168 | }; |
||
169 | |||
170 | /** Initialize generic exception handling support */ |
||
171 | void exc_init(void) |
||
172 | { |
||
173 | int i; |
||
174 | |||
3424 | svoboda | 175 | for (i = 0; i < IVT_ITEMS; i++) |
958 | jermar | 176 | exc_register(i, "undef", (iroutine) exc_undef); |
578 | palkovsky | 177 | |
673 | jermar | 178 | cmd_initialize(&exc_info); |
578 | palkovsky | 179 | if (!cmd_register(&exc_info)) |
180 | panic("could not register command %s\n", exc_info.name); |
||
181 | } |
||
182 | |||
1757 | jermar | 183 | /** @} |
1702 | cejka | 184 | */ |