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)
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

index fcff94cc738d2c4755cc81c1e4b12697cc8bc119..e43cbddfcba74c93f6af0c31de011f8192b12791 100644 (file)
@@ -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:
index 2cfa25e5858588f7fce4867fc72ab31c3c93b1f3..b625084cb8beb6f72f165111a5ec9b4850a1926e 100644 (file)
@@ -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
index a3335c7ef02a6651b78fc0f4d1de54979d0dc1ea..9af15ff2fa90274e54b30826d6c930b0579b3a5e 100644 (file)
@@ -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,
index f148656f2626ac330604e33985541c2767fc60ad..ddc44e22989c19e4b02d9f68a0aa9982ae93ea1a 100644 (file)
@@ -80,7 +80,7 @@ except:
 
 parser = optparse.OptionParser()
 
-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-size", action="store", type="string",
index ac232a8fd8e748115307968f3edcef7e2edc0028..32cf0034565fee37e5984e163ae125bd37378460 100644 (file)
@@ -53,8 +53,8 @@ from common import MemConfig
 
 parser = optparse.OptionParser()
 
-# Use a single-channel DDR3-1600 x64 by default
-parser.add_option("--mem-type", type="choice", default="DDR3_1600_x64",
+# Use a single-channel DDR3-1600 x64 (8x8 topology) by default
+parser.add_option("--mem-type", type="choice", default="DDR3_1600_8x8",
                   choices=MemConfig.mem_names(),
                   help = "type of memory to use")
 
index 6e1ad457bd1bd9994ee97ee62d15f89842123363..3e0fa124a6044e9fe744de3f33127da40c46fcf6 100644 (file)
@@ -13,8 +13,8 @@ from common import HMC
 
 parser = optparse.OptionParser()
 
-# Use a HMC_2500_x32 by default
-parser.add_option("--mem-type", type = "choice", default = "HMC_2500_x32",
+# Use a HMC_2500_1x32 (1 channel, 32-bits wide) by default
+parser.add_option("--mem-type", type = "choice", default = "HMC_2500_1x32",
                   choices = MemConfig.mem_names(),
                   help = "type of memory to use")
 
index 7ef413389f8d3e1b5e6dbf33d617547ea9b88a20..0bbcd2f7c8762c1d31637a1c9d4e8997c488d1e6 100644 (file)
@@ -216,7 +216,7 @@ cfg_file.close()
 proto_tester = TrafficGen(config_file = cfg_file_name)
 
 # Set up the system along with a DRAM controller
-system = System(physmem = DDR3_1600_x64())
+system = System(physmem = DDR3_1600_8x8())
 
 system.voltage_domain = VoltageDomain(voltage = '1V')
 
index 1249a846444ebcb82ff14d7f75e2f582762ac856..393240a66481333144cf235387bf2fdfd7b2d3a5 100644 (file)
@@ -75,7 +75,7 @@ if m5.defines.buildEnv['TARGET_ISA'] == "x86":
     system.cpu.interrupts[0].int_slave = system.membus.master
 
 # Create a DDR3 memory controller and connect it to the membus
-system.mem_ctrl = DDR3_1600_x64()
+system.mem_ctrl = DDR3_1600_8x8()
 system.mem_ctrl.range = system.mem_ranges[0]
 system.mem_ctrl.port = system.membus.master
 
index 878baa31228554e40cd725c702894c6d0e1d204b..3dcb71a515e8a27f63c6ace9f175fe0f618c44fb 100644 (file)
@@ -128,7 +128,7 @@ if m5.defines.buildEnv['TARGET_ISA'] == "x86":
 system.system_port = system.membus.slave
 
 # Create a DDR3 memory controller
-system.mem_ctrl = DDR3_1600_x64()
+system.mem_ctrl = DDR3_1600_8x8()
 system.mem_ctrl.range = system.mem_ranges[0]
 system.mem_ctrl.port = system.membus.master
 
index 616986c7518fbcb984316d034be73436d8250446..d1c5daf622754c61b3e9ee00a06d74f80b36f363 100644 (file)
@@ -315,7 +315,7 @@ class DRAMCtrl(AbstractMemory):
 # A single DDR3-1600 x64 channel (one command and address bus), with
 # timings based on a DDR3-1600 4 Gbit datasheet (Micron MT41J512M8) in
 # an 8x8 configuration.
-class DDR3_1600_x64(DRAMCtrl):
+class DDR3_1600_8x8(DRAMCtrl):
     # size of device in bytes
     device_size = '512MB'
 
@@ -410,7 +410,7 @@ class DDR3_1600_x64(DRAMCtrl):
 # configuration.
 # This configuration includes the latencies from the DRAM to the logic layer
 # of the HMC
-class HMC_2500_x32(DDR3_1600_x64):
+class HMC_2500_1x32(DDR3_1600_8x8):
     # size of device
     # two banks per device with each bank 4MB [2]
     device_size = '8MB'
@@ -492,7 +492,7 @@ class HMC_2500_x32(DDR3_1600_x64):
 # options for the DDR-1600 configuration, based on the same DDR3-1600
 # 4 Gbit datasheet (Micron MT41J512M8). Most parameters are kept
 # consistent across the two configurations.
-class DDR3_2133_x64(DDR3_1600_x64):
+class DDR3_2133_8x8(DDR3_1600_8x8):
     # 1066 MHz
     tCK = '0.938ns'
 
@@ -520,35 +520,37 @@ class DDR3_2133_x64(DDR3_1600_x64):
     VDD = '1.5V'
 
 # A single DDR4-2400 x64 channel (one command and address bus), with
-# timings based on a DDR4-2400 4 Gbit datasheet (Micron MT40A512M16)
-# in an 4x16 configuration.
-class DDR4_2400_x64(DRAMCtrl):
+# timings based on a DDR4-2400 8 Gbit datasheet (Micron MT40A2G4)
+# in an 16x4 configuration.
+# Total channel capacity is 32GB
+# 16 devices/rank * 2 ranks/channel * 1GB/device = 32GB/channel
+class DDR4_2400_16x4(DRAMCtrl):
     # size of device
-    device_size = '512MB'
+    device_size = '1GB'
 
-    # 4x16 configuration, 4 devices each with an 16-bit interface
-    device_bus_width = 16
+    # 16x4 configuration, 16 devices each with a 4-bit interface
+    device_bus_width = 4
 
     # DDR4 is a BL8 device
     burst_length = 8
 
-    # Each device has a page (row buffer) size of 2 Kbyte (1K columns x16)
-    device_rowbuffer_size = '2kB'
+    # Each device has a page (row buffer) size of 512 byte (1K columns x4)
+    device_rowbuffer_size = '512B'
 
-    # 4x16 configuration, so 4 devices
-    devices_per_rank = 4
+    # 16x4 configuration, so 16 devices
+    devices_per_rank = 16
 
     # Match our DDR3 configurations which is dual rank
     ranks_per_channel = 2
 
     # DDR4 has 2 (x16) or 4 (x4 and x8) bank groups
-    # Set to 2 for x16 case
-    bank_groups_per_rank = 2
+    # Set to 4 for x4 case
+    bank_groups_per_rank = 4
 
     # DDR4 has 16 banks(x4,x8) and 8 banks(x16) (4 bank groups in all
     # configurations). Currently we do not capture the additional
     # constraints incurred by the bank groups
-    banks_per_rank = 8
+    banks_per_rank = 16
 
     # override the default buffer sizes and go for something larger to
     # accommodate the larger bank count
@@ -562,7 +564,7 @@ class DDR4_2400_x64(DRAMCtrl):
     # tBURST is equivalent to the CAS-to-CAS delay (tCCD)
     # With bank group architectures, tBURST represents the CAS-to-CAS
     # delay for bursts to different bank groups (tCCD_S)
-    tBURST = '3.333ns'
+    tBURST = '3.332ns'
 
     # @2400 data rate, tCCD_L is 6 CK
     # CAS-to-CAS delay for bursts to the same bank group
@@ -570,21 +572,23 @@ class DDR4_2400_x64(DRAMCtrl):
     # for CAS-to-CAS delay for bursts to different bank groups
     tCCD_L = '5ns';
 
-    # DDR4-2400 16-16-16
-    tRCD = '13.32ns'
-    tCL = '13.32ns'
-    tRP = '13.32ns'
-    tRAS = '35ns'
+    # DDR4-2400 17-17-17
+    tRCD = '14.16ns'
+    tCL = '14.16ns'
+    tRP = '14.16ns'
+    tRAS = '32ns'
 
-    # RRD_S (different bank group) for 2K page is MAX(4 CK, 5.3ns)
-    tRRD = '5.3ns'
+    # RRD_S (different bank group) for 512B page is MAX(4 CK, 3.3ns)
+    tRRD = '3.332ns'
 
-    # RRD_L (same bank group) for 2K page is MAX(4 CK, 6.4ns)
-    tRRD_L = '6.4ns';
+    # RRD_L (same bank group) for 512B page is MAX(4 CK, 4.9ns)
+    tRRD_L = '4.9ns';
 
-    tXAW = '30ns'
+    # tFAW for 512B page is MAX(16 CK, 13ns)
+    tXAW = '13.328ns'
     activation_limit = 4
-    tRFC = '260ns'
+    # tRFC is 350ns
+    tRFC = '350ns'
 
     tWR = '15ns'
 
@@ -607,27 +611,98 @@ class DDR4_2400_x64(DRAMCtrl):
     tXP = '6ns'
 
     # self refresh exit time
-    tXS = '120ns'
+    # exit delay to ACT, PRE, PREALL, REF, SREF Enter, and PD Enter is:
+    # tRFC + 10ns = 340ns
+    tXS = '340ns'
 
     # Current values from datasheet
-    IDD0 = '70mA'
-    IDD02 = '4.6mA'
-    IDD2N = '50mA'
-    IDD3N = '67mA'
+    IDD0 = '43mA'
+    IDD02 = '3mA'
+    IDD2N = '34mA'
+    IDD3N = '38mA'
     IDD3N2 = '3mA'
-    IDD4W = '302mA'
-    IDD4R = '230mA'
-    IDD5 = '192mA'
-    IDD3P1 = '44mA'
-    IDD2P1 = '32mA'
-    IDD6 = '20mA'
+    IDD4W = '103mA'
+    IDD4R = '110mA'
+    IDD5 = '250mA'
+    IDD3P1 = '32mA'
+    IDD2P1 = '25mA'
+    IDD6 = '30mA'
     VDD = '1.2V'
     VDD2 = '2.5V'
 
+# A single DDR4-2400 x64 channel (one command and address bus), with
+# timings based on a DDR4-2400 8 Gbit datasheet (Micron MT40A1G8)
+# in an 8x8 configuration.
+# Total channel capacity is 16GB
+# 8 devices/rank * 2 ranks/channel * 1GB/device = 16GB/channel
+class DDR4_2400_8x8(DDR4_2400_16x4):
+    # 8x8 configuration, 8 devices each with an 8-bit interface
+    device_bus_width = 8
+
+    # Each device has a page (row buffer) size of 1 Kbyte (1K columns x8)
+    device_rowbuffer_size = '1kB'
+
+    # RRD_L (same bank group) for 1K page is MAX(4 CK, 4.9ns)
+    tRRD_L = '4.9ns';
+
+    tXAW = '21ns'
+
+    # Current values from datasheet
+    IDD0 = '48mA'
+    IDD3N = '43mA'
+    IDD4W = '123mA'
+    IDD4R = '135mA'
+    IDD3P1 = '37mA'
+
+# A single DDR4-2400 x64 channel (one command and address bus), with
+# timings based on a DDR4-2400 8 Gbit datasheet (Micron MT40A512M16)
+# in an 4x16 configuration.
+# Total channel capacity is 4GB
+# 4 devices/rank * 1 ranks/channel * 1GB/device = 4GB/channel
+class DDR4_2400_4x16(DDR4_2400_16x4):
+    # 4x16 configuration, 4 devices each with an 16-bit interface
+    device_bus_width = 16
+
+    # Each device has a page (row buffer) size of 2 Kbyte (1K columns x16)
+    device_rowbuffer_size = '2kB'
+
+    # 4x16 configuration, so 4 devices
+    devices_per_rank = 4
+
+    # Single rank for x16
+    ranks_per_channel = 1
+
+    # DDR4 has 2 (x16) or 4 (x4 and x8) bank groups
+    # Set to 2 for x16 case
+    bank_groups_per_rank = 2
+
+    # DDR4 has 16 banks(x4,x8) and 8 banks(x16) (4 bank groups in all
+    # configurations). Currently we do not capture the additional
+    # constraints incurred by the bank groups
+    banks_per_rank = 8
+
+    # RRD_S (different bank group) for 2K page is MAX(4 CK, 5.3ns)
+    tRRD = '5.3ns'
+
+    # RRD_L (same bank group) for 2K page is MAX(4 CK, 6.4ns)
+    tRRD_L = '6.4ns';
+
+    tXAW = '30ns'
+
+    # Current values from datasheet
+    IDD0 = '80mA'
+    IDD02 = '4mA'
+    IDD2N = '34mA'
+    IDD3N = '47mA'
+    IDD4W = '228mA'
+    IDD4R = '243mA'
+    IDD5 = '280mA'
+    IDD3P1 = '41mA'
+
 # A single LPDDR2-S4 x32 interface (one command/address bus), with
 # default timings based on a LPDDR2-1066 4 Gbit part (Micron MT42L128M32D1)
 # in a 1x32 configuration.
-class LPDDR2_S4_1066_x32(DRAMCtrl):
+class LPDDR2_S4_1066_1x32(DRAMCtrl):
     # No DLL in LPDDR2
     dll = False
 
@@ -726,7 +801,7 @@ class LPDDR2_S4_1066_x32(DRAMCtrl):
 
 # A single WideIO x128 interface (one command and address bus), with
 # default timings based on an estimated WIO-200 8 Gbit part.
-class WideIO_200_x128(DRAMCtrl):
+class WideIO_200_1x128(DRAMCtrl):
     # No DLL for WideIO
     dll = False
 
@@ -795,7 +870,7 @@ class WideIO_200_x128(DRAMCtrl):
 # A single LPDDR3 x32 interface (one command/address bus), with
 # default timings based on a LPDDR3-1600 4 Gbit part (Micron
 # EDF8132A1MC) in a 1x32 configuration.
-class LPDDR3_1600_x32(DRAMCtrl):
+class LPDDR3_1600_1x32(DRAMCtrl):
     # No DLL for LPDDR3
     dll = False
 
@@ -895,7 +970,7 @@ class LPDDR3_1600_x32(DRAMCtrl):
 # A single GDDR5 x64 interface, with
 # default timings based on a GDDR5-4000 1 Gbit part (SK Hynix
 # H5GQ1H24AFR) in a 2x32 configuration.
-class GDDR5_4000_x64(DRAMCtrl):
+class GDDR5_4000_2x32(DRAMCtrl):
     # size of device
     device_size = '128MB'
 
@@ -979,7 +1054,7 @@ class GDDR5_4000_x64(DRAMCtrl):
 # IDD measurement values, and by extrapolating data from other classes.
 # Architecture values based on published HBM spec
 # A 4H stack is defined, 2Gb per die for a total of 1GB of memory.
-class HBM_1000_4H_x128(DRAMCtrl):
+class HBM_1000_4H_1x128(DRAMCtrl):
     # HBM gen1 supports up to 8 128-bit physical channels
     # Configuration defines a single channel, with the capacity
     # set to (full_ stack_capacity / 8) based on 2Gb dies
@@ -1068,7 +1143,7 @@ class HBM_1000_4H_x128(DRAMCtrl):
 # instantiated per pseudo-channel
 # Stay at same IO rate (1Gbps) to maintain timing relationship with
 # HBM gen1 class (HBM_1000_4H_x128) where possible
-class HBM_1000_4H_x64(HBM_1000_4H_x128):
+class HBM_1000_4H_1x64(HBM_1000_4H_1x128):
     # For HBM gen2 with pseudo-channel mode, configure 2X channels.
     # Configuration defines a single pseudo channel, with the capacity
     # set to (full_ stack_capacity / 16) based on 8Gb dies
index 047f84684afcf5487d5bf4e2e41902ee776f9a79..1c999b22f0309f6fbbd31db26b3cbd664443cbe3 100644 (file)
@@ -42,5 +42,5 @@ from m5.objects import *
 from base_config import *
 
 nb_cores = 4
-root = BaseSESystem(mem_mode='timing', mem_class=DDR3_1600_x64,
+root = BaseSESystem(mem_mode='timing', mem_class=DDR3_1600_8x8,
                     cpu_class=MinorCPU, num_cpus=nb_cores).create_root()
index 751481e375d2ed4f796149c53c32bebf9d639607..047675c64b9d84e61fcbda7ed6ac041580c2e89b 100644 (file)
@@ -41,5 +41,5 @@
 from m5.objects import *
 from base_config import *
 
-root = BaseSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_x64,
+root = BaseSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_8x8,
                                 cpu_class=MinorCPU).create_root()
index 94131d7456eddcbbc49e271fc95a56a56144e679..8fc9a4d5f53404de3f17d5cadb4d3ca746247def 100644 (file)
@@ -38,6 +38,6 @@
 from m5.objects import *
 from base_config import *
 
-root = BaseSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_x64,
+root = BaseSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_8x8,
                                 cpu_class=DerivO3CPU,
                                 checker=True).create_root()
index 1ec4182bd684bed8bfbe3281927fd594ffdc985f..80870388dd078be87f506de929c2b7e202aff6d0 100644 (file)
@@ -42,5 +42,5 @@ from m5.objects import *
 from base_config import *
 
 nb_cores = 4
-root = BaseSESystem(mem_mode='timing', mem_class=DDR3_1600_x64,
+root = BaseSESystem(mem_mode='timing', mem_class=DDR3_1600_8x8,
                     cpu_class=DerivO3CPU, num_cpus=nb_cores).create_root()
index 3802941ab65d4197ec10ca84e386bb14b8353df4..7a829bb05bfdffd57f776a61d74a81f8f14df8d1 100644 (file)
@@ -48,10 +48,10 @@ from common.O3_ARM_v7a import O3_ARM_v7a_3
 # configuration. This makes the results more meaningful, and also
 # increases the coverage of the regressions.
 if buildEnv['TARGET_ISA'] == "arm":
-    root = ArmSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_x64,
+    root = ArmSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_8x8,
                                    cpu_class=O3_ARM_v7a_3,
                                    num_threads=2).create_root()
 else:
-    root = BaseSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_x64,
+    root = BaseSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_8x8,
                                     cpu_class=DerivO3CPU,
                                     num_threads=2).create_root()
index c573277d1a9d9f4bbfd7cb001c3a25519f29d44c..050e4050edfbe1458f3f9fe863ca31ce114db57c 100644 (file)
@@ -48,8 +48,8 @@ from common.O3_ARM_v7a import O3_ARM_v7a_3
 # configuration. This makes the results more meaningful, and also
 # increases the coverage of the regressions.
 if buildEnv['TARGET_ISA'] == "arm":
-    root = ArmSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_x64,
+    root = ArmSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_8x8,
                                    cpu_class=O3_ARM_v7a_3).create_root()
 else:
-    root = BaseSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_x64,
+    root = BaseSESystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_8x8,
                                    cpu_class=DerivO3CPU).create_root()
index ed21a9f38cfbdc9e7806c65b70efab2ba2163fff..9b63419967c55bf1eaf0e4b5ba009dcb0f9633e6 100644 (file)
@@ -39,5 +39,5 @@ from m5.objects import *
 from x86_generic import *
 
 root = LinuxX86FSSystemUniprocessor(mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=DerivO3CPU).create_root()
index 45fff460e5bd7880d9fcce3cd0b68376708dff97..5f9f19580e945079c2d98e1d5ee903c305298c5d 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from x86_generic import *
 
 root = LinuxX86FSSystemUniprocessor(mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=TimingSimpleCPU).create_root()
 
index ccae0cc76654ab4498dd1cce788ca196106d4c44..6b2bd86f806fa712bf89acad5254661c0c49618b 100644 (file)
@@ -42,7 +42,7 @@ from x86_generic import *
 import switcheroo
 
 root = LinuxX86FSSwitcheroo(
-    mem_class=DDR3_1600_x64,
+    mem_class=DDR3_1600_8x8,
     cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU)
     ).create_root()
 
index 2a78d1ed6275ac236c046ce017ab5d9e14a9fcee..ea01c245777ad5255490006b968fd26c5e05d5af 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from arm_generic import *
 
 root = LinuxArmFSSystem(mem_mode='timing',
-                        mem_class=DDR3_1600_x64,
+                        mem_class=DDR3_1600_8x8,
                         cpu_class=MinorCPU,
                         num_cpus=2).create_root()
index a577a90b9c284cd4fa72c33994a49b0899a5e7e4..486e72e09b3c2a655898cd883c1f18fe5e242588 100644 (file)
@@ -39,5 +39,5 @@ from m5.objects import *
 from arm_generic import *
 
 root = LinuxArmFSSystemUniprocessor(mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=MinorCPU).create_root()
index a2f1c7134d29a89aee2aabaa44485da112ffa1fd..b2e61d2585dede92ead74641f6de19b5323edee4 100644 (file)
@@ -40,6 +40,6 @@ from arm_generic import *
 from common.O3_ARM_v7a import O3_ARM_v7a_3
 
 root = LinuxArmFSSystemUniprocessor(mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=O3_ARM_v7a_3,
                                     checker=True).create_root()
index 9dff95ac780d23a8ce6763d5c0f0768dc13cea46..f2042cd4e803a272afd0e6d39d500fa28f39fa4b 100644 (file)
@@ -40,6 +40,6 @@ from arm_generic import *
 from common.O3_ARM_v7a import O3_ARM_v7a_3
 
 root = LinuxArmFSSystem(mem_mode='timing',
-                        mem_class=DDR3_1600_x64,
+                        mem_class=DDR3_1600_8x8,
                         cpu_class=O3_ARM_v7a_3,
                         num_cpus=2).create_root()
index ba4ddde52861651558c814259b47fadcb13f6e24..6d5752f9bfff8e946a9b4d8648de02e3e1f9fc7e 100644 (file)
@@ -40,5 +40,5 @@ from arm_generic import *
 from common.O3_ARM_v7a import O3_ARM_v7a_3
 
 root = LinuxArmFSSystemUniprocessor(mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=O3_ARM_v7a_3).create_root()
index 1744f4af0250b851be702222ae98f6a7f0c0686f..e875c1f91baeec4bc3e3f4c0d44ba04921d60b7f 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from arm_generic import *
 
 root = LinuxArmFSSystem(mem_mode='timing',
-                        mem_class=DDR3_1600_x64,
+                        mem_class=DDR3_1600_8x8,
                         cpu_class=TimingSimpleCPU,
                         num_cpus=2).create_root()
index f73823d30c95fe8fb6e31fe46c72c32644993be1..43a22b39d384f80902338f792894abf95fe73979 100644 (file)
@@ -39,5 +39,5 @@ from m5.objects import *
 from arm_generic import *
 
 root = LinuxArmFSSystemUniprocessor(mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=TimingSimpleCPU).create_root()
index 3b28691d4e94a1379d0769051aa083572aab53f9..cdecd252e67a60ac8a9c8a0584382b8178d3f475 100644 (file)
@@ -40,7 +40,7 @@ from arm_generic import *
 import switcheroo
 
 root = LinuxArmFSSwitcheroo(
-    mem_class=DDR3_1600_x64,
+    mem_class=DDR3_1600_8x8,
     cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, MinorCPU, DerivO3CPU)
     ).create_root()
 
index 864e0cfd49ecc95e5504a22cd54f32ff5cc0357c..54ed0244e090971c02a25fc9a7936424757756f3 100644 (file)
@@ -40,7 +40,7 @@ from arm_generic import *
 import switcheroo
 
 root = LinuxArmFSSwitcheroo(
-    mem_class=DDR3_1600_x64,
+    mem_class=DDR3_1600_8x8,
     cpu_classes=(DerivO3CPU, DerivO3CPU)
     ).create_root()
 
index ff09b7f260e9d089a41d3b42f88b8b4618ae79e2..5dd50169bd8feef364974c2fa11a03909efd1150 100644 (file)
@@ -40,7 +40,7 @@ from arm_generic import *
 import switcheroo
 
 root = LinuxArmFSSwitcheroo(
-    mem_class=DDR3_1600_x64,
+    mem_class=DDR3_1600_8x8,
     cpu_classes=(TimingSimpleCPU, TimingSimpleCPU)
     ).create_root()
 
index 67d8a43f365b2dbb4bdb7075e7ed2e06b369f925..7a7e21868702949694054f7dd010d14d28cfe15f 100644 (file)
@@ -40,6 +40,6 @@ from arm_generic import *
 
 root = LinuxArmFSSystem(machine_type='VExpress_EMM64',
                         mem_mode='timing',
-                        mem_class=DDR3_1600_x64,
+                        mem_class=DDR3_1600_8x8,
                         cpu_class=MinorCPU,
                         num_cpus=2).create_root()
index 4674ad59d48123e30eb084d7222a748a6b66e59a..796a36db0950eb66697a67fe6d8e54601c9a9828 100644 (file)
@@ -40,5 +40,5 @@ from arm_generic import *
 
 root = LinuxArmFSSystemUniprocessor(machine_type='VExpress_EMM64',
                                     mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=MinorCPU).create_root()
index 904f0b71859a8053dc44767491ffc088c3b20500..0d523299642251cc54383290dcc19d4f9a8c2bcd 100644 (file)
@@ -41,6 +41,6 @@ from common.O3_ARM_v7a import O3_ARM_v7a_3
 
 root = LinuxArmFSSystemUniprocessor(machine_type='VExpress_EMM64',
                                     mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=O3_ARM_v7a_3,
                                     checker=True).create_root()
index bdfaac0dc55b7a6241b737eedfd28c4039aa99c5..6675c6e3b31e1812e13dcd89e2fc6a4a1cdb5288 100644 (file)
@@ -41,6 +41,6 @@ from common.O3_ARM_v7a import O3_ARM_v7a_3
 
 root = LinuxArmFSSystem(machine_type='VExpress_EMM64',
                         mem_mode='timing',
-                        mem_class=DDR3_1600_x64,
+                        mem_class=DDR3_1600_8x8,
                         cpu_class=O3_ARM_v7a_3,
                         num_cpus=2).create_root()
index b54defa731469912f8b8968b06cf05366e27a5b2..090db1e63cae3021d188d181b71ffc1eb745c433 100644 (file)
@@ -41,5 +41,5 @@ from common.O3_ARM_v7a import O3_ARM_v7a_3
 
 root = LinuxArmFSSystemUniprocessor(machine_type='VExpress_EMM64',
                                     mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=O3_ARM_v7a_3).create_root()
index 34f1245e099585d617b624805655ce219edce48f..fe1e67dd1ad5120a707b4550bc7def13e0cce83b 100644 (file)
@@ -40,6 +40,6 @@ from arm_generic import *
 
 root = LinuxArmFSSystem(machine_type='VExpress_EMM64',
                         mem_mode='timing',
-                        mem_class=DDR3_1600_x64,
+                        mem_class=DDR3_1600_8x8,
                         cpu_class=TimingSimpleCPU,
                         num_cpus=2).create_root()
index 6d9068d92c490b5c5ce1834f11feda00e85c63d1..fb2844e96bc479e6f7288d1a271b8f2f413227e4 100644 (file)
@@ -40,5 +40,5 @@ from arm_generic import *
 
 root = LinuxArmFSSystemUniprocessor(machine_type='VExpress_EMM64',
                                     mem_mode='timing',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=DDR3_1600_8x8,
                                     cpu_class=TimingSimpleCPU).create_root()
index b9f28a4a9b623d12420c82ffba8b70a0417d0586..6033e4992f526791f441fc59f0ec335f4e4343e2 100644 (file)
@@ -41,7 +41,7 @@ import switcheroo
 
 root = LinuxArmFSSwitcheroo(
     machine_type='VExpress_EMM64',
-    mem_class=DDR3_1600_x64,
+    mem_class=DDR3_1600_8x8,
     cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, MinorCPU, DerivO3CPU)
     ).create_root()
 
index 7ed9dbf7a2638efa024bacf87c818010e66fed25..065e1e004031759e36b454b5ea46935d023be36d 100644 (file)
@@ -41,7 +41,7 @@ import switcheroo
 
 root = LinuxArmFSSwitcheroo(
     machine_type='VExpress_EMM64',
-    mem_class=DDR3_1600_x64,
+    mem_class=DDR3_1600_8x8,
     cpu_classes=(DerivO3CPU, DerivO3CPU)
     ).create_root()
 
index 1dd481fe2e826c34f161ba2883f85777dbaaeb28..6be68339db71ff1f43bd4363429ff54c578b0bb9 100644 (file)
@@ -41,7 +41,7 @@ import switcheroo
 
 root = LinuxArmFSSwitcheroo(
     machine_type='VExpress_EMM64',
-    mem_class=DDR3_1600_x64,
+    mem_class=DDR3_1600_8x8,
     cpu_classes=(TimingSimpleCPU, TimingSimpleCPU)
     ).create_root()
 
index 292c7e5b9b428e53df8e24af6226c18d4dbff6ea..c6d4deef95e3216c211eca588f91bb8a0a4fcdd3 100644 (file)
@@ -49,7 +49,7 @@ cpu = TrafficGen(
     config_file=srcpath("tests/quick/se/70.tgen/tgen-dram-ctrl.cfg"))
 
 # system simulated
-system = System(cpu = cpu, physmem = DDR3_1600_x64(),
+system = System(cpu = cpu, physmem = DDR3_1600_8x8(),
                 membus = IOXBar(width = 16),
                 clk_domain = SrcClockDomain(clock = '1GHz',
                                             voltage_domain =
index 747a45d22cdf591dd5b958444ca096ad228f250d..241dd4e95d9f3c537af6988c52b9c6b079b64982 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from alpha_generic import *
 
 root = LinuxAlphaFSSystem(mem_mode='timing',
-                          mem_class=DDR3_1600_x64,
+                          mem_class=DDR3_1600_8x8,
                           cpu_class=MinorCPU,
                           num_cpus=2).create_root()
index b234442d38c59dc5e2de2c426aceaa55c91e9bf6..a202f5cba5fdc0dba0e501d9d852c385b2909462 100644 (file)
@@ -39,5 +39,5 @@ from m5.objects import *
 from alpha_generic import *
 
 root = LinuxAlphaFSSystemUniprocessor(mem_mode='timing',
-                                      mem_class=DDR3_1600_x64,
+                                      mem_class=DDR3_1600_8x8,
                                       cpu_class=MinorCPU).create_root()
index b50cda5572870f2ae36d6c92a913d36bea84a0f6..849b70727fb91bdb2bdf476510854242386bbf71 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from alpha_generic import *
 
 root = LinuxAlphaFSSystem(mem_mode='timing',
-                          mem_class=DDR3_1600_x64,
+                          mem_class=DDR3_1600_8x8,
                           cpu_class=DerivO3CPU,
                           num_cpus=2).create_root()
index dbbc75e1ced2fe69ffa39da515df7cd4f1b2e08e..b62a782138233931c597b72a3bda4d1e5a3668fd 100644 (file)
@@ -39,5 +39,5 @@ from m5.objects import *
 from alpha_generic import *
 
 root = LinuxAlphaFSSystemUniprocessor(mem_mode='timing',
-                                      mem_class=DDR3_1600_x64,
+                                      mem_class=DDR3_1600_8x8,
                                       cpu_class=DerivO3CPU).create_root()
index 5b8a99ca67d2a5073d7cd22664118f10f6b35b4d..a4653c2d4a2b7a03fec09909d8968dc66d95d99b 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from alpha_generic import *
 
 root = LinuxAlphaFSSystem(mem_mode='timing',
-                          mem_class=DDR3_1600_x64,
+                          mem_class=DDR3_1600_8x8,
                           cpu_class=TimingSimpleCPU,
                           num_cpus=2).create_root()
index 082f79d1ed19db4842d6b4a3b60ca917cc26a788..b19a8f95d4758dc0a510398dee0c4252204db4e6 100644 (file)
@@ -39,5 +39,5 @@ from m5.objects import *
 from alpha_generic import *
 
 root = LinuxAlphaFSSystemUniprocessor(mem_mode='timing',
-                                      mem_class=DDR3_1600_x64,
+                                      mem_class=DDR3_1600_8x8,
                                       cpu_class=TimingSimpleCPU).create_root()
index 121e669b416ae74b28ae03f9653e56b5d265d6f8..d684cfdc5c1aaabb6d45cb3a154a3dbd359275db 100644 (file)
@@ -40,7 +40,7 @@ from alpha_generic import *
 import switcheroo
 
 root = LinuxAlphaFSSwitcheroo(
-    mem_class=DDR3_1600_x64,
+    mem_class=DDR3_1600_8x8,
     cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU)
     ).create_root()