mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
7285f7744f
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.61 Removed upstreamed: generic/backport-6.1/814-v6.6-0018-nvmem-imx-correct-nregs-for-i.MX6SLL.patch[1] generic/backport-6.1/814-v6.6-0019-nvmem-imx-correct-nregs-for-i.MX6UL.patch[2] generic/backport-6.1/814-v6.6-0020-nvmem-imx-correct-nregs-for-i.MX6ULL.patch[3] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.61&id=b90b8633ef62314f3a5f5675106e6dcdec981b6f 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.61&id=37495846b1efc23c1767b17ddd6645cc0ccb9946 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.61&id=116671d25915b913374ccdb2956b5fdaff939dc9 Build system: x86/64 Build-tested: x86/64/AMD Cezanne Run-tested: x86/64/AMD Cezanne Signed-off-by: John Audia <therealgraysky@proton.me>
44 lines
1.6 KiB
Diff
44 lines
1.6 KiB
Diff
From cd851377edc5c90b628f48b147d89181018ba282 Mon Sep 17 00:00:00 2001
|
|
From: Sam Nazarko <email@samnazarko.co.uk>
|
|
Date: Fri, 1 Apr 2016 17:27:21 +0100
|
|
Subject: [PATCH] smsc95xx: Experimental: Enable turbo_mode and
|
|
packetsize=2560 by default
|
|
|
|
See: http://forum.kodi.tv/showthread.php?tid=285288
|
|
---
|
|
drivers/net/usb/smsc95xx.c | 14 +++++++++-----
|
|
1 file changed, 9 insertions(+), 5 deletions(-)
|
|
|
|
--- a/drivers/net/usb/smsc95xx.c
|
|
+++ b/drivers/net/usb/smsc95xx.c
|
|
@@ -83,6 +83,10 @@ static bool truesize_mode = false;
|
|
module_param(truesize_mode, bool, 0644);
|
|
MODULE_PARM_DESC(truesize_mode, "Report larger truesize value");
|
|
|
|
+static int packetsize = 2560;
|
|
+module_param(packetsize, int, 0644);
|
|
+MODULE_PARM_DESC(packetsize, "Override the RX URB packet size");
|
|
+
|
|
static int __must_check smsc95xx_read_reg(struct usbnet *dev, u32 index,
|
|
u32 *data)
|
|
{
|
|
@@ -936,13 +940,13 @@ static int smsc95xx_reset(struct usbnet
|
|
|
|
if (!turbo_mode) {
|
|
burst_cap = 0;
|
|
- dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
|
|
+ dev->rx_urb_size = packetsize ? packetsize : MAX_SINGLE_PACKET_SIZE;
|
|
} else if (dev->udev->speed == USB_SPEED_HIGH) {
|
|
- burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
|
|
- dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
|
|
+ dev->rx_urb_size = packetsize ? packetsize : DEFAULT_HS_BURST_CAP_SIZE;
|
|
+ burst_cap = dev->rx_urb_size / HS_USB_PKT_SIZE;
|
|
} else {
|
|
- burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
|
|
- dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
|
|
+ dev->rx_urb_size = packetsize ? packetsize : DEFAULT_FS_BURST_CAP_SIZE;
|
|
+ burst_cap = dev->rx_urb_size / FS_USB_PKT_SIZE;
|
|
}
|
|
|
|
netif_dbg(dev, ifup, dev->net, "rx_urb_size=%ld\n",
|