diff options
author | Fabio Estevam <festevam@denx.de> | 2024-03-26 09:19:49 -0300 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2024-03-30 13:57:14 -0300 |
commit | f8b874f5426dc006cb5b31690b94a50a85a3236b (patch) | |
tree | f30835a2ba292d9ca879f09cdcfe37ee112f378c /board/toradex | |
parent | 77dd945b2ca3a19c0327d3666dd35eba772b7abd (diff) | |
download | u-boot-f8b874f5426dc006cb5b31690b94a50a85a3236b.tar.gz u-boot-f8b874f5426dc006cb5b31690b94a50a85a3236b.tar.bz2 u-boot-f8b874f5426dc006cb5b31690b94a50a85a3236b.zip |
imx8: Add a default reset_cpu() implementation
Add a weak default reset_cpu() implementation just like
it is done on arch/arm/mach-imx/cpu.c.
This allows the removal of the empty reset_cpu() in several
board files.
Signed-off-by: Fabio Estevam <festevam@denx.de>
Tested-by: Hiago De Franco <hiago.franco@toradex.com> # Toradex Colibri iMX8X
Diffstat (limited to 'board/toradex')
-rw-r--r-- | board/toradex/apalis-imx8/apalis-imx8.c | 8 | ||||
-rw-r--r-- | board/toradex/colibri-imx8x/colibri-imx8x.c | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/board/toradex/apalis-imx8/apalis-imx8.c b/board/toradex/apalis-imx8/apalis-imx8.c index 49719f2f55..0f993e644d 100644 --- a/board/toradex/apalis-imx8/apalis-imx8.c +++ b/board/toradex/apalis-imx8/apalis-imx8.c @@ -291,14 +291,6 @@ int board_init(void) return 0; } -/* - * Board specific reset that is system reset. - */ -void reset_cpu(void) -{ - /* TODO */ -} - #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) int ft_board_setup(void *blob, struct bd_info *bd) { diff --git a/board/toradex/colibri-imx8x/colibri-imx8x.c b/board/toradex/colibri-imx8x/colibri-imx8x.c index 6fc8076163..a507d666c0 100644 --- a/board/toradex/colibri-imx8x/colibri-imx8x.c +++ b/board/toradex/colibri-imx8x/colibri-imx8x.c @@ -140,14 +140,6 @@ int board_init(void) return 0; } -/* - * Board specific reset that is system reset. - */ -void reset_cpu(void) -{ - /* TODO */ -} - #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) int ft_board_setup(void *blob, struct bd_info *bd) { |