gem5  v21.0.1.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-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 #include "arch/arm/tlbi_op.hh"
39 
40 #include "arch/arm/mmu.hh"
41 #include "cpu/checker/cpu.hh"
42 
43 namespace ArmISA {
44 
45 void
47 {
48  HCR hcr = tc->readMiscReg(MISCREG_HCR_EL2);
49  inHost = (hcr.tge == 1 && hcr.e2h == 1);
50  el2Enabled = EL2Enabled(tc);
51 
52  getMMUPtr(tc)->flush(*this);
53 
54  // If CheckerCPU is connected, need to notify it of a flush
55  CheckerCPU *checker = tc->getCheckerCpuPtr();
56  if (checker) {
57  getMMUPtr(checker)->flush(*this);
58  }
59 }
60 
61 void
63 {
64  el2Enabled = EL2Enabled(tc);
65  getMMUPtr(tc)->iflush(*this);
66 }
67 
68 void
70 {
71  el2Enabled = EL2Enabled(tc);
72  getMMUPtr(tc)->dflush(*this);
73 }
74 
75 void
77 {
78  HCR hcr = tc->readMiscReg(MISCREG_HCR_EL2);
79  inHost = (hcr.tge == 1 && hcr.e2h == 1);
80  getMMUPtr(tc)->flush(*this);
81 
82  // If CheckerCPU is connected, need to notify it of a flush
83  CheckerCPU *checker = tc->getCheckerCpuPtr();
84  if (checker) {
85  getMMUPtr(checker)->flush(*this);
86  }
87 }
88 
89 void
91 {
92  HCR hcr = tc->readMiscReg(MISCREG_HCR_EL2);
93  inHost = (hcr.tge == 1 && hcr.e2h == 1);
94 
95  getMMUPtr(tc)->flush(*this);
96 
97  // If CheckerCPU is connected, need to notify it of a flush
98  CheckerCPU *checker = tc->getCheckerCpuPtr();
99  if (checker) {
100  getMMUPtr(checker)->flush(*this);
101  }
102 }
103 
104 void
106 {
107  HCR hcr = tc->readMiscReg(MISCREG_HCR_EL2);
108  inHost = (hcr.tge == 1 && hcr.e2h == 1);
109  el2Enabled = EL2Enabled(tc);
110 
111  getMMUPtr(tc)->flush(*this);
112  CheckerCPU *checker = tc->getCheckerCpuPtr();
113  if (checker) {
114  getMMUPtr(checker)->flush(*this);
115  }
116 }
117 
118 void
120 {
121  el2Enabled = EL2Enabled(tc);
122  getMMUPtr(tc)->iflush(*this);
123 }
124 
125 void
127 {
128  el2Enabled = EL2Enabled(tc);
129  getMMUPtr(tc)->dflush(*this);
130 }
131 
132 void
134 {
135  getMMUPtr(tc)->flush(*this);
136 
137  CheckerCPU *checker = tc->getCheckerCpuPtr();
138  if (checker) {
139  getMMUPtr(checker)->flush(*this);
140  }
141 }
142 
143 void
145 {
146  HCR hcr = tc->readMiscReg(MISCREG_HCR_EL2);
147  inHost = (hcr.tge == 1 && hcr.e2h == 1);
148  getMMUPtr(tc)->flush(*this);
149 
150  CheckerCPU *checker = tc->getCheckerCpuPtr();
151  if (checker) {
152  getMMUPtr(checker)->flush(*this);
153  }
154 }
155 
156 void
158 {
159  HCR hcr = tc->readMiscReg(MISCREG_HCR_EL2);
160  inHost = (hcr.tge == 1 && hcr.e2h == 1);
161  getMMUPtr(tc)->flush(*this);
162 
163  CheckerCPU *checker = tc->getCheckerCpuPtr();
164  if (checker) {
165  getMMUPtr(checker)->flush(*this);
166  }
167 }
168 
169 void
171 {
172  getMMUPtr(tc)->iflush(*this);
173 }
174 
175 void
177 {
178  getMMUPtr(tc)->dflush(*this);
179 }
180 
181 void
183 {
184  getMMUPtr(tc)->flush(*this);
185 
186  CheckerCPU *checker = tc->getCheckerCpuPtr();
187  if (checker) {
188  getMMUPtr(checker)->flush(*this);
189  }
190 }
191 
192 } // namespace ArmISA
ArmISA::TLBIALL::inHost
bool inHost
Definition: tlbi_op.hh:95
ArmISA::EL2Enabled
bool EL2Enabled(ThreadContext *tc)
Definition: utility.cc:314
ArmISA::DTLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:126
ArmISA::MMU::flush
void flush(const OP &tlbi_op)
Definition: mmu.hh:84
ArmISA::TLBIALLEL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:76
CheckerCPU
CheckerCPU class.
Definition: cpu.hh:85
ArmISA::getMMUPtr
MMU * getMMUPtr(T *tc)
Definition: mmu.hh:113
ArmISA::TLBIMVAA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:144
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::MMU::dflush
void dflush(const OP &tlbi_op)
Definition: mmu.hh:99
ArmISA::TLBIMVA::inHost
bool inHost
Definition: tlbi_op.hh:254
mmu.hh
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
ArmISA::TLBIASID::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:179
ArmISA::ITLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:119
ArmISA::TLBIMVAA::inHost
bool inHost
Definition: tlbi_op.hh:237
cpu.hh
tlbi_op.hh
ArmISA::ITLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:62
ArmISA::MISCREG_HCR_EL2
@ MISCREG_HCR_EL2
Definition: miscregs.hh:582
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
ThreadContext::readMiscReg
virtual RegVal readMiscReg(RegIndex misc_reg)=0
ThreadContext::getCheckerCpuPtr
virtual CheckerCPU * getCheckerCpuPtr()=0
ArmISA::DTLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:69
ArmISA::DTLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:176
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::TLBIASID::inHost
bool inHost
Definition: tlbi_op.hh:178
ArmISA::ITLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:170
ArmISA::TLBIVMALL::inHost
bool inHost
Definition: tlbi_op.hh:161
ArmISA::MMU::iflush
void iflush(const OP &tlbi_op)
Definition: mmu.hh:92
ArmISA::TLBIIPA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:182

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