Re: [U-Boot] [PATCH v2 1/2] x86: qemu: Make host bridge (b.d.f=0.0.0) visible

2015-06-02 Thread Simon Glass
On 23 May 2015 at 10:37, Simon Glass wrote: > On 23 May 2015 at 10:12, Bin Meng wrote: >> The default weak version of pci_skip_dev() in drivers/pci/pci_common.c >> skips the host bridge (b.d.f = 0.0.0) which is actually the i440fx/q35 >> chipset for QEMU targets. Define CONFIG_PCI_CONFIG_HOST_BRI

Re: [U-Boot] [PATCH v2 1/2] x86: qemu: Make host bridge (b.d.f=0.0.0) visible

2015-05-23 Thread Simon Glass
On 23 May 2015 at 10:12, Bin Meng wrote: > The default weak version of pci_skip_dev() in drivers/pci/pci_common.c > skips the host bridge (b.d.f = 0.0.0) which is actually the i440fx/q35 > chipset for QEMU targets. Define CONFIG_PCI_CONFIG_HOST_BRIDGE to make > it visible in the PCI configuration

[U-Boot] [PATCH v2 1/2] x86: qemu: Make host bridge (b.d.f=0.0.0) visible

2015-05-23 Thread Bin Meng
The default weak version of pci_skip_dev() in drivers/pci/pci_common.c skips the host bridge (b.d.f = 0.0.0) which is actually the i440fx/q35 chipset for QEMU targets. Define CONFIG_PCI_CONFIG_HOST_BRIDGE to make it visible in the PCI configuration space. Signed-off-by: Bin Meng --- Changes in