From: Michal Simek Date: Wed, 11 Jul 2018 12:08:26 +0000 (+0200) Subject: microblaze: Do not call timer init that early X-Git-Tag: v2018.09-rc1~141^2~32 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=35670665d6b6176566b5701c078d5103c1ec4c86;p=oweals%2Fu-boot.git microblaze: Do not call timer init that early Timer needs to be converted to DM but as of now it can't be called so early because intc controller is not ready. Call it later in board_r.c. Before this patch timer_init is called twice which is wrong. The patch is blocking initialization before relocation. Signed-off-by: Michal Simek Reviewed-by: Simon Glass --- diff --git a/arch/microblaze/cpu/timer.c b/arch/microblaze/cpu/timer.c index ef229023bf..58e5c30750 100644 --- a/arch/microblaze/cpu/timer.c +++ b/arch/microblaze/cpu/timer.c @@ -51,6 +51,10 @@ int timer_init (void) debug("TIMER: Initialization\n"); + /* Do not init before relocation */ + if (!(gd->flags & GD_FLG_RELOC)) + return 0; + node = fdt_node_offset_by_compatible(blob, node, "xlnx,xps-timer-1.00.a"); if (node != -1) {