This is a note to let you know that I've just added the patch titled xhci: Limit the spurious wakeup fix only to HP machines to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: xhci-limit-the-spurious-wakeup-fix-only-to-hp-machines.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From fb73858992fd24bad482aa5f4ceb839776d7c307 Mon Sep 17 00:00:00 2001 From: Takashi Iwai <tiwai@xxxxxxx> Date: Mon, 9 Dec 2013 14:53:36 +0100 Subject: xhci: Limit the spurious wakeup fix only to HP machines From: Takashi Iwai <tiwai@xxxxxxx> commit 6962d914f317b119e0db7189199b21ec77a4b3e0 upstream. We've got regression reports that my previous fix for spurious wakeups after S5 on HP Haswell machines leads to the automatic reboot at shutdown on some machines. It turned out that the fix for one side triggers another BIOS bug in other side. So, it's exclusive. Since the original S5 wakeups have been confirmed only on HP machines, it'd be safer to apply it only to limited machines. As a wild guess, limiting to machines with HP PCI SSID should suffice. This patch should be backported to kernels as old as 3.12, that contain the commit 638298dc66ea36623dbc2757a24fc2c4ab41b016 "xhci: Fix spurious wakeups after S5 on Haswell". Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=66171 Signed-off-by: Takashi Iwai <tiwai@xxxxxxx> Signed-off-by: Sarah Sharp <sarah.a.sharp@xxxxxxxxxxxxxxx> Tested-by: <dashing.meng@xxxxxxxxx> Reported-by: Niklas Schnelle <niklas@xxxxxxxxx> Reported-by: Giorgos <ganastasiouGR@xxxxxxxxx> Reported-by: <art1@xxxxxxxx> Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> Cc: Yang Yingliang <yangyingliang@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/host/xhci-pci.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c @@ -121,7 +121,12 @@ static void xhci_pci_quirks(struct devic * any other sleep) on Haswell machines with LPT and LPT-LP * with the new Intel BIOS */ - xhci->quirks |= XHCI_SPURIOUS_WAKEUP; + /* Limit the quirk to only known vendors, as this triggers + * yet another BIOS bug on some other machines + * https://bugzilla.kernel.org/show_bug.cgi?id=66171 + */ + if (pdev->subsystem_vendor == PCI_VENDOR_ID_HP) + xhci->quirks |= XHCI_SPURIOUS_WAKEUP; } if (pdev->vendor == PCI_VENDOR_ID_ETRON && pdev->device == PCI_DEVICE_ID_ASROCK_P67) { Patches currently in stable-queue which might be from tiwai@xxxxxxx are queue-3.4/alsa-aloop-fix-oops-while-pm-resume.patch queue-3.4/alsa-usb-add-quirk-for-192khz-recording-on-e-mu-devices.patch queue-3.4/xhci-fix-spurious-wakeups-after-s5-on-haswell.patch queue-3.4/alsa-hda-cache-the-mux-selection-for-generic-hdmi.patch queue-3.4/alsa-hda-fix-internal-mic-for-lenovo-ideapad-u300s.patch queue-3.4/xhci-limit-the-spurious-wakeup-fix-only-to-hp-machines.patch queue-3.4/alsa-hda-add-conexant-cx20751-2-3-4-codec-support.patch queue-3.4/revert-alsa-hda-shut-up-pins-at-power-saving-mode-with-conexnat-codecs.patch queue-3.4/alsa-hda-fix-non-snoop-page-handling.patch queue-3.4/alsa-hda-always-turn-on-pins-for-hdmi-dp.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html