Subversion Repositories HelenOS-historic

Rev

Rev 614 | Rev 794 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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