summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2013-11-01 11:56:30 -0400
committerAndreas Hansson <andreas.hansson@arm.com>2013-11-01 11:56:30 -0400
commitce93982cc6bef5337c4b593b0734d50f03233790 (patch)
tree6cf255d88b0f4c0ea67e47076504ae89d4bebe00 /src
parent5c486908d7979e4be832700ddeadb43c172c84e1 (diff)
downloadgem5-ce93982cc6bef5337c4b593b0734d50f03233790.tar.xz
mem: Fix the LPDDR3 page size
This patch corrects the LPDDR3 page size, which was set too low.
Diffstat (limited to 'src')
-rw-r--r--src/mem/SimpleDRAM.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mem/SimpleDRAM.py b/src/mem/SimpleDRAM.py
index b16aa6003..6ad4a1542 100644
--- a/src/mem/SimpleDRAM.py
+++ b/src/mem/SimpleDRAM.py
@@ -316,9 +316,8 @@ class LPDDR3_1600_x32(SimpleDRAM):
# LPDDR3 is a BL8 device
burst_length = 8
- # Each device has a page (row buffer) size of 1KB
- # (this depends on the memory density)
- device_rowbuffer_size = '1kB'
+ # Each device has a page (row buffer) size of 4KB
+ device_rowbuffer_size = '4kB'
# 1x32 configuration, so 1 device
devices_per_rank = 1