mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
x86: baytrail: Remove the fsp_init_phase_pci() call
It turns out that calling fsp_init_phase_pci() in arch_misc_init() is subject to break pci device drivers as with driver model, when the bus enumeration happens is not deterministic. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
090290f97b
commit
fa6af7b4e0
1 changed files with 1 additions and 7 deletions
|
@ -9,7 +9,6 @@
|
||||||
#include <pci_ids.h>
|
#include <pci_ids.h>
|
||||||
#include <asm/irq.h>
|
#include <asm/irq.h>
|
||||||
#include <asm/post.h>
|
#include <asm/post.h>
|
||||||
#include <asm/fsp/fsp_support.h>
|
|
||||||
|
|
||||||
static struct pci_device_id mmc_supported[] = {
|
static struct pci_device_id mmc_supported[] = {
|
||||||
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SDIO },
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SDIO },
|
||||||
|
@ -41,14 +40,9 @@ int arch_cpu_init(void)
|
||||||
|
|
||||||
int arch_misc_init(void)
|
int arch_misc_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
|
||||||
|
|
||||||
if (!ll_boot_init())
|
if (!ll_boot_init())
|
||||||
return 0;
|
return 0;
|
||||||
ret = pirq_init();
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
return fsp_init_phase_pci();
|
return pirq_init();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue