summaryrefslogtreecommitdiff
path: root/src/sim/sub_system.hh
diff options
context:
space:
mode:
authorDavid Guillen Fandos <david.guillen@arm.com>2016-04-05 10:52:28 -0500
committerDavid Guillen Fandos <david.guillen@arm.com>2016-04-05 10:52:28 -0500
commitf902c0218ae3a8df558f1427302fbf0931b8f7d7 (patch)
treeb82de4efdff69b2511941fe9312fa9e96601f710 /src/sim/sub_system.hh
parent1c34ee20dfbbd557e394d61825232b10c0f3d37f (diff)
downloadgem5-f902c0218ae3a8df558f1427302fbf0931b8f7d7.tar.xz
power: Add 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. Finally, the thermal model is updated to use the power usage as input.
Diffstat (limited to 'src/sim/sub_system.hh')
-rw-r--r--src/sim/sub_system.hh17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/sim/sub_system.hh b/src/sim/sub_system.hh
index 6e35be676..ec25d7056 100644
--- a/src/sim/sub_system.hh
+++ b/src/sim/sub_system.hh
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2014 ARM Limited
+ * Copyright (c) 2014-2015 ARM Limited
* All rights reserved
*
* The license below extends only to copyright in the software and shall
@@ -45,10 +45,14 @@
#ifndef __SIM_SUB_SYSTEM_HH__
#define __SIM_SUB_SYSTEM_HH__
+#include <vector>
+
#include "params/SubSystem.hh"
#include "sim/power/thermal_domain.hh"
#include "sim/sim_object.hh"
+class PowerModel;
+
/**
* The SubSystem simobject does nothing, it is just a container for
* other simobjects used by the configuration system
@@ -58,6 +62,17 @@ class SubSystem : public SimObject
public:
typedef SubSystemParams Params;
SubSystem(const Params *p);
+
+ double getDynamicPower() const;
+
+ double getStaticPower() const;
+
+ void registerPowerProducer(PowerModel *pm) {
+ powerProducers.push_back(pm);
+ }
+
+ protected:
+ std::vector<PowerModel*> powerProducers;
};
#endif