gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tlb.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2013, 2016-2020 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 
41 #include "arch/arm/tlb.hh"
42 
43 #include <memory>
44 #include <string>
45 #include <vector>
46 
47 #include "arch/arm/faults.hh"
48 #include "arch/arm/isa.hh"
49 #include "arch/arm/pagetable.hh"
50 #include "arch/arm/reg_abi.hh"
51 #include "arch/arm/self_debug.hh"
53 #include "arch/arm/stage2_mmu.hh"
54 #include "arch/arm/system.hh"
55 #include "arch/arm/table_walker.hh"
56 #include "arch/arm/tlbi_op.hh"
57 #include "arch/arm/utility.hh"
58 #include "base/inifile.hh"
59 #include "base/str.hh"
60 #include "base/trace.hh"
61 #include "cpu/base.hh"
62 #include "cpu/thread_context.hh"
63 #include "debug/Checkpoint.hh"
64 #include "debug/TLB.hh"
65 #include "debug/TLBVerbose.hh"
66 #include "mem/packet_access.hh"
67 #include "mem/page_table.hh"
68 #include "mem/request.hh"
69 #include "params/ArmTLB.hh"
70 #include "sim/full_system.hh"
71 #include "sim/process.hh"
72 #include "sim/pseudo_inst.hh"
73 
74 using namespace ArmISA;
75 
76 TLB::TLB(const ArmTLBParams &p)
77  : BaseTLB(p), table(new TlbEntry[p.size]), size(p.size),
78  isStage2(p.is_stage2), stage2Req(false), stage2DescReq(false), _attr(0),
79  directToStage2(false), tableWalker(p.walker), stage2Tlb(NULL),
80  stage2Mmu(NULL), test(nullptr), stats(this), rangeMRU(1),
81  aarch64(false), aarch64EL(EL0), isPriv(false), isSecure(false),
82  isHyp(false), asid(0), vmid(0), hcr(0), dacr(0),
83  miscRegValid(false), miscRegContext(0), curTranType(NormalTran)
84 {
85  const ArmSystem *sys = dynamic_cast<const ArmSystem *>(p.sys);
86 
87  tableWalker->setTlb(this);
88 
89  // Cache system-level properties
94 
95  if (sys)
96  m5opRange = sys->m5opRange();
97 }
98 
100 {
101  delete[] table;
102 }
103 
104 void
106 {
107  if (stage2Mmu && !isStage2)
109 }
110 
111 void
113 {
114  stage2Mmu = m;
115  tableWalker->setMMU(m, requestor_id);
116 }
117 
118 bool
120 {
121  updateMiscReg(tc);
122 
123  if (directToStage2) {
124  assert(stage2Tlb);
125  return stage2Tlb->translateFunctional(tc, va, pa);
126  }
127 
128  TlbEntry *e = lookup(va, asid, vmid, isHyp, isSecure, true, false,
129  aarch64 ? aarch64EL : EL1, false);
130  if (!e)
131  return false;
132  pa = e->pAddr(va);
133  return true;
134 }
135 
136 Fault
138  ThreadContext *tc, Mode mode) const
139 {
140  const Addr paddr = req->getPaddr();
141 
142  if (m5opRange.contains(paddr)) {
143  uint8_t func;
145  req->setLocalAccessor(
146  [func, mode](ThreadContext *tc, PacketPtr pkt) -> Cycles
147  {
148  uint64_t ret;
149  if (inAArch64(tc))
150  PseudoInst::pseudoInst<RegABI64>(tc, func, ret);
151  else
152  PseudoInst::pseudoInst<RegABI32>(tc, func, ret);
153 
154  if (mode == Read)
155  pkt->setLE(ret);
156 
157  return Cycles(1);
158  }
159  );
160  }
161 
162  return NoFault;
163 }
164 
165 TlbEntry*
166 TLB::lookup(Addr va, uint16_t asn, uint8_t vmid, bool hyp, bool secure,
167  bool functional, bool ignore_asn, ExceptionLevel target_el,
168  bool in_host)
169 {
170 
171  TlbEntry *retval = NULL;
172 
173  // Maintaining LRU array
174  int x = 0;
175  while (retval == NULL && x < size) {
176  if ((!ignore_asn && table[x].match(va, asn, vmid, hyp, secure, false,
177  target_el, in_host)) ||
178  (ignore_asn && table[x].match(va, vmid, hyp, secure, target_el,
179  in_host))) {
180  // We only move the hit entry ahead when the position is higher
181  // than rangeMRU
182  if (x > rangeMRU && !functional) {
183  TlbEntry tmp_entry = table[x];
184  for (int i = x; i > 0; i--)
185  table[i] = table[i - 1];
186  table[0] = tmp_entry;
187  retval = &table[0];
188  } else {
189  retval = &table[x];
190  }
191  break;
192  }
193  ++x;
194  }
195 
196  DPRINTF(TLBVerbose, "Lookup %#x, asn %#x -> %s vmn 0x%x hyp %d secure %d "
197  "ppn %#x size: %#x pa: %#x ap:%d ns:%d nstid:%d g:%d asid: %d "
198  "el: %d\n",
199  va, asn, retval ? "hit" : "miss", vmid, hyp, secure,
200  retval ? retval->pfn : 0, retval ? retval->size : 0,
201  retval ? retval->pAddr(va) : 0, retval ? retval->ap : 0,
202  retval ? retval->ns : 0, retval ? retval->nstid : 0,
203  retval ? retval->global : 0, retval ? retval->asid : 0,
204  retval ? retval->el : 0);
205 
206  return retval;
207 }
208 
209 // insert a new TLB entry
210 void
212 {
213  DPRINTF(TLB, "Inserting entry into TLB with pfn:%#x size:%#x vpn: %#x"
214  " asid:%d vmid:%d N:%d global:%d valid:%d nc:%d xn:%d"
215  " ap:%#x domain:%#x ns:%d nstid:%d isHyp:%d\n", entry.pfn,
216  entry.size, entry.vpn, entry.asid, entry.vmid, entry.N,
217  entry.global, entry.valid, entry.nonCacheable, entry.xn,
218  entry.ap, static_cast<uint8_t>(entry.domain), entry.ns, entry.nstid,
219  entry.isHyp);
220 
221  if (table[size - 1].valid)
222  DPRINTF(TLB, " - Replacing Valid entry %#x, asn %d vmn %d ppn %#x "
223  "size: %#x ap:%d ns:%d nstid:%d g:%d isHyp:%d el: %d\n",
224  table[size-1].vpn << table[size-1].N, table[size-1].asid,
225  table[size-1].vmid, table[size-1].pfn << table[size-1].N,
226  table[size-1].size, table[size-1].ap, table[size-1].ns,
227  table[size-1].nstid, table[size-1].global, table[size-1].isHyp,
228  table[size-1].el);
229 
230  //inserting to MRU position and evicting the LRU one
231 
232  for (int i = size - 1; i > 0; --i)
233  table[i] = table[i-1];
234  table[0] = entry;
235 
236  stats.inserts++;
237  ppRefills->notify(1);
238 }
239 
240 void
242 {
243  int x = 0;
244  TlbEntry *te;
245  DPRINTF(TLB, "Current TLB contents:\n");
246  while (x < size) {
247  te = &table[x];
248  if (te->valid)
249  DPRINTF(TLB, " * %s\n", te->print());
250  ++x;
251  }
252 }
253 
254 void
256 {
257  DPRINTF(TLB, "Flushing all TLB entries\n");
258  int x = 0;
259  TlbEntry *te;
260  while (x < size) {
261  te = &table[x];
262 
263  DPRINTF(TLB, " - %s\n", te->print());
264  te->valid = false;
266  ++x;
267  }
268 
269  stats.flushTlb++;
270 
271  // If there's a second stage TLB (and we're not it) then flush it as well
272  if (!isStage2) {
273  stage2Tlb->flushAll();
274  }
275 }
276 
277 void
278 TLB::flush(const TLBIALL& tlbi_op)
279 {
280  DPRINTF(TLB, "Flushing all TLB entries (%s lookup)\n",
281  (tlbi_op.secureLookup ? "secure" : "non-secure"));
282  int x = 0;
283  TlbEntry *te;
284  while (x < size) {
285  te = &table[x];
286  const bool el_match = te->checkELMatch(
287  tlbi_op.targetEL, tlbi_op.inHost);
288  if (te->valid && tlbi_op.secureLookup == !te->nstid &&
289  (te->vmid == vmid || tlbi_op.el2Enabled) && el_match) {
290 
291  DPRINTF(TLB, " - %s\n", te->print());
292  te->valid = false;
294  }
295  ++x;
296  }
297 
298  stats.flushTlb++;
299 
300  // If there's a second stage TLB (and we're not it) then flush it as well
301  // if we're currently in hyp mode
302  if (!isStage2 && isHyp) {
303  stage2Tlb->flush(tlbi_op.makeStage2());
304  }
305 }
306 
307 void
308 TLB::flush(const TLBIALLEL &tlbi_op)
309 {
310  DPRINTF(TLB, "Flushing all TLB entries (%s lookup)\n",
311  (tlbi_op.secureLookup ? "secure" : "non-secure"));
312  int x = 0;
313  TlbEntry *te;
314  while (x < size) {
315  te = &table[x];
316  const bool el_match = te->checkELMatch(
317  tlbi_op.targetEL, tlbi_op.inHost);
318  if (te->valid && tlbi_op.secureLookup == !te->nstid && el_match) {
319 
320  DPRINTF(TLB, " - %s\n", te->print());
321  te->valid = false;
323  }
324  ++x;
325  }
326 
327  stats.flushTlb++;
328 
329  // If there's a second stage TLB (and we're not it)
330  // and if we're targeting EL1
331  // then flush it as well
332  if (!isStage2 && tlbi_op.targetEL == EL1) {
333  stage2Tlb->flush(tlbi_op.makeStage2());
334  }
335 }
336 
337 void
338 TLB::flush(const TLBIVMALL &tlbi_op)
339 {
340  DPRINTF(TLB, "Flushing all TLB entries (%s lookup)\n",
341  (tlbi_op.secureLookup ? "secure" : "non-secure"));
342  int x = 0;
343  TlbEntry *te;
344  while (x < size) {
345  te = &table[x];
346  const bool el_match = te->checkELMatch(
347  tlbi_op.targetEL, tlbi_op.inHost);
348  if (te->valid && tlbi_op.secureLookup == !te->nstid &&
349  (te->vmid == vmid || !tlbi_op.el2Enabled) && el_match) {
350 
351  DPRINTF(TLB, " - %s\n", te->print());
352  te->valid = false;
354  }
355  ++x;
356  }
357 
358  stats.flushTlb++;
359 
360  // If there's a second stage TLB (and we're not it) then flush it as well
361  // if we're currently in hyp mode
362  if (!isStage2 && tlbi_op.stage2) {
363  stage2Tlb->flush(tlbi_op.makeStage2());
364  }
365 }
366 
367 void
368 TLB::flush(const TLBIALLN &tlbi_op)
369 {
370  bool hyp = tlbi_op.targetEL == EL2;
371 
372  DPRINTF(TLB, "Flushing all NS TLB entries (%s lookup)\n",
373  (hyp ? "hyp" : "non-hyp"));
374  int x = 0;
375  TlbEntry *te;
376  while (x < size) {
377  te = &table[x];
378  const bool el_match = te->checkELMatch(tlbi_op.targetEL, false);
379 
380  if (te->valid && te->nstid && te->isHyp == hyp && el_match) {
381 
382  DPRINTF(TLB, " - %s\n", te->print());
384  te->valid = false;
385  }
386  ++x;
387  }
388 
389  stats.flushTlb++;
390 
391  // If there's a second stage TLB (and we're not it) then flush it as well
392  if (!isStage2 && !hyp) {
393  stage2Tlb->flush(tlbi_op.makeStage2());
394  }
395 }
396 
397 void
398 TLB::flush(const TLBIMVA &tlbi_op)
399 {
400  DPRINTF(TLB, "Flushing TLB entries with mva: %#x, asid: %#x "
401  "(%s lookup)\n", tlbi_op.addr, tlbi_op.asid,
402  (tlbi_op.secureLookup ? "secure" : "non-secure"));
403  _flushMva(tlbi_op.addr, tlbi_op.asid, tlbi_op.secureLookup, false,
404  tlbi_op.targetEL, tlbi_op.inHost);
406 }
407 
408 void
409 TLB::flush(const TLBIASID &tlbi_op)
410 {
411  DPRINTF(TLB, "Flushing TLB entries with asid: %#x (%s lookup)\n",
412  tlbi_op.asid, (tlbi_op.secureLookup ? "secure" : "non-secure"));
413 
414  int x = 0 ;
415  TlbEntry *te;
416 
417  while (x < size) {
418  te = &table[x];
419  if (te->valid && te->asid == tlbi_op.asid &&
420  tlbi_op.secureLookup == !te->nstid &&
421  (te->vmid == vmid || tlbi_op.el2Enabled) &&
422  te->checkELMatch(tlbi_op.targetEL, tlbi_op.inHost)) {
423 
424  te->valid = false;
425  DPRINTF(TLB, " - %s\n", te->print());
427  }
428  ++x;
429  }
431 }
432 
433 void
434 TLB::flush(const TLBIMVAA &tlbi_op) {
435 
436  DPRINTF(TLB, "Flushing TLB entries with mva: %#x (%s lookup)\n",
437  tlbi_op.addr,
438  (tlbi_op.secureLookup ? "secure" : "non-secure"));
439  _flushMva(tlbi_op.addr, 0xbeef, tlbi_op.secureLookup, true,
440  tlbi_op.targetEL, tlbi_op.inHost);
441  stats.flushTlbMva++;
442 }
443 
444 void
445 TLB::_flushMva(Addr mva, uint64_t asn, bool secure_lookup,
446  bool ignore_asn, ExceptionLevel target_el, bool in_host)
447 {
448  TlbEntry *te;
449  // D5.7.2: Sign-extend address to 64 bits
450  mva = sext<56>(mva);
451 
452  bool hyp = target_el == EL2;
453 
454  te = lookup(mva, asn, vmid, hyp, secure_lookup, true, ignore_asn,
455  target_el, in_host);
456  while (te != NULL) {
457  if (secure_lookup == !te->nstid) {
458  DPRINTF(TLB, " - %s\n", te->print());
459  te->valid = false;
461  }
462  te = lookup(mva, asn, vmid, hyp, secure_lookup, true, ignore_asn,
463  target_el, in_host);
464  }
465 }
466 
467 void
468 TLB::flush(const TLBIIPA &tlbi_op)
469 {
470  assert(!isStage2);
471 
472  // Note, TLBIIPA::makeStage2 will generare a TLBIMVAA
473  stage2Tlb->flush(tlbi_op.makeStage2());
474 }
475 
476 void
478 {
479  // We might have unserialized something or switched CPUs, so make
480  // sure to re-read the misc regs.
481  miscRegValid = false;
482 }
483 
484 void
486 {
487  TLB *otlb = dynamic_cast<TLB*>(_otlb);
488  /* Make sure we actually have a valid type */
489  if (otlb) {
490  _attr = otlb->_attr;
491  haveLPAE = otlb->haveLPAE;
493  stage2Req = otlb->stage2Req;
495 
496  /* Sync the stage2 MMU if they exist in both
497  * the old CPU and the new
498  */
499  if (!isStage2 &&
500  stage2Tlb && otlb->stage2Tlb) {
502  }
503  } else {
504  panic("Incompatible TLB type!");
505  }
506 }
507 
509  : Stats::Group(parent),
510  ADD_STAT(instHits, UNIT_COUNT, "ITB inst hits"),
511  ADD_STAT(instMisses, UNIT_COUNT, "ITB inst misses"),
512  ADD_STAT(readHits, UNIT_COUNT, "DTB read hits"),
513  ADD_STAT(readMisses, UNIT_COUNT, "DTB read misses"),
514  ADD_STAT(writeHits, UNIT_COUNT, "DTB write hits"),
515  ADD_STAT(writeMisses, UNIT_COUNT, "DTB write misses"),
516  ADD_STAT(inserts, UNIT_COUNT,
517  "Number of times an entry is inserted into the TLB"),
518  ADD_STAT(flushTlb, UNIT_COUNT, "Number of times complete TLB was flushed"),
519  ADD_STAT(flushTlbMva, UNIT_COUNT,
520  "Number of times TLB was flushed by MVA"),
521  ADD_STAT(flushTlbMvaAsid, UNIT_COUNT,
522  "Number of times TLB was flushed by MVA & ASID"),
523  ADD_STAT(flushTlbAsid, UNIT_COUNT,
524  "Number of times TLB was flushed by ASID"),
525  ADD_STAT(flushedEntries, UNIT_COUNT,
526  "Number of entries that have been flushed from TLB"),
527  ADD_STAT(alignFaults, UNIT_COUNT,
528  "Number of TLB faults due to alignment restrictions"),
529  ADD_STAT(prefetchFaults, UNIT_COUNT,
530  "Number of TLB faults due to prefetch"),
531  ADD_STAT(domainFaults, UNIT_COUNT,
532  "Number of TLB faults due to domain restrictions"),
533  ADD_STAT(permsFaults, UNIT_COUNT,
534  "Number of TLB faults due to permissions restrictions"),
535  ADD_STAT(readAccesses, UNIT_COUNT, "DTB read accesses",
536  readHits + readMisses),
537  ADD_STAT(writeAccesses, UNIT_COUNT, "DTB write accesses",
538  writeHits + writeMisses),
539  ADD_STAT(instAccesses, UNIT_COUNT, "ITB inst accesses",
540  instHits + instMisses),
541  ADD_STAT(hits, UNIT_COUNT, "Total TLB (inst and data) hits",
542  readHits + writeHits + instHits),
543  ADD_STAT(misses, UNIT_COUNT, "Total TLB (inst and data) misses",
544  readMisses + writeMisses + instMisses),
545  ADD_STAT(accesses, UNIT_COUNT, "Total TLB (inst and data) accesses",
546  readAccesses + writeAccesses + instAccesses)
547 {
548 }
549 
550 void
552 {
553  ppRefills.reset(new ProbePoints::PMU(getProbeManager(), "Refills"));
554 }
555 
556 Fault
558  Translation *translation, bool &delay, bool timing)
559 {
560  updateMiscReg(tc);
561  Addr vaddr_tainted = req->getVaddr();
562  Addr vaddr = 0;
563  if (aarch64)
564  vaddr = purifyTaggedAddr(vaddr_tainted, tc, aarch64EL, (TCR)ttbcr,
565  mode==Execute);
566  else
567  vaddr = vaddr_tainted;
568  Request::Flags flags = req->getFlags();
569 
570  bool is_fetch = (mode == Execute);
571  bool is_write = (mode == Write);
572 
573  if (!is_fetch) {
574  if (sctlr.a || !(flags & AllowUnaligned)) {
575  if (vaddr & mask(flags & AlignmentMask)) {
576  // LPAE is always disabled in SE mode
577  return std::make_shared<DataAbort>(
578  vaddr_tainted,
582  }
583  }
584  }
585 
586  Addr paddr;
587  Process *p = tc->getProcessPtr();
588 
589  if (!p->pTable->translate(vaddr, paddr))
590  return std::make_shared<GenericPageTableFault>(vaddr_tainted);
591  req->setPaddr(paddr);
592 
593  return finalizePhysical(req, tc, mode);
594 }
595 
596 Fault
598 {
599  // a data cache maintenance instruction that operates by MVA does
600  // not generate a Data Abort exeception due to a Permission fault
601  if (req->isCacheMaintenance()) {
602  return NoFault;
603  }
604 
605  Addr vaddr = req->getVaddr(); // 32-bit don't have to purify
606  Request::Flags flags = req->getFlags();
607  bool is_fetch = (mode == Execute);
608  bool is_write = (mode == Write);
609  bool is_priv = isPriv && !(flags & UserMode);
610 
611  // Get the translation type from the actuall table entry
612  ArmFault::TranMethod tranMethod = te->longDescFormat ? ArmFault::LpaeTran
614 
615  // If this is the second stage of translation and the request is for a
616  // stage 1 page table walk then we need to check the HCR.PTW bit. This
617  // allows us to generate a fault if the request targets an area marked
618  // as a device or strongly ordered.
619  if (isStage2 && req->isPTWalk() && hcr.ptw &&
620  (te->mtype != TlbEntry::MemoryType::Normal)) {
621  return std::make_shared<DataAbort>(
622  vaddr, te->domain, is_write,
623  ArmFault::PermissionLL + te->lookupLevel,
624  isStage2, tranMethod);
625  }
626 
627  // Generate an alignment fault for unaligned data accesses to device or
628  // strongly ordered memory
629  if (!is_fetch) {
630  if (te->mtype != TlbEntry::MemoryType::Normal) {
631  if (vaddr & mask(flags & AlignmentMask)) {
632  stats.alignFaults++;
633  return std::make_shared<DataAbort>(
636  tranMethod);
637  }
638  }
639  }
640 
641  if (te->nonCacheable) {
642  // Prevent prefetching from I/O devices.
643  if (req->isPrefetch()) {
644  // Here we can safely use the fault status for the short
645  // desc. format in all cases
646  return std::make_shared<PrefetchAbort>(
648  isStage2, tranMethod);
649  }
650  }
651 
652  if (!te->longDescFormat) {
653  switch ((dacr >> (static_cast<uint8_t>(te->domain) * 2)) & 0x3) {
654  case 0:
656  DPRINTF(TLB, "TLB Fault: Data abort on domain. DACR: %#x"
657  " domain: %#x write:%d\n", dacr,
658  static_cast<uint8_t>(te->domain), is_write);
659  if (is_fetch) {
660  // Use PC value instead of vaddr because vaddr might
661  // be aligned to cache line and should not be the
662  // address reported in FAR
663  return std::make_shared<PrefetchAbort>(
664  req->getPC(),
665  ArmFault::DomainLL + te->lookupLevel,
666  isStage2, tranMethod);
667  } else
668  return std::make_shared<DataAbort>(
669  vaddr, te->domain, is_write,
670  ArmFault::DomainLL + te->lookupLevel,
671  isStage2, tranMethod);
672  case 1:
673  // Continue with permissions check
674  break;
675  case 2:
676  panic("UNPRED domain\n");
677  case 3:
678  return NoFault;
679  }
680  }
681 
682  // The 'ap' variable is AP[2:0] or {AP[2,1],1b'0}, i.e. always three bits
683  uint8_t ap = te->longDescFormat ? te->ap << 1 : te->ap;
684  uint8_t hap = te->hap;
685 
686  if (sctlr.afe == 1 || te->longDescFormat)
687  ap |= 1;
688 
689  bool abt;
690  bool isWritable = true;
691  // If this is a stage 2 access (eg for reading stage 1 page table entries)
692  // then don't perform the AP permissions check, we stil do the HAP check
693  // below.
694  if (isStage2) {
695  abt = false;
696  } else {
697  switch (ap) {
698  case 0:
699  DPRINTF(TLB, "Access permissions 0, checking rs:%#x\n",
700  (int)sctlr.rs);
701  if (!sctlr.xp) {
702  switch ((int)sctlr.rs) {
703  case 2:
704  abt = is_write;
705  break;
706  case 1:
707  abt = is_write || !is_priv;
708  break;
709  case 0:
710  case 3:
711  default:
712  abt = true;
713  break;
714  }
715  } else {
716  abt = true;
717  }
718  break;
719  case 1:
720  abt = !is_priv;
721  break;
722  case 2:
723  abt = !is_priv && is_write;
724  isWritable = is_priv;
725  break;
726  case 3:
727  abt = false;
728  break;
729  case 4:
730  panic("UNPRED premissions\n");
731  case 5:
732  abt = !is_priv || is_write;
733  isWritable = false;
734  break;
735  case 6:
736  case 7:
737  abt = is_write;
738  isWritable = false;
739  break;
740  default:
741  panic("Unknown permissions %#x\n", ap);
742  }
743  }
744 
745  bool hapAbt = is_write ? !(hap & 2) : !(hap & 1);
746  bool xn = te->xn || (isWritable && sctlr.wxn) ||
747  (ap == 3 && sctlr.uwxn && is_priv);
748  if (is_fetch && (abt || xn ||
749  (te->longDescFormat && te->pxn && is_priv) ||
750  (isSecure && te->ns && scr.sif))) {
751  stats.permsFaults++;
752  DPRINTF(TLB, "TLB Fault: Prefetch abort on permission check. AP:%d "
753  "priv:%d write:%d ns:%d sif:%d sctlr.afe: %d \n",
754  ap, is_priv, is_write, te->ns, scr.sif,sctlr.afe);
755  // Use PC value instead of vaddr because vaddr might be aligned to
756  // cache line and should not be the address reported in FAR
757  return std::make_shared<PrefetchAbort>(
758  req->getPC(),
759  ArmFault::PermissionLL + te->lookupLevel,
760  isStage2, tranMethod);
761  } else if (abt | hapAbt) {
762  stats.permsFaults++;
763  DPRINTF(TLB, "TLB Fault: Data abort on permission check. AP:%d priv:%d"
764  " write:%d\n", ap, is_priv, is_write);
765  return std::make_shared<DataAbort>(
766  vaddr, te->domain, is_write,
767  ArmFault::PermissionLL + te->lookupLevel,
768  isStage2 | !abt, tranMethod);
769  }
770  return NoFault;
771 }
772 
773 
774 Fault
776  ThreadContext *tc)
777 {
778  assert(aarch64);
779 
780  // A data cache maintenance instruction that operates by VA does
781  // not generate a Permission fault unless:
782  // * It is a data cache invalidate (dc ivac) which requires write
783  // permissions to the VA, or
784  // * It is executed from EL0
785  if (req->isCacheClean() && aarch64EL != EL0 && !isStage2) {
786  return NoFault;
787  }
788 
789  Addr vaddr_tainted = req->getVaddr();
790  Addr vaddr = purifyTaggedAddr(vaddr_tainted, tc, aarch64EL, (TCR)ttbcr,
791  mode==Execute);
792 
793  Request::Flags flags = req->getFlags();
794  bool is_fetch = (mode == Execute);
795  // Cache clean operations require read permissions to the specified VA
796  bool is_write = !req->isCacheClean() && mode == Write;
797  bool is_atomic = req->isAtomic();
798  M5_VAR_USED bool is_priv = isPriv && !(flags & UserMode);
799 
801 
802  // If this is the second stage of translation and the request is for a
803  // stage 1 page table walk then we need to check the HCR.PTW bit. This
804  // allows us to generate a fault if the request targets an area marked
805  // as a device or strongly ordered.
806  if (isStage2 && req->isPTWalk() && hcr.ptw &&
807  (te->mtype != TlbEntry::MemoryType::Normal)) {
808  return std::make_shared<DataAbort>(
809  vaddr_tainted, te->domain, is_write,
810  ArmFault::PermissionLL + te->lookupLevel,
812  }
813 
814  // Generate an alignment fault for unaligned accesses to device or
815  // strongly ordered memory
816  if (!is_fetch) {
817  if (te->mtype != TlbEntry::MemoryType::Normal) {
818  if (vaddr & mask(flags & AlignmentMask)) {
819  stats.alignFaults++;
820  return std::make_shared<DataAbort>(
821  vaddr_tainted,
823  is_atomic ? false : is_write,
826  }
827  }
828  }
829 
830  if (te->nonCacheable) {
831  // Prevent prefetching from I/O devices.
832  if (req->isPrefetch()) {
833  // Here we can safely use the fault status for the short
834  // desc. format in all cases
835  return std::make_shared<PrefetchAbort>(
836  vaddr_tainted,
839  }
840  }
841 
842  uint8_t ap = 0x3 & (te->ap); // 2-bit access protection field
843  bool grant = false;
844 
845  bool wxn = sctlr.wxn;
846  uint8_t xn = te->xn;
847  uint8_t pxn = te->pxn;
848  bool r = (!is_write && !is_fetch);
849  bool w = is_write;
850  bool x = is_fetch;
851 
852  if (ArmSystem::haveEL(tc, EL3) && isSecure && te->ns && scr.sif)
853  xn = true;
854 
855  // grant_read is used for faults from an atomic instruction that
856  // both reads and writes from a memory location. From a ISS point
857  // of view they count as read if a read to that address would have
858  // generated the fault; they count as writes otherwise
859  bool grant_read = true;
860  DPRINTF(TLBVerbose, "Checking permissions: ap:%d, xn:%d, pxn:%d, r:%d, "
861  "w:%d, x:%d, is_priv: %d, wxn: %d\n", ap, xn,
862  pxn, r, w, x, is_priv, wxn);
863 
864  if (isStage2) {
865  assert(ArmSystem::haveVirtualization(tc) && aarch64EL != EL2);
866  // In stage 2 we use the hypervisor access permission bits.
867  // The following permissions are described in ARM DDI 0487A.f
868  // D4-1802
869  uint8_t hap = 0x3 & te->hap;
870  grant_read = hap & 0x1;
871  if (is_fetch) {
872  // sctlr.wxn overrides the xn bit
873  grant = !wxn && !xn;
874  } else if (is_atomic) {
875  grant = hap;
876  } else if (is_write) {
877  grant = hap & 0x2;
878  } else { // is_read
879  grant = grant_read;
880  }
881  } else {
882  switch (aarch64EL) {
883  case EL0:
884  {
885  grant_read = ap & 0x1;
886  uint8_t perm = (ap << 2) | (xn << 1) | pxn;
887  switch (perm) {
888  case 0:
889  case 1:
890  case 8:
891  case 9:
892  grant = x;
893  break;
894  case 4:
895  case 5:
896  grant = r || w || (x && !wxn);
897  break;
898  case 6:
899  case 7:
900  grant = r || w;
901  break;
902  case 12:
903  case 13:
904  grant = r || x;
905  break;
906  case 14:
907  case 15:
908  grant = r;
909  break;
910  default:
911  grant = false;
912  }
913  }
914  break;
915  case EL1:
916  {
917  if (checkPAN(tc, ap, req, mode)) {
918  grant = false;
919  grant_read = false;
920  break;
921  }
922 
923  uint8_t perm = (ap << 2) | (xn << 1) | pxn;
924  switch (perm) {
925  case 0:
926  case 2:
927  grant = r || w || (x && !wxn);
928  break;
929  case 1:
930  case 3:
931  case 4:
932  case 5:
933  case 6:
934  case 7:
935  // regions that are writeable at EL0 should not be
936  // executable at EL1
937  grant = r || w;
938  break;
939  case 8:
940  case 10:
941  case 12:
942  case 14:
943  grant = r || x;
944  break;
945  case 9:
946  case 11:
947  case 13:
948  case 15:
949  grant = r;
950  break;
951  default:
952  grant = false;
953  }
954  }
955  break;
956  case EL2:
957  if (hcr.e2h && checkPAN(tc, ap, req, mode)) {
958  grant = false;
959  grant_read = false;
960  break;
961  }
963  case EL3:
964  {
965  uint8_t perm = (ap & 0x2) | xn;
966  switch (perm) {
967  case 0:
968  grant = r || w || (x && !wxn);
969  break;
970  case 1:
971  grant = r || w;
972  break;
973  case 2:
974  grant = r || x;
975  break;
976  case 3:
977  grant = r;
978  break;
979  default:
980  grant = false;
981  }
982  }
983  break;
984  }
985  }
986 
987  if (!grant) {
988  if (is_fetch) {
989  stats.permsFaults++;
990  DPRINTF(TLB, "TLB Fault: Prefetch abort on permission check. "
991  "AP:%d priv:%d write:%d ns:%d sif:%d "
992  "sctlr.afe: %d\n",
993  ap, is_priv, is_write, te->ns, scr.sif, sctlr.afe);
994  // Use PC value instead of vaddr because vaddr might be aligned to
995  // cache line and should not be the address reported in FAR
996  return std::make_shared<PrefetchAbort>(
997  req->getPC(),
998  ArmFault::PermissionLL + te->lookupLevel,
1000  } else {
1001  stats.permsFaults++;
1002  DPRINTF(TLB, "TLB Fault: Data abort on permission check. AP:%d "
1003  "priv:%d write:%d\n", ap, is_priv, is_write);
1004  return std::make_shared<DataAbort>(
1005  vaddr_tainted, te->domain,
1006  (is_atomic && !grant_read) ? false : is_write,
1007  ArmFault::PermissionLL + te->lookupLevel,
1009  }
1010  }
1011 
1012  return NoFault;
1013 }
1014 
1015 bool
1016 TLB::checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req, Mode mode)
1017 {
1018  // The PAN bit has no effect on:
1019  // 1) Instruction accesses.
1020  // 2) Data Cache instructions other than DC ZVA
1021  // 3) Address translation instructions, other than ATS1E1RP and
1022  // ATS1E1WP when ARMv8.2-ATS1E1 is implemented. (Unimplemented in
1023  // gem5)
1024  // 4) Unprivileged instructions (Unimplemented in gem5)
1025  AA64MMFR1 mmfr1 = tc->readMiscReg(MISCREG_ID_AA64MMFR1_EL1);
1026  if (mmfr1.pan && cpsr.pan && (ap & 0x1) && mode != Execute &&
1027  (!req->isCacheMaintenance() ||
1028  (req->getFlags() & Request::CACHE_BLOCK_ZERO))) {
1029  return true;
1030  } else {
1031  return false;
1032  }
1033 }
1034 
1035 Fault
1037  TLB::ArmTranslationType tranType, Addr vaddr, bool long_desc_format)
1038 {
1039  bool is_fetch = (mode == Execute);
1040  bool is_atomic = req->isAtomic();
1041  req->setPaddr(vaddr);
1042  // When the MMU is off the security attribute corresponds to the
1043  // security state of the processor
1044  if (isSecure)
1045  req->setFlags(Request::SECURE);
1046 
1047  if (aarch64) {
1048  bool selbit = bits(vaddr, 55);
1049  TCR tcr1 = tc->readMiscReg(MISCREG_TCR_EL1);
1050  int topbit = computeAddrTop(tc, selbit, is_fetch, tcr1, currEL(tc));
1051  int addr_sz = bits(vaddr, topbit, physAddrRange);
1052  if (addr_sz != 0){
1053  Fault f;
1054  if (is_fetch)
1055  f = std::make_shared<PrefetchAbort>(vaddr,
1057  else
1058  f = std::make_shared<DataAbort>( vaddr,
1060  is_atomic ? false : mode==Write,
1062  return f;
1063  }
1064  }
1065 
1066  // @todo: double check this (ARM ARM issue C B3.2.1)
1067  if (long_desc_format || sctlr.tre == 0 || nmrr.ir0 == 0 ||
1068  nmrr.or0 == 0 || prrr.tr0 != 0x2) {
1069  if (!req->isCacheMaintenance()) {
1070  req->setFlags(Request::UNCACHEABLE);
1071  }
1072  req->setFlags(Request::STRICT_ORDER);
1073  }
1074 
1075  // Set memory attributes
1076  TlbEntry temp_te;
1077  temp_te.ns = !isSecure;
1078  bool dc = (HaveVirtHostExt(tc)
1079  && hcr.e2h == 1 && hcr.tge == 1) ? 0: hcr.dc;
1080  bool i_cacheability = sctlr.i && !sctlr.m;
1081  if (isStage2 || !dc || isSecure ||
1082  (isHyp && !(tranType & S1CTran))) {
1083 
1084  temp_te.mtype = is_fetch ? TlbEntry::MemoryType::Normal
1086  temp_te.innerAttrs = i_cacheability? 0x2: 0x0;
1087  temp_te.outerAttrs = i_cacheability? 0x2: 0x0;
1088  temp_te.shareable = true;
1089  temp_te.outerShareable = true;
1090  } else {
1092  temp_te.innerAttrs = 0x3;
1093  temp_te.outerAttrs = 0x3;
1094  temp_te.shareable = false;
1095  temp_te.outerShareable = false;
1096  }
1097  temp_te.setAttributes(long_desc_format);
1098  DPRINTF(TLBVerbose, "(No MMU) setting memory attributes: shareable: "
1099  "%d, innerAttrs: %d, outerAttrs: %d, isStage2: %d\n",
1100  temp_te.shareable, temp_te.innerAttrs, temp_te.outerAttrs,
1101  isStage2);
1102  setAttr(temp_te.attributes);
1103 
1105 }
1106 
1107 Fault
1109  Translation *translation, bool &delay, bool timing,
1110  bool functional, Addr vaddr,
1111  ArmFault::TranMethod tranMethod)
1112 {
1113  TlbEntry *te = NULL;
1114  bool is_fetch = (mode == Execute);
1115  TlbEntry mergeTe;
1116 
1117  Request::Flags flags = req->getFlags();
1118  Addr vaddr_tainted = req->getVaddr();
1119 
1120  Fault fault = getResultTe(&te, req, tc, mode, translation, timing,
1121  functional, &mergeTe);
1122  // only proceed if we have a valid table entry
1123  if ((te == NULL) && (fault == NoFault)) delay = true;
1124 
1125  // If we have the table entry transfer some of the attributes to the
1126  // request that triggered the translation
1127  if (te != NULL) {
1128  // Set memory attributes
1129  DPRINTF(TLBVerbose,
1130  "Setting memory attributes: shareable: %d, innerAttrs: %d, "
1131  "outerAttrs: %d, mtype: %d, isStage2: %d\n",
1132  te->shareable, te->innerAttrs, te->outerAttrs,
1133  static_cast<uint8_t>(te->mtype), isStage2);
1134  setAttr(te->attributes);
1135 
1136  if (te->nonCacheable && !req->isCacheMaintenance())
1137  req->setFlags(Request::UNCACHEABLE);
1138 
1139  // Require requests to be ordered if the request goes to
1140  // strongly ordered or device memory (i.e., anything other
1141  // than normal memory requires strict order).
1142  if (te->mtype != TlbEntry::MemoryType::Normal)
1143  req->setFlags(Request::STRICT_ORDER);
1144 
1145  Addr pa = te->pAddr(vaddr);
1146  req->setPaddr(pa);
1147 
1148  if (isSecure && !te->ns) {
1149  req->setFlags(Request::SECURE);
1150  }
1151  if (!is_fetch && fault == NoFault &&
1152  (vaddr & mask(flags & AlignmentMask)) &&
1153  (te->mtype != TlbEntry::MemoryType::Normal)) {
1154  // Unaligned accesses to Device memory should always cause an
1155  // abort regardless of sctlr.a
1156  stats.alignFaults++;
1157  bool is_write = (mode == Write);
1158  return std::make_shared<DataAbort>(
1159  vaddr_tainted,
1162  tranMethod);
1163  }
1164 
1165  // Check for a trickbox generated address fault
1166  if (fault == NoFault)
1167  fault = testTranslation(req, mode, te->domain);
1168  }
1169 
1170  if (fault == NoFault) {
1171  // Don't try to finalize a physical address unless the
1172  // translation has completed (i.e., there is a table entry).
1173  return te ? finalizePhysical(req, tc, mode) : NoFault;
1174  } else {
1175  return fault;
1176  }
1177 }
1178 
1179 Fault
1181  Translation *translation, bool &delay, bool timing,
1182  TLB::ArmTranslationType tranType, bool functional)
1183 {
1184  // No such thing as a functional timing access
1185  assert(!(timing && functional));
1186 
1187  updateMiscReg(tc, tranType);
1188 
1189  Addr vaddr_tainted = req->getVaddr();
1190  Addr vaddr = 0;
1191  if (aarch64)
1192  vaddr = purifyTaggedAddr(vaddr_tainted, tc, aarch64EL, (TCR)ttbcr,
1193  mode==Execute);
1194  else
1195  vaddr = vaddr_tainted;
1196  Request::Flags flags = req->getFlags();
1197 
1198  bool is_fetch = (mode == Execute);
1199  bool is_write = (mode == Write);
1200  bool long_desc_format = aarch64 || longDescFormatInUse(tc);
1201  ArmFault::TranMethod tranMethod = long_desc_format ? ArmFault::LpaeTran
1203 
1204  DPRINTF(TLBVerbose,
1205  "CPSR is priv:%d UserMode:%d secure:%d S1S2NsTran:%d\n",
1206  isPriv, flags & UserMode, isSecure, tranType & S1S2NsTran);
1207 
1208  DPRINTF(TLB, "translateFs addr %#x, mode %d, st2 %d, scr %#x sctlr %#x "
1209  "flags %#lx tranType 0x%x\n", vaddr_tainted, mode, isStage2,
1210  scr, sctlr, flags, tranType);
1211 
1212  if ((req->isInstFetch() && (!sctlr.i)) ||
1213  ((!req->isInstFetch()) && (!sctlr.c))){
1214  if (!req->isCacheMaintenance()) {
1215  req->setFlags(Request::UNCACHEABLE);
1216  }
1217  req->setFlags(Request::STRICT_ORDER);
1218  }
1219  if (!is_fetch) {
1220  if (sctlr.a || !(flags & AllowUnaligned)) {
1221  if (vaddr & mask(flags & AlignmentMask)) {
1222  stats.alignFaults++;
1223  return std::make_shared<DataAbort>(
1224  vaddr_tainted,
1227  tranMethod);
1228  }
1229  }
1230  }
1231 
1232  bool vm = hcr.vm;
1233  if (HaveVirtHostExt(tc) && hcr.e2h == 1 && hcr.tge ==1)
1234  vm = 0;
1235  else if (hcr.dc == 1)
1236  vm = 1;
1237 
1238  Fault fault = NoFault;
1239  // If guest MMU is off or hcr.vm=0 go straight to stage2
1240  if ((isStage2 && !vm) || (!isStage2 && !sctlr.m)) {
1241  fault = translateMmuOff(tc, req, mode, tranType, vaddr,
1242  long_desc_format);
1243  } else {
1244  DPRINTF(TLBVerbose, "Translating %s=%#x context=%d\n",
1245  isStage2 ? "IPA" : "VA", vaddr_tainted, asid);
1246  // Translation enabled
1247  fault = translateMmuOn(tc, req, mode, translation, delay, timing,
1248  functional, vaddr, tranMethod);
1249  }
1250 
1251  // Check for Debug Exceptions
1253 
1254  if (sd->enabled() && fault == NoFault) {
1255  fault = sd->testDebug(tc, req, mode);
1256  }
1257 
1258  return fault;
1259 }
1260 
1261 Fault
1263  TLB::ArmTranslationType tranType)
1264 {
1265  updateMiscReg(tc, tranType);
1266 
1267  if (directToStage2) {
1268  assert(stage2Tlb);
1269  return stage2Tlb->translateAtomic(req, tc, mode, tranType);
1270  }
1271 
1272  bool delay = false;
1273  Fault fault;
1274  if (FullSystem)
1275  fault = translateFs(req, tc, mode, NULL, delay, false, tranType);
1276  else
1277  fault = translateSe(req, tc, mode, NULL, delay, false);
1278  assert(!delay);
1279  return fault;
1280 }
1281 
1282 Fault
1284  TLB::ArmTranslationType tranType)
1285 {
1286  updateMiscReg(tc, tranType);
1287 
1288  if (directToStage2) {
1289  assert(stage2Tlb);
1290  return stage2Tlb->translateFunctional(req, tc, mode, tranType);
1291  }
1292 
1293  bool delay = false;
1294  Fault fault;
1295  if (FullSystem)
1296  fault = translateFs(req, tc, mode, NULL, delay, false, tranType, true);
1297  else
1298  fault = translateSe(req, tc, mode, NULL, delay, false);
1299  assert(!delay);
1300  return fault;
1301 }
1302 
1303 void
1305  Translation *translation, Mode mode, TLB::ArmTranslationType tranType)
1306 {
1307  updateMiscReg(tc, tranType);
1308 
1309  if (directToStage2) {
1310  assert(stage2Tlb);
1311  stage2Tlb->translateTiming(req, tc, translation, mode, tranType);
1312  return;
1313  }
1314 
1315  assert(translation);
1316 
1317  translateComplete(req, tc, translation, mode, tranType, isStage2);
1318 }
1319 
1320 Fault
1322  Translation *translation, Mode mode, TLB::ArmTranslationType tranType,
1323  bool callFromS2)
1324 {
1325  bool delay = false;
1326  Fault fault;
1327  if (FullSystem)
1328  fault = translateFs(req, tc, mode, translation, delay, true, tranType);
1329  else
1330  fault = translateSe(req, tc, mode, translation, delay, true);
1331  DPRINTF(TLBVerbose, "Translation returning delay=%d fault=%d\n", delay, fault !=
1332  NoFault);
1333  // If we have a translation, and we're not in the middle of doing a stage
1334  // 2 translation tell the translation that we've either finished or its
1335  // going to take a while. By not doing this when we're in the middle of a
1336  // stage 2 translation we prevent marking the translation as delayed twice,
1337  // one when the translation starts and again when the stage 1 translation
1338  // completes.
1339 
1340  if (translation && (callFromS2 || !stage2Req || req->hasPaddr() ||
1341  fault != NoFault)) {
1342  if (!delay)
1343  translation->finish(fault, req, tc, mode);
1344  else
1345  translation->markDelayed();
1346  }
1347  return fault;
1348 }
1349 
1350 Port *
1352 {
1353  return &stage2Mmu->getDMAPort();
1354 }
1355 
1356 void
1358 {
1359  // check if the regs have changed, or the translation mode is different.
1360  // NOTE: the tran type doesn't affect stage 2 TLB's as they only handle
1361  // one type of translation anyway
1362  if (miscRegValid && miscRegContext == tc->contextId() &&
1363  ((tranType == curTranType) || isStage2)) {
1364  return;
1365  }
1366 
1367  DPRINTF(TLBVerbose, "TLB variables changed!\n");
1368  cpsr = tc->readMiscReg(MISCREG_CPSR);
1369 
1370  // Dependencies: SCR/SCR_EL3, CPSR
1371  isSecure = ArmISA::isSecure(tc) &&
1372  !(tranType & HypMode) && !(tranType & S1S2NsTran);
1373 
1374  aarch64EL = tranTypeEL(cpsr, tranType);
1375  aarch64 = isStage2 ?
1376  ELIs64(tc, EL2) :
1377  ELIs64(tc, aarch64EL == EL0 ? EL1 : aarch64EL);
1378 
1380  if (aarch64) { // AArch64
1381  // determine EL we need to translate in
1382  switch (aarch64EL) {
1383  case EL0:
1384  if (HaveVirtHostExt(tc) && hcr.tge == 1 && hcr.e2h == 1) {
1385  // VHE code for EL2&0 regime
1388  uint64_t ttbr_asid = ttbcr.a1 ?
1391  asid = bits(ttbr_asid,
1392  (haveLargeAsid64 && ttbcr.as) ? 63 : 55, 48);
1393 
1394  } else {
1397  uint64_t ttbr_asid = ttbcr.a1 ?
1400  asid = bits(ttbr_asid,
1401  (haveLargeAsid64 && ttbcr.as) ? 63 : 55, 48);
1402 
1403  }
1404  break;
1405  case EL1:
1406  {
1409  uint64_t ttbr_asid = ttbcr.a1 ?
1412  asid = bits(ttbr_asid,
1413  (haveLargeAsid64 && ttbcr.as) ? 63 : 55, 48);
1414  }
1415  break;
1416  case EL2:
1419  if (hcr.e2h == 1) {
1420  // VHE code for EL2&0 regime
1421  uint64_t ttbr_asid = ttbcr.a1 ?
1424  asid = bits(ttbr_asid,
1425  (haveLargeAsid64 && ttbcr.as) ? 63 : 55, 48);
1426  } else {
1427  asid = -1;
1428  }
1429  break;
1430  case EL3:
1433  asid = -1;
1434  break;
1435  }
1436 
1438  isPriv = aarch64EL != EL0;
1439  if (haveVirtualization) {
1440  vmid = bits(tc->readMiscReg(MISCREG_VTTBR_EL2), 55, 48);
1441  isHyp = aarch64EL == EL2;
1442  isHyp |= tranType & HypMode;
1443  isHyp &= (tranType & S1S2NsTran) == 0;
1444  isHyp &= (tranType & S1CTran) == 0;
1445  bool vm = hcr.vm;
1446  if (HaveVirtHostExt(tc) && hcr.e2h == 1 && hcr.tge ==1) {
1447  vm = 0;
1448  }
1449 
1450  if (hcr.e2h == 1 && (aarch64EL == EL2
1451  || (hcr.tge ==1 && aarch64EL == EL0))) {
1452  isHyp = true;
1453  directToStage2 = false;
1454  stage2Req = false;
1455  stage2DescReq = false;
1456  } else {
1457  // Work out if we should skip the first stage of translation and go
1458  // directly to stage 2. This value is cached so we don't have to
1459  // compute it for every translation.
1460  bool sec = !isSecure || (isSecure && IsSecureEL2Enabled(tc));
1461  stage2Req = isStage2 ||
1462  (vm && !isHyp && sec &&
1463  !(tranType & S1CTran) && (aarch64EL < EL2) &&
1464  !(tranType & S1E1Tran)); // <--- FIX THIS HACK
1465  stage2DescReq = isStage2 || (vm && !isHyp && sec &&
1466  (aarch64EL < EL2));
1467  directToStage2 = !isStage2 && stage2Req && !sctlr.m;
1468  }
1469  } else {
1470  vmid = 0;
1471  isHyp = false;
1472  directToStage2 = false;
1473  stage2Req = false;
1474  stage2DescReq = false;
1475  }
1476  } else { // AArch32
1478  !isSecure));
1480  !isSecure));
1481  scr = tc->readMiscReg(MISCREG_SCR);
1482  isPriv = cpsr.mode != MODE_USER;
1483  if (longDescFormatInUse(tc)) {
1484  uint64_t ttbr_asid = tc->readMiscReg(
1486  MISCREG_TTBR0,
1487  tc, !isSecure));
1488  asid = bits(ttbr_asid, 55, 48);
1489  } else { // Short-descriptor translation table format in use
1490  CONTEXTIDR context_id = tc->readMiscReg(snsBankedIndex(
1492  asid = context_id.asid;
1493  }
1495  !isSecure));
1497  !isSecure));
1499  !isSecure));
1500  hcr = tc->readMiscReg(MISCREG_HCR);
1501 
1502  if (haveVirtualization) {
1503  vmid = bits(tc->readMiscReg(MISCREG_VTTBR), 55, 48);
1504  isHyp = cpsr.mode == MODE_HYP;
1505  isHyp |= tranType & HypMode;
1506  isHyp &= (tranType & S1S2NsTran) == 0;
1507  isHyp &= (tranType & S1CTran) == 0;
1508  if (isHyp) {
1510  }
1511  // Work out if we should skip the first stage of translation and go
1512  // directly to stage 2. This value is cached so we don't have to
1513  // compute it for every translation.
1514  bool sec = !isSecure || (isSecure && IsSecureEL2Enabled(tc));
1515  stage2Req = hcr.vm && !isStage2 && !isHyp && sec &&
1516  !(tranType & S1CTran);
1517  stage2DescReq = hcr.vm && !isStage2 && !isHyp && sec;
1518  directToStage2 = stage2Req && !sctlr.m;
1519  } else {
1520  vmid = 0;
1521  stage2Req = false;
1522  isHyp = false;
1523  directToStage2 = false;
1524  stage2DescReq = false;
1525  }
1526  }
1527  miscRegValid = true;
1528  miscRegContext = tc->contextId();
1529  curTranType = tranType;
1530 }
1531 
1534 {
1535  switch (type) {
1536  case S1E0Tran:
1537  case S12E0Tran:
1538  return EL0;
1539 
1540  case S1E1Tran:
1541  case S12E1Tran:
1542  return EL1;
1543 
1544  case S1E2Tran:
1545  return EL2;
1546 
1547  case S1E3Tran:
1548  return EL3;
1549 
1550  case NormalTran:
1551  case S1CTran:
1552  case S1S2NsTran:
1553  case HypMode:
1554  return currEL(cpsr);
1555 
1556  default:
1557  panic("Unknown translation mode!\n");
1558  }
1559 }
1560 
1561 Fault
1563  Translation *translation, bool timing, bool functional,
1564  bool is_secure, TLB::ArmTranslationType tranType)
1565 {
1566  // In a 2-stage system, the IPA->PA translation can be started via this
1567  // call so make sure the miscRegs are correct.
1568  if (isStage2) {
1569  updateMiscReg(tc, tranType);
1570  }
1571  bool is_fetch = (mode == Execute);
1572  bool is_write = (mode == Write);
1573 
1574  Addr vaddr_tainted = req->getVaddr();
1575  Addr vaddr = 0;
1576  ExceptionLevel target_el = aarch64 ? aarch64EL : EL1;
1577  if (aarch64) {
1578  vaddr = purifyTaggedAddr(vaddr_tainted, tc, target_el, (TCR)ttbcr,
1579  mode==Execute);
1580  } else {
1581  vaddr = vaddr_tainted;
1582  }
1583  *te = lookup(vaddr, asid, vmid, isHyp, is_secure, false, false, target_el,
1584  false);
1585  if (*te == NULL) {
1586  if (req->isPrefetch()) {
1587  // if the request is a prefetch don't attempt to fill the TLB or go
1588  // any further with the memory access (here we can safely use the
1589  // fault status for the short desc. format in all cases)
1591  return std::make_shared<PrefetchAbort>(
1592  vaddr_tainted, ArmFault::PrefetchTLBMiss, isStage2);
1593  }
1594 
1595  if (is_fetch)
1596  stats.instMisses++;
1597  else if (is_write)
1598  stats.writeMisses++;
1599  else
1600  stats.readMisses++;
1601 
1602  // start translation table walk, pass variables rather than
1603  // re-retreaving in table walker for speed
1604  DPRINTF(TLB, "TLB Miss: Starting hardware table walker for %#x(%d:%d)\n",
1605  vaddr_tainted, asid, vmid);
1606  Fault fault;
1607  fault = tableWalker->walk(req, tc, asid, vmid, isHyp, mode,
1608  translation, timing, functional, is_secure,
1609  tranType, stage2DescReq);
1610  // for timing mode, return and wait for table walk,
1611  if (timing || fault != NoFault) {
1612  return fault;
1613  }
1614 
1615  *te = lookup(vaddr, asid, vmid, isHyp, is_secure, false, false,
1616  target_el, false);
1617  if (!*te)
1618  printTlb();
1619  assert(*te);
1620  } else {
1621  if (is_fetch)
1622  stats.instHits++;
1623  else if (is_write)
1624  stats.writeHits++;
1625  else
1626  stats.readHits++;
1627  }
1628  return NoFault;
1629 }
1630 
1631 Fault
1633  ThreadContext *tc, Mode mode,
1634  Translation *translation, bool timing, bool functional,
1635  TlbEntry *mergeTe)
1636 {
1637  Fault fault;
1638 
1639  if (isStage2) {
1640  // We are already in the stage 2 TLB. Grab the table entry for stage
1641  // 2 only. We are here because stage 1 translation is disabled.
1642  TlbEntry *s2Te = NULL;
1643  // Get the stage 2 table entry
1644  fault = getTE(&s2Te, req, tc, mode, translation, timing, functional,
1646  // Check permissions of stage 2
1647  if ((s2Te != NULL) && (fault == NoFault)) {
1648  if (aarch64)
1649  fault = checkPermissions64(s2Te, req, mode, tc);
1650  else
1651  fault = checkPermissions(s2Te, req, mode);
1652  }
1653  *te = s2Te;
1654  return fault;
1655  }
1656 
1657  TlbEntry *s1Te = NULL;
1658 
1659  Addr vaddr_tainted = req->getVaddr();
1660 
1661  // Get the stage 1 table entry
1662  fault = getTE(&s1Te, req, tc, mode, translation, timing, functional,
1664  // only proceed if we have a valid table entry
1665  if ((s1Te != NULL) && (fault == NoFault)) {
1666  // Check stage 1 permissions before checking stage 2
1667  if (aarch64)
1668  fault = checkPermissions64(s1Te, req, mode, tc);
1669  else
1670  fault = checkPermissions(s1Te, req, mode);
1671  if (stage2Req & (fault == NoFault)) {
1672  Stage2LookUp *s2Lookup = new Stage2LookUp(this, stage2Tlb, *s1Te,
1673  req, translation, mode, timing, functional, isSecure,
1674  curTranType);
1675  fault = s2Lookup->getTe(tc, mergeTe);
1676  if (s2Lookup->isComplete()) {
1677  *te = mergeTe;
1678  // We've finished with the lookup so delete it
1679  delete s2Lookup;
1680  } else {
1681  // The lookup hasn't completed, so we can't delete it now. We
1682  // get round this by asking the object to self delete when the
1683  // translation is complete.
1684  s2Lookup->setSelfDelete();
1685  }
1686  } else {
1687  // This case deals with an S1 hit (or bypass), followed by
1688  // an S2 hit-but-perms issue
1689  if (isStage2) {
1690  DPRINTF(TLBVerbose, "s2TLB: reqVa %#x, reqPa %#x, fault %p\n",
1691  vaddr_tainted, req->hasPaddr() ? req->getPaddr() : ~0, fault);
1692  if (fault != NoFault) {
1693  ArmFault *armFault = reinterpret_cast<ArmFault *>(fault.get());
1694  armFault->annotate(ArmFault::S1PTW, false);
1695  armFault->annotate(ArmFault::OVA, vaddr_tainted);
1696  }
1697  }
1698  *te = s1Te;
1699  }
1700  }
1701  return fault;
1702 }
1703 
1704 void
1706 {
1707  if (!_ti) {
1708  test = nullptr;
1709  } else {
1710  TlbTestInterface *ti(dynamic_cast<TlbTestInterface *>(_ti));
1711  fatal_if(!ti, "%s is not a valid ARM TLB tester\n", _ti->name());
1712  test = ti;
1713  }
1714 }
1715 
1716 Fault
1719 {
1720  if (!test || !req->hasSize() || req->getSize() == 0 ||
1721  req->isCacheMaintenance()) {
1722  return NoFault;
1723  } else {
1724  return test->translationCheck(req, isPriv, mode, domain);
1725  }
1726 }
1727 
1728 Fault
1730  TlbEntry::DomainType domain, LookupLevel lookup_level)
1731 {
1732  if (!test) {
1733  return NoFault;
1734  } else {
1735  return test->walkCheck(pa, size, va, is_secure, isPriv, mode,
1736  domain, lookup_level);
1737  }
1738 }
ArmISA::SelfDebug
Definition: self_debug.hh:273
BaseTLB::Translation::finish
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
ArmISA::TLBIASID::asid
uint16_t asid
Definition: tlbi_op.hh:177
ArmISA::TLBIALL::inHost
bool inHost
Definition: tlbi_op.hh:95
ArmISA::TableWalker::walk
Fault walk(const RequestPtr &req, ThreadContext *tc, uint16_t asid, uint8_t _vmid, bool _isHyp, TLB::Mode mode, TLB::Translation *_trans, bool timing, bool functional, bool secure, TLB::ArmTranslationType tranType, bool _stage2Req)
Definition: table_walker.cc:189
ArmISA::LookupLevel
LookupLevel
Definition: pagetable.hh:72
ArmISA::ns
Bitfield< 0 > ns
Definition: miscregs_types.hh:328
ArmISA::TLB::TlbStats::instMisses
Stats::Scalar instMisses
Definition: tlb.hh:177
ArmISA::MODE_HYP
@ MODE_HYP
Definition: types.hh:642
ArmISA::computeAddrTop
int computeAddrTop(ThreadContext *tc, bool selbit, bool isInstr, TCR tcr, ExceptionLevel el)
Definition: utility.cc:458
ArmISA::Stage2MMU::stage2Tlb
TLB * stage2Tlb() const
Definition: stage2_mmu.hh:121
ArmISA::TLB::ttbcr
TTBCR ttbcr
Definition: tlb.hh:420
Request::SECURE
@ SECURE
The request targets the secure memory space.
Definition: request.hh:177
ArmISA::EL2
@ EL2
Definition: types.hh:624
ArmISA::TLB::setTestInterface
void setTestInterface(SimObject *ti)
Definition: tlb.cc:1705
ArmISA::TLB::UserMode
@ UserMode
Definition: tlb.hh:124
ArmISA::MISCREG_TTBR0
@ MISCREG_TTBR0
Definition: miscregs.hh:250
ArmISA::HaveVirtHostExt
bool HaveVirtHostExt(ThreadContext *tc)
Definition: utility.cc:264
ArmISA::TlbEntry::global
bool global
Definition: pagetable.hh:123
MipsISA::ti
Bitfield< 30 > ti
Definition: pra_constants.hh:176
BaseTLB::Read
@ Read
Definition: tlb.hh:57
ArmISA::TLB::isStage2
bool isStage2
Definition: tlb.hh:156
MipsISA::pfn
Bitfield< 29, 6 > pfn
Definition: pra_constants.hh:55
ArmISA::ArmFault::VmsaTran
@ VmsaTran
Definition: faults.hh:149
ArmISA::TlbEntry::ap
uint8_t ap
Definition: pagetable.hh:113
ArmISA::TLBIVMALL::makeStage2
TLBIVMALL makeStage2() const
Definition: tlbi_op.hh:156
ArmISA::TLB::translateFs
Fault translateFs(const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool &delay, bool timing, ArmTranslationType tranType, bool functional=false)
Definition: tlb.cc:1180
ArmISA::TLB::lookup
TlbEntry * lookup(Addr vpn, uint16_t asn, uint8_t vmid, bool hyp, bool secure, bool functional, bool ignore_asn, ExceptionLevel target_el, bool in_host)
Lookup an entry in the TLB.
Definition: tlb.cc:166
ArmISA::TLB::translateSe
Fault translateSe(const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool &delay, bool timing)
Definition: tlb.cc:557
ArmISA::TLB::translateMmuOn
Fault translateMmuOn(ThreadContext *tc, const RequestPtr &req, Mode mode, Translation *translation, bool &delay, bool timing, bool functional, Addr vaddr, ArmFault::TranMethod tranMethod)
Definition: tlb.cc:1108
ArmISA::TLB::ArmTranslationType
ArmTranslationType
Definition: tlb.hh:127
ArmISA::TLB::printTlb
void printTlb() const
Definition: tlb.cc:241
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Process
Definition: process.hh:65
ArmISA::EL0
@ EL0
Definition: types.hh:622
test
Definition: test.h:38
ArmISA::TLB::finalizePhysical
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
Definition: tlb.cc:137
pseudo_inst.hh
ArmISA::TlbEntry::N
uint8_t N
Definition: pagetable.hh:110
ArmISA::TlbEntry::el
ExceptionLevel el
Definition: pagetable.hh:131
ArmISA::TableWalker::haveLPAE
bool haveLPAE() const
Definition: table_walker.hh:922
Flags< FlagsType >
System::m5opRange
const AddrRange & m5opRange() const
Range used by memory-mapped m5 pseudo-ops if enabled.
Definition: system.hh:575
ArmISA::snsBankedIndex
int snsBankedIndex(MiscRegIndex reg, ThreadContext *tc)
Definition: miscregs.cc:1310
ArmISA::TLB::TlbStats::prefetchFaults
Stats::Scalar prefetchFaults
Definition: tlb.hh:189
ArmISA::TLB::TlbStats::flushTlbAsid
Stats::Scalar flushTlbAsid
Definition: tlb.hh:186
ArmISA::TLB::TlbStats::domainFaults
Stats::Scalar domainFaults
Definition: tlb.hh:190
pagetable.hh
ArmISA::MISCREG_TTBR0_EL1
@ MISCREG_TTBR0_EL1
Definition: miscregs.hh:593
ArmISA::ArmFault::AlignmentFault
@ AlignmentFault
Definition: faults.hh:93
ArmISA::currEL
static ExceptionLevel currEL(const ThreadContext *tc)
Definition: utility.hh:131
ArmISA::TLB::size
int size
Definition: tlb.hh:155
ArmISA::MISCREG_VTTBR_EL2
@ MISCREG_VTTBR_EL2
Definition: miscregs.hh:601
ArmISA::TlbTestInterface
Definition: tlb.hh:73
ArmISA::ArmFault::S1PTW
@ S1PTW
Definition: faults.hh:130
Request::CACHE_BLOCK_ZERO
@ CACHE_BLOCK_ZERO
This is a write that is targeted and zeroing an entire cache block.
Definition: request.hh:136
ArmISA::TLB::TlbStats::flushTlb
Stats::Scalar flushTlb
Definition: tlb.hh:183
ArmISA::TableWalker::haveLargeAsid64
bool haveLargeAsid64() const
Definition: table_walker.hh:924
ArmISA::ArmFault::PrefetchUncacheable
@ PrefetchUncacheable
Definition: faults.hh:113
ArmISA::te
Bitfield< 30 > te
Definition: miscregs_types.hh:334
BaseTLB::Mode
Mode
Definition: tlb.hh:57
ProbePointArg
ProbePointArg generates a point for the class of Arg.
Definition: thermal_domain.hh:51
ArmISA::TLB::sctlr
SCTLR sctlr
Definition: tlb.hh:415
ArmISA::TLB::TlbStats::writeMisses
Stats::Scalar writeMisses
Definition: tlb.hh:181
ArmISA::TLB::HypMode
@ HypMode
Definition: tlb.hh:130
ArmISA::TLB::setAttr
void setAttr(uint64_t attr)
Accessor functions for memory attributes for last accessed TLB entry.
Definition: tlb.hh:344
ArmISA::TLBIMVA
TLB Invalidate by VA.
Definition: tlbi_op.hh:241
ArmISA::TLB::drainResume
void drainResume() override
Resume execution after a successful drain.
Definition: tlb.cc:477
AddrRange::contains
bool contains(const Addr &a) const
Determine if the range contains an address.
Definition: addr_range.hh:435
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
ArmISA::TLBIVMALL
Implementaton of AArch64 TLBI VMALLE1(IS)/VMALLS112E1(IS) instructions.
Definition: tlbi_op.hh:145
ArmISA::TLB::stats
ArmISA::TLB::TlbStats stats
tlb.hh
ArmISA::TlbEntry::ns
bool ns
Definition: pagetable.hh:127
ArmISA::EL3
@ EL3
Definition: types.hh:625
PseudoInst::decodeAddrOffset
static void decodeAddrOffset(Addr offset, uint8_t &func)
Definition: pseudo_inst.hh:60
ArmISA::TLBIMVA::addr
Addr addr
Definition: tlbi_op.hh:252
FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:204
ArmISA::TLB::table
TlbEntry * table
Definition: tlb.hh:154
ArmISA::MISCREG_TCR_EL2
@ MISCREG_TCR_EL2
Definition: miscregs.hh:600
ThreadContext::getProcessPtr
virtual Process * getProcessPtr()=0
ArmISA::TLB::S1S2NsTran
@ S1S2NsTran
Definition: tlb.hh:133
ArmISA::TLB::TlbStats::flushTlbMva
Stats::Scalar flushTlbMva
Definition: tlb.hh:184
ArmISA::TLB::TlbStats::permsFaults
Stats::Scalar permsFaults
Definition: tlb.hh:191
stage2_mmu.hh
ArmISA::TLB::nmrr
NMRR nmrr
Definition: tlb.hh:424
system.hh
ArmISA::TLBIASID
TLB Invalidate by ASID match.
Definition: tlbi_op.hh:167
ArmISA::TLB::haveVirtualization
bool haveVirtualization
Definition: tlb.hh:433
ArmISA::Stage2LookUp::isComplete
bool isComplete() const
Definition: stage2_lookup.hh:94
ArmISA::Stage2MMU
Definition: stage2_mmu.hh:50
table_walker.hh
ArmISA::TLB::TlbStats::readMisses
Stats::Scalar readMisses
Definition: tlb.hh:179
ArmISA
Definition: ccregs.hh:41
ArmISA::MISCREG_TCR_EL3
@ MISCREG_TCR_EL3
Definition: miscregs.hh:606
ArmISA::TLBIALL::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:96
ArmSystem::haveVirtualization
bool haveVirtualization() const
Returns true if this system implements the virtualization Extensions.
Definition: system.hh:168
ArmISA::TLB::stage2DescReq
bool stage2DescReq
Definition: tlb.hh:161
request.hh
ArmISA::TLBIALL::makeStage2
TLBIALL makeStage2() const
Definition: tlbi_op.hh:90
BaseTLB
Definition: tlb.hh:50
ArmISA::TLBIALLN::makeStage2
TLBIALLN makeStage2() const
Definition: tlbi_op.hh:219
ArmISA::TLB::miscRegContext
ContextID miscRegContext
Definition: tlb.hh:428
ArmISA::ELIs64
bool ELIs64(ThreadContext *tc, ExceptionLevel el)
Definition: utility.cc:322
ArmISA::TLB::stage2Req
bool stage2Req
Definition: tlb.hh:157
ArmISA::TLB::_flushMva
void _flushMva(Addr mva, uint64_t asn, bool secure_lookup, bool ignore_asn, ExceptionLevel target_el, bool in_host)
Remove any entries that match both a va and asn.
Definition: tlb.cc:445
ArmISA::IsSecureEL2Enabled
bool IsSecureEL2Enabled(ThreadContext *tc)
Definition: utility.cc:300
ArmISA::aarch64
Bitfield< 34 > aarch64
Definition: types.hh:90
str.hh
ArmISA::TLBIMVA::inHost
bool inHost
Definition: tlbi_op.hh:254
ArmISA::TLB::translateMmuOff
Fault translateMmuOff(ThreadContext *tc, const RequestPtr &req, Mode mode, TLB::ArmTranslationType tranType, Addr vaddr, bool long_desc_format)
Definition: tlb.cc:1036
ArmISA::TLB::_attr
uint64_t _attr
Definition: tlb.hh:162
ArmISA::TlbEntry::innerAttrs
uint8_t innerAttrs
Definition: pagetable.hh:111
RequestorID
uint16_t RequestorID
Definition: request.hh:89
ArmISA::TLB::checkPermissions64
Fault checkPermissions64(TlbEntry *te, const RequestPtr &req, Mode mode, ThreadContext *tc)
Definition: tlb.cc:775
ArmISA::TLB::S1CTran
@ S1CTran
Definition: tlb.hh:129
ArmISA::TLB::regProbePoints
void regProbePoints() override
Register probe points for this object.
Definition: tlb.cc:551
ArmISA::TLB::curTranType
ArmTranslationType curTranType
Definition: tlb.hh:429
ArmISA::TLBIOp::secureLookup
bool secureLookup
Definition: tlbi_op.hh:75
ArmISA::TLB::S12E0Tran
@ S12E0Tran
Definition: tlb.hh:142
ArmISA::MISCREG_CONTEXTIDR
@ MISCREG_CONTEXTIDR
Definition: miscregs.hh:395
ArmISA::ArmFault::annotate
virtual void annotate(AnnotationIDs id, uint64_t val)
Definition: faults.hh:233
ArmISA::ArmFault::LpaeTran
@ LpaeTran
Definition: faults.hh:148
ArmISA::TLB::TlbStats::TlbStats
TlbStats(Stats::Group *parent)
Definition: tlb.cc:508
ArmISA::TlbEntry::attributes
uint64_t attributes
Definition: pagetable.hh:101
ArmISA::TLB::stage2Tlb
TLB * stage2Tlb
Definition: tlb.hh:167
ArmISA::TLB::AllowUnaligned
@ AllowUnaligned
Definition: tlb.hh:122
ArmISA::TLB::TlbStats::writeHits
Stats::Scalar writeHits
Definition: tlb.hh:180
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
ArmISA::TLB::~TLB
virtual ~TLB()
Definition: tlb.cc:99
ArmISA::Stage2MMU::getDMAPort
DmaPort & getDMAPort()
Get the port that ultimately belongs to the stage-two MMU, but is used by the two table walkers,...
Definition: stage2_mmu.hh:112
ArmISA::TLBIOp::targetEL
ExceptionLevel targetEL
Definition: tlbi_op.hh:76
ArmISA::TLBIASID::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:179
MipsISA::w
Bitfield< 0 > w
Definition: pra_constants.hh:278
ArmISA::ArmFault
Definition: faults.hh:60
ArmISA::TLB::S1E2Tran
@ S1E2Tran
Definition: tlb.hh:140
ArmISA::TlbEntry::mtype
MemoryType mtype
Definition: pagetable.hh:117
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ArmISA::MISCREG_HCR
@ MISCREG_HCR
Definition: miscregs.hh:244
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
ArmISA::TLB::TlbStats::inserts
Stats::Scalar inserts
Definition: tlb.hh:182
ArmISA::TLB::aarch64EL
ExceptionLevel aarch64EL
Definition: tlb.hh:414
ArmISA::TlbEntry::MemoryType::StronglyOrdered
@ StronglyOrdered
ArmISA::ExceptionLevel
ExceptionLevel
Definition: types.hh:621
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
ArmISA::ArmFault::AddressSizeLL
@ AddressSizeLL
Definition: faults.hh:107
ArmISA::MISCREG_ID_AA64MMFR1_EL1
@ MISCREG_ID_AA64MMFR1_EL1
Definition: miscregs.hh:566
isa.hh
ArmISA::Stage2LookUp
Definition: stage2_lookup.hh:55
ArmISA::TLBIMVAA::inHost
bool inHost
Definition: tlbi_op.hh:237
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
MipsISA::r
r
Definition: pra_constants.hh:95
ArmISA::MISCREG_TCR_EL1
@ MISCREG_TCR_EL1
Definition: miscregs.hh:597
process.hh
Request::STRICT_ORDER
@ STRICT_ORDER
The request is required to be strictly ordered by CPU models and is non-speculative.
Definition: request.hh:128
stage2_lookup.hh
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
ArmISA::TLB::isSecure
bool isSecure
Definition: tlb.hh:418
ArmISA::el
Bitfield< 3, 2 > el
Definition: miscregs_types.hh:69
ArmISA::TlbEntry::pfn
Addr pfn
Definition: pagetable.hh:98
ArmISA::TLB::S1E0Tran
@ S1E0Tran
Definition: tlb.hh:138
ArmISA::MISCREG_TTBCR
@ MISCREG_TTBCR
Definition: miscregs.hh:256
ArmISA::TLB::isHyp
bool isHyp
Definition: tlb.hh:419
ArmISA::sd
Bitfield< 4 > sd
Definition: miscregs_types.hh:768
reg_abi.hh
ArmISA::TLB::AlignmentMask
@ AlignmentMask
Definition: tlb.hh:113
tlbi_op.hh
BaseTLB::Translation
Definition: tlb.hh:59
ArmISA::TLB::checkPermissions
Fault checkPermissions(TlbEntry *te, const RequestPtr &req, Mode mode)
Definition: tlb.cc:597
M5_FALLTHROUGH
#define M5_FALLTHROUGH
Definition: compiler.hh:59
ThreadContext::contextId
virtual ContextID contextId() const =0
ArmISA::TLB::tranTypeEL
static ExceptionLevel tranTypeEL(CPSR cpsr, ArmTranslationType type)
Determine the EL to use for the purpose of a translation given a specific translation type.
Definition: tlb.cc:1533
ArmISA::TlbEntry::shareable
bool shareable
Definition: pagetable.hh:137
ArmISA::TlbEntry::pAddr
Addr pAddr(Addr va) const
Definition: pagetable.hh:236
ArmISA::TLB::rangeMRU
int rangeMRU
Definition: tlb.hh:204
ArmISA::MISCREG_TTBR0_EL2
@ MISCREG_TTBR0_EL2
Definition: miscregs.hh:599
ArmISA::TableWalker::haveVirtualization
bool haveVirtualization() const
Definition: table_walker.hh:923
RiscvISA::perm
Bitfield< 3, 1 > perm
Definition: pagetable.hh:69
ArmISA::MISCREG_DACR
@ MISCREG_DACR
Definition: miscregs.hh:261
ArmISA::TlbEntry::setAttributes
void setAttributes(bool lpae)
Definition: pagetable.hh:284
inifile.hh
ArmISA::TlbEntry::vmid
uint8_t vmid
Definition: pagetable.hh:109
ArmISA::TLB::TlbStats::flushedEntries
Stats::Scalar flushedEntries
Definition: tlb.hh:187
RiscvISA::x
Bitfield< 3 > x
Definition: pagetable.hh:70
ArmISA::TLB::vmid
uint8_t vmid
Definition: tlb.hh:422
ArmISA::longDescFormatInUse
bool longDescFormatInUse(ThreadContext *tc)
Definition: utility.cc:167
ArmISA::TLBIMVAA
TLB Invalidate by VA, All ASID.
Definition: tlbi_op.hh:226
faults.hh
ArmISA::TLBIMVAA::addr
Addr addr
Definition: tlbi_op.hh:236
ArmISA::MISCREG_HCR_EL2
@ MISCREG_HCR_EL2
Definition: miscregs.hh:582
UNIT_COUNT
#define UNIT_COUNT
Definition: units.hh:49
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
ArmISA::MISCREG_TTBR1_EL1
@ MISCREG_TTBR1_EL1
Definition: miscregs.hh:595
ArmISA::TLB::haveLargeAsid64
bool haveLargeAsid64
Definition: tlb.hh:434
ArmISA::TLB::checkPAN
bool checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req, Mode mode)
Definition: tlb.cc:1016
ArmISA::TLB::testWalk
Fault testWalk(Addr pa, Addr size, Addr va, bool is_secure, Mode mode, TlbEntry::DomainType domain, LookupLevel lookup_level)
Definition: tlb.cc:1729
ArmISA::TlbEntry::outerAttrs
uint8_t outerAttrs
Definition: pagetable.hh:112
ArmISA::EL1
@ EL1
Definition: types.hh:623
ArmISA::TLB::scr
SCR scr
Definition: tlb.hh:416
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ArmISA::TLB::tableWalker
TableWalker * tableWalker
Definition: tlb.hh:166
ArmISA::purifyTaggedAddr
Addr purifyTaggedAddr(Addr addr, ThreadContext *tc, ExceptionLevel el, TCR tcr, bool isInstr)
Removes the tag from tagged addresses if that mode is enabled.
Definition: utility.cc:503
ArmISA::TLB::dacr
uint32_t dacr
Definition: tlb.hh:426
ArmISA::TLBIVMALL::stage2
bool stage2
Definition: tlbi_op.hh:163
ArmISA::TLB::miscRegValid
bool miscRegValid
Definition: tlb.hh:427
ArmISA::MISCREG_HSCTLR
@ MISCREG_HSCTLR
Definition: miscregs.hh:242
ArmISA::TLB::prrr
PRRR prrr
Definition: tlb.hh:423
packet_access.hh
ArmISA::Stage2LookUp::getTe
Fault getTe(ThreadContext *tc, TlbEntry *destTe)
Definition: stage2_lookup.cc:54
ArmISA::TLBIALLEL::makeStage2
TLBIALLEL makeStage2() const
Definition: tlbi_op.hh:136
utility.hh
ArmISA::TLBIALL
TLB Invalidate All.
Definition: tlbi_op.hh:80
SimObject::getProbeManager
ProbeManager * getProbeManager()
Get the probe manager for this object.
Definition: sim_object.cc:114
full_system.hh
ArmISA::MISCREG_NMRR
@ MISCREG_NMRR
Definition: miscregs.hh:371
ArmISA::wxn
Bitfield< 19 > wxn
Definition: miscregs_types.hh:355
ArmISA::TLBIMVA::asid
uint16_t asid
Definition: tlbi_op.hh:253
ArmISA::TLB::updateMiscReg
void updateMiscReg(ThreadContext *tc, ArmTranslationType tranType=NormalTran)
Definition: tlb.cc:1357
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
ArmISA::TLB::aarch64
bool aarch64
Definition: tlb.hh:413
ArmISA::MISCREG_TTBR1
@ MISCREG_TTBR1
Definition: miscregs.hh:253
ArmISA::ISA::getSelfDebug
SelfDebug * getSelfDebug() const
Definition: isa.hh:521
ArmISA::TLB::isPriv
bool isPriv
Definition: tlb.hh:417
ArmISA::asid
asid
Definition: miscregs_types.hh:611
ArmISA::TableWalker::physAddrRange
uint8_t physAddrRange() const
Definition: table_walker.hh:925
ArmISA::TLB
Definition: tlb.hh:109
ArmISA::TLB::stage2Mmu
Stage2MMU * stage2Mmu
Definition: tlb.hh:168
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
BaseTLB::Write
@ Write
Definition: tlb.hh:57
ArmISA::MISCREG_PRRR
@ MISCREG_PRRR
Definition: miscregs.hh:365
ArmSystem
Definition: system.hh:59
ArmISA::TLB::haveLPAE
bool haveLPAE
Definition: tlb.hh:432
ArmISA::MISCREG_SCR_EL3
@ MISCREG_SCR_EL3
Definition: miscregs.hh:589
ArmISA::TableWalker::setMMU
void setMMU(Stage2MMU *m, RequestorID requestor_id)
Definition: table_walker.cc:100
ArmISA::TlbEntry::DomainType
DomainType
Definition: pagetable.hh:90
ArmISA::ArmFault::OVA
@ OVA
Definition: faults.hh:131
ArmISA::TlbEntry
Definition: pagetable.hh:81
ArmISA::TLB::asid
uint16_t asid
Definition: tlb.hh:421
ArmISA::TlbEntry::nstid
bool nstid
Definition: pagetable.hh:129
BaseTLB::Translation::markDelayed
virtual void markDelayed()=0
Signal that the translation has been delayed due to a hw page table walk.
ArmISA::MISCREG_CPSR
@ MISCREG_CPSR
Definition: miscregs.hh:57
ArmISA::TLB::S1E1Tran
@ S1E1Tran
Definition: tlb.hh:139
ArmISA::TlbEntry::xn
bool xn
Definition: pagetable.hh:141
ArmISA::TLBIIPA::makeStage2
TLBIMVAA makeStage2() const
TLBIIPA is basically a TLBIMVAA for stage2 TLBs.
Definition: tlbi_op.hh:297
AddrRange::start
Addr start() const
Get the start address of the range.
Definition: addr_range.hh:314
base.hh
ArmISA::ArmFault::PermissionLL
@ PermissionLL
Definition: faults.hh:100
ArmISA::TLBIALLEL::inHost
bool inHost
Definition: tlbi_op.hh:141
ArmISA::TLB::cpsr
CPSR cpsr
Definition: tlb.hh:412
ArmISA::TLB::init
void init() override
setup all the back pointers
Definition: tlb.cc:105
ArmISA::domain
Bitfield< 7, 4 > domain
Definition: miscregs_types.hh:418
ArmISA::TLB::ppRefills
ProbePoints::PMUUPtr ppRefills
PMU probe for TLB refills.
Definition: tlb.hh:202
ArmISA::TLB::takeOverFrom
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
Definition: tlb.cc:485
ArmISA::TlbEntry::domain
DomainType domain
Definition: pagetable.hh:115
ArmISA::ArmFault::TranMethod
TranMethod
Definition: faults.hh:146
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Request::UNCACHEABLE
@ UNCACHEABLE
The request is to an uncacheable address.
Definition: request.hh:118
ArmISA::ArmFault::DomainLL
@ DomainLL
Definition: faults.hh:99
Stats::Group
Statistics container.
Definition: group.hh:87
ArmISA::TlbEntry::outerShareable
bool outerShareable
Definition: pagetable.hh:138
ThreadContext::readMiscReg
virtual RegVal readMiscReg(RegIndex misc_reg)=0
ArmISA::TLB::TlbStats::readHits
Stats::Scalar readHits
Definition: tlb.hh:178
ArmISA::TlbEntry::size
Addr size
Definition: pagetable.hh:99
ArmSystem::haveEL
static bool haveEL(ThreadContext *tc, ArmISA::ExceptionLevel el)
Return true if the system implements a specific exception level.
Definition: system.cc:135
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
ArmISA::TlbEntry::vpn
Addr vpn
Definition: pagetable.hh:100
ArmISA::TLBIALLEL
Implementaton of AArch64 TLBI ALLE(1,2,3)(IS) instructions.
Definition: tlbi_op.hh:126
Packet::setLE
void setLE(T v)
Set the value in the data pointer to v as little endian.
Definition: packet_access.hh:105
ArmISA::TLB::directToStage2
bool directToStage2
Definition: tlb.hh:163
ArmISA::TLBIIPA
TLB Invalidate by Intermediate Physical Address.
Definition: tlbi_op.hh:286
bits
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:73
X86ISA::type
type
Definition: misc.hh:727
ArmISA::TLB::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode, ArmTranslationType tranType)
Definition: tlb.cc:1262
Stats
Definition: statistics.cc:53
ArmISA::TLB::getTableWalkerPort
Port * getTableWalkerPort() override
Get the table walker port.
Definition: tlb.cc:1351
ArmISA::TlbEntry::asid
uint16_t asid
Definition: pagetable.hh:108
trace.hh
ArmISA::TlbEntry::MemoryType::Normal
@ Normal
ArmISA::MISCREG_TTBR1_EL2
@ MISCREG_TTBR1_EL2
Definition: miscregs.hh:816
ArmISA::vm
Bitfield< 0 > vm
Definition: miscregs_types.hh:281
ArmISA::MISCREG_SCTLR
@ MISCREG_SCTLR
Definition: miscregs.hh:231
ArmISA::TLB::testTranslation
Fault testTranslation(const RequestPtr &req, Mode mode, TlbEntry::DomainType domain)
Definition: tlb.cc:1717
ArmISA::TLBIVMALL::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:162
ArmISA::pa
Bitfield< 39, 12 > pa
Definition: miscregs_types.hh:650
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
self_debug.hh
ArmISA::TLB::getTE
Fault getTE(TlbEntry **te, const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool timing, bool functional, bool is_secure, ArmTranslationType tranType)
Definition: tlb.cc:1562
ArmISA::TLB::S1E3Tran
@ S1E3Tran
Definition: tlb.hh:141
ArmISA::TLB::getResultTe
Fault getResultTe(TlbEntry **te, const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool timing, bool functional, TlbEntry *mergeTe)
Definition: tlb.cc:1632
ArmISA::TLB::TLB
TLB(const Params &p)
Definition: tlb.cc:76
ArmISA::MODE_USER
@ MODE_USER
Definition: types.hh:636
ArmISA::TLB::setMMU
void setMMU(Stage2MMU *m, RequestorID requestor_id)
Definition: tlb.cc:112
ArmISA::inAArch64
bool inAArch64(ThreadContext *tc)
Definition: utility.cc:160
ArmISA::TLB::flush
void flush(const TLBIALL &tlbi_op)
Reset the entire TLB.
Definition: tlb.cc:278
ArmISA::TLB::TlbStats::instHits
Stats::Scalar instHits
Definition: tlb.hh:176
ArmISA::MISCREG_SCTLR_EL3
@ MISCREG_SCTLR_EL3
Definition: miscregs.hh:587
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:219
page_table.hh
ArmISA::TableWalker::setTlb
void setTlb(TLB *_tlb)
Definition: table_walker.hh:940
ArmISA::TLB::TlbStats::alignFaults
Stats::Scalar alignFaults
Definition: tlb.hh:188
BaseTLB::Execute
@ Execute
Definition: tlb.hh:57
ArmISA::TLB::flushAll
void flushAll() override
Reset the entire TLB.
Definition: tlb.cc:255
ArmISA::Stage2LookUp::setSelfDelete
void setSelfDelete()
Definition: stage2_lookup.hh:92
ArmISA::TLB::m5opRange
AddrRange m5opRange
Definition: tlb.hh:437
ArmISA::TlbEntry::nonCacheable
bool nonCacheable
Definition: pagetable.hh:134
ArmISA::MISCREG_SCR
@ MISCREG_SCR
Definition: miscregs.hh:239
ArmISA::TLB::S12E1Tran
@ S12E1Tran
Definition: tlb.hh:143
ArmISA::ArmFault::PrefetchTLBMiss
@ PrefetchTLBMiss
Definition: faults.hh:112
ArmISA::TlbEntry::valid
bool valid
Definition: pagetable.hh:124
ArmISA::MISCREG_SCTLR_EL2
@ MISCREG_SCTLR_EL2
Definition: miscregs.hh:580
ArmISA::TLB::TlbStats::flushTlbMvaAsid
Stats::Scalar flushTlbMvaAsid
Definition: tlb.hh:185
ArmISA::TlbEntry::isHyp
bool isHyp
Definition: pagetable.hh:122
ArmISA::TlbEntry::DomainType::NoAccess
@ NoAccess
ArmISA::MISCREG_VTTBR
@ MISCREG_VTTBR
Definition: miscregs.hh:444
ArmISA::TLB::translateFunctional
bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr)
Do a functional lookup on the TLB (for debugging) and don't modify any internal state.
Definition: tlb.cc:119
thread_context.hh
ArmISA::TLBIASID::inHost
bool inHost
Definition: tlbi_op.hh:178
ArmISA::TLB::translateComplete
Fault translateComplete(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, ArmTranslationType tranType, bool callFromS2)
Definition: tlb.cc:1321
ArmISA::TLB::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, ArmTranslationType tranType)
Definition: tlb.cc:1304
ArmISA::va
Bitfield< 8 > va
Definition: miscregs_types.hh:272
ArmISA::TLBIVMALL::inHost
bool inHost
Definition: tlbi_op.hh:161
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711
ArmISA::MISCREG_SCTLR_EL1
@ MISCREG_SCTLR_EL1
Definition: miscregs.hh:575
ArmISA::TLB::physAddrRange
uint8_t physAddrRange
Definition: tlb.hh:435
ArmISA::isSecure
bool isSecure(ThreadContext *tc)
Definition: utility.cc:112
ArmISA::m
Bitfield< 0 > m
Definition: miscregs_types.hh:389
ArmISA::TLB::NormalTran
@ NormalTran
Definition: tlb.hh:128
ArmISA::dc
Bitfield< 12 > dc
Definition: miscregs_types.hh:269
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
ArmISA::TLB::hcr
HCR hcr
Definition: tlb.hh:425
ArmISA::TLBIALLN
TLB Invalidate All, Non-Secure.
Definition: tlbi_op.hh:209
ArmISA::f
Bitfield< 6 > f
Definition: miscregs_types.hh:64
ArmISA::TLB::insert
void insert(Addr vaddr, TlbEntry &pte)
Definition: tlb.cc:211
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Jun 22 2021 15:28:20 for gem5 by doxygen 1.8.17