From: DoHyun Pyun Date: Wed, 17 Jul 2019 07:08:46 +0000 (+0900) Subject: Bluetooth : Set the optimized operation speed for BCM Uart X-Git-Tag: submit/tizen/20190717.094806^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5cc55680fc9fe5bfd7590905c56e55dfa4aefbd5;p=platform%2Fkernel%2Flinux-rpi3.git Bluetooth : Set the optimized operation speed for BCM Uart 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 --- 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,