Rev 4085 | Rev 4137 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4085 | Rev 4132 | ||
---|---|---|---|
1 | /* |
1 | /* |
2 | * Copyright (c) 2005 Ondrej Palkovsky |
2 | * Copyright (c) 2005 Ondrej Palkovsky |
3 | * All rights reserved. |
3 | * All rights reserved. |
4 | * |
4 | * |
5 | * Redistribution and use in source and binary forms, with or without |
5 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions |
6 | * modification, are permitted provided that the following conditions |
7 | * are met: |
7 | * are met: |
8 | * |
8 | * |
9 | * - Redistributions of source code must retain the above copyright |
9 | * - Redistributions of source code must retain the above copyright |
10 | * notice, this list of conditions and the following disclaimer. |
10 | * notice, this list of conditions and the following disclaimer. |
11 | * - Redistributions in binary form must reproduce the above copyright |
11 | * - Redistributions in binary form must reproduce the above copyright |
12 | * notice, this list of conditions and the following disclaimer in the |
12 | * notice, this list of conditions and the following disclaimer in the |
13 | * documentation and/or other materials provided with the distribution. |
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 |
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. |
15 | * derived from this software without specific prior written permission. |
16 | * |
16 | * |
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
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 |
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
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 |
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
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 |
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. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
29 | /** @addtogroup genericinterrupt |
29 | /** @addtogroup genericinterrupt |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | /** |
32 | /** |
33 | * @file |
33 | * @file |
34 | * @brief Interrupt redirector. |
34 | * @brief Interrupt redirector. |
35 | * |
35 | * |
36 | * This file provides means of registering interrupt handlers |
36 | * This file provides means of registering interrupt handlers |
37 | * by kernel functions and calling the handlers when interrupts |
37 | * by kernel functions and calling the handlers when interrupts |
38 | * occur. |
38 | * occur. |
39 | */ |
39 | */ |
40 | 40 | ||
41 | #include <interrupt.h> |
41 | #include <interrupt.h> |
42 | #include <debug.h> |
42 | #include <debug.h> |
43 | #include <console/kconsole.h> |
43 | #include <console/kconsole.h> |
44 | #include <console/console.h> |
44 | #include <console/console.h> |
45 | #include <console/cmd.h> |
45 | #include <console/cmd.h> |
46 | #include <panic.h> |
46 | #include <panic.h> |
47 | #include <print.h> |
47 | #include <print.h> |
- | 48 | ||
- | 49 | #ifdef CONFIG_SYMTAB |
|
48 | #include <symtab.h> |
50 | #include <symtab.h> |
- | 51 | #endif |
|
49 | 52 | ||
50 | static struct { |
53 | static struct { |
51 | const char *name; |
54 | const char *name; |
52 | iroutine f; |
55 | iroutine f; |
53 | } exc_table[IVT_ITEMS]; |
56 | } exc_table[IVT_ITEMS]; |
54 | 57 | ||
55 | SPINLOCK_INITIALIZE(exctbl_lock); |
58 | SPINLOCK_INITIALIZE(exctbl_lock); |
56 | 59 | ||
57 | /** Register exception handler |
60 | /** Register exception handler |
58 | * |
61 | * |
59 | * @param n Exception number |
62 | * @param n Exception number |
60 | * @param name Description |
63 | * @param name Description |
61 | * @param f Exception handler |
64 | * @param f Exception handler |
62 | */ |
65 | */ |
63 | iroutine exc_register(int n, const char *name, iroutine f) |
66 | iroutine exc_register(int n, const char *name, iroutine f) |
64 | { |
67 | { |
65 | ASSERT(n < IVT_ITEMS); |
68 | ASSERT(n < IVT_ITEMS); |
66 | 69 | ||
67 | iroutine old; |
70 | iroutine old; |
68 | 71 | ||
69 | spinlock_lock(&exctbl_lock); |
72 | spinlock_lock(&exctbl_lock); |
70 | 73 | ||
71 | old = exc_table[n].f; |
74 | old = exc_table[n].f; |
72 | exc_table[n].f = f; |
75 | exc_table[n].f = f; |
73 | exc_table[n].name = name; |
76 | exc_table[n].name = name; |
74 | 77 | ||
75 | spinlock_unlock(&exctbl_lock); |
78 | spinlock_unlock(&exctbl_lock); |
76 | 79 | ||
77 | return old; |
80 | return old; |
78 | } |
81 | } |
79 | 82 | ||
80 | /** Dispatch exception according to exception table |
83 | /** Dispatch exception according to exception table |
81 | * |
84 | * |
82 | * Called directly from the assembler code. |
85 | * Called directly from the assembler code. |
83 | * CPU is interrupts_disable()'d. |
86 | * CPU is interrupts_disable()'d. |
84 | */ |
87 | */ |
85 | void exc_dispatch(int n, istate_t *istate) |
88 | void exc_dispatch(int n, istate_t *istate) |
86 | { |
89 | { |
87 | ASSERT(n < IVT_ITEMS); |
90 | ASSERT(n < IVT_ITEMS); |
88 | 91 | ||
89 | #ifdef CONFIG_UDEBUG |
92 | #ifdef CONFIG_UDEBUG |
90 | if (THREAD) THREAD->udebug.uspace_state = istate; |
93 | if (THREAD) THREAD->udebug.uspace_state = istate; |
91 | #endif |
94 | #endif |
92 | 95 | ||
93 | exc_table[n].f(n + IVT_FIRST, istate); |
96 | exc_table[n].f(n + IVT_FIRST, istate); |
94 | 97 | ||
95 | #ifdef CONFIG_UDEBUG |
98 | #ifdef CONFIG_UDEBUG |
96 | if (THREAD) THREAD->udebug.uspace_state = NULL; |
99 | if (THREAD) THREAD->udebug.uspace_state = NULL; |
97 | #endif |
100 | #endif |
98 | 101 | ||
99 | /* This is a safe place to exit exiting thread */ |
102 | /* This is a safe place to exit exiting thread */ |
100 | if (THREAD && THREAD->interrupted && istate_from_uspace(istate)) |
103 | if (THREAD && THREAD->interrupted && istate_from_uspace(istate)) |
101 | thread_exit(); |
104 | thread_exit(); |
102 | } |
105 | } |
103 | 106 | ||
104 | /** Default 'null' exception handler */ |
107 | /** Default 'null' exception handler */ |
105 | static void exc_undef(int n, istate_t *istate) |
108 | static void exc_undef(int n, istate_t *istate) |
106 | { |
109 | { |
107 | fault_if_from_uspace(istate, "Unhandled exception %d.", n); |
110 | fault_if_from_uspace(istate, "Unhandled exception %d.", n); |
108 | panic("Unhandled exception %d.", n); |
111 | panic("Unhandled exception %d.", n); |
109 | } |
112 | } |
110 | 113 | ||
111 | #ifdef CONFIG_KCONSOLE |
114 | #ifdef CONFIG_KCONSOLE |
112 | 115 | ||
113 | /** kconsole cmd - print all exceptions */ |
116 | /** kconsole cmd - print all exceptions */ |
114 | static int cmd_exc_print(cmd_arg_t *argv) |
117 | static int cmd_exc_print(cmd_arg_t *argv) |
115 | { |
118 | { |
116 | #if (IVT_ITEMS > 0) |
119 | #if (IVT_ITEMS > 0) |
117 | unsigned int i; |
120 | unsigned int i; |
118 | char *symbol; |
121 | char *symbol; |
119 | 122 | ||
120 | spinlock_lock(&exctbl_lock); |
123 | spinlock_lock(&exctbl_lock); |
121 | 124 | ||
122 | #ifdef __32_BITS__ |
125 | #ifdef __32_BITS__ |
123 | printf("Exc Description Handler Symbol\n"); |
126 | printf("Exc Description Handler Symbol\n"); |
124 | printf("--- -------------------- ---------- --------\n"); |
127 | printf("--- -------------------- ---------- --------\n"); |
125 | #endif |
128 | #endif |
126 | 129 | ||
127 | #ifdef __64_BITS__ |
130 | #ifdef __64_BITS__ |
128 | printf("Exc Description Handler Symbol\n"); |
131 | printf("Exc Description Handler Symbol\n"); |
129 | printf("--- -------------------- ------------------ --------\n"); |
132 | printf("--- -------------------- ------------------ --------\n"); |
130 | #endif |
133 | #endif |
131 | 134 | ||
132 | for (i = 0; i < IVT_ITEMS; i++) { |
135 | for (i = 0; i < IVT_ITEMS; i++) { |
- | 136 | #ifdef CONFIG_SYMTAB |
|
133 | symbol = get_symtab_entry((unative_t) exc_table[i].f); |
137 | symbol = get_symtab_entry((unative_t) exc_table[i].f); |
134 | if (!symbol) |
138 | if (!symbol) |
135 | symbol = "not found"; |
139 | symbol = "not found"; |
- | 140 | #else |
|
- | 141 | symbol = "n/a"; |
|
- | 142 | #endif |
|
136 | 143 | ||
137 | #ifdef __32_BITS__ |
144 | #ifdef __32_BITS__ |
138 | printf("%-3u %-20s %10p %s\n", i + IVT_FIRST, exc_table[i].name, |
145 | printf("%-3u %-20s %10p %s\n", i + IVT_FIRST, exc_table[i].name, |
139 | exc_table[i].f, symbol); |
146 | exc_table[i].f, symbol); |
140 | #endif |
147 | #endif |
141 | 148 | ||
142 | #ifdef __64_BITS__ |
149 | #ifdef __64_BITS__ |
143 | printf("%-3u %-20s %18p %s\n", i + IVT_FIRST, exc_table[i].name, |
150 | printf("%-3u %-20s %18p %s\n", i + IVT_FIRST, exc_table[i].name, |
144 | exc_table[i].f, symbol); |
151 | exc_table[i].f, symbol); |
145 | #endif |
152 | #endif |
146 | 153 | ||
147 | if (((i + 1) % 20) == 0) { |
154 | if (((i + 1) % 20) == 0) { |
148 | printf(" -- Press any key to continue -- "); |
155 | printf(" -- Press any key to continue -- "); |
149 | spinlock_unlock(&exctbl_lock); |
156 | spinlock_unlock(&exctbl_lock); |
150 | _getc(stdin); |
157 | _getc(stdin); |
151 | spinlock_lock(&exctbl_lock); |
158 | spinlock_lock(&exctbl_lock); |
152 | printf("\n"); |
159 | printf("\n"); |
153 | } |
160 | } |
154 | } |
161 | } |
155 | 162 | ||
156 | spinlock_unlock(&exctbl_lock); |
163 | spinlock_unlock(&exctbl_lock); |
157 | #endif |
164 | #endif |
158 | 165 | ||
159 | return 1; |
166 | return 1; |
160 | } |
167 | } |
161 | 168 | ||
162 | 169 | ||
163 | static cmd_info_t exc_info = { |
170 | static cmd_info_t exc_info = { |
164 | .name = "exc", |
171 | .name = "exc", |
165 | .description = "Print exception table.", |
172 | .description = "Print exception table.", |
166 | .func = cmd_exc_print, |
173 | .func = cmd_exc_print, |
167 | .help = NULL, |
174 | .help = NULL, |
168 | .argc = 0, |
175 | .argc = 0, |
169 | .argv = NULL |
176 | .argv = NULL |
170 | }; |
177 | }; |
171 | 178 | ||
172 | #endif |
179 | #endif |
173 | 180 | ||
174 | /** Initialize generic exception handling support */ |
181 | /** Initialize generic exception handling support */ |
175 | void exc_init(void) |
182 | void exc_init(void) |
176 | { |
183 | { |
177 | int i; |
184 | int i; |
178 | 185 | ||
179 | for (i = 0; i < IVT_ITEMS; i++) |
186 | for (i = 0; i < IVT_ITEMS; i++) |
180 | exc_register(i, "undef", (iroutine) exc_undef); |
187 | exc_register(i, "undef", (iroutine) exc_undef); |
181 | 188 | ||
182 | #ifdef CONFIG_KCONSOLE |
189 | #ifdef CONFIG_KCONSOLE |
183 | cmd_initialize(&exc_info); |
190 | cmd_initialize(&exc_info); |
184 | if (!cmd_register(&exc_info)) |
191 | if (!cmd_register(&exc_info)) |
185 | printf("Cannot register command %s\n", exc_info.name); |
192 | printf("Cannot register command %s\n", exc_info.name); |
186 | #endif |
193 | #endif |
187 | } |
194 | } |
188 | 195 | ||
189 | /** @} |
196 | /** @} |
190 | */ |
197 | */ |
191 | 198 |