blob: d1c2adf08576c99c2a04d7aedb578fcd095741c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * Digianswer Bluetooth USB driver
4 *
Marcel Holtmanne24b21e2007-10-20 13:41:33 +02005 * Copyright (C) 2004-2007 Marcel Holtmann <marcel@holtmann.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/kernel.h>
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020025#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/slab.h>
28#include <linux/types.h>
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020029#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020031#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <linux/usb.h>
34
35#include <net/bluetooth/bluetooth.h>
36#include <net/bluetooth/hci_core.h>
37
Marcel Holtmann07eb96a2018-03-24 10:19:53 +010038#include "h4_recv.h"
Marcel Holtmann943cc592015-10-08 03:06:53 +020039
40#define VERSION "0.11"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Marcel Holtmanne8549382013-10-11 07:46:20 -070042static const struct usb_device_id bpa10x_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 /* Tektronix BPA 100/105 (Digianswer) */
44 { USB_DEVICE(0x08fd, 0x0002) },
45
46 { } /* Terminating entry */
47};
48
49MODULE_DEVICE_TABLE(usb, bpa10x_table);
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051struct bpa10x_data {
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020052 struct hci_dev *hdev;
53 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020055 struct usb_anchor tx_anchor;
56 struct usb_anchor rx_anchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020058 struct sk_buff *rx_skb[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020061static void bpa10x_tx_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020063 struct sk_buff *skb = urb->context;
64 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
65
66 BT_DBG("%s urb %p status %d count %d", hdev->name,
67 urb, urb->status, urb->actual_length);
68
69 if (!test_bit(HCI_RUNNING, &hdev->flags))
70 goto done;
71
72 if (!urb->status)
73 hdev->stat.byte_tx += urb->transfer_buffer_length;
74 else
75 hdev->stat.err_tx++;
76
77done:
78 kfree(urb->setup_packet);
79
80 kfree_skb(skb);
81}
82
Marcel Holtmann943cc592015-10-08 03:06:53 +020083#define HCI_VENDOR_HDR_SIZE 5
84
85#define HCI_RECV_VENDOR \
86 .type = HCI_VENDOR_PKT, \
87 .hlen = HCI_VENDOR_HDR_SIZE, \
88 .loff = 3, \
89 .lsize = 2, \
90 .maxlen = HCI_MAX_FRAME_SIZE
91
92static const struct h4_recv_pkt bpa10x_recv_pkts[] = {
93 { H4_RECV_ACL, .recv = hci_recv_frame },
94 { H4_RECV_SCO, .recv = hci_recv_frame },
95 { H4_RECV_EVENT, .recv = hci_recv_frame },
96 { HCI_RECV_VENDOR, .recv = hci_recv_diag },
97};
98
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020099static void bpa10x_rx_complete(struct urb *urb)
100{
101 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100102 struct bpa10x_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 int err;
104
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200105 BT_DBG("%s urb %p status %d count %d", hdev->name,
106 urb, urb->status, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200108 if (!test_bit(HCI_RUNNING, &hdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return;
110
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200111 if (urb->status == 0) {
Marcel Holtmann943cc592015-10-08 03:06:53 +0200112 bool idx = usb_pipebulk(urb->pipe);
113
114 data->rx_skb[idx] = h4_recv_buf(hdev, data->rx_skb[idx],
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200115 urb->transfer_buffer,
Marcel Holtmann943cc592015-10-08 03:06:53 +0200116 urb->actual_length,
117 bpa10x_recv_pkts,
118 ARRAY_SIZE(bpa10x_recv_pkts));
119 if (IS_ERR(data->rx_skb[idx])) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100120 bt_dev_err(hdev, "corrupted event packet");
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200121 hdev->stat.err_rx++;
Marcel Holtmann943cc592015-10-08 03:06:53 +0200122 data->rx_skb[idx] = NULL;
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200123 }
124 }
125
126 usb_anchor_urb(urb, &data->rx_anchor);
127
128 err = usb_submit_urb(urb, GFP_ATOMIC);
129 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100130 bt_dev_err(hdev, "urb %p failed to resubmit (%d)", urb, -err);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200131 usb_unanchor_urb(urb);
132 }
133}
134
135static inline int bpa10x_submit_intr_urb(struct hci_dev *hdev)
136{
David Herrmann155961e2012-02-09 21:58:32 +0100137 struct bpa10x_data *data = hci_get_drvdata(hdev);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200138 struct urb *urb;
139 unsigned char *buf;
140 unsigned int pipe;
141 int err, size = 16;
142
143 BT_DBG("%s", hdev->name);
144
145 urb = usb_alloc_urb(0, GFP_KERNEL);
146 if (!urb)
147 return -ENOMEM;
148
149 buf = kmalloc(size, GFP_KERNEL);
150 if (!buf) {
151 usb_free_urb(urb);
152 return -ENOMEM;
153 }
154
155 pipe = usb_rcvintpipe(data->udev, 0x81);
156
157 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
158 bpa10x_rx_complete, hdev, 1);
159
160 urb->transfer_flags |= URB_FREE_BUFFER;
161
162 usb_anchor_urb(urb, &data->rx_anchor);
163
164 err = usb_submit_urb(urb, GFP_KERNEL);
165 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100166 bt_dev_err(hdev, "urb %p submission failed (%d)", urb, -err);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200167 usb_unanchor_urb(urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 usb_free_urb(urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200171
172 return err;
173}
174
175static inline int bpa10x_submit_bulk_urb(struct hci_dev *hdev)
176{
David Herrmann155961e2012-02-09 21:58:32 +0100177 struct bpa10x_data *data = hci_get_drvdata(hdev);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200178 struct urb *urb;
179 unsigned char *buf;
180 unsigned int pipe;
181 int err, size = 64;
182
183 BT_DBG("%s", hdev->name);
184
185 urb = usb_alloc_urb(0, GFP_KERNEL);
186 if (!urb)
187 return -ENOMEM;
188
189 buf = kmalloc(size, GFP_KERNEL);
190 if (!buf) {
191 usb_free_urb(urb);
192 return -ENOMEM;
193 }
194
195 pipe = usb_rcvbulkpipe(data->udev, 0x82);
196
197 usb_fill_bulk_urb(urb, data->udev, pipe,
198 buf, size, bpa10x_rx_complete, hdev);
199
200 urb->transfer_flags |= URB_FREE_BUFFER;
201
202 usb_anchor_urb(urb, &data->rx_anchor);
203
204 err = usb_submit_urb(urb, GFP_KERNEL);
205 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100206 bt_dev_err(hdev, "urb %p submission failed (%d)", urb, -err);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200207 usb_unanchor_urb(urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200208 }
209
210 usb_free_urb(urb);
211
212 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215static int bpa10x_open(struct hci_dev *hdev)
216{
David Herrmann155961e2012-02-09 21:58:32 +0100217 struct bpa10x_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 int err;
219
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200220 BT_DBG("%s", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200222 err = bpa10x_submit_intr_urb(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (err < 0)
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200224 goto error;
225
226 err = bpa10x_submit_bulk_urb(hdev);
227 if (err < 0)
228 goto error;
229
230 return 0;
231
232error:
233 usb_kill_anchored_urbs(&data->rx_anchor);
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return err;
236}
237
238static int bpa10x_close(struct hci_dev *hdev)
239{
David Herrmann155961e2012-02-09 21:58:32 +0100240 struct bpa10x_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200242 BT_DBG("%s", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200244 usb_kill_anchored_urbs(&data->rx_anchor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 return 0;
247}
248
249static int bpa10x_flush(struct hci_dev *hdev)
250{
David Herrmann155961e2012-02-09 21:58:32 +0100251 struct bpa10x_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200253 BT_DBG("%s", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200255 usb_kill_anchored_urbs(&data->tx_anchor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 return 0;
258}
259
Marcel Holtmannddd68ec2015-10-08 02:24:06 +0200260static int bpa10x_setup(struct hci_dev *hdev)
261{
Colin Ian Kingcca32832018-01-06 16:15:14 +0000262 static const u8 req[] = { 0x07 };
Marcel Holtmannddd68ec2015-10-08 02:24:06 +0200263 struct sk_buff *skb;
264
265 BT_DBG("%s", hdev->name);
266
267 /* Read revision string */
268 skb = __hci_cmd_sync(hdev, 0xfc0e, sizeof(req), req, HCI_INIT_TIMEOUT);
269 if (IS_ERR(skb))
270 return PTR_ERR(skb);
271
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100272 bt_dev_info(hdev, "%s", (char *)(skb->data + 1));
Marcel Holtmannddd68ec2015-10-08 02:24:06 +0200273
Marcel Holtmannb2999c12016-07-17 19:55:17 +0200274 hci_set_fw_info(hdev, "%s", skb->data + 1);
275
Marcel Holtmannddd68ec2015-10-08 02:24:06 +0200276 kfree_skb(skb);
277 return 0;
278}
279
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700280static int bpa10x_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
David Herrmann155961e2012-02-09 21:58:32 +0100282 struct bpa10x_data *data = hci_get_drvdata(hdev);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200283 struct usb_ctrlrequest *dr;
284 struct urb *urb;
285 unsigned int pipe;
286 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200288 BT_DBG("%s", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700290 skb->dev = (void *) hdev;
291
Jia-Ju Bai478113e2018-07-23 11:24:02 +0800292 urb = usb_alloc_urb(0, GFP_KERNEL);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200293 if (!urb)
294 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 /* Prepend skb with frame type */
Johannes Bergd58ff352017-06-16 14:29:23 +0200297 *(u8 *)skb_push(skb, 1) = hci_skb_pkt_type(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100299 switch (hci_skb_pkt_type(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 case HCI_COMMAND_PKT:
Jia-Ju Bai478113e2018-07-23 11:24:02 +0800301 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200302 if (!dr) {
303 usb_free_urb(urb);
304 return -ENOMEM;
305 }
306
307 dr->bRequestType = USB_TYPE_VENDOR;
308 dr->bRequest = 0;
309 dr->wIndex = 0;
310 dr->wValue = 0;
311 dr->wLength = __cpu_to_le16(skb->len);
312
313 pipe = usb_sndctrlpipe(data->udev, 0x00);
314
315 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
316 skb->data, skb->len, bpa10x_tx_complete, skb);
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 hdev->stat.cmd_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
320
321 case HCI_ACLDATA_PKT:
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200322 pipe = usb_sndbulkpipe(data->udev, 0x02);
323
324 usb_fill_bulk_urb(urb, data->udev, pipe,
325 skb->data, skb->len, bpa10x_tx_complete, skb);
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 hdev->stat.acl_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 break;
329
330 case HCI_SCODATA_PKT:
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200331 pipe = usb_sndbulkpipe(data->udev, 0x02);
332
333 usb_fill_bulk_urb(urb, data->udev, pipe,
334 skb->data, skb->len, bpa10x_tx_complete, skb);
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 hdev->stat.sco_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200339 default:
Adrian Bunkcb7cd422008-02-05 03:08:45 -0800340 usb_free_urb(urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200341 return -EILSEQ;
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200344 usb_anchor_urb(urb, &data->tx_anchor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Jia-Ju Bai478113e2018-07-23 11:24:02 +0800346 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200347 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100348 bt_dev_err(hdev, "urb %p submission failed", urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200349 kfree(urb->setup_packet);
350 usb_unanchor_urb(urb);
351 }
352
353 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 return 0;
356}
357
Marcel Holtmann881f7e82015-10-08 03:01:44 +0200358static int bpa10x_set_diag(struct hci_dev *hdev, bool enable)
359{
360 const u8 req[] = { 0x00, enable };
361 struct sk_buff *skb;
362
363 BT_DBG("%s", hdev->name);
364
365 if (!test_bit(HCI_RUNNING, &hdev->flags))
366 return -ENETDOWN;
367
368 /* Enable sniffer operation */
369 skb = __hci_cmd_sync(hdev, 0xfc0e, sizeof(req), req, HCI_INIT_TIMEOUT);
370 if (IS_ERR(skb))
371 return PTR_ERR(skb);
372
373 kfree_skb(skb);
374 return 0;
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377static int bpa10x_probe(struct usb_interface *intf, const struct usb_device_id *id)
378{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct bpa10x_data *data;
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200380 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 int err;
382
383 BT_DBG("intf %p id %p", intf, id);
384
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200385 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
Marcel Holtmann245dc3d2005-10-28 19:20:57 +0200386 return -ENODEV;
387
Sachin Kamat704687c2012-07-27 12:38:34 +0530388 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200389 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200392 data->udev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200394 init_usb_anchor(&data->tx_anchor);
395 init_usb_anchor(&data->rx_anchor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 hdev = hci_alloc_dev();
Sachin Kamat704687c2012-07-27 12:38:34 +0530398 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100401 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +0100402 hci_set_drvdata(hdev, data);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200403
404 data->hdev = hdev;
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 SET_HCIDEV_DEV(hdev, &intf->dev);
407
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200408 hdev->open = bpa10x_open;
409 hdev->close = bpa10x_close;
410 hdev->flush = bpa10x_flush;
Marcel Holtmannddd68ec2015-10-08 02:24:06 +0200411 hdev->setup = bpa10x_setup;
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200412 hdev->send = bpa10x_send_frame;
Marcel Holtmann881f7e82015-10-08 03:01:44 +0200413 hdev->set_diag = bpa10x_set_diag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Szymon Janca6c511c2012-05-23 12:35:46 +0200415 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 err = hci_register_dev(hdev);
418 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 hci_free_dev(hdev);
420 return err;
421 }
422
423 usb_set_intfdata(intf, data);
424
425 return 0;
426}
427
428static void bpa10x_disconnect(struct usb_interface *intf)
429{
430 struct bpa10x_data *data = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 BT_DBG("intf %p", intf);
433
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200434 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return;
436
437 usb_set_intfdata(intf, NULL);
438
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200439 hci_unregister_dev(data->hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200441 hci_free_dev(data->hdev);
David Herrmannd25442b2012-01-07 15:47:17 +0100442 kfree_skb(data->rx_skb[0]);
443 kfree_skb(data->rx_skb[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446static struct usb_driver bpa10x_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 .name = "bpa10x",
448 .probe = bpa10x_probe,
449 .disconnect = bpa10x_disconnect,
450 .id_table = bpa10x_table,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700451 .disable_hub_initiated_lpm = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452};
453
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -0800454module_usb_driver(bpa10x_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
457MODULE_DESCRIPTION("Digianswer Bluetooth USB driver ver " VERSION);
458MODULE_VERSION(VERSION);
459MODULE_LICENSE("GPL");