gem5
v21.1.0.0
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
v
x
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
e
f
g
h
i
l
m
n
o
p
s
t
v
Variables
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
v
w
Typedefs
a
b
c
d
h
i
m
p
s
t
u
w
Enumerations
b
h
i
o
p
Enumerator
h
i
o
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
arch
arm
mmu.hh
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
#ifndef __ARCH_ARM_MMU_HH__
39
#define __ARCH_ARM_MMU_HH__
40
41
#include "
arch/arm/tlb.hh
"
42
#include "
arch/generic/mmu.hh
"
43
44
#include "params/ArmMMU.hh"
45
46
namespace
gem5
47
{
48
49
namespace
ArmISA {
50
51
class
MMU
:
public
BaseMMU
52
{
53
protected
:
54
ArmISA::TLB
*
55
getDTBPtr
()
const
56
{
57
return
static_cast<
ArmISA::TLB
*
>
(
dtb
);
58
}
59
60
ArmISA::TLB
*
61
getITBPtr
()
const
62
{
63
return
static_cast<
ArmISA::TLB
*
>
(
itb
);
64
}
65
66
TLB
*
getTlb
(
BaseMMU::Mode
mode
,
bool
stage2)
const
;
67
68
protected
:
69
TLB
*
itbStage2
;
70
TLB
*
dtbStage2
;
71
72
TableWalker
*
itbWalker
;
73
TableWalker
*
dtbWalker
;
74
TableWalker
*
itbStage2Walker
;
75
TableWalker
*
dtbStage2Walker
;
76
77
public
:
78
enum
TLBType
79
{
80
I_TLBS
= 0x01,
81
D_TLBS
= 0x10,
82
ALL_TLBS
= 0x11
83
};
84
85
MMU
(
const
ArmMMUParams &
p
);
86
87
void
init
()
override
;
88
89
bool
translateFunctional
(
ThreadContext
*tc,
Addr
vaddr
,
Addr
&paddr);
90
91
Fault
translateFunctional
(
const
RequestPtr
&req,
ThreadContext
*tc,
92
BaseMMU::Mode
mode
,
TLB::ArmTranslationType
tran_type);
93
94
Fault
translateFunctional
(
const
RequestPtr
&req,
ThreadContext
*tc,
95
BaseMMU::Mode
mode
,
TLB::ArmTranslationType
tran_type,
96
bool
stage2);
97
98
using
BaseMMU::translateAtomic
;
99
Fault
translateAtomic
(
const
RequestPtr
&req,
ThreadContext
*tc,
100
BaseMMU::Mode
mode
,
bool
stage2);
101
102
void
translateTiming
(
const
RequestPtr
&req,
ThreadContext
*tc,
103
BaseMMU::Translation
*translation,
BaseMMU::Mode
mode
,
bool
stage2);
104
105
void
invalidateMiscReg
(
TLBType
type
=
ALL_TLBS
);
106
107
template
<
typename
OP>
108
void
109
flush
(
const
OP &tlbi_op)
110
{
111
if
(tlbi_op.stage1Flush()) {
112
flushStage1
(tlbi_op);
113
}
114
115
if
(tlbi_op.stage2Flush()) {
116
flushStage2
(tlbi_op.makeStage2());
117
}
118
}
119
120
template
<
typename
OP>
121
void
122
flushStage1
(
const
OP &tlbi_op)
123
{
124
iflush
(tlbi_op);
125
dflush
(tlbi_op);
126
}
127
128
template
<
typename
OP>
129
void
130
flushStage2
(
const
OP &tlbi_op)
131
{
132
itbStage2
->
flush
(tlbi_op);
133
dtbStage2
->
flush
(tlbi_op);
134
}
135
136
template
<
typename
OP>
137
void
138
iflush
(
const
OP &tlbi_op)
139
{
140
getITBPtr
()->
flush
(tlbi_op);
141
}
142
143
template
<
typename
OP>
144
void
145
dflush
(
const
OP &tlbi_op)
146
{
147
getDTBPtr
()->
flush
(tlbi_op);
148
}
149
150
void
151
flushAll
()
override
152
{
153
BaseMMU::flushAll
();
154
itbStage2
->
flushAll
();
155
dtbStage2
->
flushAll
();
156
}
157
158
uint64_t
159
getAttr
()
const
160
{
161
return
getDTBPtr
()->
getAttr
();
162
}
163
};
164
165
template
<
typename
T>
166
MMU
*
167
getMMUPtr
(T *tc)
168
{
169
auto
mmu =
static_cast<
MMU
*
>
(tc->getMMUPtr());
170
assert(mmu);
171
return
mmu;
172
}
173
174
}
// namespace ArmISA
175
}
// namespace gem5
176
177
#endif // __ARCH_ARM_MMU_HH__
gem5::ArmISA::MMU::itbWalker
TableWalker * itbWalker
Definition:
mmu.hh:72
gem5::ArmISA::MMU::flush
void flush(const OP &tlbi_op)
Definition:
mmu.hh:109
gem5::ArmISA::MMU::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode, bool stage2)
Definition:
mmu.cc:111
gem5::ArmISA::MMU::getAttr
uint64_t getAttr() const
Definition:
mmu.hh:159
gem5::BaseMMU::dtb
BaseTLB * dtb
Definition:
mmu.hh:120
gem5::BaseMMU::Mode
Mode
Definition:
mmu.hh:53
gem5::ArmISA::MMU::dtbStage2Walker
TableWalker * dtbStage2Walker
Definition:
mmu.hh:75
gem5::ArmISA::MMU::D_TLBS
@ D_TLBS
Definition:
mmu.hh:81
gem5::ArmISA::TLB
Definition:
tlb.hh:109
tlb.hh
gem5::ArmISA::MMU::getDTBPtr
ArmISA::TLB * getDTBPtr() const
Definition:
mmu.hh:55
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::ArmISA::getMMUPtr
MMU * getMMUPtr(T *tc)
Definition:
mmu.hh:167
gem5::ArmISA::MMU::flushAll
void flushAll() override
Definition:
mmu.hh:151
gem5::BaseMMU
Definition:
mmu.hh:50
gem5::ArmISA::MMU::ALL_TLBS
@ ALL_TLBS
Definition:
mmu.hh:82
gem5::ArmISA::MMU::itbStage2Walker
TableWalker * itbStage2Walker
Definition:
mmu.hh:74
gem5::ArmISA::MMU::itbStage2
TLB * itbStage2
Definition:
mmu.hh:69
gem5::ArmISA::MMU::iflush
void iflush(const OP &tlbi_op)
Definition:
mmu.hh:138
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:93
gem5::ArmISA::MMU::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, BaseMMU::Translation *translation, BaseMMU::Mode mode, bool stage2)
Definition:
mmu.cc:118
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition:
types.hh:255
gem5::MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:326
gem5::ArmISA::TLB::flush
void flush(const TLBIALL &tlbi_op)
Reset the entire TLB.
Definition:
tlb.cc:292
gem5::X86ISA::type
type
Definition:
misc.hh:733
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition:
request.hh:92
gem5::ArmISA::MMU::flushStage2
void flushStage2(const OP &tlbi_op)
Definition:
mmu.hh:130
mmu.hh
gem5::ArmISA::MMU::dflush
void dflush(const OP &tlbi_op)
Definition:
mmu.hh:145
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::TLB::flushAll
void flushAll() override
Reset the entire TLB.
Definition:
tlb.cc:274
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::TableWalker
Definition:
table_walker.hh:66
gem5::ArmISA::TLB::getAttr
uint64_t getAttr() const
Definition:
tlb.hh:349
gem5::ArmISA::MMU::flushStage1
void flushStage1(const OP &tlbi_op)
Definition:
mmu.hh:122
gem5::BaseMMU::flushAll
virtual void flushAll()
Definition:
mmu.cc:51
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::BaseMMU::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode)
Definition:
mmu.cc:65
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
decoder.cc:40
gem5::ArmISA::MMU
Definition:
mmu.hh:51
gem5::ArmISA::MMU::I_TLBS
@ I_TLBS
Definition:
mmu.hh:80
gem5::ArmISA::MMU::invalidateMiscReg
void invalidateMiscReg(TLBType type=ALL_TLBS)
Definition:
mmu.cc:125
gem5::BaseMMU::itb
BaseTLB * itb
Definition:
mmu.hh:121
gem5::ArmISA::mode
Bitfield< 4, 0 > mode
Definition:
misc_types.hh:73
Generated on Wed Jul 28 2021 12:10:19 for gem5 by
doxygen
1.8.17