diff mbox series

[2/2] bluez5_utils: add upstream patch to fix timeout issue with fw download

Message ID 20170831094932.11121-2-joerg.krause@embedded.rocks
State Superseded
Headers show
Series [1/2] bluez5_utils: define FIRMWARE_DIR for hciattach_bcm43xx | expand

Commit Message

Jörg Krause Aug. 31, 2017, 9:49 a.m. UTC
Add upstream patch [1] for the hciattach tool to fix timeout issue when
downloading firmware to Broadcom bluetooth chips.

[1] https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=76255f732d68aef2b90d36d9c7be51a9e1739ce7

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
---
 ...cm43xx-fix-the-delay-timer-for-firmware-d.patch | 38 ++++++++++++++++++++++
 1 file changed, 38 insertions(+)
 create mode 100644 package/bluez5_utils/0002-hciattach-bcm43xx-fix-the-delay-timer-for-firmware-d.patch

Comments

Bernd Kuhls Sept. 16, 2017, 8:44 a.m. UTC | #1
Am Thu, 31 Aug 2017 11:49:32 +0200 schrieb Jörg Krause:

> Add upstream patch [1] for the hciattach tool to fix timeout issue when
> downloading firmware to Broadcom bluetooth chips.
> 
> [1]
> https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?
id=76255f732d68aef2b90d36d9c7be51a9e1739ce7

Hi,

this patch was is included in upstream release 5.47 and can be marked as 
superseded by this patch: http://patchwork.ozlabs.org/patch/814482/

Regards, Bernd
Thomas Petazzoni Oct. 22, 2017, 2:55 p.m. UTC | #2
Hello,

On Sat, 16 Sep 2017 10:44:20 +0200, Bernd Kuhls wrote:

> > Add upstream patch [1] for the hciattach tool to fix timeout issue when
> > downloading firmware to Broadcom bluetooth chips.
> > 
> > [1]
> > https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?  
> id=76255f732d68aef2b90d36d9c7be51a9e1739ce7
> 
> Hi,
> 
> this patch was is included in upstream release 5.47 and can be marked as 
> superseded by this patch: http://patchwork.ozlabs.org/patch/814482/

Thanks, I've marked Jörg's patch as Superseded.

Best regards,

Thomas Petazzoni
diff mbox series

Patch

diff --git a/package/bluez5_utils/0002-hciattach-bcm43xx-fix-the-delay-timer-for-firmware-d.patch b/package/bluez5_utils/0002-hciattach-bcm43xx-fix-the-delay-timer-for-firmware-d.patch
new file mode 100644
index 0000000000..2802510b98
--- /dev/null
+++ b/package/bluez5_utils/0002-hciattach-bcm43xx-fix-the-delay-timer-for-firmware-d.patch
@@ -0,0 +1,38 @@ 
+From 3b341fb421ef61db7782bf1314ec693828467de9 Mon Sep 17 00:00:00 2001
+From: Andy Duan <fugang.duan@nxp.com>
+Date: Wed, 23 Nov 2016 17:12:12 +0800
+Subject: [PATCH] hciattach: bcm43xx: fix the delay timer for firmware download
+
+From the log in .bcm43xx_load_firmware():
+        /* Wait 50ms to let the firmware placed in download mode */
+        nanosleep(&tm_mode, NULL);
+
+But timespec tm_mode is real is 50us. Correct the delayed timer count.
+
+Backported from:
+https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=76255f732d68aef2b90d36d9c7be51a9e1739ce7
+
+Signed-off-by: Fugang Duan <fugang.duan@nxp.com>
+Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
+---
+ tools/hciattach_bcm43xx.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tools/hciattach_bcm43xx.c b/tools/hciattach_bcm43xx.c
+index 81f38cb..ac1b3c1 100644
+--- a/tools/hciattach_bcm43xx.c
++++ b/tools/hciattach_bcm43xx.c
+@@ -228,8 +228,8 @@ static int bcm43xx_set_speed(int fd, struct termios *ti, uint32_t speed)
+ static int bcm43xx_load_firmware(int fd, const char *fw)
+ {
+ 	unsigned char cmd[] = { HCI_COMMAND_PKT, 0x2e, 0xfc, 0x00 };
+-	struct timespec tm_mode = { 0, 50000 };
+-	struct timespec tm_ready = { 0, 2000000 };
++	struct timespec tm_mode = { 0, 50000000 };
++	struct timespec tm_ready = { 0, 200000000 };
+ 	unsigned char resp[CC_MIN_SIZE];
+ 	unsigned char tx_buf[1024];
+ 	int len, fd_fw, n;
+-- 
+1.9.1
+