All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] board: xilinx/zynqmp: Remove 1-second delay at boot
@ 2020-05-26  8:20 Mike Looijmans
  2020-05-29 11:34 ` Michal Simek
  0 siblings, 1 reply; 2+ messages in thread
From: Mike Looijmans @ 2020-05-26  8:20 UTC (permalink / raw)
  To: u-boot

SPL boot is slow on the ZynqMP because of this delay. The initialization done
in psu_init no longer requires an external delay, so this can be removed to
speed up the SPL boot flow considerably.

Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl>
---
 board/xilinx/zynqmp/zynqmp.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c
index cb72914adb..d00235f236 100644
--- a/board/xilinx/zynqmp/zynqmp.c
+++ b/board/xilinx/zynqmp/zynqmp.c
@@ -32,7 +32,6 @@
 #include <zynqmp_firmware.h>
 #include <g_dnl.h>
 #include <linux/bitops.h>
-#include <linux/delay.h>
 #include <linux/sizes.h>
 #include "../common/board.h"
 
@@ -334,9 +333,6 @@ int board_early_init_f(void)
 	ret = psu_init();
 	if (ret)
 		return ret;
-
-	/* Delay is required for clocks to be propagated */
-	udelay(1000000);
 #endif
 
 #ifdef CONFIG_DEBUG_UART
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH] board: xilinx/zynqmp: Remove 1-second delay at boot
  2020-05-26  8:20 [PATCH] board: xilinx/zynqmp: Remove 1-second delay at boot Mike Looijmans
@ 2020-05-29 11:34 ` Michal Simek
  0 siblings, 0 replies; 2+ messages in thread
From: Michal Simek @ 2020-05-29 11:34 UTC (permalink / raw)
  To: u-boot

On 26. 05. 20 10:20, Mike Looijmans wrote:
> SPL boot is slow on the ZynqMP because of this delay. The initialization done
> in psu_init no longer requires an external delay, so this can be removed to
> speed up the SPL boot flow considerably.
> 
> Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl>
> ---
>  board/xilinx/zynqmp/zynqmp.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c
> index cb72914adb..d00235f236 100644
> --- a/board/xilinx/zynqmp/zynqmp.c
> +++ b/board/xilinx/zynqmp/zynqmp.c
> @@ -32,7 +32,6 @@
>  #include <zynqmp_firmware.h>
>  #include <g_dnl.h>
>  #include <linux/bitops.h>
> -#include <linux/delay.h>
>  #include <linux/sizes.h>
>  #include "../common/board.h"
>  
> @@ -334,9 +333,6 @@ int board_early_init_f(void)
>  	ret = psu_init();
>  	if (ret)
>  		return ret;
> -
> -	/* Delay is required for clocks to be propagated */
> -	udelay(1000000);
>  #endif
>  
>  #ifdef CONFIG_DEBUG_UART
> 

Mike reported me that removing this 1s is causing issue in SD boot mode
that's why I am not applying this patch till we root caused it.

Thanks,
Michal

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-05-29 11:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-26  8:20 [PATCH] board: xilinx/zynqmp: Remove 1-second delay at boot Mike Looijmans
2020-05-29 11:34 ` Michal Simek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.