2006-03-23 23:35:12 +01:00
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include "pci.h"
|
|
|
|
|
|
|
|
/* arch_initcall has too random ordering, so call the initializers
|
|
|
|
in the right sequence from here. */
|
2008-07-02 22:50:29 +02:00
|
|
|
static __init int pci_arch_init(void)
|
2006-03-23 23:35:12 +01:00
|
|
|
{
|
2006-09-26 10:52:40 +02:00
|
|
|
#ifdef CONFIG_PCI_DIRECT
|
2008-02-29 08:56:50 +01:00
|
|
|
int type = 0;
|
|
|
|
|
2006-09-26 10:52:40 +02:00
|
|
|
type = pci_direct_probe();
|
|
|
|
#endif
|
2008-04-29 17:26:51 +02:00
|
|
|
|
2008-02-29 08:56:50 +01:00
|
|
|
pci_mmcfg_early_init();
|
|
|
|
|
2008-04-29 09:59:53 +02:00
|
|
|
#ifdef CONFIG_PCI_OLPC
|
2008-06-05 23:14:41 +02:00
|
|
|
if (!pci_olpc_init())
|
|
|
|
return 0; /* skip additional checks if it's an XO */
|
2006-03-23 23:35:12 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_PCI_BIOS
|
|
|
|
pci_pcbios_init();
|
|
|
|
#endif
|
2006-08-22 16:29:08 +02: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 23:35:12 +01:00
|
|
|
#ifdef CONFIG_PCI_DIRECT
|
2006-09-26 10:52:40 +02:00
|
|
|
pci_direct_init(type);
|
2006-03-23 23:35:12 +01:00
|
|
|
#endif
|
2008-02-29 08:56:50 +01:00
|
|
|
if (!raw_pci_ops && !raw_pci_ext_ops)
|
2006-10-05 18:47:22 +02:00
|
|
|
printk(KERN_ERR
|
|
|
|
"PCI: Fatal: No config space access function found\n");
|
|
|
|
|
2008-04-15 00:40:37 +02:00
|
|
|
dmi_check_pciprobe();
|
|
|
|
|
2008-03-27 09:31:18 +01:00
|
|
|
dmi_check_skip_isa_align();
|
|
|
|
|
2006-03-23 23:35:12 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2008-07-02 22:50:29 +02:00
|
|
|
arch_initcall(pci_arch_init);
|