01d43f3385842b2a49b7a770b70a0afd5422ead3
[gem5.git] / src / arch / arm / faults.cc
1 /*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2003-2005 The Regents of The University of Michigan
15 * Copyright (c) 2007-2008 The Florida State University
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Ali Saidi
42 * Gabe Black
43 */
44
45 #include "arch/arm/faults.hh"
46 #include "cpu/thread_context.hh"
47 #include "cpu/base.hh"
48 #include "base/trace.hh"
49
50 namespace ArmISA
51 {
52
53 template<> ArmFault::FaultVals ArmFaultVals<Reset>::vals =
54 {"reset", 0x00, MODE_SVC, 0, 0, true, true};
55
56 template<> ArmFault::FaultVals ArmFaultVals<UndefinedInstruction>::vals =
57 {"Undefined Instruction", 0x04, MODE_UNDEFINED, 4 ,2, false, false} ;
58
59 template<> ArmFault::FaultVals ArmFaultVals<SupervisorCall>::vals =
60 {"Supervisor Call", 0x08, MODE_SVC, 4, 2, false, false};
61
62 template<> ArmFault::FaultVals ArmFaultVals<PrefetchAbort>::vals =
63 {"Prefetch Abort", 0x0C, MODE_ABORT, 4, 4, true, false};
64
65 template<> ArmFault::FaultVals ArmFaultVals<DataAbort>::vals =
66 {"Data Abort", 0x10, MODE_ABORT, 8, 8, true, false};
67
68 template<> ArmFault::FaultVals ArmFaultVals<Interrupt>::vals =
69 {"IRQ", 0x18, MODE_IRQ, 4, 4, true, false};
70
71 template<> ArmFault::FaultVals ArmFaultVals<FastInterrupt>::vals =
72 {"FIQ", 0x1C, MODE_FIQ, 4, 4, true, true};
73
74 template<> ArmFault::FaultVals ArmFaultVals<FlushPipe>::vals =
75 {"Pipe Flush", 0x00, MODE_SVC, 0, 0, true, true}; // some dummy values
76
77 template<> ArmFault::FaultVals ArmFaultVals<ReExec>::vals =
78 {"ReExec Flush", 0x00, MODE_SVC, 0, 0, true, true}; // some dummy values
79
80 Addr
81 ArmFault::getVector(ThreadContext *tc)
82 {
83 // ARM ARM B1-3
84
85 SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
86
87 // panic if SCTLR.VE because I have no idea what to do with vectored
88 // interrupts
89 assert(!sctlr.ve);
90
91 if (!sctlr.v)
92 return offset();
93 return offset() + HighVecs;
94
95 }
96
97 #if FULL_SYSTEM
98
99 void
100 ArmFault::invoke(ThreadContext *tc, StaticInstPtr inst)
101 {
102 // ARM ARM B1.6.3
103 FaultBase::invoke(tc);
104 countStat()++;
105
106 SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
107 CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
108 CPSR saved_cpsr = tc->readMiscReg(MISCREG_CPSR) |
109 tc->readIntReg(INTREG_CONDCODES);
110 Addr curPc M5_VAR_USED = tc->pcState().pc();
111 ITSTATE it = tc->pcState().itstate();
112 saved_cpsr.it2 = it.top6;
113 saved_cpsr.it1 = it.bottom2;
114
115 cpsr.mode = nextMode();
116 cpsr.it1 = cpsr.it2 = 0;
117 cpsr.j = 0;
118
119 cpsr.t = sctlr.te;
120 cpsr.a = cpsr.a | abortDisable();
121 cpsr.f = cpsr.f | fiqDisable();
122 cpsr.i = 1;
123 cpsr.e = sctlr.ee;
124 tc->setMiscReg(MISCREG_CPSR, cpsr);
125 tc->setIntReg(INTREG_LR, curPc +
126 (saved_cpsr.t ? thumbPcOffset() : armPcOffset()));
127
128 switch (nextMode()) {
129 case MODE_FIQ:
130 tc->setMiscReg(MISCREG_SPSR_FIQ, saved_cpsr);
131 break;
132 case MODE_IRQ:
133 tc->setMiscReg(MISCREG_SPSR_IRQ, saved_cpsr);
134 break;
135 case MODE_SVC:
136 tc->setMiscReg(MISCREG_SPSR_SVC, saved_cpsr);
137 break;
138 case MODE_UNDEFINED:
139 tc->setMiscReg(MISCREG_SPSR_UND, saved_cpsr);
140 break;
141 case MODE_ABORT:
142 tc->setMiscReg(MISCREG_SPSR_ABT, saved_cpsr);
143 break;
144 default:
145 panic("unknown Mode\n");
146 }
147
148 Addr newPc = getVector(tc);
149 DPRINTF(Faults, "Invoking Fault:%s cpsr:%#x PC:%#x lr:%#x newVec: %#x\n",
150 name(), cpsr, curPc, tc->readIntReg(INTREG_LR), newPc);
151 PCState pc(newPc);
152 pc.thumb(cpsr.t);
153 pc.nextThumb(pc.thumb());
154 pc.jazelle(cpsr.j);
155 pc.nextJazelle(pc.jazelle());
156 tc->pcState(pc);
157 }
158
159 void
160 Reset::invoke(ThreadContext *tc, StaticInstPtr inst)
161 {
162 tc->getCpuPtr()->clearInterrupts();
163 tc->clearArchRegs();
164 ArmFault::invoke(tc, inst);
165 }
166
167 #else
168
169 void
170 UndefinedInstruction::invoke(ThreadContext *tc, StaticInstPtr inst)
171 {
172 // If the mnemonic isn't defined this has to be an unknown instruction.
173 assert(unknown || mnemonic != NULL);
174 if (disabled) {
175 panic("Attempted to execute disabled instruction "
176 "'%s' (inst 0x%08x)", mnemonic, machInst);
177 } else if (unknown) {
178 panic("Attempted to execute unknown instruction (inst 0x%08x)",
179 machInst);
180 } else {
181 panic("Attempted to execute unimplemented instruction "
182 "'%s' (inst 0x%08x)", mnemonic, machInst);
183 }
184 }
185
186 void
187 SupervisorCall::invoke(ThreadContext *tc, StaticInstPtr inst)
188 {
189 // As of now, there isn't a 32 bit thumb version of this instruction.
190 assert(!machInst.bigThumb);
191 uint32_t callNum;
192 callNum = tc->readIntReg(INTREG_R7);
193 tc->syscall(callNum);
194
195 // Advance the PC since that won't happen automatically.
196 PCState pc = tc->pcState();
197 assert(inst);
198 inst->advancePC(pc);
199 tc->pcState(pc);
200 }
201
202 #endif // FULL_SYSTEM
203
204 template<class T>
205 void
206 AbortFault<T>::invoke(ThreadContext *tc, StaticInstPtr inst)
207 {
208 ArmFaultVals<T>::invoke(tc, inst);
209 FSR fsr = 0;
210 fsr.fsLow = bits(status, 3, 0);
211 fsr.fsHigh = bits(status, 4);
212 fsr.domain = domain;
213 fsr.wnr = (write ? 1 : 0);
214 fsr.ext = 0;
215 tc->setMiscReg(T::FsrIndex, fsr);
216 tc->setMiscReg(T::FarIndex, faultAddr);
217 }
218
219 void
220 FlushPipe::invoke(ThreadContext *tc, StaticInstPtr inst) {
221 DPRINTF(Faults, "Invoking FlushPipe Fault\n");
222
223 // Set the PC to the next instruction of the faulting instruction.
224 // Net effect is simply squashing all instructions behind and
225 // start refetching from the next instruction.
226 PCState pc = tc->pcState();
227 assert(inst);
228 inst->advancePC(pc);
229 tc->pcState(pc);
230 }
231
232 void
233 ReExec::invoke(ThreadContext *tc, StaticInstPtr inst) {
234 DPRINTF(Faults, "Invoking ReExec Fault\n");
235
236 // Set the PC to then the faulting instruction.
237 // Net effect is simply squashing all instructions including this
238 // instruction and refetching/rexecuting current instruction
239 PCState pc = tc->pcState();
240 tc->pcState(pc);
241 }
242
243 template void AbortFault<PrefetchAbort>::invoke(ThreadContext *tc,
244 StaticInstPtr inst);
245 template void AbortFault<DataAbort>::invoke(ThreadContext *tc,
246 StaticInstPtr inst);
247
248 // return via SUBS pc, lr, xxx; rfe, movs, ldm
249
250 } // namespace ArmISA