blob: 19d0960489b6eb41602328e45dfc737d69641c90 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
Marcel Holtmann0372a662005-10-28 19:20:45 +02003 * Bluetooth HCI UART driver
4 *
5 * Copyright (C) 2000-2001 Qualcomm Incorporated
6 * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
7 * Copyright (C) 2004-2005 Marcel Holtmann <marcel@holtmann.org>
8 *
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>
27
28#include <linux/kernel.h>
29#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/types.h>
31#include <linux/fcntl.h>
32#include <linux/interrupt.h>
33#include <linux/ptrace.h>
34#include <linux/poll.h>
35
36#include <linux/slab.h>
37#include <linux/tty.h>
38#include <linux/errno.h>
39#include <linux/string.h>
40#include <linux/signal.h>
41#include <linux/ioctl.h>
42#include <linux/skbuff.h>
43
44#include <net/bluetooth/bluetooth.h>
45#include <net/bluetooth/hci_core.h>
46
47#include "hci_uart.h"
48
Marcel Holtmann0372a662005-10-28 19:20:45 +020049#define VERSION "2.2"
50
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -070051static const struct hci_uart_proto *hup[HCI_UART_MAX_PROTO];
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -070053int hci_uart_register_proto(const struct hci_uart_proto *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 if (p->id >= HCI_UART_MAX_PROTO)
56 return -EINVAL;
57
58 if (hup[p->id])
59 return -EEXIST;
60
61 hup[p->id] = p;
Marcel Holtmann0372a662005-10-28 19:20:45 +020062
Marcel Holtmann01009ee2015-04-04 22:27:35 -070063 BT_INFO("HCI UART protocol %s registered", p->name);
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return 0;
66}
67
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -070068int hci_uart_unregister_proto(const struct hci_uart_proto *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 if (p->id >= HCI_UART_MAX_PROTO)
71 return -EINVAL;
72
73 if (!hup[p->id])
74 return -EINVAL;
75
76 hup[p->id] = NULL;
Marcel Holtmann0372a662005-10-28 19:20:45 +020077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return 0;
79}
80
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -070081static const struct hci_uart_proto *hci_uart_get_proto(unsigned int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 if (id >= HCI_UART_MAX_PROTO)
84 return NULL;
Marcel Holtmann0372a662005-10-28 19:20:45 +020085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return hup[id];
87}
88
89static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type)
90{
91 struct hci_dev *hdev = hu->hdev;
Marcel Holtmann0372a662005-10-28 19:20:45 +020092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 /* Update HCI stat counters */
94 switch (pkt_type) {
95 case HCI_COMMAND_PKT:
96 hdev->stat.cmd_tx++;
97 break;
98
99 case HCI_ACLDATA_PKT:
100 hdev->stat.acl_tx++;
101 break;
102
103 case HCI_SCODATA_PKT:
Karl Beldan7f8f2722010-10-07 21:57:10 +0200104 hdev->stat.sco_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 break;
106 }
107}
108
109static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu)
110{
111 struct sk_buff *skb = hu->tx_skb;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (!skb)
114 skb = hu->proto->dequeue(hu);
115 else
116 hu->tx_skb = NULL;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return skb;
119}
120
121int hci_uart_tx_wakeup(struct hci_uart *hu)
122{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (test_and_set_bit(HCI_UART_SENDING, &hu->tx_state)) {
124 set_bit(HCI_UART_TX_WAKEUP, &hu->tx_state);
125 return 0;
126 }
127
128 BT_DBG("");
129
Felipe Balbida64c272014-04-23 09:58:26 -0500130 schedule_work(&hu->write_work);
131
132 return 0;
133}
134
135static void hci_uart_write_work(struct work_struct *work)
136{
137 struct hci_uart *hu = container_of(work, struct hci_uart, write_work);
138 struct tty_struct *tty = hu->tty;
139 struct hci_dev *hdev = hu->hdev;
140 struct sk_buff *skb;
141
142 /* REVISIT: should we cope with bad skbs or ->write() returning
143 * and error value ?
144 */
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146restart:
147 clear_bit(HCI_UART_TX_WAKEUP, &hu->tx_state);
148
149 while ((skb = hci_uart_dequeue(hu))) {
150 int len;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700153 len = tty->ops->write(tty, skb->data, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 hdev->stat.byte_tx += len;
155
156 skb_pull(skb, len);
157 if (skb->len) {
158 hu->tx_skb = skb;
159 break;
160 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200161
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700162 hci_uart_tx_complete(hu, bt_cb(skb)->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 kfree_skb(skb);
Marcel Holtmann0372a662005-10-28 19:20:45 +0200164 }
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (test_bit(HCI_UART_TX_WAKEUP, &hu->tx_state))
167 goto restart;
168
169 clear_bit(HCI_UART_SENDING, &hu->tx_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300172static void hci_uart_init_work(struct work_struct *work)
173{
174 struct hci_uart *hu = container_of(work, struct hci_uart, init_ready);
175 int err;
176
177 if (!test_and_clear_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
178 return;
179
180 err = hci_register_dev(hu->hdev);
181 if (err < 0) {
182 BT_ERR("Can't register HCI device");
183 hci_free_dev(hu->hdev);
184 hu->hdev = NULL;
185 hu->proto->close(hu);
186 }
187
188 set_bit(HCI_UART_REGISTERED, &hu->flags);
189}
190
191int hci_uart_init_ready(struct hci_uart *hu)
192{
193 if (!test_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
194 return -EALREADY;
195
196 schedule_work(&hu->init_ready);
197
198 return 0;
199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/* ------- Interface to HCI layer ------ */
202/* Initialize device */
203static int hci_uart_open(struct hci_dev *hdev)
204{
205 BT_DBG("%s %p", hdev->name, hdev);
206
207 /* Nothing to do for UART driver */
208
209 set_bit(HCI_RUNNING, &hdev->flags);
Marcel Holtmann0372a662005-10-28 19:20:45 +0200210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return 0;
212}
213
214/* Reset device */
215static int hci_uart_flush(struct hci_dev *hdev)
216{
David Herrmann155961e2012-02-09 21:58:32 +0100217 struct hci_uart *hu = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 struct tty_struct *tty = hu->tty;
219
220 BT_DBG("hdev %p tty %p", hdev, tty);
221
222 if (hu->tx_skb) {
223 kfree_skb(hu->tx_skb); hu->tx_skb = NULL;
224 }
225
226 /* Flush any pending characters in the driver and discipline. */
227 tty_ldisc_flush(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -0700228 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 if (test_bit(HCI_UART_PROTO_SET, &hu->flags))
231 hu->proto->flush(hu);
232
233 return 0;
234}
235
236/* Close device */
237static int hci_uart_close(struct hci_dev *hdev)
238{
239 BT_DBG("hdev %p", hdev);
240
241 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
242 return 0;
243
244 hci_uart_flush(hdev);
David Newall3611f4d2008-02-11 21:41:30 -0800245 hdev->flush = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
247}
248
249/* Send frames from HCI layer */
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700250static int hci_uart_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Marcel Holtmann52bc4232013-10-11 07:01:03 -0700252 struct hci_uart *hu = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (!test_bit(HCI_RUNNING, &hdev->flags))
255 return -EBUSY;
256
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700257 BT_DBG("%s: type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 hu->proto->enqueue(hu, skb);
260
261 hci_uart_tx_wakeup(hu);
Marcel Holtmann0372a662005-10-28 19:20:45 +0200262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264}
265
Loic Poulaineb173802015-03-25 15:19:30 +0100266static int hci_uart_setup(struct hci_dev *hdev)
267{
268 struct hci_uart *hu = hci_get_drvdata(hdev);
Marcel Holtmannfb2ce8d2015-04-04 16:13:01 -0700269 struct hci_rp_read_local_version *ver;
270 struct sk_buff *skb;
Loic Poulaineb173802015-03-25 15:19:30 +0100271
272 if (hu->proto->setup)
273 return hu->proto->setup(hu);
274
Marcel Holtmannfb2ce8d2015-04-04 16:13:01 -0700275 if (!test_bit(HCI_UART_VND_DETECT, &hu->hdev_flags))
276 return 0;
277
278 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
279 HCI_INIT_TIMEOUT);
280 if (IS_ERR(skb)) {
281 BT_ERR("%s: Reading local version information failed (%ld)",
282 hdev->name, PTR_ERR(skb));
283 return 0;
284 }
285
286 if (skb->len != sizeof(*ver)) {
287 BT_ERR("%s: Event length mismatch for version information",
288 hdev->name);
289 goto done;
290 }
291
292 ver = (struct hci_rp_read_local_version *)skb->data;
293
294 switch (le16_to_cpu(ver->manufacturer)) {
Marcel Holtmann16e38872015-04-04 16:13:02 -0700295#ifdef CONFIG_BT_HCIUART_INTEL
296 case 2:
297 hdev->set_bdaddr = intel_set_bdaddr;
298 break;
299#endif
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -0700300#ifdef CONFIG_BT_HCIUART_BCM
301 case 15:
302 hdev->set_bdaddr = bcm_set_bdaddr;
303 break;
304#endif
Marcel Holtmannfb2ce8d2015-04-04 16:13:01 -0700305 }
306
307done:
308 kfree_skb(skb);
Loic Poulaineb173802015-03-25 15:19:30 +0100309 return 0;
310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/* ------ LDISC part ------ */
313/* hci_uart_tty_open
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900314 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * Called when line discipline changed to HCI_UART.
316 *
317 * Arguments:
318 * tty pointer to tty info structure
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900319 * Return Value:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * 0 if success, otherwise error code
321 */
322static int hci_uart_tty_open(struct tty_struct *tty)
323{
Jiri Slabyf327b342012-10-18 22:26:34 +0200324 struct hci_uart *hu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 BT_DBG("tty %p", tty);
327
Alan Coxc19483c2010-10-22 14:11:26 +0100328 /* Error if the tty has no write op instead of leaving an exploitable
329 hole */
330 if (tty->ops->write == NULL)
331 return -EOPNOTSUPP;
332
Valentin Iliea08b15e2013-08-12 18:46:00 +0300333 hu = kzalloc(sizeof(struct hci_uart), GFP_KERNEL);
334 if (!hu) {
Marcel Holtmann77851622006-09-21 16:23:19 +0200335 BT_ERR("Can't allocate control structure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return -ENFILE;
337 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 tty->disc_data = hu;
340 hu->tty = tty;
Alan Cox33f0f882006-01-09 20:54:13 -0800341 tty->receive_room = 65536;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300343 INIT_WORK(&hu->init_ready, hci_uart_init_work);
Felipe Balbida64c272014-04-23 09:58:26 -0500344 INIT_WORK(&hu->write_work, hci_uart_write_work);
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 spin_lock_init(&hu->rx_lock);
347
348 /* Flush any pending characters in the driver and line discipline. */
Marcel Holtmann0372a662005-10-28 19:20:45 +0200349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* FIXME: why is this needed. Note don't use ldisc_ref here as the
351 open path is before the ldisc is referencable */
Marcel Holtmann0372a662005-10-28 19:20:45 +0200352
Alan Coxc65c9bc2009-06-11 12:50:12 +0100353 if (tty->ldisc->ops->flush_buffer)
354 tty->ldisc->ops->flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -0700355 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 return 0;
358}
359
360/* hci_uart_tty_close()
361 *
362 * Called when the line discipline is changed to something
363 * else, the tty is closed, or the tty detects a hangup.
364 */
365static void hci_uart_tty_close(struct tty_struct *tty)
366{
Marcel Holtmanndfe19d22015-04-04 19:57:21 -0700367 struct hci_uart *hu = tty->disc_data;
Johan Hedbergdac670b2012-07-16 16:12:10 +0300368 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 BT_DBG("tty %p", tty);
371
372 /* Detach from the tty */
373 tty->disc_data = NULL;
374
Johan Hedbergdac670b2012-07-16 16:12:10 +0300375 if (!hu)
376 return;
Marcel Holtmann22ad4202007-05-09 09:15:40 +0200377
Johan Hedbergdac670b2012-07-16 16:12:10 +0300378 hdev = hu->hdev;
379 if (hdev)
380 hci_uart_close(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Felipe Balbida64c272014-04-23 09:58:26 -0500382 cancel_work_sync(&hu->write_work);
383
Johan Hedbergdac670b2012-07-16 16:12:10 +0300384 if (test_and_clear_bit(HCI_UART_PROTO_SET, &hu->flags)) {
385 if (hdev) {
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300386 if (test_bit(HCI_UART_REGISTERED, &hu->flags))
387 hci_unregister_dev(hdev);
Johan Hedbergdac670b2012-07-16 16:12:10 +0300388 hci_free_dev(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Johan Hedbergdac670b2012-07-16 16:12:10 +0300390 hu->proto->close(hu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
Johan Hedbergdac670b2012-07-16 16:12:10 +0300392
393 kfree(hu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396/* hci_uart_tty_wakeup()
397 *
398 * Callback for transmit wakeup. Called when low level
399 * device driver can accept more send data.
400 *
401 * Arguments: tty pointer to associated tty instance data
402 * Return Value: None
403 */
404static void hci_uart_tty_wakeup(struct tty_struct *tty)
405{
Marcel Holtmanndfe19d22015-04-04 19:57:21 -0700406 struct hci_uart *hu = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 BT_DBG("");
409
410 if (!hu)
411 return;
412
413 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
414
415 if (tty != hu->tty)
416 return;
417
418 if (test_bit(HCI_UART_PROTO_SET, &hu->flags))
419 hci_uart_tx_wakeup(hu);
420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/* hci_uart_tty_receive()
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900423 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * Called by tty low level driver when receive data is
425 * available.
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900426 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * Arguments: tty pointer to tty isntance data
428 * data pointer to received data
429 * flags pointer to flags for data
430 * count count of received data in bytes
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900431 *
Linus Torvalds55db4c62011-06-04 06:33:24 +0900432 * Return Value: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 */
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700434static void hci_uart_tty_receive(struct tty_struct *tty, const u8 *data,
435 char *flags, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Marcel Holtmanndfe19d22015-04-04 19:57:21 -0700437 struct hci_uart *hu = tty->disc_data;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (!hu || tty != hu->tty)
Linus Torvalds55db4c62011-06-04 06:33:24 +0900440 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (!test_bit(HCI_UART_PROTO_SET, &hu->flags))
Linus Torvalds55db4c62011-06-04 06:33:24 +0900443 return;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 spin_lock(&hu->rx_lock);
Marcel Holtmann9d1c40e2015-04-04 20:59:41 -0700446 hu->proto->recv(hu, data, count);
Chan-yeol Park788f0922013-04-02 21:24:22 +0900447
448 if (hu->hdev)
449 hu->hdev->stat.byte_rx += count;
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 spin_unlock(&hu->rx_lock);
452
Alan Cox39c2e602008-04-30 00:54:18 -0700453 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
456static int hci_uart_register_dev(struct hci_uart *hu)
457{
458 struct hci_dev *hdev;
459
460 BT_DBG("");
461
462 /* Initialize and register HCI device */
463 hdev = hci_alloc_dev();
464 if (!hdev) {
465 BT_ERR("Can't allocate HCI device");
466 return -ENOMEM;
467 }
468
469 hu->hdev = hdev;
470
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100471 hdev->bus = HCI_UART;
David Herrmann155961e2012-02-09 21:58:32 +0100472 hci_set_drvdata(hdev, hu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 hdev->open = hci_uart_open;
475 hdev->close = hci_uart_close;
476 hdev->flush = hci_uart_flush;
477 hdev->send = hci_uart_send_frame;
Loic Poulaineb173802015-03-25 15:19:30 +0100478 hdev->setup = hci_uart_setup;
David Herrmann6935e0f2012-03-09 15:53:42 +0100479 SET_HCIDEV_DEV(hdev, hu->tty->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Johan Hedberg63c7d092010-07-12 11:37:04 -0300481 if (test_bit(HCI_UART_RAW_DEVICE, &hu->hdev_flags))
482 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
483
Marcel Holtmann6afd04a2014-07-11 07:12:58 +0200484 if (test_bit(HCI_UART_EXT_CONFIG, &hu->hdev_flags))
485 set_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks);
486
Marcel Holtmanna55e1f32012-02-24 17:12:24 +0100487 if (!test_bit(HCI_UART_RESET_ON_INIT, &hu->hdev_flags))
Szymon Janca6c511c2012-05-23 12:35:46 +0200488 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanna55e1f32012-02-24 17:12:24 +0100489
Marcel Holtmann8a7a3fd62012-02-24 17:09:38 +0100490 if (test_bit(HCI_UART_CREATE_AMP, &hu->hdev_flags))
491 hdev->dev_type = HCI_AMP;
492 else
493 hdev->dev_type = HCI_BREDR;
494
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300495 if (test_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
496 return 0;
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (hci_register_dev(hdev) < 0) {
499 BT_ERR("Can't register HCI device");
500 hci_free_dev(hdev);
501 return -ENODEV;
502 }
503
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300504 set_bit(HCI_UART_REGISTERED, &hu->flags);
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return 0;
507}
508
509static int hci_uart_set_proto(struct hci_uart *hu, int id)
510{
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -0700511 const struct hci_uart_proto *p;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200512 int err;
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 p = hci_uart_get_proto(id);
515 if (!p)
516 return -EPROTONOSUPPORT;
517
518 err = p->open(hu);
519 if (err)
520 return err;
521
522 hu->proto = p;
523
524 err = hci_uart_register_dev(hu);
525 if (err) {
526 p->close(hu);
527 return err;
528 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return 0;
531}
532
Marcel Holtmannbb72bd62014-07-11 07:12:57 +0200533static int hci_uart_set_flags(struct hci_uart *hu, unsigned long flags)
534{
535 unsigned long valid_flags = BIT(HCI_UART_RAW_DEVICE) |
536 BIT(HCI_UART_RESET_ON_INIT) |
537 BIT(HCI_UART_CREATE_AMP) |
Marcel Holtmann6afd04a2014-07-11 07:12:58 +0200538 BIT(HCI_UART_INIT_PENDING) |
Marcel Holtmannfb2ce8d2015-04-04 16:13:01 -0700539 BIT(HCI_UART_EXT_CONFIG) |
540 BIT(HCI_UART_VND_DETECT);
Marcel Holtmannbb72bd62014-07-11 07:12:57 +0200541
Marcel Holtmann41533fe2015-04-01 13:51:51 -0700542 if (flags & ~valid_flags)
Marcel Holtmannbb72bd62014-07-11 07:12:57 +0200543 return -EINVAL;
544
545 hu->hdev_flags = flags;
546
547 return 0;
548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550/* hci_uart_tty_ioctl()
551 *
552 * Process IOCTL system call for the tty device.
553 *
554 * Arguments:
555 *
556 * tty pointer to tty instance data
557 * file pointer to open file object for device
558 * cmd IOCTL command code
559 * arg argument for IOCTL call (cmd dependent)
560 *
561 * Return Value: Command dependent
562 */
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700563static int hci_uart_tty_ioctl(struct tty_struct *tty, struct file *file,
564 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Marcel Holtmanndfe19d22015-04-04 19:57:21 -0700566 struct hci_uart *hu = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 int err = 0;
568
569 BT_DBG("");
570
571 /* Verify the status of the device */
572 if (!hu)
573 return -EBADF;
574
575 switch (cmd) {
576 case HCIUARTSETPROTO:
577 if (!test_and_set_bit(HCI_UART_PROTO_SET, &hu->flags)) {
578 err = hci_uart_set_proto(hu, arg);
579 if (err) {
580 clear_bit(HCI_UART_PROTO_SET, &hu->flags);
581 return err;
582 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200583 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return -EBUSY;
Marcel Holtmannc33be3c2007-05-09 09:15:45 +0200585 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 case HCIUARTGETPROTO:
588 if (test_bit(HCI_UART_PROTO_SET, &hu->flags))
589 return hu->proto->id;
590 return -EUNATCH;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200591
Marcel Holtmannd2158742007-05-09 09:15:35 +0200592 case HCIUARTGETDEVICE:
Marcel Holtmannc7e0c142014-07-12 17:00:29 +0200593 if (test_bit(HCI_UART_REGISTERED, &hu->flags))
Marcel Holtmannd2158742007-05-09 09:15:35 +0200594 return hu->hdev->id;
595 return -EUNATCH;
596
Johan Hedberg63c7d092010-07-12 11:37:04 -0300597 case HCIUARTSETFLAGS:
598 if (test_bit(HCI_UART_PROTO_SET, &hu->flags))
599 return -EBUSY;
Marcel Holtmannbb72bd62014-07-11 07:12:57 +0200600 err = hci_uart_set_flags(hu, arg);
601 if (err)
602 return err;
Johan Hedberg63c7d092010-07-12 11:37:04 -0300603 break;
604
605 case HCIUARTGETFLAGS:
606 return hu->hdev_flags;
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 default:
Alan Cox47afa7a2008-10-13 10:44:17 +0100609 err = n_tty_ioctl_helper(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 break;
Peter Senna Tschudina20890d2012-09-07 17:24:39 +0200611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 return err;
614}
615
616/*
617 * We don't provide read/write/poll interface for user space.
618 */
Marcel Holtmann0372a662005-10-28 19:20:45 +0200619static ssize_t hci_uart_tty_read(struct tty_struct *tty, struct file *file,
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700620 unsigned char __user *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
622 return 0;
623}
624
Marcel Holtmann0372a662005-10-28 19:20:45 +0200625static ssize_t hci_uart_tty_write(struct tty_struct *tty, struct file *file,
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700626 const unsigned char *data, size_t count)
Marcel Holtmann0372a662005-10-28 19:20:45 +0200627{
628 return 0;
629}
630
631static unsigned int hci_uart_tty_poll(struct tty_struct *tty,
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700632 struct file *filp, poll_table *wait)
Marcel Holtmann0372a662005-10-28 19:20:45 +0200633{
634 return 0;
635}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637static int __init hci_uart_init(void)
638{
Alan Coxa352def2008-07-16 21:53:12 +0100639 static struct tty_ldisc_ops hci_uart_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 int err;
641
642 BT_INFO("HCI UART driver ver %s", VERSION);
643
644 /* Register the tty discipline */
645
646 memset(&hci_uart_ldisc, 0, sizeof (hci_uart_ldisc));
Marcel Holtmann0372a662005-10-28 19:20:45 +0200647 hci_uart_ldisc.magic = TTY_LDISC_MAGIC;
648 hci_uart_ldisc.name = "n_hci";
649 hci_uart_ldisc.open = hci_uart_tty_open;
650 hci_uart_ldisc.close = hci_uart_tty_close;
651 hci_uart_ldisc.read = hci_uart_tty_read;
652 hci_uart_ldisc.write = hci_uart_tty_write;
653 hci_uart_ldisc.ioctl = hci_uart_tty_ioctl;
654 hci_uart_ldisc.poll = hci_uart_tty_poll;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200655 hci_uart_ldisc.receive_buf = hci_uart_tty_receive;
656 hci_uart_ldisc.write_wakeup = hci_uart_tty_wakeup;
657 hci_uart_ldisc.owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Valentin Iliea08b15e2013-08-12 18:46:00 +0300659 err = tty_register_ldisc(N_HCI, &hci_uart_ldisc);
660 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 BT_ERR("HCI line discipline registration failed. (%d)", err);
662 return err;
663 }
664
665#ifdef CONFIG_BT_HCIUART_H4
666 h4_init();
667#endif
668#ifdef CONFIG_BT_HCIUART_BCSP
669 bcsp_init();
670#endif
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +0200671#ifdef CONFIG_BT_HCIUART_LL
672 ll_init();
673#endif
Suraj Sumangalab3190df2010-07-19 12:34:07 +0530674#ifdef CONFIG_BT_HCIUART_ATH3K
675 ath_init();
676#endif
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300677#ifdef CONFIG_BT_HCIUART_3WIRE
678 h5_init();
679#endif
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +0200680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return 0;
682}
683
684static void __exit hci_uart_exit(void)
685{
686 int err;
687
688#ifdef CONFIG_BT_HCIUART_H4
689 h4_deinit();
690#endif
691#ifdef CONFIG_BT_HCIUART_BCSP
692 bcsp_deinit();
693#endif
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +0200694#ifdef CONFIG_BT_HCIUART_LL
695 ll_deinit();
696#endif
Suraj Sumangalab3190df2010-07-19 12:34:07 +0530697#ifdef CONFIG_BT_HCIUART_ATH3K
698 ath_deinit();
699#endif
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300700#ifdef CONFIG_BT_HCIUART_3WIRE
701 h5_deinit();
702#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 /* Release tty registration of line discipline */
Valentin Iliea08b15e2013-08-12 18:46:00 +0300705 err = tty_unregister_ldisc(N_HCI);
706 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 BT_ERR("Can't unregister HCI line discipline (%d)", err);
708}
709
710module_init(hci_uart_init);
711module_exit(hci_uart_exit);
712
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200713MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714MODULE_DESCRIPTION("Bluetooth HCI UART driver ver " VERSION);
715MODULE_VERSION(VERSION);
716MODULE_LICENSE("GPL");
717MODULE_ALIAS_LDISC(N_HCI);