gem5  v20.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 
44 #ifndef __SIM_CLOCK_DOMAIN_HH__
45 #define __SIM_CLOCK_DOMAIN_HH__
46 
47 #include <algorithm>
48 
49 #include "base/statistics.hh"
50 #include "params/ClockDomain.hh"
51 #include "params/DerivedClockDomain.hh"
52 #include "params/SrcClockDomain.hh"
53 #include "sim/sim_object.hh"
54 
58 class DerivedClockDomain;
59 class VoltageDomain;
60 class Clocked;
61 
68 class ClockDomain : public SimObject
69 {
70  protected:
71 
77 
82 
88 
94 
95  public:
96 
97  typedef ClockDomainParams Params;
98  ClockDomain(const Params *p, VoltageDomain *voltage_domain);
99 
105  Tick clockPeriod() const { return _clockPeriod; }
106 
113  {
114  assert(c != NULL);
115  assert(std::find(members.begin(), members.end(), c) == members.end());
116  members.push_back(c);
117  }
118 
124  inline VoltageDomain *voltageDomain() const { return _voltageDomain; }
125 
126 
132  double voltage() const;
133 
140  { children.push_back(clock_domain); }
141 
142  private:
144  {
146 
151  } stats;
152 };
153 
164 {
165 
166  public:
167 
168  typedef SrcClockDomainParams Params;
169  SrcClockDomain(const Params *p);
170 
175  void clockPeriod(Tick clock_period);
176 
177  // Explicitly import the otherwise hidden clockPeriod
179 
180  typedef int32_t DomainID;
181  static const DomainID emptyDomainID = -1;
182 
186  uint32_t domainID() const { return _domainID; }
187 
188  typedef uint32_t PerfLevel;
197  bool validPerfLevel(PerfLevel perf_level) const {
198  return perf_level < numPerfLevels();
199  }
200 
206  void perfLevel(PerfLevel perf_level);
207 
211  PerfLevel perfLevel() const { return _perfLevel; }
212 
218  PerfLevel numPerfLevels() const {return freqOpPoints.size();}
219 
224  Tick clkPeriodAtPerfLevel() const { return freqOpPoints[perfLevel()]; }
225 
226  Tick clkPeriodAtPerfLevel(PerfLevel perf_level) const
227  {
228  assert(validPerfLevel(perf_level));
229  return freqOpPoints[perf_level];
230  }
231 
232  void startup() override;
233 
234  void serialize(CheckpointOut &cp) const override;
235  void unserialize(CheckpointIn &cp) override;
236 
237  private:
241  void signalPerfLevelUpdate();
242 
250 
255  const uint32_t _domainID;
256 
263  PerfLevel _perfLevel;
264 };
265 
273 {
274 
275  public:
276 
277  typedef DerivedClockDomainParams Params;
278  DerivedClockDomain(const Params *p);
279 
285  void updateClockPeriod();
286 
287  private:
288 
294 
298  const uint64_t clockDivider;
299 };
300 
301 #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:81
ClockDomainParams Params
Definition: clock_domain.hh:97
Definition: cprintf.cc:40
PerfLevel perfLevel() const
Declaration of Statistics objects.
ClockDomainStats(ClockDomain &cd)
Definition: clock_domain.cc:52
const uint32_t _domainID
Software recognizable id number for the domain, should be unique for each domain. ...
STL vector class.
Definition: stl.hh:37
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:243
virtual void startup()
startup() is the final initialization call before simulation.
Definition: sim_object.cc:96
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:61
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:83
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:87
The ClockDomain provides clock to group of clocked objects bundled under the same clock domain...
Definition: clock_domain.hh:68
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:93
std::ostream CheckpointOut
Definition: serialize.hh:63
ClockDomain(const Params *p, VoltageDomain *voltage_domain)
Definition: clock_domain.cc:61
void registerWithClockDomain(Clocked *c)
Register a Clocked object with this ClockDomain.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: sim_object.hh:244
Bitfield< 32 > cd
Tick _clockPeriod
Pre-computed clock period in ticks.
Definition: clock_domain.hh:76
Bitfield< 0 > p
SrcClockDomainParams Params
std::vector< Info * > stats
Definition: group.hh:212
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:70
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
Tick clockPeriod() const
Get the clock period.

Generated on Thu May 28 2020 16:21:35 for gem5 by doxygen 1.8.13