diff options
| author | Fabio Estevam <[email protected]> | 2025-08-14 15:14:35 -0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-08-21 13:27:57 -0600 |
| commit | 0b0641470b3037e7e212b40c7101c1269653f86e (patch) | |
| tree | b36c80be2171811950972cf767d4c430910eb7d9 /common/Kconfig | |
| parent | 2792cbf5d281b519692c546849638b2141046a4e (diff) | |
Kconfig: Convert SYS_EARLY_PCI_INIT to Kconfig
The CONFIG_SYS_EARLY_PCI_INIT symbol is currently not supported
by Kconfig.
Make it a Kconfig symbol so that users could select it via defconfig.
Signed-off-by: Fabio Estevam <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'common/Kconfig')
| -rw-r--r-- | common/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index a2f653f7e72..cb17f056153 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -833,6 +833,13 @@ config PCI_INIT_R case of DM PCI-based Ethernet devices, which will not be detected without having the enumeration performed earlier. +config SYS_EARLY_PCI_INIT + bool "Enumerate PCI buses early during init" + depends on PCI + help + Do early PCI configuration before the eMMC gets initialised, + because PCI resources are crucial for eMMC access on some boards. + config RESET_PHY_R bool "Reset ethernet PHY during init" help |
