clock_domain.hh (10249:6bbb7ae309ac) clock_domain.hh (10395:77b9f96786c1)
1/*
2 * Copyright (c) 2013-2014 ARM Limited
3 * Copyright (c) 2013 Cornell University
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

232 Tick clkPeriodAtPerfLevel() const { return freqOpPoints[perfLevel()]; }
233
234 Tick clkPeriodAtPerfLevel(PerfLevel perf_level) const
235 {
236 assert(validPerfLevel(perf_level));
237 return freqOpPoints[perf_level];
238 }
239
1/*
2 * Copyright (c) 2013-2014 ARM Limited
3 * Copyright (c) 2013 Cornell University
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

232 Tick clkPeriodAtPerfLevel() const { return freqOpPoints[perfLevel()]; }
233
234 Tick clkPeriodAtPerfLevel(PerfLevel perf_level) const
235 {
236 assert(validPerfLevel(perf_level));
237 return freqOpPoints[perf_level];
238 }
239
240 void startup();
240 void serialize(std::ostream &os);
241 void unserialize(Checkpoint *cp, const std::string &section);
242
243 private:
244 /**
245 * List of possible frequency operational points, should be in
246 * descending order
247 * An empty list corresponds to default frequency specified for its

--- 55 unchanged lines hidden ---
241 void serialize(std::ostream &os);
242 void unserialize(Checkpoint *cp, const std::string &section);
243
244 private:
245 /**
246 * List of possible frequency operational points, should be in
247 * descending order
248 * An empty list corresponds to default frequency specified for its

--- 55 unchanged lines hidden ---