Re: [PATCH,RFC] quirks for VIA VT8237 southbridge

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Saturday 13 August 2005 9:10 am, Karsten Wiese wrote:
> 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.

These patches seem unrelated except that they both contain the
text "via", so I think you should at least split them.

> + * 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.

This quirk_via_irq() change seems like an awful lot of work to
get rid of a few log messages.  In my opinion, it's just not
worth it, because it's so hard to debug problems in that area
already.

> +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) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]
  Powered by Linux