gem5  v21.1.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mmu.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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/mmu.hh"
39 #include "arch/arm/table_walker.hh"
40 #include "arch/arm/tlbi_op.hh"
41 
42 namespace gem5
43 {
44 
45 using namespace ArmISA;
46 
47 MMU::MMU(const ArmMMUParams &p)
48  : BaseMMU(p),
49  itbStage2(p.stage2_itb), dtbStage2(p.stage2_dtb),
50  itbWalker(p.itb_walker), dtbWalker(p.dtb_walker),
51  itbStage2Walker(p.stage2_itb_walker),
52  dtbStage2Walker(p.stage2_dtb_walker)
53 {}
54 
55 void
57 {
58  itbWalker->setMmu(this);
59  dtbWalker->setMmu(this);
60  itbStage2Walker->setMmu(this);
61  dtbStage2Walker->setMmu(this);
62 
65 
70 }
71 
72 TLB *
73 MMU::getTlb(BaseMMU::Mode mode, bool stage2) const
74 {
75  if (mode == BaseMMU::Execute) {
76  if (stage2)
77  return itbStage2;
78  else
79  return getITBPtr();
80  } else {
81  if (stage2)
82  return dtbStage2;
83  else
84  return getDTBPtr();
85  }
86 }
87 
88 bool
90 {
91  return getDTBPtr()->translateFunctional(tc, vaddr, paddr);
92 }
93 
94 Fault
97 {
98  return translateFunctional(req, tc, mode, tran_type, false);
99 }
100 
101 Fault
104  bool stage2)
105 {
106  return getTlb(mode, stage2)->translateFunctional(
107  req, tc, mode, tran_type);
108 }
109 
110 Fault
112  BaseMMU::Mode mode, bool stage2)
113 {
114  return getTlb(mode, stage2)->translateAtomic(req, tc, mode);
115 }
116 
117 void
119  BaseMMU::Translation *translation, BaseMMU::Mode mode, bool stage2)
120 {
121  return getTlb(mode, stage2)->translateTiming(req, tc, translation, mode);
122 }
123 
124 void
126 {
127  if (type & TLBType::I_TLBS) {
129  }
130  if (type & TLBType::D_TLBS) {
132  }
133 }
134 
135 } // namespace gem5
gem5::ArmISA::MMU::itbWalker
TableWalker * itbWalker
Definition: mmu.hh:72
gem5::ArmISA::MMU::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode, bool stage2)
Definition: mmu.cc:111
gem5::BaseMMU::Mode
Mode
Definition: mmu.hh:53
gem5::ArmISA::MMU::dtbStage2Walker
TableWalker * dtbStage2Walker
Definition: mmu.hh:75
gem5::ArmISA::TLB
Definition: tlb.hh:109
gem5::ArmISA::MMU::getDTBPtr
ArmISA::TLB * getDTBPtr() const
Definition: mmu.hh:55
gem5::ArmISA::TLB::setStage2Tlb
void setStage2Tlb(TLB *stage2_tlb)
Definition: tlb.hh:236
gem5::ArmISA::TLB::invalidateMiscReg
void invalidateMiscReg()
Definition: tlb.hh:453
table_walker.hh
gem5::ArmISA::MMU::dtbWalker
TableWalker * dtbWalker
Definition: mmu.hh:73
gem5::ArmISA::MMU::TLBType
TLBType
Definition: mmu.hh:78
gem5::ArmISA::MMU::MMU
MMU(const ArmMMUParams &p)
Definition: mmu.cc:47
gem5::ArmISA::MMU::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: mmu.cc:56
gem5::BaseMMU::Execute
@ Execute
Definition: mmu.hh:53
gem5::BaseMMU
Definition: mmu.hh:50
gem5::ArmISA::MMU::itbStage2Walker
TableWalker * itbStage2Walker
Definition: mmu.hh:74
mmu.hh
gem5::ArmISA::MMU::itbStage2
TLB * itbStage2
Definition: mmu.hh:69
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:93
gem5::ArmISA::TLB::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode, ArmTranslationType tranType)
Definition: tlb.cc:1256
gem5::ArmISA::MMU::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, BaseMMU::Translation *translation, BaseMMU::Mode mode, bool stage2)
Definition: mmu.cc:118
gem5::ArmISA::TLB::translateFunctional
bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr)
Do a functional lookup on the TLB (for debugging) and don't modify any internal state.
Definition: tlb.cc:119
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:255
gem5::MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::X86ISA::type
type
Definition: misc.hh:733
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
gem5::ArmISA::TLB::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, BaseMMU::Translation *translation, BaseMMU::Mode mode, ArmTranslationType tranType)
Definition: tlb.cc:1298
tlbi_op.hh
gem5::ArmISA::MMU::translateFunctional
bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr)
Definition: mmu.cc:89
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::ArmISA::MMU::getITBPtr
ArmISA::TLB * getITBPtr() const
Definition: mmu.hh:61
gem5::BaseMMU::Translation
Definition: mmu.hh:55
gem5::ArmISA::MMU::getTlb
TLB * getTlb(BaseMMU::Mode mode, bool stage2) const
Definition: mmu.cc:73
gem5::ArmISA::TLB::setTableWalker
void setTableWalker(TableWalker *table_walker)
Definition: tlb.cc:112
gem5::ArmISA::TLB::ArmTranslationType
ArmTranslationType
Definition: tlb.hh:128
gem5::MipsISA::vaddr
vaddr
Definition: pra_constants.hh:278
gem5::ArmISA::MMU::dtbStage2
TLB * dtbStage2
Definition: mmu.hh:70
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::ArmISA::MMU::invalidateMiscReg
void invalidateMiscReg(TLBType type=ALL_TLBS)
Definition: mmu.cc:125
gem5::ArmISA::TableWalker::setMmu
void setMmu(MMU *_mmu)
Definition: table_walker.hh:1038
gem5::ArmISA::mode
Bitfield< 4, 0 > mode
Definition: misc_types.hh:73

Generated on Wed Jul 28 2021 12:10:21 for gem5 by doxygen 1.8.17