40 #include "debug/Drain.hh" 41 #include "debug/QOS.hh" 48 :
MemCtrl(p), requestLatency(p->request_latency),
49 responseLatency(p->response_latency),
50 memoryPacketSize(p->memory_packet_size),
51 readBufferSize(p->read_buffer_size),
52 writeBufferSize(p->write_buffer_size), port(
name() +
".port", *this),
53 retryRdReq(false), retryWrReq(false), nextRequest(0), nextReqEvent(this)
92 "%s Should not see packets where cache is responding\n",
112 if (interface !=
"port") {
123 bool req_accepted =
true;
126 "%s. Should only see " 127 "read and writes at memory controller\n",
131 "%s. Should not see packets where cache is responding\n",
135 "%s: MASTER %s request %s addr %lld size %d\n",
142 assert(required_entries);
151 "%s Read queue full, not accepting\n", __func__);
155 req_accepted =
false;
159 readQueue.at(pkt_priority).push_back(pkt);
165 "%s Write queue full, not accepting\n", __func__);
169 req_accepted =
false;
173 writeQueue.at(pkt_priority).push_back(pkt);
181 pkt->
req->masterId(),
190 "%s scheduling next request at " 191 "time %d (next is %d)\n", __func__,
217 "%s DUMPING %s queues status\n", __func__,
222 std::string plist =
"";
227 "%s priority Queue [%i] contains %i elements, " 228 "packets are: [%s]\n", __func__, i,
237 for (
auto queue = (*queue_ptr).rbegin();
238 queue != (*queue_ptr).rend(); ++queue) {
243 "%s checking %s queue [%d] priority [%d packets]\n",
245 curr_prio, queue->size());
247 if (!queue->empty()) {
254 "%s scheduling packet address %d for master %s from " 255 "priority queue %d\n", __func__, pkt->
getAddr(),
271 "%s scheduled packet address %d for master %s size is %d, " 272 "corresponds to %d memory packets\n", __func__, pkt->
getAddr(),
274 pkt->
getSize(), removed_entries);
278 "%s response not required\n", __func__);
286 pkt->
req->masterId(),
294 "%s response scheduled at time %d\n",
313 "%s scheduling next request event at tick %d\n",
323 "%s queues have requests, waiting to drain\n",
337 using namespace Stats;
340 .
desc(
"Number of read retries");
342 .
desc(
"Number of write retries");
354 ranges.push_back(
memory.getAddrRange());
361 return memory.recvAtomic(pkt);
373 memory.recvFunctional(pkt);
382 return memory.recvTimingReq(pkt);
388 QoSMemSinkCtrlParams::create()
const uint64_t readBufferSize
Read request packets queue buffer size in #packets.
void logResponse(BusState dir, MasterID m_id, uint8_t qos, Addr addr, uint64_t entries, double delay)
Called upon receiving a response, updates statistics and updates queues status.
std::vector< PacketQueue > writeQueue
QoS-aware (per priority) incoming read requests packets queue.
void functionalAccess(PacketPtr pkt)
Perform an untimed memory read or write without changing anything but the memory itself.
Ports are used to interface objects to each other.
MemoryPort port
Memory slave port.
void recvFunctional(PacketPtr pkt)
Receive a Packet in Functional mode.
void sendRangeChange() const
Called by the owner to send a range change.
BusState busStateNext
bus state for next request event triggered
const std::string & name()
std::string getMasterName(MasterID master_id)
Get the name of an object for a given request id.
const std::unique_ptr< QueuePolicy > queuePolicy
QoS Queue Policy: selects packet among same-priority queue.
uint64_t totalReadQueueSize
Total read request packets queue length in #packets.
void init() override
Initializes this object.
void recvFunctional(PacketPtr pkt)
Receive a Packet in Functional mode.
void processNextReqEvent()
Processes the next Request event according to configured request latency.
EventWrapper< MemSinkCtrl, &MemSinkCtrl::processNextReqEvent > nextReqEvent
Event wrapper to schedule next request handler function.
const Tick requestLatency
Memory between requests latency (ticks)
AddrRangeList getAddrRanges() const
Gets the configured address ranges for this port.
bool cacheResponding() const
Port & getPort(const std::string &if_name, PortID=InvalidPortID) override
Getter method to access this memory's slave port.
std::vector< PacketQueue > readQueue
QoS-aware (per priority) incoming read requests packets queue.
bool retryRdReq
Read request pending.
bool isConnected() const
Is this port currently connected to a peer?
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
uint8_t numPriorities() const
Gets the total number of priority levels in the QoS memory controller.
MemoryPort(const std::string &, MemSinkCtrl &)
Constructor.
uint8_t qosSchedule(std::initializer_list< Queues *> queues_ptr, uint64_t queue_entry_size, const PacketPtr pkt)
Assign priority to a packet by executing the configured QoS policy.
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
DrainState
Object drain/handover states.
bool retryWrReq
Write request pending.
RespPacketQueue queue
Outgoing packet responses queue.
Stats::Scalar numReadRetries
Count the number of read retries.
RequestPtr req
A pointer to the original request.
Draining buffers pending serialization/handover.
Tick curTick()
The current simulated tick.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
bool needsResponse() const
Stats::Scalar numWriteRetries
Count the number of write retries.
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
std::vector< uint64_t > readQueueSizes
Read request packets queue length in #packets, per QoS priority.
uint64_t Tick
Tick count type.
uint8_t qosValue() const
QoS Value getter Returns 0 if QoS value was never set (constructor default).
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
const uint64_t memoryPacketSize
Memory packet size in bytes.
void access(PacketPtr pkt)
Perform an untimed memory access and update all the state (e.g.
const Tick responseLatency
Memory response latency (ticks)
BusState busState
Bus state used to control the read/write switching and drive the scheduling of the next request...
void recordTurnaroundStats()
Record statistics on turnarounds based on busStateNext and busState values.
Tick nextRequest
Next request service time.
MemSinkCtrl(const QoSMemSinkCtrlParams *)
QoS Memory Sink Constructor.
bool recvTimingReq(PacketPtr pkt)
Receive a Packet in Timing mode.
uint64_t totalWriteQueueSize
Total write request packets queue length in #packets.
void setCurrentBusState()
Set current bus direction (READ or WRITE) from next selected one.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
bool writeQueueFull(const uint64_t packets) const
Check if the write queue has room for more entries.
DrainState drain() override
Checks and return the Drain state of this SimObject.
bool recvTimingReq(PacketPtr pkt)
Receive a Packet in Timing mode.
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
virtual const std::string name() const
void sendRetryReq()
Send a retry to the master port that previously attempted a sendTimingReq to this slave port and fail...
void logRequest(BusState dir, MasterID m_id, uint8_t qos, Addr addr, uint64_t entries)
Called upon receiving a request or updates statistics and updates queues status.
Tick recvAtomic(PacketPtr pkt)
Receive a Packet in Atomic mode.
System * _system
Pointer to the System object.
T divCeil(const T &a, const U &b)
bool readQueueFull(const uint64_t packets) const
Check if the read queue has room for more entries.
void regStats() override
Registers statistics.
void init() override
Initializes this object.
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
virtual void regStats()
Callback to set stat parameters.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
std::vector< uint64_t > writeQueueSizes
Write request packets queue length in #packets, per QoS priority.
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Tick recvAtomic(PacketPtr pkt)
Receive a Packet in Atomic mode.
The QoS::MemCtrl is a base class for Memory objects which support QoS - it provides access to a set o...
uint8_t schedule(MasterID m_id, uint64_t data)
const std::string to_string(sc_enc enc)
const uint64_t writeBufferSize
Write request packets queue buffer size in #packets.
BusState selectNextBusState()
Returns next bus direction (READ or WRITE) based on configured policy.