gem5
v20.1.0.0
|
DVFS Handler class, maintains a list of all the domains it can handle. More...
#include <dvfs_handler.hh>
Classes | |
struct | UpdateEvent |
Update performance level event, encapsulates all the required information for a future call to change a domain's performance level. More... | |
Public Types | |
typedef DVFSHandlerParams | Params |
typedef SrcClockDomain::DomainID | DomainID |
typedef SrcClockDomain::PerfLevel | PerfLevel |
Public Types inherited from SimObject | |
typedef SimObjectParams | Params |
Public Member Functions | |
DVFSHandler (const Params *p) | |
uint32_t | numDomains () const |
Get the number of domains assigned to this DVFS handler. More... | |
DomainID | domainID (uint32_t index) const |
Get the n-th domain ID, from the domains managed by this handler. More... | |
bool | validDomainID (DomainID domain_id) const |
Check whether a domain ID is known to the handler or not. More... | |
Tick | transLatency () const |
Get transition latency to switch between performance levels. More... | |
bool | perfLevel (DomainID domain_id, PerfLevel perf_level) |
Set a new performance level for the specified domain. More... | |
PerfLevel | perfLevel (DomainID domain_id) const |
Get the current performance level of a domain. More... | |
Tick | clkPeriodAtPerfLevel (DomainID domain_id, PerfLevel perf_level) const |
Read the clock period of the specified domain at the specified performance level. More... | |
double | voltageAtPerfLevel (DomainID domain_id, PerfLevel perf_level) const |
Read the voltage of the specified domain at the specified performance level. More... | |
PerfLevel | numPerfLevels (PerfLevel domain_id) const |
Get the total number of available performance levels. More... | |
bool | isEnabled () const |
Check enable status of the DVFS handler, when the handler is disabled, no request should be sent to the handler. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
Public Member Functions inherited from SimObject | |
const Params * | params () const |
SimObject (const Params *_params) | |
virtual | ~SimObject () |
virtual const std::string | name () const |
virtual void | init () |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
virtual void | loadState (CheckpointIn &cp) |
loadState() is called on each SimObject when restoring from a checkpoint. More... | |
virtual void | initState () |
initState() is called on each SimObject when not restoring from a checkpoint. More... | |
virtual void | regProbePoints () |
Register probe points for this object. More... | |
virtual void | regProbeListeners () |
Register probe listeners for this object. More... | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. More... | |
virtual Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) |
Get a port with a given name and index. More... | |
virtual void | startup () |
startup() is the final initialization call before simulation. More... | |
DrainState | drain () override |
Provide a default implementation of the drain interface for objects that don't need draining. More... | |
virtual void | memWriteback () |
Write back dirty buffers to memory using functional writes. More... | |
virtual void | memInvalidate () |
Invalidate the contents of memory buffers. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
Public Member Functions inherited from EventManager | |
EventQueue * | eventQueue () const |
void | schedule (Event &event, Tick when) |
void | deschedule (Event &event) |
void | reschedule (Event &event, Tick when, bool always=false) |
void | schedule (Event *event, Tick when) |
void | deschedule (Event *event) |
void | reschedule (Event *event, Tick when, bool always=false) |
void | wakeupEventQueue (Tick when=(Tick) -1) |
This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers. More... | |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
Event manger manages events in the event queue. More... | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
Public Member Functions inherited from Serializable | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
Public Member Functions inherited from Drainable | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
Public Member Functions inherited from Stats::Group | |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. More... | |
virtual | ~Group () |
virtual void | regStats () |
Callback to set stat parameters. More... | |
virtual void | resetStats () |
Callback to reset stats. More... | |
virtual void | preDumpStats () |
Callback before stats are dumped. More... | |
void | addStat (Stats::Info *info) |
Register a stat with this group. More... | |
const std::map< std::string, Group * > & | getStatGroups () const |
Get all child groups associated with this object. More... | |
const std::vector< Info * > & | getStats () const |
Get all stats associated with this object. More... | |
void | addStatGroup (const char *name, Group *block) |
Add a stat block as a child of this block. More... | |
const Info * | resolveStat (std::string name) const |
Resolve a stat by its name within this group. More... | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Private Types | |
typedef std::map< DomainID, SrcClockDomain * > | Domains |
typedef std::map< DomainID, UpdateEvent > | UpdatePerfLevelEvents |
Private Member Functions | |
SrcClockDomain * | findDomain (DomainID domain_id) const |
Search for a domain based on the domain ID. More... | |
Private Attributes | |
Domains | domains |
std::vector< DomainID > | domainIDList |
List of IDs avaiable in the domain list. More... | |
SrcClockDomain * | sysClkDomain |
Clock domain of the system the handler is instantiated. More... | |
bool | enableHandler |
Disabling the DVFS handler ensures that all the DVFS migration requests are ignored. More... | |
const Tick | _transLatency |
This corresponds to the maximum transition latency associated with the hardware transitioning from a particular performance level to the other. More... | |
UpdatePerfLevelEvents | updatePerfLevelEvents |
Map from domain IDs -> perf level update events, records in-flight change requests per domain ID. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from SimObject | |
static void | serializeAll (CheckpointOut &cp) |
Serialize all SimObjects in the system. More... | |
static SimObject * | find (const char *name) |
Find the SimObject with the given name and return a pointer to it. More... | |
Static Public Member Functions inherited from Serializable | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
Serializes all the SimObjects. More... | |
static void | unserializeGlobals (CheckpointIn &cp) |
Protected Member Functions inherited from Drainable | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
Protected Attributes inherited from SimObject | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
Protected Attributes inherited from EventManager | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
DVFS Handler class, maintains a list of all the domains it can handle.
Each entry of that list is an object of the DomainConfig class, and the handler uses the methods provided by that class to get access to the configuration of each domain. The handler is responsible for setting/getting clock periods and voltages from clock/voltage domains. The handler acts the bridge between software configurable information for each domain as provided to the controller and the hardware implementation details for those domains.
Definition at line 67 of file dvfs_handler.hh.
Definition at line 73 of file dvfs_handler.hh.
|
private |
Definition at line 177 of file dvfs_handler.hh.
typedef DVFSHandlerParams DVFSHandler::Params |
Definition at line 70 of file dvfs_handler.hh.
Definition at line 74 of file dvfs_handler.hh.
|
private |
Definition at line 252 of file dvfs_handler.hh.
DVFSHandler::DVFSHandler | ( | const Params * | p | ) |
Definition at line 57 of file dvfs_handler.cc.
References ArmISA::d, ArmISA::dit, domainIDList, domains, DVFSHandler::UpdateEvent::dvfsHandler, SrcClockDomain::emptyDomainID, fatal_if, MipsISA::p, sysClkDomain, and updatePerfLevelEvents.
Read the clock period of the specified domain at the specified performance level.
domain_id | Domain ID to query |
perf_level | Performance level of interest |
Definition at line 131 of file dvfs_handler.hh.
References ArmISA::d, findDomain(), ArmISA::n, SimObject::name(), and warn.
Referenced by EnergyCtrl::read().
DVFSHandler::DomainID DVFSHandler::domainID | ( | uint32_t | index | ) | const |
Get the n-th domain ID, from the domains managed by this handler.
Definition at line 93 of file dvfs_handler.cc.
References domainIDList, domains, fatal_if, MipsISA::index, and numDomains().
Referenced by EnergyCtrl::read().
|
inlineprivate |
Search for a domain based on the domain ID.
domain_id | Domain ID to search for |
Definition at line 196 of file dvfs_handler.hh.
References domains, and panic_if.
Referenced by clkPeriodAtPerfLevel(), numPerfLevels(), perfLevel(), DVFSHandler::UpdateEvent::updatePerfLevel(), and voltageAtPerfLevel().
|
inline |
Check enable status of the DVFS handler, when the handler is disabled, no request should be sent to the handler.
Definition at line 171 of file dvfs_handler.hh.
References enableHandler.
Referenced by perfLevel(), EnergyCtrl::read(), EnergyCtrl::startup(), validDomainID(), and EnergyCtrl::write().
|
inline |
Get the number of domains assigned to this DVFS handler.
Definition at line 80 of file dvfs_handler.hh.
References domainIDList.
Referenced by domainID(), and EnergyCtrl::read().
Get the total number of available performance levels.
domain_id | Domain ID to query |
Definition at line 161 of file dvfs_handler.hh.
References findDomain(), and SrcClockDomain::numPerfLevels().
Referenced by EnergyCtrl::read().
Get the current performance level of a domain.
While a change request is in-flight, will return the current (i.e. old, unmodified) value.
domain_id | Domain ID to query |
Definition at line 118 of file dvfs_handler.hh.
References findDomain(), isEnabled(), and SrcClockDomain::perfLevel().
Set a new performance level for the specified domain.
The actual update will be delayed by transLatency().
domain_id | Software visible ID of the domain to be configured |
perf_level | Requested performance level (0 - fast, >0 slower) |
Definition at line 117 of file dvfs_handler.cc.
References _transLatency, curTick(), ArmISA::d, EventManager::deschedule(), DPRINTF, findDomain(), isEnabled(), DVFSHandler::UpdateEvent::perfLevelToSet, EventManager::schedule(), Event::scheduled(), updatePerfLevelEvents, and warn.
Referenced by EnergyCtrl::read(), and EnergyCtrl::write().
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 196 of file dvfs_handler.cc.
References enableHandler, MipsISA::event, SERIALIZE_CONTAINER, SERIALIZE_SCALAR, and updatePerfLevelEvents.
|
inline |
Get transition latency to switch between performance levels.
Definition at line 99 of file dvfs_handler.hh.
References _transLatency.
Referenced by EnergyCtrl::read(), and EnergyCtrl::write().
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 223 of file dvfs_handler.cc.
References DVFSHandler::UpdateEvent::dvfsHandler, enableHandler, MipsISA::event, ArmISA::i, EventManager::schedule(), UNSERIALIZE_CONTAINER, UNSERIALIZE_SCALAR, updatePerfLevelEvents, and warn.
bool DVFSHandler::validDomainID | ( | DomainID | domain_id | ) | const |
Check whether a domain ID is known to the handler or not.
domain_id | Domain ID to check |
Definition at line 104 of file dvfs_handler.cc.
References domains, isEnabled(), and warn.
Referenced by EnergyCtrl::write().
Read the voltage of the specified domain at the specified performance level.
domain_id | Domain ID to query |
perf_level | Performance level of interest |
Definition at line 172 of file dvfs_handler.cc.
References ArmISA::d, DPRINTF, findDomain(), ArmISA::n, SimObject::name(), ClockDomain::voltageDomain(), and warn.
Referenced by EnergyCtrl::read().
|
private |
This corresponds to the maximum transition latency associated with the hardware transitioning from a particular performance level to the other.
Definition at line 214 of file dvfs_handler.hh.
Referenced by perfLevel(), and transLatency().
|
private |
List of IDs avaiable in the domain list.
Definition at line 183 of file dvfs_handler.hh.
Referenced by domainID(), DVFSHandler(), and numDomains().
|
private |
Definition at line 178 of file dvfs_handler.hh.
Referenced by domainID(), DVFSHandler(), findDomain(), and validDomainID().
|
private |
Disabling the DVFS handler ensures that all the DVFS migration requests are ignored.
Domains remain at their default frequency and voltage.
Definition at line 207 of file dvfs_handler.hh.
Referenced by isEnabled(), serialize(), and unserialize().
|
private |
Clock domain of the system the handler is instantiated.
Definition at line 188 of file dvfs_handler.hh.
Referenced by DVFSHandler().
|
private |
Map from domain IDs -> perf level update events, records in-flight change requests per domain ID.
Definition at line 257 of file dvfs_handler.hh.
Referenced by DVFSHandler(), perfLevel(), serialize(), and unserialize().