gem5  v20.0.0.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-2019 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  System *sys = tc->getSystemPtr();
72  for (int x = 0; x < sys->numContexts(); x++) {
73  ThreadContext *oc = sys->getThreadContext(x);
74  (*this)(oc);
75  }
76  }
77 
78  protected:
81 };
82 
84 class TLBIALL : public TLBIOp
85 {
86  public:
87  TLBIALL(ExceptionLevel _targetEL, bool _secure)
88  : TLBIOp(_targetEL, _secure)
89  {}
90 
91  void operator()(ThreadContext* tc) override;
92 };
93 
95 class ITLBIALL : public TLBIOp
96 {
97  public:
98  ITLBIALL(ExceptionLevel _targetEL, bool _secure)
99  : TLBIOp(_targetEL, _secure)
100  {}
101 
102  void broadcast(ThreadContext *tc) = delete;
103 
104  void operator()(ThreadContext* tc) override;
105 };
106 
108 class DTLBIALL : public TLBIOp
109 {
110  public:
111  DTLBIALL(ExceptionLevel _targetEL, bool _secure)
112  : TLBIOp(_targetEL, _secure)
113  {}
114 
115  void broadcast(ThreadContext *tc) = delete;
116 
117  void operator()(ThreadContext* tc) override;
118 };
119 
121 class TLBIASID : public TLBIOp
122 {
123  public:
124  TLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
125  : TLBIOp(_targetEL, _secure), asid(_asid)
126  {}
127 
128  void operator()(ThreadContext* tc) override;
129 
130  protected:
131  uint16_t asid;
132 };
133 
135 class ITLBIASID : public TLBIOp
136 {
137  public:
138  ITLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
139  : TLBIOp(_targetEL, _secure), asid(_asid)
140  {}
141 
142  void broadcast(ThreadContext *tc) = delete;
143 
144  void operator()(ThreadContext* tc) override;
145 
146  protected:
147  uint16_t asid;
148 };
149 
151 class DTLBIASID : public TLBIOp
152 {
153  public:
154  DTLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
155  : TLBIOp(_targetEL, _secure), asid(_asid)
156  {}
157 
158  void broadcast(ThreadContext *tc) = delete;
159 
160  void operator()(ThreadContext* tc) override;
161 
162  protected:
163  uint16_t asid;
164 };
165 
167 class TLBIALLN : public TLBIOp
168 {
169  public:
171  : TLBIOp(_targetEL, false)
172  {}
173 
174  void operator()(ThreadContext* tc) override;
175 };
176 
178 class TLBIMVAA : public TLBIOp
179 {
180  public:
181  TLBIMVAA(ExceptionLevel _targetEL, bool _secure,
182  Addr _addr)
183  : TLBIOp(_targetEL, _secure), addr(_addr)
184  {}
185 
186  void operator()(ThreadContext* tc) override;
187 
188  protected:
190 };
191 
193 class TLBIMVA : public TLBIOp
194 {
195  public:
196  TLBIMVA(ExceptionLevel _targetEL, bool _secure,
197  Addr _addr, uint16_t _asid)
198  : TLBIOp(_targetEL, _secure), addr(_addr), asid(_asid)
199  {}
200 
201  void operator()(ThreadContext* tc) override;
202 
203  protected:
205  uint16_t asid;
206 };
207 
209 class ITLBIMVA : public TLBIOp
210 {
211  public:
212  ITLBIMVA(ExceptionLevel _targetEL, bool _secure,
213  Addr _addr, uint16_t _asid)
214  : TLBIOp(_targetEL, _secure), addr(_addr), asid(_asid)
215  {}
216 
217  void broadcast(ThreadContext *tc) = delete;
218 
219  void operator()(ThreadContext* tc) override;
220 
221  protected:
223  uint16_t asid;
224 };
225 
227 class DTLBIMVA : public TLBIOp
228 {
229  public:
230  DTLBIMVA(ExceptionLevel _targetEL, bool _secure,
231  Addr _addr, uint16_t _asid)
232  : TLBIOp(_targetEL, _secure), addr(_addr), asid(_asid)
233  {}
234 
235  void broadcast(ThreadContext *tc) = delete;
236 
237  void operator()(ThreadContext* tc) override;
238 
239  protected:
241  uint16_t asid;
242 };
243 
245 class TLBIIPA : public TLBIOp
246 {
247  public:
248  TLBIIPA(ExceptionLevel _targetEL, bool _secure, Addr _addr)
249  : TLBIOp(_targetEL, _secure), addr(_addr)
250  {}
251 
252  void operator()(ThreadContext* tc) override;
253 
254  protected:
256 };
257 
258 } // namespace ArmISA
259 
260 #endif //__ARCH_ARM_TLBI_HH__
ExceptionLevel targetEL
Definition: tlbi_op.hh:80
TLBIIPA(ExceptionLevel _targetEL, bool _secure, Addr _addr)
Definition: tlbi_op.hh:248
virtual System * getSystemPtr()=0
Instruction TLB Invalidate All.
Definition: tlbi_op.hh:95
ip6_addr_t addr
Definition: inet.hh:330
TLBIOp(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:56
Instruction TLB Invalidate by VA.
Definition: tlbi_op.hh:209
Definition: system.hh:72
Definition: ccregs.hh:41
TLB Invalidate by VA, All ASID.
Definition: tlbi_op.hh:178
ThreadContext is the external interface to all thread state for anything outside of the CPU...
TLBIALLN(ExceptionLevel _targetEL)
Definition: tlbi_op.hh:170
TLB Invalidate by VA.
Definition: tlbi_op.hh:193
ExceptionLevel
Definition: types.hh:583
ThreadContext * getThreadContext(ContextID tid) const
Definition: system.hh:186
DTLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:154
Bitfield< 3 > x
Definition: pagetable.hh:69
Data TLB Invalidate by ASID match.
Definition: tlbi_op.hh:151
Instruction TLB Invalidate by ASID match.
Definition: tlbi_op.hh:135
TLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:87
unsigned numContexts() const
Definition: system.hh:198
DTLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid)
Definition: tlbi_op.hh:230
uint16_t asid
Definition: tlbi_op.hh:163
TLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:124
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
DTLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:111
uint16_t asid
Definition: tlbi_op.hh:147
Data TLB Invalidate All.
Definition: tlbi_op.hh:108
TLB Invalidate by ASID match.
Definition: tlbi_op.hh:121
TLB Invalidate All, Non-Secure.
Definition: tlbi_op.hh:167
ITLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid)
Definition: tlbi_op.hh:212
uint16_t asid
Definition: tlbi_op.hh:223
TLBIMVAA(ExceptionLevel _targetEL, bool _secure, Addr _addr)
Definition: tlbi_op.hh:181
virtual void operator()(ThreadContext *tc)
Definition: tlbi_op.hh:61
TLB Invalidate All.
Definition: tlbi_op.hh:84
uint16_t asid
Definition: tlbi_op.hh:131
void broadcast(ThreadContext *tc)
Broadcast the TLB Invalidate operation to all TLBs in the Arm system.
Definition: tlbi_op.hh:69
uint16_t asid
Definition: tlbi_op.hh:205
uint16_t asid
Definition: tlbi_op.hh:241
TLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid)
Definition: tlbi_op.hh:196
bool secureLookup
Definition: tlbi_op.hh:79
virtual ~TLBIOp()
Definition: tlbi_op.hh:60
ITLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:138
TLB Invalidate by Intermediate Physical Address.
Definition: tlbi_op.hh:245
Data TLB Invalidate by VA.
Definition: tlbi_op.hh:227
ITLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:98

Generated on Thu May 28 2020 16:11:03 for gem5 by doxygen 1.8.13