public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH,RFC] quirks for VIA VT8237 southbridge
@ 2005-08-13 15:10 Karsten Wiese
  2005-08-13 16:04 ` Grant Coady
  2005-08-15 22:31 ` Bjorn Helgaas
  0 siblings, 2 replies; 11+ messages in thread
From: Karsten Wiese @ 2005-08-13 15:10 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar

Hi,

this fixes the 'doubled ioapic level interrupt rate' issue I've been
seeing on a K8T800/AMD64 mainboard.
It also switches off quirk_via_irq() for the VT8237 southbridge.

As both changes are uncritical fixes, I'll post a real patch to -mm
in a week or so.

   Karsten


--- ../linux-2.6.13-rc6/drivers/pci/quirks.c    2005-08-08 11:46:05.000000000 +0200
+++ drivers/pci/quirks.c        2005-08-13 16:52:19.000000000 +0200
@@ -403,6 +403,25 @@ static void __devinit quirk_via_ioapic(s
 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA,     PCI_DEVICE_ID_VIA_82C686,       quirk_via_ioapic );

 /*
+ * VIA 8237: Some BIOSs don't set the 'Bypass APIC De-Assert Message' Bit.
+ * This leads to doubled level interrupt rates.
+ * Set this bit to get rid of cycle wastage.
+ * Otherwise uncritical.
+ */
+static void __devinit quirk_via_vt8237_bypass_apic_deassert(struct pci_dev *dev)
+{
+       u8 misc_control2;
+#define BYPASS_APIC_DEASSERT 8
+
+       pci_read_config_byte(dev, 0x5B, &misc_control2);
+       if (!(misc_control2 & BYPASS_APIC_DEASSERT)) {
+               printk(KERN_INFO "PCI: Bypassing VIA 8237 APIC De-Assert Message\n");
+               pci_write_config_byte(dev, 0x5B, misc_control2|BYPASS_APIC_DEASSERT);
+       }
+}
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA,     PCI_DEVICE_ID_VIA_8237,         quirk_via_vt8237_bypass_apic_deassert);
+
+/*
  * The AMD io apic can hang the box when an apic irq is masked.
  * We check all revs >= B0 (yet not in the pre production!) as the bug
  * is currently marked NoFix
@@ -488,6 +507,47 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_V
 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA,    PCI_DEVICE_ID_VIA_82C686_4,     quirk_via_acpi );

 /*
+ * Devices part of the VIA VT8237 don't need quirk_via_irq().
+ * They also don't get confused by it, but dmesg gets quiter
+ * with this 'anti'-quirk.
+ * Here we are overly paranoic:
+ * we assume there might also exist via devices not part of the VT8237
+ * needing quirk_via_irq().
+ * This might never be the case in reality, when there is a VT8237.
+ */
+static unsigned int vt8237_devfn[] = {
+       PCI_DEVFN(15, 0),
+       PCI_DEVFN(15, 1),
+       PCI_DEVFN(16, 0),
+       PCI_DEVFN(16, 1),
+       PCI_DEVFN(16, 2),
+       PCI_DEVFN(16, 3),
+       PCI_DEVFN(16, 4),
+       PCI_DEVFN(16, 5),
+       PCI_DEVFN(17, 5),
+       PCI_DEVFN(17, 6),
+       PCI_DEVFN(18, 0)
+};
+static struct pci_dev *quirk_via_irq_not[ARRAY_SIZE(vt8237_devfn)];
+static void quirk_via_irq_not_for_8237(struct pci_dev *dev)
+{
+       // Make sure we do this only once
+       if (quirk_via_irq_not[0] != NULL)
+               return;
+
+       if (dev->devfn == PCI_DEVFN(0x11, 0)) {
+               int i, j;
+               for (i = 0, j = 0; i < ARRAY_SIZE(vt8237_devfn); i++) {
+                       struct pci_dev * d;
+                       d = pci_find_slot(dev->bus->number, vt8237_devfn[i]);
+                       if (d != NULL)
+                               quirk_via_irq_not[j++] = d;
+               }
+       }
+}
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237, quirk_via_irq_not_for_8237);
+
+/*
  * Via 686A/B:  The PCI_INTERRUPT_LINE register for the on-chip
  * devices, USB0/1, AC97, MC97, and ACPI, has an unusual feature:
  * when written, it makes an internal connection to the PIC.
@@ -499,8 +559,14 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_V
  */
 static void quirk_via_irq(struct pci_dev *dev)
 {
+       int i;
        u8 irq, new_irq;

+       for (i = 0; i < ARRAY_SIZE(vt8237_devfn); i++)
+               if (quirk_via_irq_not[i] == dev)
+                       return;
+
+
        new_irq = dev->irq & 0xf;
        pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq);
        if (new_irq != irq) {
_

	

	
		
___________________________________________________________ 
Gesendet von Yahoo! Mail - Jetzt mit 1GB Speicher kostenlos - Hier anmelden: http://mail.yahoo.de

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2005-08-18 13:30 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-13 15:10 [PATCH,RFC] quirks for VIA VT8237 southbridge Karsten Wiese
2005-08-13 16:04 ` Grant Coady
2005-08-13 16:34   ` Karsten Wiese
2005-08-13 16:41   ` Jeff Garzik
2005-08-13 21:06     ` Grant Coady
2005-08-15 22:31 ` Bjorn Helgaas
2005-08-16 15:26   ` Karsten Wiese
2005-08-16 15:49     ` Bjorn Helgaas
2005-08-16 17:20       ` Alan Cox
2005-08-18 12:36         ` Karsten Wiese
2005-08-18 13:57           ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox