| * Do early PCI probing for bug detection when the main PCI subsystem is |
| #include <linux/kernel.h> |
| #include <asm/pci-direct.h> |
| static int __init check_bridge(int vendor, int device) |
| /* According to Nvidia all timer overrides are bogus. Just ignore |
| if (vendor == PCI_VENDOR_ID_NVIDIA) { |
| acpi_skip_timer_override = 1; |
| if (vendor == PCI_VENDOR_ID_ATI && timer_over_8254 == 1) { |
| printk(KERN_INFO "ATI board detected. Disabling timer routing " |
| void __init check_acpi_pci(void) |
| /* Assume the machine supports type 1. If not it will |
| always read ffffffff and should not have any side effect. */ |
| /* Poor man's PCI discovery */ |
| for (num = 0; num < 32; num++) { |
| for (slot = 0; slot < 32; slot++) { |
| for (func = 0; func < 8; func++) { |
| class = read_pci_config(num, slot, func, |
| if ((class >> 16) != PCI_CLASS_BRIDGE_PCI) |
| vendor = read_pci_config(num, slot, func, |
| if (check_bridge(vendor & 0xffff, vendor >> 16)) |