brcm2708: switch to linux 4.9
[lede.git] / target / linux / brcm2708 / patches-4.4 / 0207-dwc_otg-Enable-the-hack-for-Split-Interrupt-transact.patch
1 From b52a34302b48c53ea5a5db4edd1778542c823085 Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Mon, 21 Mar 2016 15:38:38 +0000
4 Subject: [PATCH] dwc_otg: Enable the hack for Split Interrupt transactions by
5  default
6
7 dwc_otg.fiq_fsm_mask=0xF has long been a suggestion for users with audio stutters or other USB bandwidth issues.
8 So far we are aware of many success stories but no failure caused by this setting.
9 Make it a default to learn more.
10
11 See: https://www.raspberrypi.org/forums/viewtopic.php?f=28&t=70437
12
13 Signed-off-by: popcornmix <popcornmix@gmail.com>
14 ---
15  drivers/usb/host/dwc_otg/dwc_otg_driver.c | 2 +-
16  1 file changed, 1 insertion(+), 1 deletion(-)
17
18 --- a/drivers/usb/host/dwc_otg/dwc_otg_driver.c
19 +++ b/drivers/usb/host/dwc_otg/dwc_otg_driver.c
20 @@ -247,7 +247,7 @@ bool fiq_fsm_enable = true;
21  //Bulk split-transaction NAK holdoff in microframes
22  uint16_t nak_holdoff = 8;
23  
24 -unsigned short fiq_fsm_mask = 0x07;
25 +unsigned short fiq_fsm_mask = 0x0F;
26  
27  /**
28   * This function shows the Driver Version.