blob: aa446c7eb7e5e00d519fea63fc46f9996c3d9fb8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
Marcel Holtmann4aa769b2005-08-09 20:27:37 -07003 * Bluetooth virtual HCI driver
4 *
Marcel Holtmann9c724352006-07-06 15:45:23 +02005 * Copyright (C) 2000-2001 Qualcomm Incorporated
6 * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
7 * Copyright (C) 2004-2006 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann4aa769b2005-08-09 20:27:37 -07008 *
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
Marcel Holtmann23424c02013-09-02 10:41:39 -070027#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/init.h>
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070031#include <linux/slab.h>
32#include <linux/types.h>
33#include <linux/errno.h>
34#include <linux/sched.h>
35#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <linux/skbuff.h>
38#include <linux/miscdevice.h>
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <net/bluetooth/bluetooth.h>
41#include <net/bluetooth/hci_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Marcel Holtmann82a30cf2014-07-03 01:35:10 +020043#define VERSION "1.5"
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070044
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +020045static bool amp;
46
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070047struct vhci_data {
48 struct hci_dev *hdev;
49
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070050 wait_queue_head_t read_wait;
51 struct sk_buff_head readq;
Marcel Holtmann23424c02013-09-02 10:41:39 -070052
53 struct delayed_work open_timeout;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070054};
55
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070056static int vhci_open_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 set_bit(HCI_RUNNING, &hdev->flags);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
61}
62
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070063static int vhci_close_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
David Herrmann155961e2012-02-09 21:58:32 +010065 struct vhci_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
68 return 0;
69
Marcel Holtmann9c724352006-07-06 15:45:23 +020070 skb_queue_purge(&data->readq);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return 0;
73}
74
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070075static int vhci_flush(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
David Herrmann155961e2012-02-09 21:58:32 +010077 struct vhci_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Marcel Holtmann9c724352006-07-06 15:45:23 +020079 skb_queue_purge(&data->readq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Marcel Holtmann7bd8f092013-10-11 06:19:18 -070084static int vhci_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Marcel Holtmann60298772013-10-11 07:01:04 -070086 struct vhci_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 if (!test_bit(HCI_RUNNING, &hdev->flags))
89 return -EBUSY;
90
Marcel Holtmann0d48d932005-08-09 20:30:28 -070091 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Marcel Holtmann9c724352006-07-06 15:45:23 +020092 skb_queue_tail(&data->readq, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Marcel Holtmann9c724352006-07-06 15:45:23 +020094 wake_up_interruptible(&data->read_wait);
Marcel Holtmann23424c02013-09-02 10:41:39 -070095 return 0;
96}
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Marcel Holtmann82a30cf2014-07-03 01:35:10 +020098static int vhci_create_device(struct vhci_data *data, __u8 opcode)
Marcel Holtmann23424c02013-09-02 10:41:39 -070099{
100 struct hci_dev *hdev;
101 struct sk_buff *skb;
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200102 __u8 dev_type;
103
104 /* bits 0-1 are dev_type (BR/EDR or AMP) */
105 dev_type = opcode & 0x03;
106
107 if (dev_type != HCI_BREDR && dev_type != HCI_AMP)
108 return -EINVAL;
109
110 /* bits 2-6 are reserved (must be zero) */
111 if (opcode & 0x7c)
112 return -EINVAL;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700113
114 skb = bt_skb_alloc(4, GFP_KERNEL);
115 if (!skb)
116 return -ENOMEM;
117
118 hdev = hci_alloc_dev();
119 if (!hdev) {
120 kfree_skb(skb);
121 return -ENOMEM;
122 }
123
124 data->hdev = hdev;
125
126 hdev->bus = HCI_VIRTUAL;
127 hdev->dev_type = dev_type;
128 hci_set_drvdata(hdev, data);
129
130 hdev->open = vhci_open_dev;
131 hdev->close = vhci_close_dev;
132 hdev->flush = vhci_flush;
133 hdev->send = vhci_send_frame;
134
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200135 /* bit 7 is for raw device */
136 if (opcode & 0x80)
137 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
138
Marcel Holtmann23424c02013-09-02 10:41:39 -0700139 if (hci_register_dev(hdev) < 0) {
140 BT_ERR("Can't register HCI device");
141 hci_free_dev(hdev);
142 data->hdev = NULL;
143 kfree_skb(skb);
144 return -EBUSY;
145 }
146
147 bt_cb(skb)->pkt_type = HCI_VENDOR_PKT;
148
149 *skb_put(skb, 1) = 0xff;
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200150 *skb_put(skb, 1) = opcode;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700151 put_unaligned_le16(hdev->id, skb_put(skb, 2));
152 skb_queue_tail(&data->readq, skb);
153
154 wake_up_interruptible(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return 0;
156}
157
Marcel Holtmann9c724352006-07-06 15:45:23 +0200158static inline ssize_t vhci_get_user(struct vhci_data *data,
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800159 const struct iovec *iov,
160 unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800162 size_t len = iov_length(iov, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct sk_buff *skb;
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200164 __u8 pkt_type, opcode;
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800165 unsigned long i;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700166 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800168 if (len < 2 || len > HCI_MAX_FRAME_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return -EINVAL;
170
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800171 skb = bt_skb_alloc(len, GFP_KERNEL);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700172 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return -ENOMEM;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700174
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800175 for (i = 0; i < count; i++) {
176 if (copy_from_user(skb_put(skb, iov[i].iov_len),
177 iov[i].iov_base, iov[i].iov_len)) {
178 kfree_skb(skb);
179 return -EFAULT;
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
Marcel Holtmann23424c02013-09-02 10:41:39 -0700183 pkt_type = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 skb_pull(skb, 1);
185
Marcel Holtmann23424c02013-09-02 10:41:39 -0700186 switch (pkt_type) {
187 case HCI_EVENT_PKT:
188 case HCI_ACLDATA_PKT:
189 case HCI_SCODATA_PKT:
190 if (!data->hdev) {
191 kfree_skb(skb);
192 return -ENODEV;
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Marcel Holtmann23424c02013-09-02 10:41:39 -0700195 bt_cb(skb)->pkt_type = pkt_type;
196
Marcel Holtmanne1a26172013-10-10 16:52:43 -0700197 ret = hci_recv_frame(data->hdev, skb);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700198 break;
199
200 case HCI_VENDOR_PKT:
201 if (data->hdev) {
202 kfree_skb(skb);
203 return -EBADFD;
204 }
205
206 cancel_delayed_work_sync(&data->open_timeout);
207
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200208 opcode = *((__u8 *) skb->data);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700209 skb_pull(skb, 1);
210
211 if (skb->len > 0) {
212 kfree_skb(skb);
213 return -EINVAL;
214 }
215
216 kfree_skb(skb);
217
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200218 ret = vhci_create_device(data, opcode);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700219 break;
220
221 default:
222 kfree_skb(skb);
223 return -EINVAL;
224 }
225
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800226 return (ret < 0) ? ret : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Marcel Holtmann9c724352006-07-06 15:45:23 +0200229static inline ssize_t vhci_put_user(struct vhci_data *data,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700230 struct sk_buff *skb,
231 char __user *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 char __user *ptr = buf;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700234 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700236 len = min_t(unsigned int, skb->len, count);
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (copy_to_user(ptr, skb->data, len))
239 return -EFAULT;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700240
Marcel Holtmann23424c02013-09-02 10:41:39 -0700241 if (!data->hdev)
242 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Marcel Holtmann9c724352006-07-06 15:45:23 +0200244 data->hdev->stat.byte_tx += len;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700245
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700246 switch (bt_cb(skb)->pkt_type) {
247 case HCI_COMMAND_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200248 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700249 break;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700250 case HCI_ACLDATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200251 data->hdev->stat.acl_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700252 break;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700253 case HCI_SCODATA_PKT:
Gustavo F. Padovan4f7ac182010-05-01 16:15:34 -0300254 data->hdev->stat.sco_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700255 break;
Peter Senna Tschudin2c24d452012-09-07 17:24:47 +0200256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Marcel Holtmann23424c02013-09-02 10:41:39 -0700258 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
Marcel Holtmann9c724352006-07-06 15:45:23 +0200261static ssize_t vhci_read(struct file *file,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700262 char __user *buf, size_t count, loff_t *pos)
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700263{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200264 struct vhci_data *data = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 struct sk_buff *skb;
266 ssize_t ret = 0;
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 while (count) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200269 skb = skb_dequeue(&data->readq);
Marcel Holtmann4db75892009-06-08 14:13:57 +0200270 if (skb) {
271 ret = vhci_put_user(data, skb, buf, count);
272 if (ret < 0)
273 skb_queue_head(&data->readq, skb);
274 else
275 kfree_skb(skb);
276 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278
Marcel Holtmann4db75892009-06-08 14:13:57 +0200279 if (file->f_flags & O_NONBLOCK) {
280 ret = -EAGAIN;
281 break;
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Marcel Holtmann4db75892009-06-08 14:13:57 +0200284 ret = wait_event_interruptible(data->read_wait,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700285 !skb_queue_empty(&data->readq));
Marcel Holtmann4db75892009-06-08 14:13:57 +0200286 if (ret < 0)
287 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 return ret;
291}
292
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800293static ssize_t vhci_write(struct kiocb *iocb, const struct iovec *iov,
294 unsigned long count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800296 struct file *file = iocb->ki_filp;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200297 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700298
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800299 return vhci_get_user(data, iov, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700302static unsigned int vhci_poll(struct file *file, poll_table *wait)
303{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200304 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700305
Marcel Holtmann9c724352006-07-06 15:45:23 +0200306 poll_wait(file, &data->read_wait, wait);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700307
Marcel Holtmann9c724352006-07-06 15:45:23 +0200308 if (!skb_queue_empty(&data->readq))
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700309 return POLLIN | POLLRDNORM;
310
311 return POLLOUT | POLLWRNORM;
312}
313
Marcel Holtmann23424c02013-09-02 10:41:39 -0700314static void vhci_open_timeout(struct work_struct *work)
315{
316 struct vhci_data *data = container_of(work, struct vhci_data,
317 open_timeout.work);
318
319 vhci_create_device(data, amp ? HCI_AMP : HCI_BREDR);
320}
321
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700322static int vhci_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200324 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Marcel Holtmann9c724352006-07-06 15:45:23 +0200326 data = kzalloc(sizeof(struct vhci_data), GFP_KERNEL);
327 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return -ENOMEM;
329
Marcel Holtmann9c724352006-07-06 15:45:23 +0200330 skb_queue_head_init(&data->readq);
331 init_waitqueue_head(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Marcel Holtmann23424c02013-09-02 10:41:39 -0700333 INIT_DELAYED_WORK(&data->open_timeout, vhci_open_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Marcel Holtmann9c724352006-07-06 15:45:23 +0200335 file->private_data = data;
David Herrmann0dea0142012-03-28 11:48:42 +0200336 nonseekable_open(inode, file);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700337
Marcel Holtmann23424c02013-09-02 10:41:39 -0700338 schedule_delayed_work(&data->open_timeout, msecs_to_jiffies(1000));
339
David Herrmann0dea0142012-03-28 11:48:42 +0200340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700343static int vhci_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200345 struct vhci_data *data = file->private_data;
346 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Marcel Holtmann23424c02013-09-02 10:41:39 -0700348 cancel_delayed_work_sync(&data->open_timeout);
349
350 if (hdev) {
351 hci_unregister_dev(hdev);
352 hci_free_dev(hdev);
353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 file->private_data = NULL;
David Herrmannbf18c712012-01-07 15:47:14 +0100356 kfree(data);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 0;
359}
360
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800361static const struct file_operations vhci_fops = {
Marcel Holtmannfed4c252009-12-03 18:07:28 +0100362 .owner = THIS_MODULE,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700363 .read = vhci_read,
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800364 .aio_write = vhci_write,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700365 .poll = vhci_poll,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700366 .open = vhci_open,
367 .release = vhci_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200368 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369};
370
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700371static struct miscdevice vhci_miscdev= {
Marcel Holtmannac284942009-06-07 18:09:57 +0200372 .name = "vhci",
373 .fops = &vhci_fops,
Lucas De Marchib075dd42014-02-18 02:19:26 -0300374 .minor = VHCI_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375};
376
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700377static int __init vhci_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700379 BT_INFO("Virtual HCI driver ver %s", VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100381 return misc_register(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700384static void __exit vhci_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100386 misc_deregister(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700389module_init(vhci_init);
390module_exit(vhci_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +0200392module_param(amp, bool, 0644);
393MODULE_PARM_DESC(amp, "Create AMP controller device");
394
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200395MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700396MODULE_DESCRIPTION("Bluetooth virtual HCI driver ver " VERSION);
397MODULE_VERSION(VERSION);
398MODULE_LICENSE("GPL");
Marcel Holtmannbfacbb92013-08-26 22:02:38 -0700399MODULE_ALIAS("devname:vhci");
Lucas De Marchib075dd42014-02-18 02:19:26 -0300400MODULE_ALIAS_MISCDEV(VHCI_MINOR);