SE/FS: Remove System::platform and Platform::intrFrequency.
authorGabe Black <gblack@eecs.umich.edu>
Fri, 30 Sep 2011 07:29:07 +0000 (00:29 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Fri, 30 Sep 2011 07:29:07 +0000 (00:29 -0700)
commite2dbe59f5dd63ad7a84df701dfbd033320cb8bf9
tree17b37b6883a251c9c3913b61e1ee6896ff407833
parent91dd72a99a784d4f895ae6e0ff36eed873aab9fe
SE/FS: Remove System::platform and Platform::intrFrequency.

In order for a system object to work in SE mode and FS mode, it has to either
always require a platform object even in SE mode, or get rid of the
requirement all together. Making SE mode carry around unnecessary/unused bits
of FS seems less than ideal, so I decided to go with the second option. The
platform pointer in the System class was used for exactly one purpose, a path
for the Alpha Linux system object to get to the real time clock and read its
frequency so that it could short cut the loops_per_jiffy calculation. There
was also a copy and pasted implementation in MIPS, but since it was only there
because it was there in Alpha I still count that as one use.

This change reverses the mechanism that communicates the RTC frequency so that
the Tsunami platform object pushes it up to the AlphaSystem object. This is
slightly less specific than it could be because really only the
AlphaLinuxSystem uses it. Because the intrFrequency function on the Platform
class was no longer necessary (and unimplemented on anything but Alpha) it was
eliminated.

After this change, a platform will need to have a system, but a system won't
have to have a platform.
17 files changed:
src/arch/alpha/linux/system.cc
src/arch/alpha/system.cc
src/arch/alpha/system.hh
src/arch/mips/linux/system.cc
src/dev/alpha/backdoor.cc
src/dev/alpha/tsunami.cc
src/dev/alpha/tsunami.hh
src/dev/arm/realview.cc
src/dev/arm/realview.hh
src/dev/mips/malta.cc
src/dev/mips/malta.hh
src/dev/platform.hh
src/dev/sparc/t1000.cc
src/dev/sparc/t1000.hh
src/dev/x86/pc.cc
src/dev/x86/pc.hh
src/sim/system.hh