summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoHyun Pyun <dh79.pyun@samsung.com>2019-07-17 16:08:46 +0900
committerSeung-Woo Kim <sw0312.kim@samsung.com>2019-07-17 09:43:07 +0000
commit5cc55680fc9fe5bfd7590905c56e55dfa4aefbd5 (patch)
treef238330c00c55a5109c1d658882c8e939b81ee0a
parent474c5daa253fb2c47aec02499783b10d664f4763 (diff)
downloadlinux-rpi3-5cc55680fc9fe5bfd7590905c56e55dfa4aefbd5.tar.gz
linux-rpi3-5cc55680fc9fe5bfd7590905c56e55dfa4aefbd5.tar.bz2
linux-rpi3-5cc55680fc9fe5bfd7590905c56e55dfa4aefbd5.zip
Bluetooth : Set the optimized operation speed for BCM Uartsubmit/tizen/20190717.094806accepted/tizen/unified/20190717.220500
When ACL data packet transfers via Uart on the RPI3 board, the packet loss or overflow issue is occured. After adjusting the operation speed value, we can reduce these problems. Change-Id: Id072102e173e0338c4ae3cb7a1a541fbf7f8066e Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
-rw-r--r--drivers/bluetooth/hci_bcm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_bcm.c b/drivers/bluetooth/hci_bcm.c
index 800132369134..14326b5f1a0b 100644
--- a/drivers/bluetooth/hci_bcm.c
+++ b/drivers/bluetooth/hci_bcm.c
@@ -1070,6 +1070,9 @@ static const struct hci_uart_proto bcm_proto = {
.name = "Broadcom",
.manufacturer = 15,
.init_speed = 115200,
+#ifdef TIZEN_BT
+ .oper_speed = 460800,
+#endif
.open = bcm_open,
.close = bcm_close,
.flush = bcm_flush,