gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
clock_domain.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2014, 2019 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
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions are
17  * met: redistributions of source code must retain the above copyright
18  * notice, this list of conditions and the following disclaimer;
19  * redistributions in binary form must reproduce the above copyright
20  * notice, this list of conditions and the following disclaimer in the
21  * documentation and/or other materials provided with the distribution;
22  * neither the name of the copyright holders nor the names of its
23  * contributors may be used to endorse or promote products derived from
24  * this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37  *
38  * Authors: Vasileios Spiliopoulos
39  * Akash Bagdia
40  * Christopher Torng
41  * Stephan Diestelhorst
42  */
43 
49 #ifndef __SIM_CLOCK_DOMAIN_HH__
50 #define __SIM_CLOCK_DOMAIN_HH__
51 
52 #include <algorithm>
53 
54 #include "base/statistics.hh"
55 #include "params/ClockDomain.hh"
56 #include "params/DerivedClockDomain.hh"
57 #include "params/SrcClockDomain.hh"
58 #include "sim/sim_object.hh"
59 
63 class DerivedClockDomain;
64 class VoltageDomain;
65 class Clocked;
66 
73 class ClockDomain : public SimObject
74 {
75  protected:
76 
82 
87 
93 
99 
100  public:
101 
102  typedef ClockDomainParams Params;
103  ClockDomain(const Params *p, VoltageDomain *voltage_domain);
104 
110  Tick clockPeriod() const { return _clockPeriod; }
111 
118  {
119  assert(c != NULL);
120  assert(std::find(members.begin(), members.end(), c) == members.end());
121  members.push_back(c);
122  }
123 
129  inline VoltageDomain *voltageDomain() const { return _voltageDomain; }
130 
131 
137  double voltage() const;
138 
145  { children.push_back(clock_domain); }
146 
147  private:
149  {
151 
156  } stats;
157 };
158 
169 {
170 
171  public:
172 
173  typedef SrcClockDomainParams Params;
174  SrcClockDomain(const Params *p);
175 
180  void clockPeriod(Tick clock_period);
181 
182  // Explicitly import the otherwise hidden clockPeriod
184 
185  typedef int32_t DomainID;
186  static const DomainID emptyDomainID = -1;
187 
191  uint32_t domainID() const { return _domainID; }
192 
193  typedef uint32_t PerfLevel;
202  bool validPerfLevel(PerfLevel perf_level) const {
203  return perf_level < numPerfLevels();
204  }
205 
211  void perfLevel(PerfLevel perf_level);
212 
216  PerfLevel perfLevel() const { return _perfLevel; }
217 
223  PerfLevel numPerfLevels() const {return freqOpPoints.size();}
224 
229  Tick clkPeriodAtPerfLevel() const { return freqOpPoints[perfLevel()]; }
230 
231  Tick clkPeriodAtPerfLevel(PerfLevel perf_level) const
232  {
233  assert(validPerfLevel(perf_level));
234  return freqOpPoints[perf_level];
235  }
236 
237  void startup() override;
238 
239  void serialize(CheckpointOut &cp) const override;
240  void unserialize(CheckpointIn &cp) override;
241 
242  private:
246  void signalPerfLevelUpdate();
247 
255 
260  const uint32_t _domainID;
261 
268  PerfLevel _perfLevel;
269 };
270 
278 {
279 
280  public:
281 
282  typedef DerivedClockDomainParams Params;
283  DerivedClockDomain(const Params *p);
284 
290  void updateClockPeriod();
291 
292  private:
293 
299 
303  const uint64_t clockDivider;
304 };
305 
306 #endif
VoltageDomain * voltageDomain() const
Get the voltage domain.
Stats::Value clock
Stat to report clock period of clock domain.
void addDerivedDomain(DerivedClockDomain *clock_domain)
Add a derived domain.
DerivedClockDomainParams Params
const uint64_t clockDivider
Local clock divider of the domain.
VoltageDomain * _voltageDomain
Voltage domain this clock domain belongs to.
Definition: clock_domain.hh:86
ClockDomainParams Params
Definition: cprintf.cc:42
PerfLevel perfLevel() const
Declaration of Statistics objects.
ClockDomainStats(ClockDomain &cd)
Definition: clock_domain.cc:58
const uint32_t _domainID
Software recognizable id number for the domain, should be unique for each domain. ...
STL vector class.
Definition: stl.hh:40
Tick clkPeriodAtPerfLevel(PerfLevel perf_level) const
uint32_t PerfLevel
The derived clock domains provides the notion of a clock domain that is connected to a parent clock d...
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: sim_object.hh:214
const std::vector< Tick > freqOpPoints
List of possible frequency operational points, should be in descending order An empty list correspond...
bool validPerfLevel(PerfLevel perf_level) const
Checks whether the performance level requested exists in the current domain configuration.
uint64_t Tick
Tick count type.
Definition: types.hh:63
ClockDomain & parent
Reference to the parent clock domain this clock domain derives its clock period from.
Tick clkPeriodAtPerfLevel() const
Helper class for objects that need to be clocked.
A VoltageDomain is used to group clock domains that operate under the same voltage.
Statistics container.
Definition: group.hh:85
PerfLevel numPerfLevels() const
Get the number of available performance levels for this clock domain.
The source clock domains provides the notion of a clock domain that is connected to a tunable clock s...
uint32_t domainID() const
Bitfield< 29 > c
std::vector< DerivedClockDomain * > children
Pointers to potential derived clock domains so we can propagate changes.
Definition: clock_domain.hh:92
The ClockDomain provides clock to group of clocked objects bundled under the same clock domain...
Definition: clock_domain.hh:73
std::vector< Clocked * > members
Pointers to members of this clock domain, so that when the clock period changes, we can update each m...
Definition: clock_domain.hh:98
std::ostream CheckpointOut
Definition: serialize.hh:68
ClockDomain(const Params *p, VoltageDomain *voltage_domain)
Definition: clock_domain.cc:67
void registerWithClockDomain(Clocked *c)
Register a Clocked object with this ClockDomain.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: sim_object.hh:215
Bitfield< 32 > cd
Tick _clockPeriod
Pre-computed clock period in ticks.
Definition: clock_domain.hh:81
Bitfield< 0 > p
SrcClockDomainParams Params
std::vector< Info * > stats
Definition: group.hh:177
PerfLevel _perfLevel
Current performance level the domain is set to.
double voltage() const
Get the current voltage this clock domain operates at.
Definition: clock_domain.cc:76
Abstract superclass for simulation objects.
Definition: sim_object.hh:96
Tick clockPeriod() const
Get the clock period.
virtual void startup()
startup() is the final initialization call before simulation.
Definition: sim_object.cc:99

Generated on Fri Feb 28 2020 16:27:02 for gem5 by doxygen 1.8.13