source: mainline/kernel/arch/mips32/src/exception.c@ 7c682dd1

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

make sure that all statically allocated strings are declared as "const char *"
and are treated as read-only

  • Property mode set to 100644
File size: 5.2 KB
Line 
1/*
2 * Copyright (c) 2003-2004 Jakub 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/** @addtogroup mips32
30 * @{
31 */
32/** @file
33 */
34
35#include <arch/exception.h>
36#include <arch/interrupt.h>
37#include <arch/mm/tlb.h>
38#include <panic.h>
39#include <arch/cp0.h>
40#include <arch/types.h>
41#include <arch.h>
42#include <debug.h>
43#include <proc/thread.h>
44#include <print.h>
45#include <interrupt.h>
46#include <func.h>
47#include <ddi/irq.h>
48#include <arch/debugger.h>
49#include <symtab.h>
50
51static const char *exctable[] = {
52 "Interrupt",
53 "TLB Modified",
54 "TLB Invalid",
55 "TLB Invalid Store",
56 "Address Error - load/instr. fetch",
57 "Address Error - store",
58 "Bus Error - fetch instruction",
59 "Bus Error - data reference",
60 "Syscall",
61 "BreakPoint",
62 "Reserved Instruction",
63 "Coprocessor Unusable",
64 "Arithmetic Overflow",
65 "Trap",
66 "Virtual Coherency - instruction",
67 "Floating Point",
68 NULL, NULL, NULL, NULL, NULL, NULL, NULL,
69 "WatchHi/WatchLo", /* 23 */
70 NULL, NULL, NULL, NULL, NULL, NULL, NULL,
71 "Virtual Coherency - data",
72};
73
74static void print_regdump(istate_t *istate)
75{
76 const char *pcsymbol = symtab_fmt_name_lookup(istate->epc);
77 const char *rasymbol = symtab_fmt_name_lookup(istate->ra);
78
79 printf("PC: %#x(%s) RA: %#x(%s), SP(%p)\n", istate->epc, pcsymbol,
80 istate->ra, rasymbol, istate->sp);
81}
82
83static void unhandled_exception(int n, istate_t *istate)
84{
85 fault_if_from_uspace(istate, "Unhandled exception %s.", exctable[n]);
86
87 print_regdump(istate);
88 panic("Unhandled exception %s.", exctable[n]);
89}
90
91static void reserved_instr_exception(int n, istate_t *istate)
92{
93 if (*((uint32_t *) istate->epc) == 0x7c03e83b) {
94 ASSERT(THREAD);
95 istate->epc += 4;
96 istate->v1 = istate->k1;
97 } else
98 unhandled_exception(n, istate);
99}
100
101static void breakpoint_exception(int n, istate_t *istate)
102{
103#ifdef CONFIG_DEBUG
104 debugger_bpoint(istate);
105#else
106 /* it is necessary to not re-execute BREAK instruction after
107 returning from Exception handler
108 (see page 138 in R4000 Manual for more information) */
109 istate->epc += 4;
110#endif
111}
112
113static void tlbmod_exception(int n, istate_t *istate)
114{
115 tlb_modified(istate);
116}
117
118static void tlbinv_exception(int n, istate_t *istate)
119{
120 tlb_invalid(istate);
121}
122
123#ifdef CONFIG_FPU_LAZY
124static void cpuns_exception(int n, istate_t *istate)
125{
126 if (cp0_cause_coperr(cp0_cause_read()) == fpu_cop_id)
127 scheduler_fpu_lazy_request();
128 else {
129 fault_if_from_uspace(istate, "Unhandled Coprocessor Unusable Exception.");
130 panic("Unhandled Coprocessor Unusable Exception.");
131 }
132}
133#endif
134
135static void interrupt_exception(int n, istate_t *istate)
136{
137 uint32_t cause;
138 int i;
139
140 /* decode interrupt number and process the interrupt */
141 cause = (cp0_cause_read() >> 8) & 0xff;
142
143 for (i = 0; i < 8; i++) {
144 if (cause & (1 << i)) {
145 irq_t *irq = irq_dispatch_and_lock(i);
146 if (irq) {
147 /*
148 * The IRQ handler was found.
149 */
150 irq->handler(irq);
151 spinlock_unlock(&irq->lock);
152 } else {
153 /*
154 * Spurious interrupt.
155 */
156#ifdef CONFIG_DEBUG
157 printf("cpu%u: spurious interrupt (inum=%d)\n",
158 CPU->id, i);
159#endif
160 }
161 }
162 }
163}
164
165/** Handle syscall userspace call */
166static void syscall_exception(int n, istate_t *istate)
167{
168 panic("Syscall is handled through shortcut.");
169}
170
171void exception_init(void)
172{
173 int i;
174
175 /* Clear exception table */
176 for (i = 0; i < IVT_ITEMS; i++)
177 exc_register(i, "undef", (iroutine) unhandled_exception);
178
179 exc_register(EXC_Bp, "bkpoint", (iroutine) breakpoint_exception);
180 exc_register(EXC_RI, "resinstr", (iroutine) reserved_instr_exception);
181 exc_register(EXC_Mod, "tlb_mod", (iroutine) tlbmod_exception);
182 exc_register(EXC_TLBL, "tlbinvl", (iroutine) tlbinv_exception);
183 exc_register(EXC_TLBS, "tlbinvl", (iroutine) tlbinv_exception);
184 exc_register(EXC_Int, "interrupt", (iroutine) interrupt_exception);
185#ifdef CONFIG_FPU_LAZY
186 exc_register(EXC_CpU, "cpunus", (iroutine) cpuns_exception);
187#endif
188 exc_register(EXC_Sys, "syscall", (iroutine) syscall_exception);
189}
190
191/** @}
192 */
Note: See TracBrowser for help on using the repository browser.