summaryrefslogtreecommitdiff
path: root/src/mem/simple_dram.hh
diff options
context:
space:
mode:
authorAni Udipi <ani.udipi@arm.com>2013-11-01 11:56:16 -0400
committerAni Udipi <ani.udipi@arm.com>2013-11-01 11:56:16 -0400
commitd4cf009b95d34b75408363bc085c2e9e9de458d9 (patch)
tree01825a265f0e48f850f5ef4d33dc8e03932f2d3f /src/mem/simple_dram.hh
parent0e6ced5c4f0c0e2f35dcbdfe4797215f4c7b0e8e (diff)
downloadgem5-d4cf009b95d34b75408363bc085c2e9e9de458d9.tar.xz
mem: Add tRAS parameter to the DRAM controller model
This patch adds an explicit tRAS parameter to the DRAM controller model. Previously tRAS was, rather conservatively, assumed to be tRCD + tCL + tRP. The default values for tRAS are chosen to match the previous behaviour and will be updated later.
Diffstat (limited to 'src/mem/simple_dram.hh')
-rw-r--r--src/mem/simple_dram.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mem/simple_dram.hh b/src/mem/simple_dram.hh
index abc64c3cd..a340a427d 100644
--- a/src/mem/simple_dram.hh
+++ b/src/mem/simple_dram.hh
@@ -462,6 +462,7 @@ class SimpleDRAM : public AbstractMemory
const Tick tRCD;
const Tick tCL;
const Tick tRP;
+ const Tick tRAS;
const Tick tRFC;
const Tick tREFI;
const Tick tXAW;