summaryrefslogtreecommitdiff
path: root/src/arch/arm/tlbi_op.cc
diff options
context:
space:
mode:
authorGiacomo Travaglini <giacomo.travaglini@arm.com>2018-02-22 14:14:48 +0000
committerGiacomo Travaglini <giacomo.travaglini@arm.com>2018-03-23 10:24:24 +0000
commit9c8af4292004d0f2337dcc7eb45a56993e3719c9 (patch)
tree96a34214f4cb5d60db050d7b1ef1998fa3a65084 /src/arch/arm/tlbi_op.cc
parent33bb1aa386fd6e6b4bc93797e129bc5c4baa6a36 (diff)
downloadgem5-9c8af4292004d0f2337dcc7eb45a56993e3719c9.tar.xz
arch-arm: Distinguish IS TLBI from non-IS
TLBI broadcasting was the default implementation of most of TLBI instructions. This patch applies the broadcasting behaviour only to the Inner-Shareable subset, while simpler TLB invalidation instructions only affect the PE that executes them. Change-Id: Idb01d0d4f593131f657e8fc9668112de8e4ccdcb Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-on: https://gem5-review.googlesource.com/9182 Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/arch/arm/tlbi_op.cc')
-rw-r--r--src/arch/arm/tlbi_op.cc173
1 files changed, 173 insertions, 0 deletions
diff --git a/src/arch/arm/tlbi_op.cc b/src/arch/arm/tlbi_op.cc
new file mode 100644
index 000000000..64c6ce0fd
--- /dev/null
+++ b/src/arch/arm/tlbi_op.cc
@@ -0,0 +1,173 @@
+/*
+ * Copyright (c) 2018 ARM Limited
+ * All rights reserved
+ *
+ * The license below extends only to copyright in the software and shall
+ * not be construed as granting a license to any other intellectual
+ * property including but not limited to intellectual property relating
+ * to a hardware implementation of the functionality of the software
+ * licensed hereunder. You may use the software subject to the license
+ * terms below provided that you ensure that this notice is replicated
+ * unmodified and in its entirety in all distributions of the software,
+ * modified or unmodified, in source code or in binary form.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Giacomo Travaglini
+ */
+
+#include "arch/arm/tlbi_op.hh"
+
+#include "arch/arm/tlb.hh"
+#include "cpu/checker/cpu.hh"
+
+namespace ArmISA {
+
+void
+TLBIALL::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushAllSecurity(secureLookup, targetEL);
+ getDTBPtr(tc)->flushAllSecurity(secureLookup, targetEL);
+
+ // If CheckerCPU is connected, need to notify it of a flush
+ CheckerCPU *checker = tc->getCheckerCpuPtr();
+ if (checker) {
+ getITBPtr(checker)->flushAllSecurity(secureLookup,
+ targetEL);
+ getDTBPtr(checker)->flushAllSecurity(secureLookup,
+ targetEL);
+ }
+}
+
+void
+ITLBIALL::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushAllSecurity(secureLookup, targetEL);
+}
+
+void
+DTLBIALL::operator()(ThreadContext* tc)
+{
+ getDTBPtr(tc)->flushAllSecurity(secureLookup, targetEL);
+}
+
+void
+TLBIASID::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushAsid(asid, secureLookup, targetEL);
+ getDTBPtr(tc)->flushAsid(asid, secureLookup, targetEL);
+ CheckerCPU *checker = tc->getCheckerCpuPtr();
+ if (checker) {
+ getITBPtr(checker)->flushAsid(asid, secureLookup, targetEL);
+ getDTBPtr(checker)->flushAsid(asid, secureLookup, targetEL);
+ }
+}
+
+void
+ITLBIASID::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushAsid(asid, secureLookup, targetEL);
+}
+
+void
+DTLBIASID::operator()(ThreadContext* tc)
+{
+ getDTBPtr(tc)->flushAsid(asid, secureLookup, targetEL);
+}
+
+void
+TLBIALLN::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushAllNs(hyp, targetEL);
+ getDTBPtr(tc)->flushAllNs(hyp, targetEL);
+
+ CheckerCPU *checker = tc->getCheckerCpuPtr();
+ if (checker) {
+ getITBPtr(checker)->flushAllNs(hyp, targetEL);
+ getDTBPtr(checker)->flushAllNs(hyp, targetEL);
+ }
+}
+
+void
+TLBIMVAA::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushMva(addr, secureLookup, hyp, targetEL);
+ getDTBPtr(tc)->flushMva(addr, secureLookup, hyp, targetEL);
+
+ CheckerCPU *checker = tc->getCheckerCpuPtr();
+ if (checker) {
+ getITBPtr(checker)->flushMva(addr, secureLookup, hyp, targetEL);
+ getDTBPtr(checker)->flushMva(addr, secureLookup, hyp, targetEL);
+ }
+}
+
+void
+TLBIMVA::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushMvaAsid(addr, asid,
+ secureLookup, targetEL);
+ getDTBPtr(tc)->flushMvaAsid(addr, asid,
+ secureLookup, targetEL);
+
+ CheckerCPU *checker = tc->getCheckerCpuPtr();
+ if (checker) {
+ getITBPtr(checker)->flushMvaAsid(
+ addr, asid, secureLookup, targetEL);
+ getDTBPtr(checker)->flushMvaAsid(
+ addr, asid, secureLookup, targetEL);
+ }
+}
+
+void
+ITLBIMVA::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushMvaAsid(
+ addr, asid, secureLookup, targetEL);
+}
+
+void
+DTLBIMVA::operator()(ThreadContext* tc)
+{
+ getDTBPtr(tc)->flushMvaAsid(
+ addr, asid, secureLookup, targetEL);
+}
+
+void
+TLBIIPA::operator()(ThreadContext* tc)
+{
+ getITBPtr(tc)->flushIpaVmid(addr,
+ secureLookup, false, targetEL);
+ getDTBPtr(tc)->flushIpaVmid(addr,
+ secureLookup, false, targetEL);
+
+ CheckerCPU *checker = tc->getCheckerCpuPtr();
+ if (checker) {
+ getITBPtr(checker)->flushIpaVmid(addr,
+ secureLookup, false, targetEL);
+ getDTBPtr(checker)->flushIpaVmid(addr,
+ secureLookup, false, targetEL);
+ }
+}
+
+} // namespace ArmISA