Go to the documentation of this file.
44 #include "debug/Plic.hh"
47 #include "params/Plic.hh"
55 intrctrl(params.intrctrl),
57 registers(params.
name, pioAddr, this),
66 assert(src_id < nSrc && src_id >= 0);
69 int src_index = src_id >> 5;
70 int src_offset = src_id & 0x1F;
73 std::bitset<32> pending_bits(pending);
74 pending_bits[src_offset] = 1;
75 pending = (uint32_t) pending_bits.to_ulong();
84 "Int post request - source: %#x, current priority: %#x\n",
95 assert(src_id <
nSrc);
99 int src_index = src_id >> 5;
100 int src_offset = src_id & 0x1F;
102 std::bitset<32> pending_bits(pending);
103 pending_bits[src_offset] = 0;
104 pending = (uint32_t) pending_bits.to_ulong();
112 "Int clear request - source: %#x, current priority: %#x\n",
125 "Read request - addr: %#x, size: %#x, atomic:%d\n",
145 "Write request - addr: %#x, size: %#x\n",
187 "Device init - %d contexts, %d sources, %d pending registers\n",
196 using namespace std::placeholders;
200 reserved.emplace_back(
"reserved0", reserve0_size);
203 reserved.emplace_back(
"reserved1", reserve1_size);
206 reserved.emplace_back(
"reserved2", reserve2_size);
209 reserved.emplace_back(
"reserved3", reserve3_size);
296 int src_index = src_id >> 5;
297 int src_offset = src_id & 0x1F;
309 "Priority updated - src: %d, val: %d\n",
315 const int src32_id,
const int context_id)
319 for (
int i = 0;
i < 32;
i ++) {
320 int src_id = (src32_id << 5) +
i;
327 "Enable updated - context: %d, src32: %d, val: %#x\n",
328 context_id, src32_id,
reg.get());
333 const int context_id)
336 "Threshold updated - context: %d, val: %d\n",
337 context_id,
reg.get());
343 if (
lastID[context_id] == 0) {
346 int src_index = max_int_id >> 5;
347 int src_offset = max_int_id & 0x1F;
351 lastID[context_id] = max_int_id;
353 "Claim success - context: %d, interrupt ID: %d\n",
354 context_id, max_int_id);
356 reg.update(max_int_id);
360 "Claim already cleared - context: %d, interrupt ID: %d\n",
361 context_id, max_int_id);
365 warn(
"PLIC claim repeated (not completed) - context: %d, last: %d",
366 context_id,
lastID[context_id]);
367 return lastID[context_id];
383 "Complete - context: %d, interrupt ID: %d\n",
384 context_id,
reg.get());
396 uint32_t max_priority;
401 new_output.maxID[
i] = max_id;
402 new_output.maxPriority[
i] = max_priority;
415 DPRINTF(
Plic,
"Update scheduled - tick: %d\n", next_update);
443 int thread_id =
i >> 1;
444 int int_id = (
i & 1) ?
452 "Int posted - thread: %d, int id: %d, ",
460 "Int filtered - thread: %d, int id: %d, ",
482 for (
auto const ®_inner:
reg) {
525 for (
auto ®_inner:
reg) {
526 paramIn(
cp, reg_inner.name(), reg_inner);
535 for (
int i = 0;
i < n_outputs;
i++) {
void writeClaim(Register32 ®, const uint32_t &data, const int context_id)
uint32_t readClaim(Register32 ®, const int context_id)
bool scheduled() const
Determine if the current event is scheduled.
void clear(int cpu_id, int int_num, int index)
const Addr thresholdPadding
EventFunctionWrapper update
std::map< Tick, PlicOutput > outputQueue
void post(int cpu_id, int int_num, int index)
#define UNSERIALIZE_SCALAR(scalar)
Tick read(PacketPtr pkt) override
PioDevice funcitons.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
void init() override
SimObject functions.
#define UNSERIALIZE_CONTAINER(member)
std::vector< uint32_t > maxPriority
std::vector< uint32_t > pendingPriority
std::vector< Register32 > claim
void addRegister(RegisterBase ®)
const std::string to_string(sc_enc enc)
int nContext
Number of interrupt contexts = nThread * 2 e.g.
uint64_t Tick
Tick count type.
Plic(const Params ¶ms)
void writeThreshold(Register32 ®, const uint32_t &data, const int context_id)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
virtual void write(Addr addr, const void *buf, Addr bytes)
Plic::PlicRegisters registers
std::vector< std::vector< Register32 > > enable
std::vector< std::vector< uint32_t > > effPriority
void writePriority(Register32 ®, const uint32_t &data, const int src_id)
Register read / write callbacks.
virtual void read(Addr addr, void *buf, Addr bytes)
T divCeil(const T &a, const U &b)
void schedule(Event &event, Tick when)
decltype(std::begin(std::declval< const T & >()), std::end(std::declval< const T & >()), void()) arrayParamOut(CheckpointOut &os, const std::string &name, const T ¶m)
void post(int src_id)
Interrupt interface.
Tick cyclesToTicks(Cycles c) const
AtomicOpFunctor * getAtomicOp() const
Accessor function to atomic op.
void serialize(CheckpointOut &cp) const override
Serialize an object.
std::vector< uint32_t > lastID
Addr pioSize
Size that the device's address range.
std::vector< uint32_t > maxID
void writeEnable(Register32 ®, const uint32_t &data, const int src32_id, const int context_id)
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
const std::string & name()
std::vector< RegisterRaz > claim_holes
#define SERIALIZE_SCALAR(scalar)
void paramOut(CheckpointOut &cp, const std::string &name, ExtMachInst const &machInst)
std::vector< Register32 > priority
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
MemCmd cmd
The command field of the packet.
int nSrc32
Number of 32-bit pending registers needed = ceil(nSrc / 32)
const Addr thresholdStart
#define SERIALIZE_CONTAINER(member)
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
NOTE: This implementation of CLINT is based on the SiFive U54MC datasheet: https://sifive....
Cycles is a wrapper class for representing cycle counts, i.e.
Tick pioDelay
Delay that the device experinces on an access.
T * getPtr()
get a pointer to the data ptr.
std::ostream CheckpointOut
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
std::vector< RegisterRaz > reserved
void arrayParamIn(CheckpointIn &cp, const std::string &name, CircleBuf< T > ¶m)
Tick curTick()
The universal simulation clock.
std::vector< Register32 > threshold
void propagateOutput()
Trigger:
std::vector< RegisterRaz > enable_holes
void paramIn(CheckpointIn &cp, const std::string &name, ExtMachInst &machInst)
void updateOutput()
Trigger:
std::vector< Register32 > pending
Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17