summaryrefslogtreecommitdiff
path: root/configs/common
diff options
context:
space:
mode:
Diffstat (limited to 'configs/common')
-rw-r--r--configs/common/HMC.py2
-rw-r--r--configs/common/MemConfig.py4
-rw-r--r--configs/common/Options.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/configs/common/HMC.py b/configs/common/HMC.py
index fcff94cc7..e43cbddfc 100644
--- a/configs/common/HMC.py
+++ b/configs/common/HMC.py
@@ -58,7 +58,7 @@
# serial links, the main internal crossbar, and an external hmc controller.
#
# - VAULT CONTROLLERS:
-# Instances of the HMC_2500_x32 class with their functionality specified in
+# Instances of the HMC_2500_1x32 class with their functionality specified in
# dram_ctrl.cc
#
# - THE MAIN XBAR:
diff --git a/configs/common/MemConfig.py b/configs/common/MemConfig.py
index 2cfa25e58..b625084cb 100644
--- a/configs/common/MemConfig.py
+++ b/configs/common/MemConfig.py
@@ -152,7 +152,7 @@ def config_mem(options, system):
them.
"""
- if ( options.mem_type == "HMC_2500_x32"):
+ if ( options.mem_type == "HMC_2500_1x32"):
HMChost = HMC.config_host_hmc(options, system)
HMC.config_hmc(options, system, HMChost.hmc_host)
subsystem = system.hmc_dev
@@ -223,7 +223,7 @@ def config_mem(options, system):
# Connect the controllers to the membus
for i in xrange(len(subsystem.mem_ctrls)):
- if (options.mem_type == "HMC_2500_x32"):
+ if (options.mem_type == "HMC_2500_1x32"):
subsystem.mem_ctrls[i].port = xbar[i/4].master
else:
subsystem.mem_ctrls[i].port = xbar.master
diff --git a/configs/common/Options.py b/configs/common/Options.py
index a3335c7ef..9af15ff2f 100644
--- a/configs/common/Options.py
+++ b/configs/common/Options.py
@@ -77,7 +77,7 @@ def addNoISAOptions(parser):
parser.add_option("--list-mem-types",
action="callback", callback=_listMemTypes,
help="List available memory types")
- parser.add_option("--mem-type", type="choice", default="DDR3_1600_x64",
+ parser.add_option("--mem-type", type="choice", default="DDR3_1600_8x8",
choices=MemConfig.mem_names(),
help = "type of memory to use")
parser.add_option("--mem-channels", type="int", default=1,