All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/5] imx8mm_evk: Select the watchdog driver
@ 2020-05-11 14:00 Fabio Estevam
  2020-05-11 14:00 ` [PATCH 2/5] imx8mn_ddr4_evk: " Fabio Estevam
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Fabio Estevam @ 2020-05-11 14:00 UTC (permalink / raw)
  To: u-boot

Currently the watchdog driver is not selected, which causes the following
warnings in both SPL and U-Boot proper:

U-Boot SPL 2020.07-rc1-00387-g67887903af (May 07 2020 - 23:49:27 -0300)
Normal Boot
WDT:   Started without servicing (60s timeout)
Trying to boot from MMC1


U-Boot 2020.07-rc1-00387-g67887903af (May 07 2020 - 23:49:27 -0300)

CPU:   Freescale i.MX8MMQ rev1.0 at 1200 MHz
Reset cause: POR
Model: FSL i.MX8MM EVK board
DRAM:  2 GiB
WDT:   Started without servicing (60s timeout)
....

System reboots after staying 60s in the U-Boot prompt.

Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
properly serviced.

Suggested-by: Marek Vasut <marex@denx.de>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx8mm_evk_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/imx8mm_evk_defconfig b/configs/imx8mm_evk_defconfig
index 9a72f46f27..e7abf6b07c 100644
--- a/configs/imx8mm_evk_defconfig
+++ b/configs/imx8mm_evk_defconfig
@@ -85,5 +85,4 @@ CONFIG_SPL_SYSRESET=y
 CONFIG_SYSRESET_PSCI=y
 CONFIG_SYSRESET_WATCHDOG=y
 CONFIG_DM_THERMAL=y
-# CONFIG_WATCHDOG is not set
 CONFIG_IMX_WATCHDOG=y
-- 
2.17.1

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

* [PATCH 2/5] imx8mn_ddr4_evk: Select the watchdog driver
  2020-05-11 14:00 [PATCH 1/5] imx8mm_evk: Select the watchdog driver Fabio Estevam
@ 2020-05-11 14:00 ` Fabio Estevam
  2020-06-08 17:23   ` sbabic at denx.de
  2020-05-11 14:00 ` [PATCH 3/5] imx8mm_beacon: " Fabio Estevam
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 12+ messages in thread
From: Fabio Estevam @ 2020-05-11 14:00 UTC (permalink / raw)
  To: u-boot

Currently watchdog driver is not selected, which causes system to reboot
after staying 60s in the U-Boot prompt.

Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
properly serviced.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx8mn_ddr4_evk_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/imx8mn_ddr4_evk_defconfig b/configs/imx8mn_ddr4_evk_defconfig
index bc6014d73a..7fd443f37e 100644
--- a/configs/imx8mn_ddr4_evk_defconfig
+++ b/configs/imx8mn_ddr4_evk_defconfig
@@ -79,5 +79,4 @@ CONFIG_SPL_SYSRESET=y
 CONFIG_SYSRESET_PSCI=y
 CONFIG_SYSRESET_WATCHDOG=y
 CONFIG_DM_THERMAL=y
-# CONFIG_WATCHDOG is not set
 CONFIG_IMX_WATCHDOG=y
-- 
2.17.1

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

* [PATCH 3/5] imx8mm_beacon: Select the watchdog driver
  2020-05-11 14:00 [PATCH 1/5] imx8mm_evk: Select the watchdog driver Fabio Estevam
  2020-05-11 14:00 ` [PATCH 2/5] imx8mn_ddr4_evk: " Fabio Estevam
@ 2020-05-11 14:00 ` Fabio Estevam
  2020-05-11 14:17   ` Adam Ford
  2020-06-08 17:23   ` sbabic at denx.de
  2020-05-11 14:00 ` [PATCH 4/5] imx8mp_evk: " Fabio Estevam
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 12+ messages in thread
From: Fabio Estevam @ 2020-05-11 14:00 UTC (permalink / raw)
  To: u-boot

Currently watchdog driver is not selected, which causes system to reboot
after staying 60s in the U-Boot prompt.

Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
properly serviced.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx8mm_beacon_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/imx8mm_beacon_defconfig b/configs/imx8mm_beacon_defconfig
index b935d72360..a518963f48 100644
--- a/configs/imx8mm_beacon_defconfig
+++ b/configs/imx8mm_beacon_defconfig
@@ -100,5 +100,4 @@ CONFIG_SPL_SYSRESET=y
 CONFIG_SYSRESET_PSCI=y
 CONFIG_SYSRESET_WATCHDOG=y
 CONFIG_DM_THERMAL=y
-# CONFIG_WATCHDOG is not set
 CONFIG_IMX_WATCHDOG=y
-- 
2.17.1

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

* [PATCH 4/5] imx8mp_evk: Select the watchdog driver
  2020-05-11 14:00 [PATCH 1/5] imx8mm_evk: Select the watchdog driver Fabio Estevam
  2020-05-11 14:00 ` [PATCH 2/5] imx8mn_ddr4_evk: " Fabio Estevam
  2020-05-11 14:00 ` [PATCH 3/5] imx8mm_beacon: " Fabio Estevam
@ 2020-05-11 14:00 ` Fabio Estevam
  2020-06-08 17:23   ` sbabic at denx.de
  2020-05-11 14:00 ` [PATCH 5/5] verdin-imx8mm: " Fabio Estevam
  2020-06-08 17:23 ` [PATCH 1/5] imx8mm_evk: " sbabic at denx.de
  4 siblings, 1 reply; 12+ messages in thread
From: Fabio Estevam @ 2020-05-11 14:00 UTC (permalink / raw)
  To: u-boot

Currently watchdog driver is not selected, which causes system to reboot
after staying 60s in the U-Boot prompt.

Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
properly serviced.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx8mp_evk_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/imx8mp_evk_defconfig b/configs/imx8mp_evk_defconfig
index 44b2935f69..0693658365 100644
--- a/configs/imx8mp_evk_defconfig
+++ b/configs/imx8mp_evk_defconfig
@@ -82,5 +82,4 @@ CONFIG_SYSRESET=y
 CONFIG_SPL_SYSRESET=y
 CONFIG_SYSRESET_PSCI=y
 CONFIG_SYSRESET_WATCHDOG=y
-# CONFIG_WATCHDOG is not set
 CONFIG_IMX_WATCHDOG=y
-- 
2.17.1

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

* [PATCH 5/5] verdin-imx8mm: Select the watchdog driver
  2020-05-11 14:00 [PATCH 1/5] imx8mm_evk: Select the watchdog driver Fabio Estevam
                   ` (2 preceding siblings ...)
  2020-05-11 14:00 ` [PATCH 4/5] imx8mp_evk: " Fabio Estevam
@ 2020-05-11 14:00 ` Fabio Estevam
  2020-05-11 15:09   ` Igor Opaniuk
  2020-06-08 17:22   ` sbabic at denx.de
  2020-06-08 17:23 ` [PATCH 1/5] imx8mm_evk: " sbabic at denx.de
  4 siblings, 2 replies; 12+ messages in thread
From: Fabio Estevam @ 2020-05-11 14:00 UTC (permalink / raw)
  To: u-boot

Currently watchdog driver is not selected, which causes system to reboot
after staying 60s in the U-Boot prompt.

Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
properly serviced.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/verdin-imx8mm_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/verdin-imx8mm_defconfig b/configs/verdin-imx8mm_defconfig
index c68b299a95..f5b6e03251 100644
--- a/configs/verdin-imx8mm_defconfig
+++ b/configs/verdin-imx8mm_defconfig
@@ -99,5 +99,4 @@ CONFIG_SPL_SYSRESET=y
 CONFIG_SYSRESET_PSCI=y
 CONFIG_SYSRESET_WATCHDOG=y
 CONFIG_DM_THERMAL=y
-# CONFIG_WATCHDOG is not set
 CONFIG_IMX_WATCHDOG=y
-- 
2.17.1

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

* [PATCH 3/5] imx8mm_beacon: Select the watchdog driver
  2020-05-11 14:00 ` [PATCH 3/5] imx8mm_beacon: " Fabio Estevam
@ 2020-05-11 14:17   ` Adam Ford
  2020-06-08 17:23   ` sbabic at denx.de
  1 sibling, 0 replies; 12+ messages in thread
From: Adam Ford @ 2020-05-11 14:17 UTC (permalink / raw)
  To: u-boot

On Mon, May 11, 2020 at 8:59 AM Fabio Estevam <festevam@gmail.com> wrote:
>
> Currently watchdog driver is not selected, which causes system to reboot
> after staying 60s in the U-Boot prompt.
>
> Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be
> properly serviced.
>
Thanks for doing that!

Reviewed-by: Adam Ford <aford173@gmail.com>

> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  configs/imx8mm_beacon_defconfig | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/configs/imx8mm_beacon_defconfig b/configs/imx8mm_beacon_defconfig
> index b935d72360..a518963f48 100644
> --- a/configs/imx8mm_beacon_defconfig
> +++ b/configs/imx8mm_beacon_defconfig
> @@ -100,5 +100,4 @@ CONFIG_SPL_SYSRESET=y
>  CONFIG_SYSRESET_PSCI=y
>  CONFIG_SYSRESET_WATCHDOG=y
>  CONFIG_DM_THERMAL=y
> -# CONFIG_WATCHDOG is not set
>  CONFIG_IMX_WATCHDOG=y
> --
> 2.17.1
>

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

* [PATCH 5/5] verdin-imx8mm: Select the watchdog driver
  2020-05-11 14:00 ` [PATCH 5/5] verdin-imx8mm: " Fabio Estevam
@ 2020-05-11 15:09   ` Igor Opaniuk
  2020-06-08 17:22   ` sbabic at denx.de
  1 sibling, 0 replies; 12+ messages in thread
From: Igor Opaniuk @ 2020-05-11 15:09 UTC (permalink / raw)
  To: u-boot

Hi Fabio,

On Mon, May 11, 2020, 17:02 Fabio Estevam <festevam@gmail.com> wrote:

> Currently watchdog driver is not selected, which causes system to reboot
> after staying 60s in the U-Boot prompt.
>
> Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be
> properly serviced.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  configs/verdin-imx8mm_defconfig | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/configs/verdin-imx8mm_defconfig
> b/configs/verdin-imx8mm_defconfig
> index c68b299a95..f5b6e03251 100644
> --- a/configs/verdin-imx8mm_defconfig
> +++ b/configs/verdin-imx8mm_defconfig
> @@ -99,5 +99,4 @@ CONFIG_SPL_SYSRESET=y
>  CONFIG_SYSRESET_PSCI=y
>  CONFIG_SYSRESET_WATCHDOG=y
>  CONFIG_DM_THERMAL=y
> -# CONFIG_WATCHDOG is not set
>  CONFIG_IMX_WATCHDOG=y
> --
> 2.17.1
>

Acked-by: Igor Opaniuk <igor.opaniuk@toradex.com>

Thanks!

>

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

* [PATCH 5/5] verdin-imx8mm: Select the watchdog driver
  2020-05-11 14:00 ` [PATCH 5/5] verdin-imx8mm: " Fabio Estevam
  2020-05-11 15:09   ` Igor Opaniuk
@ 2020-06-08 17:22   ` sbabic at denx.de
  1 sibling, 0 replies; 12+ messages in thread
From: sbabic at denx.de @ 2020-06-08 17:22 UTC (permalink / raw)
  To: u-boot

> Currently watchdog driver is not selected, which causes system to reboot
> after staying 60s in the U-Boot prompt.
> Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
> properly serviced.
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> Acked-by: Igor Opaniuk <igor.opaniuk@toradex.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] 12+ messages in thread

* [PATCH 4/5] imx8mp_evk: Select the watchdog driver
  2020-05-11 14:00 ` [PATCH 4/5] imx8mp_evk: " Fabio Estevam
@ 2020-06-08 17:23   ` sbabic at denx.de
  0 siblings, 0 replies; 12+ messages in thread
From: sbabic at denx.de @ 2020-06-08 17:23 UTC (permalink / raw)
  To: u-boot

> Currently watchdog driver is not selected, which causes system to reboot
> after staying 60s in the U-Boot prompt.
> Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
> properly serviced.
> Signed-off-by: Fabio Estevam <festevam@gmail.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] 12+ messages in thread

* [PATCH 2/5] imx8mn_ddr4_evk: Select the watchdog driver
  2020-05-11 14:00 ` [PATCH 2/5] imx8mn_ddr4_evk: " Fabio Estevam
@ 2020-06-08 17:23   ` sbabic at denx.de
  0 siblings, 0 replies; 12+ messages in thread
From: sbabic at denx.de @ 2020-06-08 17:23 UTC (permalink / raw)
  To: u-boot

> Currently watchdog driver is not selected, which causes system to reboot
> after staying 60s in the U-Boot prompt.
> Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
> properly serviced.
> Signed-off-by: Fabio Estevam <festevam@gmail.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] 12+ messages in thread

* [PATCH 3/5] imx8mm_beacon: Select the watchdog driver
  2020-05-11 14:00 ` [PATCH 3/5] imx8mm_beacon: " Fabio Estevam
  2020-05-11 14:17   ` Adam Ford
@ 2020-06-08 17:23   ` sbabic at denx.de
  1 sibling, 0 replies; 12+ messages in thread
From: sbabic at denx.de @ 2020-06-08 17:23 UTC (permalink / raw)
  To: u-boot

> Currently watchdog driver is not selected, which causes system to reboot
> after staying 60s in the U-Boot prompt.
> Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
> properly serviced.
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> Reviewed-by: Adam Ford <aford173@gmail.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] 12+ messages in thread

* [PATCH 1/5] imx8mm_evk: Select the watchdog driver
  2020-05-11 14:00 [PATCH 1/5] imx8mm_evk: Select the watchdog driver Fabio Estevam
                   ` (3 preceding siblings ...)
  2020-05-11 14:00 ` [PATCH 5/5] verdin-imx8mm: " Fabio Estevam
@ 2020-06-08 17:23 ` sbabic at denx.de
  4 siblings, 0 replies; 12+ messages in thread
From: sbabic at denx.de @ 2020-06-08 17:23 UTC (permalink / raw)
  To: u-boot

> Currently the watchdog driver is not selected, which causes the following
> warnings in both SPL and U-Boot proper:
> U-Boot SPL 2020.07-rc1-00387-g67887903af (May 07 2020 - 23:49:27 -0300)
> Normal Boot
> WDT:   Started without servicing (60s timeout)
> Trying to boot from MMC1
> U-Boot 2020.07-rc1-00387-g67887903af (May 07 2020 - 23:49:27 -0300)
> CPU:   Freescale i.MX8MMQ rev1.0 at 1200 MHz
> Reset cause: POR
> Model: FSL i.MX8MM EVK board
> DRAM:  2 GiB
> WDT:   Started without servicing (60s timeout)
> ....
> System reboots after staying 60s in the U-Boot prompt.
> Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be 
> properly serviced.
> Suggested-by: Marek Vasut <marex@denx.de>
> Signed-off-by: Fabio Estevam <festevam@gmail.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] 12+ messages in thread

end of thread, other threads:[~2020-06-08 17:23 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-11 14:00 [PATCH 1/5] imx8mm_evk: Select the watchdog driver Fabio Estevam
2020-05-11 14:00 ` [PATCH 2/5] imx8mn_ddr4_evk: " Fabio Estevam
2020-06-08 17:23   ` sbabic at denx.de
2020-05-11 14:00 ` [PATCH 3/5] imx8mm_beacon: " Fabio Estevam
2020-05-11 14:17   ` Adam Ford
2020-06-08 17:23   ` sbabic at denx.de
2020-05-11 14:00 ` [PATCH 4/5] imx8mp_evk: " Fabio Estevam
2020-06-08 17:23   ` sbabic at denx.de
2020-05-11 14:00 ` [PATCH 5/5] verdin-imx8mm: " Fabio Estevam
2020-05-11 15:09   ` Igor Opaniuk
2020-06-08 17:22   ` sbabic at denx.de
2020-06-08 17:23 ` [PATCH 1/5] imx8mm_evk: " sbabic at denx.de

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.