mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-12 13:35:21 -04:00
added CONFIG_PCI_CONFIG_HOST_BRIDGE to enable host bridge configuration
This commit is contained in:
parent
a842a6d23c
commit
6bb992ba9d
@ -429,8 +429,18 @@ int pci_hose_scan_bus(struct pci_controller *hose, int bus)
|
|||||||
dev += PCI_BDF(0,0,1))
|
dev += PCI_BDF(0,0,1))
|
||||||
{
|
{
|
||||||
/* Skip our host bridge */
|
/* Skip our host bridge */
|
||||||
if ( dev == PCI_BDF(hose->first_busno,0,0) )
|
if ( dev == PCI_BDF(hose->first_busno,0,0) ) {
|
||||||
continue;
|
#if defined(CONFIG_PCI_CONFIG_HOST_BRIDGE) /* don't skip host bridge */
|
||||||
|
/*
|
||||||
|
* Only skip hostbridge configuration if "pciconfighost" is not set
|
||||||
|
*/
|
||||||
|
if (getenv("pciconfighost") == NULL) {
|
||||||
|
continue; /* Skip our host bridge */
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
continue; /* Skip our host bridge */
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
if (PCI_FUNC(dev) && !found_multi)
|
if (PCI_FUNC(dev) && !found_multi)
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user