gem5  v20.0.0.0
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-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 #include "arch/arm/tlbi_op.hh"
39 
40 #include "arch/arm/tlb.hh"
41 #include "cpu/checker/cpu.hh"
42 
43 namespace ArmISA {
44 
45 void
47 {
50 
51  // If CheckerCPU is connected, need to notify it of a flush
52  CheckerCPU *checker = tc->getCheckerCpuPtr();
53  if (checker) {
55  targetEL);
57  targetEL);
58  }
59 }
60 
61 void
63 {
65 }
66 
67 void
69 {
71 }
72 
73 void
75 {
78  CheckerCPU *checker = tc->getCheckerCpuPtr();
79  if (checker) {
82  }
83 }
84 
85 void
87 {
89 }
90 
91 void
93 {
95 }
96 
97 void
99 {
102 
103  CheckerCPU *checker = tc->getCheckerCpuPtr();
104  if (checker) {
105  getITBPtr(checker)->flushAllNs(targetEL);
106  getDTBPtr(checker)->flushAllNs(targetEL);
107  }
108 }
109 
110 void
112 {
115 
116  CheckerCPU *checker = tc->getCheckerCpuPtr();
117  if (checker) {
120  }
121 }
122 
123 void
125 {
130 
131  CheckerCPU *checker = tc->getCheckerCpuPtr();
132  if (checker) {
133  getITBPtr(checker)->flushMvaAsid(
135  getDTBPtr(checker)->flushMvaAsid(
137  }
138 }
139 
140 void
142 {
143  getITBPtr(tc)->flushMvaAsid(
145 }
146 
147 void
149 {
150  getDTBPtr(tc)->flushMvaAsid(
152 }
153 
154 void
156 {
161 
162  CheckerCPU *checker = tc->getCheckerCpuPtr();
163  if (checker) {
164  getITBPtr(checker)->flushIpaVmid(addr,
166  getDTBPtr(checker)->flushIpaVmid(addr,
168  }
169 }
170 
171 } // namespace ArmISA
ExceptionLevel targetEL
Definition: tlbi_op.hh:80
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:74
The file contains the definition of a set of TLB Invalidate Instructions.
CheckerCPU class.
Definition: cpu.hh:85
void flushAllNs(ExceptionLevel target_el, bool ignore_el=false)
Remove all entries in the non secure world, depending on whether they were allocated in hyp mode or n...
Definition: tlb.cc:276
void flushMva(Addr mva, bool secure_lookup, ExceptionLevel target_el)
Remove all entries that match the va regardless of asn.
Definition: tlb.cc:342
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:46
void flushAllSecurity(bool secure_lookup, ExceptionLevel target_el, bool ignore_el=false)
Reset the entire TLB.
Definition: tlb.cc:244
TLB * getDTBPtr(T *tc)
Definition: tlb.hh:473
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:141
ip6_addr_t addr
Definition: inet.hh:330
Definition: ccregs.hh:41
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:148
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:68
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void flushAsid(uint64_t asn, bool secure_lookup, ExceptionLevel target_el)
Remove any entries that match the asn.
Definition: tlb.cc:318
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:98
virtual CheckerCPU * getCheckerCpuPtr()=0
void flushIpaVmid(Addr ipa, bool secure_lookup, ExceptionLevel target_el)
Invalidate all entries in the stage 2 TLB that match the given ipa and the current VMID...
Definition: tlb.cc:374
void flushMvaAsid(Addr mva, uint64_t asn, bool secure_lookup, ExceptionLevel target_el)
Remove any entries that match both a va and asn.
Definition: tlb.cc:307
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:155
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:111
bool secureLookup
Definition: tlbi_op.hh:79
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:124
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:92
TLB * getITBPtr(T *tc)
Definition: tlb.hh:464
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:86
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:62

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