On Monday, March 04, 2013 10:26:40 AM Alan Stern wrote: > On Mon, 4 Mar 2013, Hannes Reinecke wrote: > > xhci has its own interrupt enabling routine, which will try to > > use MSI-X/MSI if present. So the usb core shouldn't try to enable > > legacy interrupts; on some machines the xhci legacy IRQ setting > > is invalid. > > This version of the patch is much better than the first one, IMO. I also have this issue. Unfortunately pci read only gives an irq of 255 in secure boot mode and I don't want to struggle with kernel/module signing to test this. I found one issue with this patch: For xhci legacy PCI is not tried to be set up now anymore (before MSI(x) is tried) which is a correct fix. But in xhci_try_enable_msi() drivers/usb/host/xhci.c if MSI is known broken (xhci->quirks & XHCI_BROKEN_MSI), it relies on legacy IRQ being enabled already. Instead it should use the "enable legacy IRQ" code later in the same function which is the fallback if MSI setup does not succeed. I send an updated version taking care about above and including the "do not split string" concern Sergei mentioned. Thomas -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html