From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michal Simek Date: Fri, 29 May 2020 13:34:59 +0200 Subject: [PATCH] board: xilinx/zynqmp: Remove 1-second delay at boot In-Reply-To: <20200526082026.18898-1-mike.looijmans@topic.nl> References: <20200526082026.18898-1-mike.looijmans@topic.nl> Message-ID: <282075e1-fbcd-fd19-7dbd-fb78fb832efb@xilinx.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 > --- > 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 > #include > #include > -#include > #include > #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