diff options
author | Cagdas Dirik <cdirik@micron.com> | 2015-01-03 17:51:48 -0600 |
---|---|---|
committer | Cagdas Dirik <cdirik@micron.com> | 2015-01-03 17:51:48 -0600 |
commit | 02c376ac44584484268bd714a45fa0f0265a896a (patch) | |
tree | 8bcd4be1ea858883cf68cc40e1142aaca1b8e6e3 /src/dev/mips/malta_io.cc | |
parent | 1ee70e9d84b769b736348e1f7709bc8ede344ec2 (diff) | |
download | gem5-02c376ac44584484268bd714a45fa0f0265a896a.tar.xz |
dev: prevent RTC events firing before startup
This change includes edits to MC146818 timer to prevent RTC events
firing before startup to comply with SimObject initialization call sequence.
Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'src/dev/mips/malta_io.cc')
-rwxr-xr-x | src/dev/mips/malta_io.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dev/mips/malta_io.cc b/src/dev/mips/malta_io.cc index d769b1112..6797a054c 100755 --- a/src/dev/mips/malta_io.cc +++ b/src/dev/mips/malta_io.cc @@ -142,6 +142,12 @@ MaltaIO::unserialize(Checkpoint *cp, const string §ion) rtc.unserialize("rtc", cp, section); } +void +MaltaIO::startup() +{ + rtc.startup(); +} + MaltaIO * MaltaIOParams::create() { |