From ebc9e1d426f7dbe13b63d87afbdf8507265f8040 Mon Sep 17 00:00:00 2001 From: Sascha Bischoff Date: Fri, 1 Apr 2016 16:22:44 +0100 Subject: sim: Fix clock_domain unserialization This patch addresses an issue with the unserialization of clock domains. Previously, the previous performance level was not restored due to a bug in the code, which detected the post-unserialize update as superfluous. This patch splits the setting of the clock domain into two parts. The original interface of perfLevel is retained, but the actual update takes place in signalPerfLevelUpdate, which is private to the class. The perfLevel method checks that if the new performance level is different to the previous performance level, and will only call signalPerfLevelUpdate if there is a change. Therefore, the performance level is only updated, and voltage domains notified, if there is an actual change. The split functionality allows signalPerfLevelUpdate to be called by startup() to explicitly force an update post unserialization. --- src/sim/clock_domain.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/sim/clock_domain.cc') diff --git a/src/sim/clock_domain.cc b/src/sim/clock_domain.cc index 60c688b1a..1ccee7f1d 100644 --- a/src/sim/clock_domain.cc +++ b/src/sim/clock_domain.cc @@ -147,6 +147,11 @@ SrcClockDomain::perfLevel(PerfLevel perf_level) _perfLevel = perf_level; + signalPerfLevelUpdate(); +} + +void SrcClockDomain::signalPerfLevelUpdate() +{ // Signal the voltage domain that we have changed our perf level so that the // voltage domain can recompute its performance level voltageDomain()->sanitiseVoltages(); @@ -174,7 +179,7 @@ SrcClockDomain::startup() { // Perform proper clock update when all related components have been // created (i.e. after unserialization / object creation) - perfLevel(_perfLevel); + signalPerfLevelUpdate(); } SrcClockDomain * -- cgit v1.2.3