tlb.cc (11523:81332eb10367) tlb.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * Copyright (c) 2007-2008 The Florida State University
5 * Copyright (c) 2009 The University of Edinburgh
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met: redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer;
12 * redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution;
15 * neither the name of the copyright holders nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * Authors: Nathan Binkert
32 * Steve Reinhardt
33 * Jaidev Patwardhan
34 * Stephen Hines
35 * Timothy M. Jones
36 */
37
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * Copyright (c) 2007-2008 The Florida State University
5 * Copyright (c) 2009 The University of Edinburgh
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met: redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer;
12 * redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution;
15 * neither the name of the copyright holders nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * Authors: Nathan Binkert
32 * Steve Reinhardt
33 * Jaidev Patwardhan
34 * Stephen Hines
35 * Timothy M. Jones
36 */
37
38#include "arch/power/tlb.hh"
39
38#include <string>
39#include <vector>
40
41#include "arch/power/faults.hh"
42#include "arch/power/pagetable.hh"
40#include <string>
41#include <vector>
42
43#include "arch/power/faults.hh"
44#include "arch/power/pagetable.hh"
43#include "arch/power/tlb.hh"
44#include "arch/power/utility.hh"
45#include "base/inifile.hh"
46#include "base/str.hh"
47#include "base/trace.hh"
48#include "cpu/thread_context.hh"
49#include "debug/Power.hh"
50#include "debug/TLB.hh"
51#include "mem/page_table.hh"
52#include "params/PowerTLB.hh"
53#include "sim/full_system.hh"
54#include "sim/process.hh"
55
56using namespace std;
57using namespace PowerISA;
58
59///////////////////////////////////////////////////////////////////////
60//
61// POWER TLB
62//
63
64#define MODE2MASK(X) (1 << (X))
65
66TLB::TLB(const Params *p)
67 : BaseTLB(p), size(p->size), nlu(0)
68{
69 table = new PowerISA::PTE[size];
70 memset(table, 0, sizeof(PowerISA::PTE[size]));
71 smallPages = 0;
72}
73
74TLB::~TLB()
75{
76 if (table)
77 delete [] table;
78}
79
80// look up an entry in the TLB
81PowerISA::PTE *
82TLB::lookup(Addr vpn, uint8_t asn) const
83{
84 // assume not found...
85 PowerISA::PTE *retval = NULL;
86 PageTable::const_iterator i = lookupTable.find(vpn);
87 if (i != lookupTable.end()) {
88 while (i->first == vpn) {
89 int index = i->second;
90 PowerISA::PTE *pte = &table[index];
91 Addr Mask = pte->Mask;
92 Addr InvMask = ~Mask;
93 Addr VPN = pte->VPN;
94 if (((vpn & InvMask) == (VPN & InvMask))
95 && (pte->G || (asn == pte->asid))) {
96
97 // We have a VPN + ASID Match
98 retval = pte;
99 break;
100 }
101 ++i;
102 }
103 }
104
105 DPRINTF(TLB, "lookup %#x, asn %#x -> %s ppn %#x\n", vpn, (int)asn,
106 retval ? "hit" : "miss", retval ? retval->PFN1 : 0);
107 return retval;
108}
109
110PowerISA::PTE*
111TLB::getEntry(unsigned Index) const
112{
113 // Make sure that Index is valid
114 assert(Index<size);
115 return &table[Index];
116}
117
118int
119TLB::probeEntry(Addr vpn,uint8_t asn) const
120{
121 // assume not found...
122 int Ind = -1;
123 PageTable::const_iterator i = lookupTable.find(vpn);
124 if (i != lookupTable.end()) {
125 while (i->first == vpn) {
126 int index = i->second;
127 PowerISA::PTE *pte = &table[index];
128 Addr Mask = pte->Mask;
129 Addr InvMask = ~Mask;
130 Addr VPN = pte->VPN;
131 if (((vpn & InvMask) == (VPN & InvMask))
132 && (pte->G || (asn == pte->asid))) {
133
134 // We have a VPN + ASID Match
135 Ind = index;
136 break;
137 }
138 ++i;
139 }
140 }
141
142 DPRINTF(Power, "VPN: %x, asid: %d, Result of TLBP: %d\n", vpn, asn, Ind);
143 return Ind;
144}
145
146inline Fault
147TLB::checkCacheability(RequestPtr &req)
148{
149 Addr VAddrUncacheable = 0xA0000000;
150 if ((req->getVaddr() & VAddrUncacheable) == VAddrUncacheable) {
151
152 // mark request as uncacheable
153 req->setFlags(Request::UNCACHEABLE | Request::STRICT_ORDER);
154 }
155 return NoFault;
156}
157
158void
159TLB::insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages)
160{
161 smallPages=_smallPages;
162 if (Index > size){
163 warn("Attempted to write at index (%d) beyond TLB size (%d)",
164 Index, size);
165 } else {
166
167 // Update TLB
168 if (table[Index].V0 || table[Index].V1) {
169
170 // Previous entry is valid
171 PageTable::iterator i = lookupTable.find(table[Index].VPN);
172 lookupTable.erase(i);
173 }
174 table[Index]=pte;
175
176 // Update fast lookup table
177 lookupTable.insert(make_pair(table[Index].VPN, Index));
178 }
179}
180
181// insert a new TLB entry
182void
183TLB::insert(Addr addr, PowerISA::PTE &pte)
184{
185 fatal("TLB Insert not yet implemented\n");
186}
187
188void
189TLB::flushAll()
190{
191 DPRINTF(TLB, "flushAll\n");
192 memset(table, 0, sizeof(PowerISA::PTE[size]));
193 lookupTable.clear();
194 nlu = 0;
195}
196
197void
198TLB::serialize(CheckpointOut &cp) const
199{
200 SERIALIZE_SCALAR(size);
201 SERIALIZE_SCALAR(nlu);
202
203 for (int i = 0; i < size; i++) {
204 ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
205 table[i].serialize(cp);
206 }
207}
208
209void
210TLB::unserialize(CheckpointIn &cp)
211{
212 UNSERIALIZE_SCALAR(size);
213 UNSERIALIZE_SCALAR(nlu);
214
215 for (int i = 0; i < size; i++) {
216 ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
217 if (table[i].V0 || table[i].V1) {
218 lookupTable.insert(make_pair(table[i].VPN, i));
219 }
220 }
221}
222
223void
224TLB::regStats()
225{
226 BaseTLB::regStats();
227
228 read_hits
229 .name(name() + ".read_hits")
230 .desc("DTB read hits")
231 ;
232
233 read_misses
234 .name(name() + ".read_misses")
235 .desc("DTB read misses")
236 ;
237
238
239 read_accesses
240 .name(name() + ".read_accesses")
241 .desc("DTB read accesses")
242 ;
243
244 write_hits
245 .name(name() + ".write_hits")
246 .desc("DTB write hits")
247 ;
248
249 write_misses
250 .name(name() + ".write_misses")
251 .desc("DTB write misses")
252 ;
253
254
255 write_accesses
256 .name(name() + ".write_accesses")
257 .desc("DTB write accesses")
258 ;
259
260 hits
261 .name(name() + ".hits")
262 .desc("DTB hits")
263 ;
264
265 misses
266 .name(name() + ".misses")
267 .desc("DTB misses")
268 ;
269
270 accesses
271 .name(name() + ".accesses")
272 .desc("DTB accesses")
273 ;
274
275 hits = read_hits + write_hits;
276 misses = read_misses + write_misses;
277 accesses = read_accesses + write_accesses;
278}
279
280Fault
281TLB::translateInst(RequestPtr req, ThreadContext *tc)
282{
283 // Instruction accesses must be word-aligned
284 if (req->getVaddr() & 0x3) {
285 DPRINTF(TLB, "Alignment Fault on %#x, size = %d\n", req->getVaddr(),
286 req->getSize());
287 return std::make_shared<AlignmentFault>();
288 }
289
290 Process * p = tc->getProcessPtr();
291
292 Fault fault = p->pTable->translate(req);
293 if (fault != NoFault)
294 return fault;
295
296 return NoFault;
297}
298
299Fault
300TLB::translateData(RequestPtr req, ThreadContext *tc, bool write)
301{
302 Process * p = tc->getProcessPtr();
303
304 Fault fault = p->pTable->translate(req);
305 if (fault != NoFault)
306 return fault;
307
308 return NoFault;
309}
310
311Fault
312TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode)
313{
314 if (FullSystem)
315 fatal("translate atomic not yet implemented in full system mode.\n");
316
317 if (mode == Execute)
318 return translateInst(req, tc);
319 else
320 return translateData(req, tc, mode == Write);
321}
322
323void
324TLB::translateTiming(RequestPtr req, ThreadContext *tc,
325 Translation *translation, Mode mode)
326{
327 assert(translation);
328 translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
329}
330
331Fault
332TLB::translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode)
333{
334 panic("Not implemented\n");
335 return NoFault;
336}
337
338Fault
339TLB::finalizePhysical(RequestPtr req, ThreadContext *tc, Mode mode) const
340{
341 return NoFault;
342}
343
344PowerISA::PTE &
345TLB::index(bool advance)
346{
347 PowerISA::PTE *pte = &table[nlu];
348
349 if (advance)
350 nextnlu();
351
352 return *pte;
353}
354
355PowerISA::TLB *
356PowerTLBParams::create()
357{
358 return new PowerISA::TLB(this);
359}
45#include "arch/power/utility.hh"
46#include "base/inifile.hh"
47#include "base/str.hh"
48#include "base/trace.hh"
49#include "cpu/thread_context.hh"
50#include "debug/Power.hh"
51#include "debug/TLB.hh"
52#include "mem/page_table.hh"
53#include "params/PowerTLB.hh"
54#include "sim/full_system.hh"
55#include "sim/process.hh"
56
57using namespace std;
58using namespace PowerISA;
59
60///////////////////////////////////////////////////////////////////////
61//
62// POWER TLB
63//
64
65#define MODE2MASK(X) (1 << (X))
66
67TLB::TLB(const Params *p)
68 : BaseTLB(p), size(p->size), nlu(0)
69{
70 table = new PowerISA::PTE[size];
71 memset(table, 0, sizeof(PowerISA::PTE[size]));
72 smallPages = 0;
73}
74
75TLB::~TLB()
76{
77 if (table)
78 delete [] table;
79}
80
81// look up an entry in the TLB
82PowerISA::PTE *
83TLB::lookup(Addr vpn, uint8_t asn) const
84{
85 // assume not found...
86 PowerISA::PTE *retval = NULL;
87 PageTable::const_iterator i = lookupTable.find(vpn);
88 if (i != lookupTable.end()) {
89 while (i->first == vpn) {
90 int index = i->second;
91 PowerISA::PTE *pte = &table[index];
92 Addr Mask = pte->Mask;
93 Addr InvMask = ~Mask;
94 Addr VPN = pte->VPN;
95 if (((vpn & InvMask) == (VPN & InvMask))
96 && (pte->G || (asn == pte->asid))) {
97
98 // We have a VPN + ASID Match
99 retval = pte;
100 break;
101 }
102 ++i;
103 }
104 }
105
106 DPRINTF(TLB, "lookup %#x, asn %#x -> %s ppn %#x\n", vpn, (int)asn,
107 retval ? "hit" : "miss", retval ? retval->PFN1 : 0);
108 return retval;
109}
110
111PowerISA::PTE*
112TLB::getEntry(unsigned Index) const
113{
114 // Make sure that Index is valid
115 assert(Index<size);
116 return &table[Index];
117}
118
119int
120TLB::probeEntry(Addr vpn,uint8_t asn) const
121{
122 // assume not found...
123 int Ind = -1;
124 PageTable::const_iterator i = lookupTable.find(vpn);
125 if (i != lookupTable.end()) {
126 while (i->first == vpn) {
127 int index = i->second;
128 PowerISA::PTE *pte = &table[index];
129 Addr Mask = pte->Mask;
130 Addr InvMask = ~Mask;
131 Addr VPN = pte->VPN;
132 if (((vpn & InvMask) == (VPN & InvMask))
133 && (pte->G || (asn == pte->asid))) {
134
135 // We have a VPN + ASID Match
136 Ind = index;
137 break;
138 }
139 ++i;
140 }
141 }
142
143 DPRINTF(Power, "VPN: %x, asid: %d, Result of TLBP: %d\n", vpn, asn, Ind);
144 return Ind;
145}
146
147inline Fault
148TLB::checkCacheability(RequestPtr &req)
149{
150 Addr VAddrUncacheable = 0xA0000000;
151 if ((req->getVaddr() & VAddrUncacheable) == VAddrUncacheable) {
152
153 // mark request as uncacheable
154 req->setFlags(Request::UNCACHEABLE | Request::STRICT_ORDER);
155 }
156 return NoFault;
157}
158
159void
160TLB::insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages)
161{
162 smallPages=_smallPages;
163 if (Index > size){
164 warn("Attempted to write at index (%d) beyond TLB size (%d)",
165 Index, size);
166 } else {
167
168 // Update TLB
169 if (table[Index].V0 || table[Index].V1) {
170
171 // Previous entry is valid
172 PageTable::iterator i = lookupTable.find(table[Index].VPN);
173 lookupTable.erase(i);
174 }
175 table[Index]=pte;
176
177 // Update fast lookup table
178 lookupTable.insert(make_pair(table[Index].VPN, Index));
179 }
180}
181
182// insert a new TLB entry
183void
184TLB::insert(Addr addr, PowerISA::PTE &pte)
185{
186 fatal("TLB Insert not yet implemented\n");
187}
188
189void
190TLB::flushAll()
191{
192 DPRINTF(TLB, "flushAll\n");
193 memset(table, 0, sizeof(PowerISA::PTE[size]));
194 lookupTable.clear();
195 nlu = 0;
196}
197
198void
199TLB::serialize(CheckpointOut &cp) const
200{
201 SERIALIZE_SCALAR(size);
202 SERIALIZE_SCALAR(nlu);
203
204 for (int i = 0; i < size; i++) {
205 ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
206 table[i].serialize(cp);
207 }
208}
209
210void
211TLB::unserialize(CheckpointIn &cp)
212{
213 UNSERIALIZE_SCALAR(size);
214 UNSERIALIZE_SCALAR(nlu);
215
216 for (int i = 0; i < size; i++) {
217 ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
218 if (table[i].V0 || table[i].V1) {
219 lookupTable.insert(make_pair(table[i].VPN, i));
220 }
221 }
222}
223
224void
225TLB::regStats()
226{
227 BaseTLB::regStats();
228
229 read_hits
230 .name(name() + ".read_hits")
231 .desc("DTB read hits")
232 ;
233
234 read_misses
235 .name(name() + ".read_misses")
236 .desc("DTB read misses")
237 ;
238
239
240 read_accesses
241 .name(name() + ".read_accesses")
242 .desc("DTB read accesses")
243 ;
244
245 write_hits
246 .name(name() + ".write_hits")
247 .desc("DTB write hits")
248 ;
249
250 write_misses
251 .name(name() + ".write_misses")
252 .desc("DTB write misses")
253 ;
254
255
256 write_accesses
257 .name(name() + ".write_accesses")
258 .desc("DTB write accesses")
259 ;
260
261 hits
262 .name(name() + ".hits")
263 .desc("DTB hits")
264 ;
265
266 misses
267 .name(name() + ".misses")
268 .desc("DTB misses")
269 ;
270
271 accesses
272 .name(name() + ".accesses")
273 .desc("DTB accesses")
274 ;
275
276 hits = read_hits + write_hits;
277 misses = read_misses + write_misses;
278 accesses = read_accesses + write_accesses;
279}
280
281Fault
282TLB::translateInst(RequestPtr req, ThreadContext *tc)
283{
284 // Instruction accesses must be word-aligned
285 if (req->getVaddr() & 0x3) {
286 DPRINTF(TLB, "Alignment Fault on %#x, size = %d\n", req->getVaddr(),
287 req->getSize());
288 return std::make_shared<AlignmentFault>();
289 }
290
291 Process * p = tc->getProcessPtr();
292
293 Fault fault = p->pTable->translate(req);
294 if (fault != NoFault)
295 return fault;
296
297 return NoFault;
298}
299
300Fault
301TLB::translateData(RequestPtr req, ThreadContext *tc, bool write)
302{
303 Process * p = tc->getProcessPtr();
304
305 Fault fault = p->pTable->translate(req);
306 if (fault != NoFault)
307 return fault;
308
309 return NoFault;
310}
311
312Fault
313TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode)
314{
315 if (FullSystem)
316 fatal("translate atomic not yet implemented in full system mode.\n");
317
318 if (mode == Execute)
319 return translateInst(req, tc);
320 else
321 return translateData(req, tc, mode == Write);
322}
323
324void
325TLB::translateTiming(RequestPtr req, ThreadContext *tc,
326 Translation *translation, Mode mode)
327{
328 assert(translation);
329 translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
330}
331
332Fault
333TLB::translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode)
334{
335 panic("Not implemented\n");
336 return NoFault;
337}
338
339Fault
340TLB::finalizePhysical(RequestPtr req, ThreadContext *tc, Mode mode) const
341{
342 return NoFault;
343}
344
345PowerISA::PTE &
346TLB::index(bool advance)
347{
348 PowerISA::PTE *pte = &table[nlu];
349
350 if (advance)
351 nextnlu();
352
353 return *pte;
354}
355
356PowerISA::TLB *
357PowerTLBParams::create()
358{
359 return new PowerISA::TLB(this);
360}