diff options
author | Fabio Estevam | 2023-10-26 18:01:53 -0300 |
---|---|---|
committer | Tom Rini | 2023-12-12 16:33:57 -0500 |
commit | 43bf6a692f7af8782fdc6f6c21cb4e8356b75435 (patch) | |
tree | 4d2fea7a45bc6da75e974a5a6ce6fe697af6d805 /configs | |
parent | e0dfb3417348d68a0f6032ce45d6e33015bd292c (diff) |
pico-pi-imx7d: Convert to watchdog driver model
Commit 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()") caused
the 'reset' command in U-Boot to not cause a board reset.
Fix it by switching to the watchdog driver model via sysreset, which
is the preferred method for implementing the watchdog reset
Signed-off-by: Fabio Estevam <festevam@denx.de>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/pico-pi-imx7d_defconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/pico-pi-imx7d_defconfig b/configs/pico-pi-imx7d_defconfig index 48364c7548e..5b615daf4a8 100644 --- a/configs/pico-pi-imx7d_defconfig +++ b/configs/pico-pi-imx7d_defconfig @@ -76,6 +76,8 @@ CONFIG_DM_PMIC=y CONFIG_DM_PMIC_PFUZE100=y CONFIG_DM_SERIAL=y CONFIG_MXC_UART=y +CONFIG_SYSRESET=y +CONFIG_SYSRESET_WATCHDOG=y CONFIG_IMX_THERMAL=y CONFIG_USB=y CONFIG_SPL_USB_HOST=y @@ -95,3 +97,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y CONFIG_SPLASH_SCREEN=y CONFIG_SPLASH_SCREEN_ALIGN=y CONFIG_BMP_16BPP=y +CONFIG_IMX_WATCHDOG=y |