Go to the documentation of this file.
40 #include "DRAMSim2/Callback.h"
43 #include "debug/DRAMSim2.hh"
44 #include "debug/Drain.hh"
55 port(
name() +
".port", *this),
56 wrapper(
p.deviceConfigFile,
p.systemConfigFile,
p.filePath,
57 p.traceFile,
p.range.size() / 1024 / 1024,
p.enableDebug),
58 retryReq(false), retryResp(false), startTick(0),
59 nbrOutstandingReads(0), nbrOutstandingWrites(0),
61 tickEvent([
this]{ tick(); },
name())
64 "Instantiated DRAMSim2 with clock %d ns and queue size %d\n",
65 wrapper.clockPeriod(), wrapper.queueSize());
67 DRAMSim::TransactionCompleteCB* read_cb =
68 new DRAMSim::Callback<DRAMSim2, void, unsigned, uint64_t, uint64_t>(
70 DRAMSim::TransactionCompleteCB* write_cb =
71 new DRAMSim::Callback<DRAMSim2, void, unsigned, uint64_t, uint64_t>(
73 wrapper.setCallbacks(read_cb, write_cb);
86 fatal(
"DRAMSim2 %s is unconnected!\n",
name());
92 fatal(
"DRAMSim2 burst size %d does not match cache line size %d\n",
117 DPRINTF(
DRAMSim2,
"Have %d read, %d write, %d responses outstanding\n",
306 if (
p->second.empty())
332 if (
p->second.empty())
345 if (if_name !=
"port") {
369 ranges.push_back(
mem.getAddrRange());
376 return mem.recvAtomic(pkt);
382 mem.recvFunctional(pkt);
389 return mem.recvTimingReq(pkt);
Tick curTick()
The universal simulation clock.
#define fatal(...)
This implements a cprintf based fatal() function.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
void recvFunctional(PacketPtr pkt)
void recvFunctional(PacketPtr pkt)
Receive a functional request packet from the peer.
void startup() override
startup() is the final initialization call before simulation.
void sendRetryReq()
Send a retry to the request port that previously attempted a sendTimingReq to this response port and ...
unsigned int nbrOutstandingReads
Count the number of outstanding transactions so that we can block any further requests until there is...
bool retryResp
Are we waiting for a retry for sending a response.
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
std::deque< PacketPtr > responseQueue
Queue to hold response packets until we can send them back.
bool cacheResponding() const
bool canAccept() const
Determine if the controller can accept a new packet or not.
void enqueue(bool is_write, uint64_t addr)
Enqueue a packet.
DRAMSim2(const Params &p)
void schedule(Event &event, Tick when)
unsigned int nbrOutstanding() const
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
unsigned int nbrOutstandingWrites
void readComplete(unsigned id, uint64_t addr, uint64_t cycle)
Read completion callback.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
void tick()
Progress the controller one clock cycle.
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
bool retryReq
Is the connected port waiting for a retry from us.
DrainState
Object drain/handover states.
EventFunctionWrapper tickEvent
Event to schedule clock ticks.
EventFunctionWrapper sendResponseEvent
Event to schedule sending of responses.
void writeComplete(unsigned id, uint64_t addr, uint64_t cycle)
Write completion callback.
void functionalAccess(PacketPtr pkt)
Perform an untimed memory read or write without changing anything but the memory itself.
virtual std::string name() const
unsigned int queueSize() const
Get the transaction queue size used by DRAMSim2.
std::unordered_map< Addr, std::queue< PacketPtr > > outstandingReads
Keep track of what packets are outstanding per address, and do so separately for reads and writes.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
double clockPeriod() const
Get the internal clock period used by DRAMSim2, specified in ns.
Tick recvAtomic(PacketPtr pkt)
Receive an atomic request packet from the peer.
An abstract memory represents a contiguous block of physical memory, with an associated address range...
uint64_t Tick
Tick count type.
Tick recvAtomic(PacketPtr pkt)
bool sendTimingResp(PacketPtr pkt)
Attempt to send a timing response to the request port by calling its corresponding receive function.
bool isConnected() const
Is this port currently connected to a peer?
@ Drained
Buffers drained, ready for serialization/handover.
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
bool needsResponse() const
const std::string & name()
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
void sendRangeChange() const
Called by the owner to send a range change.
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
static constexpr T divCeil(const T &a, const U &b)
void signalDrainDone() const
Signal that an object is drained.
A ResponsePort is a specialization of a port.
DRAMSim2Wrapper wrapper
The actual DRAMSim2 wrapper.
Ports are used to interface objects to each other.
void tick()
Progress the memory controller one cycle.
System * system() const
read the system pointer Implemented for completeness with the setter
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
AddrRangeList getAddrRanges() const
Get a list of the non-overlapping address ranges the owner is responsible for.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
bool recvTimingReq(PacketPtr pkt)
std::unordered_map< Addr, std::queue< PacketPtr > > outstandingWrites
void registerExitCallback(const std::function< void()> &callback)
Register an exit callback.
void recvRespRetry()
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
bool recvTimingReq(PacketPtr pkt)
Receive a timing request from the peer.
void access(PacketPtr pkt)
Perform an untimed memory access and update all the state (e.g.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
MemoryPort(const std::string &_name, DRAMSim2 &_memory)
unsigned int burstSize() const
Get the burst size in bytes used by DRAMSim2.
Tick startTick
Keep track of when the wrapper is started.
@ Draining
Draining buffers pending serialization/handover.
void accessAndRespond(PacketPtr pkt)
When a packet is ready, use the "access()" method in AbstractMemory to actually create the response p...
bool scheduled() const
Determine if the current event is scheduled.
Generated on Wed Jul 13 2022 10:39:24 for gem5 by doxygen 1.8.17