gem5  v20.1.0.0
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 
225 
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 
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
SrcClockDomain::numPerfLevels
PerfLevel numPerfLevels() const
Get the number of available performance levels for this clock domain.
Definition: clock_domain.hh:218
SrcClockDomain::clkPeriodAtPerfLevel
Tick clkPeriodAtPerfLevel(PerfLevel perf_level) const
Definition: clock_domain.hh:226
Clocked
Helper class for objects that need to be clocked.
Definition: clocked_object.hh:59
SrcClockDomain::freqOpPoints
const std::vector< Tick > freqOpPoints
List of possible frequency operational points, should be in descending order An empty list correspond...
Definition: clock_domain.hh:249
SrcClockDomain::perfLevel
PerfLevel perfLevel() const
Definition: clock_domain.hh:211
ClockDomain::voltage
double voltage() const
Get the current voltage this clock domain operates at.
Definition: clock_domain.cc:70
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:63
SrcClockDomain
The source clock domains provides the notion of a clock domain that is connected to a tunable clock s...
Definition: clock_domain.hh:163
DerivedClockDomain
The derived clock domains provides the notion of a clock domain that is connected to a parent clock d...
Definition: clock_domain.hh:272
DerivedClockDomain::updateClockPeriod
void updateClockPeriod()
Called by the parent clock domain to propagate changes.
Definition: clock_domain.cc:210
std::vector< DerivedClockDomain * >
SrcClockDomain::validPerfLevel
bool validPerfLevel(PerfLevel perf_level) const
Checks whether the performance level requested exists in the current domain configuration.
Definition: clock_domain.hh:197
SrcClockDomain::emptyDomainID
static const DomainID emptyDomainID
Definition: clock_domain.hh:181
Stats::Value
Definition: statistics.hh:2561
ClockDomain::_voltageDomain
VoltageDomain * _voltageDomain
Voltage domain this clock domain belongs to.
Definition: clock_domain.hh:81
SrcClockDomain::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: clock_domain.cc:170
ClockDomain::stats
ClockDomain::ClockDomainStats stats
ClockDomain
The ClockDomain provides clock to group of clocked objects bundled under the same clock domain.
Definition: clock_domain.hh:68
SrcClockDomain::clkPeriodAtPerfLevel
Tick clkPeriodAtPerfLevel() const
Definition: clock_domain.hh:224
SrcClockDomain::domainID
uint32_t domainID() const
Definition: clock_domain.hh:186
SrcClockDomain::_perfLevel
PerfLevel _perfLevel
Current performance level the domain is set to.
Definition: clock_domain.hh:263
cp
Definition: cprintf.cc:40
ClockDomain::members
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
sim_object.hh
SrcClockDomain::_domainID
const uint32_t _domainID
Software recognizable id number for the domain, should be unique for each domain.
Definition: clock_domain.hh:255
statistics.hh
ClockDomain::ClockDomainStats::ClockDomainStats
ClockDomainStats(ClockDomain &cd)
Definition: clock_domain.cc:52
ClockDomain::Params
ClockDomainParams Params
Definition: clock_domain.hh:97
VoltageDomain
A VoltageDomain is used to group clock domains that operate under the same voltage.
Definition: voltage_domain.hh:53
DerivedClockDomain::parent
ClockDomain & parent
Reference to the parent clock domain this clock domain derives its clock period from.
Definition: clock_domain.hh:293
ClockDomain::ClockDomainStats::clock
Stats::Value clock
Stat to report clock period of clock domain.
Definition: clock_domain.hh:150
DerivedClockDomain::DerivedClockDomain
DerivedClockDomain(const Params *p)
Definition: clock_domain.cc:190
ClockDomain::voltageDomain
VoltageDomain * voltageDomain() const
Get the voltage domain.
Definition: clock_domain.hh:124
ClockDomain::ClockDomainStats
Definition: clock_domain.hh:143
ClockDomain::addDerivedDomain
void addDerivedDomain(DerivedClockDomain *clock_domain)
Add a derived domain.
Definition: clock_domain.hh:139
SrcClockDomain::Params
SrcClockDomainParams Params
Definition: clock_domain.hh:168
SrcClockDomain::SrcClockDomain
SrcClockDomain(const Params *p)
Definition: clock_domain.cc:75
SrcClockDomain::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: clock_domain.cc:163
ClockDomain::children
std::vector< DerivedClockDomain * > children
Pointers to potential derived clock domains so we can propagate changes.
Definition: clock_domain.hh:87
ClockDomain::ClockDomain
ClockDomain(const Params *p, VoltageDomain *voltage_domain)
Definition: clock_domain.cc:61
Stats::Group
Statistics container.
Definition: group.hh:83
DerivedClockDomain::clockDivider
const uint64_t clockDivider
Local clock divider of the domain.
Definition: clock_domain.hh:298
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:63
SrcClockDomain::signalPerfLevelUpdate
void signalPerfLevelUpdate()
Inform other components about the changed performance level.
Definition: clock_domain.cc:152
ArmISA::c
Bitfield< 29 > c
Definition: miscregs_types.hh:50
DerivedClockDomain::Params
DerivedClockDomainParams Params
Definition: clock_domain.hh:277
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
ArmISA::cd
Bitfield< 32 > cd
Definition: miscregs_types.hh:248
ClockDomain::registerWithClockDomain
void registerWithClockDomain(Clocked *c)
Register a Clocked object with this ClockDomain.
Definition: clock_domain.hh:112
CheckpointIn
Definition: serialize.hh:67
ClockDomain::clockPeriod
Tick clockPeriod() const
Get the clock period.
Definition: clock_domain.hh:105
SrcClockDomain::DomainID
int32_t DomainID
Definition: clock_domain.hh:180
SrcClockDomain::PerfLevel
uint32_t PerfLevel
Definition: clock_domain.hh:188
ClockDomain::_clockPeriod
Tick _clockPeriod
Pre-computed clock period in ticks.
Definition: clock_domain.hh:76
SrcClockDomain::startup
void startup() override
startup() is the final initialization call before simulation.
Definition: clock_domain.cc:177
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:92

Generated on Wed Sep 30 2020 14:02:14 for gem5 by doxygen 1.8.17