gem5
v21.0.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
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
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
o
p
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
dev
riscv
plic.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2021 Huawei International
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 __DEV_RISCV_PLIC_HH__
39
#define __DEV_RISCV_PLIC_HH__
40
41
#include <bitset>
42
#include <map>
43
44
#include "
arch/riscv/interrupts.hh
"
45
#include "
cpu/intr_control.hh
"
46
#include "
dev/io_device.hh
"
47
#include "
dev/reg_bank.hh
"
48
#include "
mem/packet.hh
"
49
#include "
mem/packet_access.hh
"
50
#include "params/Plic.hh"
51
#include "
sim/system.hh
"
52
53
using namespace
RiscvISA
;
89
struct
PlicOutput
{
90
std::vector<uint32_t>
maxID
;
91
std::vector<uint32_t>
maxPriority
;
92
};
93
94
class
Plic
:
public
BasicPioDevice
95
{
96
// Params
97
protected
:
98
System
*
system
;
99
IntrControl
*
intrctrl
;
100
101
// Number of interrupt sources
102
int
nSrc
;
107
int
nSrc32
;
115
int
nContext
;
116
117
public
:
118
typedef
PlicParams
Params
;
119
Plic
(
const
Params
¶ms);
120
121
// External API
122
public
:
126
void
post(
int
src_id);
127
void
clear(
int
src_id);
128
132
void
init
()
override
;
133
void
serialize
(
CheckpointOut
&
cp
)
const override
;
134
void
unserialize
(
CheckpointIn
&
cp
)
override
;
135
136
protected
:
140
Tick
read(
PacketPtr
pkt)
override
;
141
Tick
write(
PacketPtr
pkt)
override
;
142
143
// Register bank
144
private
:
145
185
class
PlicRegisters
:
public
RegisterBankLE
{
186
public
:
187
const
Addr
pendingStart = 0x1000;
188
const
Addr
enableStart = 0x2000;
189
const
Addr
thresholdStart = 0x0200000;
190
const
Addr
enablePadding = 0x80;
191
const
Addr
thresholdPadding = 0x1000;
192
const
Addr
maxBankSize = 0x4000000;
193
194
195
std::vector<Register32>
priority
;
196
std::vector<Register32>
pending
;
197
std::vector<std::vector<Register32>
>
enable
;
198
std::vector<Register32>
threshold
;
199
std::vector<Register32>
claim
;
200
std::vector<RegisterRaz>
enable_holes
;
201
std::vector<RegisterRaz>
claim_holes
;
202
std::vector<RegisterRaz>
reserved
;
203
204
PlicRegisters
(
const
std::string &
name
,
Addr
base
,
Plic
* plic) :
205
RegisterBankLE
(
name
,
base
),
206
plic(plic) {}
207
208
Plic
*
plic
;
209
210
void
init
();
211
212
} registers;
213
214
using
Register32
=
PlicRegisters::Register32
;
215
219
void
writePriority(
Register32
&
reg
,
const
uint32_t&
data
,
220
const
int
src_id);
221
222
void
writeEnable(
Register32
&
reg
,
const
uint32_t&
data
,
223
const
int
src32_id,
const
int
context_id);
224
225
void
writeThreshold(
Register32
&
reg
,
const
uint32_t&
data
,
226
const
int
context_id);
227
228
uint32_t readClaim(
Register32
&
reg
,
const
int
context_id);
229
230
void
writeClaim(
Register32
&
reg
,
const
uint32_t&
data
,
231
const
int
context_id);
232
233
// Latency Model
234
private
:
235
236
// Internal states
237
// per-source pending * priority
238
std::vector<uint32_t>
pendingPriority
;
239
// per-context, per-source pendingPriority * enable
240
std::vector<std::vector<uint32_t>
>
effPriority
;
241
// per-context last-claimed id
242
std::vector<uint32_t>
lastID
;
243
PlicOutput
output
;
244
256
void
propagateOutput();
257
std::map<Tick, PlicOutput>
outputQueue
;
258
EventFunctionWrapper
update
;
259
268
void
updateOutput();
269
279
void
updateInt();
280
};
281
282
283
#endif // __DEV_RISCV_PLIC_HH__
Stats::init
const FlagsType init
This Stat is Initialized.
Definition:
info.hh:46
RegisterBank::Register
Definition:
reg_bank.hh:485
io_device.hh
system.hh
Plic::update
EventFunctionWrapper update
Definition:
plic.hh:258
Plic::PlicRegisters::PlicRegisters
PlicRegisters(const std::string &name, Addr base, Plic *plic)
Definition:
plic.hh:204
data
const char data[]
Definition:
circlebuf.test.cc:47
Plic::outputQueue
std::map< Tick, PlicOutput > outputQueue
Definition:
plic.hh:257
PlicOutput::maxPriority
std::vector< uint32_t > maxPriority
Definition:
plic.hh:91
Plic::Params
PlicParams Params
Definition:
plic.hh:118
Plic::pendingPriority
std::vector< uint32_t > pendingPriority
Definition:
plic.hh:238
Plic::PlicRegisters::claim
std::vector< Register32 > claim
Definition:
plic.hh:199
Plic::nContext
int nContext
Number of interrupt contexts = nThread * 2 e.g.
Definition:
plic.hh:115
Tick
uint64_t Tick
Tick count type.
Definition:
types.hh:59
serialize
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
Definition:
thread_context.cc:142
interrupts.hh
X86ISA::base
Bitfield< 51, 12 > base
Definition:
pagetable.hh:138
std::vector< uint32_t >
X86ISA::reg
Bitfield< 5, 3 > reg
Definition:
types.hh:88
Plic::PlicRegisters::enable
std::vector< std::vector< Register32 > > enable
Definition:
plic.hh:197
unserialize
void unserialize(ThreadContext &tc, CheckpointIn &cp)
Definition:
thread_context.cc:182
RiscvISA
Definition:
fs_workload.cc:36
Plic::effPriority
std::vector< std::vector< uint32_t > > effPriority
Definition:
plic.hh:240
packet.hh
EventFunctionWrapper
Definition:
eventq.hh:1112
Plic::PlicRegisters
MMIO Registers.
Definition:
plic.hh:185
cp
Definition:
cprintf.cc:37
System
Definition:
system.hh:73
Plic::PlicRegisters::plic
Plic * plic
Definition:
plic.hh:208
Plic::system
System * system
Definition:
plic.hh:98
Plic::output
PlicOutput output
Definition:
plic.hh:243
Plic::lastID
std::vector< uint32_t > lastID
Definition:
plic.hh:242
RegisterBank< ByteOrder::little >
PlicOutput::maxID
std::vector< uint32_t > maxID
Definition:
plic.hh:90
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:148
name
const std::string & name()
Definition:
trace.cc:48
Plic::PlicRegisters::claim_holes
std::vector< RegisterRaz > claim_holes
Definition:
plic.hh:201
packet_access.hh
Plic::PlicRegisters::priority
std::vector< Register32 > priority
Definition:
plic.hh:195
Plic::nSrc
int nSrc
Definition:
plic.hh:102
Plic::nSrc32
int nSrc32
Number of 32-bit pending registers needed = ceil(nSrc / 32)
Definition:
plic.hh:107
intr_control.hh
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition:
packet.hh:258
BasicPioDevice
Definition:
io_device.hh:144
Plic
Definition:
plic.hh:94
PlicOutput
NOTE: This implementation of CLINT is based on the SiFive U54MC datasheet: https://sifive....
Definition:
plic.hh:89
CheckpointOut
std::ostream CheckpointOut
Definition:
serialize.hh:64
Plic::PlicRegisters::reserved
std::vector< RegisterRaz > reserved
Definition:
plic.hh:202
Plic::PlicRegisters::threshold
std::vector< Register32 > threshold
Definition:
plic.hh:198
Plic::PlicRegisters::enable_holes
std::vector< RegisterRaz > enable_holes
Definition:
plic.hh:200
IntrControl
Definition:
intr_control.hh:39
CheckpointIn
Definition:
serialize.hh:68
PioDevice::Params
PioDeviceParams Params
Definition:
io_device.hh:131
reg_bank.hh
Plic::PlicRegisters::pending
std::vector< Register32 > pending
Definition:
plic.hh:196
Plic::intrctrl
IntrControl * intrctrl
Definition:
plic.hh:99
Generated on Tue Mar 23 2021 19:41:26 for gem5 by
doxygen
1.8.17