gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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 {
92 };
93 
94 class Plic : public BasicPioDevice
95 {
96  // Params
97  protected:
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 &params);
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 
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 
203 
204  PlicRegisters(const std::string &name, Addr base, Plic* plic) :
206  plic(plic) {}
207 
209 
210  void init();
211 
212  } registers;
213 
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
239  // per-context, per-source pendingPriority * enable
241  // per-context last-claimed id
244 
256  void propagateOutput();
257  std::map<Tick, PlicOutput> outputQueue;
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