summaryrefslogtreecommitdiff
path: root/src/cpu/samsung
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2013-07-31 22:50:21 -0700
committerPatrick Georgi <patrick@georgi-clan.de>2013-12-21 21:02:17 +0100
commit88fdd930ac91e21887545911acbbd08b68707d0f (patch)
tree06d40c426101f0b7452802e4ed3afa7af902bf50 /src/cpu/samsung
parent61cd11187d17db572069f0af8434aeac38f19448 (diff)
downloadcoreboot-88fdd930ac91e21887545911acbbd08b68707d0f.tar.xz
exynos5250: Add mct_start to the timer init blob in timer_monotonic_get
A previous change removed init_timer from timer_monotonic_get because its old implementation set up the PWM based timer which was going away. It would still be a good idea to initialize the timer at that point, just not the pwm. Change-Id: I4816710ec2c9d5ca53b704c6b9397bcfac183fdc Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://gerrit.chromium.org/gerrit/64160 Reviewed-by: Ronald G. Minnich <rminnich@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> Reviewed-on: http://review.coreboot.org/4419 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/cpu/samsung')
-rw-r--r--src/cpu/samsung/exynos5250/monotonic_timer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/samsung/exynos5250/monotonic_timer.c b/src/cpu/samsung/exynos5250/monotonic_timer.c
index d46d02a8d3..57e3ae3104 100644
--- a/src/cpu/samsung/exynos5250/monotonic_timer.c
+++ b/src/cpu/samsung/exynos5250/monotonic_timer.c
@@ -37,6 +37,7 @@ void timer_monotonic_get(struct mono_time *mt)
uint64_t usecs_elapsed;
if (!mono_counter.initialized) {
+ mct_start();
mono_counter.last_value = mct_raw_value();
mono_counter.initialized = 1;
}