summaryrefslogtreecommitdiff
path: root/drivers/pci/Kconfig
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-05-15 04:34:32 +0300
committerTom Rini <trini@konsulko.com>2021-07-19 04:06:08 +0300
commitac9fa5705c40499b1b3254663b11c69113c7e568 (patch)
tree1a49f00448322c25fc3ac8a832a353cb51b28289 /drivers/pci/Kconfig
parentbe5c0608b86852891fd61ec358b0238499bb86ca (diff)
downloadu-boot-ac9fa5705c40499b1b3254663b11c69113c7e568.tar.xz
pci: Require DM_PCI
As the migration deadline has passed, require that DM_PCI be used. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/pci/Kconfig')
-rw-r--r--drivers/pci/Kconfig9
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig
index c49cb6eac9..2ef4d46797 100644
--- a/drivers/pci/Kconfig
+++ b/drivers/pci/Kconfig
@@ -1,22 +1,23 @@
menuconfig PCI
bool "PCI support"
+ depends on DM
default y if PPC
+ select DM_PCI
help
Enable support for PCI (Peripheral Interconnect Bus), a type of bus
used on some devices to allow the CPU to communicate with its
peripherals.
-if PCI
-
config DM_PCI
- bool "Enable driver model for PCI"
- depends on DM
+ bool
help
Use driver model for PCI. Driver model is the new method for
orgnising devices in U-Boot. For PCI, driver model keeps track of
available PCI devices, allows scanning of PCI buses and provides
device configuration support.
+if PCI
+
config DM_PCI_COMPAT
bool "Enable compatible functions for PCI"
depends on DM_PCI