U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] imx8qxp_mek: Start with USDHC2 unpowered
@ 2020-04-15 18:01 Fabio Estevam
  2020-04-16  1:03 ` Peng Fan
  2020-04-18 10:51 ` sbabic at denx.de
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2020-04-15 18:01 UTC (permalink / raw)
  To: u-boot

After triggering a "reboot" command in Linux the following
hang in SPL is observed:

U-Boot SPL 2020.04 (Apr 15 2020 - 10:49:29 -0300)
Normal Boot
WDT:   Not found!
Trying to boot from MMC2_2
spl: mmc init failed with error: -70
SPL: failed to boot from all boot devices
### ERROR ### Please RESET the board ###

This error happens because the CMD_ERR bit is set in the IRQ status
register after booting from Linux.

To ensure a fresh start, force the VMMC supply to get unpowered first.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/imx8qxp_mek/spl.c | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/board/freescale/imx8qxp_mek/spl.c b/board/freescale/imx8qxp_mek/spl.c
index cb4006eb2a..e4e4cbe716 100644
--- a/board/freescale/imx8qxp_mek/spl.c
+++ b/board/freescale/imx8qxp_mek/spl.c
@@ -12,9 +12,24 @@
 #include <dm/uclass-internal.h>
 #include <dm/device-internal.h>
 #include <dm/lists.h>
+#include <asm/io.h>
+#include <asm/gpio.h>
+#include <asm/arch/sci/sci.h>
+#include <asm/arch/imx8-pins.h>
+#include <asm/arch/iomux.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
+#define GPIO_PAD_CTRL	((SC_PAD_CONFIG_NORMAL << PADRING_CONFIG_SHIFT) | \
+			 (SC_PAD_ISO_OFF << PADRING_LPCONFIG_SHIFT) | \
+			 (SC_PAD_28FDSOI_DSE_DV_HIGH << PADRING_DSE_SHIFT) | \
+			 (SC_PAD_28FDSOI_PS_PU << PADRING_PULL_SHIFT))
+
+#define USDHC2_SD_PWR IMX_GPIO_NR(4, 19)
+static iomux_cfg_t usdhc2_sd_pwr[] = {
+	SC_P_USDHC1_RESET_B | MUX_PAD_CTRL(GPIO_PAD_CTRL),
+};
+
 void spl_board_init(void)
 {
 	struct udevice *dev;
@@ -32,6 +47,9 @@ void spl_board_init(void)
 
 	timer_init();
 
+	imx8_iomux_setup_multiple_pads(usdhc2_sd_pwr, ARRAY_SIZE(usdhc2_sd_pwr));
+	gpio_direction_output(USDHC2_SD_PWR, 0);
+
 	preloader_console_init();
 
 	puts("Normal Boot\n");
-- 
2.17.1

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

* [PATCH] imx8qxp_mek: Start with USDHC2 unpowered
  2020-04-15 18:01 [PATCH] imx8qxp_mek: Start with USDHC2 unpowered Fabio Estevam
@ 2020-04-16  1:03 ` Peng Fan
  2020-04-18 10:51 ` sbabic at denx.de
  1 sibling, 0 replies; 3+ messages in thread
From: Peng Fan @ 2020-04-16  1:03 UTC (permalink / raw)
  To: u-boot

> Subject: [PATCH] imx8qxp_mek: Start with USDHC2 unpowered
> 
> After triggering a "reboot" command in Linux the following hang in SPL is
> observed:
> 
> U-Boot SPL 2020.04 (Apr 15 2020 - 10:49:29 -0300) Normal Boot
> WDT:   Not found!
> Trying to boot from MMC2_2
> spl: mmc init failed with error: -70
> SPL: failed to boot from all boot devices ### ERROR ### Please RESET the
> board ###
> 
> This error happens because the CMD_ERR bit is set in the IRQ status register
> after booting from Linux.
> 
> To ensure a fresh start, force the VMMC supply to get unpowered first.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> ---
>  board/freescale/imx8qxp_mek/spl.c | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
> 
> diff --git a/board/freescale/imx8qxp_mek/spl.c
> b/board/freescale/imx8qxp_mek/spl.c
> index cb4006eb2a..e4e4cbe716 100644
> --- a/board/freescale/imx8qxp_mek/spl.c
> +++ b/board/freescale/imx8qxp_mek/spl.c
> @@ -12,9 +12,24 @@
>  #include <dm/uclass-internal.h>
>  #include <dm/device-internal.h>
>  #include <dm/lists.h>
> +#include <asm/io.h>
> +#include <asm/gpio.h>
> +#include <asm/arch/sci/sci.h>
> +#include <asm/arch/imx8-pins.h>
> +#include <asm/arch/iomux.h>
> 
>  DECLARE_GLOBAL_DATA_PTR;
> 
> +#define GPIO_PAD_CTRL	((SC_PAD_CONFIG_NORMAL <<
> PADRING_CONFIG_SHIFT) | \
> +			 (SC_PAD_ISO_OFF << PADRING_LPCONFIG_SHIFT) | \
> +			 (SC_PAD_28FDSOI_DSE_DV_HIGH << PADRING_DSE_SHIFT) |
> \
> +			 (SC_PAD_28FDSOI_PS_PU << PADRING_PULL_SHIFT))
> +
> +#define USDHC2_SD_PWR IMX_GPIO_NR(4, 19) static iomux_cfg_t
> +usdhc2_sd_pwr[] = {
> +	SC_P_USDHC1_RESET_B | MUX_PAD_CTRL(GPIO_PAD_CTRL), };
> +
>  void spl_board_init(void)
>  {
>  	struct udevice *dev;
> @@ -32,6 +47,9 @@ void spl_board_init(void)
> 
>  	timer_init();
> 
> +	imx8_iomux_setup_multiple_pads(usdhc2_sd_pwr,
> ARRAY_SIZE(usdhc2_sd_pwr));
> +	gpio_direction_output(USDHC2_SD_PWR, 0);
> +
>  	preloader_console_init();
> 
>  	puts("Normal Boot\n");
> --
> 2.17.1

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

* [PATCH] imx8qxp_mek: Start with USDHC2 unpowered
  2020-04-15 18:01 [PATCH] imx8qxp_mek: Start with USDHC2 unpowered Fabio Estevam
  2020-04-16  1:03 ` Peng Fan
@ 2020-04-18 10:51 ` sbabic at denx.de
  1 sibling, 0 replies; 3+ messages in thread
From: sbabic at denx.de @ 2020-04-18 10:51 UTC (permalink / raw)
  To: u-boot

> After triggering a "reboot" command in Linux the following
> hang in SPL is observed:
> U-Boot SPL 2020.04 (Apr 15 2020 - 10:49:29 -0300)
> Normal Boot
> WDT:   Not found!
> Trying to boot from MMC2_2
> spl: mmc init failed with error: -70
> SPL: failed to boot from all boot devices
> ### ERROR ### Please RESET the board ###
> This error happens because the CMD_ERR bit is set in the IRQ status
> register after booting from Linux.
> To ensure a fresh start, force the VMMC supply to get unpowered first.
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> Reviewed-by: Peng Fan <peng.fan@nxp.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

end of thread, other threads:[~2020-04-18 10:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-15 18:01 [PATCH] imx8qxp_mek: Start with USDHC2 unpowered Fabio Estevam
2020-04-16  1:03 ` Peng Fan
2020-04-18 10:51 ` sbabic at denx.de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox