diff options
author | Peng Fan <peng.fan@nxp.com> | 2022-06-11 20:21:03 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2022-06-14 21:33:14 +0200 |
commit | 2d7f40cad589bb2b457f2e6a4f704f4a4967c61b (patch) | |
tree | 263aedc38b1ba8ad86e83ae71d1a996ddd63280e /board/compulab/imx8mm-cl-iot-gate | |
parent | ee106eda7e93670214f4cf654fbc2b79ef22851d (diff) | |
download | u-boot-2d7f40cad589bb2b457f2e6a4f704f4a4967c61b.tar.gz |
imx: imx8mm-cl-iot-gate: enable pinctrl_wdog in SPL
Mark pinctrl_wdog as u-boot,dm-spl to 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>
Diffstat (limited to 'board/compulab/imx8mm-cl-iot-gate')
-rw-r--r-- | board/compulab/imx8mm-cl-iot-gate/spl.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/board/compulab/imx8mm-cl-iot-gate/spl.c b/board/compulab/imx8mm-cl-iot-gate/spl.c index f183704c9d..d2d20269ba 100644 --- a/board/compulab/imx8mm-cl-iot-gate/spl.c +++ b/board/compulab/imx8mm-cl-iot-gate/spl.c @@ -83,23 +83,6 @@ int board_fit_config_name_match(const char *name) } #endif -#define WDOG_PAD_CTRL (PAD_CTL_DSE6 | PAD_CTL_ODE | PAD_CTL_PUE | PAD_CTL_PE) - -static iomux_v3_cfg_t const wdog_pads[] = { - IMX8MM_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); - - return 0; -} - static int power_init_board(void) { struct udevice *dev; @@ -141,8 +124,6 @@ void board_init_f(ulong dummy) arch_cpu_init(); - board_early_init_f(); - init_uart_clk(2); timer_init(); |