diff options
author | Ani Udipi <ani.udipi@arm.com> | 2013-11-01 11:56:16 -0400 |
---|---|---|
committer | Ani Udipi <ani.udipi@arm.com> | 2013-11-01 11:56:16 -0400 |
commit | d4cf009b95d34b75408363bc085c2e9e9de458d9 (patch) | |
tree | 01825a265f0e48f850f5ef4d33dc8e03932f2d3f /src/mem/simple_dram.hh | |
parent | 0e6ced5c4f0c0e2f35dcbdfe4797215f4c7b0e8e (diff) | |
download | gem5-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.hh | 1 |
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; |