mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
51bbc8114b
1. Update target/linux/generic/config-6.6 for new ksym 2. Refresh patches Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.57 Added: generic/backport-6.6/777-netfilter-xtables-fix-typo-causing-some-targets-to-not-load-on-IPv6.patch[1] Manually rebased: generic/hack-6.6/645-netfilter-connmark-introduce-set-dscpmark.patch Removed upstreamed: gemini/patches-6.6/0001-net-ethernet-cortina-Drop-TSO-support.patch[2] gemini/patches-6.6/0004-net-ethernet-cortina-Restore-TSO-support.patch[3] All other patches automatically rebased. 1. https://lore.kernel.org/all/20241019-xtables-typos-v2-1-6b8b1735dc8e@0upti.me/ 2 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.57&id=452c0740d72c6a77a41f6ddc318a48f18c3d2346 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.57&id=611f74b0e7fb93ee2366d9d7edca546806b220e9 Build system: x86/64 Build-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Run-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/16726 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
65 lines
2.3 KiB
Diff
65 lines
2.3 KiB
Diff
From 587b4b1f3c0d6795440fe02624a5d553fc7af817 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Bell <jonathan@raspberrypi.com>
|
|
Date: Mon, 26 Oct 2020 14:03:35 +0000
|
|
Subject: [PATCH 0482/1085] xhci: quirks: add link TRB quirk for VL805
|
|
|
|
The VL805 controller can't cope with the TR Dequeue Pointer for an endpoint
|
|
being set to a Link TRB. The hardware-maintained endpoint context ends up
|
|
stuck at the address of the Link TRB, leading to erroneous ring expansion
|
|
events whenever the enqueue pointer wraps to the dequeue position.
|
|
|
|
If the search for the end of the current TD and ring cycle state lands on
|
|
a Link TRB, move to the next segment.
|
|
|
|
Link: https://github.com/raspberrypi/linux/issues/3919
|
|
|
|
[6.5.y Fixup - move downstream quirk bits further along]
|
|
|
|
Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
|
|
---
|
|
drivers/usb/host/xhci-pci.c | 1 +
|
|
drivers/usb/host/xhci-ring.c | 9 +++++++++
|
|
drivers/usb/host/xhci.h | 3 +++
|
|
3 files changed, 13 insertions(+)
|
|
|
|
--- a/drivers/usb/host/xhci-pci.c
|
|
+++ b/drivers/usb/host/xhci-pci.c
|
|
@@ -493,6 +493,7 @@ static void xhci_pci_quirks(struct devic
|
|
if (pdev->vendor == PCI_VENDOR_ID_VIA && pdev->device == 0x3483) {
|
|
xhci->quirks |= XHCI_LPM_SUPPORT;
|
|
xhci->quirks |= XHCI_EP_CTX_BROKEN_DCS;
|
|
+ xhci->quirks |= XHCI_AVOID_DQ_ON_LINK;
|
|
}
|
|
|
|
if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA &&
|
|
--- a/drivers/usb/host/xhci-ring.c
|
|
+++ b/drivers/usb/host/xhci-ring.c
|
|
@@ -728,6 +728,15 @@ static int xhci_move_dequeue_past_td(str
|
|
} while (!cycle_found || !td_last_trb_found);
|
|
|
|
deq_found:
|
|
+ /*
|
|
+ * Quirk: the xHC does not correctly parse link TRBs if the HW Dequeue
|
|
+ * pointer is set to one. Advance to the next TRB (and next segment).
|
|
+ */
|
|
+ if (xhci->quirks & XHCI_AVOID_DQ_ON_LINK && trb_is_link(new_deq)) {
|
|
+ if (link_trb_toggles_cycle(new_deq))
|
|
+ new_cycle ^= 0x1;
|
|
+ next_trb(xhci, ep_ring, &new_seg, &new_deq);
|
|
+ }
|
|
|
|
/* Don't update the ring cycle state for the producer (us). */
|
|
addr = xhci_trb_virt_to_dma(new_seg, new_deq);
|
|
--- a/drivers/usb/host/xhci.h
|
|
+++ b/drivers/usb/host/xhci.h
|
|
@@ -1918,6 +1918,9 @@ struct xhci_hcd {
|
|
#define XHCI_WRITE_64_HI_LO BIT_ULL(47)
|
|
#define XHCI_CDNS_SCTX_QUIRK BIT_ULL(48)
|
|
|
|
+/* Downstream VLI fixes */
|
|
+#define XHCI_AVOID_DQ_ON_LINK BIT_ULL(56)
|
|
+
|
|
unsigned int num_active_eps;
|
|
unsigned int limit_active_eps;
|
|
struct xhci_port *hw_ports;
|