public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v1] sunxi: board: Move USB ethernet initialization to board_late_init()
@ 2020-12-08 15:45 Andy Shevchenko
  2020-12-08 17:14 ` André Przywara
  2021-01-08 22:07 ` André Przywara
  0 siblings, 2 replies; 4+ messages in thread
From: Andy Shevchenko @ 2020-12-08 15:45 UTC (permalink / raw)
  To: u-boot

For the sake of consistency (*) and order of initialization, i.e.
after we have got the ethernet address, interrupt and timer initialized,
try to initialize USB ethernet gadget.

*) for example, zynqmp uses same order.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 arch/arm/Kconfig    | 1 +
 board/sunxi/board.c | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 5903c093705a..3d9be8a7507e 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -1045,6 +1045,7 @@ config ARCH_SUNXI
 	select SPL_USE_TINY_PRINTF
 	select USE_PREBOOT
 	select SYS_RELOC_GD_ENV_ADDR
+	imply BOARD_LATE_INIT
 	imply CMD_DM
 	imply CMD_GPT
 	imply CMD_UBI if MTD_RAW_NAND
diff --git a/board/sunxi/board.c b/board/sunxi/board.c
index 708a27ed78e9..77e464718846 100644
--- a/board/sunxi/board.c
+++ b/board/sunxi/board.c
@@ -890,6 +890,11 @@ int misc_init_r(void)
 
 	setup_environment(gd->fdt_blob);
 
+	return 0;
+}
+
+int board_late_init(void)
+{
 #ifdef CONFIG_USB_ETHER
 	usb_ether_init();
 #endif
-- 
2.29.2

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

end of thread, other threads:[~2021-01-08 22:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-08 15:45 [PATCH v1] sunxi: board: Move USB ethernet initialization to board_late_init() Andy Shevchenko
2020-12-08 17:14 ` André Przywara
2020-12-08 17:23   ` Andy Shevchenko
2021-01-08 22:07 ` André Przywara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox