3 * Driver for Bluetooth PCMCIA cards with HCI UART interface
5 * Copyright (C) 2001-2002 Marcel Holtmann <marcel@holtmann.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation;
12 * Software distributed under the License is distributed on an "AS
13 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
14 * implied. See the License for the specific language governing
15 * rights and limitations under the License.
17 * The initial developer of the original code is David A. Hinds
18 * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
19 * are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
23 #include <linux/module.h>
25 #include <linux/kernel.h>
26 #include <linux/init.h>
27 #include <linux/slab.h>
28 #include <linux/types.h>
29 #include <linux/delay.h>
30 #include <linux/errno.h>
31 #include <linux/ptrace.h>
32 #include <linux/ioport.h>
33 #include <linux/spinlock.h>
34 #include <linux/moduleparam.h>
36 #include <linux/skbuff.h>
37 #include <linux/string.h>
38 #include <linux/serial.h>
39 #include <linux/serial_reg.h>
40 #include <linux/bitops.h>
43 #include <pcmcia/cistpl.h>
44 #include <pcmcia/ciscode.h>
45 #include <pcmcia/ds.h>
46 #include <pcmcia/cisreg.h>
48 #include <net/bluetooth/bluetooth.h>
49 #include <net/bluetooth/hci_core.h>
53 /* ======================== Module parameters ======================== */
56 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
57 MODULE_DESCRIPTION("Bluetooth driver for Bluetooth PCMCIA cards with HCI UART interface");
58 MODULE_LICENSE("GPL");
62 /* ======================== Local structures ======================== */
65 typedef struct btuart_info_t {
66 struct pcmcia_device *p_dev;
70 spinlock_t lock; /* For serializing operations */
72 struct sk_buff_head txq;
73 unsigned long tx_state;
75 unsigned long rx_state;
76 unsigned long rx_count;
77 struct sk_buff *rx_skb;
81 static int btuart_config(struct pcmcia_device *link);
82 static void btuart_release(struct pcmcia_device *link);
84 static void btuart_detach(struct pcmcia_device *p_dev);
87 /* Maximum baud rate */
88 #define SPEED_MAX 115200
90 /* Default baud rate: 57600, 115200, 230400 or 460800 */
91 #define DEFAULT_BAUD_RATE 115200
95 #define XMIT_SENDING 1
97 #define XMIT_WAITING 8
100 #define RECV_WAIT_PACKET_TYPE 0
101 #define RECV_WAIT_EVENT_HEADER 1
102 #define RECV_WAIT_ACL_HEADER 2
103 #define RECV_WAIT_SCO_HEADER 3
104 #define RECV_WAIT_DATA 4
108 /* ======================== Interrupt handling ======================== */
111 static int btuart_write(unsigned int iobase, int fifo_size, __u8 *buf, int len)
115 /* Tx FIFO should be empty */
116 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE))
119 /* Fill FIFO with current frame */
120 while ((fifo_size-- > 0) && (actual < len)) {
121 /* Transmit next byte */
122 outb(buf[actual], iobase + UART_TX);
130 static void btuart_write_wakeup(btuart_info_t *info)
133 BT_ERR("Unknown device");
137 if (test_and_set_bit(XMIT_SENDING, &(info->tx_state))) {
138 set_bit(XMIT_WAKEUP, &(info->tx_state));
143 unsigned int iobase = info->p_dev->resource[0]->start;
144 register struct sk_buff *skb;
147 clear_bit(XMIT_WAKEUP, &(info->tx_state));
149 if (!pcmcia_dev_present(info->p_dev))
152 if (!(skb = skb_dequeue(&(info->txq))))
156 len = btuart_write(iobase, 16, skb->data, skb->len);
157 set_bit(XMIT_WAKEUP, &(info->tx_state));
159 if (len == skb->len) {
163 skb_queue_head(&(info->txq), skb);
166 info->hdev->stat.byte_tx += len;
168 } while (test_bit(XMIT_WAKEUP, &(info->tx_state)));
170 clear_bit(XMIT_SENDING, &(info->tx_state));
174 static void btuart_receive(btuart_info_t *info)
180 BT_ERR("Unknown device");
184 iobase = info->p_dev->resource[0]->start;
187 info->hdev->stat.byte_rx++;
189 /* Allocate packet */
190 if (info->rx_skb == NULL) {
191 info->rx_state = RECV_WAIT_PACKET_TYPE;
193 if (!(info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC))) {
194 BT_ERR("Can't allocate mem for new packet");
199 if (info->rx_state == RECV_WAIT_PACKET_TYPE) {
201 info->rx_skb->dev = (void *) info->hdev;
202 bt_cb(info->rx_skb)->pkt_type = inb(iobase + UART_RX);
204 switch (bt_cb(info->rx_skb)->pkt_type) {
207 info->rx_state = RECV_WAIT_EVENT_HEADER;
208 info->rx_count = HCI_EVENT_HDR_SIZE;
211 case HCI_ACLDATA_PKT:
212 info->rx_state = RECV_WAIT_ACL_HEADER;
213 info->rx_count = HCI_ACL_HDR_SIZE;
216 case HCI_SCODATA_PKT:
217 info->rx_state = RECV_WAIT_SCO_HEADER;
218 info->rx_count = HCI_SCO_HDR_SIZE;
223 BT_ERR("Unknown HCI packet with type 0x%02x received", bt_cb(info->rx_skb)->pkt_type);
224 info->hdev->stat.err_rx++;
225 clear_bit(HCI_RUNNING, &(info->hdev->flags));
227 kfree_skb(info->rx_skb);
235 *skb_put(info->rx_skb, 1) = inb(iobase + UART_RX);
238 if (info->rx_count == 0) {
241 struct hci_event_hdr *eh;
242 struct hci_acl_hdr *ah;
243 struct hci_sco_hdr *sh;
246 switch (info->rx_state) {
248 case RECV_WAIT_EVENT_HEADER:
249 eh = hci_event_hdr(info->rx_skb);
250 info->rx_state = RECV_WAIT_DATA;
251 info->rx_count = eh->plen;
254 case RECV_WAIT_ACL_HEADER:
255 ah = hci_acl_hdr(info->rx_skb);
256 dlen = __le16_to_cpu(ah->dlen);
257 info->rx_state = RECV_WAIT_DATA;
258 info->rx_count = dlen;
261 case RECV_WAIT_SCO_HEADER:
262 sh = hci_sco_hdr(info->rx_skb);
263 info->rx_state = RECV_WAIT_DATA;
264 info->rx_count = sh->dlen;
268 hci_recv_frame(info->rx_skb);
278 /* Make sure we don't stay here too long */
279 if (boguscount++ > 16)
282 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
286 static irqreturn_t btuart_interrupt(int irq, void *dev_inst)
288 btuart_info_t *info = dev_inst;
292 irqreturn_t r = IRQ_NONE;
294 if (!info || !info->hdev)
295 /* our irq handler is shared */
298 iobase = info->p_dev->resource[0]->start;
300 spin_lock(&(info->lock));
302 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
306 /* Clear interrupt */
307 lsr = inb(iobase + UART_LSR);
314 /* Receive interrupt */
315 btuart_receive(info);
318 if (lsr & UART_LSR_THRE) {
319 /* Transmitter ready for data */
320 btuart_write_wakeup(info);
324 BT_ERR("Unhandled IIR=%#x", iir);
328 /* Make sure we don't stay here too long */
329 if (boguscount++ > 100)
332 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
336 spin_unlock(&(info->lock));
342 static void btuart_change_speed(btuart_info_t *info, unsigned int speed)
346 int fcr; /* FIFO control reg */
347 int lcr; /* Line control reg */
351 BT_ERR("Unknown device");
355 iobase = info->p_dev->resource[0]->start;
357 spin_lock_irqsave(&(info->lock), flags);
359 /* Turn off interrupts */
360 outb(0, iobase + UART_IER);
362 divisor = SPEED_MAX / speed;
364 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT;
367 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
368 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
369 * about this timeout since it will always be fast enough.
373 fcr |= UART_FCR_TRIGGER_1;
375 fcr |= UART_FCR_TRIGGER_14;
377 /* Bluetooth cards use 8N1 */
378 lcr = UART_LCR_WLEN8;
380 outb(UART_LCR_DLAB | lcr, iobase + UART_LCR); /* Set DLAB */
381 outb(divisor & 0xff, iobase + UART_DLL); /* Set speed */
382 outb(divisor >> 8, iobase + UART_DLM);
383 outb(lcr, iobase + UART_LCR); /* Set 8N1 */
384 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */
386 /* Turn on interrupts */
387 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
389 spin_unlock_irqrestore(&(info->lock), flags);
394 /* ======================== HCI interface ======================== */
397 static int btuart_hci_flush(struct hci_dev *hdev)
399 btuart_info_t *info = hci_get_drvdata(hdev);
402 skb_queue_purge(&(info->txq));
408 static int btuart_hci_open(struct hci_dev *hdev)
410 set_bit(HCI_RUNNING, &(hdev->flags));
416 static int btuart_hci_close(struct hci_dev *hdev)
418 if (!test_and_clear_bit(HCI_RUNNING, &(hdev->flags)))
421 btuart_hci_flush(hdev);
427 static int btuart_hci_send_frame(struct sk_buff *skb)
430 struct hci_dev *hdev = (struct hci_dev *)(skb->dev);
433 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
437 info = hci_get_drvdata(hdev);
439 switch (bt_cb(skb)->pkt_type) {
440 case HCI_COMMAND_PKT:
443 case HCI_ACLDATA_PKT:
446 case HCI_SCODATA_PKT:
451 /* Prepend skb with frame type */
452 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
453 skb_queue_tail(&(info->txq), skb);
455 btuart_write_wakeup(info);
461 static int btuart_hci_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg)
468 /* ======================== Card services HCI interaction ======================== */
471 static int btuart_open(btuart_info_t *info)
474 unsigned int iobase = info->p_dev->resource[0]->start;
475 struct hci_dev *hdev;
477 spin_lock_init(&(info->lock));
479 skb_queue_head_init(&(info->txq));
481 info->rx_state = RECV_WAIT_PACKET_TYPE;
485 /* Initialize HCI device */
486 hdev = hci_alloc_dev();
488 BT_ERR("Can't allocate HCI device");
494 hdev->bus = HCI_PCCARD;
495 hci_set_drvdata(hdev, info);
496 SET_HCIDEV_DEV(hdev, &info->p_dev->dev);
498 hdev->open = btuart_hci_open;
499 hdev->close = btuart_hci_close;
500 hdev->flush = btuart_hci_flush;
501 hdev->send = btuart_hci_send_frame;
502 hdev->ioctl = btuart_hci_ioctl;
504 spin_lock_irqsave(&(info->lock), flags);
507 outb(0, iobase + UART_MCR);
509 /* Turn off interrupts */
510 outb(0, iobase + UART_IER);
512 /* Initialize UART */
513 outb(UART_LCR_WLEN8, iobase + UART_LCR); /* Reset DLAB */
514 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase + UART_MCR);
516 /* Turn on interrupts */
517 // outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
519 spin_unlock_irqrestore(&(info->lock), flags);
521 btuart_change_speed(info, DEFAULT_BAUD_RATE);
523 /* Timeout before it is safe to send the first HCI packet */
526 /* Register HCI device */
527 if (hci_register_dev(hdev) < 0) {
528 BT_ERR("Can't register HCI device");
538 static int btuart_close(btuart_info_t *info)
541 unsigned int iobase = info->p_dev->resource[0]->start;
542 struct hci_dev *hdev = info->hdev;
547 btuart_hci_close(hdev);
549 spin_lock_irqsave(&(info->lock), flags);
552 outb(0, iobase + UART_MCR);
554 /* Turn off interrupts */
555 outb(0, iobase + UART_IER);
557 spin_unlock_irqrestore(&(info->lock), flags);
559 hci_unregister_dev(hdev);
565 static int btuart_probe(struct pcmcia_device *link)
569 /* Create new info device */
570 info = devm_kzalloc(&link->dev, sizeof(*info), GFP_KERNEL);
577 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_VPP |
580 return btuart_config(link);
584 static void btuart_detach(struct pcmcia_device *link)
586 btuart_release(link);
589 static int btuart_check_config(struct pcmcia_device *p_dev, void *priv_data)
591 int *try = priv_data;
594 p_dev->io_lines = 16;
596 if ((p_dev->resource[0]->end != 8) || (p_dev->resource[0]->start == 0))
599 p_dev->resource[0]->end = 8;
600 p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
601 p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
603 return pcmcia_request_io(p_dev);
606 static int btuart_check_config_notpicky(struct pcmcia_device *p_dev,
609 static unsigned int base[5] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0x0 };
612 if (p_dev->io_lines > 3)
615 p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
616 p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
617 p_dev->resource[0]->end = 8;
619 for (j = 0; j < 5; j++) {
620 p_dev->resource[0]->start = base[j];
621 p_dev->io_lines = base[j] ? 16 : 3;
622 if (!pcmcia_request_io(p_dev))
628 static int btuart_config(struct pcmcia_device *link)
630 btuart_info_t *info = link->priv;
634 /* First pass: look for a config entry that looks normal.
635 Two tries: without IO aliases, then with aliases */
636 for (try = 0; try < 2; try++)
637 if (!pcmcia_loop_config(link, btuart_check_config, &try))
640 /* Second pass: try to find an entry that isn't picky about
641 its base address, then try to grab any standard serial port
642 address, and finally try to get any free port. */
643 if (!pcmcia_loop_config(link, btuart_check_config_notpicky, NULL))
646 BT_ERR("No usable port range found");
650 i = pcmcia_request_irq(link, btuart_interrupt);
654 i = pcmcia_enable_device(link);
658 if (btuart_open(info) != 0)
664 btuart_release(link);
669 static void btuart_release(struct pcmcia_device *link)
671 btuart_info_t *info = link->priv;
675 pcmcia_disable_device(link);
678 static const struct pcmcia_device_id btuart_ids[] = {
679 /* don't use this driver. Use serial_cs + hci_uart instead */
682 MODULE_DEVICE_TABLE(pcmcia, btuart_ids);
684 static struct pcmcia_driver btuart_driver = {
685 .owner = THIS_MODULE,
687 .probe = btuart_probe,
688 .remove = btuart_detach,
689 .id_table = btuart_ids,
691 module_pcmcia_driver(btuart_driver);