cpu: Apply the ARM TLB rework to the O3 checker CPU.
[gem5.git] / src / mem / DRAMCtrl.py
index 93ea7d56fdc9be2e5d74c5d9b505444303eb94f9..14db3d3c9d7bc775345a70a1a69c6dae8a728ab9 100644 (file)
@@ -135,6 +135,10 @@ class DRAMCtrl(QoSMemCtrl):
     # to be instantiated for a multi-channel configuration
     channels = Param.Unsigned(1, "Number of channels")
 
+    # Enable DRAM powerdown states if True. This is False by default due to
+    # performance being lower when enabled
+    enable_dram_powerdown = Param.Bool(False, "Enable powerdown states")
+
     # For power modelling we need to know if the DRAM has a DLL or not
     dll = Param.Bool(True, "DRAM has DLL or not")