浏览代码

x86/pci: add pci=skip_isa_align command lines.

so we don't align the io port start address for pci cards.

also move out dmi check out acpi.c, because it has nothing to do with acpi.
it could spare some calling when we have several peer root buses.

Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Yinghai Lu 17 年之前
父节点
当前提交
13a6ddb08e
共有 5 个文件被更改,包括 53 次插入41 次删除
  1. 2 0
      Documentation/kernel-parameters.txt
  2. 0 41
      arch/x86/pci/acpi.c
  3. 47 0
      arch/x86/pci/common.c
  4. 2 0
      arch/x86/pci/init.c
  5. 2 0
      arch/x86/pci/pci.h

+ 2 - 0
Documentation/kernel-parameters.txt

@@ -1518,6 +1518,8 @@ and is between 256 and 4096 characters. It is defined in the file
 				This is normally done in pci_enable_device(),
 				This is normally done in pci_enable_device(),
 				so this option is a temporary workaround
 				so this option is a temporary workaround
 				for broken drivers that don't call it.
 				for broken drivers that don't call it.
+		skip_isa_align	[X86] do not align io start addr, so can
+				handle more pci cards
 		firmware	[ARM] Do not re-enumerate the bus but instead
 		firmware	[ARM] Do not re-enumerate the bus but instead
 				just use the configuration from the
 				just use the configuration from the
 				bootloader. This is currently used on
 				bootloader. This is currently used on

+ 0 - 41
arch/x86/pci/acpi.c

@@ -6,45 +6,6 @@
 #include <asm/numa.h>
 #include <asm/numa.h>
 #include "pci.h"
 #include "pci.h"
 
 
-static int __devinit can_skip_ioresource_align(const struct dmi_system_id *d)
-{
-	pci_probe |= PCI_CAN_SKIP_ISA_ALIGN;
-	printk(KERN_INFO "PCI: %s detected, can skip ISA alignment\n", d->ident);
-	return 0;
-}
-
-static struct dmi_system_id acpi_pciprobe_dmi_table[] __devinitdata = {
-/*
- * Systems where PCI IO resource ISA alignment can be skipped
- * when the ISA enable bit in the bridge control is not set
- */
-	{
-		.callback = can_skip_ioresource_align,
-		.ident = "IBM System x3800",
-		.matches = {
-			DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
-			DMI_MATCH(DMI_PRODUCT_NAME, "x3800"),
-		},
-	},
-	{
-		.callback = can_skip_ioresource_align,
-		.ident = "IBM System x3850",
-		.matches = {
-			DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
-			DMI_MATCH(DMI_PRODUCT_NAME, "x3850"),
-		},
-	},
-	{
-		.callback = can_skip_ioresource_align,
-		.ident = "IBM System x3950",
-		.matches = {
-			DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
-			DMI_MATCH(DMI_PRODUCT_NAME, "x3950"),
-		},
-	},
-	{}
-};
-
 struct pci_root_info {
 struct pci_root_info {
 	char *name;
 	char *name;
 	unsigned int res_num;
 	unsigned int res_num;
@@ -196,8 +157,6 @@ struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_device *device, int do
 	int pxm;
 	int pxm;
 #endif
 #endif
 
 
-	dmi_check_system(acpi_pciprobe_dmi_table);
-
 	if (domain && !pci_domains_supported) {
 	if (domain && !pci_domains_supported) {
 		printk(KERN_WARNING "PCI: Multiple domains not supported "
 		printk(KERN_WARNING "PCI: Multiple domains not supported "
 		       "(dom %d, bus %d)\n", domain, busnum);
 		       "(dom %d, bus %d)\n", domain, busnum);

+ 47 - 0
arch/x86/pci/common.c

@@ -90,6 +90,50 @@ static void __devinit pcibios_fixup_device_resources(struct pci_dev *dev)
 		rom_r->start = rom_r->end = rom_r->flags = 0;
 		rom_r->start = rom_r->end = rom_r->flags = 0;
 }
 }
 
 
+static int __devinit can_skip_ioresource_align(const struct dmi_system_id *d)
+{
+	pci_probe |= PCI_CAN_SKIP_ISA_ALIGN;
+	printk(KERN_INFO "PCI: %s detected, can skip ISA alignment\n", d->ident);
+	return 0;
+}
+
+static struct dmi_system_id can_skip_pciprobe_dmi_table[] __devinitdata = {
+/*
+ * Systems where PCI IO resource ISA alignment can be skipped
+ * when the ISA enable bit in the bridge control is not set
+ */
+	{
+		.callback = can_skip_ioresource_align,
+		.ident = "IBM System x3800",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "x3800"),
+		},
+	},
+	{
+		.callback = can_skip_ioresource_align,
+		.ident = "IBM System x3850",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "x3850"),
+		},
+	},
+	{
+		.callback = can_skip_ioresource_align,
+		.ident = "IBM System x3950",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "x3950"),
+		},
+	},
+	{}
+};
+
+void __init dmi_check_skip_isa_align(void)
+{
+	dmi_check_system(can_skip_pciprobe_dmi_table);
+}
+
 /*
 /*
  *  Called after each bus is probed, but before its children
  *  Called after each bus is probed, but before its children
  *  are examined.
  *  are examined.
@@ -462,6 +506,9 @@ char * __devinit  pcibios_setup(char *str)
 	} else if (!strcmp(str, "routeirq")) {
 	} else if (!strcmp(str, "routeirq")) {
 		pci_routeirq = 1;
 		pci_routeirq = 1;
 		return NULL;
 		return NULL;
+	} else if (!strcmp(str, "skip_isa_align")) {
+		pci_probe |= PCI_CAN_SKIP_ISA_ALIGN;
+		return NULL;
 	}
 	}
 	return str;
 	return str;
 }
 }

+ 2 - 0
arch/x86/pci/init.c

@@ -33,6 +33,8 @@ static __init int pci_access_init(void)
 		printk(KERN_ERR
 		printk(KERN_ERR
 		"PCI: Fatal: No config space access function found\n");
 		"PCI: Fatal: No config space access function found\n");
 
 
+	dmi_check_skip_isa_align();
+
 	return 0;
 	return 0;
 }
 }
 arch_initcall(pci_access_init);
 arch_initcall(pci_access_init);

+ 2 - 0
arch/x86/pci/pci.h

@@ -38,6 +38,8 @@ enum pci_bf_sort_state {
 	pci_dmi_bf,
 	pci_dmi_bf,
 };
 };
 
 
+extern void __init dmi_check_skip_isa_align(void);
+
 /* pci-i386.c */
 /* pci-i386.c */
 
 
 extern unsigned int pcibios_max_latency;
 extern unsigned int pcibios_max_latency;