source: mainline/kernel/generic/src/interrupt/interrupt.c@ 94a981a

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 94a981a was 94a981a, checked in by Martin Decky <martin@…>, 16 years ago

do not echo keypress

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[a7fdfe1]1/*
[df4ed85]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 */
[b45c443]28
[cc73a8a1]29/** @addtogroup genericinterrupt
[b45c443]30 * @{
31 */
[cf26ba9]32/**
[b45c443]33 * @file
[cf26ba9]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
[973be64e]41#include <interrupt.h>
42#include <debug.h>
[aace6624]43#include <console/kconsole.h>
44#include <console/console.h>
[0132630]45#include <console/cmd.h>
[aace6624]46#include <panic.h>
47#include <print.h>
48#include <symtab.h>
[a7fdfe1]49
[973be64e]50static struct {
[aace6624]51 const char *name;
[973be64e]52 iroutine f;
[aace6624]53} exc_table[IVT_ITEMS];
[a7fdfe1]54
[dc747e3]55SPINLOCK_INITIALIZE(exctbl_lock);
[aace6624]56
57/** Register exception handler
58 *
59 * @param n Exception number
60 * @param name Description
61 * @param f Exception handler
62 */
63iroutine exc_register(int n, const char *name, iroutine f)
[973be64e]64{
65 ASSERT(n < IVT_ITEMS);
66
67 iroutine old;
68
[aace6624]69 spinlock_lock(&exctbl_lock);
[94a981a]70
[aace6624]71 old = exc_table[n].f;
72 exc_table[n].f = f;
73 exc_table[n].name = name;
[94a981a]74
75 spinlock_unlock(&exctbl_lock);
76
[973be64e]77 return old;
78}
[a7fdfe1]79
[aace6624]80/** Dispatch exception according to exception table
81 *
[973be64e]82 * Called directly from the assembler code.
83 * CPU is interrupts_disable()'d.
84 */
[25d7709]85void exc_dispatch(int n, istate_t *istate)
[973be64e]86{
87 ASSERT(n < IVT_ITEMS);
[3ff2b54]88
89#ifdef CONFIG_UDEBUG
90 if (THREAD) THREAD->udebug.uspace_state = istate;
91#endif
[973be64e]92
[25d7709]93 exc_table[n].f(n + IVT_FIRST, istate);
[3ff2b54]94
95#ifdef CONFIG_UDEBUG
96 if (THREAD) THREAD->udebug.uspace_state = NULL;
97#endif
98
[0dbc4e7]99 /* This is a safe place to exit exiting thread */
100 if (THREAD && THREAD->interrupted && istate_from_uspace(istate))
101 thread_exit();
[aace6624]102}
103
104/** Default 'null' exception handler */
[25d7709]105static void exc_undef(int n, istate_t *istate)
[aace6624]106{
[f651e80]107 fault_if_from_uspace(istate, "Unhandled exception %d.", n);
108 panic("Unhandled exception %d.", n);
[aace6624]109}
110
[76fca31]111#ifdef CONFIG_KCONSOLE
112
[39494010]113/** kconsole cmd - print all exceptions */
[76fca31]114static int cmd_exc_print(cmd_arg_t *argv)
[aace6624]115{
[6c441cf8]116#if (IVT_ITEMS > 0)
[43b1e86]117 unsigned int i;
[aace6624]118 char *symbol;
119
120 spinlock_lock(&exctbl_lock);
[c70d693]121
122#ifdef __32_BITS__
123 printf("Exc Description Handler Symbol\n");
124 printf("--- -------------------- ---------- --------\n");
125#endif
126
127#ifdef __64_BITS__
128 printf("Exc Description Handler Symbol\n");
129 printf("--- -------------------- ------------------ --------\n");
130#endif
[43b1e86]131
132 for (i = 0; i < IVT_ITEMS; i++) {
133 symbol = get_symtab_entry((unative_t) exc_table[i].f);
[aace6624]134 if (!symbol)
135 symbol = "not found";
[c70d693]136
137#ifdef __32_BITS__
138 printf("%-3u %-20s %10p %s\n", i + IVT_FIRST, exc_table[i].name,
139 exc_table[i].f, symbol);
140#endif
141
142#ifdef __64_BITS__
143 printf("%-3u %-20s %18p %s\n", i + IVT_FIRST, exc_table[i].name,
144 exc_table[i].f, symbol);
145#endif
[43b1e86]146
147 if (((i + 1) % 20) == 0) {
148 printf(" -- Press any key to continue -- ");
[402fc8bf]149 spinlock_unlock(&exctbl_lock);
[94a981a]150 _getc(stdin);
[402fc8bf]151 spinlock_lock(&exctbl_lock);
[aace6624]152 printf("\n");
153 }
154 }
[43b1e86]155
[aace6624]156 spinlock_unlock(&exctbl_lock);
[6c441cf8]157#endif
[aace6624]158
159 return 1;
160}
161
[76fca31]162
[aace6624]163static cmd_info_t exc_info = {
[0132630]164 .name = "exc",
[adb2ebf8]165 .description = "Print exception table.",
[76fca31]166 .func = cmd_exc_print,
[aace6624]167 .help = NULL,
168 .argc = 0,
169 .argv = NULL
170};
171
[76fca31]172#endif
173
[aace6624]174/** Initialize generic exception handling support */
175void exc_init(void)
176{
177 int i;
178
[c70d693]179 for (i = 0; i < IVT_ITEMS; i++)
[25d7709]180 exc_register(i, "undef", (iroutine) exc_undef);
[aace6624]181
[76fca31]182#ifdef CONFIG_KCONSOLE
[0132630]183 cmd_initialize(&exc_info);
[aace6624]184 if (!cmd_register(&exc_info))
[76fca31]185 printf("Cannot register command %s\n", exc_info.name);
186#endif
[973be64e]187}
[aace6624]188
[cc73a8a1]189/** @}
[b45c443]190 */
Note: See TracBrowser for help on using the repository browser.