tlb.cc revision 7294:fda2c00880db
14019SN/A/*
23187SN/A * Copyright (c) 2010 ARM Limited
33187SN/A * All rights reserved
43187SN/A *
53187SN/A * The license below extends only to copyright in the software and shall
63187SN/A * not be construed as granting a license to any other intellectual
73187SN/A * property including but not limited to intellectual property relating
83187SN/A * to a hardware implementation of the functionality of the software
93187SN/A * licensed hereunder.  You may use the software subject to the license
103187SN/A * terms below provided that you ensure that this notice is replicated
113187SN/A * unmodified and in its entirety in all distributions of the software,
123187SN/A * modified or unmodified, in source code or in binary form.
133187SN/A *
143187SN/A * Copyright (c) 2001-2005 The Regents of The University of Michigan
153187SN/A * Copyright (c) 2007 MIPS Technologies, Inc.
163187SN/A * Copyright (c) 2007-2008 The Florida State University
173187SN/A * All rights reserved.
183187SN/A *
193187SN/A * Redistribution and use in source and binary forms, with or without
203187SN/A * modification, are permitted provided that the following conditions are
213187SN/A * met: redistributions of source code must retain the above copyright
223187SN/A * notice, this list of conditions and the following disclaimer;
233187SN/A * redistributions in binary form must reproduce the above copyright
243187SN/A * notice, this list of conditions and the following disclaimer in the
253187SN/A * documentation and/or other materials provided with the distribution;
263187SN/A * neither the name of the copyright holders nor the names of its
273187SN/A * contributors may be used to endorse or promote products derived from
283187SN/A * this software without specific prior written permission.
293187SN/A *
303187SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
3111682Sandreas.hansson@arm.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3211682Sandreas.hansson@arm.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
333187SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
343196SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
353196SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
369793SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
373187SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
383187SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3910688Sandreas.hansson@arm.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
408931SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4110720Sandreas.hansson@arm.com *
429827SN/A * Authors: Nathan Binkert
439827SN/A *          Steve Reinhardt
449827SN/A *          Jaidev Patwardhan
459827SN/A *          Stephen Hines
463187SN/A */
479793SN/A
489793SN/A#include <string>
499827SN/A#include <vector>
509827SN/A
519793SN/A#include "arch/arm/faults.hh"
5210720Sandreas.hansson@arm.com#include "arch/arm/pagetable.hh"
5310720Sandreas.hansson@arm.com#include "arch/arm/tlb.hh"
549793SN/A#include "arch/arm/utility.hh"
558839SN/A#include "base/inifile.hh"
563187SN/A#include "base/str.hh"
573187SN/A#include "base/trace.hh"
588839SN/A#include "cpu/thread_context.hh"
593187SN/A#include "mem/page_table.hh"
603187SN/A#include "params/ArmTLB.hh"
613187SN/A#include "sim/process.hh"
629793SN/A
639793SN/A
649321SN/Ausing namespace std;
6510688Sandreas.hansson@arm.comusing namespace ArmISA;
668839SN/A
673187SN/A///////////////////////////////////////////////////////////////////////
688839SN/A//
698706SN/A//  ARM TLB
703187SN/A//
718839SN/A
723187SN/A#define MODE2MASK(X)			(1 << (X))
733187SN/A
743187SN/ATLB::TLB(const Params *p)
753187SN/A    : BaseTLB(p), size(p->size), nlu(0)
763187SN/A{
773187SN/A    table = new ArmISA::PTE[size];
788801SN/A    memset(table, 0, sizeof(ArmISA::PTE[size]));
793187SN/A    smallPages=0;
80}
81
82TLB::~TLB()
83{
84    if (table)
85        delete [] table;
86}
87
88// look up an entry in the TLB
89ArmISA::PTE *
90TLB::lookup(Addr vpn, uint8_t asn) const
91{
92    // assume not found...
93    ArmISA::PTE *retval = NULL;
94    PageTable::const_iterator i = lookupTable.find(vpn);
95    if (i != lookupTable.end()) {
96        while (i->first == vpn) {
97            int index = i->second;
98            ArmISA::PTE *pte = &table[index];
99
100            /* 1KB TLB Lookup code - from ARM ARM Volume III - Rev. 2.50 */
101            Addr Mask = pte->Mask;
102            Addr InvMask = ~Mask;
103            Addr VPN  = pte->VPN;
104            //	    warn("Valid: %d - %d\n",pte->V0,pte->V1);
105            if(((vpn & InvMask) == (VPN & InvMask)) && (pte->G  || (asn == pte->asid)))
106              { // We have a VPN + ASID Match
107                retval = pte;
108                break;
109              }
110            ++i;
111        }
112    }
113
114    DPRINTF(TLB, "lookup %#x, asn %#x -> %s ppn %#x\n", vpn, (int)asn,
115            retval ? "hit" : "miss", retval ? retval->PFN1 : 0);
116    return retval;
117}
118
119ArmISA::PTE* TLB::getEntry(unsigned Index) const
120{
121    // Make sure that Index is valid
122    assert(Index<size);
123    return &table[Index];
124}
125
126int TLB::probeEntry(Addr vpn,uint8_t asn) const
127{
128    // assume not found...
129    ArmISA::PTE *retval = NULL;
130    int Ind=-1;
131    PageTable::const_iterator i = lookupTable.find(vpn);
132    if (i != lookupTable.end()) {
133        while (i->first == vpn) {
134            int index = i->second;
135            ArmISA::PTE *pte = &table[index];
136
137            /* 1KB TLB Lookup code - from ARM ARM Volume III - Rev. 2.50 */
138            Addr Mask = pte->Mask;
139            Addr InvMask = ~Mask;
140            Addr VPN  = pte->VPN;
141            if(((vpn & InvMask) == (VPN & InvMask)) && (pte->G  || (asn == pte->asid)))
142              { // We have a VPN + ASID Match
143                retval = pte;
144                Ind = index;
145                break;
146              }
147
148            ++i;
149        }
150    }
151    DPRINTF(Arm,"VPN: %x, asid: %d, Result of TLBP: %d\n",vpn,asn,Ind);
152    return Ind;
153}
154Fault inline
155TLB::checkCacheability(RequestPtr &req)
156{
157  Addr VAddrUncacheable = 0xA0000000;
158  // In ARM, cacheability is controlled by certain bits of the virtual address
159  // or by the TLB entry
160  if((req->getVaddr() & VAddrUncacheable) == VAddrUncacheable) {
161    // mark request as uncacheable
162    req->setFlags(Request::UNCACHEABLE);
163  }
164  return NoFault;
165}
166void TLB::insertAt(ArmISA::PTE &pte, unsigned Index, int _smallPages)
167{
168  smallPages=_smallPages;
169  if(Index > size){
170    warn("Attempted to write at index (%d) beyond TLB size (%d)",Index,size);
171  } else {
172    // Update TLB
173    DPRINTF(TLB,"TLB[%d]: %x %x %x %x\n",Index,pte.Mask<<11,((pte.VPN << 11) | pte.asid),((pte.PFN0 <<6) | (pte.C0 << 3) | (pte.D0 << 2) | (pte.V0 <<1) | pte.G),
174            ((pte.PFN1 <<6) | (pte.C1 << 3) | (pte.D1 << 2) | (pte.V1 <<1) | pte.G));
175    if(table[Index].V0 == true || table[Index].V1 == true){ // Previous entry is valid
176      PageTable::iterator i = lookupTable.find(table[Index].VPN);
177      lookupTable.erase(i);
178    }
179    table[Index]=pte;
180    // Update fast lookup table
181    lookupTable.insert(make_pair(table[Index].VPN, Index));
182    //    int TestIndex=probeEntry(pte.VPN,pte.asid);
183    //    warn("Inserted at: %d, Found at: %d (%x)\n",Index,TestIndex,pte.Mask);
184  }
185
186}
187
188// insert a new TLB entry
189void
190TLB::insert(Addr addr, ArmISA::PTE &pte)
191{
192  fatal("TLB Insert not yet implemented\n");
193}
194
195void
196TLB::flushAll()
197{
198    DPRINTF(TLB, "flushAll\n");
199    memset(table, 0, sizeof(ArmISA::PTE[size]));
200    lookupTable.clear();
201    nlu = 0;
202}
203
204void
205TLB::serialize(ostream &os)
206{
207    SERIALIZE_SCALAR(size);
208    SERIALIZE_SCALAR(nlu);
209
210    for (int i = 0; i < size; i++) {
211        nameOut(os, csprintf("%s.PTE%d", name(), i));
212        table[i].serialize(os);
213    }
214}
215
216void
217TLB::unserialize(Checkpoint *cp, const string &section)
218{
219    UNSERIALIZE_SCALAR(size);
220    UNSERIALIZE_SCALAR(nlu);
221
222    for (int i = 0; i < size; i++) {
223        table[i].unserialize(cp, csprintf("%s.PTE%d", section, i));
224        if (table[i].V0 || table[i].V1) {
225            lookupTable.insert(make_pair(table[i].VPN, i));
226        }
227    }
228}
229
230void
231TLB::regStats()
232{
233    read_hits
234        .name(name() + ".read_hits")
235        .desc("DTB read hits")
236        ;
237
238    read_misses
239        .name(name() + ".read_misses")
240        .desc("DTB read misses")
241        ;
242
243
244    read_accesses
245        .name(name() + ".read_accesses")
246        .desc("DTB read accesses")
247        ;
248
249    write_hits
250        .name(name() + ".write_hits")
251        .desc("DTB write hits")
252        ;
253
254    write_misses
255        .name(name() + ".write_misses")
256        .desc("DTB write misses")
257        ;
258
259
260    write_accesses
261        .name(name() + ".write_accesses")
262        .desc("DTB write accesses")
263        ;
264
265    hits
266        .name(name() + ".hits")
267        .desc("DTB hits")
268        ;
269
270    misses
271        .name(name() + ".misses")
272        .desc("DTB misses")
273        ;
274
275    invalids
276        .name(name() + ".invalids")
277        .desc("DTB access violations")
278        ;
279
280    accesses
281        .name(name() + ".accesses")
282        .desc("DTB accesses")
283        ;
284
285    hits = read_hits + write_hits;
286    misses = read_misses + write_misses;
287    accesses = read_accesses + write_accesses;
288}
289
290Fault
291TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode)
292{
293    Addr vaddr = req->getVaddr() & ~PcModeMask;
294    SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR);
295    uint32_t flags = req->getFlags();
296
297    if (mode != Execute) {
298        assert(flags & MustBeOne);
299
300        if (sctlr.a || (flags & AllowUnaligned) == 0) {
301            if ((vaddr & flags & AlignmentMask) != 0) {
302                return new DataAbort;
303            }
304        }
305    }
306#if !FULL_SYSTEM
307    Process * p = tc->getProcessPtr();
308
309    Addr paddr;
310    if (!p->pTable->translate(vaddr, paddr))
311        return Fault(new GenericPageTableFault(vaddr));
312    req->setPaddr(paddr);
313
314    return NoFault;
315#else
316    if (!sctlr.m) {
317        req->setPaddr(vaddr);
318        return NoFault;
319    }
320    panic("MMU translation not implemented\n");
321    return NoFault;
322
323
324#endif
325}
326
327void
328TLB::translateTiming(RequestPtr req, ThreadContext *tc,
329        Translation *translation, Mode mode)
330{
331    assert(translation);
332    translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
333}
334
335ArmISA::PTE &
336TLB::index(bool advance)
337{
338    ArmISA::PTE *pte = &table[nlu];
339
340    if (advance)
341        nextnlu();
342
343    return *pte;
344}
345
346ArmISA::TLB *
347ArmTLBParams::create()
348{
349    return new ArmISA::TLB(this);
350}
351