dvfs_handler.hh (10398:d65768b9ffc2) dvfs_handler.hh (10905:a6ca6831e775)
1/*
2 * Copyright (c) 2013-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 184 unchanged lines hidden (view full) ---

193
194 /**
195 * Check enable status of the DVFS handler, when the handler is disabled, no
196 * request should be sent to the handler.
197 * @return True, if the handler is enabled
198 */
199 bool isEnabled() const { return enableHandler; }
200
1/*
2 * Copyright (c) 2013-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 184 unchanged lines hidden (view full) ---

193
194 /**
195 * Check enable status of the DVFS handler, when the handler is disabled, no
196 * request should be sent to the handler.
197 * @return True, if the handler is enabled
198 */
199 bool isEnabled() const { return enableHandler; }
200
201 void serialize(std::ostream &os);
202 void unserialize(Checkpoint *cp, const std::string &section);
201 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
202 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
203
204 private:
205 typedef std::map<DomainID, SrcClockDomain*> Domains;
206 Domains domains;
207
208 /**
209 * List of IDs avaiable in the domain list
210 */

--- 78 unchanged lines hidden ---
203
204 private:
205 typedef std::map<DomainID, SrcClockDomain*> Domains;
206 Domains domains;
207
208 /**
209 * List of IDs avaiable in the domain list
210 */

--- 78 unchanged lines hidden ---