| 
									
										
										
										
											2006-03-23 14:35:12 -08:00
										 |  |  | #include <linux/pci.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							| 
									
										
										
										
											2008-12-27 18:32:28 +05:30
										 |  |  | #include <asm/pci_x86.h>
 | 
					
						
							| 
									
										
										
										
											2010-02-22 05:42:04 -08:00
										 |  |  | #include <asm/x86_init.h>
 | 
					
						
							| 
									
										
										
										
											2006-03-23 14:35:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* 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 14:35:12 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-09-26 10:52:40 +02:00
										 |  |  | #ifdef CONFIG_PCI_DIRECT
 | 
					
						
							| 
									
										
										
										
											2008-02-28 23:56:50 -08:00
										 |  |  | 	int type = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-26 10:52:40 +02:00
										 |  |  | 	type = pci_direct_probe(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-04-29 08:26:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 09:44:16 -08:00
										 |  |  | 	if (!(pci_probe & PCI_PROBE_NOEARLY)) | 
					
						
							|  |  |  | 		pci_mmcfg_early_init(); | 
					
						
							| 
									
										
										
										
											2008-02-28 23:56:50 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-22 05:42:04 -08:00
										 |  |  | 	if (x86_init.pci.arch_init && !x86_init.pci.arch_init()) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-23 14:35:12 -08:00
										 |  |  | #ifdef CONFIG_PCI_BIOS
 | 
					
						
							|  |  |  | 	pci_pcbios_init(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-08-22 07:29:08 -07: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 14:35:12 -08:00
										 |  |  | #ifdef CONFIG_PCI_DIRECT
 | 
					
						
							| 
									
										
										
										
											2006-09-26 10:52:40 +02:00
										 |  |  | 	pci_direct_init(type); | 
					
						
							| 
									
										
										
										
											2006-03-23 14:35:12 -08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-02-28 23:56:50 -08: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-14 15:40:37 -07:00
										 |  |  | 	dmi_check_pciprobe(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-27 01:31:18 -07:00
										 |  |  | 	dmi_check_skip_isa_align(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-23 14:35:12 -08:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-07-02 22:50:29 +02:00
										 |  |  | arch_initcall(pci_arch_init); |