diff options
author | Peng Fan <peng.fan@nxp.com> | 2022-06-11 20:21:07 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2022-06-14 21:33:14 +0200 |
commit | ae75489c48132efc6c9ece91773a0cd1c7a59e15 (patch) | |
tree | d9f2a0247a241a1f2bb48ff3cfe85227f947cf23 /board | |
parent | cbda080ae95c029a40a8d6a3641451900dffed9e (diff) | |
download | u-boot-ae75489c48132efc6c9ece91773a0cd1c7a59e15.tar.gz u-boot-ae75489c48132efc6c9ece91773a0cd1c7a59e15.tar.bz2 u-boot-ae75489c48132efc6c9ece91773a0cd1c7a59e15.zip |
imx: imx8mn_var_som: clean up board watchdog code
pinctrl_wdog already marked u-boot,dm-spl, so clean up board code.
The set_wdog_reset() function is not necessary as this is handled by
the imx_watchdog.c driver due to the 'fsl,ext-reset-output' property
being set.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Tested-by: Ariel D'Alessandro <ariel.dalessandro@collabora.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/variscite/imx8mn_var_som/spl.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/board/variscite/imx8mn_var_som/spl.c b/board/variscite/imx8mn_var_som/spl.c index 1a8b64fc0a..41e7050577 100644 --- a/board/variscite/imx8mn_var_som/spl.c +++ b/board/variscite/imx8mn_var_som/spl.c @@ -40,19 +40,8 @@ void spl_board_init(void) puts("Failed to find clock node. Check device tree\n"); } -#define WDOG_PAD_CTRL (PAD_CTL_DSE6 | PAD_CTL_ODE | PAD_CTL_PUE | PAD_CTL_PE) - -static const iomux_v3_cfg_t wdog_pads[] = { - IMX8MN_PAD_GPIO1_IO02__WDOG1_WDOG_B | MUX_PAD_CTRL(WDOG_PAD_CTRL), -}; - int board_early_init_f(void) { - struct wdog_regs *wdog = (struct wdog_regs *)WDOG1_BASE_ADDR; - - imx_iomux_v3_setup_multiple_pads(wdog_pads, ARRAY_SIZE(wdog_pads)); - set_wdog_reset(wdog); - init_uart_clk(3); return 0; |