dram_ctrl.hh (10489:99d59caa4c8f) dram_ctrl.hh (10618:bb665366cc00)
1/*
2 * Copyright (c) 2012-2014 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

--- 26 unchanged lines hidden (view full) ---

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 * Authors: Andreas Hansson
41 * Ani Udipi
42 * Neha Agarwal
1/*
2 * Copyright (c) 2012-2014 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

--- 26 unchanged lines hidden (view full) ---

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 * Authors: Andreas Hansson
41 * Ani Udipi
42 * Neha Agarwal
43 * Omar Naji
43 */
44
45/**
46 * @file
47 * DRAMCtrl declaration
48 */
49
50#ifndef __MEM_DRAM_CTRL_HH__
51#define __MEM_DRAM_CTRL_HH__
52
53#include <deque>
44 */
45
46/**
47 * @file
48 * DRAMCtrl declaration
49 */
50
51#ifndef __MEM_DRAM_CTRL_HH__
52#define __MEM_DRAM_CTRL_HH__
53
54#include <deque>
55#include <string>
54
55#include "base/statistics.hh"
56#include "enums/AddrMap.hh"
57#include "enums/MemSched.hh"
58#include "enums/PageManage.hh"
59#include "mem/abstract_mem.hh"
60#include "mem/qport.hh"
61#include "params/DRAMCtrl.hh"

--- 70 unchanged lines hidden (view full) ---

132 READ = 0,
133 READ_TO_WRITE,
134 WRITE,
135 WRITE_TO_READ
136 };
137
138 BusState busState;
139
56
57#include "base/statistics.hh"
58#include "enums/AddrMap.hh"
59#include "enums/MemSched.hh"
60#include "enums/PageManage.hh"
61#include "mem/abstract_mem.hh"
62#include "mem/qport.hh"
63#include "params/DRAMCtrl.hh"

--- 70 unchanged lines hidden (view full) ---

134 READ = 0,
135 READ_TO_WRITE,
136 WRITE,
137 WRITE_TO_READ
138 };
139
140 BusState busState;
141
140 /** List to keep track of activate ticks */
141 std::vector<std::deque<Tick>> actTicks;
142
143 /**
144 * A basic class to track the bank state, i.e. what row is
145 * currently open (if any), when is the bank free to accept a new
146 * column (read/write) command, when can it be precharged, and
147 * when can it be activated.
148 *
149 * The bank also keeps track of how many bytes have been accessed
150 * in the open row since it was opened.
151 */
152 class Bank
153 {
154
155 public:
156
157 static const uint32_t NO_ROW = -1;
158
159 uint32_t openRow;
142 /**
143 * A basic class to track the bank state, i.e. what row is
144 * currently open (if any), when is the bank free to accept a new
145 * column (read/write) command, when can it be precharged, and
146 * when can it be activated.
147 *
148 * The bank also keeps track of how many bytes have been accessed
149 * in the open row since it was opened.
150 */
151 class Bank
152 {
153
154 public:
155
156 static const uint32_t NO_ROW = -1;
157
158 uint32_t openRow;
160 uint8_t rank;
161 uint8_t bank;
162 uint8_t bankgr;
163
164 Tick colAllowedAt;
165 Tick preAllowedAt;
166 Tick actAllowedAt;
167
168 uint32_t rowAccesses;
169 uint32_t bytesAccessed;
170
171 Bank() :
159 uint8_t bank;
160 uint8_t bankgr;
161
162 Tick colAllowedAt;
163 Tick preAllowedAt;
164 Tick actAllowedAt;
165
166 uint32_t rowAccesses;
167 uint32_t bytesAccessed;
168
169 Bank() :
172 openRow(NO_ROW), rank(0), bank(0), bankgr(0),
170 openRow(NO_ROW), bank(0), bankgr(0),
173 colAllowedAt(0), preAllowedAt(0), actAllowedAt(0),
174 rowAccesses(0), bytesAccessed(0)
175 { }
176 };
177
171 colAllowedAt(0), preAllowedAt(0), actAllowedAt(0),
172 rowAccesses(0), bytesAccessed(0)
173 { }
174 };
175
176
178 /**
177 /**
178 * Rank class includes a vector of banks. Refresh and Power state
179 * machines are defined per rank. Events required to change the
180 * state of the refresh and power state machine are scheduled per
181 * rank. This class allows the implementation of rank-wise refresh
182 * and rank-wise power-down.
183 */
184 class Rank : public EventManager
185 {
186
187 private:
188
189 /**
190 * The power state captures the different operational states of
191 * the DRAM and interacts with the bus read/write state machine,
192 * and the refresh state machine. In the idle state all banks are
193 * precharged. From there we either go to an auto refresh (as
194 * determined by the refresh state machine), or to a precharge
195 * power down mode. From idle the memory can also go to the active
196 * state (with one or more banks active), and in turn from there
197 * to active power down. At the moment we do not capture the deep
198 * power down and self-refresh state.
199 */
200 enum PowerState {
201 PWR_IDLE = 0,
202 PWR_REF,
203 PWR_PRE_PDN,
204 PWR_ACT,
205 PWR_ACT_PDN
206 };
207
208 /**
209 * The refresh state is used to control the progress of the
210 * refresh scheduling. When normal operation is in progress the
211 * refresh state is idle. From there, it progresses to the refresh
212 * drain state once tREFI has passed. The refresh drain state
213 * captures the DRAM row active state, as it will stay there until
214 * all ongoing accesses complete. Thereafter all banks are
215 * precharged, and lastly, the DRAM is refreshed.
216 */
217 enum RefreshState {
218 REF_IDLE = 0,
219 REF_DRAIN,
220 REF_PRE,
221 REF_RUN
222 };
223
224 /**
225 * A reference to the parent DRAMCtrl instance
226 */
227 DRAMCtrl& memory;
228
229 /**
230 * Since we are taking decisions out of order, we need to keep
231 * track of what power transition is happening at what time, such
232 * that we can go back in time and change history. For example, if
233 * we precharge all banks and schedule going to the idle state, we
234 * might at a later point decide to activate a bank before the
235 * transition to idle would have taken place.
236 */
237 PowerState pwrStateTrans;
238
239 /**
240 * Current power state.
241 */
242 PowerState pwrState;
243
244 /**
245 * Track when we transitioned to the current power state
246 */
247 Tick pwrStateTick;
248
249 /**
250 * current refresh state
251 */
252 RefreshState refreshState;
253
254 /**
255 * Keep track of when a refresh is due.
256 */
257 Tick refreshDueAt;
258
259 /*
260 * Command energies
261 */
262 Stats::Scalar actEnergy;
263 Stats::Scalar preEnergy;
264 Stats::Scalar readEnergy;
265 Stats::Scalar writeEnergy;
266 Stats::Scalar refreshEnergy;
267
268 /*
269 * Active Background Energy
270 */
271 Stats::Scalar actBackEnergy;
272
273 /*
274 * Precharge Background Energy
275 */
276 Stats::Scalar preBackEnergy;
277
278 Stats::Scalar totalEnergy;
279 Stats::Scalar averagePower;
280
281 /**
282 * Track time spent in each power state.
283 */
284 Stats::Vector pwrStateTime;
285
286 /**
287 * Function to update Power Stats
288 */
289 void updatePowerStats();
290
291 /**
292 * Schedule a power state transition in the future, and
293 * potentially override an already scheduled transition.
294 *
295 * @param pwr_state Power state to transition to
296 * @param tick Tick when transition should take place
297 */
298 void schedulePowerEvent(PowerState pwr_state, Tick tick);
299
300 public:
301
302 /**
303 * Current Rank index
304 */
305 uint8_t rank;
306
307 /**
308 * One DRAMPower instance per rank
309 */
310 DRAMPower power;
311
312 /**
313 * Vector of Banks. Each rank is made of several devices which in
314 * term are made from several banks.
315 */
316 std::vector<Bank> banks;
317
318 /**
319 * To track number of banks which are currently active for
320 * this rank.
321 */
322 unsigned int numBanksActive;
323
324 /** List to keep track of activate ticks */
325 std::deque<Tick> actTicks;
326
327 Rank(DRAMCtrl& _memory, const DRAMCtrlParams* _p);
328
329 const std::string name() const
330 {
331 return csprintf("%s_%d", memory.name(), rank);
332 }
333
334 /**
335 * Kick off accounting for power and refresh states and
336 * schedule initial refresh.
337 *
338 * @param ref_tick Tick for first refresh
339 */
340 void startup(Tick ref_tick);
341
342 /**
343 * Check if the current rank is available for scheduling.
344 *
345 * @param Return true if the rank is idle from a refresh point of view
346 */
347 bool isAvailable() const { return refreshState == REF_IDLE; }
348
349 /**
350 * Let the rank check if it was waiting for requests to drain
351 * to allow it to transition states.
352 */
353 void checkDrainDone();
354
355 /*
356 * Function to register Stats
357 */
358 void regStats();
359
360 void processActivateEvent();
361 EventWrapper<Rank, &Rank::processActivateEvent>
362 activateEvent;
363
364 void processPrechargeEvent();
365 EventWrapper<Rank, &Rank::processPrechargeEvent>
366 prechargeEvent;
367
368 void processRefreshEvent();
369 EventWrapper<Rank, &Rank::processRefreshEvent>
370 refreshEvent;
371
372 void processPowerEvent();
373 EventWrapper<Rank, &Rank::processPowerEvent>
374 powerEvent;
375
376 };
377
378 /**
179 * A burst helper helps organize and manage a packet that is larger than
180 * the DRAM burst size. A system packet that is larger than the burst size
181 * is split into multiple DRAM packets and all those DRAM packets point to
182 * a single burst helper such that we know when the whole packet is served.
183 */
184 class BurstHelper {
185
186 public:
187
188 /** Number of DRAM bursts requred for a system packet **/
189 const unsigned int burstCount;
190
191 /** Number of DRAM bursts serviced so far for a system packet **/
192 unsigned int burstsServiced;
193
194 BurstHelper(unsigned int _burstCount)
195 : burstCount(_burstCount), burstsServiced(0)
379 * A burst helper helps organize and manage a packet that is larger than
380 * the DRAM burst size. A system packet that is larger than the burst size
381 * is split into multiple DRAM packets and all those DRAM packets point to
382 * a single burst helper such that we know when the whole packet is served.
383 */
384 class BurstHelper {
385
386 public:
387
388 /** Number of DRAM bursts requred for a system packet **/
389 const unsigned int burstCount;
390
391 /** Number of DRAM bursts serviced so far for a system packet **/
392 unsigned int burstsServiced;
393
394 BurstHelper(unsigned int _burstCount)
395 : burstCount(_burstCount), burstsServiced(0)
196 { }
396 { }
197 };
198
199 /**
200 * A DRAM packet stores packets along with the timestamp of when
201 * the packet entered the queue, and also the decoded address.
202 */
203 class DRAMPacket {
204

--- 37 unchanged lines hidden (view full) ---

242 unsigned int size;
243
244 /**
245 * A pointer to the BurstHelper if this DRAMPacket is a split packet
246 * If not a split packet (common case), this is set to NULL
247 */
248 BurstHelper* burstHelper;
249 Bank& bankRef;
397 };
398
399 /**
400 * A DRAM packet stores packets along with the timestamp of when
401 * the packet entered the queue, and also the decoded address.
402 */
403 class DRAMPacket {
404

--- 37 unchanged lines hidden (view full) ---

442 unsigned int size;
443
444 /**
445 * A pointer to the BurstHelper if this DRAMPacket is a split packet
446 * If not a split packet (common case), this is set to NULL
447 */
448 BurstHelper* burstHelper;
449 Bank& bankRef;
450 Rank& rankRef;
250
251 DRAMPacket(PacketPtr _pkt, bool is_read, uint8_t _rank, uint8_t _bank,
252 uint32_t _row, uint16_t bank_id, Addr _addr,
451
452 DRAMPacket(PacketPtr _pkt, bool is_read, uint8_t _rank, uint8_t _bank,
453 uint32_t _row, uint16_t bank_id, Addr _addr,
253 unsigned int _size, Bank& bank_ref)
454 unsigned int _size, Bank& bank_ref, Rank& rank_ref)
254 : entryTime(curTick()), readyTime(curTick()),
255 pkt(_pkt), isRead(is_read), rank(_rank), bank(_bank), row(_row),
256 bankId(bank_id), addr(_addr), size(_size), burstHelper(NULL),
455 : entryTime(curTick()), readyTime(curTick()),
456 pkt(_pkt), isRead(is_read), rank(_rank), bank(_bank), row(_row),
457 bankId(bank_id), addr(_addr), size(_size), burstHelper(NULL),
257 bankRef(bank_ref)
458 bankRef(bank_ref), rankRef(rank_ref)
258 { }
259
260 };
261
262 /**
263 * Bunch of things requires to setup "events" in gem5
264 * When event "respondEvent" occurs for example, the method
265 * processRespondEvent is called; no parameters are allowed
266 * in these methods
267 */
268 void processNextReqEvent();
269 EventWrapper<DRAMCtrl,&DRAMCtrl::processNextReqEvent> nextReqEvent;
270
271 void processRespondEvent();
272 EventWrapper<DRAMCtrl, &DRAMCtrl::processRespondEvent> respondEvent;
273
459 { }
460
461 };
462
463 /**
464 * Bunch of things requires to setup "events" in gem5
465 * When event "respondEvent" occurs for example, the method
466 * processRespondEvent is called; no parameters are allowed
467 * in these methods
468 */
469 void processNextReqEvent();
470 EventWrapper<DRAMCtrl,&DRAMCtrl::processNextReqEvent> nextReqEvent;
471
472 void processRespondEvent();
473 EventWrapper<DRAMCtrl, &DRAMCtrl::processRespondEvent> respondEvent;
474
274 void processActivateEvent();
275 EventWrapper<DRAMCtrl, &DRAMCtrl::processActivateEvent> activateEvent;
276
277 void processPrechargeEvent();
278 EventWrapper<DRAMCtrl, &DRAMCtrl::processPrechargeEvent> prechargeEvent;
279
280 void processRefreshEvent();
281 EventWrapper<DRAMCtrl, &DRAMCtrl::processRefreshEvent> refreshEvent;
282
283 void processPowerEvent();
284 EventWrapper<DRAMCtrl,&DRAMCtrl::processPowerEvent> powerEvent;
285
286 /**
287 * Check if the read queue has room for more entries
288 *
289 * @param pktCount The number of entries needed in the read queue
290 * @return true if read queue is full, false otherwise
291 */
292 bool readQueueFull(unsigned int pktCount) const;
293

--- 76 unchanged lines hidden (view full) ---

370 * The memory schduler/arbiter - picks which request needs to
371 * go next, based on the specified policy such as FCFS or FR-FCFS
372 * and moves it to the head of the queue.
373 * Prioritizes accesses to the same rank as previous burst unless
374 * controller is switching command type.
375 *
376 * @param queue Queued requests to consider
377 * @param switched_cmd_type Command type is changing
475 /**
476 * Check if the read queue has room for more entries
477 *
478 * @param pktCount The number of entries needed in the read queue
479 * @return true if read queue is full, false otherwise
480 */
481 bool readQueueFull(unsigned int pktCount) const;
482

--- 76 unchanged lines hidden (view full) ---

559 * The memory schduler/arbiter - picks which request needs to
560 * go next, based on the specified policy such as FCFS or FR-FCFS
561 * and moves it to the head of the queue.
562 * Prioritizes accesses to the same rank as previous burst unless
563 * controller is switching command type.
564 *
565 * @param queue Queued requests to consider
566 * @param switched_cmd_type Command type is changing
567 * @return true if a packet is scheduled to a rank which is available else
568 * false
378 */
569 */
379 void chooseNext(std::deque<DRAMPacket*>& queue, bool switched_cmd_type);
570 bool chooseNext(std::deque<DRAMPacket*>& queue, bool switched_cmd_type);
380
381 /**
382 * For FR-FCFS policy reorder the read/write queue depending on row buffer
383 * hits and earliest banks available in DRAM
384 * Prioritizes accesses to the same rank as previous burst unless
385 * controller is switching command type.
386 *
387 * @param queue Queued requests to consider
388 * @param switched_cmd_type Command type is changing
571
572 /**
573 * For FR-FCFS policy reorder the read/write queue depending on row buffer
574 * hits and earliest banks available in DRAM
575 * Prioritizes accesses to the same rank as previous burst unless
576 * controller is switching command type.
577 *
578 * @param queue Queued requests to consider
579 * @param switched_cmd_type Command type is changing
580 * @return true if a packet is scheduled to a rank which is available else
581 * false
389 */
582 */
390 void reorderQueue(std::deque<DRAMPacket*>& queue, bool switched_cmd_type);
583 bool reorderQueue(std::deque<DRAMPacket*>& queue, bool switched_cmd_type);
391
392 /**
393 * Find which are the earliest banks ready to issue an activate
394 * for the enqueued requests. Assumes maximum of 64 banks per DIMM
395 * Also checks if the bank is already prepped.
396 *
397 * @param queue Queued requests to consider
398 * @param switched_cmd_type Command type is changing
399 * @return One-hot encoded mask of bank indices
400 */
401 uint64_t minBankPrep(const std::deque<DRAMPacket*>& queue,
402 bool switched_cmd_type) const;
403
404 /**
405 * Keep track of when row activations happen, in order to enforce
406 * the maximum number of activations in the activation window. The
407 * method updates the time that the banks become available based
408 * on the current limits.
409 *
584
585 /**
586 * Find which are the earliest banks ready to issue an activate
587 * for the enqueued requests. Assumes maximum of 64 banks per DIMM
588 * Also checks if the bank is already prepped.
589 *
590 * @param queue Queued requests to consider
591 * @param switched_cmd_type Command type is changing
592 * @return One-hot encoded mask of bank indices
593 */
594 uint64_t minBankPrep(const std::deque<DRAMPacket*>& queue,
595 bool switched_cmd_type) const;
596
597 /**
598 * Keep track of when row activations happen, in order to enforce
599 * the maximum number of activations in the activation window. The
600 * method updates the time that the banks become available based
601 * on the current limits.
602 *
410 * @param bank Reference to the bank
603 * @param rank_ref Reference to the rank
604 * @param bank_ref Reference to the bank
411 * @param act_tick Time when the activation takes place
412 * @param row Index of the row
413 */
605 * @param act_tick Time when the activation takes place
606 * @param row Index of the row
607 */
414 void activateBank(Bank& bank, Tick act_tick, uint32_t row);
608 void activateBank(Rank& rank_ref, Bank& bank_ref, Tick act_tick,
609 uint32_t row);
415
416 /**
417 * Precharge a given bank and also update when the precharge is
418 * done. This will also deal with any stats related to the
419 * accesses to the open page.
420 *
610
611 /**
612 * Precharge a given bank and also update when the precharge is
613 * done. This will also deal with any stats related to the
614 * accesses to the open page.
615 *
616 * @param rank_ref The rank to precharge
421 * @param bank_ref The bank to precharge
422 * @param pre_at Time when the precharge takes place
423 * @param trace Is this an auto precharge then do not add to trace
424 */
617 * @param bank_ref The bank to precharge
618 * @param pre_at Time when the precharge takes place
619 * @param trace Is this an auto precharge then do not add to trace
620 */
425 void prechargeBank(Bank& bank_ref, Tick pre_at, bool trace = true);
621 void prechargeBank(Rank& rank_ref, Bank& bank_ref,
622 Tick pre_at, bool trace = true);
426
427 /**
428 * Used for debugging to observe the contents of the queues.
429 */
430 void printQs() const;
431
432 /**
433 * The controller's main read and write queues

--- 13 unchanged lines hidden (view full) ---

447
448 /**
449 * If we need to drain, keep the drain manager around until we're
450 * done here.
451 */
452 DrainManager *drainManager;
453
454 /**
623
624 /**
625 * Used for debugging to observe the contents of the queues.
626 */
627 void printQs() const;
628
629 /**
630 * The controller's main read and write queues

--- 13 unchanged lines hidden (view full) ---

644
645 /**
646 * If we need to drain, keep the drain manager around until we're
647 * done here.
648 */
649 DrainManager *drainManager;
650
651 /**
455 * Multi-dimensional vector of banks, first dimension is ranks,
456 * second is bank
652 * Vector of ranks
457 */
653 */
458 std::vector<std::vector<Bank> > banks;
654 std::vector<Rank*> ranks;
459
460 /**
461 * The following are basic design parameters of the memory
462 * controller, and are initialized based on parameter values.
463 * The rowsPerBank is determined based on the capacity, number of
464 * ranks and banks, the burst size, and the row buffer size.
465 */
466 const uint32_t deviceSize;

--- 70 unchanged lines hidden (view full) ---

537 */
538 const Tick backendLatency;
539
540 /**
541 * Till when has the main data bus been spoken for already?
542 */
543 Tick busBusyUntil;
544
655
656 /**
657 * The following are basic design parameters of the memory
658 * controller, and are initialized based on parameter values.
659 * The rowsPerBank is determined based on the capacity, number of
660 * ranks and banks, the burst size, and the row buffer size.
661 */
662 const uint32_t deviceSize;

--- 70 unchanged lines hidden (view full) ---

733 */
734 const Tick backendLatency;
735
736 /**
737 * Till when has the main data bus been spoken for already?
738 */
739 Tick busBusyUntil;
740
545 /**
546 * Keep track of when a refresh is due.
547 */
548 Tick refreshDueAt;
549
550 /**
551 * The refresh state is used to control the progress of the
552 * refresh scheduling. When normal operation is in progress the
553 * refresh state is idle. From there, it progresses to the refresh
554 * drain state once tREFI has passed. The refresh drain state
555 * captures the DRAM row active state, as it will stay there until
556 * all ongoing accesses complete. Thereafter all banks are
557 * precharged, and lastly, the DRAM is refreshed.
558 */
559 enum RefreshState {
560 REF_IDLE = 0,
561 REF_DRAIN,
562 REF_PRE,
563 REF_RUN
564 };
565
566 RefreshState refreshState;
567
568 /**
569 * The power state captures the different operational states of
570 * the DRAM and interacts with the bus read/write state machine,
571 * and the refresh state machine. In the idle state all banks are
572 * precharged. From there we either go to an auto refresh (as
573 * determined by the refresh state machine), or to a precharge
574 * power down mode. From idle the memory can also go to the active
575 * state (with one or more banks active), and in turn from there
576 * to active power down. At the moment we do not capture the deep
577 * power down and self-refresh state.
578 */
579 enum PowerState {
580 PWR_IDLE = 0,
581 PWR_REF,
582 PWR_PRE_PDN,
583 PWR_ACT,
584 PWR_ACT_PDN
585 };
586
587 /**
588 * Since we are taking decisions out of order, we need to keep
589 * track of what power transition is happening at what time, such
590 * that we can go back in time and change history. For example, if
591 * we precharge all banks and schedule going to the idle state, we
592 * might at a later point decide to activate a bank before the
593 * transition to idle would have taken place.
594 */
595 PowerState pwrStateTrans;
596
597 /**
598 * Current power state.
599 */
600 PowerState pwrState;
601
602 /**
603 * Schedule a power state transition in the future, and
604 * potentially override an already scheduled transition.
605 *
606 * @param pwr_state Power state to transition to
607 * @param tick Tick when transition should take place
608 */
609 void schedulePowerEvent(PowerState pwr_state, Tick tick);
610
611 Tick prevArrival;
612
613 /**
614 * The soonest you have to start thinking about the next request
615 * is the longest access time that can occur before
616 * busBusyUntil. Assuming you need to precharge, open a new row,
617 * and access, it is tRP + tRCD + tCL.
618 */

--- 53 unchanged lines hidden (view full) ---

672 Stats::Scalar readRowHits;
673 Stats::Scalar writeRowHits;
674 Stats::Formula readRowHitRate;
675 Stats::Formula writeRowHitRate;
676 Stats::Formula avgGap;
677
678 // DRAM Power Calculation
679 Stats::Formula pageHitRate;
741 Tick prevArrival;
742
743 /**
744 * The soonest you have to start thinking about the next request
745 * is the longest access time that can occur before
746 * busBusyUntil. Assuming you need to precharge, open a new row,
747 * and access, it is tRP + tRCD + tCL.
748 */

--- 53 unchanged lines hidden (view full) ---

802 Stats::Scalar readRowHits;
803 Stats::Scalar writeRowHits;
804 Stats::Formula readRowHitRate;
805 Stats::Formula writeRowHitRate;
806 Stats::Formula avgGap;
807
808 // DRAM Power Calculation
809 Stats::Formula pageHitRate;
680 Stats::Vector pwrStateTime;
681
810
682 //Command energies
683 Stats::Vector actEnergy;
684 Stats::Vector preEnergy;
685 Stats::Vector readEnergy;
686 Stats::Vector writeEnergy;
687 Stats::Vector refreshEnergy;
688 //Active Background Energy
689 Stats::Vector actBackEnergy;
690 //Precharge Background Energy
691 Stats::Vector preBackEnergy;
692 Stats::Vector totalEnergy;
693 //Power Consumed
694 Stats::Vector averagePower;
695
696 // Track when we transitioned to the current power state
697 Tick pwrStateTick;
698
699 // To track number of banks which are currently active
700 unsigned int numBanksActive;
701
702 // Holds the value of the rank of burst issued
703 uint8_t activeRank;
704
705 // timestamp offset
706 uint64_t timeStampOffset;
707
708 /** @todo this is a temporary workaround until the 4-phase code is
709 * committed. upstream caches needs this packet until true is returned, so
710 * hold onto it for deletion until a subsequent call
711 */
712 std::vector<PacketPtr> pendingDelete;
713
811 // Holds the value of the rank of burst issued
812 uint8_t activeRank;
813
814 // timestamp offset
815 uint64_t timeStampOffset;
816
817 /** @todo this is a temporary workaround until the 4-phase code is
818 * committed. upstream caches needs this packet until true is returned, so
819 * hold onto it for deletion until a subsequent call
820 */
821 std::vector<PacketPtr> pendingDelete;
822
714 // One DRAMPower instance per rank
715 std::vector<DRAMPower> rankPower;
716
717 /**
823 /**
718 * This function increments the energy when called. If stats are
719 * dumped periodically, note accumulated energy values will
720 * appear in the stats (even if the stats are reset). This is a
721 * result of the energy values coming from DRAMPower, and there
722 * is currently no support for resetting the state.
723 *
724 * @param rank Currrent rank
725 */
726 void updatePowerStats(uint8_t rank);
824 * This function increments the energy when called. If stats are
825 * dumped periodically, note accumulated energy values will
826 * appear in the stats (even if the stats are reset). This is a
827 * result of the energy values coming from DRAMPower, and there
828 * is currently no support for resetting the state.
829 *
830 * @param rank Currrent rank
831 */
832 void updatePowerStats(Rank& rank_ref);
727
728 /**
729 * Function for sorting commands in the command list of DRAMPower.
730 *
731 * @param a Memory Command in command list of DRAMPower library
732 * @param next Memory Command in command list of DRAMPower
733 * @return true if timestamp of Command 1 < timestamp of Command 2
734 */

--- 29 unchanged lines hidden ---
833
834 /**
835 * Function for sorting commands in the command list of DRAMPower.
836 *
837 * @param a Memory Command in command list of DRAMPower library
838 * @param next Memory Command in command list of DRAMPower
839 * @return true if timestamp of Command 1 < timestamp of Command 2
840 */

--- 29 unchanged lines hidden ---