Subversion Repositories HelenOS-historic

Rev

Rev 610 | Rev 615 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 jermar 1
/*
319 jermar 2
 * Copyright (C) 2003-2004 Jakub Jermar
1 jermar 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
 
29
#include <arch/exception.h>
195 vana 30
#include <arch/interrupt.h>
1 jermar 31
#include <panic.h>
32
#include <arch/cp0.h>
33
#include <arch/types.h>
34
#include <arch.h>
227 jermar 35
#include <debug.h>
391 jermar 36
#include <proc/thread.h>
590 palkovsky 37
#include <symtab.h>
38
#include <print.h>
39
#include <interrupt.h>
609 palkovsky 40
#include <func.h>
41
#include <console/kconsole.h>
614 palkovsky 42
#include <arch/debugger.h>
1 jermar 43
 
590 palkovsky 44
static char * exctable[] = {
45
    "Interrupt","TLB Modified","TLB Invalid","TLB Invalid Store",
46
        "Address Error - load/instr. fetch",
47
        "Address Error - store",
48
        "Bus Error - fetch instruction",
49
        "Bus Error - data reference",
50
        "Syscall",
51
        "BreakPoint",
52
        "Reserved Instruction",
53
        "Coprocessor Unusable",
54
        "Arithmetic Overflow",
55
        "Trap",
56
        "Virtual Coherency - instruction",
57
        "Floating Point",
58
        NULL, NULL, NULL, NULL, NULL, NULL, NULL,
59
        "WatchHi/WatchLo", /* 23 */
60
        NULL, NULL, NULL, NULL, NULL, NULL, NULL,
61
        "Virtual Coherency - data",
62
};
63
 
64
static void print_regdump(struct exception_regdump *pstate)
65
{
66
    char *pcsymbol = "";
67
    char *rasymbol = "";
68
 
69
    char *s = get_symtab_entry(pstate->epc);
70
    if (s)
71
        pcsymbol = s;
72
    s = get_symtab_entry(pstate->ra);
73
    if (s)
74
        rasymbol = s;
75
 
76
    printf("PC: %X(%s) RA: %X(%s)\n",pstate->epc,pcsymbol,
77
           pstate->ra,rasymbol);
78
}
79
 
80
static void unhandled_exception(int n, void *data)
81
{
82
    struct exception_regdump *pstate = (struct exception_regdump *)data;
83
 
84
    print_regdump(pstate);
85
    panic("unhandled exception %s\n", exctable[n]);
86
}
87
 
88
static void breakpoint_exception(int n, void *data)
89
{
90
    struct exception_regdump *pstate = (struct exception_regdump *)data;
609 palkovsky 91
 
614 palkovsky 92
#ifdef CONFIG_DEBUG
93
    debugger_bpoint(pstate);
94
#else
590 palkovsky 95
    /* it is necessary to not re-execute BREAK instruction after
96
       returning from Exception handler
97
       (see page 138 in R4000 Manual for more information) */
98
    pstate->epc += 4;
614 palkovsky 99
#endif
590 palkovsky 100
}
101
 
102
static void tlbmod_exception(int n, void *data)
103
{
104
    struct exception_regdump *pstate = (struct exception_regdump *)data;
105
    tlb_modified(pstate);
106
}
107
 
108
static void tlbinv_exception(int n, void *data)
109
{
110
    struct exception_regdump *pstate = (struct exception_regdump *)data;
111
    tlb_invalid(pstate);
112
}
113
 
593 palkovsky 114
static void cpuns_exception(int n, void *data)
590 palkovsky 115
{
116
    if (cp0_cause_coperr(cp0_cause_read()) == fpu_cop_id)
117
        scheduler_fpu_lazy_request();
118
    else
119
        panic("unhandled Coprocessor Unusable Exception\n");
120
}
121
 
122
static void interrupt_exception(int n, void *pstate)
123
{
124
    __u32 cause;
125
    int i;
126
 
127
    /* decode interrupt number and process the interrupt */
128
    cause = (cp0_cause_read() >> 8) &0xff;
129
 
130
    for (i = 0; i < 8; i++)
131
        if (cause & (1 << i))
132
            exc_dispatch(i+INT_OFFSET, pstate);
133
}
134
 
135
 
317 palkovsky 136
void exception(struct exception_regdump *pstate)
1 jermar 137
{
330 palkovsky 138
    int cause;
1 jermar 139
    int excno;
213 jermar 140
 
227 jermar 141
    ASSERT(CPU != NULL);
142
 
213 jermar 143
    /*
144
     * NOTE ON OPERATION ORDERING
145
     *
413 jermar 146
     * On entry, interrupts_disable() must be called before
317 palkovsky 147
     * exception bit is cleared.
213 jermar 148
     */
149
 
413 jermar 150
    interrupts_disable();
313 palkovsky 151
    cp0_status_write(cp0_status_read() & ~ (cp0_status_exl_exception_bit |
152
                        cp0_status_um_bit));
327 palkovsky 153
 
326 palkovsky 154
    /* Save pstate so that the threads can access it */
327 palkovsky 155
    /* If THREAD->pstate is set, this is nested exception,
156
     * do not rewrite it
157
     */
158
    if (THREAD && !THREAD->pstate)
326 palkovsky 159
        THREAD->pstate = pstate;
1 jermar 160
 
330 palkovsky 161
    cause = cp0_cause_read();
162
    excno = cp0_cause_excno(cause);
590 palkovsky 163
    /* Dispatch exception */
164
    exc_dispatch(excno, pstate);
165
 
327 palkovsky 166
    /* Set to NULL, so that we can still support nested
167
     * exceptions
168
     * TODO: We should probably set EXL bit before this command,
169
     * nesting. On the other hand, if some exception occurs between
170
     * here and ERET, it won't set anything on the pstate anyway.
171
     */
326 palkovsky 172
    if (THREAD)
173
        THREAD->pstate = NULL;
1 jermar 174
}
590 palkovsky 175
 
176
void exception_init(void)
177
{
178
    int i;
179
 
180
    /* Clear exception table */
181
    for (i=0;i < IVT_ITEMS; i++)
182
        exc_register(i, "undef", unhandled_exception);
183
    exc_register(EXC_Bp, "bkpoint", breakpoint_exception);
184
    exc_register(EXC_Mod, "tlb_mod", tlbmod_exception);
185
    exc_register(EXC_TLBL, "tlbinvl", tlbinv_exception);
186
    exc_register(EXC_TLBS, "tlbinvl", tlbinv_exception);
187
    exc_register(EXC_Int, "interrupt", interrupt_exception);
188
#ifdef CONFIG_FPU_LAZY
593 palkovsky 189
    exc_register(EXC_CpU, "cpunus", cpuns_exception);
590 palkovsky 190
#endif
191
}