init.c 809 字节
Newer Older
1 2 3 4 5 6 7 8
#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. */
static __init int pci_access_init(void)
{
9
#ifdef CONFIG_PCI_DIRECT
10 11
	int type = 0;

12 13
	type = pci_direct_probe();
#endif
14 15
	pci_mmcfg_early_init();

16 17 18
#ifdef CONFIG_PCI_BIOS
	pci_pcbios_init();
#endif
19 20 21 22 23 24
	/*
	 * 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.
	 */
25
#ifdef CONFIG_PCI_DIRECT
26
	pci_direct_init(type);
27
#endif
28
	if (!raw_pci_ops && !raw_pci_ext_ops)
29 30 31
		printk(KERN_ERR
		"PCI: Fatal: No config space access function found\n");

32 33 34
	return 0;
}
arch_initcall(pci_access_init);