tlb.cc (7436:b578349f9371) tlb.cc (7437:5853fbdfba9b)
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) 2001-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Ali Saidi
41 * Nathan Binkert
42 * Steve Reinhardt
43 */
44
45#include <string>
46#include <vector>
47
48#include "arch/arm/faults.hh"
49#include "arch/arm/pagetable.hh"
50#include "arch/arm/tlb.hh"
51#include "arch/arm/utility.hh"
52#include "base/inifile.hh"
53#include "base/str.hh"
54#include "base/trace.hh"
55#include "cpu/thread_context.hh"
56#include "mem/page_table.hh"
57#include "params/ArmTLB.hh"
58#include "sim/process.hh"
59
60#if FULL_SYSTEM
61#include "arch/arm/table_walker.hh"
62#endif
63
64using namespace std;
65using namespace ArmISA;
66
67TLB::TLB(const Params *p)
68 : BaseTLB(p), size(p->size), nlu(0)
69#if FULL_SYSTEM
70 , tableWalker(p->walker)
71#endif
72{
73 table = new TlbEntry[size];
74 memset(table, 0, sizeof(TlbEntry[size]));
75
76#if FULL_SYSTEM
77 tableWalker->setTlb(this);
78#endif
79}
80
81TLB::~TLB()
82{
83 if (table)
84 delete [] table;
85}
86
87TlbEntry*
88TLB::lookup(Addr va, uint8_t cid)
89{
90 // XXX This should either turn into a TlbMap or add caching
91
92 TlbEntry *retval = NULL;
93
94 // Do some kind of caching, fast indexing, anything
95
96 int x = 0;
97 while (retval == NULL && x < size) {
98 if (table[x].match(va, cid)) {
99 retval = &table[x];
100 if (x == nlu)
101 nextnlu();
102
103 break;
104 }
105 x++;
106 }
107
108 DPRINTF(TLBVerbose, "Lookup %#x, cid %#x -> %s ppn %#x size: %#x pa: %#x ap:%d\n",
109 va, cid, retval ? "hit" : "miss", retval ? retval->pfn : 0,
110 retval ? retval->size : 0, retval ? retval->pAddr(va) : 0,
111 retval ? retval->ap : 0);
112 ;
113 return retval;
114}
115
116// insert a new TLB entry
117void
118TLB::insert(Addr addr, TlbEntry &entry)
119{
120 DPRINTF(TLB, "Inserting entry into TLB with pfn:%#x size:%#x vpn: %#x"
121 " asid:%d N:%d global:%d valid:%d nc:%d sNp:%d xn:%d ap:%#x"
122 " domain:%#x\n", entry.pfn, entry.size, entry.vpn, entry.asid,
123 entry.N, entry.global, entry.valid, entry.nonCacheable, entry.sNp,
124 entry.xn, entry.ap, entry.domain);
125
126 if (table[nlu].valid)
127 DPRINTF(TLB, " - Replacing Valid entry %#x, asn %d ppn %#x size: %#x ap:%d\n",
128 table[nlu].vpn << table[nlu].N, table[nlu].asid, table[nlu].pfn << table[nlu].N,
129 table[nlu].size, table[nlu].ap);
130
131 // XXX Update caching, lookup table etc
132 table[nlu] = entry;
133
134 // XXX Figure out how entries are generally inserted in ARM
135 nextnlu();
136}
137
138void
139TLB::printTlb()
140{
141 int x = 0;
142 TlbEntry *te;
143 DPRINTF(TLB, "Current TLB contents:\n");
144 while (x < size) {
145 te = &table[x];
146 if (te->valid)
147 DPRINTF(TLB, " * %#x, asn %d ppn %#x size: %#x ap:%d\n",
148 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
149 x++;
150 }
151}
152
153
154void
155TLB::flushAll()
156{
157 DPRINTF(TLB, "Flushing all TLB entries\n");
158 int x = 0;
159 TlbEntry *te;
160 while (x < size) {
161 te = &table[x];
162 if (te->valid)
163 DPRINTF(TLB, " - %#x, asn %d ppn %#x size: %#x ap:%d\n",
164 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
165 x++;
166 }
167
168 memset(table, 0, sizeof(TlbEntry[size]));
169 nlu = 0;
170}
171
172
173void
174TLB::flushMvaAsid(Addr mva, uint64_t asn)
175{
176 DPRINTF(TLB, "Flushing mva %#x asid: %#x\n", mva, asn);
177 TlbEntry *te;
178
179 te = lookup(mva, asn);
180 while (te != NULL) {
181 DPRINTF(TLB, " - %#x, asn %d ppn %#x size: %#x ap:%d\n",
182 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
183 te->valid = false;
184 te = lookup(mva,asn);
185 }
186}
187
188void
189TLB::flushAsid(uint64_t asn)
190{
191 DPRINTF(TLB, "Flushing all entries with asid: %#x\n", asn);
192
193 int x = 0;
194 TlbEntry *te;
195
196 while (x < size) {
197 te = &table[x];
198 if (te->asid == asn) {
199 te->valid = false;
200 DPRINTF(TLB, " - %#x, asn %d ppn %#x size: %#x ap:%d\n",
201 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
202 }
203 x++;
204 }
205}
206
207void
208TLB::flushMva(Addr mva)
209{
210 DPRINTF(TLB, "Flushing all entries with mva: %#x\n", mva);
211
212 int x = 0;
213 TlbEntry *te;
214
215 while (x < size) {
216 te = &table[x];
217 Addr v = te->vpn << te->N;
218 if (mva >= v && mva < v + te->size) {
219 te->valid = false;
220 DPRINTF(TLB, " - %#x, asn %d ppn %#x size: %#x ap:%d\n",
221 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
222 }
223 x++;
224 }
225}
226
227void
228TLB::serialize(ostream &os)
229{
230 panic("Implement Serialize\n");
231}
232
233void
234TLB::unserialize(Checkpoint *cp, const string &section)
235{
236
237 panic("Need to properly unserialize TLB\n");
238}
239
240void
241TLB::regStats()
242{
243 read_hits
244 .name(name() + ".read_hits")
245 .desc("DTB read hits")
246 ;
247
248 read_misses
249 .name(name() + ".read_misses")
250 .desc("DTB read misses")
251 ;
252
253
254 read_accesses
255 .name(name() + ".read_accesses")
256 .desc("DTB read accesses")
257 ;
258
259 write_hits
260 .name(name() + ".write_hits")
261 .desc("DTB write hits")
262 ;
263
264 write_misses
265 .name(name() + ".write_misses")
266 .desc("DTB write misses")
267 ;
268
269
270 write_accesses
271 .name(name() + ".write_accesses")
272 .desc("DTB write accesses")
273 ;
274
275 hits
276 .name(name() + ".hits")
277 .desc("DTB hits")
278 ;
279
280 misses
281 .name(name() + ".misses")
282 .desc("DTB misses")
283 ;
284
285 invalids
286 .name(name() + ".invalids")
287 .desc("DTB access violations")
288 ;
289
290 accesses
291 .name(name() + ".accesses")
292 .desc("DTB accesses")
293 ;
294
295 hits = read_hits + write_hits;
296 misses = read_misses + write_misses;
297 accesses = read_accesses + write_accesses;
298}
299
300#if !FULL_SYSTEM
301Fault
302TLB::translateSe(RequestPtr req, ThreadContext *tc, Mode mode,
303 Translation *translation, bool &delay, bool timing)
304{
305 // XXX Cache misc registers and have miscreg write function inv cache
306 Addr vaddr = req->getVaddr() & ~PcModeMask;
307 SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
308 uint32_t flags = req->getFlags();
309
310 bool is_fetch = (mode == Execute);
311 bool is_write = (mode == Write);
312
313 if (!is_fetch) {
314 assert(flags & MustBeOne);
315 if (sctlr.a || !(flags & AllowUnaligned)) {
316 if (vaddr & flags & AlignmentMask) {
317 return new DataAbort(vaddr, 0, is_write, ArmFault::AlignmentFault);
318 }
319 }
320 }
321
322 Addr paddr;
323 Process *p = tc->getProcessPtr();
324
325 if (!p->pTable->translate(vaddr, paddr))
326 return Fault(new GenericPageTableFault(vaddr));
327 req->setPaddr(paddr);
328
329 return NoFault;
330}
331
332#else // FULL_SYSTEM
333
334Fault
335TLB::trickBoxCheck(RequestPtr req, Mode mode, uint8_t domain, bool sNp)
336{
337 return NoFault;
338}
339
340Fault
341TLB::walkTrickBoxCheck(Addr pa, Addr va, Addr sz, bool is_exec,
342 bool is_write, uint8_t domain, bool sNp)
343{
344 return NoFault;
345}
346
347Fault
348TLB::translateFs(RequestPtr req, ThreadContext *tc, Mode mode,
349 Translation *translation, bool &delay, bool timing)
350{
351 // XXX Cache misc registers and have miscreg write function inv cache
352 Addr vaddr = req->getVaddr() & ~PcModeMask;
353 SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
354 CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
355 uint32_t flags = req->getFlags();
356
357 bool is_fetch = (mode == Execute);
358 bool is_write = (mode == Write);
359 bool is_priv = (cpsr.mode != MODE_USER) && !(flags & UserMode);
360
361 DPRINTF(TLBVerbose, "CPSR is user:%d UserMode:%d\n", cpsr.mode == MODE_USER, flags
362 & UserMode);
363 if (!is_fetch) {
364 assert(flags & MustBeOne);
365 if (sctlr.a || !(flags & AllowUnaligned)) {
366 if (vaddr & flags & AlignmentMask) {
367 return new DataAbort(vaddr, 0, is_write, ArmFault::AlignmentFault);
368 }
369 }
370 }
371
372 uint32_t context_id = tc->readMiscReg(MISCREG_CONTEXTIDR);
373 Fault fault;
374
375
376 if (!sctlr.m) {
377 req->setPaddr(vaddr);
378 if (sctlr.tre == 0) {
379 req->setFlags(Request::UNCACHEABLE);
380 } else {
381 PRRR prrr = tc->readMiscReg(MISCREG_PRRR);
382 NMRR nmrr = tc->readMiscReg(MISCREG_NMRR);
383
384 if (nmrr.ir0 == 0 || nmrr.or0 == 0 || prrr.tr0 != 0x2)
385 req->setFlags(Request::UNCACHEABLE);
386 }
387
388 // Set memory attributes
389 TlbEntry temp_te;
390 tableWalker->memAttrs(temp_te, 0, 1);
391 temp_te.shareable = true;
392 DPRINTF(TLBVerbose, "(No MMU) setting memory attributes: shareable:\
393 %d, innerAttrs: %d, outerAttrs: %d\n", temp_te.shareable,
394 temp_te.innerAttrs, temp_te.outerAttrs);
395 setAttr(temp_te.attributes);
396
397 return trickBoxCheck(req, mode, 0, false);
398 }
399
400 DPRINTF(TLBVerbose, "Translating vaddr=%#x context=%d\n", vaddr, context_id);
401 // Translation enabled
402
403 TlbEntry *te = lookup(vaddr, context_id);
404 if (te == NULL) {
405 // start translation table walk, pass variables rather than
406 // re-retreaving in table walker for speed
407 DPRINTF(TLB, "TLB Miss: Starting hardware table walker for %#x(%d)\n",
408 vaddr, context_id);
409 fault = tableWalker->walk(req, tc, context_id, mode, translation,
410 timing);
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) 2001-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Ali Saidi
41 * Nathan Binkert
42 * Steve Reinhardt
43 */
44
45#include <string>
46#include <vector>
47
48#include "arch/arm/faults.hh"
49#include "arch/arm/pagetable.hh"
50#include "arch/arm/tlb.hh"
51#include "arch/arm/utility.hh"
52#include "base/inifile.hh"
53#include "base/str.hh"
54#include "base/trace.hh"
55#include "cpu/thread_context.hh"
56#include "mem/page_table.hh"
57#include "params/ArmTLB.hh"
58#include "sim/process.hh"
59
60#if FULL_SYSTEM
61#include "arch/arm/table_walker.hh"
62#endif
63
64using namespace std;
65using namespace ArmISA;
66
67TLB::TLB(const Params *p)
68 : BaseTLB(p), size(p->size), nlu(0)
69#if FULL_SYSTEM
70 , tableWalker(p->walker)
71#endif
72{
73 table = new TlbEntry[size];
74 memset(table, 0, sizeof(TlbEntry[size]));
75
76#if FULL_SYSTEM
77 tableWalker->setTlb(this);
78#endif
79}
80
81TLB::~TLB()
82{
83 if (table)
84 delete [] table;
85}
86
87TlbEntry*
88TLB::lookup(Addr va, uint8_t cid)
89{
90 // XXX This should either turn into a TlbMap or add caching
91
92 TlbEntry *retval = NULL;
93
94 // Do some kind of caching, fast indexing, anything
95
96 int x = 0;
97 while (retval == NULL && x < size) {
98 if (table[x].match(va, cid)) {
99 retval = &table[x];
100 if (x == nlu)
101 nextnlu();
102
103 break;
104 }
105 x++;
106 }
107
108 DPRINTF(TLBVerbose, "Lookup %#x, cid %#x -> %s ppn %#x size: %#x pa: %#x ap:%d\n",
109 va, cid, retval ? "hit" : "miss", retval ? retval->pfn : 0,
110 retval ? retval->size : 0, retval ? retval->pAddr(va) : 0,
111 retval ? retval->ap : 0);
112 ;
113 return retval;
114}
115
116// insert a new TLB entry
117void
118TLB::insert(Addr addr, TlbEntry &entry)
119{
120 DPRINTF(TLB, "Inserting entry into TLB with pfn:%#x size:%#x vpn: %#x"
121 " asid:%d N:%d global:%d valid:%d nc:%d sNp:%d xn:%d ap:%#x"
122 " domain:%#x\n", entry.pfn, entry.size, entry.vpn, entry.asid,
123 entry.N, entry.global, entry.valid, entry.nonCacheable, entry.sNp,
124 entry.xn, entry.ap, entry.domain);
125
126 if (table[nlu].valid)
127 DPRINTF(TLB, " - Replacing Valid entry %#x, asn %d ppn %#x size: %#x ap:%d\n",
128 table[nlu].vpn << table[nlu].N, table[nlu].asid, table[nlu].pfn << table[nlu].N,
129 table[nlu].size, table[nlu].ap);
130
131 // XXX Update caching, lookup table etc
132 table[nlu] = entry;
133
134 // XXX Figure out how entries are generally inserted in ARM
135 nextnlu();
136}
137
138void
139TLB::printTlb()
140{
141 int x = 0;
142 TlbEntry *te;
143 DPRINTF(TLB, "Current TLB contents:\n");
144 while (x < size) {
145 te = &table[x];
146 if (te->valid)
147 DPRINTF(TLB, " * %#x, asn %d ppn %#x size: %#x ap:%d\n",
148 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
149 x++;
150 }
151}
152
153
154void
155TLB::flushAll()
156{
157 DPRINTF(TLB, "Flushing all TLB entries\n");
158 int x = 0;
159 TlbEntry *te;
160 while (x < size) {
161 te = &table[x];
162 if (te->valid)
163 DPRINTF(TLB, " - %#x, asn %d ppn %#x size: %#x ap:%d\n",
164 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
165 x++;
166 }
167
168 memset(table, 0, sizeof(TlbEntry[size]));
169 nlu = 0;
170}
171
172
173void
174TLB::flushMvaAsid(Addr mva, uint64_t asn)
175{
176 DPRINTF(TLB, "Flushing mva %#x asid: %#x\n", mva, asn);
177 TlbEntry *te;
178
179 te = lookup(mva, asn);
180 while (te != NULL) {
181 DPRINTF(TLB, " - %#x, asn %d ppn %#x size: %#x ap:%d\n",
182 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
183 te->valid = false;
184 te = lookup(mva,asn);
185 }
186}
187
188void
189TLB::flushAsid(uint64_t asn)
190{
191 DPRINTF(TLB, "Flushing all entries with asid: %#x\n", asn);
192
193 int x = 0;
194 TlbEntry *te;
195
196 while (x < size) {
197 te = &table[x];
198 if (te->asid == asn) {
199 te->valid = false;
200 DPRINTF(TLB, " - %#x, asn %d ppn %#x size: %#x ap:%d\n",
201 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
202 }
203 x++;
204 }
205}
206
207void
208TLB::flushMva(Addr mva)
209{
210 DPRINTF(TLB, "Flushing all entries with mva: %#x\n", mva);
211
212 int x = 0;
213 TlbEntry *te;
214
215 while (x < size) {
216 te = &table[x];
217 Addr v = te->vpn << te->N;
218 if (mva >= v && mva < v + te->size) {
219 te->valid = false;
220 DPRINTF(TLB, " - %#x, asn %d ppn %#x size: %#x ap:%d\n",
221 te->vpn << te->N, te->asid, te->pfn << te->N, te->size, te->ap);
222 }
223 x++;
224 }
225}
226
227void
228TLB::serialize(ostream &os)
229{
230 panic("Implement Serialize\n");
231}
232
233void
234TLB::unserialize(Checkpoint *cp, const string &section)
235{
236
237 panic("Need to properly unserialize TLB\n");
238}
239
240void
241TLB::regStats()
242{
243 read_hits
244 .name(name() + ".read_hits")
245 .desc("DTB read hits")
246 ;
247
248 read_misses
249 .name(name() + ".read_misses")
250 .desc("DTB read misses")
251 ;
252
253
254 read_accesses
255 .name(name() + ".read_accesses")
256 .desc("DTB read accesses")
257 ;
258
259 write_hits
260 .name(name() + ".write_hits")
261 .desc("DTB write hits")
262 ;
263
264 write_misses
265 .name(name() + ".write_misses")
266 .desc("DTB write misses")
267 ;
268
269
270 write_accesses
271 .name(name() + ".write_accesses")
272 .desc("DTB write accesses")
273 ;
274
275 hits
276 .name(name() + ".hits")
277 .desc("DTB hits")
278 ;
279
280 misses
281 .name(name() + ".misses")
282 .desc("DTB misses")
283 ;
284
285 invalids
286 .name(name() + ".invalids")
287 .desc("DTB access violations")
288 ;
289
290 accesses
291 .name(name() + ".accesses")
292 .desc("DTB accesses")
293 ;
294
295 hits = read_hits + write_hits;
296 misses = read_misses + write_misses;
297 accesses = read_accesses + write_accesses;
298}
299
300#if !FULL_SYSTEM
301Fault
302TLB::translateSe(RequestPtr req, ThreadContext *tc, Mode mode,
303 Translation *translation, bool &delay, bool timing)
304{
305 // XXX Cache misc registers and have miscreg write function inv cache
306 Addr vaddr = req->getVaddr() & ~PcModeMask;
307 SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
308 uint32_t flags = req->getFlags();
309
310 bool is_fetch = (mode == Execute);
311 bool is_write = (mode == Write);
312
313 if (!is_fetch) {
314 assert(flags & MustBeOne);
315 if (sctlr.a || !(flags & AllowUnaligned)) {
316 if (vaddr & flags & AlignmentMask) {
317 return new DataAbort(vaddr, 0, is_write, ArmFault::AlignmentFault);
318 }
319 }
320 }
321
322 Addr paddr;
323 Process *p = tc->getProcessPtr();
324
325 if (!p->pTable->translate(vaddr, paddr))
326 return Fault(new GenericPageTableFault(vaddr));
327 req->setPaddr(paddr);
328
329 return NoFault;
330}
331
332#else // FULL_SYSTEM
333
334Fault
335TLB::trickBoxCheck(RequestPtr req, Mode mode, uint8_t domain, bool sNp)
336{
337 return NoFault;
338}
339
340Fault
341TLB::walkTrickBoxCheck(Addr pa, Addr va, Addr sz, bool is_exec,
342 bool is_write, uint8_t domain, bool sNp)
343{
344 return NoFault;
345}
346
347Fault
348TLB::translateFs(RequestPtr req, ThreadContext *tc, Mode mode,
349 Translation *translation, bool &delay, bool timing)
350{
351 // XXX Cache misc registers and have miscreg write function inv cache
352 Addr vaddr = req->getVaddr() & ~PcModeMask;
353 SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
354 CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
355 uint32_t flags = req->getFlags();
356
357 bool is_fetch = (mode == Execute);
358 bool is_write = (mode == Write);
359 bool is_priv = (cpsr.mode != MODE_USER) && !(flags & UserMode);
360
361 DPRINTF(TLBVerbose, "CPSR is user:%d UserMode:%d\n", cpsr.mode == MODE_USER, flags
362 & UserMode);
363 if (!is_fetch) {
364 assert(flags & MustBeOne);
365 if (sctlr.a || !(flags & AllowUnaligned)) {
366 if (vaddr & flags & AlignmentMask) {
367 return new DataAbort(vaddr, 0, is_write, ArmFault::AlignmentFault);
368 }
369 }
370 }
371
372 uint32_t context_id = tc->readMiscReg(MISCREG_CONTEXTIDR);
373 Fault fault;
374
375
376 if (!sctlr.m) {
377 req->setPaddr(vaddr);
378 if (sctlr.tre == 0) {
379 req->setFlags(Request::UNCACHEABLE);
380 } else {
381 PRRR prrr = tc->readMiscReg(MISCREG_PRRR);
382 NMRR nmrr = tc->readMiscReg(MISCREG_NMRR);
383
384 if (nmrr.ir0 == 0 || nmrr.or0 == 0 || prrr.tr0 != 0x2)
385 req->setFlags(Request::UNCACHEABLE);
386 }
387
388 // Set memory attributes
389 TlbEntry temp_te;
390 tableWalker->memAttrs(temp_te, 0, 1);
391 temp_te.shareable = true;
392 DPRINTF(TLBVerbose, "(No MMU) setting memory attributes: shareable:\
393 %d, innerAttrs: %d, outerAttrs: %d\n", temp_te.shareable,
394 temp_te.innerAttrs, temp_te.outerAttrs);
395 setAttr(temp_te.attributes);
396
397 return trickBoxCheck(req, mode, 0, false);
398 }
399
400 DPRINTF(TLBVerbose, "Translating vaddr=%#x context=%d\n", vaddr, context_id);
401 // Translation enabled
402
403 TlbEntry *te = lookup(vaddr, context_id);
404 if (te == NULL) {
405 // start translation table walk, pass variables rather than
406 // re-retreaving in table walker for speed
407 DPRINTF(TLB, "TLB Miss: Starting hardware table walker for %#x(%d)\n",
408 vaddr, context_id);
409 fault = tableWalker->walk(req, tc, context_id, mode, translation,
410 timing);
411 if (timing)
411 if (timing) {
412 delay = true;
412 delay = true;
413 // for timing mode, return and wait for table walk
414 return fault;
415 }
413 if (fault)
414 return fault;
415
416 te = lookup(vaddr, context_id);
417 if (!te)
418 printTlb();
419 assert(te);
420 }
421
422 // Set memory attributes
423 DPRINTF(TLBVerbose,
424 "Setting memory attributes: shareable: %d, innerAttrs: %d, \
425 outerAttrs: %d\n",
426 te->shareable, te->innerAttrs, te->outerAttrs);
427 setAttr(te->attributes);
428
429 uint32_t dacr = tc->readMiscReg(MISCREG_DACR);
430 switch ( (dacr >> (te->domain * 2)) & 0x3) {
431 case 0:
432 DPRINTF(TLB, "TLB Fault: Data abort on domain. DACR: %#x domain: %#x"
433 " write:%d sNp:%d\n", dacr, te->domain, is_write, te->sNp);
434 if (is_fetch)
435 return new PrefetchAbort(vaddr,
436 (te->sNp ? ArmFault::Domain0 : ArmFault::Domain1));
437 else
438 return new DataAbort(vaddr, te->domain, is_write,
439 (te->sNp ? ArmFault::Domain0 : ArmFault::Domain1));
440 case 1:
441 // Continue with permissions check
442 break;
443 case 2:
444 panic("UNPRED domain\n");
445 case 3:
446 req->setPaddr(te->pAddr(vaddr));
447 fault = trickBoxCheck(req, mode, te->domain, te->sNp);
448 if (fault)
449 return fault;
450 return NoFault;
451 }
452
453 uint8_t ap = te->ap;
454
455 if (sctlr.afe == 1)
456 ap |= 1;
457
458 bool abt;
459
460 /* if (!sctlr.xp)
461 ap &= 0x3;
462*/
463 switch (ap) {
464 case 0:
465 DPRINTF(TLB, "Access permissions 0, checking rs:%#x\n", (int)sctlr.rs);
466 if (!sctlr.xp) {
467 switch ((int)sctlr.rs) {
468 case 2:
469 abt = is_write;
470 break;
471 case 1:
472 abt = is_write || !is_priv;
473 break;
474 case 0:
475 case 3:
476 default:
477 abt = true;
478 break;
479 }
480 } else {
481 abt = true;
482 }
483 break;
484 case 1:
485 abt = !is_priv;
486 break;
487 case 2:
488 abt = !is_priv && is_write;
489 break;
490 case 3:
491 abt = false;
492 break;
493 case 4:
494 panic("UNPRED premissions\n");
495 case 5:
496 abt = !is_priv || is_write;
497 break;
498 case 6:
499 case 7:
500 abt = is_write;
501 break;
502 default:
503 panic("Unknown permissions\n");
504 }
505 if ((is_fetch) && (abt || te->xn)) {
506 DPRINTF(TLB, "TLB Fault: Prefetch abort on permission check. AP:%d priv:%d"
507 " write:%d sNp:%d\n", ap, is_priv, is_write, te->sNp);
508 return new PrefetchAbort(vaddr,
509 (te->sNp ? ArmFault::Permission0 :
510 ArmFault::Permission1));
511 } else if (abt) {
512 DPRINTF(TLB, "TLB Fault: Data abort on permission check. AP:%d priv:%d"
513 " write:%d sNp:%d\n", ap, is_priv, is_write, te->sNp);
514 return new DataAbort(vaddr, te->domain, is_write,
515 (te->sNp ? ArmFault::Permission0 :
516 ArmFault::Permission1));
517 }
518
519 req->setPaddr(te->pAddr(vaddr));
520 // Check for a trickbox generated address fault
521 fault = trickBoxCheck(req, mode, te->domain, te->sNp);
522 if (fault)
523 return fault;
524
525 return NoFault;
526}
527
528#endif
529
530Fault
531TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode)
532{
533 bool delay = false;
534 Fault fault;
535#if FULL_SYSTEM
536 fault = translateFs(req, tc, mode, NULL, delay, false);
537#else
538 fault = translateSe(req, tc, mode, NULL, delay, false);
539#endif
540 assert(!delay);
541 return fault;
542}
543
544Fault
545TLB::translateTiming(RequestPtr req, ThreadContext *tc,
546 Translation *translation, Mode mode)
547{
548 assert(translation);
549 bool delay = false;
550 Fault fault;
551#if FULL_SYSTEM
552 fault = translateFs(req, tc, mode, translation, delay, true);
553#else
554 fault = translateSe(req, tc, mode, translation, delay, true);
555#endif
556 if (!delay)
557 translation->finish(fault, req, tc, mode);
558 return fault;
559}
560
561ArmISA::TLB *
562ArmTLBParams::create()
563{
564 return new ArmISA::TLB(this);
565}
416 if (fault)
417 return fault;
418
419 te = lookup(vaddr, context_id);
420 if (!te)
421 printTlb();
422 assert(te);
423 }
424
425 // Set memory attributes
426 DPRINTF(TLBVerbose,
427 "Setting memory attributes: shareable: %d, innerAttrs: %d, \
428 outerAttrs: %d\n",
429 te->shareable, te->innerAttrs, te->outerAttrs);
430 setAttr(te->attributes);
431
432 uint32_t dacr = tc->readMiscReg(MISCREG_DACR);
433 switch ( (dacr >> (te->domain * 2)) & 0x3) {
434 case 0:
435 DPRINTF(TLB, "TLB Fault: Data abort on domain. DACR: %#x domain: %#x"
436 " write:%d sNp:%d\n", dacr, te->domain, is_write, te->sNp);
437 if (is_fetch)
438 return new PrefetchAbort(vaddr,
439 (te->sNp ? ArmFault::Domain0 : ArmFault::Domain1));
440 else
441 return new DataAbort(vaddr, te->domain, is_write,
442 (te->sNp ? ArmFault::Domain0 : ArmFault::Domain1));
443 case 1:
444 // Continue with permissions check
445 break;
446 case 2:
447 panic("UNPRED domain\n");
448 case 3:
449 req->setPaddr(te->pAddr(vaddr));
450 fault = trickBoxCheck(req, mode, te->domain, te->sNp);
451 if (fault)
452 return fault;
453 return NoFault;
454 }
455
456 uint8_t ap = te->ap;
457
458 if (sctlr.afe == 1)
459 ap |= 1;
460
461 bool abt;
462
463 /* if (!sctlr.xp)
464 ap &= 0x3;
465*/
466 switch (ap) {
467 case 0:
468 DPRINTF(TLB, "Access permissions 0, checking rs:%#x\n", (int)sctlr.rs);
469 if (!sctlr.xp) {
470 switch ((int)sctlr.rs) {
471 case 2:
472 abt = is_write;
473 break;
474 case 1:
475 abt = is_write || !is_priv;
476 break;
477 case 0:
478 case 3:
479 default:
480 abt = true;
481 break;
482 }
483 } else {
484 abt = true;
485 }
486 break;
487 case 1:
488 abt = !is_priv;
489 break;
490 case 2:
491 abt = !is_priv && is_write;
492 break;
493 case 3:
494 abt = false;
495 break;
496 case 4:
497 panic("UNPRED premissions\n");
498 case 5:
499 abt = !is_priv || is_write;
500 break;
501 case 6:
502 case 7:
503 abt = is_write;
504 break;
505 default:
506 panic("Unknown permissions\n");
507 }
508 if ((is_fetch) && (abt || te->xn)) {
509 DPRINTF(TLB, "TLB Fault: Prefetch abort on permission check. AP:%d priv:%d"
510 " write:%d sNp:%d\n", ap, is_priv, is_write, te->sNp);
511 return new PrefetchAbort(vaddr,
512 (te->sNp ? ArmFault::Permission0 :
513 ArmFault::Permission1));
514 } else if (abt) {
515 DPRINTF(TLB, "TLB Fault: Data abort on permission check. AP:%d priv:%d"
516 " write:%d sNp:%d\n", ap, is_priv, is_write, te->sNp);
517 return new DataAbort(vaddr, te->domain, is_write,
518 (te->sNp ? ArmFault::Permission0 :
519 ArmFault::Permission1));
520 }
521
522 req->setPaddr(te->pAddr(vaddr));
523 // Check for a trickbox generated address fault
524 fault = trickBoxCheck(req, mode, te->domain, te->sNp);
525 if (fault)
526 return fault;
527
528 return NoFault;
529}
530
531#endif
532
533Fault
534TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode)
535{
536 bool delay = false;
537 Fault fault;
538#if FULL_SYSTEM
539 fault = translateFs(req, tc, mode, NULL, delay, false);
540#else
541 fault = translateSe(req, tc, mode, NULL, delay, false);
542#endif
543 assert(!delay);
544 return fault;
545}
546
547Fault
548TLB::translateTiming(RequestPtr req, ThreadContext *tc,
549 Translation *translation, Mode mode)
550{
551 assert(translation);
552 bool delay = false;
553 Fault fault;
554#if FULL_SYSTEM
555 fault = translateFs(req, tc, mode, translation, delay, true);
556#else
557 fault = translateSe(req, tc, mode, translation, delay, true);
558#endif
559 if (!delay)
560 translation->finish(fault, req, tc, mode);
561 return fault;
562}
563
564ArmISA::TLB *
565ArmTLBParams::create()
566{
567 return new ArmISA::TLB(this);
568}