gem5  v22.0.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mmu.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2013, 2016, 2019-2022 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 #ifndef __ARCH_ARM_MMU_HH__
42 #define __ARCH_ARM_MMU_HH__
43 
44 #include "arch/arm/page_size.hh"
45 #include "arch/arm/tlb.hh"
46 #include "arch/arm/utility.hh"
47 #include "arch/generic/mmu.hh"
48 #include "base/memoizer.hh"
49 #include "enums/ArmLookupLevel.hh"
50 
51 #include "params/ArmMMU.hh"
52 
53 namespace gem5
54 {
55 
56 namespace ArmISA {
57 
58 class TableWalker;
59 
60 class MMU : public BaseMMU
61 {
62  protected:
63  using LookupLevel = enums::ArmLookupLevel;
64 
65  ArmISA::TLB *
66  getDTBPtr() const
67  {
68  return static_cast<ArmISA::TLB *>(dtb);
69  }
70 
71  ArmISA::TLB *
72  getITBPtr() const
73  {
74  return static_cast<ArmISA::TLB *>(itb);
75  }
76 
77  TLB * getTlb(BaseMMU::Mode mode, bool stage2) const;
78  TableWalker * getTableWalker(BaseMMU::Mode mode, bool stage2) const;
79 
80  protected:
83 
88 
89  public:
92  Mode mode, Request::Flags flags) override
93  {
95  PageBytes, start, size, tc, this, mode, flags));
96  }
97 
98  enum ArmFlags
99  {
101 
102  AlignByte = 0x0,
104  AlignWord = 0x2,
108 
110  // Priv code operating as if it wasn't
111  UserMode = 0x10
112  };
113 
115  {
117  S1CTran = 0x1,
118  HypMode = 0x2,
119  // Secure code operating as if it wasn't (required by some Address
120  // Translate operations)
121  S1S2NsTran = 0x4,
122  // Address translation instructions (eg AT S1E0R_Xt) need to be handled
123  // in special ways during translation because they could need to act
124  // like a different EL than the current EL. The following flags are
125  // for these instructions
126  S1E0Tran = 0x8,
127  S1E1Tran = 0x10,
128  S1E2Tran = 0x20,
129  S1E3Tran = 0x40,
130  S12E0Tran = 0x80,
131  S12E1Tran = 0x100
132  };
133 
134  struct CachedState
135  {
136  CachedState(MMU *_mmu, bool stage2)
137  : mmu(_mmu), isStage2(stage2),
139  {}
140 
141  CachedState&
142  operator=(const CachedState &rhs)
143  {
144  isStage2 = rhs.isStage2;
145  cpsr = rhs.cpsr;
146  aarch64 = rhs.aarch64;
147  aarch64EL = EL0;
148  sctlr = rhs.sctlr;
149  scr = rhs.scr;
150  isPriv = rhs.isPriv;
151  isSecure = rhs.isSecure;
152  isHyp = rhs.isHyp;
153  ttbcr = rhs.ttbcr;
154  asid = rhs.asid;
155  vmid = rhs.vmid;
156  prrr = rhs.prrr;
157  nmrr = rhs.nmrr;
158  hcr = rhs.hcr;
159  dacr = rhs.dacr;
161  curTranType = rhs.curTranType;
162  stage2Req = rhs.stage2Req;
165 
166  // When we copy we just flush the memoizer cache
167  computeAddrTop.flush();
168 
169  return *this;
170  }
171 
172  void updateMiscReg(ThreadContext *tc, ArmTranslationType tran_type);
173 
176  vmid_t getVMID(ThreadContext *tc) const;
177 
179  bool isStage2 = false;
180  CPSR cpsr = 0;
181  bool aarch64 = false;
183  SCTLR sctlr = 0;
184  SCR scr = 0;
185  bool isPriv = false;
186  bool isSecure = false;
187  bool isHyp = false;
188  TTBCR ttbcr = 0;
189  uint16_t asid = 0;
191  PRRR prrr = 0;
192  NMRR nmrr = 0;
193  HCR hcr = 0;
194  uint32_t dacr = 0;
195  bool miscRegValid = false;
197 
198  // Indicates whether a stage 2 lookup is also required
199  bool stage2Req = false;
200 
201  // Indicates whether a stage 2 lookup of the table descriptors is
202  // required. Certain address translation instructions will
203  // intercept the IPA but the table descriptors still need to be
204  // translated by the stage2.
205  bool stage2DescReq = false;
206 
207  // Indicates whether all translation requests should
208  // be routed directly to the stage 2 TLB
209  bool directToStage2 = false;
210 
211  Memoizer<int, ThreadContext*, bool,
213  };
214 
215  MMU(const ArmMMUParams &p);
216 
217  void init() override;
218 
220 
229  bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr);
230 
232  BaseMMU::Mode mode) override;
233 
240 
242  BaseMMU::Mode mode, ArmTranslationType tran_type, bool stage2);
243 
244  Fault
246  ThreadContext *tc, Mode mode) override
247  {
248  return translateAtomic(req, tc, mode, NormalTran);
249  }
251  BaseMMU::Mode mode, ArmTranslationType tran_type, bool stage2);
253  ArmTranslationType tran_type);
254 
255  void
257  Translation *translation, Mode mode) override
258  {
259  translateTiming(req, tc, translation, mode, NormalTran, false);
260  }
261  void translateTiming(const RequestPtr &req, ThreadContext *tc,
262  BaseMMU::Translation *translation, BaseMMU::Mode mode, bool stage2);
263  void translateTiming(
264  const RequestPtr &req, ThreadContext *tc,
265  Translation *translation, Mode mode,
266  ArmTranslationType tran_type, bool stage2);
267 
269  ArmTranslationType tran_type, Addr vaddr, bool long_desc_format,
270  CachedState &state);
272  Translation *translation, bool &delay, bool timing, bool functional,
273  Addr vaddr, ArmFault::TranMethod tranMethod,
274  CachedState &state);
275 
277  Translation *translation, bool &delay,
278  bool timing, ArmTranslationType tran_type, bool functional,
279  CachedState &state);
281  Translation *translation, bool &delay, bool timing,
282  CachedState &state);
283 
285  Translation *translation, Mode mode, ArmTranslationType tran_type,
286  bool call_from_s2);
288  Translation *translation, Mode mode, ArmTranslationType tran_type,
289  bool call_from_s2, CachedState &state);
291  const RequestPtr &req,
292  ThreadContext *tc, Mode mode) const override;
293 
294  void drainResume() override;
295 
296  void takeOverFrom(BaseMMU *old_mmu) override;
297 
298  void invalidateMiscReg();
299 
300  template <typename OP>
301  void
302  flush(const OP &tlbi_op)
303  {
304  if (tlbi_op.stage1Flush()) {
305  flushStage1(tlbi_op);
306  }
307 
308  if (tlbi_op.stage2Flush()) {
309  flushStage2(tlbi_op.makeStage2());
310  }
311  }
312 
313  template <typename OP>
314  void
315  flushStage1(const OP &tlbi_op)
316  {
317  for (auto tlb : instruction) {
318  static_cast<TLB*>(tlb)->flush(tlbi_op);
319  }
320  for (auto tlb : data) {
321  static_cast<TLB*>(tlb)->flush(tlbi_op);
322  }
323  for (auto tlb : unified) {
324  static_cast<TLB*>(tlb)->flush(tlbi_op);
325  }
326  }
327 
328  template <typename OP>
329  void
330  flushStage2(const OP &tlbi_op)
331  {
332  itbStage2->flush(tlbi_op);
333  dtbStage2->flush(tlbi_op);
334  }
335 
336  template <typename OP>
337  void
338  iflush(const OP &tlbi_op)
339  {
340  for (auto tlb : instruction) {
341  static_cast<TLB*>(tlb)->flush(tlbi_op);
342  }
343  for (auto tlb : unified) {
344  static_cast<TLB*>(tlb)->flush(tlbi_op);
345  }
346  }
347 
348  template <typename OP>
349  void
350  dflush(const OP &tlbi_op)
351  {
352  for (auto tlb : data) {
353  static_cast<TLB*>(tlb)->flush(tlbi_op);
354  }
355  for (auto tlb : unified) {
356  static_cast<TLB*>(tlb)->flush(tlbi_op);
357  }
358  }
359 
360  void
361  flushAll() override
362  {
364  itbStage2->flushAll();
365  dtbStage2->flushAll();
366  }
367 
368  uint64_t
369  getAttr() const
370  {
371  return _attr;
372  }
373 
376  void
377  setAttr(uint64_t attr)
378  {
379  _attr = attr;
380  }
381 
382  const ArmRelease* release() const { return _release; }
383 
384  bool hasWalkCache() const { return _hasWalkCache; }
385 
392 
393  public:
407  TlbEntry *lookup(Addr vpn, uint16_t asn, vmid_t vmid, bool hyp,
408  bool secure, bool functional,
409  bool ignore_asn, ExceptionLevel target_el,
410  bool in_host, bool stage2, BaseMMU::Mode mode);
411 
412  Fault getTE(TlbEntry **te, const RequestPtr &req,
413  ThreadContext *tc, Mode mode,
414  Translation *translation, bool timing, bool functional,
415  bool is_secure, ArmTranslationType tran_type,
416  bool stage2);
417  Fault getTE(TlbEntry **te, const RequestPtr &req,
418  ThreadContext *tc, Mode mode,
419  Translation *translation, bool timing, bool functional,
420  bool is_secure, ArmTranslationType tran_type,
421  CachedState &state);
422 
423  Fault getResultTe(TlbEntry **te, const RequestPtr &req,
424  ThreadContext *tc, Mode mode,
425  Translation *translation, bool timing,
426  bool functional, TlbEntry *mergeTe,
427  CachedState &state);
428 
430  bool stage2);
432  CachedState &state);
434  ThreadContext *tc, bool stage2);
436  ThreadContext *tc, CachedState &state);
437 
438  protected:
439  Addr purifyTaggedAddr(Addr vaddr_tainted, ThreadContext *tc,
441  TCR tcr, bool is_inst, CachedState& state);
442 
443  bool checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req,
444  Mode mode, const bool is_priv, CachedState &state);
445 
446  bool faultPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req,
447  Mode mode, const bool is_priv, CachedState &state);
448 
450  TlbEntry *te, const RequestPtr &req, Mode mode,
451  ThreadContext *tc, CachedState &state, bool r, bool w, bool x);
452 
454  TlbEntry *te, const RequestPtr &req, Mode mode,
455  ThreadContext *tc, CachedState &state, bool r, bool w, bool x);
456 
457  public: /* Testing */
459 
461 
464  Fault testWalk(Addr pa, Addr size, Addr va, bool is_secure, Mode mode,
466  LookupLevel lookup_level, bool stage2);
467  Fault testWalk(Addr pa, Addr size, Addr va, bool is_secure, Mode mode,
469  LookupLevel lookup_level, CachedState &state);
470 
471  protected:
472  bool checkWalkCache() const;
473 
474  bool isCompleteTranslation(TlbEntry *te) const;
475 
477  ThreadContext *tc, ArmTranslationType tran_type,
478  bool stage2);
479 
480  protected:
482 
483  public:
485 
486  protected:
487  uint64_t _attr; // Memory attributes for last accessed TLB entry
488 
489  // Cached copies of system-level properties
492  uint8_t physAddrRange;
493 
495 
497 
498  struct Stats : public statistics::Group
499  {
500  Stats(statistics::Group *parent);
501  // Access Stats
506  } stats;
507 
508 };
509 
510 template<typename T>
511 MMU *
512 getMMUPtr(T *tc)
513 {
514  auto mmu = static_cast<MMU *>(tc->getMMUPtr());
515  assert(mmu);
516  return mmu;
517 }
518 
519 } // namespace ArmISA
520 } // namespace gem5
521 
522 #endif // __ARCH_ARM_MMU_HH__
gem5::ArmISA::MMU::itbWalker
TableWalker * itbWalker
Definition: mmu.hh:84
gem5::statistics::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1930
gem5::ArmISA::MMU::S12E0Tran
@ S12E0Tran
Definition: mmu.hh:130
gem5::ArmISA::tlb
Bitfield< 59, 56 > tlb
Definition: misc_types.hh:92
gem5::ArmISA::MMU::finalizePhysical
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Definition: mmu.cc:205
gem5::ArmISA::MMU::flush
void flush(const OP &tlbi_op)
Definition: mmu.hh:302
gem5::ArmISA::MMU::haveLargeAsid64
bool haveLargeAsid64
Definition: mmu.hh:491
gem5::ArmISA::MMU::S12E1Tran
@ S12E1Tran
Definition: mmu.hh:131
gem5::ArmISA::MMU::LookupLevel
enums::ArmLookupLevel LookupLevel
Definition: mmu.hh:63
gem5::ArmISA::MMU::CachedState::nmrr
NMRR nmrr
Definition: mmu.hh:192
gem5::ArmISA::MMU::s2PermBits64
std::pair< bool, bool > s2PermBits64(TlbEntry *te, const RequestPtr &req, Mode mode, ThreadContext *tc, CachedState &state, bool r, bool w, bool x)
Definition: mmu.cc:579
gem5::ArmISA::MMU::Stats::domainFaults
statistics::Scalar domainFaults
Definition: mmu.hh:504
gem5::ArmISA::el
Bitfield< 3, 2 > el
Definition: misc_types.hh:73
gem5::ArmISA::MMU::getTE
Fault getTE(TlbEntry **te, const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool timing, bool functional, bool is_secure, ArmTranslationType tran_type, bool stage2)
Definition: mmu.cc:1415
gem5::ArmISA::MMU::getAttr
uint64_t getAttr() const
Definition: mmu.hh:369
gem5::ArmISA::MMU::AlignDoubleWord
@ AlignDoubleWord
Definition: mmu.hh:105
gem5::BaseMMU::dtb
BaseTLB * dtb
Definition: mmu.hh:158
gem5::BaseMMU::Mode
Mode
Definition: mmu.hh:56
gem5::ArmISA::attr
attr
Definition: misc_types.hh:656
gem5::ArmISA::MMU::m5opRange
AddrRange m5opRange
Definition: mmu.hh:494
gem5::ArmISA::MMU::AlignByte
@ AlignByte
Definition: mmu.hh:102
gem5::ArmISA::domain
Bitfield< 7, 4 > domain
Definition: misc_types.hh:424
gem5::ArmISA::MMU::dtbStage2Walker
TableWalker * dtbStage2Walker
Definition: mmu.hh:87
gem5::ArmISA::vmid_t
uint16_t vmid_t
Definition: types.hh:57
gem5::ArmISA::MMU::CachedState::updateMiscReg
void updateMiscReg(ThreadContext *tc, ArmTranslationType tran_type)
Definition: mmu.cc:1217
gem5::ArmISA::MMU::S1E0Tran
@ S1E0Tran
Definition: mmu.hh:126
gem5::ArmISA::TLB
Definition: tlb.hh:115
gem5::ArmISA::MMU::S1CTran
@ S1CTran
Definition: mmu.hh:117
gem5::ArmISA::MMU::CachedState::vmid
vmid_t vmid
Definition: mmu.hh:190
gem5::ArmISA::MMU::getResultTe
Fault getResultTe(TlbEntry **te, const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool timing, bool functional, TlbEntry *mergeTe, CachedState &state)
Definition: mmu.cc:1507
gem5::VegaISA::w
Bitfield< 6 > w
Definition: pagetable.hh:59
tlb.hh
gem5::ArmISA::MMU::purifyTaggedAddr
Addr purifyTaggedAddr(Addr vaddr_tainted, ThreadContext *tc, ExceptionLevel el, TCR tcr, bool is_inst, CachedState &state)
Definition: mmu.cc:795
gem5::ArmISA::MMU::S1E3Tran
@ S1E3Tran
Definition: mmu.hh:129
gem5::ArmISA::MMU::AllowUnaligned
@ AllowUnaligned
Definition: mmu.hh:109
gem5::ArmISA::MMU::ArmFlags
ArmFlags
Definition: mmu.hh:98
gem5::ArmISA::MMU::_hasWalkCache
bool _hasWalkCache
Definition: mmu.hh:496
gem5::ArmISA::MMU::getDTBPtr
ArmISA::TLB * getDTBPtr() const
Definition: mmu.hh:66
gem5::VegaISA::r
Bitfield< 5 > r
Definition: pagetable.hh:60
gem5::ArmISA::MMU::dtbWalker
TableWalker * dtbWalker
Definition: mmu.hh:85
gem5::ArmISA::TlbTestInterface
Definition: tlb.hh:79
gem5::ArmISA::MMU::testWalk
Fault testWalk(Addr pa, Addr size, Addr va, bool is_secure, Mode mode, TlbEntry::DomainType domain, LookupLevel lookup_level, bool stage2)
Definition: mmu.cc:1625
gem5::ArmISA::MMU::MMU
MMU(const ArmMMUParams &p)
Definition: mmu.cc:59
gem5::ArmISA::MMU::CachedState::ttbcr
TTBCR ttbcr
Definition: mmu.hh:188
gem5::ArmISA::MMU::Stats
Definition: mmu.hh:498
gem5::ArmISA::TlbEntry
Definition: pagetable.hh:165
gem5::ArmISA::MMU::AlignOctWord
@ AlignOctWord
Definition: mmu.hh:107
gem5::ArmISA::MMU::S1E2Tran
@ S1E2Tran
Definition: mmu.hh:128
gem5::ArmISA::MMU::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: mmu.cc:92
gem5::ArmISA::MMU::_attr
uint64_t _attr
Definition: mmu.hh:487
gem5::ArmISA::MMU::CachedState::CachedState
CachedState(MMU *_mmu, bool stage2)
Definition: mmu.hh:136
gem5::ArmISA::getMMUPtr
MMU * getMMUPtr(T *tc)
Definition: mmu.hh:512
gem5::ArmISA::TlbEntry::DomainType
DomainType
Definition: pagetable.hh:177
gem5::ArmISA::MMU::flushAll
void flushAll() override
Definition: mmu.hh:361
gem5::ArmISA::MMU::Stats::permsFaults
statistics::Scalar permsFaults
Definition: mmu.hh:505
gem5::ArmISA::MMU::CachedState::curTranType
ArmTranslationType curTranType
Definition: mmu.hh:196
gem5::BaseMMU
Definition: mmu.hh:53
gem5::ArmISA::MMU::itbStage2Walker
TableWalker * itbStage2Walker
Definition: mmu.hh:86
gem5::BaseMMU::translateFunctional
virtual Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode)
Definition: mmu.cc:118
gem5::ArmISA::MMU::translateFs
Fault translateFs(const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool &delay, bool timing, ArmTranslationType tran_type, bool functional, CachedState &state)
Definition: mmu.cc:954
gem5::ArmISA::MMU::CachedState::cpsr
CPSR cpsr
Definition: mmu.hh:180
gem5::ArmISA::MMU::UserMode
@ UserMode
Definition: mmu.hh:111
gem5::ArmISA::MMU::itbStage2
TLB * itbStage2
Definition: mmu.hh:81
gem5::ArmISA::MMU::CachedState::aarch64
bool aarch64
Definition: mmu.hh:181
gem5::ArmISA::MMU::translateComplete
Fault translateComplete(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, ArmTranslationType tran_type, bool call_from_s2)
Definition: mmu.cc:1107
gem5::ArmISA::pa
Bitfield< 39, 12 > pa
Definition: misc_types.hh:657
gem5::ArmISA::MMU::CachedState::mmu
MMU * mmu
Definition: mmu.hh:178
gem5::Flags< FlagsType >
gem5::ArmISA::MMU::getTableWalker
TableWalker * getTableWalker(BaseMMU::Mode mode, bool stage2) const
Definition: mmu.cc:153
gem5::ArmISA::MMU::CachedState::isPriv
bool isPriv
Definition: mmu.hh:185
gem5::ArmISA::MMU::CachedState
Definition: mmu.hh:134
gem5::ArmISA::MMU::Stats::prefetchFaults
statistics::Scalar prefetchFaults
Definition: mmu.hh:503
gem5::ArmISA::MMU::iflush
void iflush(const OP &tlbi_op)
Definition: mmu.hh:338
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:94
gem5::ArmISA::MMU::setTestInterface
void setTestInterface(SimObject *ti)
Definition: mmu.cc:1601
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:248
gem5::VegaISA::p
Bitfield< 54 > p
Definition: pagetable.hh:70
gem5::ArmISA::MMU::AlignWord
@ AlignWord
Definition: mmu.hh:104
gem5::BaseMMU::unified
std::set< BaseTLB * > unified
Definition: mmu.hh:183
gem5::ArmISA::MMU::NormalTran
@ NormalTran
Definition: mmu.hh:116
gem5::ArmISA::MMU::CachedState::prrr
PRRR prrr
Definition: mmu.hh:191
gem5::ArmISA::MMU::AlignQuadWord
@ AlignQuadWord
Definition: mmu.hh:106
gem5::ArmISA::MMU::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: mmu.cc:1386
gem5::ArmISA::MMU::translateSe
Fault translateSe(const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool &delay, bool timing, CachedState &state)
Definition: mmu.cc:235
gem5::ArmISA::MMU::CachedState::dacr
uint32_t dacr
Definition: mmu.hh:194
gem5::ArmISA::TLB::flush
void flush(const TLBIALL &tlbi_op)
Reset the entire TLB.
Definition: tlb.cc:318
gem5::VegaISA::x
Bitfield< 4 > x
Definition: pagetable.hh:61
gem5::X86ISA::type
type
Definition: misc.hh:727
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
gem5::ArmISA::MMU::flushStage2
void flushStage2(const OP &tlbi_op)
Definition: mmu.hh:330
mmu.hh
gem5::ArmISA::MMU::CachedState::asid
uint16_t asid
Definition: mmu.hh:189
gem5::ArmISA::MMU::s1State
CachedState s1State
Definition: mmu.hh:484
gem5::ArmISA::MMU::AlignmentMask
@ AlignmentMask
Definition: mmu.hh:100
gem5::ArmISA::MMU::CachedState::computeAddrTop
Memoizer< int, ThreadContext *, bool, bool, TCR, ExceptionLevel > computeAddrTop
Definition: mmu.hh:212
gem5::Memoizer
This class takes a function as a constructor argument and memoizes it: every time the function gets i...
Definition: memoizer.hh:82
gem5::ArmISA::MMU::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: mmu.hh:245
gem5::ArmISA::MMU::drainResume
void drainResume() override
Resume execution after a successful drain.
Definition: mmu.cc:130
gem5::ArmISA::te
Bitfield< 30 > te
Definition: misc_types.hh:338
gem5::ArmISA::MMU::dflush
void dflush(const OP &tlbi_op)
Definition: mmu.hh:350
gem5::ArmISA::MMU::CachedState::isSecure
bool isSecure
Definition: mmu.hh:186
flags
uint8_t flags
Definition: helpers.cc:66
gem5::SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:146
std::pair
STL pair class.
Definition: stl.hh:58
gem5::ArmISA::MMU::miscRegContext
ContextID miscRegContext
Definition: mmu.hh:481
gem5::ArmISA::MMU::translateMmuOff
Fault translateMmuOff(ThreadContext *tc, const RequestPtr &req, Mode mode, ArmTranslationType tran_type, Addr vaddr, bool long_desc_format, CachedState &state)
Definition: mmu.cc:807
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::ArmISA::TLB::flushAll
void flushAll() override
Reset the entire TLB.
Definition: tlb.cc:298
gem5::ArmISA::MMU::CachedState::aarch64EL
ExceptionLevel aarch64EL
Definition: mmu.hh:182
gem5::ArmISA::MMU::checkWalkCache
bool checkWalkCache() const
Definition: mmu.cc:111
gem5::ArmISA::MMU::HypMode
@ HypMode
Definition: mmu.hh:118
gem5::MipsISA::ti
Bitfield< 30 > ti
Definition: pra_constants.hh:179
gem5::BaseMMU::instruction
std::set< BaseTLB * > instruction
It is possible from the MMU to traverse the entire hierarchy of TLBs, starting from the DTB and ITB (...
Definition: mmu.hh:181
gem5::ArmISA::va
Bitfield< 8 > va
Definition: misc_types.hh:276
utility.hh
gem5::ArmISA::MMU::CachedState::hcr
HCR hcr
Definition: mmu.hh:193
gem5::ArmRelease
Definition: system.hh:68
gem5::ArmISA::MMU::faultPAN
bool faultPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req, Mode mode, const bool is_priv, CachedState &state)
Definition: mmu.cc:741
gem5::ArmISA::MMU::CachedState::miscRegValid
bool miscRegValid
Definition: mmu.hh:195
gem5::ArmISA::MMU::getITBPtr
ArmISA::TLB * getITBPtr() const
Definition: mmu.hh:72
gem5::BaseMMU::Translation
Definition: mmu.hh:58
gem5::ArmISA::MMU::getTlb
TLB * getTlb(BaseMMU::Mode mode, bool stage2) const
Definition: mmu.cc:137
gem5::ArmISA::MMU::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: mmu.hh:256
gem5::ArmISA::MMU::physAddrRange
uint8_t physAddrRange
Definition: mmu.hh:492
state
atomic_var_t state
Definition: helpers.cc:188
memoizer.hh
gem5::ArmISA::MMU::ArmTranslationType
ArmTranslationType
Definition: mmu.hh:114
gem5::ArmISA::EL0
@ EL0
Definition: types.hh:273
gem5::ArmISA::MMU::S1S2NsTran
@ S1S2NsTran
Definition: mmu.hh:121
gem5::ArmISA::TableWalker
Definition: table_walker.hh:66
gem5::ArmISA::ArmFault::TranMethod
TranMethod
Definition: faults.hh:150
gem5::ArmISA::MMU::AlignHalfWord
@ AlignHalfWord
Definition: mmu.hh:103
gem5::ArmISA::MMU::test
TlbTestInterface * test
Definition: mmu.hh:458
gem5::ArmISA::MMU::testTranslation
Fault testTranslation(const RequestPtr &req, Mode mode, TlbEntry::DomainType domain, CachedState &state)
Definition: mmu.cc:1613
gem5::ArmISA::MMU::translateFunctional
TranslationGenPtr translateFunctional(Addr start, Addr size, ThreadContext *tc, Mode mode, Request::Flags flags) override
Returns a translation generator for a region of virtual addresses, instead of directly translating a ...
Definition: mmu.hh:91
gem5::ArmISA::MMU::checkPAN
bool checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req, Mode mode, const bool is_priv, CachedState &state)
Definition: mmu.cc:766
gem5::ContextID
int ContextID
Globally unique thread context ID.
Definition: types.hh:239
gem5::ArmISA::MMU::CachedState::getVMID
vmid_t getVMID(ThreadContext *tc) const
Returns the current VMID (information stored in the VTTBR_EL2 register)
Definition: mmu.cc:1148
gem5::ArmISA::MMU::checkPermissions
Fault checkPermissions(TlbEntry *te, const RequestPtr &req, Mode mode, bool stage2)
Definition: mmu.cc:277
gem5::ArmISA::PageBytes
const Addr PageBytes
Definition: page_size.hh:53
gem5::ArmISA::MMU::flushStage1
void flushStage1(const OP &tlbi_op)
Definition: mmu.hh:315
gem5::BaseMMU::flushAll
virtual void flushAll()
Definition: mmu.cc:81
gem5::ArmISA::MMU::updateMiscReg
CachedState & updateMiscReg(ThreadContext *tc, ArmTranslationType tran_type, bool stage2)
Definition: mmu.cc:1177
gem5::ArmISA::MMU::CachedState::operator=
CachedState & operator=(const CachedState &rhs)
Definition: mmu.hh:142
gem5::statistics::Group
Statistics container.
Definition: group.hh:93
gem5::ArmISA::MMU::CachedState::isHyp
bool isHyp
Definition: mmu.hh:187
gem5::ArmISA::MMU::invalidateMiscReg
void invalidateMiscReg()
Definition: mmu.cc:197
gem5::ArmISA::MMU::CachedState::sctlr
SCTLR sctlr
Definition: mmu.hh:183
gem5::ArmISA::MMU::setAttr
void setAttr(uint64_t attr)
Accessor functions for memory attributes for last accessed TLB entry.
Definition: mmu.hh:377
gem5::ArmISA::MMU::release
const ArmRelease * release() const
Definition: mmu.hh:382
gem5::ArmISA::MMU::S1E1Tran
@ S1E1Tran
Definition: mmu.hh:127
gem5::ArmISA::MMU::CachedState::stage2Req
bool stage2Req
Definition: mmu.hh:199
gem5::ArmISA::MMU::CachedState::isStage2
bool isStage2
Definition: mmu.hh:179
page_size.hh
gem5::MipsISA::vaddr
vaddr
Definition: pra_constants.hh:278
gem5::ArmISA::MMU::takeOverFrom
void takeOverFrom(BaseMMU *old_mmu) override
Definition: mmu.cc:1587
gem5::AddrRange
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:81
gem5::ArmISA::MMU::dtbStage2
TLB * dtbStage2
Definition: mmu.hh:82
gem5::ArmISA::MMU::translateMmuOn
Fault translateMmuOn(ThreadContext *tc, const RequestPtr &req, Mode mode, Translation *translation, bool &delay, bool timing, bool functional, Addr vaddr, ArmFault::TranMethod tranMethod, CachedState &state)
Definition: mmu.cc:882
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::ArmISA::MMU::CachedState::scr
SCR scr
Definition: mmu.hh:184
gem5::ArmISA::MMU::_release
const ArmRelease * _release
Definition: mmu.hh:490
gem5::ArmISA::MMU::CachedState::stage2DescReq
bool stage2DescReq
Definition: mmu.hh:205
gem5::ArmISA::MMU::stats
gem5::ArmISA::MMU::Stats stats
gem5::ArmISA::MMU
Definition: mmu.hh:60
gem5::ArmISA::MMU::hasWalkCache
bool hasWalkCache() const
Definition: mmu.hh:384
gem5::ArmISA::MMU::isCompleteTranslation
bool isCompleteTranslation(TlbEntry *te) const
Definition: mmu.cc:1581
gem5::ArmISA::MMU::Stats::Stats
Stats(statistics::Group *parent)
Definition: mmu.cc:1646
gem5::ArmISA::MMU::Stats::alignFaults
statistics::Scalar alignFaults
Definition: mmu.hh:502
gem5::ArmISA::MMU::lookup
TlbEntry * lookup(Addr vpn, uint16_t asn, vmid_t vmid, bool hyp, bool secure, bool functional, bool ignore_asn, ExceptionLevel target_el, bool in_host, bool stage2, BaseMMU::Mode mode)
Lookup an entry in the TLB.
Definition: mmu.cc:1425
gem5::BaseMMU::data
std::set< BaseTLB * > data
Definition: mmu.hh:182
gem5::TranslationGenPtr
std::unique_ptr< TranslationGen > TranslationGenPtr
Definition: translation_gen.hh:128
gem5::ArmISA::MMU::s2State
CachedState s2State
Definition: mmu.hh:484
gem5::BaseMMU::itb
BaseTLB * itb
Definition: mmu.hh:159
gem5::ArmISA::ExceptionLevel
ExceptionLevel
Definition: types.hh:271
gem5::BaseMMU::MMUTranslationGen
Definition: mmu.hh:126
gem5::ArmISA::MMU::checkPermissions64
Fault checkPermissions64(TlbEntry *te, const RequestPtr &req, Mode mode, ThreadContext *tc, bool stage2)
Definition: mmu.cc:463
gem5::ArmISA::mode
Bitfield< 4, 0 > mode
Definition: misc_types.hh:74
gem5::ArmISA::MMU::CachedState::directToStage2
bool directToStage2
Definition: mmu.hh:209
gem5::ArmISA::MMU::s1PermBits64
std::pair< bool, bool > s1PermBits64(TlbEntry *te, const RequestPtr &req, Mode mode, ThreadContext *tc, CachedState &state, bool r, bool w, bool x)
Definition: mmu.cc:619

Generated on Wed Jul 13 2022 10:39:09 for gem5 by doxygen 1.8.17