gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tlbi_op.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018-2024 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 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are
16 * met: redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer;
18 * redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution;
21 * neither the name of the copyright holders nor the names of its
22 * contributors may be used to endorse or promote products derived from
23 * this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include "arch/arm/tlbi_op.hh"
39
40#include "arch/arm/mmu.hh"
41#include "cpu/checker/cpu.hh"
42
43namespace gem5
44{
45
46namespace ArmISA {
47
48bool
50{
51 return matchEntry(te, vmid) && (attr != Attr::ExcludeXS || !te->xs);
52}
53
54void
56{
58 currentEL = currEL(tc);
59
60 getMMUPtr(tc)->flush(*this);
61
62 // If CheckerCPU is connected, need to notify it of a flush
63 CheckerCPU *checker = tc->getCheckerCpuPtr();
64 if (checker) {
65 getMMUPtr(checker)->flush(*this);
66 }
67}
68
69bool
71{
72 return te->valid && ss == te->ss &&
73 (te->vmid == vmid || el2Enabled) &&
74 te->checkRegime(targetRegime);
75}
76
77void
83
84bool
86{
87 return TLBIALL::matchEntry(te, vmid) && (te->type & TypeTLB::instruction);
88}
89
90void
96
97bool
99{
100 return TLBIALL::matchEntry(te, vmid) && (te->type & TypeTLB::data);
101}
102
103void
105{
106 getMMUPtr(tc)->flush(*this);
107
108 // If CheckerCPU is connected, need to notify it of a flush
109 CheckerCPU *checker = tc->getCheckerCpuPtr();
110 if (checker) {
111 getMMUPtr(checker)->flush(*this);
112 }
113}
114
115bool
117{
118 return te->valid && ss == te->ss &&
119 te->checkRegime(targetRegime);
120}
121
122void
124{
126
127 getMMUPtr(tc)->flush(*this);
128
129 // If CheckerCPU is connected, need to notify it of a flush
130 CheckerCPU *checker = tc->getCheckerCpuPtr();
131 if (checker) {
132 getMMUPtr(checker)->flush(*this);
133 }
134}
135
136bool
138{
139 return te->valid && ss == te->ss &&
140 te->checkRegime(targetRegime) &&
141 (te->vmid == vmid || !el2Enabled || !useVMID(targetRegime));
142}
143
144void
146{
148
149 getMMUPtr(tc)->flushStage1(*this);
150 CheckerCPU *checker = tc->getCheckerCpuPtr();
151 if (checker) {
152 getMMUPtr(checker)->flushStage1(*this);
153 }
154}
155
156bool
158{
159 return te->valid && te->asid == asid &&
160 ss == te->ss &&
161 te->checkRegime(targetRegime) &&
162 (te->vmid == vmid || !el2Enabled || !useVMID(targetRegime));
163}
164
165void
167{
169 getMMUPtr(tc)->iflush(*this);
170}
171
172bool
174{
175 return TLBIASID::matchEntry(te, vmid) && (te->type & TypeTLB::instruction);
176}
177
178void
180{
182 getMMUPtr(tc)->dflush(*this);
183}
184
185bool
187{
188 return TLBIASID::matchEntry(te, vmid) && (te->type & TypeTLB::data);
189}
190
191void
193{
194 getMMUPtr(tc)->flush(*this);
195
196 CheckerCPU *checker = tc->getCheckerCpuPtr();
197 if (checker) {
198 getMMUPtr(checker)->flush(*this);
199 }
200}
201
202bool
204{
205 return te->valid && te->ss == SecurityState::NonSecure &&
206 te->checkRegime(targetRegime);
207}
208
211{
212 TlbEntry::KeyType lookup_data;
213 lookup_data.va = sext<56>(addr);
214 lookup_data.ignoreAsn = true;
215 lookup_data.vmid = vmid;
216 lookup_data.ss = ss;
217 lookup_data.functional = true;
218 lookup_data.targetRegime = targetRegime;
219 lookup_data.mode = BaseMMU::Read;
220 return lookup_data;
221}
222
223void
225{
226 getMMUPtr(tc)->flushStage1(*this);
227
228 CheckerCPU *checker = tc->getCheckerCpuPtr();
229 if (checker) {
230 getMMUPtr(checker)->flushStage1(*this);
231 }
232}
233
234bool
236{
237 TlbEntry::KeyType lookup_data = lookupGen(vmid);
238
239 return te->match(lookup_data) && (!lastLevel || !te->partial);
240}
241
244{
245 TlbEntry::KeyType lookup_data;
246 lookup_data.va = sext<56>(addr);
247 lookup_data.asn = asid;
248 lookup_data.ignoreAsn = false;
249 lookup_data.vmid = vmid;
250 lookup_data.ss = ss;
251 lookup_data.functional = true;
252 lookup_data.targetRegime = targetRegime;
253 lookup_data.mode = BaseMMU::Read;
254
255 return lookup_data;
256}
257
258void
260{
261 getMMUPtr(tc)->flushStage1(*this);
262
263 CheckerCPU *checker = tc->getCheckerCpuPtr();
264 if (checker) {
265 getMMUPtr(checker)->flushStage1(*this);
266 }
267}
268
269bool
271{
272 TlbEntry::KeyType lookup_data = lookupGen(vmid);
273
274 return te->match(lookup_data) && (!lastLevel || !te->partial);
275}
276
277void
279{
280 getMMUPtr(tc)->iflush(*this);
281}
282
283bool
285{
286 return TLBIMVA::matchEntry(te, vmid) && (te->type & TypeTLB::instruction);
287}
288
289void
291{
292 getMMUPtr(tc)->dflush(*this);
293}
294
295bool
297{
298 return TLBIMVA::matchEntry(te, vmid) && (te->type & TypeTLB::data);
299}
300
301void
303{
304 getMMUPtr(tc)->flushStage2(*this);
305
306 CheckerCPU *checker = tc->getCheckerCpuPtr();
307 if (checker) {
308 getMMUPtr(checker)->flushStage2(*this);
309 }
310}
311
314{
315 TlbEntry::KeyType lookup_data;
316 lookup_data.va = szext<56>(addr);
317 lookup_data.ignoreAsn = true;
318 lookup_data.vmid = vmid;
319 lookup_data.ss = ss;
320 lookup_data.functional = true;
321 lookup_data.targetRegime = targetRegime;
322 lookup_data.mode = BaseMMU::Read;
323 return lookup_data;
324}
325
326bool
328{
329 TlbEntry::KeyType lookup_data = lookupGen(vmid);
330
331 return te->match(lookup_data) && (!lastLevel || !te->partial) &&
332 ipaSpace == te->ipaSpace;
333}
334
335bool
337{
338 TlbEntry::KeyType lookup_data = lookupGen(vmid);
339 lookup_data.size = rangeSize();
340
341 auto addr_match = te->match(lookup_data) && (!lastLevel || !te->partial);
342 if (addr_match) {
343 return tgMap[rangeData.tg] == te->tg &&
344 (resTLBIttl(rangeData.tg, rangeData.ttl) ||
345 rangeData.ttl == te->lookupLevel);
346 } else {
347 return false;
348 }
349}
350
351bool
353{
354 TlbEntry::KeyType lookup_data = lookupGen(vmid);
355 lookup_data.size = rangeSize();
356
357 auto addr_match = te->match(lookup_data) && (!lastLevel || !te->partial);
358 if (addr_match) {
359 return tgMap[rangeData.tg] == te->tg &&
360 (resTLBIttl(rangeData.tg, rangeData.ttl) ||
361 rangeData.ttl == te->lookupLevel);
362 } else {
363 return false;
364 }
365}
366
367bool
369{
370 TlbEntry::KeyType lookup_data = lookupGen(vmid);
371 lookup_data.size = rangeSize();
372
373 auto addr_match = te->match(lookup_data) && (!lastLevel || !te->partial);
374 if (addr_match) {
375 return ipaSpace == te->ipaSpace &&
376 tgMap[rangeData.tg] == te->tg &&
377 (resTLBIttl(rangeData.tg, rangeData.ttl) ||
378 rangeData.ttl == te->lookupLevel);
379 } else {
380 return false;
381 }
382}
383
384} // namespace ArmISA
385} // namespace gem5
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:91
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:98
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:179
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:186
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:290
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:296
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:85
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:78
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:166
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:173
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:278
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:284
void flushStage2(const TLBIOp &tlbi_op)
Definition mmu.cc:242
void flushStage1(const TLBIOp &tlbi_op)
Definition mmu.cc:228
void dflush(const TLBIOp &tlbi_op)
Definition mmu.cc:260
void flush(const TLBIOp &tlbi_op)
Definition mmu.cc:216
void iflush(const TLBIOp &tlbi_op)
Definition mmu.cc:249
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:104
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:116
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:203
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:192
ExceptionLevel currentEL
Definition tlbi_op.hh:139
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:55
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:70
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:157
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:145
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:327
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:302
TlbEntry::KeyType lookupGen(vmid_t vmid) const
Definition tlbi_op.cc:313
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:235
TlbEntry::KeyType lookupGen(vmid_t vmid) const
Definition tlbi_op.cc:210
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:224
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:270
TlbEntry::KeyType lookupGen(vmid_t vmid) const
Definition tlbi_op.cc:243
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:259
TranslationRegime targetRegime
Definition tlbi_op.hh:112
bool match(TlbEntry *entry, vmid_t curr_vmid) const
Definition tlbi_op.cc:49
virtual bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const =0
SecurityState ss
Definition tlbi_op.hh:111
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:368
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:352
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:336
bool resTLBIttl(uint8_t tg, uint8_t ttl) const
Definition tlbi_op.hh:391
Addr rangeSize() const
Definition tlbi_op.hh:385
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:137
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:123
CheckerCPU class.
Definition cpu.hh:85
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual CheckerCPU * getCheckerCpuPtr()=0
static bool useVMID(TranslationRegime regime)
Definition utility.hh:376
Bitfield< 30 > te
ExceptionLevel currEL(const ThreadContext *tc)
Returns the current Exception Level (EL) of the provided ThreadContext.
Definition utility.cc:134
MMU * getMMUPtr(T *tc)
Definition mmu.hh:449
bool EL2Enabled(ThreadContext *tc)
Definition utility.cc:268
uint16_t vmid_t
Definition types.hh:57
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
TranslationRegime targetRegime
Definition pagetable.hh:199
The file contains the definition of a set of TLB Invalidate Instructions.

Generated on Mon Jan 13 2025 04:28:20 for gem5 by doxygen 1.9.8