blob: eaa646dfa78306c2379bc3149c7881f811024ef6 [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
Takashi Iwai599a6fc2016-04-14 17:32:19 +020053 struct mutex open_mutex;
Marcel Holtmann23424c02013-09-02 10:41:39 -070054 struct delayed_work open_timeout;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070055};
56
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070057static int vhci_open_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 set_bit(HCI_RUNNING, &hdev->flags);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 return 0;
62}
63
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070064static int vhci_close_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
David Herrmann155961e2012-02-09 21:58:32 +010066 struct vhci_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
69 return 0;
70
Marcel Holtmann9c724352006-07-06 15:45:23 +020071 skb_queue_purge(&data->readq);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return 0;
74}
75
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070076static int vhci_flush(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
David Herrmann155961e2012-02-09 21:58:32 +010078 struct vhci_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Marcel Holtmann9c724352006-07-06 15:45:23 +020080 skb_queue_purge(&data->readq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070082 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
Marcel Holtmann7bd8f092013-10-11 06:19:18 -070085static int vhci_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Marcel Holtmann60298772013-10-11 07:01:04 -070087 struct vhci_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 if (!test_bit(HCI_RUNNING, &hdev->flags))
90 return -EBUSY;
91
Marcel Holtmann0d48d932005-08-09 20:30:28 -070092 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Marcel Holtmann9c724352006-07-06 15:45:23 +020093 skb_queue_tail(&data->readq, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Marcel Holtmann9c724352006-07-06 15:45:23 +020095 wake_up_interruptible(&data->read_wait);
Marcel Holtmann23424c02013-09-02 10:41:39 -070096 return 0;
97}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Takashi Iwai599a6fc2016-04-14 17:32:19 +020099static int __vhci_create_device(struct vhci_data *data, __u8 opcode)
Marcel Holtmann23424c02013-09-02 10:41:39 -0700100{
101 struct hci_dev *hdev;
102 struct sk_buff *skb;
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200103 __u8 dev_type;
104
Takashi Iwai599a6fc2016-04-14 17:32:19 +0200105 if (data->hdev)
106 return -EBADFD;
107
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200108 /* bits 0-1 are dev_type (BR/EDR or AMP) */
109 dev_type = opcode & 0x03;
110
111 if (dev_type != HCI_BREDR && dev_type != HCI_AMP)
112 return -EINVAL;
113
Marcel Holtmann0ad184e2014-07-04 17:23:35 +0200114 /* bits 2-5 are reserved (must be zero) */
115 if (opcode & 0x3c)
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200116 return -EINVAL;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700117
118 skb = bt_skb_alloc(4, GFP_KERNEL);
119 if (!skb)
120 return -ENOMEM;
121
122 hdev = hci_alloc_dev();
123 if (!hdev) {
124 kfree_skb(skb);
125 return -ENOMEM;
126 }
127
128 data->hdev = hdev;
129
130 hdev->bus = HCI_VIRTUAL;
131 hdev->dev_type = dev_type;
132 hci_set_drvdata(hdev, data);
133
134 hdev->open = vhci_open_dev;
135 hdev->close = vhci_close_dev;
136 hdev->flush = vhci_flush;
137 hdev->send = vhci_send_frame;
138
Marcel Holtmann0ad184e2014-07-04 17:23:35 +0200139 /* bit 6 is for external configuration */
140 if (opcode & 0x40)
141 set_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks);
142
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200143 /* bit 7 is for raw device */
144 if (opcode & 0x80)
145 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
146
Marcel Holtmann23424c02013-09-02 10:41:39 -0700147 if (hci_register_dev(hdev) < 0) {
148 BT_ERR("Can't register HCI device");
149 hci_free_dev(hdev);
150 data->hdev = NULL;
151 kfree_skb(skb);
152 return -EBUSY;
153 }
154
155 bt_cb(skb)->pkt_type = HCI_VENDOR_PKT;
156
157 *skb_put(skb, 1) = 0xff;
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200158 *skb_put(skb, 1) = opcode;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700159 put_unaligned_le16(hdev->id, skb_put(skb, 2));
160 skb_queue_tail(&data->readq, skb);
161
162 wake_up_interruptible(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return 0;
164}
165
Takashi Iwai599a6fc2016-04-14 17:32:19 +0200166static int vhci_create_device(struct vhci_data *data, __u8 opcode)
167{
168 int err;
169
170 mutex_lock(&data->open_mutex);
171 err = __vhci_create_device(data, opcode);
172 mutex_unlock(&data->open_mutex);
173
174 return err;
175}
176
Marcel Holtmann9c724352006-07-06 15:45:23 +0200177static inline ssize_t vhci_get_user(struct vhci_data *data,
Al Viro512b2262014-08-23 11:28:14 -0400178 struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Al Viro512b2262014-08-23 11:28:14 -0400180 size_t len = iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 struct sk_buff *skb;
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200182 __u8 pkt_type, opcode;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700183 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800185 if (len < 2 || len > HCI_MAX_FRAME_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return -EINVAL;
187
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800188 skb = bt_skb_alloc(len, GFP_KERNEL);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700189 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return -ENOMEM;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700191
Al Viro512b2262014-08-23 11:28:14 -0400192 if (copy_from_iter(skb_put(skb, len), len, from) != len) {
193 kfree_skb(skb);
194 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
Marcel Holtmann23424c02013-09-02 10:41:39 -0700197 pkt_type = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 skb_pull(skb, 1);
199
Marcel Holtmann23424c02013-09-02 10:41:39 -0700200 switch (pkt_type) {
201 case HCI_EVENT_PKT:
202 case HCI_ACLDATA_PKT:
203 case HCI_SCODATA_PKT:
204 if (!data->hdev) {
205 kfree_skb(skb);
206 return -ENODEV;
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Marcel Holtmann23424c02013-09-02 10:41:39 -0700209 bt_cb(skb)->pkt_type = pkt_type;
210
Marcel Holtmanne1a26172013-10-10 16:52:43 -0700211 ret = hci_recv_frame(data->hdev, skb);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700212 break;
213
214 case HCI_VENDOR_PKT:
Jiri Slaby497519c2016-03-19 11:05:18 +0100215 cancel_delayed_work_sync(&data->open_timeout);
216
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200217 opcode = *((__u8 *) skb->data);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700218 skb_pull(skb, 1);
219
220 if (skb->len > 0) {
221 kfree_skb(skb);
222 return -EINVAL;
223 }
224
225 kfree_skb(skb);
226
Marcel Holtmann82a30cf2014-07-03 01:35:10 +0200227 ret = vhci_create_device(data, opcode);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700228 break;
229
230 default:
231 kfree_skb(skb);
232 return -EINVAL;
233 }
234
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800235 return (ret < 0) ? ret : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Marcel Holtmann9c724352006-07-06 15:45:23 +0200238static inline ssize_t vhci_put_user(struct vhci_data *data,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700239 struct sk_buff *skb,
240 char __user *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 char __user *ptr = buf;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700243 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700245 len = min_t(unsigned int, skb->len, count);
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (copy_to_user(ptr, skb->data, len))
248 return -EFAULT;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700249
Marcel Holtmann23424c02013-09-02 10:41:39 -0700250 if (!data->hdev)
251 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Marcel Holtmann9c724352006-07-06 15:45:23 +0200253 data->hdev->stat.byte_tx += len;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700254
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700255 switch (bt_cb(skb)->pkt_type) {
256 case HCI_COMMAND_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200257 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700258 break;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700259 case HCI_ACLDATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200260 data->hdev->stat.acl_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700261 break;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700262 case HCI_SCODATA_PKT:
Gustavo F. Padovan4f7ac182010-05-01 16:15:34 -0300263 data->hdev->stat.sco_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700264 break;
Peter Senna Tschudin2c24d452012-09-07 17:24:47 +0200265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Marcel Holtmann23424c02013-09-02 10:41:39 -0700267 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Marcel Holtmann9c724352006-07-06 15:45:23 +0200270static ssize_t vhci_read(struct file *file,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700271 char __user *buf, size_t count, loff_t *pos)
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700272{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200273 struct vhci_data *data = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct sk_buff *skb;
275 ssize_t ret = 0;
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 while (count) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200278 skb = skb_dequeue(&data->readq);
Marcel Holtmann4db75892009-06-08 14:13:57 +0200279 if (skb) {
280 ret = vhci_put_user(data, skb, buf, count);
281 if (ret < 0)
282 skb_queue_head(&data->readq, skb);
283 else
284 kfree_skb(skb);
285 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287
Marcel Holtmann4db75892009-06-08 14:13:57 +0200288 if (file->f_flags & O_NONBLOCK) {
289 ret = -EAGAIN;
290 break;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Marcel Holtmann4db75892009-06-08 14:13:57 +0200293 ret = wait_event_interruptible(data->read_wait,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700294 !skb_queue_empty(&data->readq));
Marcel Holtmann4db75892009-06-08 14:13:57 +0200295 if (ret < 0)
296 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 return ret;
300}
301
Al Viro512b2262014-08-23 11:28:14 -0400302static ssize_t vhci_write(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Marcel Holtmann5bc00b52013-12-28 21:57:14 -0800304 struct file *file = iocb->ki_filp;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200305 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700306
Al Viro512b2262014-08-23 11:28:14 -0400307 return vhci_get_user(data, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700310static unsigned int vhci_poll(struct file *file, poll_table *wait)
311{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200312 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700313
Marcel Holtmann9c724352006-07-06 15:45:23 +0200314 poll_wait(file, &data->read_wait, wait);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700315
Marcel Holtmann9c724352006-07-06 15:45:23 +0200316 if (!skb_queue_empty(&data->readq))
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700317 return POLLIN | POLLRDNORM;
318
319 return POLLOUT | POLLWRNORM;
320}
321
Marcel Holtmann23424c02013-09-02 10:41:39 -0700322static void vhci_open_timeout(struct work_struct *work)
323{
324 struct vhci_data *data = container_of(work, struct vhci_data,
325 open_timeout.work);
326
327 vhci_create_device(data, amp ? HCI_AMP : HCI_BREDR);
328}
329
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700330static int vhci_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200332 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Marcel Holtmann9c724352006-07-06 15:45:23 +0200334 data = kzalloc(sizeof(struct vhci_data), GFP_KERNEL);
335 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return -ENOMEM;
337
Marcel Holtmann9c724352006-07-06 15:45:23 +0200338 skb_queue_head_init(&data->readq);
339 init_waitqueue_head(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Takashi Iwai599a6fc2016-04-14 17:32:19 +0200341 mutex_init(&data->open_mutex);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700342 INIT_DELAYED_WORK(&data->open_timeout, vhci_open_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Marcel Holtmann9c724352006-07-06 15:45:23 +0200344 file->private_data = data;
David Herrmann0dea0142012-03-28 11:48:42 +0200345 nonseekable_open(inode, file);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700346
Marcel Holtmann23424c02013-09-02 10:41:39 -0700347 schedule_delayed_work(&data->open_timeout, msecs_to_jiffies(1000));
348
David Herrmann0dea0142012-03-28 11:48:42 +0200349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700352static int vhci_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200354 struct vhci_data *data = file->private_data;
Jiri Slaby497519c2016-03-19 11:05:18 +0100355 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Marcel Holtmann23424c02013-09-02 10:41:39 -0700357 cancel_delayed_work_sync(&data->open_timeout);
358
Jiri Slaby497519c2016-03-19 11:05:18 +0100359 hdev = data->hdev;
360
Marcel Holtmann23424c02013-09-02 10:41:39 -0700361 if (hdev) {
362 hci_unregister_dev(hdev);
363 hci_free_dev(hdev);
364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Jiri Slabyb2df5402016-03-19 11:49:43 +0100366 skb_queue_purge(&data->readq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 file->private_data = NULL;
David Herrmannbf18c712012-01-07 15:47:14 +0100368 kfree(data);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return 0;
371}
372
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800373static const struct file_operations vhci_fops = {
Marcel Holtmannfed4c252009-12-03 18:07:28 +0100374 .owner = THIS_MODULE,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700375 .read = vhci_read,
Al Viro512b2262014-08-23 11:28:14 -0400376 .write_iter = vhci_write,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700377 .poll = vhci_poll,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700378 .open = vhci_open,
379 .release = vhci_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200380 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381};
382
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700383static struct miscdevice vhci_miscdev= {
Marcel Holtmannac284942009-06-07 18:09:57 +0200384 .name = "vhci",
385 .fops = &vhci_fops,
Lucas De Marchib075dd42014-02-18 02:19:26 -0300386 .minor = VHCI_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387};
388
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700389static int __init vhci_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700391 BT_INFO("Virtual HCI driver ver %s", VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100393 return misc_register(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700396static void __exit vhci_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100398 misc_deregister(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700401module_init(vhci_init);
402module_exit(vhci_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +0200404module_param(amp, bool, 0644);
405MODULE_PARM_DESC(amp, "Create AMP controller device");
406
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200407MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700408MODULE_DESCRIPTION("Bluetooth virtual HCI driver ver " VERSION);
409MODULE_VERSION(VERSION);
410MODULE_LICENSE("GPL");
Marcel Holtmannbfacbb92013-08-26 22:02:38 -0700411MODULE_ALIAS("devname:vhci");
Lucas De Marchib075dd42014-02-18 02:19:26 -0300412MODULE_ALIAS_MISCDEV(VHCI_MINOR);