tlb.cc revision 7399
1/*
2 * Copyright (c) 2010 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 * Authors: Ali Saidi
41 *          Nathan Binkert
42 *          Steve Reinhardt
43 */
44
45#include <string>
46#include <vector>
47
48#include "arch/arm/faults.hh"
49#include "arch/arm/pagetable.hh"
50#include "arch/arm/tlb.hh"
51#include "arch/arm/utility.hh"
52#include "base/inifile.hh"
53#include "base/str.hh"
54#include "base/trace.hh"
55#include "cpu/thread_context.hh"
56#include "mem/page_table.hh"
57#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 &section)
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