gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tlbi_op.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018-2020, 2022-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#ifndef __ARCH_ARM_TLBI_HH__
39#define __ARCH_ARM_TLBI_HH__
40
41#include "arch/arm/system.hh"
42#include "arch/arm/tlb.hh"
43#include "cpu/thread_context.hh"
44
52namespace gem5
53{
54
55namespace ArmISA {
56
57class TLBIOp
58{
59 public:
60 enum class Attr
61 {
62 None,
64 };
65
66 TLBIOp(TranslationRegime _target_regime, SecurityState _ss, Attr _attr)
67 : ss(_ss), targetRegime(_target_regime), attr(_attr)
68 {}
69
70 virtual ~TLBIOp() {}
71 virtual void operator()(ThreadContext* tc) {}
72
78 void
80 {
81 for (auto *oc: tc->getSystemPtr()->threads)
82 (*this)(oc);
83 }
84
85 bool match(TlbEntry *entry, vmid_t curr_vmid) const;
86
87 virtual bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const = 0;
88
94 virtual bool
96 {
97 return true;
98 }
99
105 virtual bool
107 {
108 return false;
109 }
110
114};
115
117class TLBIALL : public TLBIOp
118{
119 public:
121 Attr _attr=Attr::None)
122 : TLBIOp(_target_regime, _ss, _attr), el2Enabled(false),
124 {}
125
126 void operator()(ThreadContext* tc) override;
127
128 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
129
130 bool
131 stage2Flush() const override
132 {
133 // TLBIALL (AArch32) flushing stage2 entries if we're currently
134 // in hyp mode
135 return currentEL == EL2;
136 }
137
140};
141
143class ITLBIALL : public TLBIALL
144{
145 public:
147 : TLBIALL(_target_regime, _ss)
148 {}
149
150 void operator()(ThreadContext* tc) override;
151
152 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
153};
154
156class DTLBIALL : public TLBIALL
157{
158 public:
160 : TLBIALL(_target_regime, _ss)
161 {}
162
163 void operator()(ThreadContext* tc) override;
164
165 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
166};
167
169class TLBIALLEL : public TLBIOp
170{
171 public:
172 TLBIALLEL(TranslationRegime _target_regime, SecurityState _ss, Attr _attr)
173 : TLBIOp(_target_regime, _ss, _attr)
174 {}
175
176 void operator()(ThreadContext* tc) override;
177
178 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
179
180 bool
181 stage2Flush() const override
182 {
183 // If we're targeting EL1 then flush stage2 as well
186 }
187};
188
190class TLBIVMALL : public TLBIOp
191{
192 public:
194 SecurityState _ss, bool _stage2, Attr _attr)
195 : TLBIOp(_target_regime, _ss, _attr), el2Enabled(false),
196 stage2(_stage2)
197 {}
198
199 void operator()(ThreadContext* tc) override;
200
201 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
202
203 bool
204 stage2Flush() const override
205 {
206 return stage2;
207 }
208
210 bool stage2;
211};
212
214class TLBIASID : public TLBIOp
215{
216 public:
218 uint16_t _asid, Attr _attr=Attr::None)
219 : TLBIOp(_target_regime, _ss, _attr), asid(_asid),
220 el2Enabled(false)
221 {}
222
223 void operator()(ThreadContext* tc) override;
224
225 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
226
227 uint16_t asid;
229};
230
232class ITLBIASID : public TLBIASID
233{
234 public:
236 SecurityState _ss, uint16_t _asid)
237 : TLBIASID(_target_regime, _ss, _asid)
238 {}
239
240 void operator()(ThreadContext* tc) override;
241
242 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
243};
244
246class DTLBIASID : public TLBIASID
247{
248 public:
250 SecurityState _ss, uint16_t _asid)
251 : TLBIASID(_target_regime, _ss, _asid)
252 {}
253
254 void operator()(ThreadContext* tc) override;
255
256 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
257};
258
260class TLBIALLN : public TLBIOp
261{
262 public:
264 : TLBIOp(_target_regime, SecurityState::NonSecure, Attr::None)
265 {}
266
267 void operator()(ThreadContext* tc) override;
268
269 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
270
271 bool
272 stage2Flush() const override
273 {
275 }
276};
277
279class TLBIMVAA : public TLBIOp
280{
281 protected:
283 public:
285 Addr _addr, bool last_level, Attr _attr=Attr::None)
286 : TLBIOp(_target_regime, _ss, _attr), addr(_addr),
287 lastLevel(last_level)
288 {}
289
290 void operator()(ThreadContext* tc) override;
291
292 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
293
296};
297
299class TLBIMVA : public TLBIOp
300{
301 protected:
303
304 public:
306 Addr _addr, uint16_t _asid, bool last_level,
307 Attr _attr=Attr::None)
308 : TLBIOp(_target_regime, _ss, _attr), addr(_addr), asid(_asid),
309 lastLevel(last_level)
310 {}
311
312 void operator()(ThreadContext* tc) override;
313
314 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
315
317 uint16_t asid;
319};
320
322class ITLBIMVA : public TLBIMVA
323{
324 public:
326 Addr _addr, uint16_t _asid)
327 : TLBIMVA(_target_regime, _ss, _addr, _asid, false)
328 {}
329
330 void operator()(ThreadContext* tc) override;
331
332 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
333};
334
336class DTLBIMVA : public TLBIMVA
337{
338 public:
340 Addr _addr, uint16_t _asid)
341 : TLBIMVA(_target_regime, _ss, _addr, _asid, false)
342 {}
343
344 void operator()(ThreadContext* tc) override;
345
346 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
347};
348
350{
351 public:
356 bool valid() const { return granule != ReservedGrain; }
357
358 protected:
359 BitUnion64(RangeData)
360 Bitfield<47, 46> tg;
361 Bitfield<45, 44> scale;
362 Bitfield<43, 39> num;
363 Bitfield<38, 37> ttl;
364 Bitfield<36, 0> baseAddr;
365 EndBitUnion(RangeData)
366
367 static constexpr std::array<GrainSize, 4> tgMap = {
369 Grain4KB,
370 Grain16KB,
372 };
373
377
378 Addr
380 {
381 return sext<37>(rangeData.baseAddr) << granule;
382 }
383
384 Addr
385 rangeSize() const
386 {
387 return (rangeData.num + 1) << (5 * rangeData.scale + 1 + granule);
388 }
389
390 bool
391 resTLBIttl(uint8_t tg, uint8_t ttl) const
392 {
393 switch (ttl) {
394 case 0: return true;
395 case 1: return tgMap[tg] == Grain16KB;
396 default: return false;
397 }
398 }
399
400 RangeData rangeData;
402};
403
405class TLBIIPA : public TLBIOp
406{
407 protected:
409 public:
410 TLBIIPA(TranslationRegime _target_regime, SecurityState _ss, Addr _addr,
411 bool last_level, Attr _attr=Attr::None)
412 : TLBIOp(_target_regime, _ss, _attr),
413 addr(_addr),
414 lastLevel(last_level),
416 {}
417
420 bool last_level, Attr _attr=Attr::None)
421 : TLBIOp(_target_regime, _ss, _attr),
422 addr(0),
423 lastLevel(last_level),
425 {
426 const int top_bit = ArmSystem::physAddrRange(tc) == 52 ?
427 39 : 35;
428 addr = static_cast<Addr>(bits(val, top_bit, 0)) << 12;
429
430 switch (ss) {
433 break;
435 ipaSpace = bits(val, 63) ?
437 break;
438 default:
439 panic("Invalid SecurityState\n");
440 }
441 }
442
443 void operator()(ThreadContext* tc) override;
444
445 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
446
447 bool
448 stage1Flush() const override
449 {
450 return false;
451 }
452
456};
457
459class TLBIRMVA : public TLBIRange, public TLBIMVA
460{
461 public:
463 RegVal val, uint16_t _asid, bool last_level, Attr _attr)
464 : TLBIRange(val),
465 TLBIMVA(_target_regime, _ss, startAddress(), _asid, last_level, _attr)
466 {}
467
468 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
469};
470
472class TLBIRMVAA : public TLBIRange, public TLBIMVAA
473{
474 public:
476 RegVal val, bool last_level, Attr _attr)
477 : TLBIRange(val),
478 TLBIMVAA(_target_regime, _ss, startAddress(), last_level, _attr)
479 {}
480
481 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
482};
483
485class TLBIRIPA : public TLBIRange, public TLBIIPA
486{
487 public:
489 RegVal val, bool last_level, Attr _attr)
490 : TLBIRange(val),
491 TLBIIPA(tc, _target_regime, _ss, val, last_level, _attr)
492 {
493 addr = startAddress();
494 }
495
496 bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override;
497};
498
499} // namespace ArmISA
500} // namespace gem5
501
502#endif //__ARCH_ARM_TLBI_HH__
Data TLB Invalidate All.
Definition tlbi_op.hh:157
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:91
DTLBIALL(TranslationRegime _target_regime, SecurityState _ss)
Definition tlbi_op.hh:159
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:98
Data TLB Invalidate by ASID match.
Definition tlbi_op.hh:247
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:179
DTLBIASID(TranslationRegime _target_regime, SecurityState _ss, uint16_t _asid)
Definition tlbi_op.hh:249
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:186
Data TLB Invalidate by VA.
Definition tlbi_op.hh:337
DTLBIMVA(TranslationRegime _target_regime, SecurityState _ss, Addr _addr, uint16_t _asid)
Definition tlbi_op.hh:339
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
Instruction TLB Invalidate All.
Definition tlbi_op.hh:144
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
ITLBIALL(TranslationRegime _target_regime, SecurityState _ss)
Definition tlbi_op.hh:146
Instruction TLB Invalidate by ASID match.
Definition tlbi_op.hh:233
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
ITLBIASID(TranslationRegime _target_regime, SecurityState _ss, uint16_t _asid)
Definition tlbi_op.hh:235
Instruction TLB Invalidate by VA.
Definition tlbi_op.hh:323
ITLBIMVA(TranslationRegime _target_regime, SecurityState _ss, Addr _addr, uint16_t _asid)
Definition tlbi_op.hh:325
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
Implementaton of AArch64 TLBI ALLE(1,2,3)(IS) instructions.
Definition tlbi_op.hh:170
void operator()(ThreadContext *tc) override
Definition tlbi_op.cc:104
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition tlbi_op.hh:181
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:116
TLBIALLEL(TranslationRegime _target_regime, SecurityState _ss, Attr _attr)
Definition tlbi_op.hh:172
TLB Invalidate All, Non-Secure.
Definition tlbi_op.hh:261
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition tlbi_op.hh:272
TLBIALLN(TranslationRegime _target_regime)
Definition tlbi_op.hh:263
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
TLB Invalidate All.
Definition tlbi_op.hh:118
TLBIALL(TranslationRegime _target_regime, SecurityState _ss, Attr _attr=Attr::None)
Definition tlbi_op.hh:120
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition tlbi_op.hh:131
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
TLB Invalidate by ASID match.
Definition tlbi_op.hh:215
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
TLBIASID(TranslationRegime _target_regime, SecurityState _ss, uint16_t _asid, Attr _attr=Attr::None)
Definition tlbi_op.hh:217
TLB Invalidate by Intermediate Physical Address.
Definition tlbi_op.hh:406
TLBIIPA(ThreadContext *tc, TranslationRegime _target_regime, SecurityState _ss, RegVal val, bool last_level, Attr _attr=Attr::None)
Definition tlbi_op.hh:418
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
TLBIIPA(TranslationRegime _target_regime, SecurityState _ss, Addr _addr, bool last_level, Attr _attr=Attr::None)
Definition tlbi_op.hh:410
bool stage1Flush() const override
Return true if the TLBI op needs to flush stage1 entries, Defaulting to true in the TLBIOp abstract c...
Definition tlbi_op.hh:448
TLB Invalidate by VA, All ASID.
Definition tlbi_op.hh:280
TLBIMVAA(TranslationRegime _target_regime, SecurityState _ss, Addr _addr, bool last_level, Attr _attr=Attr::None)
Definition tlbi_op.hh:284
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
TLB Invalidate by VA.
Definition tlbi_op.hh:300
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
TLBIMVA(TranslationRegime _target_regime, SecurityState _ss, Addr _addr, uint16_t _asid, bool last_level, Attr _attr=Attr::None)
Definition tlbi_op.hh:305
void broadcast(ThreadContext *tc)
Broadcast the TLB Invalidate operation to all TLBs in the Arm system.
Definition tlbi_op.hh:79
virtual bool stage1Flush() const
Return true if the TLBI op needs to flush stage1 entries, Defaulting to true in the TLBIOp abstract c...
Definition tlbi_op.hh:95
TranslationRegime targetRegime
Definition tlbi_op.hh:112
bool match(TlbEntry *entry, vmid_t curr_vmid) const
Definition tlbi_op.cc:49
virtual bool stage2Flush() const
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition tlbi_op.hh:106
virtual bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const =0
TLBIOp(TranslationRegime _target_regime, SecurityState _ss, Attr _attr)
Definition tlbi_op.hh:66
virtual void operator()(ThreadContext *tc)
Definition tlbi_op.hh:71
virtual ~TLBIOp()
Definition tlbi_op.hh:70
SecurityState ss
Definition tlbi_op.hh:111
TLB Range Invalidate by VA, All ASIDs.
Definition tlbi_op.hh:486
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:368
TLBIRIPA(ThreadContext *tc, TranslationRegime _target_regime, SecurityState _ss, RegVal val, bool last_level, Attr _attr)
Definition tlbi_op.hh:488
TLB Range Invalidate by VA, All ASIDs.
Definition tlbi_op.hh:473
TLBIRMVAA(TranslationRegime _target_regime, SecurityState _ss, RegVal val, bool last_level, Attr _attr)
Definition tlbi_op.hh:475
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:352
TLB Range Invalidate by VA.
Definition tlbi_op.hh:460
bool matchEntry(TlbEntry *entry, vmid_t curr_vmid) const override
Definition tlbi_op.cc:336
TLBIRMVA(TranslationRegime _target_regime, SecurityState _ss, RegVal val, uint16_t _asid, bool last_level, Attr _attr)
Definition tlbi_op.hh:462
Bitfield< 36, 0 > baseAddr
Definition tlbi_op.hh:364
Addr startAddress() const
Definition tlbi_op.hh:379
bool resTLBIttl(uint8_t tg, uint8_t ttl) const
Definition tlbi_op.hh:391
BitUnion64(RangeData) Bitfield< 47
Addr rangeSize() const
Definition tlbi_op.hh:385
Bitfield< 43, 39 > num
Definition tlbi_op.hh:362
bool valid() const
Is the range valid? This mainly depends on the specified translation granule.
Definition tlbi_op.hh:356
Bitfield< 38, 37 > ttl
Definition tlbi_op.hh:363
TLBIRange(RegVal val)
Definition tlbi_op.hh:374
Bitfield< 45, 44 > scale
Definition tlbi_op.hh:361
Implementaton of AArch64 TLBI VMALLE1(IS)/VMALLS112E1(IS) instructions.
Definition tlbi_op.hh:191
TLBIVMALL(TranslationRegime _target_regime, SecurityState _ss, bool _stage2, Attr _attr)
Definition tlbi_op.hh:193
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
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition tlbi_op.hh:204
uint8_t physAddrRange() const
Returns the supported physical address range in bits.
Definition system.hh:220
Threads threads
Definition system.hh:310
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual System * getSystemPtr()=0
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition bitfield.hh:79
#define EndBitUnion(name)
This closes off the class and union started by the above macro.
Definition bitunion.hh:428
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
SecurityState
Security State.
Definition types.hh:273
uint16_t vmid_t
Definition types.hh:57
PASpace
Physical Address Space.
Definition types.hh:280
Bitfield< 63 > val
Definition misc.hh:804
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
uint64_t RegVal
Definition types.hh:173
Overload hash function for BasicBlockRange type.
Definition binary32.hh:81

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