gem5  v21.0.1.0
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 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 
51 namespace ArmISA {
52 
53 class TLBIOp
54 {
55  public:
56  TLBIOp(ExceptionLevel _targetEL, bool _secure)
57  : secureLookup(_secure), targetEL(_targetEL)
58  {}
59 
60  virtual ~TLBIOp() {}
61  virtual void operator()(ThreadContext* tc) {}
62 
68  void
70  {
71  for (auto *oc: tc->getSystemPtr()->threads)
72  (*this)(oc);
73  }
74 
77 };
78 
80 class TLBIALL : public TLBIOp
81 {
82  public:
83  TLBIALL(ExceptionLevel _targetEL, bool _secure)
84  : TLBIOp(_targetEL, _secure), inHost(false), el2Enabled(false)
85  {}
86 
87  void operator()(ThreadContext* tc) override;
88 
89  TLBIALL
90  makeStage2() const
91  {
92  return TLBIALL(EL1, secureLookup);
93  }
94 
95  bool inHost;
96  bool el2Enabled;
97 };
98 
100 class ITLBIALL : public TLBIALL
101 {
102  public:
103  ITLBIALL(ExceptionLevel _targetEL, bool _secure)
104  : TLBIALL(_targetEL, _secure)
105  {}
106 
107  void broadcast(ThreadContext *tc) = delete;
108 
109  void operator()(ThreadContext* tc) override;
110 };
111 
113 class DTLBIALL : public TLBIALL
114 {
115  public:
116  DTLBIALL(ExceptionLevel _targetEL, bool _secure)
117  : TLBIALL(_targetEL, _secure)
118  {}
119 
120  void broadcast(ThreadContext *tc) = delete;
121 
122  void operator()(ThreadContext* tc) override;
123 };
124 
126 class TLBIALLEL : public TLBIOp
127 {
128  public:
129  TLBIALLEL(ExceptionLevel _targetEL, bool _secure)
130  : TLBIOp(_targetEL, _secure), inHost(false)
131  {}
132 
133  void operator()(ThreadContext* tc) override;
134 
135  TLBIALLEL
136  makeStage2() const
137  {
138  return TLBIALLEL(EL1, secureLookup);
139  }
140 
141  bool inHost;
142 };
143 
145 class TLBIVMALL : public TLBIOp
146 {
147  public:
148  TLBIVMALL(ExceptionLevel _targetEL, bool _secure, bool _stage2)
149  : TLBIOp(_targetEL, _secure), inHost(false), el2Enabled(false),
150  stage2(_stage2)
151  {}
152 
153  void operator()(ThreadContext* tc) override;
154 
155  TLBIVMALL
156  makeStage2() const
157  {
158  return TLBIVMALL(EL1, secureLookup, false);
159  }
160 
161  bool inHost;
163  bool stage2;
164 };
165 
167 class TLBIASID : public TLBIOp
168 {
169  public:
170  TLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
171  : TLBIOp(_targetEL, _secure), asid(_asid), inHost(false),
172  el2Enabled(false)
173  {}
174 
175  void operator()(ThreadContext* tc) override;
176 
177  uint16_t asid;
178  bool inHost;
180 };
181 
183 class ITLBIASID : public TLBIASID
184 {
185  public:
186  ITLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
187  : TLBIASID(_targetEL, _secure, _asid)
188  {}
189 
190  void broadcast(ThreadContext *tc) = delete;
191 
192  void operator()(ThreadContext* tc) override;
193 };
194 
196 class DTLBIASID : public TLBIASID
197 {
198  public:
199  DTLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
200  : TLBIASID(_targetEL, _secure, _asid)
201  {}
202 
203  void broadcast(ThreadContext *tc) = delete;
204 
205  void operator()(ThreadContext* tc) override;
206 };
207 
209 class TLBIALLN : public TLBIOp
210 {
211  public:
213  : TLBIOp(_targetEL, false)
214  {}
215 
216  void operator()(ThreadContext* tc) override;
217 
218  TLBIALLN
219  makeStage2() const
220  {
221  return TLBIALLN(EL1);
222  }
223 };
224 
226 class TLBIMVAA : public TLBIOp
227 {
228  public:
229  TLBIMVAA(ExceptionLevel _targetEL, bool _secure,
230  Addr _addr)
231  : TLBIOp(_targetEL, _secure), addr(_addr), inHost(false)
232  {}
233 
234  void operator()(ThreadContext* tc) override;
235 
237  bool inHost;
238 };
239 
241 class TLBIMVA : public TLBIOp
242 {
243  public:
244  TLBIMVA(ExceptionLevel _targetEL, bool _secure,
245  Addr _addr, uint16_t _asid)
246  : TLBIOp(_targetEL, _secure), addr(_addr), asid(_asid),
247  inHost(false)
248  {}
249 
250  void operator()(ThreadContext* tc) override;
251 
253  uint16_t asid;
254  bool inHost;
255 };
256 
258 class ITLBIMVA : public TLBIMVA
259 {
260  public:
261  ITLBIMVA(ExceptionLevel _targetEL, bool _secure,
262  Addr _addr, uint16_t _asid)
263  : TLBIMVA(_targetEL, _secure, _addr, _asid)
264  {}
265 
266  void broadcast(ThreadContext *tc) = delete;
267 
268  void operator()(ThreadContext* tc) override;
269 };
270 
272 class DTLBIMVA : public TLBIMVA
273 {
274  public:
275  DTLBIMVA(ExceptionLevel _targetEL, bool _secure,
276  Addr _addr, uint16_t _asid)
277  : TLBIMVA(_targetEL, _secure, _addr, _asid)
278  {}
279 
280  void broadcast(ThreadContext *tc) = delete;
281 
282  void operator()(ThreadContext* tc) override;
283 };
284 
286 class TLBIIPA : public TLBIOp
287 {
288  public:
289  TLBIIPA(ExceptionLevel _targetEL, bool _secure, Addr _addr)
290  : TLBIOp(_targetEL, _secure), addr(_addr)
291  {}
292 
293  void operator()(ThreadContext* tc) override;
294 
296  TLBIMVAA
297  makeStage2() const
298  {
299  return TLBIMVAA(EL1, secureLookup, addr);
300  }
301 
303 };
304 
305 } // namespace ArmISA
306 
307 #endif //__ARCH_ARM_TLBI_HH__
ArmISA::TLBIASID::asid
uint16_t asid
Definition: tlbi_op.hh:177
ArmISA::TLBIALL::inHost
bool inHost
Definition: tlbi_op.hh:95
ArmISA::ITLBIASID::ITLBIASID
ITLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:186
ArmISA::DTLBIALL::DTLBIALL
DTLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:116
ArmISA::DTLBIMVA::broadcast
void broadcast(ThreadContext *tc)=delete
ArmISA::TLBIALLN::TLBIALLN
TLBIALLN(ExceptionLevel _targetEL)
Definition: tlbi_op.hh:212
ArmISA::DTLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:126
ArmISA::TLBIVMALL::makeStage2
TLBIVMALL makeStage2() const
Definition: tlbi_op.hh:156
ArmISA::TLBIOp
Definition: tlbi_op.hh:53
ArmISA::ITLBIALL::broadcast
void broadcast(ThreadContext *tc)=delete
ArmISA::TLBIOp::operator()
virtual void operator()(ThreadContext *tc)
Definition: tlbi_op.hh:61
ArmISA::TLBIMVA
TLB Invalidate by VA.
Definition: tlbi_op.hh:241
ArmISA::ITLBIMVA::broadcast
void broadcast(ThreadContext *tc)=delete
ArmISA::TLBIALLEL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:76
ArmISA::DTLBIALL
Data TLB Invalidate All.
Definition: tlbi_op.hh:113
ArmISA::TLBIVMALL
Implementaton of AArch64 TLBI VMALLE1(IS)/VMALLS112E1(IS) instructions.
Definition: tlbi_op.hh:145
ArmISA::TLBIOp::broadcast
void broadcast(ThreadContext *tc)
Broadcast the TLB Invalidate operation to all TLBs in the Arm system.
Definition: tlbi_op.hh:69
tlb.hh
ArmISA::TLBIMVAA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:144
ArmISA::TLBIMVA::addr
Addr addr
Definition: tlbi_op.hh:252
ArmISA::TLBIMVAA::TLBIMVAA
TLBIMVAA(ExceptionLevel _targetEL, bool _secure, Addr _addr)
Definition: tlbi_op.hh:229
ArmISA::TLBIALL::TLBIALL
TLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:83
system.hh
ArmISA::TLBIASID
TLB Invalidate by ASID match.
Definition: tlbi_op.hh:167
ArmISA
Definition: ccregs.hh:41
ArmISA::TLBIALL::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:96
ArmISA::TLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:46
ArmISA::TLBIALL::makeStage2
TLBIALL makeStage2() const
Definition: tlbi_op.hh:90
ArmISA::TLBIIPA::addr
Addr addr
Definition: tlbi_op.hh:302
ArmISA::TLBIOp::~TLBIOp
virtual ~TLBIOp()
Definition: tlbi_op.hh:60
ArmISA::TLBIALLN::makeStage2
TLBIALLN makeStage2() const
Definition: tlbi_op.hh:219
ArmISA::TLBIMVA::inHost
bool inHost
Definition: tlbi_op.hh:254
ArmISA::TLBIOp::secureLookup
bool secureLookup
Definition: tlbi_op.hh:75
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
ArmISA::TLBIOp::targetEL
ExceptionLevel targetEL
Definition: tlbi_op.hh:76
ArmISA::TLBIASID::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:179
ArmISA::ITLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:119
ArmISA::TLBIVMALL::TLBIVMALL
TLBIVMALL(ExceptionLevel _targetEL, bool _secure, bool _stage2)
Definition: tlbi_op.hh:148
ArmISA::ExceptionLevel
ExceptionLevel
Definition: types.hh:621
ArmISA::ITLBIALL::ITLBIALL
ITLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:103
ArmISA::TLBIMVAA::inHost
bool inHost
Definition: tlbi_op.hh:237
ArmISA::ITLBIMVA::ITLBIMVA
ITLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid)
Definition: tlbi_op.hh:261
ArmISA::ITLBIASID::broadcast
void broadcast(ThreadContext *tc)=delete
ArmISA::ITLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:62
ArmISA::TLBIMVA::TLBIMVA
TLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid)
Definition: tlbi_op.hh:244
ArmISA::TLBIMVAA
TLB Invalidate by VA, All ASID.
Definition: tlbi_op.hh:226
ArmISA::DTLBIASID::broadcast
void broadcast(ThreadContext *tc)=delete
ArmISA::TLBIMVAA::addr
Addr addr
Definition: tlbi_op.hh:236
ArmISA::EL1
@ EL1
Definition: types.hh:623
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ArmISA::TLBIOp::TLBIOp
TLBIOp(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:56
ArmISA::TLBIVMALL::stage2
bool stage2
Definition: tlbi_op.hh:163
ArmISA::TLBIALLEL::makeStage2
TLBIALLEL makeStage2() const
Definition: tlbi_op.hh:136
ArmISA::TLBIALL
TLB Invalidate All.
Definition: tlbi_op.hh:80
ArmISA::TLBIMVA::asid
uint16_t asid
Definition: tlbi_op.hh:253
ArmISA::DTLBIMVA
Data TLB Invalidate by VA.
Definition: tlbi_op.hh:272
ArmISA::DTLBIMVA::DTLBIMVA
DTLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid)
Definition: tlbi_op.hh:275
ArmISA::ITLBIALL
Instruction TLB Invalidate All.
Definition: tlbi_op.hh:100
System::threads
Threads threads
Definition: system.hh:304
ArmISA::TLBIIPA::makeStage2
TLBIMVAA makeStage2() const
TLBIIPA is basically a TLBIMVAA for stage2 TLBs.
Definition: tlbi_op.hh:297
ArmISA::TLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:157
ArmISA::TLBIALLEL::inHost
bool inHost
Definition: tlbi_op.hh:141
ArmISA::TLBIALLN::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:133
ArmISA::DTLBIALL::broadcast
void broadcast(ThreadContext *tc)=delete
ArmISA::DTLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:69
ArmISA::TLBIALLEL
Implementaton of AArch64 TLBI ALLE(1,2,3)(IS) instructions.
Definition: tlbi_op.hh:126
ArmISA::TLBIIPA
TLB Invalidate by Intermediate Physical Address.
Definition: tlbi_op.hh:286
ArmISA::TLBIASID::TLBIASID
TLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:170
ArmISA::DTLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:176
ArmISA::TLBIIPA::TLBIIPA
TLBIIPA(ExceptionLevel _targetEL, bool _secure, Addr _addr)
Definition: tlbi_op.hh:289
ArmISA::DTLBIASID::DTLBIASID
DTLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:199
ArmISA::TLBIVMALL::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:162
ArmISA::DTLBIASID
Data TLB Invalidate by ASID match.
Definition: tlbi_op.hh:196
ArmISA::ITLBIASID
Instruction TLB Invalidate by ASID match.
Definition: tlbi_op.hh:183
ArmISA::TLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:105
ArmISA::TLBIVMALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:90
ArmISA::ITLBIMVA
Instruction TLB Invalidate by VA.
Definition: tlbi_op.hh:258
thread_context.hh
ArmISA::TLBIASID::inHost
bool inHost
Definition: tlbi_op.hh:178
ArmISA::TLBIALLEL::TLBIALLEL
TLBIALLEL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:129
ArmISA::ITLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:170
ArmISA::TLBIVMALL::inHost
bool inHost
Definition: tlbi_op.hh:161
ThreadContext::getSystemPtr
virtual System * getSystemPtr()=0
ArmISA::TLBIIPA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:182
ArmISA::TLBIALLN
TLB Invalidate All, Non-Secure.
Definition: tlbi_op.hh:209

Generated on Tue Jun 22 2021 15:28:21 for gem5 by doxygen 1.8.17