mem: Update DRAM configuration names
authorWendy Elsasser <wendy.elsasser@arm.com>
Tue, 14 Feb 2017 21:09:18 +0000 (15:09 -0600)
committerWendy Elsasser <wendy.elsasser@arm.com>
Tue, 14 Feb 2017 21:09:18 +0000 (15:09 -0600)
commitca0fd665dcf6a4aeda07955d3898b03204c88fd8
tree5c508419acd3e09ba46a595fe8fe8363ed9d11de
parent94e612665020d49e6cba659536e315be8ef1c71e
mem: Update DRAM configuration names

Names of DRAM configurations were updated to reflect both
the channel and device data width.

Previous naming format was:
<DEVICE_TYPE>_<DATA_RATE>_<CHANNEL_WIDTH>

The following nomenclature is now used:
<DEVICE_TYPE>_<DATA_RATE>_<n>x<w>
where n = The number of devices per rank on the channel
      x = Device width

Total channel width can be calculated by n*w

Example:
A 64-bit DDR4, 2400 channel consisting of 4-bit devices:
n = 16
w = 4
The resulting configuration name is:
DDR4_2400_16x4

Updated scripts to match new naming convention.

Added unique configurations for DDR4 for:
1) 16x4
2) 8x8
3) 4x16

Change-Id: Ibd7f763b7248835c624309143cb9fc29d56a69d1
Reviewed-by: Radhika Jagtap <radhika.jagtap@arm.com>
Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
47 files changed:
configs/common/HMC.py
configs/common/MemConfig.py
configs/common/Options.py
configs/dram/lat_mem_rd.py
configs/dram/sweep.py
configs/example/hmctest.py
configs/example/memcheck.py
configs/learning_gem5/part1/simple.py
configs/learning_gem5/part1/two_level.py
src/mem/DRAMCtrl.py
tests/configs/minor-timing-mp.py
tests/configs/minor-timing.py
tests/configs/o3-timing-checker.py
tests/configs/o3-timing-mp.py
tests/configs/o3-timing-mt.py
tests/configs/o3-timing.py
tests/configs/pc-o3-timing.py
tests/configs/pc-simple-timing.py
tests/configs/pc-switcheroo-full.py
tests/configs/realview-minor-dual.py
tests/configs/realview-minor.py
tests/configs/realview-o3-checker.py
tests/configs/realview-o3-dual.py
tests/configs/realview-o3.py
tests/configs/realview-simple-timing-dual.py
tests/configs/realview-simple-timing.py
tests/configs/realview-switcheroo-full.py
tests/configs/realview-switcheroo-o3.py
tests/configs/realview-switcheroo-timing.py
tests/configs/realview64-minor-dual.py
tests/configs/realview64-minor.py
tests/configs/realview64-o3-checker.py
tests/configs/realview64-o3-dual.py
tests/configs/realview64-o3.py
tests/configs/realview64-simple-timing-dual.py
tests/configs/realview64-simple-timing.py
tests/configs/realview64-switcheroo-full.py
tests/configs/realview64-switcheroo-o3.py
tests/configs/realview64-switcheroo-timing.py
tests/configs/tgen-dram-ctrl.py
tests/configs/tsunami-minor-dual.py
tests/configs/tsunami-minor.py
tests/configs/tsunami-o3-dual.py
tests/configs/tsunami-o3.py
tests/configs/tsunami-simple-timing-dual.py
tests/configs/tsunami-simple-timing.py
tests/configs/tsunami-switcheroo-full.py