summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAni Udipi <ani.udipi@arm.com>2013-11-01 11:56:18 -0400
committerAni Udipi <ani.udipi@arm.com>2013-11-01 11:56:18 -0400
commit655bf868282ac2d9d6a711167efa936e7057d405 (patch)
tree612ba5764f53410ffa1b505514e404248e4771a2
parentbe62a142cf0513bfa69f4837565889dcb447fae0 (diff)
downloadgem5-655bf868282ac2d9d6a711167efa936e7057d405.tar.xz
mem: Fix DRAM bank occupancy for streaming access
This patch fixes an issue that allowed more than 100% bus utilisation in certain cases.
-rw-r--r--src/mem/simple_dram.cc14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/mem/simple_dram.cc b/src/mem/simple_dram.cc
index 280ab640d..39f320dc5 100644
--- a/src/mem/simple_dram.cc
+++ b/src/mem/simple_dram.cc
@@ -957,13 +957,19 @@ SimpleDRAM::estimateLatency(DRAMPacket* dram_pkt, Tick inTime)
// but do care about bank being free for access
rowHitFlag = true;
- if (bank.freeAt < inTime) {
+ // When a series of requests arrive to the same row,
+ // DDR systems are capable of streaming data continuously
+ // at maximum bandwidth (subject to tCCD). Here, we approximate
+ // this condition, and assume that if whenever a bank is already
+ // busy and a new request comes in, it can be completed with no
+ // penalty beyond waiting for the existing read to complete.
+ if (bank.freeAt > inTime) {
+ accLat += bank.freeAt - inTime;
+ bankLat += tBURST;
+ } else {
// CAS latency only
accLat += tCL;
bankLat += tCL;
- } else {
- accLat += 0;
- bankLat += 0;
}
} else {