Go to the documentation of this file.
40 #include "params/MemDelay.hh"
41 #include "params/SimpleMemDelay.hh"
48 requestPort(
name() +
"-mem_side_port", *this),
49 responsePort(
name() +
"-cpu_side_port", *this),
50 reqQueue(*this, requestPort),
51 respQueue(*this, responsePort),
52 snoopRespQueue(*this, requestPort)
60 fatal(
"Memory delay is not connected on both sides.\n");
67 if (if_name ==
"mem_side_port") {
69 }
else if (if_name ==
"cpu_side_port") {
85 _parent.reqQueue, _parent.snoopRespQueue),
98 const Tick when =
curTick() + parent.delayResp(pkt) + receive_delay;
100 parent.responsePort.schedTimingResp(pkt, when);
108 if (parent.trySatisfyFunctional(pkt)) {
111 parent.responsePort.sendFunctionalSnoop(pkt);
118 const Tick delay = parent.delaySnoopResp(pkt);
120 return delay + parent.responsePort.sendAtomicSnoop(pkt);
126 parent.responsePort.sendTimingSnoopReq(pkt);
140 const Tick delay = parent.delayReq(pkt) + parent.delayResp(pkt);
142 return delay + parent.requestPort.sendAtomic(pkt);
154 const Tick when =
curTick() + parent.delayReq(pkt) + receive_delay;
156 parent.requestPort.schedTimingReq(pkt, when);
164 if (parent.trySatisfyFunctional(pkt)) {
167 parent.requestPort.sendFunctional(pkt);
174 const Tick when =
curTick() + parent.delaySnoopResp(pkt);
176 parent.requestPort.schedTimingSnoopResp(pkt, when);
185 readReqDelay(
p.read_req),
186 readRespDelay(
p.read_resp),
187 writeReqDelay(
p.write_req),
188 writeRespDelay(
p.write_resp)
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.
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
The QueuedRequestPort combines two queues, a request queue and a snoop response queue,...
ResponsePort responsePort
ResponsePort(const std::string &_name, MemDelay &_parent)
RespPacketQueue respQueue
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
This abstract component provides a mechanism to delay packets.
Tick recvAtomicSnoop(PacketPtr pkt) override
Receive an atomic snoop request packet from our peer.
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
uint64_t Tick
Tick count type.
SimpleMemDelay(const SimpleMemDelayParams ¶ms)
bool isConnected() const
Is this port currently connected to a peer?
const std::string & name()
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
bool trySatisfyFunctional(PacketPtr pkt)
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
const Tick writeRespDelay
Tick delayResp(PacketPtr pkt) override
Delay a response by some number of ticks.
bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
Ports are used to interface objects to each other.
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
Tick delayReq(PacketPtr pkt) override
Delay a request by some number of ticks.
RequestPort(const std::string &_name, MemDelay &_parent)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
MemDelay(const MemDelayParams ¶ms)
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Generated on Wed Jul 28 2021 12:10:28 for gem5 by doxygen 1.8.17