summaryrefslogtreecommitdiff
path: root/src/sim/ClockedObject.py
diff options
context:
space:
mode:
authorDavid Guillen Fandos <david.guillen@arm.com>2016-06-06 17:16:44 +0100
committerDavid Guillen Fandos <david.guillen@arm.com>2016-06-06 17:16:44 +0100
commit7cfb59d6e580bac0d663bc22da315aed7746fdeb (patch)
treed600a1e07357e2a56c0a73f0f41b2d6eff59c2d3 /src/sim/ClockedObject.py
parentfb5fc11da49938660ea22c336964677cdba890e1 (diff)
downloadgem5-7cfb59d6e580bac0d663bc22da315aed7746fdeb.tar.xz
sim: Adding support for power models
This patch adds some basic support for power models in gem5. The power interface is defined so it can interact with thermal models as well. It implements a simple power evaluator that can be used for simple power models that express power in the form of a math expression. These expressions can use stats within the same SimObject (or down its hierarchy) and some magic variables such as "temp" for temperature. In future patches we will extend this functionality to allow slightly more complex expressions. The model allows it to be extended to use other kinds of models. Change-Id: I76752f9638b6815e229fd74cdcb7721a305cbc4b
Diffstat (limited to 'src/sim/ClockedObject.py')
-rw-r--r--src/sim/ClockedObject.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sim/ClockedObject.py b/src/sim/ClockedObject.py
index 2b742ec1e..c8bf809be 100644
--- a/src/sim/ClockedObject.py
+++ b/src/sim/ClockedObject.py
@@ -66,6 +66,9 @@ class ClockedObject(SimObject):
# parent's clock domain by default
clk_domain = Param.ClockDomain(Parent.clk_domain, "Clock domain")
+ # Power model for this ClockedObject
+ power_model = Param.PowerModel(NULL, "Power model")
+
# Provide initial power state, should ideally get redefined in startup
# routine
default_p_state = Param.PwrState("UNDEFINED", "Default Power State")