[PATCH] board: ls1043ardb: force PCI device enumeration

Martin Schiller ms at dev.tdt.de
Tue Nov 23 07:28:00 CET 2021


Commit eb1986804d1d ("configs: enable DM_ETH support for LS1043ARDB")
resulted in the PCI bus no longer being implicitly enumerated.

However, this is necessary for the fdt pcie fixups to work.

Therefore, similar to commit 8b6558bd4187 ("board: ls1088ardb:
transition to DM_ETH"), pci_init() is now called in the board_init()
routine when CONFIG_DM_ETH is active.

Signed-off-by: Martin Schiller <ms at dev.tdt.de>
CC: Priyanka Jain <priyanka.jain at nxp.com>
CC: Camelia Groza <camelia.groza at nxp.com>
---
 board/freescale/ls1043ardb/ls1043ardb.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/board/freescale/ls1043ardb/ls1043ardb.c b/board/freescale/ls1043ardb/ls1043ardb.c
index beef26b084..1764c9336c 100644
--- a/board/freescale/ls1043ardb/ls1043ardb.c
+++ b/board/freescale/ls1043ardb/ls1043ardb.c
@@ -219,6 +219,10 @@ int board_init(void)
 	ppa_init();
 #endif
 
+#if !defined(CONFIG_SYS_EARLY_PCI_INIT) && defined(CONFIG_DM_ETH)
+	pci_init();
+#endif
+
 #ifdef CONFIG_U_QE
 	u_qe_init();
 #endif
-- 
2.20.1



More information about the U-Boot mailing list