gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
dram_ctrl.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2020 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  * Copyright (c) 2013 Amin Farmahini-Farahani
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
46 #ifndef __MEM_DRAM_CTRL_HH__
47 #define __MEM_DRAM_CTRL_HH__
48 
49 #include <deque>
50 #include <string>
51 #include <unordered_set>
52 #include <vector>
53 
54 #include "base/callback.hh"
55 #include "base/statistics.hh"
56 #include "enums/AddrMap.hh"
57 #include "enums/MemSched.hh"
58 #include "enums/PageManage.hh"
59 #include "mem/drampower.hh"
60 #include "mem/qos/mem_ctrl.hh"
61 #include "mem/qport.hh"
62 #include "params/DRAMCtrl.hh"
63 #include "sim/eventq.hh"
64 
90 class DRAMCtrl : public QoS::MemCtrl
91 {
92 
93  private:
94 
95  // For now, make use of a queued slave port to avoid dealing with
96  // flow control for the responses being sent back
97  class MemoryPort : public QueuedSlavePort
98  {
99 
102 
103  public:
104 
105  MemoryPort(const std::string& name, DRAMCtrl& _memory);
106 
107  protected:
108 
110 
111  void recvFunctional(PacketPtr pkt);
112 
113  bool recvTimingReq(PacketPtr);
114 
115  virtual AddrRangeList getAddrRanges() const;
116 
117  };
118 
124 
129 
135 
136 
137 
142  struct Command {
143  Data::MemCommand::cmds type;
144  uint8_t bank;
146 
147  constexpr Command(Data::MemCommand::cmds _type, uint8_t _bank,
148  Tick time_stamp)
149  : type(_type), bank(_bank), timeStamp(time_stamp)
150  { }
151  };
152 
162  class Bank
163  {
164 
165  public:
166 
167  static const uint32_t NO_ROW = -1;
168 
169  uint32_t openRow;
170  uint8_t bank;
171  uint8_t bankgr;
172 
177 
178  uint32_t rowAccesses;
179  uint32_t bytesAccessed;
180 
181  Bank() :
182  openRow(NO_ROW), bank(0), bankgr(0),
183  rdAllowedAt(0), wrAllowedAt(0), preAllowedAt(0), actAllowedAt(0),
184  rowAccesses(0), bytesAccessed(0)
185  { }
186  };
187 
188 
216  enum PowerState {
217  PWR_IDLE = 0,
223  };
224 
256  REF_IDLE = 0,
263  };
264 
265  class Rank;
266  struct RankStats : public Stats::Group
267  {
268  RankStats(DRAMCtrl& memory, Rank &rank);
269 
270  void regStats() override;
271  void resetStats() override;
272  void preDumpStats() override;
273 
275 
276  /*
277  * Command energies
278  */
284 
285  /*
286  * Active Background Energy
287  */
289 
290  /*
291  * Precharge Background Energy
292  */
294 
295  /*
296  * Active Power-Down Energy
297  */
299 
300  /*
301  * Precharge Power-Down Energy
302  */
304 
305  /*
306  * self Refresh Energy
307  */
309 
312 
318 
323  };
324 
332  class Rank : public EventManager
333  {
334 
335  private:
336 
341 
347 
352 
357 
362 
366  void updatePowerStats();
367 
375  void schedulePowerEvent(PowerState pwr_state, Tick tick);
376 
377  public:
378 
383 
388 
393 
397  uint8_t rank;
398 
402  uint32_t readEntries;
403 
407  uint32_t writeEntries;
408 
415 
420 
425 
433 
439 
444  unsigned int numBanksActive;
445 
448 
453 
454  Rank(DRAMCtrl& _memory, const DRAMCtrlParams* _p, int rank);
455 
456  const std::string name() const
457  {
458  return csprintf("%s_%d", memory.name(), rank);
459  }
460 
467  void startup(Tick ref_tick);
468 
472  void suspend();
473 
480  bool inRefIdleState() const { return refreshState == REF_IDLE; }
481 
489  bool inPwrIdleState() const { return pwrState == PWR_IDLE; }
490 
501  bool forceSelfRefreshExit() const {
502  return (readEntries != 0) ||
503  ((memory.busStateNext == WRITE) && (writeEntries != 0));
504  }
505 
512  bool isQueueEmpty() const;
513 
518  void checkDrainDone();
519 
526  void flushCmdList();
527 
528  /*
529  * Function to register Stats
530  */
531  void regStats();
532 
536  void computeStats();
537 
541  void resetStats();
542 
549  void powerDownSleep(PowerState pwr_state, Tick tick);
550 
558  void scheduleWakeUpEvent(Tick exit_delay);
559 
560  void processWriteDoneEvent();
562 
563  void processActivateEvent();
565 
566  void processPrechargeEvent();
568 
569  void processRefreshEvent();
571 
572  void processPowerEvent();
574 
575  void processWakeUpEvent();
577 
578  protected:
580  };
581 
588  class BurstHelper {
589 
590  public:
591 
593  const unsigned int burstCount;
594 
596  unsigned int burstsServiced;
597 
598  BurstHelper(unsigned int _burstCount)
599  : burstCount(_burstCount), burstsServiced(0)
600  { }
601  };
602 
607  class DRAMPacket {
608 
609  public:
610 
613 
616 
618  const PacketPtr pkt;
619 
622 
623  const bool read;
624 
626  const uint8_t rank;
627  const uint8_t bank;
628  const uint32_t row;
629 
635  const uint16_t bankId;
636 
644 
649  unsigned int size;
650 
658 
662  uint8_t _qosValue;
663 
668  inline void qosValue(const uint8_t qv) { _qosValue = qv; }
669 
674  inline uint8_t qosValue() const { return _qosValue; }
675 
680  inline MasterID masterId() const { return _masterId; }
681 
686  inline unsigned int getSize() const { return size; }
687 
692  inline Addr getAddr() const { return addr; }
693 
698  inline bool isRead() const { return read; }
699 
704  inline bool isWrite() const { return !read; }
705 
706 
707  DRAMPacket(PacketPtr _pkt, bool is_read, uint8_t _rank, uint8_t _bank,
708  uint32_t _row, uint16_t bank_id, Addr _addr,
709  unsigned int _size, Bank& bank_ref, Rank& rank_ref)
710  : entryTime(curTick()), readyTime(curTick()), pkt(_pkt),
711  _masterId(pkt->masterId()),
712  read(is_read), rank(_rank), bank(_bank), row(_row),
713  bankId(bank_id), addr(_addr), size(_size), burstHelper(NULL),
714  bankRef(bank_ref), rankRef(rank_ref), _qosValue(_pkt->qosValue())
715  { }
716 
717  };
718 
719  // The DRAM packets are store in a multiple dequeue structure,
720  // based on their QoS priority
722 
729  void processNextReqEvent();
731 
732  void processRespondEvent();
734 
741  bool readQueueFull(unsigned int pktCount) const;
742 
749  bool writeQueueFull(unsigned int pktCount) const;
750 
765  void addToReadQueue(PacketPtr pkt, unsigned int pktCount);
766 
778  void addToWriteQueue(PacketPtr pkt, unsigned int pktCount);
779 
790  void doDRAMAccess(DRAMPacket* dram_pkt);
791 
801  void accessAndRespond(PacketPtr pkt, Tick static_latency);
802 
815  DRAMPacket* decodeAddr(const PacketPtr pkt, Addr dramPktAddr,
816  unsigned int size, bool isRead) const;
817 
828  {
829  return range.getOffset(addr);
830  }
831 
843  DRAMPacketQueue::iterator chooseNext(DRAMPacketQueue& queue,
844  Tick extra_col_delay);
845 
854  DRAMPacketQueue::iterator chooseNextFRFCFS(DRAMPacketQueue& queue,
855  Tick extra_col_delay);
856 
868  minBankPrep(const DRAMPacketQueue& queue, Tick min_col_at) const;
869 
873  void pruneBurstTick();
874 
881  Tick getBurstWindow(Tick cmd_tick);
882 
894  Tick verifySingleCmd(Tick cmd_tick);
895 
908  Tick verifyMultiCmd(Tick cmd_tick, Tick max_multi_cmd_split = 0);
909 
921  void activateBank(Rank& rank_ref, Bank& bank_ref, Tick act_tick,
922  uint32_t row);
923 
935  void prechargeBank(Rank& rank_ref, Bank& bank_ref,
936  Tick pre_tick, bool auto_or_preall = false,
937  bool trace = true);
938 
942  void printQs() const;
943 
951  Addr burstAlign(Addr addr) const { return (addr & ~(Addr(burstSize - 1))); }
952 
958 
966  std::unordered_set<Addr> isInWriteQueue;
967 
977 
983  std::unordered_multiset<Tick> burstTicks;
984 
989 
996  const uint32_t deviceSize;
997  const uint32_t deviceBusWidth;
998  const uint32_t burstLength;
999  const uint32_t deviceRowBufferSize;
1000  const uint32_t devicesPerRank;
1001  const uint32_t burstSize;
1002  const uint32_t rowBufferSize;
1003  const uint32_t columnsPerRowBuffer;
1004  const uint32_t columnsPerStripe;
1005  const uint32_t ranksPerChannel;
1006  const uint32_t bankGroupsPerRank;
1007  const bool bankGroupArch;
1008  const uint32_t banksPerRank;
1009  uint32_t rowsPerBank;
1010  const uint32_t readBufferSize;
1011  const uint32_t writeBufferSize;
1012  const uint32_t writeHighThreshold;
1013  const uint32_t writeLowThreshold;
1014  const uint32_t minWritesPerSwitch;
1015  uint32_t writesThisTime;
1016  uint32_t readsThisTime;
1017 
1023  const Tick tRTW;
1024  const Tick tCS;
1025  const Tick tBURST;
1028  const Tick tCCD_L;
1029  const Tick tRCD;
1030  const Tick tCL;
1031  const Tick tRP;
1032  const Tick tRAS;
1033  const Tick tWR;
1034  const Tick tRTP;
1035  const Tick tRFC;
1036  const Tick tREFI;
1037  const Tick tRRD;
1038  const Tick tRRD_L;
1039  const Tick tPPD;
1040  const Tick tAAD;
1041  const Tick tXAW;
1042  const Tick tXP;
1043  const Tick tXS;
1045  unsigned int maxCommandsPerBurst;
1046  const bool dataClockSync;
1047  const uint8_t twoCycleActivate;
1048  const uint32_t activationLimit;
1054  const bool burstInterleave;
1056 
1061  Enums::MemSched memSchedPolicy;
1062  Enums::AddrMap addrMapping;
1063  Enums::PageManage pageMgmt;
1064 
1069  const uint32_t maxAccessesPerRow;
1070 
1077 
1084 
1089 
1091 
1099 
1101  struct DRAMStats : public Stats::Group {
1102  DRAMStats(DRAMCtrl &dram);
1103 
1104  void regStats() override;
1105  void resetStats() override;
1106 
1108 
1118 
1119  // Average queue lengths
1122 
1123  // Latencies summed over all requests
1127 
1128  // Average latencies per request
1132 
1135 
1136  // Row hit count and rate
1141 
1149 
1155 
1156  // Average bandwidth
1162 
1166 
1169 
1170  // per-master bytes read and written to memory
1173 
1174  // per-master bytes read and written to memory rate
1177 
1178  // per-master read and write serviced memory accesses
1181 
1182  // per-master read and write total memory access latency
1185 
1186  // per-master raed and write average memory access latency
1189 
1190  // DRAM Power Calculation
1192  };
1193 
1195 
1196  // Holds the value of the rank of burst issued
1197  uint8_t activeRank;
1198 
1199  // timestamp offset
1201 
1204 
1207 
1212  std::unique_ptr<Packet> pendingDelete;
1213 
1223  void updatePowerStats(Rank& rank_ref);
1224 
1232  static bool sortTime(const Command& cmd, const Command& cmd_next) {
1233  return cmd.timeStamp < cmd_next.timeStamp;
1234  };
1235 
1236  public:
1237  DRAMCtrl(const DRAMCtrlParams* p);
1238 
1239  DrainState drain() override;
1240 
1241  Port &getPort(const std::string &if_name,
1242  PortID idx=InvalidPortID) override;
1243 
1244  virtual void init() override;
1245  virtual void startup() override;
1246  virtual void drainResume() override;
1247 
1257  bool allRanksDrained() const;
1258 
1259  protected:
1260 
1261  Tick recvAtomic(PacketPtr pkt);
1262  void recvFunctional(PacketPtr pkt);
1263  bool recvTimingReq(PacketPtr pkt);
1264 
1265 };
1266 
1267 #endif //__MEM_DRAM_CTRL_HH__
Stats::Scalar numRdRetry
Definition: dram_ctrl.hh:1133
void pruneBurstTick()
Remove commands that have already issued from burstTicks.
Definition: dram_ctrl.cc:934
bool retryWrReq
Definition: dram_ctrl.hh:134
Enums::PageManage pageMgmt
Definition: dram_ctrl.hh:1063
Stats::Scalar preEnergy
Definition: dram_ctrl.hh:280
bool enableDRAMPowerdown
Enable or disable DRAM powerdown states.
Definition: dram_ctrl.hh:1206
Stats::Formula avgBusLat
Definition: dram_ctrl.hh:1130
const uint32_t writeLowThreshold
Definition: dram_ctrl.hh:1013
const uint32_t activationLimit
Definition: dram_ctrl.hh:1048
Ports are used to interface objects to each other.
Definition: port.hh:56
uint32_t bytesAccessed
Definition: dram_ctrl.hh:179
Stats::Scalar mergedWrBursts
Definition: dram_ctrl.hh:1114
const Tick entryTime
When did request enter the controller.
Definition: dram_ctrl.hh:612
Stats::Scalar readBursts
Definition: dram_ctrl.hh:1111
const bool dataClockSync
Definition: dram_ctrl.hh:1046
Stats::Scalar totalEnergy
Definition: dram_ctrl.hh:310
Stats::Scalar bytesReadDRAM
Definition: dram_ctrl.hh:1150
virtual void resetStats()
Callback to reset stats.
Definition: group.cc:82
RankStats stats
Definition: dram_ctrl.hh:579
#define M5_CLASS_VAR_USED
Definition: compiler.hh:64
bool retryRdReq
Remember if we have to retry a request when available.
Definition: dram_ctrl.hh:133
BusState busStateNext
bus state for next request event triggered
Definition: mem_ctrl.hh:122
Stats::Scalar bytesWrittenSys
Definition: dram_ctrl.hh:1154
unsigned int maxCommandsPerBurst
Definition: dram_ctrl.hh:1045
Stats::Formula busUtil
Definition: dram_ctrl.hh:1163
const Tick tRCD
Definition: dram_ctrl.hh:1029
virtual AddrRangeList getAddrRanges() const
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition: dram_ctrl.cc:2968
const Tick tWR
Definition: dram_ctrl.hh:1033
const Tick rdToWrDlySameBG
Definition: dram_ctrl.hh:1053
const PortID InvalidPortID
Definition: types.hh:236
std::vector< Command > cmdList
List of commands issued, to be sent to DRAMPpower at refresh and stats dump.
Definition: dram_ctrl.hh:432
std::vector< Rank * > ranks
Vector of ranks.
Definition: dram_ctrl.hh:988
STL pair class.
Definition: stl.hh:58
A stat that calculates the per tick average of a value.
Definition: statistics.hh:2521
void doDRAMAccess(DRAMPacket *dram_pkt)
Actually do the DRAM access - figure out the latency it will take to service the req based on bank st...
Definition: dram_ctrl.cc:1212
EventFunctionWrapper nextReqEvent
Definition: dram_ctrl.hh:730
Stats::Formula avgWrBW
Definition: dram_ctrl.hh:1158
const MasterID _masterId
MasterID associated with the packet.
Definition: dram_ctrl.hh:621
const bool burstInterleave
Definition: dram_ctrl.hh:1054
Addr getAddr() const
Get the packet address (interface compatibility with Packet)
Definition: dram_ctrl.hh:692
const Tick tRAS
Definition: dram_ctrl.hh:1032
Stats::Formula busUtilRead
Definition: dram_ctrl.hh:1164
std::pair< std::vector< uint32_t >, bool > minBankPrep(const DRAMPacketQueue &queue, Tick min_col_at) const
Find which are the earliest banks ready to issue an activate for the enqueued requests.
Definition: dram_ctrl.cc:1779
A DRAM packet stores packets along with the timestamp of when the packet entered the queue...
Definition: dram_ctrl.hh:607
uint32_t writeEntries
Track number of packets in write queue going to this rank.
Definition: dram_ctrl.hh:407
const Tick tRRD
Definition: dram_ctrl.hh:1037
uint32_t openRow
Definition: dram_ctrl.hh:169
bool forceSelfRefreshExit() const
Trigger a self-refresh exit if there are entries enqueued Exit if there are any read entries regardle...
Definition: dram_ctrl.hh:501
Stats::Vector perBankRdBursts
Definition: dram_ctrl.hh:1116
Tick verifySingleCmd(Tick cmd_tick)
Check for command bus contention for single cycle command.
Definition: dram_ctrl.cc:955
DRAMPacketQueue::iterator chooseNextFRFCFS(DRAMPacketQueue &queue, Tick extra_col_delay)
For FR-FCFS policy reorder the read/write queue depending on row buffer hits and earliest bursts avai...
Definition: dram_ctrl.cc:787
uint32_t readEntries
Track number of packets in read queue going to this rank.
Definition: dram_ctrl.hh:402
Tick lastStatsResetTick
The time when stats were last reset used to calculate average power.
Definition: dram_ctrl.hh:1203
MemoryPort(const std::string &name, DRAMCtrl &_memory)
Definition: dram_ctrl.cc:2962
const Tick frontendLatency
Pipeline latency of the controller frontend.
Definition: dram_ctrl.hh:1076
Stats::Vector masterReadTotalLat
Definition: dram_ctrl.hh:1183
ip6_addr_t addr
Definition: inet.hh:330
const Tick tXP
Definition: dram_ctrl.hh:1042
Stats::Formula pageHitRate
Definition: dram_ctrl.hh:1191
Stats::Scalar selfRefreshEnergy
Definition: dram_ctrl.hh:308
bool inPwrIdleState() const
Check if the current rank has all banks closed and is not in a low power state.
Definition: dram_ctrl.hh:489
Stats::Histogram wrPerTurnAround
Definition: dram_ctrl.hh:1148
Stats::Formula avgWrBWSys
Definition: dram_ctrl.hh:1160
DRAMCtrl(const DRAMCtrlParams *p)
Definition: dram_ctrl.cc:55
DrainState drain() override
Notify an object that it needs to drain its state.
Definition: dram_ctrl.cc:2895
uint32_t rowAccesses
Definition: dram_ctrl.hh:178
MasterID masterId() const
Get the packet MasterID (interface compatibility with Packet)
Definition: dram_ctrl.hh:680
std::deque< DRAMPacket * > respQueue
Response queue where read packets wait after we&#39;re done working with them, but it&#39;s not time to send ...
Definition: dram_ctrl.hh:976
const Tick tCL
Definition: dram_ctrl.hh:1030
unsigned int burstsServiced
Number of DRAM bursts serviced so far for a system packet.
Definition: dram_ctrl.hh:596
Stats::Vector memoryStateTime
Track time spent in each power state.
Definition: dram_ctrl.hh:322
Stats::Formula avgQLat
Definition: dram_ctrl.hh:1129
RefreshState refreshState
current refresh state
Definition: dram_ctrl.hh:387
Addr addr
The starting address of the DRAM packet.
Definition: dram_ctrl.hh:643
A vector of scalar stats.
Definition: statistics.hh:2547
bool writeQueueFull(unsigned int pktCount) const
Check if the write queue has room for more entries.
Definition: dram_ctrl.cc:296
uint8_t bank
Definition: dram_ctrl.hh:170
Tick refreshDueAt
Keep track of when a refresh is due.
Definition: dram_ctrl.hh:361
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:58
const Tick rankToRankDly
Definition: dram_ctrl.hh:1049
The DRAM controller is a single-channel memory controller capturing the most important timing constra...
Definition: dram_ctrl.hh:90
Stats::Scalar totGap
Definition: dram_ctrl.hh:1167
Stats::Vector writePktSize
Definition: dram_ctrl.hh:1143
uint8_t rank
Current Rank index.
Definition: dram_ctrl.hh:397
std::deque< DRAMPacket * > DRAMPacketQueue
Definition: dram_ctrl.hh:721
Helper class for objects that have power states.
Definition: power_state.hh:61
const uint32_t burstLength
Definition: dram_ctrl.hh:998
const uint32_t ranksPerChannel
Definition: dram_ctrl.hh:1005
bool readQueueFull(unsigned int pktCount) const
Check if the read queue has room for more entries.
Definition: dram_ctrl.cc:285
Stats::Formula avgRdBW
Definition: dram_ctrl.hh:1157
Declaration of Statistics objects.
DRAMStats stats
Definition: dram_ctrl.hh:1194
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
const uint32_t deviceRowBufferSize
Definition: dram_ctrl.hh:999
DrainState
Object drain/handover states.
Definition: drain.hh:71
A burst helper helps organize and manage a packet that is larger than the DRAM burst size...
Definition: dram_ctrl.hh:588
STL vector class.
Definition: stl.hh:37
const uint16_t bankId
Bank id is calculated considering banks in all the ranks eg: 2 ranks each with 8 banks, then bankId = 0 –> rank0, bank0 and bankId = 8 –> rank1, bank0.
Definition: dram_ctrl.hh:635
virtual void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: dram_ctrl.cc:193
uint8_t outstandingEvents
Number of ACT, RD, and WR events currently scheduled Incremented when a refresh event is started as w...
Definition: dram_ctrl.hh:414
EventFunctionWrapper activateEvent
Definition: dram_ctrl.hh:564
Stats::Scalar writeEnergy
Definition: dram_ctrl.hh:282
unsigned int numBanksActive
To track number of banks which are currently active for this rank.
Definition: dram_ctrl.hh:444
Stats::Vector perBankWrBursts
Definition: dram_ctrl.hh:1117
Stats::Formula peakBW
Definition: dram_ctrl.hh:1161
void recvFunctional(PacketPtr pkt)
Receive a functional request packet from the peer.
Definition: dram_ctrl.cc:2976
bool isTimingMode
Remember if the memory system is in timing mode.
Definition: dram_ctrl.hh:128
Stats::Scalar numWrRetry
Definition: dram_ctrl.hh:1134
A basic class to track the bank state, i.e.
Definition: dram_ctrl.hh:162
Addr getCtrlAddr(Addr addr)
Get an address in a dense range which starts from 0.
Definition: dram_ctrl.hh:827
Declaration of the queued port.
const Tick tCCD_L_WR
Definition: dram_ctrl.hh:1027
virtual void preDumpStats()
Callback before stats are dumped.
Definition: group.cc:95
const uint32_t maxAccessesPerRow
Max column accesses (read and write) per row, before forcefully closing it.
Definition: dram_ctrl.hh:1069
const uint32_t bankGroupsPerRank
Definition: dram_ctrl.hh:1006
const Tick tREFI
Definition: dram_ctrl.hh:1036
Tick lastBurstTick
Track when we issued the last read/write burst.
Definition: dram_ctrl.hh:452
Tick curTick()
The current simulated tick.
Definition: core.hh:44
Tick recvAtomic(PacketPtr pkt)
Receive an atomic request packet from the peer.
Definition: dram_ctrl.cc:2991
Stats::Vector masterReadBytes
Definition: dram_ctrl.hh:1171
Enums::MemSched memSchedPolicy
Memory controller configuration initialized based on parameter values.
Definition: dram_ctrl.hh:1061
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
const Tick backendLatency
Pipeline latency of the backend and PHY.
Definition: dram_ctrl.hh:1083
EventFunctionWrapper prechargeEvent
Definition: dram_ctrl.hh:567
Stats::Vector wrQLenPdf
Definition: dram_ctrl.hh:1145
Stats::Scalar servicedByWrQ
Definition: dram_ctrl.hh:1113
void updatePowerStats(Rank &rank_ref)
This function increments the energy when called.
BurstHelper * burstHelper
A pointer to the BurstHelper if this DRAMPacket is a split packet If not a split packet (common case)...
Definition: dram_ctrl.hh:655
void prechargeBank(Rank &rank_ref, Bank &bank_ref, Tick pre_tick, bool auto_or_preall=false, bool trace=true)
Precharge a given bank and also update when the precharge is done.
Definition: dram_ctrl.cc:1149
const Tick tRP
Definition: dram_ctrl.hh:1031
std::vector< Bank > banks
Vector of Banks.
Definition: dram_ctrl.hh:438
uint64_t Tick
Tick count type.
Definition: types.hh:61
void qosValue(const uint8_t qv)
Set the packet QoS value (interface compatibility with Packet)
Definition: dram_ctrl.hh:668
Stats::Formula avgGap
Definition: dram_ctrl.hh:1168
PowerState pwrState
Current power state.
Definition: dram_ctrl.hh:382
EventFunctionWrapper respondEvent
Definition: dram_ctrl.hh:733
BurstHelper(unsigned int _burstCount)
Definition: dram_ctrl.hh:598
const Tick tRFC
Definition: dram_ctrl.hh:1035
std::deque< Tick > actTicks
List to keep track of activate ticks.
Definition: dram_ctrl.hh:447
Stats::Vector masterWriteAccesses
Definition: dram_ctrl.hh:1180
uint64_t timeStampOffset
Definition: dram_ctrl.hh:1200
Stats::Formula readRowHitRate
Definition: dram_ctrl.hh:1139
const uint8_t twoCycleActivate
Definition: dram_ctrl.hh:1047
std::vector< DRAMPacketQueue > readQueue
The controller&#39;s main read and write queues, with support for QoS reordering.
Definition: dram_ctrl.hh:956
Stats::Vector rdQLenPdf
Definition: dram_ctrl.hh:1144
A simple histogram stat.
Definition: statistics.hh:2626
const Tick tPPD
Definition: dram_ctrl.hh:1039
uint32_t writesThisTime
Definition: dram_ctrl.hh:1015
Stats::Scalar totQLat
Definition: dram_ctrl.hh:1124
const Tick tRTP
Definition: dram_ctrl.hh:1034
Stats::Scalar writeReqs
Definition: dram_ctrl.hh:1110
Stats::Scalar readReqs
Definition: dram_ctrl.hh:1109
Stats::Scalar readEnergy
Definition: dram_ctrl.hh:281
All statistics that the model needs to capture.
Definition: dram_ctrl.hh:1101
const Tick rdToWrDly
Definition: dram_ctrl.hh:1051
DRAMPower declaration.
Stats::Formula masterReadAvgLat
Definition: dram_ctrl.hh:1187
Tick pwrStateTick
Track when we transitioned to the current power state.
Definition: dram_ctrl.hh:356
const Tick clkResyncDelay
Definition: dram_ctrl.hh:1044
Stats::Vector masterReadAccesses
Definition: dram_ctrl.hh:1179
static bool sortTime(const Command &cmd, const Command &cmd_next)
Function for sorting Command structures based on timeStamp.
Definition: dram_ctrl.hh:1232
Stats::Scalar prePowerDownEnergy
Definition: dram_ctrl.hh:303
const Tick wrToRdDlySameBG
Definition: dram_ctrl.hh:1052
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Stats::Scalar bytesReadWrQ
Definition: dram_ctrl.hh:1151
EventFunctionWrapper writeDoneEvent
Definition: dram_ctrl.hh:561
Stats::Formula avgMemAccLat
Definition: dram_ctrl.hh:1131
uint16_t MasterID
Definition: request.hh:84
uint8_t bankgr
Definition: dram_ctrl.hh:171
DRAMCtrl & memory
A reference to the parent DRAMCtrl instance.
Definition: dram_ctrl.hh:340
const uint8_t rank
Will be populated by address decoder.
Definition: dram_ctrl.hh:626
void activateBank(Rank &rank_ref, Bank &bank_ref, Tick act_tick, uint32_t row)
Keep track of when row activations happen, in order to enforce the maximum number of activations in t...
Definition: dram_ctrl.cc:1040
PowerState pwrStatePostRefresh
Previous low-power state, which will be re-entered after refresh.
Definition: dram_ctrl.hh:351
const Tick tAAD
Definition: dram_ctrl.hh:1040
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
RespPacketQueue queue
Definition: dram_ctrl.hh:100
const Tick tCS
Definition: dram_ctrl.hh:1024
const Tick M5_CLASS_VAR_USED tCK
Basic memory timing parameters initialized based on parameter values.
Definition: dram_ctrl.hh:1022
bool isRead() const
Return true if its a read packet (interface compatibility with Packet)
Definition: dram_ctrl.hh:698
Statistics container.
Definition: group.hh:83
Tick prevArrival
Definition: dram_ctrl.hh:1090
Stats::Scalar averagePower
Definition: dram_ctrl.hh:311
const Tick tXAW
Definition: dram_ctrl.hh:1041
const uint32_t row
Definition: dram_ctrl.hh:628
const unsigned int burstCount
Number of DRAM bursts requred for a system packet.
Definition: dram_ctrl.hh:593
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
Definition: dram_ctrl.hh:1212
void addToWriteQueue(PacketPtr pkt, unsigned int pktCount)
Decode the incoming pkt, create a dram_pkt and push to the back of the write queue.
Definition: dram_ctrl.cc:489
const uint32_t rowBufferSize
Definition: dram_ctrl.hh:1002
bool inRefIdleState() const
Check if there is no refresh and no preparation of refresh ongoing i.e.
Definition: dram_ctrl.hh:480
const uint32_t devicesPerRank
Definition: dram_ctrl.hh:1000
const Tick tBURST_MIN
Definition: dram_ctrl.hh:1026
uint32_t rowsPerBank
Definition: dram_ctrl.hh:1009
PowerState pwrStateTrans
Since we are taking decisions out of order, we need to keep track of what power transition is happeni...
Definition: dram_ctrl.hh:346
uint8_t _qosValue
QoS value of the encapsulated packet read at queuing time.
Definition: dram_ctrl.hh:662
const uint32_t minWritesPerSwitch
Definition: dram_ctrl.hh:1014
Stats::Formula masterWriteRate
Definition: dram_ctrl.hh:1176
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
void accessAndRespond(PacketPtr pkt, Tick static_latency)
When a packet reaches its "readyTime" in the response Q, use the "access()" method in AbstractMemory ...
Definition: dram_ctrl.cc:897
const uint32_t deviceBusWidth
Definition: dram_ctrl.hh:997
const Tick tXS
Definition: dram_ctrl.hh:1043
Stats::Scalar bytesReadSys
Definition: dram_ctrl.hh:1153
Stats::Formula avgRdBWSys
Definition: dram_ctrl.hh:1159
EventFunctionWrapper powerEvent
Definition: dram_ctrl.hh:573
AddrRange range
const uint32_t writeHighThreshold
Definition: dram_ctrl.hh:1012
std::unordered_multiset< Tick > burstTicks
Holds count of commands issued in burst window starting at defined Tick.
Definition: dram_ctrl.hh:983
virtual const std::string name() const
Definition: sim_object.hh:129
Enums::AddrMap addrMapping
Definition: dram_ctrl.hh:1062
Tick nextReqTime
The soonest you have to start thinking about the next request is the longest access time that can occ...
Definition: dram_ctrl.hh:1098
Stats::Scalar neitherReadNorWriteReqs
Definition: dram_ctrl.hh:1115
bool allRanksDrained() const
Return true once refresh is complete for all ranks and there are no additional commands enqueued...
Definition: dram_ctrl.cc:2929
Stats::Scalar preBackEnergy
Definition: dram_ctrl.hh:293
RefreshState
The refresh state is used to control the progress of the refresh scheduling.
Definition: dram_ctrl.hh:255
DRAMPacket(PacketPtr _pkt, bool is_read, uint8_t _rank, uint8_t _bank, uint32_t _row, uint16_t bank_id, Addr _addr, unsigned int _size, Bank &bank_ref, Rank &rank_ref)
Definition: dram_ctrl.hh:707
const Tick tRTW
Definition: dram_ctrl.hh:1023
Tick getBurstWindow(Tick cmd_tick)
Calculate burst window aligned tick.
Definition: dram_ctrl.cc:947
Stats::Scalar totBusLat
Definition: dram_ctrl.hh:1125
Stats::Average avgRdQLen
Definition: dram_ctrl.hh:1120
EventFunctionWrapper wakeUpEvent
Definition: dram_ctrl.hh:576
const std::string name() const
Definition: dram_ctrl.hh:456
DRAMPacket * decodeAddr(const PacketPtr pkt, Addr dramPktAddr, unsigned int size, bool isRead) const
Address decoder to figure out physical mapping onto ranks, banks, and rows.
Definition: dram_ctrl.cc:306
DRAMPower power
One DRAMPower instance per rank.
Definition: dram_ctrl.hh:424
Stats::Scalar writeRowHits
Definition: dram_ctrl.hh:1138
unsigned int getSize() const
Get the packet size (interface compatibility with Packet)
Definition: dram_ctrl.hh:686
Stats::Scalar totalIdleTime
Stat to track total DRAM idle time.
Definition: dram_ctrl.hh:317
const Tick tCCD_L
Definition: dram_ctrl.hh:1028
uint64_t size() const
Get the memory size.
Tick wakeUpAllowedAt
delay power-down and self-refresh exit until this requirement is met
Definition: dram_ctrl.hh:419
Stats::Formula busUtilWrite
Definition: dram_ctrl.hh:1165
Stats::Formula writeRowHitRate
Definition: dram_ctrl.hh:1140
void processNextReqEvent()
Bunch of things requires to setup "events" in gem5 When event "respondEvent" occurs for example...
Definition: dram_ctrl.cc:1473
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:102
Stats::Scalar actEnergy
Definition: dram_ctrl.hh:279
std::unordered_set< Addr > isInWriteQueue
To avoid iterating over the write queue to check for overlapping transactions, maintain a set of burs...
Definition: dram_ctrl.hh:966
const uint32_t columnsPerRowBuffer
Definition: dram_ctrl.hh:1003
Stats::Histogram bytesPerActivate
Definition: dram_ctrl.hh:1146
Tick verifyMultiCmd(Tick cmd_tick, Tick max_multi_cmd_split=0)
Check for command bus contention for multi-cycle (2 currently) command.
Definition: dram_ctrl.cc:977
Stats::Formula masterWriteAvgLat
Definition: dram_ctrl.hh:1188
Stats::Scalar actBackEnergy
Definition: dram_ctrl.hh:288
EventFunctionWrapper refreshEvent
Definition: dram_ctrl.hh:570
uint32_t readsThisTime
Definition: dram_ctrl.hh:1016
Definition: mem.h:38
Stats::Scalar readRowHits
Definition: dram_ctrl.hh:1137
Simple structure to hold the values needed to keep track of commands for DRAMPower.
Definition: dram_ctrl.hh:142
Stats::Formula masterReadRate
Definition: dram_ctrl.hh:1175
const uint32_t deviceSize
The following are basic design parameters of the memory controller, and are initialized based on para...
Definition: dram_ctrl.hh:996
Addr getOffset(const Addr &a) const
Determine the offset of an address within the range.
Definition: addr_range.hh:520
uint8_t activeRank
Definition: dram_ctrl.hh:1197
Stats::Average avgWrQLen
Definition: dram_ctrl.hh:1121
std::vector< DRAMPacketQueue > writeQueue
Definition: dram_ctrl.hh:957
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
Tick readyTime
When will request leave the controller.
Definition: dram_ctrl.hh:615
const uint32_t columnsPerStripe
Definition: dram_ctrl.hh:1004
Stats::Scalar totMemAccLat
Definition: dram_ctrl.hh:1126
const uint8_t bank
Definition: dram_ctrl.hh:627
Data::MemCommand::cmds type
Definition: dram_ctrl.hh:143
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:64
Tick nextBurstAt
Till when must we wait before issuing next RD/WR burst?
Definition: dram_ctrl.hh:1088
void processRespondEvent()
Definition: dram_ctrl.cc:652
const uint32_t writeBufferSize
Definition: dram_ctrl.hh:1011
const uint32_t burstSize
Definition: dram_ctrl.hh:1001
const uint32_t banksPerRank
Definition: dram_ctrl.hh:1008
const uint32_t readBufferSize
Definition: dram_ctrl.hh:1010
DRAMPower is a standalone tool which calculates the power consumed by a DRAM in the system...
Definition: drampower.hh:53
uint8_t qosValue() const
Get the packet QoS value (interface compatibility with Packet)
Definition: dram_ctrl.hh:674
Bitfield< 0 > p
const Tick tRRD_L
Definition: dram_ctrl.hh:1038
const Tick burstDataCycles
Definition: dram_ctrl.hh:1055
virtual void drainResume() override
Resume execution after a successful drain.
Definition: dram_ctrl.cc:2944
virtual void startup() override
startup() is the final initialization call before simulation.
Definition: dram_ctrl.cc:241
Addr burstAlign(Addr addr) const
Burst-align an address.
Definition: dram_ctrl.hh:951
Stats::Vector masterWriteBytes
Definition: dram_ctrl.hh:1172
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
Stats::Vector readPktSize
Definition: dram_ctrl.hh:1142
const Tick wrToRdDly
Definition: dram_ctrl.hh:1050
void addToReadQueue(PacketPtr pkt, unsigned int pktCount)
When a new read comes in, first check if the write q has a pending request to the same address...
Definition: dram_ctrl.cc:382
Stats::Scalar actPowerDownEnergy
Definition: dram_ctrl.hh:298
void printQs() const
Used for debugging to observe the contents of the queues.
Definition: dram_ctrl.cc:563
unsigned int size
The size of this dram packet in bytes It is always equal or smaller than DRAM burst size...
Definition: dram_ctrl.hh:649
bool recvTimingReq(PacketPtr)
Receive a timing request from the peer.
Definition: dram_ctrl.cc:2997
const bool bankGroupArch
Definition: dram_ctrl.hh:1007
Stats::Vector masterWriteTotalLat
Definition: dram_ctrl.hh:1184
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: dram_ctrl.cc:2885
Stats::Scalar writeBursts
Definition: dram_ctrl.hh:1112
const PacketPtr pkt
This comes from the outside world.
Definition: dram_ctrl.hh:618
constexpr Command(Data::MemCommand::cmds _type, uint8_t _bank, Tick time_stamp)
Definition: dram_ctrl.hh:147
Stats::Histogram rdPerTurnAround
Definition: dram_ctrl.hh:1147
Rank class includes a vector of banks.
Definition: dram_ctrl.hh:332
Stats::Scalar bytesWritten
Definition: dram_ctrl.hh:1152
bool inLowPowerState
rank is in or transitioning to power-down or self-refresh
Definition: dram_ctrl.hh:392
MemoryPort port
Our incoming port, for a multi-ported controller add a crossbar in front of it.
Definition: dram_ctrl.hh:123
bool isWrite() const
Return true if its a write packet (interface compatibility with Packet)
Definition: dram_ctrl.hh:704
const Tick tBURST
Definition: dram_ctrl.hh:1025
Stats::Scalar refreshEnergy
Definition: dram_ctrl.hh:283
DRAMPacketQueue::iterator chooseNext(DRAMPacketQueue &queue, Tick extra_col_delay)
The memory schduler/arbiter - picks which request needs to go next, based on the specified policy suc...
Definition: dram_ctrl.cc:752

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