40#include <unordered_map>
45#include "debug/QOS.hh"
46#include "enums/QoSQPolicy.hh"
61 switch (
p.qos_q_policy) {
62 case enums::QoSQPolicy::fifo:
64 case enums::QoSQPolicy::lrg:
66 case enums::QoSQPolicy::lifo:
72QueuePolicy::PacketQueue::iterator
75 QueuePolicy::PacketQueue::iterator ret =
q->end();
78 std::unordered_map<RequestorID, QueuePolicy::PacketQueue::iterator> track;
81 for (
auto pkt_it =
q->begin(); pkt_it !=
q->end(); ++pkt_it) {
83 const auto& pkt = *pkt_it;
86 "QoSQPolicy::lrg detected packet without request");
90 DPRINTF(QOS,
"QoSQPolicy::lrg checking packet "
91 "from queue with id %d\n", requestor_id);
95 "%s: Unrecognized Requestor\n", __func__);
98 "%s: toServe list is empty\n", __func__);
100 if (
toServe.front() == requestor_id) {
101 DPRINTF(QOS,
"QoSQPolicy::lrg matched to served "
102 "requestor id %d\n", requestor_id);
105 toServe.push_back(requestor_id);
116 if (track.find(requestor_id) == track.end()) {
117 track[requestor_id] = pkt_it;
118 DPRINTF(QOS,
"QoSQPolicy::lrg tracking a packet for "
119 "requestor id %d\n", requestor_id);
125 for (
const auto& requestorId :
toServe) {
126 DPRINTF(QOS,
"QoSQPolicy::lrg evaluating alternative "
127 "requestor id %d\n", requestorId);
129 if (track.find(requestorId) != track.end()) {
130 ret = track[requestorId];
131 DPRINTF(QOS,
"QoSQPolicy::lrg requestor id "
132 "%d selected for service\n", requestorId);
138 DPRINTF(QOS,
"QoSQPolicy::lrg no packet was serviced\n");
150 toServe.push_back(requestor_id);
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
RequestorID requestorId() const
First In First Out Queue Policy.
Last In First Out Queue Policy.
Least Recently Granted Queue Policy It selects packets from the queue with a round robin-like policy:...
void enqueuePacket(PacketPtr pkt) override
This method is called by the memory controller after it enqueues a packet.
PacketQueue::iterator selectPacket(PacketQueue *queue) override
Implements LRG packet select policy.
std::list< RequestorID > toServe
Support structure for lrg algorithms: keeps track of serviced requestors, always serve the front elem...
bool hasRequestor(RequestorID id) const
hasRequestor returns true if the selected requestor(ID) has been registered in the memory controller,...
static QueuePolicy * create(const QoSMemCtrlParams &p)
This factory method is used for generating the queue policy.
MemCtrl * memCtrl
Pointer to parent memory controller implementing the policy.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Declaration of a request, the overall memory request consisting of the parts of the request that are ...