projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c48690
)
mem: Fix the LPDDR3 page size
author
Andreas Hansson
<andreas.hansson@arm.com>
Fri, 1 Nov 2013 15:56:30 +0000
(11:56 -0400)
committer
Andreas Hansson
<andreas.hansson@arm.com>
Fri, 1 Nov 2013 15:56:30 +0000
(11:56 -0400)
This patch corrects the LPDDR3 page size, which was set too low.
src/mem/SimpleDRAM.py
patch
|
blob
|
history
diff --git
a/src/mem/SimpleDRAM.py
b/src/mem/SimpleDRAM.py
index b16aa600302a37a12bae553422bc5d61b2e06403..6ad4a1542d1898e216b71843d196940ee3ae9737 100644
(file)
--- 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