Re: [PATCH 1/2] msi: Invert the sense of the MSI enables.

From: Brice Goglin
Date: Fri May 25 2007 - 17:47:56 EST


Eric W. Biederman wrote:
> @@ -1677,43 +1650,16 @@ static int __devinit msi_ht_cap_enabled(struct pci_dev *dev)
> return 0;
> }
>
> -/* Check the hypertransport MSI mapping to know whether MSI is enabled or not */
> +/* Enable MSI on hypertransport chipsets supporting MSI */
> static void __devinit quirk_msi_ht_cap(struct pci_dev *dev)
> {
> - if (dev->subordinate && !msi_ht_cap_enabled(dev)) {
> - printk(KERN_WARNING "PCI: MSI quirk detected. "
> - "MSI disabled on chipset %s.\n",
> - pci_name(dev));
> - dev->subordinate->bus_flags |= PCI_BUS_FLAGS_NO_MSI;
> + if (dev->subordinate && msi_ht_cap_enabled(dev)) {
> + printk(KERN_INFO "PCI: Enabled MSI on chipset %s.\n",
> + pci_name(dev));
> + dev->subordinate->bus_flags |= PCI_BUS_FLAGS_MSI;
> }
> }
> -DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_HT2000_PCIE,
> - quirk_msi_ht_cap);
> +DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, quirk_msi_ht_cap);
>
> -/* The nVidia CK804 chipset may have 2 HT MSI mappings.
> - * MSI are supported if the MSI capability set in any of these mappings.
> - */
> -static void __devinit quirk_nvidia_ck804_msi_ht_cap(struct pci_dev *dev)
> -{
> - struct pci_dev *pdev;
> -
> - if (!dev->subordinate)
> - return;
>
> - /* check HT MSI cap on this chipset and the root one.
> - * a single one having MSI is enough to be sure that MSI are supported.
> - */
> - pdev = pci_get_slot(dev->bus, 0);
> - if (!pdev)
> - return;
> - if (!msi_ht_cap_enabled(dev) && !msi_ht_cap_enabled(pdev)) {
> - printk(KERN_WARNING "PCI: MSI quirk detected. "
> - "MSI disabled on chipset %s.\n",
> - pci_name(dev));
> - dev->subordinate->bus_flags |= PCI_BUS_FLAGS_NO_MSI;
> - }
> - pci_dev_put(pdev);
> -}
> -DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_CK804_PCIE,
> - quirk_nvidia_ck804_msi_ht_cap);
>

Are you sure that calling quirk_msi_ht_cap() on all devices will really
replace my nVidia CK804 specific quirk above?

I haven't looked at all this for a while, but if I remember correctly,
the PCI hierarchy with an AMD8131 and a CK804 looks like the following.

-+-[08]-+-0a.0-[09]--
\-[00]-+-00.0
+-0e.0-[02]--


The HT MSI mapping of the CK804 may be either on device 00.0 (10de:005e)
and 0e.0 (10de:005d). The devices that are physically behind the CK804
chipset are on bus 02.

To get MSI enabled for these devices, the MSI flag should be set either
on bus 00 (looks impossible here) or on bus 02 (if the HT MSI mapping is
found on 0e.0). However, if the MSI mapping is found on device 00.0, I
don't see your code could enable MSI behind on bus 02.

Brice

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/