3 * Bluetooth HCI UART driver
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>
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.
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.
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
26 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/init.h>
30 #include <linux/types.h>
31 #include <linux/fcntl.h>
32 #include <linux/interrupt.h>
33 #include <linux/ptrace.h>
34 #include <linux/poll.h>
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>
44 #include <net/bluetooth/bluetooth.h>
45 #include <net/bluetooth/hci_core.h>
52 static const struct hci_uart_proto
*hup
[HCI_UART_MAX_PROTO
];
54 int hci_uart_register_proto(const struct hci_uart_proto
*p
)
56 if (p
->id
>= HCI_UART_MAX_PROTO
)
64 BT_INFO("HCI UART protocol %s registered", p
->name
);
69 int hci_uart_unregister_proto(const struct hci_uart_proto
*p
)
71 if (p
->id
>= HCI_UART_MAX_PROTO
)
82 static const struct hci_uart_proto
*hci_uart_get_proto(unsigned int id
)
84 if (id
>= HCI_UART_MAX_PROTO
)
90 static inline void hci_uart_tx_complete(struct hci_uart
*hu
, int pkt_type
)
92 struct hci_dev
*hdev
= hu
->hdev
;
94 /* Update HCI stat counters */
100 case HCI_ACLDATA_PKT
:
104 case HCI_SCODATA_PKT
:
110 static inline struct sk_buff
*hci_uart_dequeue(struct hci_uart
*hu
)
112 struct sk_buff
*skb
= hu
->tx_skb
;
115 skb
= hu
->proto
->dequeue(hu
);
122 int hci_uart_tx_wakeup(struct hci_uart
*hu
)
124 if (test_and_set_bit(HCI_UART_SENDING
, &hu
->tx_state
)) {
125 set_bit(HCI_UART_TX_WAKEUP
, &hu
->tx_state
);
131 schedule_work(&hu
->write_work
);
136 static void hci_uart_write_work(struct work_struct
*work
)
138 struct hci_uart
*hu
= container_of(work
, struct hci_uart
, write_work
);
139 struct tty_struct
*tty
= hu
->tty
;
140 struct hci_dev
*hdev
= hu
->hdev
;
143 /* REVISIT: should we cope with bad skbs or ->write() returning
148 clear_bit(HCI_UART_TX_WAKEUP
, &hu
->tx_state
);
150 while ((skb
= hci_uart_dequeue(hu
))) {
153 set_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
154 len
= tty
->ops
->write(tty
, skb
->data
, skb
->len
);
155 hdev
->stat
.byte_tx
+= len
;
163 hci_uart_tx_complete(hu
, bt_cb(skb
)->pkt_type
);
167 if (test_bit(HCI_UART_TX_WAKEUP
, &hu
->tx_state
))
170 clear_bit(HCI_UART_SENDING
, &hu
->tx_state
);
173 static void hci_uart_init_work(struct work_struct
*work
)
175 struct hci_uart
*hu
= container_of(work
, struct hci_uart
, init_ready
);
178 if (!test_and_clear_bit(HCI_UART_INIT_PENDING
, &hu
->hdev_flags
))
181 err
= hci_register_dev(hu
->hdev
);
183 BT_ERR("Can't register HCI device");
184 hci_free_dev(hu
->hdev
);
186 hu
->proto
->close(hu
);
189 set_bit(HCI_UART_REGISTERED
, &hu
->flags
);
192 int hci_uart_init_ready(struct hci_uart
*hu
)
194 if (!test_bit(HCI_UART_INIT_PENDING
, &hu
->hdev_flags
))
197 schedule_work(&hu
->init_ready
);
202 /* ------- Interface to HCI layer ------ */
203 /* Initialize device */
204 static int hci_uart_open(struct hci_dev
*hdev
)
206 BT_DBG("%s %p", hdev
->name
, hdev
);
208 /* Nothing to do for UART driver */
210 set_bit(HCI_RUNNING
, &hdev
->flags
);
216 static int hci_uart_flush(struct hci_dev
*hdev
)
218 struct hci_uart
*hu
= hci_get_drvdata(hdev
);
219 struct tty_struct
*tty
= hu
->tty
;
221 BT_DBG("hdev %p tty %p", hdev
, tty
);
224 kfree_skb(hu
->tx_skb
); hu
->tx_skb
= NULL
;
227 /* Flush any pending characters in the driver and discipline. */
228 tty_ldisc_flush(tty
);
229 tty_driver_flush_buffer(tty
);
231 if (test_bit(HCI_UART_PROTO_SET
, &hu
->flags
))
232 hu
->proto
->flush(hu
);
238 static int hci_uart_close(struct hci_dev
*hdev
)
240 BT_DBG("hdev %p", hdev
);
242 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
245 hci_uart_flush(hdev
);
250 /* Send frames from HCI layer */
251 static int hci_uart_send_frame(struct hci_dev
*hdev
, struct sk_buff
*skb
)
253 struct hci_uart
*hu
= hci_get_drvdata(hdev
);
255 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
258 BT_DBG("%s: type %d len %d", hdev
->name
, bt_cb(skb
)->pkt_type
, skb
->len
);
260 hu
->proto
->enqueue(hu
, skb
);
262 hci_uart_tx_wakeup(hu
);
267 static int hci_uart_setup(struct hci_dev
*hdev
)
269 struct hci_uart
*hu
= hci_get_drvdata(hdev
);
270 struct hci_rp_read_local_version
*ver
;
273 if (hu
->proto
->setup
)
274 return hu
->proto
->setup(hu
);
276 if (!test_bit(HCI_UART_VND_DETECT
, &hu
->hdev_flags
))
279 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
282 BT_ERR("%s: Reading local version information failed (%ld)",
283 hdev
->name
, PTR_ERR(skb
));
287 if (skb
->len
!= sizeof(*ver
)) {
288 BT_ERR("%s: Event length mismatch for version information",
293 ver
= (struct hci_rp_read_local_version
*)skb
->data
;
295 switch (le16_to_cpu(ver
->manufacturer
)) {
296 #ifdef CONFIG_BT_HCIUART_INTEL
298 hdev
->set_bdaddr
= intel_set_bdaddr
;
301 #ifdef CONFIG_BT_HCIUART_BCM
303 hdev
->set_bdaddr
= btbcm_set_bdaddr
;
304 btbcm_check_bdaddr(hdev
);
314 /* ------ LDISC part ------ */
317 * Called when line discipline changed to HCI_UART.
320 * tty pointer to tty info structure
322 * 0 if success, otherwise error code
324 static int hci_uart_tty_open(struct tty_struct
*tty
)
328 BT_DBG("tty %p", tty
);
330 /* Error if the tty has no write op instead of leaving an exploitable
332 if (tty
->ops
->write
== NULL
)
335 hu
= kzalloc(sizeof(struct hci_uart
), GFP_KERNEL
);
337 BT_ERR("Can't allocate control structure");
343 tty
->receive_room
= 65536;
345 INIT_WORK(&hu
->init_ready
, hci_uart_init_work
);
346 INIT_WORK(&hu
->write_work
, hci_uart_write_work
);
348 spin_lock_init(&hu
->rx_lock
);
350 /* Flush any pending characters in the driver and line discipline. */
352 /* FIXME: why is this needed. Note don't use ldisc_ref here as the
353 open path is before the ldisc is referencable */
355 if (tty
->ldisc
->ops
->flush_buffer
)
356 tty
->ldisc
->ops
->flush_buffer(tty
);
357 tty_driver_flush_buffer(tty
);
362 /* hci_uart_tty_close()
364 * Called when the line discipline is changed to something
365 * else, the tty is closed, or the tty detects a hangup.
367 static void hci_uart_tty_close(struct tty_struct
*tty
)
369 struct hci_uart
*hu
= tty
->disc_data
;
370 struct hci_dev
*hdev
;
372 BT_DBG("tty %p", tty
);
374 /* Detach from the tty */
375 tty
->disc_data
= NULL
;
382 hci_uart_close(hdev
);
384 cancel_work_sync(&hu
->write_work
);
386 if (test_and_clear_bit(HCI_UART_PROTO_SET
, &hu
->flags
)) {
388 if (test_bit(HCI_UART_REGISTERED
, &hu
->flags
))
389 hci_unregister_dev(hdev
);
392 hu
->proto
->close(hu
);
398 /* hci_uart_tty_wakeup()
400 * Callback for transmit wakeup. Called when low level
401 * device driver can accept more send data.
403 * Arguments: tty pointer to associated tty instance data
406 static void hci_uart_tty_wakeup(struct tty_struct
*tty
)
408 struct hci_uart
*hu
= tty
->disc_data
;
415 clear_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
420 if (test_bit(HCI_UART_PROTO_SET
, &hu
->flags
))
421 hci_uart_tx_wakeup(hu
);
424 /* hci_uart_tty_receive()
426 * Called by tty low level driver when receive data is
429 * Arguments: tty pointer to tty isntance data
430 * data pointer to received data
431 * flags pointer to flags for data
432 * count count of received data in bytes
436 static void hci_uart_tty_receive(struct tty_struct
*tty
, const u8
*data
,
437 char *flags
, int count
)
439 struct hci_uart
*hu
= tty
->disc_data
;
441 if (!hu
|| tty
!= hu
->tty
)
444 if (!test_bit(HCI_UART_PROTO_SET
, &hu
->flags
))
447 spin_lock(&hu
->rx_lock
);
448 hu
->proto
->recv(hu
, data
, count
);
451 hu
->hdev
->stat
.byte_rx
+= count
;
453 spin_unlock(&hu
->rx_lock
);
458 static int hci_uart_register_dev(struct hci_uart
*hu
)
460 struct hci_dev
*hdev
;
464 /* Initialize and register HCI device */
465 hdev
= hci_alloc_dev();
467 BT_ERR("Can't allocate HCI device");
473 hdev
->bus
= HCI_UART
;
474 hci_set_drvdata(hdev
, hu
);
476 hdev
->open
= hci_uart_open
;
477 hdev
->close
= hci_uart_close
;
478 hdev
->flush
= hci_uart_flush
;
479 hdev
->send
= hci_uart_send_frame
;
480 hdev
->setup
= hci_uart_setup
;
481 SET_HCIDEV_DEV(hdev
, hu
->tty
->dev
);
483 if (test_bit(HCI_UART_RAW_DEVICE
, &hu
->hdev_flags
))
484 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
486 if (test_bit(HCI_UART_EXT_CONFIG
, &hu
->hdev_flags
))
487 set_bit(HCI_QUIRK_EXTERNAL_CONFIG
, &hdev
->quirks
);
489 if (!test_bit(HCI_UART_RESET_ON_INIT
, &hu
->hdev_flags
))
490 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
492 if (test_bit(HCI_UART_CREATE_AMP
, &hu
->hdev_flags
))
493 hdev
->dev_type
= HCI_AMP
;
495 hdev
->dev_type
= HCI_BREDR
;
497 if (test_bit(HCI_UART_INIT_PENDING
, &hu
->hdev_flags
))
500 if (hci_register_dev(hdev
) < 0) {
501 BT_ERR("Can't register HCI device");
506 set_bit(HCI_UART_REGISTERED
, &hu
->flags
);
511 static int hci_uart_set_proto(struct hci_uart
*hu
, int id
)
513 const struct hci_uart_proto
*p
;
516 p
= hci_uart_get_proto(id
);
518 return -EPROTONOSUPPORT
;
526 err
= hci_uart_register_dev(hu
);
535 static int hci_uart_set_flags(struct hci_uart
*hu
, unsigned long flags
)
537 unsigned long valid_flags
= BIT(HCI_UART_RAW_DEVICE
) |
538 BIT(HCI_UART_RESET_ON_INIT
) |
539 BIT(HCI_UART_CREATE_AMP
) |
540 BIT(HCI_UART_INIT_PENDING
) |
541 BIT(HCI_UART_EXT_CONFIG
) |
542 BIT(HCI_UART_VND_DETECT
);
544 if (flags
& ~valid_flags
)
547 hu
->hdev_flags
= flags
;
552 /* hci_uart_tty_ioctl()
554 * Process IOCTL system call for the tty device.
558 * tty pointer to tty instance data
559 * file pointer to open file object for device
560 * cmd IOCTL command code
561 * arg argument for IOCTL call (cmd dependent)
563 * Return Value: Command dependent
565 static int hci_uart_tty_ioctl(struct tty_struct
*tty
, struct file
*file
,
566 unsigned int cmd
, unsigned long arg
)
568 struct hci_uart
*hu
= tty
->disc_data
;
573 /* Verify the status of the device */
578 case HCIUARTSETPROTO
:
579 if (!test_and_set_bit(HCI_UART_PROTO_SET
, &hu
->flags
)) {
580 err
= hci_uart_set_proto(hu
, arg
);
582 clear_bit(HCI_UART_PROTO_SET
, &hu
->flags
);
589 case HCIUARTGETPROTO
:
590 if (test_bit(HCI_UART_PROTO_SET
, &hu
->flags
))
591 return hu
->proto
->id
;
594 case HCIUARTGETDEVICE
:
595 if (test_bit(HCI_UART_REGISTERED
, &hu
->flags
))
599 case HCIUARTSETFLAGS
:
600 if (test_bit(HCI_UART_PROTO_SET
, &hu
->flags
))
602 err
= hci_uart_set_flags(hu
, arg
);
607 case HCIUARTGETFLAGS
:
608 return hu
->hdev_flags
;
611 err
= n_tty_ioctl_helper(tty
, file
, cmd
, arg
);
619 * We don't provide read/write/poll interface for user space.
621 static ssize_t
hci_uart_tty_read(struct tty_struct
*tty
, struct file
*file
,
622 unsigned char __user
*buf
, size_t nr
)
627 static ssize_t
hci_uart_tty_write(struct tty_struct
*tty
, struct file
*file
,
628 const unsigned char *data
, size_t count
)
633 static unsigned int hci_uart_tty_poll(struct tty_struct
*tty
,
634 struct file
*filp
, poll_table
*wait
)
639 static int __init
hci_uart_init(void)
641 static struct tty_ldisc_ops hci_uart_ldisc
;
644 BT_INFO("HCI UART driver ver %s", VERSION
);
646 /* Register the tty discipline */
648 memset(&hci_uart_ldisc
, 0, sizeof (hci_uart_ldisc
));
649 hci_uart_ldisc
.magic
= TTY_LDISC_MAGIC
;
650 hci_uart_ldisc
.name
= "n_hci";
651 hci_uart_ldisc
.open
= hci_uart_tty_open
;
652 hci_uart_ldisc
.close
= hci_uart_tty_close
;
653 hci_uart_ldisc
.read
= hci_uart_tty_read
;
654 hci_uart_ldisc
.write
= hci_uart_tty_write
;
655 hci_uart_ldisc
.ioctl
= hci_uart_tty_ioctl
;
656 hci_uart_ldisc
.poll
= hci_uart_tty_poll
;
657 hci_uart_ldisc
.receive_buf
= hci_uart_tty_receive
;
658 hci_uart_ldisc
.write_wakeup
= hci_uart_tty_wakeup
;
659 hci_uart_ldisc
.owner
= THIS_MODULE
;
661 err
= tty_register_ldisc(N_HCI
, &hci_uart_ldisc
);
663 BT_ERR("HCI line discipline registration failed. (%d)", err
);
667 #ifdef CONFIG_BT_HCIUART_H4
670 #ifdef CONFIG_BT_HCIUART_BCSP
673 #ifdef CONFIG_BT_HCIUART_LL
676 #ifdef CONFIG_BT_HCIUART_ATH3K
679 #ifdef CONFIG_BT_HCIUART_3WIRE
686 static void __exit
hci_uart_exit(void)
690 #ifdef CONFIG_BT_HCIUART_H4
693 #ifdef CONFIG_BT_HCIUART_BCSP
696 #ifdef CONFIG_BT_HCIUART_LL
699 #ifdef CONFIG_BT_HCIUART_ATH3K
702 #ifdef CONFIG_BT_HCIUART_3WIRE
706 /* Release tty registration of line discipline */
707 err
= tty_unregister_ldisc(N_HCI
);
709 BT_ERR("Can't unregister HCI line discipline (%d)", err
);
712 module_init(hci_uart_init
);
713 module_exit(hci_uart_exit
);
715 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
716 MODULE_DESCRIPTION("Bluetooth HCI UART driver ver " VERSION
);
717 MODULE_VERSION(VERSION
);
718 MODULE_LICENSE("GPL");
719 MODULE_ALIAS_LDISC(N_HCI
);