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/config.h>
24 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/init.h>
28 #include <linux/slab.h>
29 #include <linux/types.h>
30 #include <linux/sched.h>
31 #include <linux/delay.h>
32 #include <linux/errno.h>
33 #include <linux/ptrace.h>
34 #include <linux/ioport.h>
35 #include <linux/spinlock.h>
36 #include <linux/moduleparam.h>
38 #include <linux/skbuff.h>
39 #include <linux/string.h>
40 #include <linux/serial.h>
41 #include <linux/serial_reg.h>
42 #include <linux/bitops.h>
43 #include <asm/system.h>
46 #include <pcmcia/cs_types.h>
47 #include <pcmcia/cs.h>
48 #include <pcmcia/cistpl.h>
49 #include <pcmcia/ciscode.h>
50 #include <pcmcia/ds.h>
51 #include <pcmcia/cisreg.h>
53 #include <net/bluetooth/bluetooth.h>
54 #include <net/bluetooth/hci_core.h>
58 /* ======================== Module parameters ======================== */
61 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
62 MODULE_DESCRIPTION("Bluetooth driver for Bluetooth PCMCIA cards with HCI UART interface");
63 MODULE_LICENSE("GPL");
67 /* ======================== Local structures ======================== */
70 typedef struct btuart_info_t {
71 struct pcmcia_device *p_dev;
76 spinlock_t lock; /* For serializing operations */
78 struct sk_buff_head txq;
79 unsigned long tx_state;
81 unsigned long rx_state;
82 unsigned long rx_count;
83 struct sk_buff *rx_skb;
87 static void btuart_config(dev_link_t *link);
88 static void btuart_release(dev_link_t *link);
90 static void btuart_detach(struct pcmcia_device *p_dev);
93 /* Maximum baud rate */
94 #define SPEED_MAX 115200
96 /* Default baud rate: 57600, 115200, 230400 or 460800 */
97 #define DEFAULT_BAUD_RATE 115200
100 /* Transmit states */
101 #define XMIT_SENDING 1
102 #define XMIT_WAKEUP 2
103 #define XMIT_WAITING 8
105 /* Receiver states */
106 #define RECV_WAIT_PACKET_TYPE 0
107 #define RECV_WAIT_EVENT_HEADER 1
108 #define RECV_WAIT_ACL_HEADER 2
109 #define RECV_WAIT_SCO_HEADER 3
110 #define RECV_WAIT_DATA 4
114 /* ======================== Interrupt handling ======================== */
117 static int btuart_write(unsigned int iobase, int fifo_size, __u8 *buf, int len)
121 /* Tx FIFO should be empty */
122 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE))
125 /* Fill FIFO with current frame */
126 while ((fifo_size-- > 0) && (actual < len)) {
127 /* Transmit next byte */
128 outb(buf[actual], iobase + UART_TX);
136 static void btuart_write_wakeup(btuart_info_t *info)
139 BT_ERR("Unknown device");
143 if (test_and_set_bit(XMIT_SENDING, &(info->tx_state))) {
144 set_bit(XMIT_WAKEUP, &(info->tx_state));
149 register unsigned int iobase = info->p_dev->io.BasePort1;
150 register struct sk_buff *skb;
153 clear_bit(XMIT_WAKEUP, &(info->tx_state));
155 if (!(info->p_dev->state & DEV_PRESENT))
158 if (!(skb = skb_dequeue(&(info->txq))))
162 len = btuart_write(iobase, 16, skb->data, skb->len);
163 set_bit(XMIT_WAKEUP, &(info->tx_state));
165 if (len == skb->len) {
169 skb_queue_head(&(info->txq), skb);
172 info->hdev->stat.byte_tx += len;
174 } while (test_bit(XMIT_WAKEUP, &(info->tx_state)));
176 clear_bit(XMIT_SENDING, &(info->tx_state));
180 static void btuart_receive(btuart_info_t *info)
186 BT_ERR("Unknown device");
190 iobase = info->p_dev->io.BasePort1;
193 info->hdev->stat.byte_rx++;
195 /* Allocate packet */
196 if (info->rx_skb == NULL) {
197 info->rx_state = RECV_WAIT_PACKET_TYPE;
199 if (!(info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC))) {
200 BT_ERR("Can't allocate mem for new packet");
205 if (info->rx_state == RECV_WAIT_PACKET_TYPE) {
207 info->rx_skb->dev = (void *) info->hdev;
208 bt_cb(info->rx_skb)->pkt_type = inb(iobase + UART_RX);
210 switch (bt_cb(info->rx_skb)->pkt_type) {
213 info->rx_state = RECV_WAIT_EVENT_HEADER;
214 info->rx_count = HCI_EVENT_HDR_SIZE;
217 case HCI_ACLDATA_PKT:
218 info->rx_state = RECV_WAIT_ACL_HEADER;
219 info->rx_count = HCI_ACL_HDR_SIZE;
222 case HCI_SCODATA_PKT:
223 info->rx_state = RECV_WAIT_SCO_HEADER;
224 info->rx_count = HCI_SCO_HDR_SIZE;
229 BT_ERR("Unknown HCI packet with type 0x%02x received", bt_cb(info->rx_skb)->pkt_type);
230 info->hdev->stat.err_rx++;
231 clear_bit(HCI_RUNNING, &(info->hdev->flags));
233 kfree_skb(info->rx_skb);
241 *skb_put(info->rx_skb, 1) = inb(iobase + UART_RX);
244 if (info->rx_count == 0) {
247 struct hci_event_hdr *eh;
248 struct hci_acl_hdr *ah;
249 struct hci_sco_hdr *sh;
252 switch (info->rx_state) {
254 case RECV_WAIT_EVENT_HEADER:
255 eh = (struct hci_event_hdr *)(info->rx_skb->data);
256 info->rx_state = RECV_WAIT_DATA;
257 info->rx_count = eh->plen;
260 case RECV_WAIT_ACL_HEADER:
261 ah = (struct hci_acl_hdr *)(info->rx_skb->data);
262 dlen = __le16_to_cpu(ah->dlen);
263 info->rx_state = RECV_WAIT_DATA;
264 info->rx_count = dlen;
267 case RECV_WAIT_SCO_HEADER:
268 sh = (struct hci_sco_hdr *)(info->rx_skb->data);
269 info->rx_state = RECV_WAIT_DATA;
270 info->rx_count = sh->dlen;
274 hci_recv_frame(info->rx_skb);
284 /* Make sure we don't stay here too long */
285 if (boguscount++ > 16)
288 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
292 static irqreturn_t btuart_interrupt(int irq, void *dev_inst, struct pt_regs *regs)
294 btuart_info_t *info = dev_inst;
299 if (!info || !info->hdev) {
300 BT_ERR("Call of irq %d for unknown device", irq);
304 iobase = info->p_dev->io.BasePort1;
306 spin_lock(&(info->lock));
308 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
311 /* Clear interrupt */
312 lsr = inb(iobase + UART_LSR);
319 /* Receive interrupt */
320 btuart_receive(info);
323 if (lsr & UART_LSR_THRE) {
324 /* Transmitter ready for data */
325 btuart_write_wakeup(info);
329 BT_ERR("Unhandled IIR=%#x", iir);
333 /* Make sure we don't stay here too long */
334 if (boguscount++ > 100)
337 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
341 spin_unlock(&(info->lock));
347 static void btuart_change_speed(btuart_info_t *info, unsigned int speed)
351 int fcr; /* FIFO control reg */
352 int lcr; /* Line control reg */
356 BT_ERR("Unknown device");
360 iobase = info->p_dev->io.BasePort1;
362 spin_lock_irqsave(&(info->lock), flags);
364 /* Turn off interrupts */
365 outb(0, iobase + UART_IER);
367 divisor = SPEED_MAX / speed;
369 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT;
372 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
373 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
374 * about this timeout since it will always be fast enough.
378 fcr |= UART_FCR_TRIGGER_1;
380 fcr |= UART_FCR_TRIGGER_14;
382 /* Bluetooth cards use 8N1 */
383 lcr = UART_LCR_WLEN8;
385 outb(UART_LCR_DLAB | lcr, iobase + UART_LCR); /* Set DLAB */
386 outb(divisor & 0xff, iobase + UART_DLL); /* Set speed */
387 outb(divisor >> 8, iobase + UART_DLM);
388 outb(lcr, iobase + UART_LCR); /* Set 8N1 */
389 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */
391 /* Turn on interrups */
392 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
394 spin_unlock_irqrestore(&(info->lock), flags);
399 /* ======================== HCI interface ======================== */
402 static int btuart_hci_flush(struct hci_dev *hdev)
404 btuart_info_t *info = (btuart_info_t *)(hdev->driver_data);
407 skb_queue_purge(&(info->txq));
413 static int btuart_hci_open(struct hci_dev *hdev)
415 set_bit(HCI_RUNNING, &(hdev->flags));
421 static int btuart_hci_close(struct hci_dev *hdev)
423 if (!test_and_clear_bit(HCI_RUNNING, &(hdev->flags)))
426 btuart_hci_flush(hdev);
432 static int btuart_hci_send_frame(struct sk_buff *skb)
435 struct hci_dev *hdev = (struct hci_dev *)(skb->dev);
438 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
442 info = (btuart_info_t *)(hdev->driver_data);
444 switch (bt_cb(skb)->pkt_type) {
445 case HCI_COMMAND_PKT:
448 case HCI_ACLDATA_PKT:
451 case HCI_SCODATA_PKT:
456 /* Prepend skb with frame type */
457 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
458 skb_queue_tail(&(info->txq), skb);
460 btuart_write_wakeup(info);
466 static void btuart_hci_destruct(struct hci_dev *hdev)
471 static int btuart_hci_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg)
478 /* ======================== Card services HCI interaction ======================== */
481 static int btuart_open(btuart_info_t *info)
484 unsigned int iobase = info->p_dev->io.BasePort1;
485 struct hci_dev *hdev;
487 spin_lock_init(&(info->lock));
489 skb_queue_head_init(&(info->txq));
491 info->rx_state = RECV_WAIT_PACKET_TYPE;
495 /* Initialize HCI device */
496 hdev = hci_alloc_dev();
498 BT_ERR("Can't allocate HCI device");
504 hdev->type = HCI_PCCARD;
505 hdev->driver_data = info;
507 hdev->open = btuart_hci_open;
508 hdev->close = btuart_hci_close;
509 hdev->flush = btuart_hci_flush;
510 hdev->send = btuart_hci_send_frame;
511 hdev->destruct = btuart_hci_destruct;
512 hdev->ioctl = btuart_hci_ioctl;
514 hdev->owner = THIS_MODULE;
516 spin_lock_irqsave(&(info->lock), flags);
519 outb(0, iobase + UART_MCR);
521 /* Turn off interrupts */
522 outb(0, iobase + UART_IER);
524 /* Initialize UART */
525 outb(UART_LCR_WLEN8, iobase + UART_LCR); /* Reset DLAB */
526 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase + UART_MCR);
528 /* Turn on interrupts */
529 // outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
531 spin_unlock_irqrestore(&(info->lock), flags);
533 btuart_change_speed(info, DEFAULT_BAUD_RATE);
535 /* Timeout before it is safe to send the first HCI packet */
538 /* Register HCI device */
539 if (hci_register_dev(hdev) < 0) {
540 BT_ERR("Can't register HCI device");
550 static int btuart_close(btuart_info_t *info)
553 unsigned int iobase = info->p_dev->io.BasePort1;
554 struct hci_dev *hdev = info->hdev;
559 btuart_hci_close(hdev);
561 spin_lock_irqsave(&(info->lock), flags);
564 outb(0, iobase + UART_MCR);
566 /* Turn off interrupts */
567 outb(0, iobase + UART_IER);
569 spin_unlock_irqrestore(&(info->lock), flags);
571 if (hci_unregister_dev(hdev) < 0)
572 BT_ERR("Can't unregister HCI device %s", hdev->name);
579 static int btuart_attach(struct pcmcia_device *p_dev)
582 dev_link_t *link = dev_to_instance(p_dev);
584 /* Create new info device */
585 info = kzalloc(sizeof(*info), GFP_KERNEL);
592 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
593 link->io.NumPorts1 = 8;
594 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
595 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
597 link->irq.Handler = btuart_interrupt;
598 link->irq.Instance = info;
600 link->conf.Attributes = CONF_ENABLE_IRQ;
601 link->conf.IntType = INT_MEMORY_AND_IO;
603 link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
610 static void btuart_detach(struct pcmcia_device *p_dev)
612 dev_link_t *link = dev_to_instance(p_dev);
613 btuart_info_t *info = link->priv;
615 if (link->state & DEV_CONFIG)
616 btuart_release(link);
621 static int get_tuple(client_handle_t handle, tuple_t *tuple, cisparse_t *parse)
625 i = pcmcia_get_tuple_data(handle, tuple);
629 return pcmcia_parse_tuple(handle, tuple, parse);
632 static int first_tuple(client_handle_t handle, tuple_t *tuple, cisparse_t *parse)
634 if (pcmcia_get_first_tuple(handle, tuple) != CS_SUCCESS)
635 return CS_NO_MORE_ITEMS;
636 return get_tuple(handle, tuple, parse);
639 static int next_tuple(client_handle_t handle, tuple_t *tuple, cisparse_t *parse)
641 if (pcmcia_get_next_tuple(handle, tuple) != CS_SUCCESS)
642 return CS_NO_MORE_ITEMS;
643 return get_tuple(handle, tuple, parse);
646 static void btuart_config(dev_link_t *link)
648 static kio_addr_t base[5] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0x0 };
649 client_handle_t handle = link->handle;
650 btuart_info_t *info = link->priv;
654 cistpl_cftable_entry_t *cf = &parse.cftable_entry;
655 int i, j, try, last_ret, last_fn;
657 tuple.TupleData = (cisdata_t *)buf;
658 tuple.TupleOffset = 0;
659 tuple.TupleDataMax = 255;
660 tuple.Attributes = 0;
662 /* Get configuration register information */
663 tuple.DesiredTuple = CISTPL_CONFIG;
664 last_ret = first_tuple(handle, &tuple, &parse);
665 if (last_ret != CS_SUCCESS) {
666 last_fn = ParseTuple;
669 link->conf.ConfigBase = parse.config.base;
670 link->conf.Present = parse.config.rmask[0];
673 link->state |= DEV_CONFIG;
675 /* First pass: look for a config entry that looks normal. */
676 tuple.TupleData = (cisdata_t *) buf;
677 tuple.TupleOffset = 0;
678 tuple.TupleDataMax = 255;
679 tuple.Attributes = 0;
680 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
681 /* Two tries: without IO aliases, then with aliases */
682 for (try = 0; try < 2; try++) {
683 i = first_tuple(handle, &tuple, &parse);
684 while (i != CS_NO_MORE_ITEMS) {
687 if (cf->vpp1.present & (1 << CISTPL_POWER_VNOM))
688 link->conf.Vpp = cf->vpp1.param[CISTPL_POWER_VNOM] / 10000;
689 if ((cf->io.nwin > 0) && (cf->io.win[0].len == 8) && (cf->io.win[0].base != 0)) {
690 link->conf.ConfigIndex = cf->index;
691 link->io.BasePort1 = cf->io.win[0].base;
692 link->io.IOAddrLines = (try == 0) ? 16 : cf->io.flags & CISTPL_IO_LINES_MASK;
693 i = pcmcia_request_io(link->handle, &link->io);
698 i = next_tuple(handle, &tuple, &parse);
702 /* Second pass: try to find an entry that isn't picky about
703 its base address, then try to grab any standard serial port
704 address, and finally try to get any free port. */
705 i = first_tuple(handle, &tuple, &parse);
706 while (i != CS_NO_MORE_ITEMS) {
707 if ((i == CS_SUCCESS) && (cf->io.nwin > 0)
708 && ((cf->io.flags & CISTPL_IO_LINES_MASK) <= 3)) {
709 link->conf.ConfigIndex = cf->index;
710 for (j = 0; j < 5; j++) {
711 link->io.BasePort1 = base[j];
712 link->io.IOAddrLines = base[j] ? 16 : 3;
713 i = pcmcia_request_io(link->handle, &link->io);
718 i = next_tuple(handle, &tuple, &parse);
722 if (i != CS_SUCCESS) {
723 BT_ERR("No usable port range found");
724 cs_error(link->handle, RequestIO, i);
728 i = pcmcia_request_irq(link->handle, &link->irq);
729 if (i != CS_SUCCESS) {
730 cs_error(link->handle, RequestIRQ, i);
731 link->irq.AssignedIRQ = 0;
734 i = pcmcia_request_configuration(link->handle, &link->conf);
735 if (i != CS_SUCCESS) {
736 cs_error(link->handle, RequestConfiguration, i);
740 if (btuart_open(info) != 0)
743 strcpy(info->node.dev_name, info->hdev->name);
744 link->dev_node = &info->node;
745 link->state &= ~DEV_CONFIG_PENDING;
750 cs_error(link->handle, last_fn, last_ret);
753 btuart_release(link);
757 static void btuart_release(dev_link_t *link)
759 btuart_info_t *info = link->priv;
761 if (link->state & DEV_PRESENT)
764 pcmcia_disable_device(link->handle);
767 static struct pcmcia_device_id btuart_ids[] = {
768 /* don't use this driver. Use serial_cs + hci_uart instead */
771 MODULE_DEVICE_TABLE(pcmcia, btuart_ids);
773 static struct pcmcia_driver btuart_driver = {
774 .owner = THIS_MODULE,
778 .probe = btuart_attach,
779 .remove = btuart_detach,
780 .id_table = btuart_ids,
783 static int __init init_btuart_cs(void)
785 return pcmcia_register_driver(&btuart_driver);
789 static void __exit exit_btuart_cs(void)
791 pcmcia_unregister_driver(&btuart_driver);
794 module_init(init_btuart_cs);
795 module_exit(exit_btuart_cs);