faults.cc (8568:83f728db3332) faults.cc (8570:ea93f18eead8)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Authors: Gabe Black
30 * Korey Sewell
31 * Jaidev Patwardhan
32 */
33
34#include "arch/mips/faults.hh"
35#include "arch/mips/pra_constants.hh"
36#include "base/trace.hh"
37#include "cpu/base.hh"
38#include "cpu/thread_context.hh"
39#include "debug/MipsPRA.hh"
40
41#if !FULL_SYSTEM
42#include "mem/page_table.hh"
43#include "sim/process.hh"
44#endif
45
46namespace MipsISA
47{
48
49typedef MipsFaultBase::FaultVals FaultVals;
50
51template <> FaultVals MipsFault<MachineCheckFault>::vals =
52 { "Machine Check", 0x0401 };
53
54template <> FaultVals MipsFault<ResetFault>::vals =
55#if FULL_SYSTEM
56 { "Reset Fault", 0xBFC00000};
57#else
58 { "Reset Fault", 0x001};
59#endif
60
61template <> FaultVals MipsFault<AddressErrorFault>::vals =
62 { "Address Error", 0x0180 };
63
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Authors: Gabe Black
30 * Korey Sewell
31 * Jaidev Patwardhan
32 */
33
34#include "arch/mips/faults.hh"
35#include "arch/mips/pra_constants.hh"
36#include "base/trace.hh"
37#include "cpu/base.hh"
38#include "cpu/thread_context.hh"
39#include "debug/MipsPRA.hh"
40
41#if !FULL_SYSTEM
42#include "mem/page_table.hh"
43#include "sim/process.hh"
44#endif
45
46namespace MipsISA
47{
48
49typedef MipsFaultBase::FaultVals FaultVals;
50
51template <> FaultVals MipsFault<MachineCheckFault>::vals =
52 { "Machine Check", 0x0401 };
53
54template <> FaultVals MipsFault<ResetFault>::vals =
55#if FULL_SYSTEM
56 { "Reset Fault", 0xBFC00000};
57#else
58 { "Reset Fault", 0x001};
59#endif
60
61template <> FaultVals MipsFault<AddressErrorFault>::vals =
62 { "Address Error", 0x0180 };
63
64template <> FaultVals MipsFault<StoreAddressErrorFault>::vals =
65 { "Store Address Error", 0x0180 };
66
67template <> FaultVals MipsFault<SystemCallFault>::vals =
68 { "Syscall", 0x0180 };
69
70template <> FaultVals MipsFault<CoprocessorUnusableFault>::vals =
71 { "Coprocessor Unusable Fault", 0x180 };
72
73template <> FaultVals MipsFault<ReservedInstructionFault>::vals =
74 { "Reserved Instruction Fault", 0x0180 };
75
76template <> FaultVals MipsFault<ThreadFault>::vals =
77 { "Thread Fault", 0x00F1 };
78
79template <> FaultVals MipsFault<IntegerOverflowFault>::vals =
80 { "Integer Overflow Exception", 0x180 };
81
82template <> FaultVals MipsFault<InterruptFault>::vals =
83 { "interrupt", 0x0180 };
84
85template <> FaultVals MipsFault<TrapFault>::vals =
86 { "Trap", 0x0180 };
87
88template <> FaultVals MipsFault<BreakpointFault>::vals =
89 { "Breakpoint", 0x0180 };
90
91template <> FaultVals MipsFault<ItbInvalidFault>::vals =
92 { "Invalid TLB Entry Exception (I-Fetch/LW)", 0x0180 };
93
94template <> FaultVals MipsFault<ItbRefillFault>::vals =
95 { "TLB Refill Exception (I-Fetch/LW)", 0x0180 };
96
97template <> FaultVals MipsFault<DtbInvalidFault>::vals =
98 { "Invalid TLB Entry Exception (Store)", 0x0180 };
99
100template <> FaultVals MipsFault<DtbRefillFault>::vals =
101 { "TLB Refill Exception (Store)", 0x0180 };
102
103template <> FaultVals MipsFault<TLBModifiedFault>::vals =
104 { "TLB Modified Exception", 0x0180 };
105
106template <> FaultVals MipsFault<DspStateDisabledFault>::vals =
107 { "DSP Disabled Fault", 0x001a };
108
109#if FULL_SYSTEM
110void
111MipsFaultBase::setHandlerPC(Addr HandlerBase, ThreadContext *tc)
112{
113 tc->setPC(HandlerBase);
114 tc->setNextPC(HandlerBase + sizeof(MachInst));
115 tc->setNextNPC(HandlerBase + 2 * sizeof(MachInst));
116}
117
118void
119MipsFaultBase::setExceptionState(ThreadContext *tc, uint8_t excCode)
120{
121 // modify SRS Ctl - Save CSS, put ESS into CSS
122 StatusReg status = tc->readMiscReg(MISCREG_STATUS);
123 if (status.exl != 1 && status.bev != 1) {
124 // SRS Ctl is modified only if Status_EXL and Status_BEV are not set
125 SRSCtlReg srsCtl = tc->readMiscReg(MISCREG_SRSCTL);
126 srsCtl.pss = srsCtl.css;
127 srsCtl.css = srsCtl.ess;
128 tc->setMiscRegNoEffect(MISCREG_SRSCTL, srsCtl);
129 }
130
131 // set EXL bit (don't care if it is already set!)
132 status.exl = 1;
133 tc->setMiscRegNoEffect(MISCREG_STATUS, status);
134
135 // write EPC
136 // CHECK ME or FIXME or FIX ME or POSSIBLE HACK
137 // Check to see if the exception occurred in the branch delay slot
138 DPRINTF(MipsPRA, "PC: %x, NextPC: %x, NNPC: %x\n",
139 tc->readPC(), tc->readNextPC(), tc->readNextNPC());
140 int bd = 0;
141 if (tc->readPC() + sizeof(MachInst) != tc->readNextPC()) {
142 tc->setMiscRegNoEffect(MISCREG_EPC, tc->readPC() - sizeof(MachInst));
143 // In the branch delay slot? set CAUSE_31
144 bd = 1;
145 } else {
146 tc->setMiscRegNoEffect(MISCREG_EPC, tc->readPC());
147 // In the branch delay slot? reset CAUSE_31
148 bd = 0;
149 }
150
151 // Set Cause_EXCCODE field
152 CauseReg cause = tc->readMiscReg(MISCREG_CAUSE);
153 cause.excCode = excCode;
154 cause.bd = bd;
155 cause.ce = 0;
156 tc->setMiscRegNoEffect(MISCREG_CAUSE, cause);
157}
158
159void
160IntegerOverflowFault::invoke(ThreadContext *tc, StaticInstPtr inst)
161{
162 DPRINTF(MipsPRA, "%s encountered.\n", name());
163 setExceptionState(tc, 0xC);
164
165 // Set new PC
166 Addr HandlerBase;
167 StatusReg status = tc->readMiscReg(MISCREG_STATUS);
168 // Here, the handler is dependent on BEV, which is not modified by
169 // setExceptionState()
170 if (!status.bev) {
171 // See MIPS ARM Vol 3, Revision 2, Page 38
172 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
173 } else {
174 HandlerBase = 0xBFC00200;
175 }
176 setHandlerPC(HandlerBase, tc);
177}
178
179void
64template <> FaultVals MipsFault<SystemCallFault>::vals =
65 { "Syscall", 0x0180 };
66
67template <> FaultVals MipsFault<CoprocessorUnusableFault>::vals =
68 { "Coprocessor Unusable Fault", 0x180 };
69
70template <> FaultVals MipsFault<ReservedInstructionFault>::vals =
71 { "Reserved Instruction Fault", 0x0180 };
72
73template <> FaultVals MipsFault<ThreadFault>::vals =
74 { "Thread Fault", 0x00F1 };
75
76template <> FaultVals MipsFault<IntegerOverflowFault>::vals =
77 { "Integer Overflow Exception", 0x180 };
78
79template <> FaultVals MipsFault<InterruptFault>::vals =
80 { "interrupt", 0x0180 };
81
82template <> FaultVals MipsFault<TrapFault>::vals =
83 { "Trap", 0x0180 };
84
85template <> FaultVals MipsFault<BreakpointFault>::vals =
86 { "Breakpoint", 0x0180 };
87
88template <> FaultVals MipsFault<ItbInvalidFault>::vals =
89 { "Invalid TLB Entry Exception (I-Fetch/LW)", 0x0180 };
90
91template <> FaultVals MipsFault<ItbRefillFault>::vals =
92 { "TLB Refill Exception (I-Fetch/LW)", 0x0180 };
93
94template <> FaultVals MipsFault<DtbInvalidFault>::vals =
95 { "Invalid TLB Entry Exception (Store)", 0x0180 };
96
97template <> FaultVals MipsFault<DtbRefillFault>::vals =
98 { "TLB Refill Exception (Store)", 0x0180 };
99
100template <> FaultVals MipsFault<TLBModifiedFault>::vals =
101 { "TLB Modified Exception", 0x0180 };
102
103template <> FaultVals MipsFault<DspStateDisabledFault>::vals =
104 { "DSP Disabled Fault", 0x001a };
105
106#if FULL_SYSTEM
107void
108MipsFaultBase::setHandlerPC(Addr HandlerBase, ThreadContext *tc)
109{
110 tc->setPC(HandlerBase);
111 tc->setNextPC(HandlerBase + sizeof(MachInst));
112 tc->setNextNPC(HandlerBase + 2 * sizeof(MachInst));
113}
114
115void
116MipsFaultBase::setExceptionState(ThreadContext *tc, uint8_t excCode)
117{
118 // modify SRS Ctl - Save CSS, put ESS into CSS
119 StatusReg status = tc->readMiscReg(MISCREG_STATUS);
120 if (status.exl != 1 && status.bev != 1) {
121 // SRS Ctl is modified only if Status_EXL and Status_BEV are not set
122 SRSCtlReg srsCtl = tc->readMiscReg(MISCREG_SRSCTL);
123 srsCtl.pss = srsCtl.css;
124 srsCtl.css = srsCtl.ess;
125 tc->setMiscRegNoEffect(MISCREG_SRSCTL, srsCtl);
126 }
127
128 // set EXL bit (don't care if it is already set!)
129 status.exl = 1;
130 tc->setMiscRegNoEffect(MISCREG_STATUS, status);
131
132 // write EPC
133 // CHECK ME or FIXME or FIX ME or POSSIBLE HACK
134 // Check to see if the exception occurred in the branch delay slot
135 DPRINTF(MipsPRA, "PC: %x, NextPC: %x, NNPC: %x\n",
136 tc->readPC(), tc->readNextPC(), tc->readNextNPC());
137 int bd = 0;
138 if (tc->readPC() + sizeof(MachInst) != tc->readNextPC()) {
139 tc->setMiscRegNoEffect(MISCREG_EPC, tc->readPC() - sizeof(MachInst));
140 // In the branch delay slot? set CAUSE_31
141 bd = 1;
142 } else {
143 tc->setMiscRegNoEffect(MISCREG_EPC, tc->readPC());
144 // In the branch delay slot? reset CAUSE_31
145 bd = 0;
146 }
147
148 // Set Cause_EXCCODE field
149 CauseReg cause = tc->readMiscReg(MISCREG_CAUSE);
150 cause.excCode = excCode;
151 cause.bd = bd;
152 cause.ce = 0;
153 tc->setMiscRegNoEffect(MISCREG_CAUSE, cause);
154}
155
156void
157IntegerOverflowFault::invoke(ThreadContext *tc, StaticInstPtr inst)
158{
159 DPRINTF(MipsPRA, "%s encountered.\n", name());
160 setExceptionState(tc, 0xC);
161
162 // Set new PC
163 Addr HandlerBase;
164 StatusReg status = tc->readMiscReg(MISCREG_STATUS);
165 // Here, the handler is dependent on BEV, which is not modified by
166 // setExceptionState()
167 if (!status.bev) {
168 // See MIPS ARM Vol 3, Revision 2, Page 38
169 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
170 } else {
171 HandlerBase = 0xBFC00200;
172 }
173 setHandlerPC(HandlerBase, tc);
174}
175
176void
180StoreAddressErrorFault::invoke(ThreadContext *tc, StaticInstPtr inst)
181{
182 DPRINTF(MipsPRA, "%s encountered.\n", name());
183 setExceptionState(tc, 0x5);
184 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
185
186 // Set new PC
187 Addr HandlerBase;
188 // Offset 0x180 - General Exception Vector
189 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
190 setHandlerPC(HandlerBase, tc);
191}
192
193void
194TrapFault::invoke(ThreadContext *tc, StaticInstPtr inst)
195{
196 DPRINTF(MipsPRA, "%s encountered.\n", name());
197 setExceptionState(tc, 0xD);
198
199 // Set new PC
200 Addr HandlerBase;
201 // Offset 0x180 - General Exception Vector
202 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
203 setHandlerPC(HandlerBase, tc);
204}
205
206void
207BreakpointFault::invoke(ThreadContext *tc, StaticInstPtr inst)
208{
209 setExceptionState(tc, 0x9);
210
211 // Set new PC
212 Addr HandlerBase;
213 // Offset 0x180 - General Exception Vector
214 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
215 setHandlerPC(HandlerBase, tc);
216}
217
218void
219DtbInvalidFault::invoke(ThreadContext *tc, StaticInstPtr inst)
220{
221 DPRINTF(MipsPRA, "%s encountered.\n", name());
222
223 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
224 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
225 entryHi.asid = entryHiAsid;
226 entryHi.vpn2 = entryHiVPN2;
227 entryHi.vpn2x = entryHiVPN2X;
228 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
229
230 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
231 context.badVPN2 = contextBadVPN2;
232 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
233 setExceptionState(tc, 0x3);
234
235
236 // Set new PC
237 Addr HandlerBase;
238 // Offset 0x180 - General Exception Vector
239 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
240 setHandlerPC(HandlerBase, tc);
241}
242
243void
244AddressErrorFault::invoke(ThreadContext *tc, StaticInstPtr inst)
245{
246 DPRINTF(MipsPRA, "%s encountered.\n", name());
177TrapFault::invoke(ThreadContext *tc, StaticInstPtr inst)
178{
179 DPRINTF(MipsPRA, "%s encountered.\n", name());
180 setExceptionState(tc, 0xD);
181
182 // Set new PC
183 Addr HandlerBase;
184 // Offset 0x180 - General Exception Vector
185 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
186 setHandlerPC(HandlerBase, tc);
187}
188
189void
190BreakpointFault::invoke(ThreadContext *tc, StaticInstPtr inst)
191{
192 setExceptionState(tc, 0x9);
193
194 // Set new PC
195 Addr HandlerBase;
196 // Offset 0x180 - General Exception Vector
197 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
198 setHandlerPC(HandlerBase, tc);
199}
200
201void
202DtbInvalidFault::invoke(ThreadContext *tc, StaticInstPtr inst)
203{
204 DPRINTF(MipsPRA, "%s encountered.\n", name());
205
206 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
207 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
208 entryHi.asid = entryHiAsid;
209 entryHi.vpn2 = entryHiVPN2;
210 entryHi.vpn2x = entryHiVPN2X;
211 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
212
213 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
214 context.badVPN2 = contextBadVPN2;
215 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
216 setExceptionState(tc, 0x3);
217
218
219 // Set new PC
220 Addr HandlerBase;
221 // Offset 0x180 - General Exception Vector
222 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
223 setHandlerPC(HandlerBase, tc);
224}
225
226void
227AddressErrorFault::invoke(ThreadContext *tc, StaticInstPtr inst)
228{
229 DPRINTF(MipsPRA, "%s encountered.\n", name());
247 setExceptionState(tc, 0x4);
248 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
230 setExceptionState(tc, store ? 0x5 : 0x4);
231 tc->setMiscRegNoEffect(MISCREG_BADVADDR, vaddr);
249
250 // Set new PC
251 Addr HandlerBase;
252 // Offset 0x180 - General Exception Vector
253 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
254 setHandlerPC(HandlerBase, tc);
255}
256
257void
258ItbInvalidFault::invoke(ThreadContext *tc, StaticInstPtr inst)
259{
260 DPRINTF(MipsPRA, "%s encountered.\n", name());
261 setExceptionState(tc, 0x2);
262 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
263 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
264 entryHi.asid = entryHiAsid;
265 entryHi.vpn2 = entryHiVPN2;
266 entryHi.vpn2x = entryHiVPN2X;
267 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
268
269 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
270 context.badVPN2 = contextBadVPN2;
271 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
272
273
274 // Set new PC
275 Addr HandlerBase;
276 // Offset 0x180 - General Exception Vector
277 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
278 setHandlerPC(HandlerBase,tc);
279 DPRINTF(MipsPRA, "Exception Handler At: %x , EPC set to %x\n",
280 HandlerBase, tc->readMiscReg(MISCREG_EPC));
281}
282
283void
284ItbRefillFault::invoke(ThreadContext *tc, StaticInstPtr inst)
285{
286 DPRINTF(MipsPRA, "%s encountered (%x).\n", name(), MISCREG_BADVADDR);
287 Addr HandlerBase;
288 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
289 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
290 entryHi.asid = entryHiAsid;
291 entryHi.vpn2 = entryHiVPN2;
292 entryHi.vpn2x = entryHiVPN2X;
293 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
294 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
295 context.badVPN2 = contextBadVPN2;
296 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
297
298 StatusReg status = tc->readMiscReg(MISCREG_STATUS);
299 // Since handler depends on EXL bit, must check EXL bit before setting it!!
300 // See MIPS ARM Vol 3, Revision 2, Page 38
301 if (status.exl == 1) {
302 // Offset 0x180 - General Exception Vector
303 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
304 } else {
305 // Offset 0x000
306 HandlerBase = tc->readMiscReg(MISCREG_EBASE);
307 }
308
309 setExceptionState(tc, 0x2);
310 setHandlerPC(HandlerBase, tc);
311}
312
313void
314DtbRefillFault::invoke(ThreadContext *tc, StaticInstPtr inst)
315{
316 // Set new PC
317 DPRINTF(MipsPRA, "%s encountered.\n", name());
318 Addr HandlerBase;
319 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
320 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
321 entryHi.asid = entryHiAsid;
322 entryHi.vpn2 = entryHiVPN2;
323 entryHi.vpn2x = entryHiVPN2X;
324 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
325
326 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
327 context.badVPN2 = contextBadVPN2;
328 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
329
330 StatusReg status = tc->readMiscReg(MISCREG_STATUS);
331 // Since handler depends on EXL bit, must check EXL bit before setting it!!
332 // See MIPS ARM Vol 3, Revision 2, Page 38
333 if (status.exl) {
334 // Offset 0x180 - General Exception Vector
335 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
336 } else {
337 // Offset 0x000
338 HandlerBase = tc->readMiscReg(MISCREG_EBASE);
339 }
340
341 setExceptionState(tc, 0x3);
342
343 setHandlerPC(HandlerBase, tc);
344}
345
346void
347TLBModifiedFault::invoke(ThreadContext *tc, StaticInstPtr inst)
348{
349 DPRINTF(MipsPRA, "%s encountered.\n", name());
350 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
351 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
352 entryHi.asid = entryHiAsid;
353 entryHi.vpn2 = entryHiVPN2;
354 entryHi.vpn2x = entryHiVPN2X;
355 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
356
357 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
358 context.badVPN2 = contextBadVPN2;
359 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
360
361 // Set new PC
362 Addr HandlerBase;
363 // Offset 0x180 - General Exception Vector
364 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
365 setExceptionState(tc, 0x1);
366 setHandlerPC(HandlerBase, tc);
367
368}
369
370void
371SystemCallFault::invoke(ThreadContext *tc, StaticInstPtr inst)
372{
373 DPRINTF(MipsPRA, "%s encountered.\n", name());
374 setExceptionState(tc, 0x8);
375
376 // Set new PC
377 Addr HandlerBase;
378 // Offset 0x180 - General Exception Vector
379 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
380 setHandlerPC(HandlerBase, tc);
381}
382
383void
384InterruptFault::invoke(ThreadContext *tc, StaticInstPtr inst)
385{
386#if FULL_SYSTEM
387 DPRINTF(MipsPRA, "%s encountered.\n", name());
388 setExceptionState(tc, 0x0A);
389 Addr HandlerBase;
390
391 CauseReg cause = tc->readMiscRegNoEffect(MISCREG_CAUSE);
392 if (cause.iv) {
393 // Offset 200 for release 2
394 HandlerBase = 0x20 + vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
395 } else {
396 //Ofset at 180 for release 1
397 HandlerBase = vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
398 }
399
400 setHandlerPC(HandlerBase, tc);
401#endif
402}
403
404#endif // FULL_SYSTEM
405
406void
407ResetFault::invoke(ThreadContext *tc, StaticInstPtr inst)
408{
409#if FULL_SYSTEM
410 DPRINTF(MipsPRA, "%s encountered.\n", name());
411 /* All reset activity must be invoked from here */
412 tc->setPC(vect());
413 tc->setNextPC(vect() + sizeof(MachInst));
414 tc->setNextNPC(vect() + sizeof(MachInst) + sizeof(MachInst));
415 DPRINTF(MipsPRA, "ResetFault::invoke : PC set to %x", tc->readPC());
416#endif
417
418 // Set Coprocessor 1 (Floating Point) To Usable
419 StatusReg status = tc->readMiscRegNoEffect(MISCREG_STATUS);
420 status.cu.cu1 = 1;
421 tc->setMiscReg(MISCREG_STATUS, status);
422}
423
424void
425ReservedInstructionFault::invoke(ThreadContext *tc, StaticInstPtr inst)
426{
427#if FULL_SYSTEM
428 DPRINTF(MipsPRA, "%s encountered.\n", name());
429 setExceptionState(tc, 0x0A);
430 Addr HandlerBase;
431 // Offset 0x180 - General Exception Vector
432 HandlerBase = vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
433 setHandlerPC(HandlerBase, tc);
434#else
435 panic("%s encountered.\n", name());
436#endif
437}
438
439void
440ThreadFault::invoke(ThreadContext *tc, StaticInstPtr inst)
441{
442 DPRINTF(MipsPRA, "%s encountered.\n", name());
443 panic("%s encountered.\n", name());
444}
445
446void
447DspStateDisabledFault::invoke(ThreadContext *tc, StaticInstPtr inst)
448{
449 DPRINTF(MipsPRA, "%s encountered.\n", name());
450 panic("%s encountered.\n", name());
451}
452
453void
454CoprocessorUnusableFault::invoke(ThreadContext *tc, StaticInstPtr inst)
455{
456#if FULL_SYSTEM
457 DPRINTF(MipsPRA, "%s encountered.\n", name());
458 setExceptionState(tc, 0xb);
459 // The ID of the coprocessor causing the exception is stored in
460 // CoprocessorUnusableFault::coProcID
461 CauseReg cause = tc->readMiscReg(MISCREG_CAUSE);
462 cause.ce = coProcID;
463 tc->setMiscRegNoEffect(MISCREG_CAUSE, cause);
464
465 Addr HandlerBase;
466 // Offset 0x180 - General Exception Vector
467 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
468 setHandlerPC(HandlerBase, tc);
469
470#else
471 warn("%s (CP%d) encountered.\n", name(), coProcID);
472#endif
473}
474
475} // namespace MipsISA
476
232
233 // Set new PC
234 Addr HandlerBase;
235 // Offset 0x180 - General Exception Vector
236 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
237 setHandlerPC(HandlerBase, tc);
238}
239
240void
241ItbInvalidFault::invoke(ThreadContext *tc, StaticInstPtr inst)
242{
243 DPRINTF(MipsPRA, "%s encountered.\n", name());
244 setExceptionState(tc, 0x2);
245 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
246 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
247 entryHi.asid = entryHiAsid;
248 entryHi.vpn2 = entryHiVPN2;
249 entryHi.vpn2x = entryHiVPN2X;
250 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
251
252 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
253 context.badVPN2 = contextBadVPN2;
254 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
255
256
257 // Set new PC
258 Addr HandlerBase;
259 // Offset 0x180 - General Exception Vector
260 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
261 setHandlerPC(HandlerBase,tc);
262 DPRINTF(MipsPRA, "Exception Handler At: %x , EPC set to %x\n",
263 HandlerBase, tc->readMiscReg(MISCREG_EPC));
264}
265
266void
267ItbRefillFault::invoke(ThreadContext *tc, StaticInstPtr inst)
268{
269 DPRINTF(MipsPRA, "%s encountered (%x).\n", name(), MISCREG_BADVADDR);
270 Addr HandlerBase;
271 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
272 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
273 entryHi.asid = entryHiAsid;
274 entryHi.vpn2 = entryHiVPN2;
275 entryHi.vpn2x = entryHiVPN2X;
276 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
277 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
278 context.badVPN2 = contextBadVPN2;
279 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
280
281 StatusReg status = tc->readMiscReg(MISCREG_STATUS);
282 // Since handler depends on EXL bit, must check EXL bit before setting it!!
283 // See MIPS ARM Vol 3, Revision 2, Page 38
284 if (status.exl == 1) {
285 // Offset 0x180 - General Exception Vector
286 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
287 } else {
288 // Offset 0x000
289 HandlerBase = tc->readMiscReg(MISCREG_EBASE);
290 }
291
292 setExceptionState(tc, 0x2);
293 setHandlerPC(HandlerBase, tc);
294}
295
296void
297DtbRefillFault::invoke(ThreadContext *tc, StaticInstPtr inst)
298{
299 // Set new PC
300 DPRINTF(MipsPRA, "%s encountered.\n", name());
301 Addr HandlerBase;
302 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
303 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
304 entryHi.asid = entryHiAsid;
305 entryHi.vpn2 = entryHiVPN2;
306 entryHi.vpn2x = entryHiVPN2X;
307 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
308
309 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
310 context.badVPN2 = contextBadVPN2;
311 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
312
313 StatusReg status = tc->readMiscReg(MISCREG_STATUS);
314 // Since handler depends on EXL bit, must check EXL bit before setting it!!
315 // See MIPS ARM Vol 3, Revision 2, Page 38
316 if (status.exl) {
317 // Offset 0x180 - General Exception Vector
318 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
319 } else {
320 // Offset 0x000
321 HandlerBase = tc->readMiscReg(MISCREG_EBASE);
322 }
323
324 setExceptionState(tc, 0x3);
325
326 setHandlerPC(HandlerBase, tc);
327}
328
329void
330TLBModifiedFault::invoke(ThreadContext *tc, StaticInstPtr inst)
331{
332 DPRINTF(MipsPRA, "%s encountered.\n", name());
333 tc->setMiscRegNoEffect(MISCREG_BADVADDR, badVAddr);
334 EntryHiReg entryHi = tc->readMiscReg(MISCREG_ENTRYHI);
335 entryHi.asid = entryHiAsid;
336 entryHi.vpn2 = entryHiVPN2;
337 entryHi.vpn2x = entryHiVPN2X;
338 tc->setMiscRegNoEffect(MISCREG_ENTRYHI, entryHi);
339
340 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT);
341 context.badVPN2 = contextBadVPN2;
342 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
343
344 // Set new PC
345 Addr HandlerBase;
346 // Offset 0x180 - General Exception Vector
347 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
348 setExceptionState(tc, 0x1);
349 setHandlerPC(HandlerBase, tc);
350
351}
352
353void
354SystemCallFault::invoke(ThreadContext *tc, StaticInstPtr inst)
355{
356 DPRINTF(MipsPRA, "%s encountered.\n", name());
357 setExceptionState(tc, 0x8);
358
359 // Set new PC
360 Addr HandlerBase;
361 // Offset 0x180 - General Exception Vector
362 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
363 setHandlerPC(HandlerBase, tc);
364}
365
366void
367InterruptFault::invoke(ThreadContext *tc, StaticInstPtr inst)
368{
369#if FULL_SYSTEM
370 DPRINTF(MipsPRA, "%s encountered.\n", name());
371 setExceptionState(tc, 0x0A);
372 Addr HandlerBase;
373
374 CauseReg cause = tc->readMiscRegNoEffect(MISCREG_CAUSE);
375 if (cause.iv) {
376 // Offset 200 for release 2
377 HandlerBase = 0x20 + vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
378 } else {
379 //Ofset at 180 for release 1
380 HandlerBase = vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
381 }
382
383 setHandlerPC(HandlerBase, tc);
384#endif
385}
386
387#endif // FULL_SYSTEM
388
389void
390ResetFault::invoke(ThreadContext *tc, StaticInstPtr inst)
391{
392#if FULL_SYSTEM
393 DPRINTF(MipsPRA, "%s encountered.\n", name());
394 /* All reset activity must be invoked from here */
395 tc->setPC(vect());
396 tc->setNextPC(vect() + sizeof(MachInst));
397 tc->setNextNPC(vect() + sizeof(MachInst) + sizeof(MachInst));
398 DPRINTF(MipsPRA, "ResetFault::invoke : PC set to %x", tc->readPC());
399#endif
400
401 // Set Coprocessor 1 (Floating Point) To Usable
402 StatusReg status = tc->readMiscRegNoEffect(MISCREG_STATUS);
403 status.cu.cu1 = 1;
404 tc->setMiscReg(MISCREG_STATUS, status);
405}
406
407void
408ReservedInstructionFault::invoke(ThreadContext *tc, StaticInstPtr inst)
409{
410#if FULL_SYSTEM
411 DPRINTF(MipsPRA, "%s encountered.\n", name());
412 setExceptionState(tc, 0x0A);
413 Addr HandlerBase;
414 // Offset 0x180 - General Exception Vector
415 HandlerBase = vect() + tc->readMiscRegNoEffect(MISCREG_EBASE);
416 setHandlerPC(HandlerBase, tc);
417#else
418 panic("%s encountered.\n", name());
419#endif
420}
421
422void
423ThreadFault::invoke(ThreadContext *tc, StaticInstPtr inst)
424{
425 DPRINTF(MipsPRA, "%s encountered.\n", name());
426 panic("%s encountered.\n", name());
427}
428
429void
430DspStateDisabledFault::invoke(ThreadContext *tc, StaticInstPtr inst)
431{
432 DPRINTF(MipsPRA, "%s encountered.\n", name());
433 panic("%s encountered.\n", name());
434}
435
436void
437CoprocessorUnusableFault::invoke(ThreadContext *tc, StaticInstPtr inst)
438{
439#if FULL_SYSTEM
440 DPRINTF(MipsPRA, "%s encountered.\n", name());
441 setExceptionState(tc, 0xb);
442 // The ID of the coprocessor causing the exception is stored in
443 // CoprocessorUnusableFault::coProcID
444 CauseReg cause = tc->readMiscReg(MISCREG_CAUSE);
445 cause.ce = coProcID;
446 tc->setMiscRegNoEffect(MISCREG_CAUSE, cause);
447
448 Addr HandlerBase;
449 // Offset 0x180 - General Exception Vector
450 HandlerBase = vect() + tc->readMiscReg(MISCREG_EBASE);
451 setHandlerPC(HandlerBase, tc);
452
453#else
454 warn("%s (CP%d) encountered.\n", name(), coProcID);
455#endif
456}
457
458} // namespace MipsISA
459