From e23e5eeeb85e0f98ca51ec8532c02a52a3e8c78b Mon Sep 17 00:00:00 2001
From: Markus Hubig <mhubig@imko.de>
Date: Thu, 16 Aug 2012 08:22:08 +0000
Subject: [PATCH] arm: Adds board_postclk_init to the init_sequence.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The board_postclk_init() function can be used to perform operations
that requires a working timer early within the U-Boot init_sequence.

Signed-off-by: Markus Hubig <mhubig@imko.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
---
 arch/arm/lib/board.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
index f1951e883e1..109a1ac7528 100644
--- a/arch/arm/lib/board.c
+++ b/arch/arm/lib/board.c
@@ -241,6 +241,9 @@ init_fnc_t *init_sequence[] = {
 	fdtdec_check_fdt,
 #endif
 	timer_init,		/* initialize timer */
+#ifdef CONFIG_BOARD_POSTCLK_INIT
+	board_postclk_init,
+#endif
 #ifdef CONFIG_FSL_ESDHC
 	get_clocks,
 #endif
-- 
GitLab