aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth/btrsi.c
diff options
context:
space:
mode:
authorSanjay Kumar Konduri <sanjay.konduri@redpinesignals.com>2018-09-03 11:27:46 +0530
committerMarcel Holtmann <marcel@holtmann.org>2018-09-27 12:53:40 +0200
commit7cbfd1e2aad410d96fa6162aeb3f9cff1fecfc58 (patch)
treee775d94b13116e49bcfe8c76209985eb9634f082 /drivers/bluetooth/btrsi.c
parentBluetooth: L2CAP: Detect if remote is not able to use the whole MPS (diff)
downloadlinux-dev-7cbfd1e2aad410d96fa6162aeb3f9cff1fecfc58.tar.xz
linux-dev-7cbfd1e2aad410d96fa6162aeb3f9cff1fecfc58.zip
Bluetooth: btrsi: fix bt tx timeout issue
observed sometimes data is coming with unaligned address from kernel BT stack. If unaligned address is passed, some data in payload is stripped when packet is loading to firmware and this results, BT connection timeout is happening. sh# hciconfig hci0 up Can't init device hci0: hci0 command 0x0c03 tx timeout Fixed this by moving the data to aligned address. Signed-off-by: Sanjay Kumar Konduri <sanjay.konduri@redpinesignals.com> Signed-off-by: Siva Rebbagondla <siva.rebbagondla@redpinesignals.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/btrsi.c')
-rw-r--r--drivers/bluetooth/btrsi.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/bluetooth/btrsi.c b/drivers/bluetooth/btrsi.c
index 60d1419590ba..3951f7b23840 100644
--- a/drivers/bluetooth/btrsi.c
+++ b/drivers/bluetooth/btrsi.c
@@ -21,8 +21,9 @@
#include <net/rsi_91x.h>
#include <net/genetlink.h>
-#define RSI_HEADROOM_FOR_BT_HAL 16
+#define RSI_DMA_ALIGN 8
#define RSI_FRAME_DESC_SIZE 16
+#define RSI_HEADROOM_FOR_BT_HAL (RSI_FRAME_DESC_SIZE + RSI_DMA_ALIGN)
struct rsi_hci_adapter {
void *priv;
@@ -70,6 +71,16 @@ static int rsi_hci_send_pkt(struct hci_dev *hdev, struct sk_buff *skb)
bt_cb(new_skb)->pkt_type = hci_skb_pkt_type(skb);
kfree_skb(skb);
skb = new_skb;
+ if (!IS_ALIGNED((unsigned long)skb->data, RSI_DMA_ALIGN)) {
+ u8 *skb_data = skb->data;
+ int skb_len = skb->len;
+
+ skb_push(skb, RSI_DMA_ALIGN);
+ skb_pull(skb, PTR_ALIGN(skb->data,
+ RSI_DMA_ALIGN) - skb->data);
+ memmove(skb->data, skb_data, skb_len);
+ skb_trim(skb, skb_len);
+ }
}
return h_adapter->proto_ops->coex_send_pkt(h_adapter->priv, skb,