* [patch] PNP: disable Supermicro H8DCE motherboard resources that overlap SATA BARs
@ 2008-01-17 23:03 Bjorn Helgaas
2008-01-22 9:42 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Bjorn Helgaas @ 2008-01-17 23:03 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-pci, linux-acpi, Jeff Garzik, Matthew Hall, Robert Hancock,
Willem Riede, Karl Bellve, Jon Stanley
Some Supermicro BIOSes describe a SATA PCI BAR as a motherboard
resource. The PNP system driver claims motherboard resources, and
this prevents the sata_nv driver from requesting it later.
This patch disables the PNP0C01/PNP0C02 resources so they won't be
claimed by the PNP system driver, so they'll available for sata_nv.
This fixes the bugs below, where sata_nv detects only two out of four
SATA drives. The signature includes dmesg lines similar to these:
pnp: 00:09: iomem range 0xdfefc000-0xdfefcfff has been reserved
pnp: 00:09: iomem range 0xdfefd000-0xdfefd3ff has been reserved
pnp: 00:09: iomem range 0xdfefe000-0xdfefe3ff has been reserved
PCI: Unable to reserve mem region #6:1000@dfefd000 for device 0000:80:07.0
sata_nv: probe of 0000:80:07.0 failed with error -16
PCI: Unable to reserve mem region #6:1000@dfefe000 for device 0000:80:08.0
sata_nv: probe of 0000:80:08.0 failed with error -16
References:
https://bugzilla.redhat.com/show_bug.cgi?id=280641
https://bugzilla.redhat.com/show_bug.cgi?id=313491
http://lkml.org/lkml/2008/1/9/449
http://thread.gmane.org/gmane.linux.acpi.devel/27312
This is post-2.6.24 material.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Index: work5/drivers/pnp/quirks.c
===================================================================
--- work5.orig/drivers/pnp/quirks.c 2008-01-04 14:34:43.000000000 -0700
+++ work5/drivers/pnp/quirks.c 2008-01-16 13:12:53.000000000 -0700
@@ -17,6 +17,7 @@
#include <linux/slab.h>
#include <linux/pnp.h>
#include <linux/io.h>
+#include <linux/dmi.h>
#include <linux/kallsyms.h>
#include "base.h"
@@ -108,6 +109,46 @@
"pnp: SB audio device quirk - increasing port range\n");
}
+static void quirk_supermicro_h8dce_system(struct pnp_dev *dev)
+{
+ int i;
+ static struct dmi_system_id supermicro_h8dce[] = {
+ {
+ .ident = "Supermicro H8DCE",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "H8DCE"),
+ },
+ },
+ { }
+ };
+
+ if (!dmi_check_system(supermicro_h8dce))
+ return;
+
+ /*
+ * On the Supermicro H8DCE, there's a system device with resources
+ * that overlap BAR 6 of the built-in SATA PCI adapter. If the PNP
+ * system device claims them, the sata_nv driver won't be able to.
+ * More details at:
+ * https://bugzilla.redhat.com/show_bug.cgi?id=280641
+ * https://bugzilla.redhat.com/show_bug.cgi?id=313491
+ * http://lkml.org/lkml/2008/1/9/449
+ * http://thread.gmane.org/gmane.linux.acpi.devel/27312
+ */
+ for (i = 0; i < PNP_MAX_MEM; i++) {
+ if (pnp_mem_valid(dev, i) && pnp_mem_len(dev, i) &&
+ (pnp_mem_start(dev, i) & 0xdfef0000) == 0xdfef0000) {
+ dev_warn(&dev->dev, "disabling 0x%llx-0x%llx to prevent"
+ " conflict with sata_nv PCI device\n",
+ (unsigned long long) pnp_mem_start(dev, i),
+ (unsigned long long) (pnp_mem_start(dev, i) +
+ pnp_mem_len(dev, i) - 1));
+ pnp_mem_flags(dev, i) = 0;
+ }
+ }
+}
+
/*
* PnP Quirks
* Cards or devices that need some tweaking due to incomplete resource info
@@ -128,6 +169,8 @@
{"CTL0043", quirk_sb16audio_resources},
{"CTL0044", quirk_sb16audio_resources},
{"CTL0045", quirk_sb16audio_resources},
+ {"PNP0c01", quirk_supermicro_h8dce_system},
+ {"PNP0c02", quirk_supermicro_h8dce_system},
{""}
};
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [patch] PNP: disable Supermicro H8DCE motherboard resources that overlap SATA BARs
2008-01-17 23:03 [patch] PNP: disable Supermicro H8DCE motherboard resources that overlap SATA BARs Bjorn Helgaas
@ 2008-01-22 9:42 ` Andrew Morton
2008-01-22 16:37 ` Bjorn Helgaas
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2008-01-22 9:42 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: linux-pci, linux-acpi, jeff, mhall, hancockr, wriede, karl.bellve,
jonstanley
> On Thu, 17 Jan 2008 16:03:18 -0700 Bjorn Helgaas <bjorn.helgaas@hp.com> wrote:
> +static void quirk_supermicro_h8dce_system(struct pnp_dev *dev)
hm. If you trace back through the callchain here is seems that large
amounts of the pnp code could be made __init/__initdata. The two callers
of pnp_add_device() are __init and afaict they're the only callers of the
quirk code?
Anyway. It's not a lot of fun to pick through all that and it's easy to
break things.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [patch] PNP: disable Supermicro H8DCE motherboard resources that overlap SATA BARs
2008-01-22 9:42 ` Andrew Morton
@ 2008-01-22 16:37 ` Bjorn Helgaas
0 siblings, 0 replies; 3+ messages in thread
From: Bjorn Helgaas @ 2008-01-22 16:37 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-pci, linux-acpi, jeff, mhall, hancockr, wriede, karl.bellve,
jonstanley
On Tuesday 22 January 2008 02:42:16 am Andrew Morton wrote:
> > On Thu, 17 Jan 2008 16:03:18 -0700 Bjorn Helgaas <bjorn.helgaas@hp.com> wrote:
> > +static void quirk_supermicro_h8dce_system(struct pnp_dev *dev)
>
> hm. If you trace back through the callchain here is seems that large
> amounts of the pnp code could be made __init/__initdata. The two callers
> of pnp_add_device() are __init and afaict they're the only callers of the
> quirk code?
Yes, much of the PNP code could currently be __init. But someday, we
should be able to handle hot-plug of ACPI devices, and some of those
will appear as PNPACPI devices. We could at least mark stuff __devinit,
I guess.
Bjorn
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-01-22 16:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-17 23:03 [patch] PNP: disable Supermicro H8DCE motherboard resources that overlap SATA BARs Bjorn Helgaas
2008-01-22 9:42 ` Andrew Morton
2008-01-22 16:37 ` Bjorn Helgaas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox