tlb.cc revision 7399
13395Shsul@eecs.umich.edu/* 23395Shsul@eecs.umich.edu * Copyright (c) 2010 ARM Limited 33395Shsul@eecs.umich.edu * All rights reserved 43395Shsul@eecs.umich.edu * 53395Shsul@eecs.umich.edu * The license below extends only to copyright in the software and shall 63395Shsul@eecs.umich.edu * not be construed as granting a license to any other intellectual 73395Shsul@eecs.umich.edu * property including but not limited to intellectual property relating 83395Shsul@eecs.umich.edu * to a hardware implementation of the functionality of the software 93395Shsul@eecs.umich.edu * licensed hereunder. You may use the software subject to the license 103395Shsul@eecs.umich.edu * terms below provided that you ensure that this notice is replicated 113395Shsul@eecs.umich.edu * unmodified and in its entirety in all distributions of the software, 123395Shsul@eecs.umich.edu * modified or unmodified, in source code or in binary form. 133395Shsul@eecs.umich.edu * 143395Shsul@eecs.umich.edu * Copyright (c) 2001-2005 The Regents of The University of Michigan 153395Shsul@eecs.umich.edu * All rights reserved. 163395Shsul@eecs.umich.edu * 173395Shsul@eecs.umich.edu * Redistribution and use in source and binary forms, with or without 183395Shsul@eecs.umich.edu * modification, are permitted provided that the following conditions are 193395Shsul@eecs.umich.edu * met: redistributions of source code must retain the above copyright 203395Shsul@eecs.umich.edu * notice, this list of conditions and the following disclaimer; 213395Shsul@eecs.umich.edu * redistributions in binary form must reproduce the above copyright 223395Shsul@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the 233395Shsul@eecs.umich.edu * documentation and/or other materials provided with the distribution; 243395Shsul@eecs.umich.edu * neither the name of the copyright holders nor the names of its 253395Shsul@eecs.umich.edu * contributors may be used to endorse or promote products derived from 263395Shsul@eecs.umich.edu * this software without specific prior written permission. 273395Shsul@eecs.umich.edu * 283395Shsul@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 293395Shsul@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 303395Shsul@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 313395Shsul@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 323395Shsul@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 333395Shsul@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 343395Shsul@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 353395Shsul@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 363395Shsul@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 373395Shsul@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 383395Shsul@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 393395Shsul@eecs.umich.edu * 403395Shsul@eecs.umich.edu * Authors: Ali Saidi 413395Shsul@eecs.umich.edu * Nathan Binkert 423395Shsul@eecs.umich.edu * Steve Reinhardt 433395Shsul@eecs.umich.edu */ 443395Shsul@eecs.umich.edu 453395Shsul@eecs.umich.edu#include <string> 463395Shsul@eecs.umich.edu#include <vector> 473395Shsul@eecs.umich.edu 483395Shsul@eecs.umich.edu#include "arch/arm/faults.hh" 493395Shsul@eecs.umich.edu#include "arch/arm/pagetable.hh" 503395Shsul@eecs.umich.edu#include "arch/arm/tlb.hh" 513395Shsul@eecs.umich.edu#include "arch/arm/utility.hh" 523395Shsul@eecs.umich.edu#include "base/inifile.hh" 533395Shsul@eecs.umich.edu#include "base/str.hh" 543395Shsul@eecs.umich.edu#include "base/trace.hh" 553395Shsul@eecs.umich.edu#include "cpu/thread_context.hh" 563395Shsul@eecs.umich.edu#include "mem/page_table.hh" 573395Shsul@eecs.umich.edu#include "params/ArmTLB.hh" 58#include "sim/process.hh" 59 60 61using namespace std; 62using namespace ArmISA; 63 64TLB::TLB(const Params *p) 65 : BaseTLB(p), size(p->size), nlu(0) 66{ 67 table = new ArmISA::PTE[size]; 68 memset(table, 0, sizeof(ArmISA::PTE[size])); 69 70} 71 72TLB::~TLB() 73{ 74 if (table) 75 delete [] table; 76} 77 78ArmISA::PTE * 79TLB::lookup(Addr vpn, uint8_t asn) const 80{ 81 panic("lookup() not implemented for ARM\n"); 82} 83 84// insert a new TLB entry 85void 86TLB::insert(Addr addr, ArmISA::PTE &pte) 87{ 88 fatal("TLB Insert not yet implemented\n"); 89} 90 91void 92TLB::flushAll() 93{ 94 DPRINTF(TLB, "flushAll\n"); 95 memset(table, 0, sizeof(ArmISA::PTE[size])); 96 lookupTable.clear(); 97 nlu = 0; 98} 99 100void 101TLB::serialize(ostream &os) 102{ 103 SERIALIZE_SCALAR(size); 104 SERIALIZE_SCALAR(nlu); 105 106 for (int i = 0; i < size; i++) { 107 nameOut(os, csprintf("%s.PTE%d", name(), i)); 108 table[i].serialize(os); 109 } 110} 111 112void 113TLB::unserialize(Checkpoint *cp, const string §ion) 114{ 115 UNSERIALIZE_SCALAR(size); 116 UNSERIALIZE_SCALAR(nlu); 117 118 panic("Need to properly unserialize TLB\n"); 119 for (int i = 0; i < size; i++) { 120 table[i].unserialize(cp, csprintf("%s.PTE%d", section, i)); 121 } 122} 123 124void 125TLB::regStats() 126{ 127 read_hits 128 .name(name() + ".read_hits") 129 .desc("DTB read hits") 130 ; 131 132 read_misses 133 .name(name() + ".read_misses") 134 .desc("DTB read misses") 135 ; 136 137 138 read_accesses 139 .name(name() + ".read_accesses") 140 .desc("DTB read accesses") 141 ; 142 143 write_hits 144 .name(name() + ".write_hits") 145 .desc("DTB write hits") 146 ; 147 148 write_misses 149 .name(name() + ".write_misses") 150 .desc("DTB write misses") 151 ; 152 153 154 write_accesses 155 .name(name() + ".write_accesses") 156 .desc("DTB write accesses") 157 ; 158 159 hits 160 .name(name() + ".hits") 161 .desc("DTB hits") 162 ; 163 164 misses 165 .name(name() + ".misses") 166 .desc("DTB misses") 167 ; 168 169 invalids 170 .name(name() + ".invalids") 171 .desc("DTB access violations") 172 ; 173 174 accesses 175 .name(name() + ".accesses") 176 .desc("DTB accesses") 177 ; 178 179 hits = read_hits + write_hits; 180 misses = read_misses + write_misses; 181 accesses = read_accesses + write_accesses; 182} 183 184Fault 185TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode) 186{ 187 Addr vaddr = req->getVaddr() & ~PcModeMask; 188 SCTLR sctlr = tc->readMiscReg(MISCREG_SCTLR); 189 uint32_t flags = req->getFlags(); 190 191 if (mode != Execute) { 192 assert(flags & MustBeOne); 193 194 if (sctlr.a || (flags & AllowUnaligned) == 0) { 195 if ((vaddr & flags & AlignmentMask) != 0) { 196 return new DataAbort(vaddr, (mode == Write), 0, 197 ArmFault::AlignmentFault); 198 } 199 } 200 } 201#if !FULL_SYSTEM 202 Process * p = tc->getProcessPtr(); 203 204 Addr paddr; 205 if (!p->pTable->translate(vaddr, paddr)) 206 return Fault(new GenericPageTableFault(vaddr)); 207 req->setPaddr(paddr); 208 209 return NoFault; 210#else 211 if (!sctlr.m) { 212 req->setPaddr(vaddr); 213 return NoFault; 214 } 215 warn_once("MPU translation not implemented\n"); 216 req->setPaddr(vaddr); 217 return NoFault; 218 219 220#endif 221} 222 223void 224TLB::translateTiming(RequestPtr req, ThreadContext *tc, 225 Translation *translation, Mode mode) 226{ 227 assert(translation); 228 translation->finish(translateAtomic(req, tc, mode), req, tc, mode); 229} 230 231ArmISA::TLB * 232ArmTLBParams::create() 233{ 234 return new ArmISA::TLB(this); 235} 236