dram_ctrl.hh (10146:27dfed4c8403) dram_ctrl.hh (10147:3e51a30b8071)
1/*
2 * Copyright (c) 2012 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

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

483 const uint32_t channels;
484 uint32_t rowsPerBank;
485 const uint32_t readBufferSize;
486 const uint32_t writeBufferSize;
487 const uint32_t writeHighThreshold;
488 const uint32_t writeLowThreshold;
489 const uint32_t minWritesPerSwitch;
490 uint32_t writesThisTime;
1/*
2 * Copyright (c) 2012 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

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

483 const uint32_t channels;
484 uint32_t rowsPerBank;
485 const uint32_t readBufferSize;
486 const uint32_t writeBufferSize;
487 const uint32_t writeHighThreshold;
488 const uint32_t writeLowThreshold;
489 const uint32_t minWritesPerSwitch;
490 uint32_t writesThisTime;
491 uint32_t readsThisTime;
491
492 /**
493 * Basic memory timing parameters initialized based on parameter
494 * values.
495 */
496 const Tick tWTR;
497 const Tick tBURST;
498 const Tick tRCD;

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

564 Stats::Scalar numRdRetry;
565 Stats::Scalar numWrRetry;
566 Stats::Scalar totGap;
567 Stats::Vector readPktSize;
568 Stats::Vector writePktSize;
569 Stats::Vector rdQLenPdf;
570 Stats::Vector wrQLenPdf;
571 Stats::Histogram bytesPerActivate;
492
493 /**
494 * Basic memory timing parameters initialized based on parameter
495 * values.
496 */
497 const Tick tWTR;
498 const Tick tBURST;
499 const Tick tRCD;

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

565 Stats::Scalar numRdRetry;
566 Stats::Scalar numWrRetry;
567 Stats::Scalar totGap;
568 Stats::Vector readPktSize;
569 Stats::Vector writePktSize;
570 Stats::Vector rdQLenPdf;
571 Stats::Vector wrQLenPdf;
572 Stats::Histogram bytesPerActivate;
573 Stats::Histogram rdPerTurnAround;
574 Stats::Histogram wrPerTurnAround;
572
573 // Latencies summed over all requests
574 Stats::Scalar totQLat;
575 Stats::Scalar totMemAccLat;
576 Stats::Scalar totBusLat;
577 Stats::Scalar totBankLat;
578
579 // Average latencies per request

--- 65 unchanged lines hidden ---
575
576 // Latencies summed over all requests
577 Stats::Scalar totQLat;
578 Stats::Scalar totMemAccLat;
579 Stats::Scalar totBusLat;
580 Stats::Scalar totBankLat;
581
582 // Average latencies per request

--- 65 unchanged lines hidden ---