Subversion Repositories HelenOS

Rev

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