gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mem_ctrl.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "debug/QOS.hh"
39 #include "mem/abstract_mem.hh"
40 #include "mem/qos/q_policy.hh"
41 #include "mem/qos/policy.hh"
42 #include "params/QoSMemCtrl.hh"
43 #include "sim/system.hh"
44 
45 #include <unordered_map>
46 #include <vector>
47 #include <deque>
48 
49 #ifndef __MEM_QOS_MEM_CTRL_HH__
50 #define __MEM_QOS_MEM_CTRL_HH__
51 
52 namespace QoS {
53 
59 class MemCtrl: public AbstractMemory
60 {
61  public:
63  enum BusState { READ, WRITE };
64 
65  protected:
67  const std::unique_ptr<Policy> policy;
68 
70  const std::unique_ptr<TurnaroundPolicy> turnPolicy;
71 
73  const std::unique_ptr<QueuePolicy> queuePolicy;
74 
76  const uint8_t _numPriorities;
77 
80 
85  const bool qosSyncroScheduler;
86 
88  std::unordered_map<MasterID, const std::string> masters;
89 
91  std::unordered_map<MasterID, std::vector<uint64_t> > packetPriorities;
92 
94  std::unordered_map<MasterID,
95  std::unordered_map<uint64_t, std::deque<uint64_t>> > requestTimes;
96 
102 
105 
108 
111 
114 
120 
123 
124  struct MemCtrlStats : public Stats::Group
125  {
126  MemCtrlStats(MemCtrl &mc);
127 
128  void regStats() override;
129 
130  const MemCtrl &memCtrl;
131 
139 
152  } stats;
153 
160  void addMaster(const MasterID m_id);
161 
172  void logRequest(BusState dir, MasterID m_id, uint8_t qos,
173  Addr addr, uint64_t entries);
174 
186  void logResponse(BusState dir, MasterID m_id, uint8_t qos,
187  Addr addr, uint64_t entries, double delay);
188 
198  template<typename Queues>
199  uint8_t qosSchedule(std::initializer_list<Queues*> queues_ptr,
200  uint64_t queue_entry_size, const PacketPtr pkt);
201 
202  using SimObject::schedule;
203  uint8_t schedule(MasterID m_id, uint64_t data);
204  uint8_t schedule(const PacketPtr pkt);
205 
211 
216  void setCurrentBusState() { busState = busStateNext; }
217 
222  void recordTurnaroundStats();
223 
234  template<typename Queues>
235  void escalate(std::initializer_list<Queues*> queues,
236  uint64_t queue_entry_size,
237  MasterID m_id, uint8_t tgt_prio);
238 
254  template<typename Queues>
255  void escalateQueues(Queues& queues, uint64_t queue_entry_size,
256  MasterID m_id, uint8_t curr_prio, uint8_t tgt_prio);
257 
258  public:
264  MemCtrl(const QoSMemCtrlParams*);
265 
266  virtual ~MemCtrl();
267 
271  void init() override;
272 
278  BusState getBusState() const { return busState; }
279 
286 
297  bool hasMaster(MasterID m_id) const
298  {
299  return masters.find(m_id) != masters.end();
300  }
301 
308  uint64_t getReadQueueSize(const uint8_t prio) const
309  { return readQueueSizes[prio]; }
310 
317  uint64_t getWriteQueueSize(const uint8_t prio) const
318  { return writeQueueSizes[prio]; }
319 
325  uint64_t getTotalReadQueueSize() const { return totalReadQueueSize; }
326 
332  uint64_t getTotalWriteQueueSize() const { return totalWriteQueueSize; }
333 
340  Tick getServiceTick(const uint8_t prio) const { return serviceTick[prio]; }
341 
348  uint8_t numPriorities() const { return _numPriorities; }
349 };
350 
351 template<typename Queues>
352 void
353 MemCtrl::escalateQueues(Queues& queues, uint64_t queue_entry_size,
354  MasterID m_id, uint8_t curr_prio, uint8_t tgt_prio)
355 {
356  auto it = queues[curr_prio].begin();
357  while (it != queues[curr_prio].end()) {
358  // No packets left to move
359  if (packetPriorities[m_id][curr_prio] == 0)
360  break;
361 
362  auto pkt = *it;
363 
364  DPRINTF(QOS,
365  "QoSMemCtrl::escalate checking priority %d packet "
366  "m_id %d address %d\n", curr_prio,
367  pkt->masterId(), pkt->getAddr());
368 
369  // Found a packet to move
370  if (pkt->masterId() == m_id) {
371 
372  uint64_t moved_entries = divCeil(pkt->getSize(),
373  queue_entry_size);
374 
375  DPRINTF(QOS,
376  "QoSMemCtrl::escalate Master %s [id %d] moving "
377  "packet addr %d size %d (p size %d) from priority %d "
378  "to priority %d - "
379  "this master packets %d (entries to move %d)\n",
380  masters[m_id], m_id, pkt->getAddr(),
381  pkt->getSize(),
382  queue_entry_size, curr_prio, tgt_prio,
383  packetPriorities[m_id][curr_prio], moved_entries);
384 
385 
386  if (pkt->isRead()) {
387  panic_if(readQueueSizes[curr_prio] < moved_entries,
388  "QoSMemCtrl::escalate master %s negative READ "
389  "packets for priority %d",
390  masters[m_id], tgt_prio);
391  readQueueSizes[curr_prio] -= moved_entries;
392  readQueueSizes[tgt_prio] += moved_entries;
393  } else if (pkt->isWrite()) {
394  panic_if(writeQueueSizes[curr_prio] < moved_entries,
395  "QoSMemCtrl::escalate master %s negative WRITE "
396  "packets for priority %d",
397  masters[m_id], tgt_prio);
398  writeQueueSizes[curr_prio] -= moved_entries;
399  writeQueueSizes[tgt_prio] += moved_entries;
400  }
401 
402  // Change QoS priority and move packet
403  pkt->qosValue(tgt_prio);
404  queues[tgt_prio].push_back(pkt);
405 
406  // Erase element from source packet queue, this will
407  // increment the iterator
408  it = queues[curr_prio].erase(it);
409  panic_if(packetPriorities[m_id][curr_prio] < moved_entries,
410  "QoSMemCtrl::escalate master %s negative packets "
411  "for priority %d",
412  masters[m_id], tgt_prio);
413 
414  packetPriorities[m_id][curr_prio] -= moved_entries;
415  packetPriorities[m_id][tgt_prio] += moved_entries;
416  } else {
417  // Increment iterator to next location in the queue
418  it++;
419  }
420  }
421 }
422 
423 template<typename Queues>
424 void
425 MemCtrl::escalate(std::initializer_list<Queues*> queues,
426  uint64_t queue_entry_size,
427  MasterID m_id, uint8_t tgt_prio)
428 {
429  // If needed, initialize all counters and statistics
430  // for this master
431  addMaster(m_id);
432 
433  DPRINTF(QOS,
434  "QoSMemCtrl::escalate Master %s [id %d] to priority "
435  "%d (currently %d packets)\n",masters[m_id], m_id, tgt_prio,
436  packetPriorities[m_id][tgt_prio]);
437 
438  for (uint8_t curr_prio = 0; curr_prio < numPriorities(); ++curr_prio) {
439  // Skip target priority
440  if (curr_prio == tgt_prio)
441  continue;
442 
443  // Process other priority packet
444  while (packetPriorities[m_id][curr_prio] > 0) {
445  DPRINTF(QOS,
446  "QoSMemCtrl::escalate MID %d checking priority %d "
447  "(packets %d)- current packets in prio %d: %d\n"
448  "\t(source read %d source write %d target read %d, "
449  "target write %d)\n",
450  m_id, curr_prio, packetPriorities[m_id][curr_prio],
451  tgt_prio, packetPriorities[m_id][tgt_prio],
452  readQueueSizes[curr_prio],
453  writeQueueSizes[curr_prio], readQueueSizes[tgt_prio],
454  writeQueueSizes[tgt_prio]);
455 
456  // Check both read and write queue
457  for (auto q : queues) {
458  escalateQueues(*q, queue_entry_size, m_id,
459  curr_prio, tgt_prio);
460  }
461  }
462  }
463 
464  DPRINTF(QOS,
465  "QoSMemCtrl::escalate Completed master %s [id %d] to priority %d "
466  "(now %d packets)\n\t(total read %d, total write %d)\n",
467  masters[m_id], m_id, tgt_prio, packetPriorities[m_id][tgt_prio],
468  readQueueSizes[tgt_prio], writeQueueSizes[tgt_prio]);
469 }
470 
471 template<typename Queues>
472 uint8_t
473 MemCtrl::qosSchedule(std::initializer_list<Queues*> queues,
474  const uint64_t queue_entry_size,
475  const PacketPtr pkt)
476 {
477  // Schedule packet.
478  uint8_t pkt_priority = schedule(pkt);
479 
480  assert(pkt_priority < numPriorities());
481 
482  pkt->qosValue(pkt_priority);
483 
484  if (qosSyncroScheduler) {
485  // Call the scheduling function on all other masters.
486  for (const auto& m : masters) {
487 
488  if (m.first == pkt->masterId())
489  continue;
490 
491  uint8_t prio = schedule(m.first, 0);
492 
493  if (qosPriorityEscalation) {
494  DPRINTF(QOS,
495  "QoSMemCtrl::qosSchedule: (syncro) escalating "
496  "MASTER %s to assigned priority %d\n",
497  _system->getMasterName(m.first),
498  prio);
499  escalate(queues, queue_entry_size, m.first, prio);
500  }
501  }
502  }
503 
504  if (qosPriorityEscalation) {
505  DPRINTF(QOS,
506  "QoSMemCtrl::qosSchedule: escalating "
507  "MASTER %s to assigned priority %d\n",
508  _system->getMasterName(pkt->masterId()),
509  pkt_priority);
510  escalate(queues, queue_entry_size, pkt->masterId(), pkt_priority);
511  }
512 
513  // Update last service tick for selected priority
514  serviceTick[pkt_priority] = curTick();
515 
516  return pkt_priority;
517 }
518 
519 } // namespace QoS
520 
521 #endif /* __MEM_QOS_MEM_CTRL_HH__ */
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.
Definition: mem_ctrl.cc:143
#define DPRINTF(x,...)
Definition: trace.hh:225
BusState busStateNext
bus state for next request event triggered
Definition: mem_ctrl.hh:122
std::string getMasterName(MasterID master_id)
Get the name of an object for a given request id.
Definition: system.cc:541
Bitfield< 0 > m
const std::unique_ptr< QueuePolicy > queuePolicy
QoS Queue Policy: selects packet among same-priority queue.
Definition: mem_ctrl.hh:73
uint64_t totalReadQueueSize
Total read request packets queue length in #packets.
Definition: mem_ctrl.hh:110
Stats::Scalar numWriteReadTurnArounds
Count the number of turnarounds WRITE to READ.
Definition: mem_ctrl.hh:147
Stats::Vector priorityMinLatency
per-priority minimum latency
Definition: mem_ctrl.hh:141
void addMaster(const MasterID m_id)
Initializes dynamically counters and statistics for a given Master.
Definition: mem_ctrl.cc:269
ip6_addr_t addr
Definition: inet.hh:330
Stats::Scalar numStayReadState
Count the number of times bus staying in READ state.
Definition: mem_ctrl.hh:149
A vector of scalar stats.
Definition: statistics.hh:2547
void escalate(std::initializer_list< Queues *> queues, uint64_t queue_entry_size, MasterID m_id, uint8_t tgt_prio)
Escalates/demotes priority of all packets belonging to the passed master to given priority value...
Definition: mem_ctrl.hh:425
std::vector< Tick > serviceTick
Vector of QoS priorities/last service time.
Definition: mem_ctrl.hh:101
uint8_t numPriorities() const
Gets the total number of priority levels in the QoS memory controller.
Definition: mem_ctrl.hh:348
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.
Definition: mem_ctrl.hh:473
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
const std::unique_ptr< TurnaroundPolicy > turnPolicy
QoS Bus Turnaround Policy: selects the bus direction (READ/WRITE)
Definition: mem_ctrl.hh:70
std::unordered_map< MasterID, const std::string > masters
Hash of master ID - master name.
Definition: mem_ctrl.hh:88
MemCtrl(const QoSMemCtrlParams *)
QoS Memory base class.
Definition: mem_ctrl.cc:44
AbstractMemory declaration.
Tick curTick()
The current simulated tick.
Definition: core.hh:44
Stats::Scalar numStayWriteState
Count the number of times bus staying in WRITE state.
Definition: mem_ctrl.hh:151
Stats::VectorStandardDeviation avgPriorityDistance
per-master average QoS distance between assigned and queued values
Definition: mem_ctrl.hh:138
MemCtrlStats(MemCtrl &mc)
Definition: mem_ctrl.cc:282
uint64_t getWriteQueueSize(const uint8_t prio) const
Gets a WRITE queue size.
Definition: mem_ctrl.hh:317
std::vector< uint64_t > readQueueSizes
Read request packets queue length in #packets, per QoS priority.
Definition: mem_ctrl.hh:104
uint64_t Tick
Tick count type.
Definition: types.hh:61
uint8_t qosValue() const
QoS Value getter Returns 0 if QoS value was never set (constructor default).
Definition: packet.hh:695
Bitfield< 27 > q
void escalateQueues(Queues &queues, uint64_t queue_entry_size, MasterID m_id, uint8_t curr_prio, uint8_t tgt_prio)
Escalates/demotes priority of all packets belonging to the passed master to given priority value in a...
Definition: mem_ctrl.hh:353
BusState
Bus Direction.
Definition: mem_ctrl.hh:63
MasterID masterId() const
Definition: packet.hh:706
void schedule(Event &event, Tick when)
Definition: eventq.hh:934
BusState busState
Bus state used to control the read/write switching and drive the scheduling of the next request...
Definition: mem_ctrl.hh:119
void recordTurnaroundStats()
Record statistics on turnarounds based on busStateNext and busState values.
Definition: mem_ctrl.cc:353
uint64_t getTotalWriteQueueSize() const
Gets the total combined WRITE queues size.
Definition: mem_ctrl.hh:332
BusState getBusStateNext() const
Gets the next bus state.
Definition: mem_ctrl.hh:285
uint64_t totalWriteQueueSize
Total write request packets queue length in #packets.
Definition: mem_ctrl.hh:113
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
const bool qosSyncroScheduler
Enables QoS synchronized scheduling invokes the QoS scheduler on all masters, at every packet arrival...
Definition: mem_ctrl.hh:85
bool hasMaster(MasterID m_id) const
hasMaster returns true if the selected master(ID) has been registered in the memory controller...
Definition: mem_ctrl.hh:297
uint16_t MasterID
Definition: request.hh:84
void setCurrentBusState()
Set current bus direction (READ or WRITE) from next selected one.
Definition: mem_ctrl.hh:216
const uint8_t _numPriorities
Number of configured QoS priorities.
Definition: mem_ctrl.hh:76
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
Statistics container.
Definition: group.hh:83
void regStats() override
Callback to set stat parameters.
Definition: mem_ctrl.cc:308
Definition: mem_ctrl.cc:42
const MemCtrl & memCtrl
Definition: mem_ctrl.hh:130
uint64_t getReadQueueSize(const uint8_t prio) const
Gets a READ queue size.
Definition: mem_ctrl.hh:308
const std::unique_ptr< Policy > policy
QoS Policy, assigns QoS priority to the incoming packets.
Definition: mem_ctrl.hh:67
Stats::VectorStandardDeviation avgPriority
per-master average QoS priority
Definition: mem_ctrl.hh:133
uint64_t getTotalReadQueueSize() const
Gets the total combined READ queues size.
Definition: mem_ctrl.hh:325
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.
Definition: mem_ctrl.cc:86
System * _system
Pointer to the System object.
std::unordered_map< MasterID, std::unordered_map< uint64_t, std::deque< uint64_t > > > requestTimes
Hash of masters - address of request - queue of times of request.
Definition: mem_ctrl.hh:95
T divCeil(const T &a, const U &b)
Definition: intmath.hh:99
Stats::Scalar numReadWriteTurnArounds
Count the number of turnarounds READ to WRITE.
Definition: mem_ctrl.hh:145
Stats::Vector priorityMaxLatency
per-priority maximum latency
Definition: mem_ctrl.hh:143
BusState getBusState() const
Gets the current bus state.
Definition: mem_ctrl.hh:278
const bool qosPriorityEscalation
Enables QoS priority escalation.
Definition: mem_ctrl.hh:79
An abstract memory represents a contiguous block of physical memory, with an associated address range...
Tick getServiceTick(const uint8_t prio) const
Gets the last service tick related to a QoS Priority.
Definition: mem_ctrl.hh:340
void init() override
Initializes this object.
Definition: mem_ctrl.cc:80
virtual ~MemCtrl()
Definition: mem_ctrl.cc:76
std::unordered_map< MasterID, std::vector< uint64_t > > packetPriorities
Hash of masters - number of packets queued per priority.
Definition: mem_ctrl.hh:91
std::vector< uint64_t > writeQueueSizes
Write request packets queue length in #packets, per QoS priority.
Definition: mem_ctrl.hh:107
This is a vector of StandardDeviation stats.
Definition: statistics.hh:2730
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
std::vector< Info * > stats
Definition: group.hh:212
const char data[]
The QoS::MemCtrl is a base class for Memory objects which support QoS - it provides access to a set o...
Definition: mem_ctrl.hh:59
uint8_t schedule(MasterID m_id, uint64_t data)
Definition: mem_ctrl.cc:212
BusState selectNextBusState()
Returns next bus direction (READ or WRITE) based on configured policy.
Definition: mem_ctrl.cc:241

Generated on Thu May 28 2020 16:21:34 for gem5 by doxygen 1.8.13