* Patch "USB: xhci: Add broken streams quirk for Frescologic device id 1009" has been added to the 4.4-stable tree
@ 2016-07-07 0:45 gregkh
0 siblings, 0 replies; only message in thread
From: gregkh @ 2016-07-07 0:45 UTC (permalink / raw)
To: hdegoede, gregkh; +Cc: stable, stable-commits
This is a note to let you know that I've just added the patch titled
USB: xhci: Add broken streams quirk for Frescologic device id 1009
to the 4.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:
usb-xhci-add-broken-streams-quirk-for-frescologic-device-id-1009.patch
and it can be found in the queue-4.4 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
>From d95815ba6a0f287213118c136e64d8c56daeaeab Mon Sep 17 00:00:00 2001
From: Hans de Goede <hdegoede@redhat.com>
Date: Wed, 1 Jun 2016 21:01:29 +0200
Subject: USB: xhci: Add broken streams quirk for Frescologic device id 1009
From: Hans de Goede <hdegoede@redhat.com>
commit d95815ba6a0f287213118c136e64d8c56daeaeab upstream.
I got one of these cards for testing uas with, it seems that with streams
it dma-s all over the place, corrupting memory. On my first tests it
managed to dma over the BIOS of the motherboard somehow and completely
bricked it.
Tests on another motherboard show that it does work with streams disabled.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/usb/host/xhci-pci.c | 5 +++++
1 file changed, 5 insertions(+)
--- a/drivers/usb/host/xhci-pci.c
+++ b/drivers/usb/host/xhci-pci.c
@@ -37,6 +37,7 @@
/* Device for a quirk */
#define PCI_VENDOR_ID_FRESCO_LOGIC 0x1b73
#define PCI_DEVICE_ID_FRESCO_LOGIC_PDK 0x1000
+#define PCI_DEVICE_ID_FRESCO_LOGIC_FL1009 0x1009
#define PCI_DEVICE_ID_FRESCO_LOGIC_FL1400 0x1400
#define PCI_VENDOR_ID_ETRON 0x1b6f
@@ -115,6 +116,10 @@ static void xhci_pci_quirks(struct devic
xhci->quirks |= XHCI_TRUST_TX_LENGTH;
}
+ if (pdev->vendor == PCI_VENDOR_ID_FRESCO_LOGIC &&
+ pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_FL1009)
+ xhci->quirks |= XHCI_BROKEN_STREAMS;
+
if (pdev->vendor == PCI_VENDOR_ID_NEC)
xhci->quirks |= XHCI_NEC_HOST;
Patches currently in stable-queue which might be from hdegoede@redhat.com are
queue-4.4/usb-quirks-add-no-lpm-quirk-for-acer-c120-led-projector.patch
queue-4.4/usb-quirks-fix-sorting.patch
queue-4.4/usb-xhci-add-broken-streams-quirk-for-frescologic-device-id-1009.patch
queue-4.4/usb-uas-fix-slave-queue_depth-not-being-set.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2016-07-07 0:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-07 0:45 Patch "USB: xhci: Add broken streams quirk for Frescologic device id 1009" has been added to the 4.4-stable tree gregkh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).