gem5  v20.0.0.3
tlb.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef __ARCH_SPARC_TLB_HH__
30 #define __ARCH_SPARC_TLB_HH__
31 
32 #include "arch/generic/tlb.hh"
33 #include "arch/sparc/asi.hh"
34 #include "arch/sparc/tlb_map.hh"
35 #include "base/logging.hh"
36 #include "mem/request.hh"
37 #include "params/SparcTLB.hh"
38 
39 class ThreadContext;
40 class Packet;
41 
42 namespace SparcISA
43 {
44 
45 const Addr StartVAddrHole = ULL(0x0000800000000000);
46 const Addr EndVAddrHole = ULL(0xFFFF7FFFFFFFFFFF);
47 const Addr VAddrAMask = ULL(0xFFFFFFFF);
48 const Addr PAddrImplMask = ULL(0x000000FFFFFFFFFF);
49 
50 class TLB : public BaseTLB
51 {
52  // These faults need to be able to populate the tlb in SE mode.
54  friend class FastDataAccessMMUMiss;
55 
56  // TLB state
57  protected:
58  // Only used when this is the data TLB.
59  uint64_t sfar;
60  uint64_t c0_tsb_ps0;
61  uint64_t c0_tsb_ps1;
62  uint64_t c0_config;
63  uint64_t cx_tsb_ps0;
64  uint64_t cx_tsb_ps1;
65  uint64_t cx_config;
66  uint64_t sfsr;
67  uint64_t tag_access;
68 
69  protected:
71  typedef TlbMap::iterator MapIter;
72 
74 
75  int size;
78 
79  uint64_t cacheState;
80  bool cacheValid;
81 
83 
84  enum FaultTypes {
87  SideEffect = 0x2,
88  AtomicToIo = 0x4,
89  IllegalAsi = 0x8,
90  LoadFromNfo = 0x10,
91  VaOutOfRange = 0x20,
93  };
94 
95  enum ContextType {
96  Primary = 0,
97  Secondary = 1,
98  Nucleus = 2
99  };
100 
101  enum TsbPageSize {
104  };
105  public:
117  TlbEntry *lookup(Addr va, int partition_id, bool real, int context_id = 0,
118  bool update_used = true);
119 
121  void flushAll() override;
122 
123  protected:
125  void insert(Addr vpn, int partition_id, int context_id, bool real,
126  const PageTableEntry& PTE, int entry = -1);
127 
129  uint64_t TagRead(int entry);
130 
132  void demapAll(int partition_id);
133 
135  void demapContext(int partition_id, int context_id);
136 
139  void demapPage(Addr va, int partition_id, bool real, int context_id);
140 
142  bool validVirtualAddress(Addr va, bool am);
143 
144  void writeSfsr(bool write, ContextType ct,
145  bool se, FaultTypes ft, int asi);
146 
147  void clearUsedBits();
148 
149 
150  void writeTagAccess(Addr va, int context);
151 
152  Fault translateInst(const RequestPtr &req, ThreadContext *tc);
153  Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write);
154 
155  public:
156  typedef SparcTLBParams Params;
157  TLB(const Params *p);
158 
159  void takeOverFrom(BaseTLB *otlb) override {}
160 
161  void
162  demapPage(Addr vaddr, uint64_t asn) override
163  {
164  panic("demapPage(Addr) is not implemented.\n");
165  }
166 
167  void dumpAll();
168 
170  const RequestPtr &req, ThreadContext *tc, Mode mode) override;
172  const RequestPtr &req, ThreadContext *tc, Mode mode) override;
173  void translateTiming(
174  const RequestPtr &req, ThreadContext *tc,
175  Translation *translation, Mode mode) override;
177  const RequestPtr &req,
178  ThreadContext *tc, Mode mode) const override;
181  void GetTsbPtr(ThreadContext *tc, Addr addr, int ctx, Addr *ptrs);
182 
183  // Checkpointing
184  void serialize(CheckpointOut &cp) const override;
185  void unserialize(CheckpointIn &cp) override;
186 
188  uint64_t TteRead(int entry);
189 
190  private:
191  void writeSfsr(Addr a, bool write, ContextType ct,
192  bool se, FaultTypes ft, int asi);
193 
194  uint64_t MakeTsbPtr(TsbPageSize ps, uint64_t tag_access, uint64_t c0_tsb,
195  uint64_t c0_config, uint64_t cX_tsb, uint64_t cX_config);
196 
197 
200 };
201 
202 }
203 
204 #endif // __ARCH_SPARC_TLB_HH__
void demapContext(int partition_id, int context_id)
Remove all entries that match a given context/partition id.
Definition: tlb.cc:281
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
uint64_t cx_config
Definition: tlb.hh:65
void writeSfsr(bool write, ContextType ct, bool se, FaultTypes ft, int asi)
Definition: tlb.cc:376
int usedEntries
Definition: tlb.hh:76
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
const Addr PAddrImplMask
Definition: tlb.hh:48
const Addr VAddrAMask
Definition: tlb.hh:47
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
Bitfield< 3 > am
Definition: miscregs.hh:127
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
Bitfield< 8 > a
const Addr EndVAddrHole
Definition: tlb.hh:46
ip6_addr_t addr
Definition: inet.hh:330
Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write)
Definition: tlb.cc:526
uint64_t c0_config
Definition: tlb.hh:62
void clearUsedBits()
Definition: tlb.cc:83
bool validVirtualAddress(Addr va, bool am)
Checks if the virtual address provided is a valid one.
Definition: tlb.cc:366
uint64_t MakeTsbPtr(TsbPageSize ps, uint64_t tag_access, uint64_t c0_tsb, uint64_t c0_config, uint64_t cX_tsb, uint64_t cX_config)
Definition: tlb.cc:1415
Definition: cprintf.cc:40
Bitfield< 4, 0 > mode
TlbEntry * lookup(Addr va, int partition_id, bool real, int context_id=0, bool update_used=true)
lookup an entry in the TLB based on the partition id, and real bit if real is true or the partition i...
Definition: tlb.cc:191
ASI cacheAsi[2]
Definition: tlb.hh:199
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:829
Cycles doMmuRegRead(ThreadContext *tc, Packet *pkt)
Definition: tlb.cc:949
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: tlb.cc:1472
RangeMap::iterator iterator
Definition: tlb_map.hh:46
void dumpAll()
Definition: tlb.cc:235
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
Definition: tlb.hh:159
Definition: tlb.hh:50
Cycles doMmuRegWrite(ThreadContext *tc, Packet *pkt)
Definition: tlb.cc:1134
std::list< TlbEntry * > freeList
Definition: tlb.hh:82
TlbMap::iterator MapIter
Definition: tlb.hh:70
uint64_t cx_tsb_ps0
Definition: tlb.hh:63
void demapPage(Addr va, int partition_id, bool real, int context_id)
Remve all entries that match a certain partition id, (contextid), and va).
Definition: tlb.cc:249
const Addr StartVAddrHole
Definition: tlb.hh:45
uint64_t cx_tsb_ps1
Definition: tlb.hh:64
void flushAll() override
Remove all entries from the TLB.
Definition: tlb.cc:322
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.cc:934
TlbEntry * cacheEntry[2]
Definition: tlb.hh:198
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:838
TlbEntry * tlb
Definition: tlb.hh:73
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
#define ULL(N)
uint64_t constant
Definition: types.hh:48
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
Definition: tlb.cc:942
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
TlbMap lookupTable
Definition: tlb.hh:70
Bitfield< 8 > va
void writeTagAccess(Addr va, int context)
Definition: tlb.cc:393
Mode
Definition: tlb.hh:57
void insert(Addr vpn, int partition_id, int context_id, bool real, const PageTableEntry &PTE, int entry=-1)
Insert a PTE into the TLB.
Definition: tlb.cc:97
SparcTLBParams Params
Definition: tlb.hh:156
void GetTsbPtr(ThreadContext *tc, Addr addr, int ctx, Addr *ptrs)
Definition: tlb.cc:1388
std::ostream CheckpointOut
Definition: serialize.hh:63
uint64_t tag_access
Definition: tlb.hh:67
Definition: asi.cc:31
uint64_t TagRead(int entry)
Given an entry id, read that tlb entries&#39; tag.
Definition: tlb.cc:350
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: tlb.cc:1442
void demapPage(Addr vaddr, uint64_t asn) override
Definition: tlb.hh:162
uint64_t TteRead(int entry)
Give an entry id, read that tlb entries&#39; tte.
Definition: tlb.cc:337
uint64_t c0_tsb_ps1
Definition: tlb.hh:61
int lastReplaced
Definition: tlb.hh:77
uint64_t sfsr
Definition: tlb.hh:66
TLB(const Params *p)
Definition: tlb.cc:55
bool cacheValid
Definition: tlb.hh:80
int size
Definition: tlb.hh:75
uint64_t c0_tsb_ps0
Definition: tlb.hh:60
uint64_t sfar
Definition: tlb.hh:59
uint64_t cacheState
Definition: tlb.hh:79
void demapAll(int partition_id)
Remove all non-locked entries from the tlb that match partition id.
Definition: tlb.cc:303
Bitfield< 18, 16 > ps
Bitfield< 0 > p
Fault translateInst(const RequestPtr &req, ThreadContext *tc)
Definition: tlb.cc:412
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
ASI
Definition: asi.hh:35

Generated on Fri Jul 3 2020 15:42:38 for gem5 by doxygen 1.8.13