board: freescale: ls1046afrwy: enumerate PCI devices
authorCamelia Groza <camelia.groza@nxp.com>
Wed, 7 Jun 2023 11:20:46 +0000 (14:20 +0300)
committerPeng Fan <peng.fan@nxp.com>
Thu, 15 Jun 2023 09:58:53 +0000 (17:58 +0800)
Call pci_init() from board_init() to force PCI enumeration at probe time.

Signed-off-by: Camelia Groza <camelia.groza@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
board/freescale/ls1046afrwy/ls1046afrwy.c

index f6e5c12..899c22a 100644 (file)
@@ -134,6 +134,9 @@ val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
        out_le32(SMMU_NSCR0, val);
 #endif
 
+       if (!IS_ENABLED(CONFIG_SYS_EARLY_PCI_INIT))
+               pci_init();
+
        select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
        return 0;
 }