diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-10-16 23:35:18 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-28 07:13:52 -0400 |
commit | c4762157cf49ae6556016267ec0a87d4aee9e572 (patch) | |
tree | 7e83a8d3528952c72071b064cf62b94e451ffe70 /drivers/pci | |
parent | af27382e2d6f7b4966e6932c9820939259498c1b (diff) | |
download | u-boot-imx-c4762157cf49ae6556016267ec0a87d4aee9e572.zip u-boot-imx-c4762157cf49ae6556016267ec0a87d4aee9e572.tar.gz u-boot-imx-c4762157cf49ae6556016267ec0a87d4aee9e572.tar.bz2 |
pci: Move CONFIG_PCI_PNP to Kconfig
Introduce CONFIG_PCI_PNP in Kconfig and move over boards' defconfig
to use that.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
[trini: Re-generate configs and include/configs/ changes]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index 9a2745b..b8376b4 100644 --- a/drivers/pci/Kconfig +++ b/drivers/pci/Kconfig @@ -26,6 +26,13 @@ config DM_PCI_COMPAT measure when porting a board to use driver model for PCI. Once the board is fully supported, this option should be disabled. +config PCI_PNP + bool "Enable Plug & Play support for PCI" + depends on PCI || DM_PCI + default y + help + Enable PCI memory and I/O space resource allocation and assignment. + config PCI_SANDBOX bool "Sandbox PCI support" depends on SANDBOX && DM_PCI |