From: Chris Emmons Date: Thu, 5 May 2011 01:38:26 +0000 (-0500) Subject: RealView: Fix the 24 and 100MHz clocks which were providing incorrect values. X-Git-Tag: stable_2012_02_02~351 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8dcbf8576e3d3a1664ab1917ec7d9c3204435420;p=gem5.git RealView: Fix the 24 and 100MHz clocks which were providing incorrect values. --- diff --git a/src/dev/arm/rv_ctrl.cc b/src/dev/arm/rv_ctrl.cc index 6716dd75f..f9cdbe8a1 100644 --- a/src/dev/arm/rv_ctrl.cc +++ b/src/dev/arm/rv_ctrl.cc @@ -62,12 +62,12 @@ RealViewCtrl::read(PacketPtr pkt) break; case Clock24: Tick clk; - clk = (Tick)(curTick() / (24 * SimClock::Float::MHz)); + clk = (Tick)(curTick() / (24 * SimClock::Int::us)); pkt->set((uint32_t)(clk)); break; case Clock100: Tick clk100; - clk100 = (Tick)(curTick() / (100 * SimClock::Float::MHz)); + clk100 = (Tick)(curTick() / (100 * SimClock::Int::us)); pkt->set((uint32_t)(clk100)); break; case Flash: