2006-03-23 22:35:12 +00:00
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/init.h>
|
2008-12-27 13:02:28 +00:00
|
|
|
#include <asm/pci_x86.h>
|
2010-02-22 13:42:04 +00:00
|
|
|
#include <asm/x86_init.h>
|
2006-03-23 22:35:12 +00:00
|
|
|
|
|
|
|
/* arch_initcall has too random ordering, so call the initializers
|
|
|
|
in the right sequence from here. */
|
2008-07-02 20:50:29 +00:00
|
|
|
static __init int pci_arch_init(void)
|
2006-03-23 22:35:12 +00:00
|
|
|
{
|
2006-09-26 08:52:40 +00:00
|
|
|
#ifdef CONFIG_PCI_DIRECT
|
2008-02-29 07:56:50 +00:00
|
|
|
int type = 0;
|
|
|
|
|
2006-09-26 08:52:40 +00:00
|
|
|
type = pci_direct_probe();
|
|
|
|
#endif
|
2008-04-29 15:26:51 +00:00
|
|
|
|
2008-12-08 17:44:16 +00:00
|
|
|
if (!(pci_probe & PCI_PROBE_NOEARLY))
|
|
|
|
pci_mmcfg_early_init();
|
2008-02-29 07:56:50 +00:00
|
|
|
|
2010-02-22 13:42:04 +00:00
|
|
|
if (x86_init.pci.arch_init && !x86_init.pci.arch_init())
|
|
|
|
return 0;
|
|
|
|
|
2006-03-23 22:35:12 +00:00
|
|
|
#ifdef CONFIG_PCI_BIOS
|
|
|
|
pci_pcbios_init();
|
|
|
|
#endif
|
2006-08-22 14:29:08 +00:00
|
|
|
/*
|
|
|
|
* don't check for raw_pci_ops here because we want pcbios as last
|
|
|
|
* fallback, yet it's needed to run first to set pcibios_last_bus
|
|
|
|
* in case legacy PCI probing is used. otherwise detecting peer busses
|
|
|
|
* fails.
|
|
|
|
*/
|
2006-03-23 22:35:12 +00:00
|
|
|
#ifdef CONFIG_PCI_DIRECT
|
2006-09-26 08:52:40 +00:00
|
|
|
pci_direct_init(type);
|
2006-03-23 22:35:12 +00:00
|
|
|
#endif
|
2008-02-29 07:56:50 +00:00
|
|
|
if (!raw_pci_ops && !raw_pci_ext_ops)
|
2006-10-05 16:47:22 +00:00
|
|
|
printk(KERN_ERR
|
|
|
|
"PCI: Fatal: No config space access function found\n");
|
|
|
|
|
2008-04-14 22:40:37 +00:00
|
|
|
dmi_check_pciprobe();
|
|
|
|
|
2008-03-27 08:31:18 +00:00
|
|
|
dmi_check_skip_isa_align();
|
|
|
|
|
2006-03-23 22:35:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-07-02 20:50:29 +00:00
|
|
|
arch_initcall(pci_arch_init);
|