blob: 5034325e417c41e48cf7dac6d856534ba51c790c [file] [log] [blame]
Prameela Rani Garnepudi38aa4da2018-02-27 19:56:15 +05301/**
2 * Copyright (c) 2017 Redpine Signals Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16#include <linux/version.h>
17#include <linux/module.h>
18#include <linux/kernel.h>
19#include <net/bluetooth/bluetooth.h>
20#include <net/bluetooth/hci_core.h>
21#include <asm/unaligned.h>
22#include <net/rsi_91x.h>
23#include <net/genetlink.h>
24
25#define RSI_HEADROOM_FOR_BT_HAL 16
26#define RSI_FRAME_DESC_SIZE 16
27
28struct rsi_hci_adapter {
29 void *priv;
30 struct rsi_proto_ops *proto_ops;
31 struct hci_dev *hdev;
32};
33
34static int rsi_hci_open(struct hci_dev *hdev)
35{
36 return 0;
37}
38
39static int rsi_hci_close(struct hci_dev *hdev)
40{
41 return 0;
42}
43
44static int rsi_hci_flush(struct hci_dev *hdev)
45{
46 return 0;
47}
48
49static int rsi_hci_send_pkt(struct hci_dev *hdev, struct sk_buff *skb)
50{
51 struct rsi_hci_adapter *h_adapter = hci_get_drvdata(hdev);
52 struct sk_buff *new_skb = NULL;
53
54 switch (hci_skb_pkt_type(skb)) {
55 case HCI_COMMAND_PKT:
56 hdev->stat.cmd_tx++;
57 break;
58 case HCI_ACLDATA_PKT:
59 hdev->stat.acl_tx++;
60 break;
61 case HCI_SCODATA_PKT:
62 hdev->stat.sco_tx++;
63 break;
64 }
65
66 if (skb_headroom(skb) < RSI_HEADROOM_FOR_BT_HAL) {
67 /* Insufficient skb headroom - allocate a new skb */
68 new_skb = skb_realloc_headroom(skb, RSI_HEADROOM_FOR_BT_HAL);
69 if (unlikely(!new_skb))
70 return -ENOMEM;
71 bt_cb(new_skb)->pkt_type = hci_skb_pkt_type(skb);
72 kfree_skb(skb);
73 skb = new_skb;
74 }
75
76 return h_adapter->proto_ops->coex_send_pkt(h_adapter->priv, skb,
77 RSI_BT_Q);
78}
79
80static int rsi_hci_recv_pkt(void *priv, const u8 *pkt)
81{
82 struct rsi_hci_adapter *h_adapter = priv;
83 struct hci_dev *hdev = h_adapter->hdev;
84 struct sk_buff *skb;
85 int pkt_len = get_unaligned_le16(pkt) & 0x0fff;
86
87 skb = dev_alloc_skb(pkt_len);
88 if (!skb)
89 return -ENOMEM;
90
91 memcpy(skb->data, pkt + RSI_FRAME_DESC_SIZE, pkt_len);
92 skb_put(skb, pkt_len);
93 h_adapter->hdev->stat.byte_rx += skb->len;
94
95 hci_skb_pkt_type(skb) = pkt[14];
96
97 return hci_recv_frame(hdev, skb);
98}
99
100static int rsi_hci_attach(void *priv, struct rsi_proto_ops *ops)
101{
102 struct rsi_hci_adapter *h_adapter = NULL;
103 struct hci_dev *hdev;
104 int err = 0;
105
106 h_adapter = kzalloc(sizeof(*h_adapter), GFP_KERNEL);
107 if (!h_adapter)
108 return -ENOMEM;
109
110 h_adapter->priv = priv;
111 ops->set_bt_context(priv, h_adapter);
112 h_adapter->proto_ops = ops;
113
114 hdev = hci_alloc_dev();
115 if (!hdev) {
116 BT_ERR("Failed to alloc HCI device");
117 goto err;
118 }
119
120 h_adapter->hdev = hdev;
121
122 if (ops->get_host_intf(priv) == RSI_HOST_INTF_SDIO)
123 hdev->bus = HCI_SDIO;
124 else
125 hdev->bus = HCI_USB;
126
127 hci_set_drvdata(hdev, h_adapter);
128 hdev->dev_type = HCI_PRIMARY;
129 hdev->open = rsi_hci_open;
130 hdev->close = rsi_hci_close;
131 hdev->flush = rsi_hci_flush;
132 hdev->send = rsi_hci_send_pkt;
133
134 err = hci_register_dev(hdev);
135 if (err < 0) {
136 BT_ERR("HCI registration failed with errcode %d", err);
137 hci_free_dev(hdev);
138 goto err;
139 }
140
141 return 0;
142err:
143 h_adapter->hdev = NULL;
144 kfree(h_adapter);
145 return -EINVAL;
146}
147
148static void rsi_hci_detach(void *priv)
149{
150 struct rsi_hci_adapter *h_adapter = priv;
151 struct hci_dev *hdev;
152
153 if (!h_adapter)
154 return;
155
156 hdev = h_adapter->hdev;
157 if (hdev) {
158 hci_unregister_dev(hdev);
159 hci_free_dev(hdev);
160 h_adapter->hdev = NULL;
161 }
162
163 kfree(h_adapter);
164}
165
166const struct rsi_mod_ops rsi_bt_ops = {
167 .attach = rsi_hci_attach,
168 .detach = rsi_hci_detach,
169 .recv_pkt = rsi_hci_recv_pkt,
170};
171EXPORT_SYMBOL(rsi_bt_ops);
172
173static int rsi_91x_bt_module_init(void)
174{
175 return 0;
176}
177
178static void rsi_91x_bt_module_exit(void)
179{
180 return;
181}
182
183module_init(rsi_91x_bt_module_init);
184module_exit(rsi_91x_bt_module_exit);
185MODULE_AUTHOR("Redpine Signals Inc");
186MODULE_DESCRIPTION("RSI BT driver");
187MODULE_SUPPORTED_DEVICE("RSI-BT");
188MODULE_LICENSE("Dual BSD/GPL");