diff options
Diffstat (limited to 'src/cpu/BaseCPU.py')
-rw-r--r-- | src/cpu/BaseCPU.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpu/BaseCPU.py b/src/cpu/BaseCPU.py index 0e131ae0a..1bf2c1e35 100644 --- a/src/cpu/BaseCPU.py +++ b/src/cpu/BaseCPU.py @@ -138,6 +138,10 @@ class BaseCPU(MemObject): pwr_gating_latency = Param.Cycles(300, "Latency to enter power gating state when all contexts are suspended") + power_gating_on_idle = Param.Bool(False, "Control whether the core goes "\ + "to the OFF power state after all thread are disabled for "\ + "pwr_gating_latency cycles") + function_trace = Param.Bool(False, "Enable function trace") function_trace_start = Param.Tick(0, "Tick to start function trace") |