gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tlb.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2013, 2016, 2019 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_TLB_HH__
42 #define __ARCH_ARM_TLB_HH__
43 
44 
45 #include "arch/arm/faults.hh"
46 #include "arch/arm/isa_traits.hh"
47 #include "arch/arm/pagetable.hh"
48 #include "arch/arm/utility.hh"
49 #include "arch/generic/tlb.hh"
50 #include "base/statistics.hh"
51 #include "mem/request.hh"
52 #include "params/ArmTLB.hh"
53 #include "sim/probe/pmu.hh"
54 
55 class ThreadContext;
56 
57 namespace ArmISA {
58 
59 class TableWalker;
60 class Stage2LookUp;
61 class Stage2MMU;
62 class TLB;
63 
65 {
66  public:
68  virtual ~TlbTestInterface() {}
69 
78  virtual Fault translationCheck(const RequestPtr &req, bool is_priv,
81 
94  virtual Fault walkCheck(Addr pa, Addr size, Addr va, bool is_secure,
95  Addr is_priv, BaseTLB::Mode mode,
96  TlbEntry::DomainType domain,
97  LookupLevel lookup_level) = 0;
98 };
99 
100 class TLB : public BaseTLB
101 {
102  public:
103  enum ArmFlags {
104  AlignmentMask = 0x7,
105 
106  AlignByte = 0x0,
107  AlignHalfWord = 0x1,
108  AlignWord = 0x2,
109  AlignDoubleWord = 0x3,
110  AlignQuadWord = 0x4,
111  AlignOctWord = 0x5,
112 
113  AllowUnaligned = 0x8,
114  // Priv code operating as if it wasn't
115  UserMode = 0x10
116  };
117 
119  NormalTran = 0,
120  S1CTran = 0x1,
121  HypMode = 0x2,
122  // Secure code operating as if it wasn't (required by some Address
123  // Translate operations)
124  S1S2NsTran = 0x4,
125  // Address translation instructions (eg AT S1E0R_Xt) need to be handled
126  // in special ways during translation because they could need to act
127  // like a different EL than the current EL. The following flags are
128  // for these instructions
129  S1E0Tran = 0x8,
130  S1E1Tran = 0x10,
131  S1E2Tran = 0x20,
132  S1E3Tran = 0x40,
133  S12E0Tran = 0x80,
134  S12E1Tran = 0x100
135  };
136 
142  static ExceptionLevel tranTypeEL(CPSR cpsr, ArmTranslationType type);
143 
144  protected:
145  TlbEntry* table; // the Page Table
146  int size; // TLB Size
147  bool isStage2; // Indicates this TLB is part of the second stage MMU
148  bool stage2Req; // Indicates whether a stage 2 lookup is also required
149  // Indicates whether a stage 2 lookup of the table descriptors is required.
150  // Certain address translation instructions will intercept the IPA but the
151  // table descriptors still need to be translated by the stage2.
153  uint64_t _attr; // Memory attributes for last accessed TLB entry
154  bool directToStage2; // Indicates whether all translation requests should
155  // be routed directly to the stage 2 TLB
156 
160 
162 
163  // Access Stats
180 
187 
190 
191  int rangeMRU; //On lookup, only move entries ahead when outside rangeMRU
192 
193  public:
194  TLB(const ArmTLBParams *p);
195  TLB(const Params *p, int _size, TableWalker *_walker);
196 
207  TlbEntry *lookup(Addr vpn, uint16_t asn, uint8_t vmid, bool hyp,
208  bool secure, bool functional,
209  bool ignore_asn, ExceptionLevel target_el);
210 
211  virtual ~TLB();
212 
213  void takeOverFrom(BaseTLB *otlb) override;
214 
216  void init() override;
217 
218  void setTestInterface(SimObject *ti);
219 
220  TableWalker *getTableWalker() { return tableWalker; }
221 
222  void setMMU(Stage2MMU *m, MasterID master_id);
223 
224  int getsize() const { return size; }
225 
226  void insert(Addr vaddr, TlbEntry &pte);
227 
228  Fault getTE(TlbEntry **te, const RequestPtr &req,
229  ThreadContext *tc, Mode mode,
230  Translation *translation, bool timing, bool functional,
231  bool is_secure, ArmTranslationType tranType);
232 
233  Fault getResultTe(TlbEntry **te, const RequestPtr &req,
234  ThreadContext *tc, Mode mode,
235  Translation *translation, bool timing,
236  bool functional, TlbEntry *mergeTe);
237 
238  Fault checkPermissions(TlbEntry *te, const RequestPtr &req, Mode mode);
239  Fault checkPermissions64(TlbEntry *te, const RequestPtr &req, Mode mode,
240  ThreadContext *tc);
241  bool checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req,
242  Mode mode);
243 
244 
248  void flushAllSecurity(bool secure_lookup, ExceptionLevel target_el,
249  bool ignore_el = false);
250 
254  void flushAllNs(ExceptionLevel target_el, bool ignore_el = false);
255 
256 
260  void flushAll() override
261  {
262  flushAllSecurity(false, EL0, true);
263  flushAllSecurity(true, EL0, true);
264  }
265 
271  void flushMvaAsid(Addr mva, uint64_t asn, bool secure_lookup,
272  ExceptionLevel target_el);
273 
278  void flushAsid(uint64_t asn, bool secure_lookup,
279  ExceptionLevel target_el);
280 
285  void flushMva(Addr mva, bool secure_lookup, ExceptionLevel target_el);
286 
293  void flushIpaVmid(Addr ipa, bool secure_lookup, ExceptionLevel target_el);
294 
295  Fault trickBoxCheck(const RequestPtr &req, Mode mode,
297 
298  Fault walkTrickBoxCheck(Addr pa, bool is_secure, Addr va, Addr sz,
299  bool is_exec, bool is_write,
300  TlbEntry::DomainType domain,
301  LookupLevel lookup_level);
302 
303  void printTlb() const;
304 
305  void demapPage(Addr vaddr, uint64_t asn) override
306  {
307  // needed for x86 only
308  panic("demapPage() is not implemented.\n");
309  }
310 
319  bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr);
320 
325  Fault translateFunctional(const RequestPtr &req, ThreadContext *tc,
326  Mode mode, ArmTranslationType tranType);
327  Fault
329  ThreadContext *tc, Mode mode) override
330  {
331  return translateFunctional(req, tc, mode, NormalTran);
332  }
333 
336  void
337  setAttr(uint64_t attr)
338  {
339  _attr = attr;
340  }
341 
342  uint64_t
343  getAttr() const
344  {
345  return _attr;
346  }
347 
348  Fault translateMmuOff(ThreadContext *tc, const RequestPtr &req, Mode mode,
349  TLB::ArmTranslationType tranType, Addr vaddr, bool long_desc_format);
350  Fault translateMmuOn(ThreadContext *tc, const RequestPtr &req, Mode mode,
351  Translation *translation, bool &delay, bool timing, bool functional,
352  Addr vaddr, ArmFault::TranMethod tranMethod);
353 
354  Fault translateFs(const RequestPtr &req, ThreadContext *tc, Mode mode,
355  Translation *translation, bool &delay,
356  bool timing, ArmTranslationType tranType, bool functional = false);
357  Fault translateSe(const RequestPtr &req, ThreadContext *tc, Mode mode,
358  Translation *translation, bool &delay, bool timing);
359  Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode,
360  ArmTranslationType tranType);
361  Fault
363  ThreadContext *tc, Mode mode) override
364  {
365  return translateAtomic(req, tc, mode, NormalTran);
366  }
367  void translateTiming(
368  const RequestPtr &req, ThreadContext *tc,
369  Translation *translation, Mode mode,
370  ArmTranslationType tranType);
371  void
373  Translation *translation, Mode mode) override
374  {
375  translateTiming(req, tc, translation, mode, NormalTran);
376  }
377  Fault translateComplete(const RequestPtr &req, ThreadContext *tc,
378  Translation *translation, Mode mode, ArmTranslationType tranType,
379  bool callFromS2);
380  Fault finalizePhysical(
381  const RequestPtr &req,
382  ThreadContext *tc, Mode mode) const override;
383 
384  void drainResume() override;
385 
386  void regStats() override;
387 
388  void regProbePoints() override;
389 
400  Port *getTableWalkerPort() override;
401 
402  // Caching misc register values here.
403  // Writing to misc registers needs to invalidate them.
404  // translateFunctional/translateSe/translateFs checks if they are
405  // invalid and call updateMiscReg if necessary.
406 protected:
407  CPSR cpsr;
408  bool aarch64;
410  SCTLR sctlr;
411  SCR scr;
412  bool isPriv;
413  bool isSecure;
414  bool isHyp;
415  TTBCR ttbcr;
416  uint16_t asid;
417  uint8_t vmid;
418  PRRR prrr;
419  NMRR nmrr;
420  HCR hcr;
421  uint32_t dacr;
425 
426  // Cached copies of system-level properties
427  bool haveLPAE;
430 
432 
433  void updateMiscReg(ThreadContext *tc,
434  ArmTranslationType tranType = NormalTran);
435 
436 public:
437  const Params *
438  params() const
439  {
440  return dynamic_cast<const Params *>(_params);
441  }
442  inline void invalidateMiscReg() { miscRegValid = false; }
443 
444 private:
451  void _flushMva(Addr mva, uint64_t asn, bool secure_lookup,
452  bool ignore_asn, ExceptionLevel target_el);
453 
454  public: /* Testing */
455  Fault testTranslation(const RequestPtr &req, Mode mode,
456  TlbEntry::DomainType domain);
457  Fault testWalk(Addr pa, Addr size, Addr va, bool is_secure, Mode mode,
458  TlbEntry::DomainType domain,
459  LookupLevel lookup_level);
460 };
461 
462 template<typename T>
463 TLB *
464 getITBPtr(T *tc)
465 {
466  auto tlb = static_cast<TLB *>(tc->getITBPtr());
467  assert(tlb);
468  return tlb;
469 }
470 
471 template<typename T>
472 TLB *
473 getDTBPtr(T *tc)
474 {
475  auto tlb = static_cast<TLB *>(tc->getDTBPtr());
476  assert(tlb);
477  return tlb;
478 }
479 
480 } // namespace ArmISA
481 
482 #endif // __ARCH_ARM_TLB_HH__
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.hh:328
Stats::Formula hits
Definition: tlb.hh:184
int size
Definition: tlb.hh:146
ProbePoints::PMUUPtr ppRefills
PMU probe for TLB refills.
Definition: tlb.hh:189
ExceptionLevel aarch64EL
Definition: tlb.hh:409
bool aarch64
Definition: tlb.hh:408
Ports are used to interface objects to each other.
Definition: port.hh:56
AddrRange m5opRange
Definition: tlb.hh:431
void flushAll() override
Reset the entire TLB.
Definition: tlb.hh:260
bool isHyp
Definition: tlb.hh:414
bool directToStage2
Definition: tlb.hh:154
TLB * stage2Tlb
Definition: tlb.hh:158
Bitfield< 0 > m
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.hh:372
SimObjectParams Params
Definition: sim_object.hh:114
TTBCR ttbcr
Definition: tlb.hh:415
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
void takeOverFrom(ThreadContext &ntc, ThreadContext &otc)
Copy state between thread contexts in preparation for CPU handover.
TLB * getDTBPtr(T *tc)
Definition: tlb.hh:473
bool stage2Req
Definition: tlb.hh:148
bool isSecure
Definition: tlb.hh:413
Bitfield< 30 > te
uint64_t getAttr() const
Definition: tlb.hh:343
int getsize() const
Definition: tlb.hh:224
Definition: ccregs.hh:41
Bitfield< 30 > ti
Stats::Scalar prefetchFaults
Definition: tlb.hh:177
bool stage2DescReq
Definition: tlb.hh:152
Bitfield< 4, 0 > mode
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
ExceptionLevel
Definition: types.hh:583
Stats::Formula writeAccesses
Definition: tlb.hh:182
bool isPriv
Definition: tlb.hh:412
TableWalker * tableWalker
Definition: tlb.hh:157
Stats::Scalar flushedEntries
Definition: tlb.hh:175
Stats::Scalar readMisses
Definition: tlb.hh:167
const Params * params() const
Definition: tlb.hh:438
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
Definition: tlb.hh:50
Stats::Formula misses
Definition: tlb.hh:185
bool miscRegValid
Definition: tlb.hh:422
uint8_t type
Definition: inet.hh:328
HCR hcr
Definition: tlb.hh:420
Stats::Scalar permsFaults
Definition: tlb.hh:179
virtual ~TlbTestInterface()
Definition: tlb.hh:68
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.hh:362
int rangeMRU
Definition: tlb.hh:191
Stats::Scalar writeMisses
Definition: tlb.hh:169
bool haveVirtualization
Definition: tlb.hh:428
Stats::Scalar instMisses
Definition: tlb.hh:165
std::unique_ptr< PMU > PMUUPtr
Definition: pmu.hh:56
uint16_t asid
Definition: tlb.hh:416
PRRR prrr
Definition: tlb.hh:418
Stats::Scalar inserts
Definition: tlb.hh:170
TlbTestInterface * test
Definition: tlb.hh:161
Bitfield< 39, 12 > pa
bool haveLargeAsid64
Definition: tlb.hh:429
Stats::Scalar domainFaults
Definition: tlb.hh:178
uint32_t dacr
Definition: tlb.hh:421
Bitfield< 59, 56 > tlb
Stage2MMU * stage2Mmu
Definition: tlb.hh:159
virtual Fault walkCheck(Addr pa, Addr size, Addr va, bool is_secure, Addr is_priv, BaseTLB::Mode mode, TlbEntry::DomainType domain, LookupLevel lookup_level)=0
Check if a page table walker access should be forced to fail.
ArmTranslationType
Definition: tlb.hh:118
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint16_t MasterID
Definition: request.hh:84
bool haveLPAE
Definition: tlb.hh:427
void demapPage(Addr vaddr, uint64_t asn) override
Definition: tlb.hh:305
Stats::Scalar writeHits
Definition: tlb.hh:168
Bitfield< 8 > va
Stats::Scalar flushTlbMva
Definition: tlb.hh:172
Stats::Scalar instHits
Definition: tlb.hh:164
Stats::Formula accesses
Definition: tlb.hh:186
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
Mode
Definition: tlb.hh:57
Stats::Scalar flushTlbMvaAsid
Definition: tlb.hh:173
uint64_t _attr
Definition: tlb.hh:153
Stats::Formula readAccesses
Definition: tlb.hh:181
Stats::Scalar alignFaults
Definition: tlb.hh:176
Bitfield< 7, 4 > domain
virtual Fault translationCheck(const RequestPtr &req, bool is_priv, BaseTLB::Mode mode, TlbEntry::DomainType domain)=0
Check if a TLB translation should be forced to fail.
Stats::Scalar readHits
Definition: tlb.hh:166
NMRR nmrr
Definition: tlb.hh:419
Stats::Formula instAccesses
Definition: tlb.hh:183
SCTLR sctlr
Definition: tlb.hh:410
CPSR cpsr
Definition: tlb.hh:407
Stats::Scalar flushTlbAsid
Definition: tlb.hh:174
void invalidateMiscReg()
Definition: tlb.hh:442
TableWalker * getTableWalker()
Definition: tlb.hh:220
ArmTranslationType curTranType
Definition: tlb.hh:424
Bitfield< 0 > p
LookupLevel
Definition: pagetable.hh:74
void setAttr(uint64_t attr)
Accessor functions for memory attributes for last accessed TLB entry.
Definition: tlb.hh:337
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
TlbEntry * table
Definition: tlb.hh:145
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
int ContextID
Globally unique thread context ID.
Definition: types.hh:229
const FlagsType init
This Stat is Initialized.
Definition: info.hh:45
Stats::Scalar flushTlb
Definition: tlb.hh:171
uint8_t vmid
Definition: tlb.hh:417
TLB * getITBPtr(T *tc)
Definition: tlb.hh:464
bool isStage2
Definition: tlb.hh:147
ContextID miscRegContext
Definition: tlb.hh:423
SCR scr
Definition: tlb.hh:411

Generated on Thu May 28 2020 16:11:01 for gem5 by doxygen 1.8.13