gem5  v20.1.0.0
clock_domain.cc
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 
39 #include "sim/clock_domain.hh"
40 
41 #include <algorithm>
42 #include <functional>
43 
44 #include "base/trace.hh"
45 #include "debug/ClockDomain.hh"
46 #include "params/ClockDomain.hh"
47 #include "params/DerivedClockDomain.hh"
48 #include "params/SrcClockDomain.hh"
49 #include "sim/clocked_object.hh"
50 #include "sim/voltage_domain.hh"
51 
53  : Stats::Group(&cd),
54  ADD_STAT(clock, "Clock period in ticks")
55 {
56  // Expose the current clock period as a stat for observability in
57  // the dumps
58  clock.scalar(cd._clockPeriod);
59 }
60 
62  : SimObject(p),
63  _clockPeriod(0),
64  _voltageDomain(voltage_domain),
65  stats(*this)
66 {
67 }
68 
69 double
71 {
72  return _voltageDomain->voltage();
73 }
74 
76  ClockDomain(p, p->voltage_domain),
77  freqOpPoints(p->clock),
78  _domainID(p->domain_id),
79  _perfLevel(p->init_perf_level)
80 {
81  VoltageDomain *vdom = p->voltage_domain;
82 
83  fatal_if(freqOpPoints.empty(), "DVFS: Empty set of frequencies for "\
84  "domain %d %s\n", _domainID, name());
85 
86  fatal_if(!vdom, "DVFS: Empty voltage domain specified for "\
87  "domain %d %s\n", _domainID, name());
88 
89  fatal_if((vdom->numVoltages() > 1) &&
90  (vdom->numVoltages() != freqOpPoints.size()),
91  "DVFS: Number of frequency and voltage scaling points do "\
92  "not match: %d:%d ID: %d %s.\n", vdom->numVoltages(),
93  freqOpPoints.size(), _domainID, name());
94 
95  // Frequency (& voltage) points should be declared in descending order,
96  // NOTE: Frequency is inverted to ticks, so checking for ascending ticks
97  fatal_if(!std::is_sorted(freqOpPoints.begin(), freqOpPoints.end()),
98  "DVFS: Frequency operation points not in descending order for "\
99  "domain with ID %d\n", _domainID);
100 
101  fatal_if(_perfLevel >= freqOpPoints.size(), "DVFS: Initial DVFS point %d "\
102  "is outside of list for Domain ID: %d\n", _perfLevel, _domainID);
103 
105 
106  vdom->registerSrcClockDom(this);
107 }
108 
109 void
111 {
112  if (clock_period == 0) {
113  fatal("%s has a clock period of zero\n", name());
114  }
115 
116  // Align all members to the current tick
117  for (auto m = members.begin(); m != members.end(); ++m) {
118  (*m)->updateClockPeriod();
119  }
120 
121  _clockPeriod = clock_period;
122 
124  "Setting clock period to %d ticks for source clock %s\n",
125  _clockPeriod, name());
126 
127  // inform any derived clocks they need to updated their period
128  for (auto c = children.begin(); c != children.end(); ++c) {
129  (*c)->updateClockPeriod();
130  }
131 }
132 
133 void
135 {
136  assert(validPerfLevel(perf_level));
137 
138  if (perf_level == _perfLevel) {
139  // Silently ignore identical overwrites
140  return;
141  }
142 
143  DPRINTF(ClockDomain, "DVFS: Switching performance level of domain %s "\
144  "(id: %d) from %d to %d\n", name(), domainID(), _perfLevel,
145  perf_level);
146 
147  _perfLevel = perf_level;
148 
150 }
151 
153 {
154  // Signal the voltage domain that we have changed our perf level so that the
155  // voltage domain can recompute its performance level
157 
158  // Integrated switching of the actual clock value, too
160 }
161 
162 void
164 {
167 }
168 
169 void
171 {
174 }
175 
176 void
178 {
179  // Perform proper clock update when all related components have been
180  // created (i.e. after unserialization / object creation)
182 }
183 
185 SrcClockDomainParams::create()
186 {
187  return new SrcClockDomain(this);
188 }
189 
191  ClockDomain(p, p->clk_domain->voltageDomain()),
192  parent(*p->clk_domain),
193  clockDivider(p->clk_divider)
194 {
195  // Ensure that clock divider setting works as frequency divider and never
196  // work as frequency multiplier
197  if (clockDivider < 1) {
198  fatal("Clock divider param cannot be less than 1");
199  }
200 
201  // let the parent keep track of this derived domain so that it can
202  // propagate changes
203  parent.addDerivedDomain(this);
204 
205  // update our clock period based on the parents clock
207 }
208 
209 void
211 {
212  // Align all members to the current tick
213  for (auto m = members.begin(); m != members.end(); ++m) {
214  (*m)->updateClockPeriod();
215  }
216 
217  // recalculate the clock period, relying on the fact that changes
218  // propagate downwards in the tree
220 
222  "Setting clock period to %d ticks for derived clock %s\n",
223  _clockPeriod, name());
224 
225  // inform any derived clocks
226  for (auto c = children.begin(); c != children.end(); ++c) {
227  (*c)->updateClockPeriod();
228  }
229 }
230 
232 DerivedClockDomainParams::create()
233 {
234  return new DerivedClockDomain(this);
235 }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
Stats::ValueBase::scalar
Derived & scalar(T &value)
Definition: statistics.hh:864
voltage_domain.hh
UNSERIALIZE_SCALAR
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:797
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
VoltageDomain::voltage
double voltage() const
Get the current voltage.
Definition: voltage_domain.hh:67
SrcClockDomain::perfLevel
PerfLevel perfLevel() const
Definition: clock_domain.hh:211
VoltageDomain::numVoltages
uint32_t numVoltages() const
Definition: voltage_domain.hh:84
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
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
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
SimObject::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: sim_object.hh:265
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
VoltageDomain::registerSrcClockDom
void registerSrcClockDom(SrcClockDomain *src_clock_dom)
Register a SrcClockDomain with this voltage domain.
Definition: voltage_domain.hh:102
SrcClockDomain::_domainID
const uint32_t _domainID
Software recognizable id number for the domain, should be unique for each domain.
Definition: clock_domain.hh:255
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:234
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:67
VoltageDomain::sanitiseVoltages
bool sanitiseVoltages()
Recomputes the highest (fastest, i.e., numerically lowest) requested performance level of all associa...
Definition: voltage_domain.cc:80
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
SimObject::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: sim_object.hh:264
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
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:790
ClockDomain::voltageDomain
VoltageDomain * voltageDomain() const
Get the voltage domain.
Definition: clock_domain.hh:124
clock_domain.hh
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:133
ClockDomain::addDerivedDomain
void addDerivedDomain(DerivedClockDomain *clock_domain)
Add a derived domain.
Definition: clock_domain.hh:139
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
clocked_object.hh
ClockDomain::ClockDomain
ClockDomain(const Params *p, VoltageDomain *voltage_domain)
Definition: clock_domain.cc:61
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
Stats
Definition: statistics.cc:61
trace.hh
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
ArmISA::cd
Bitfield< 32 > cd
Definition: miscregs_types.hh:248
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:219
CheckpointIn
Definition: serialize.hh:67
ClockDomain::clockPeriod
Tick clockPeriod() const
Get the clock period.
Definition: clock_domain.hh:105
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
ArmISA::m
Bitfield< 0 > m
Definition: miscregs_types.hh:389
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