3 * A driver for Nokia Connectivity Card DTL-1 devices
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 Nokia Connectivity Card DTL-1");
58 MODULE_LICENSE("GPL");
62 /* ======================== Local structures ======================== */
65 typedef struct dtl1_info_t {
66 struct pcmcia_device *p_dev;
70 spinlock_t lock; /* For serializing operations */
72 unsigned long flowmask; /* HCI flow mask */
75 struct sk_buff_head txq;
76 unsigned long tx_state;
78 unsigned long rx_state;
79 unsigned long rx_count;
80 struct sk_buff *rx_skb;
84 static int dtl1_config(struct pcmcia_device *link);
88 #define XMIT_SENDING 1
90 #define XMIT_WAITING 8
93 #define RECV_WAIT_NSH 0
94 #define RECV_WAIT_DATA 1
101 } __packed nsh_t; /* Nokia Specific Header */
103 #define NSHL 4 /* Nokia Specific Header Length */
107 /* ======================== Interrupt handling ======================== */
110 static int dtl1_write(unsigned int iobase, int fifo_size, __u8 *buf, int len)
114 /* Tx FIFO should be empty */
115 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE))
118 /* Fill FIFO with current frame */
119 while ((fifo_size-- > 0) && (actual < len)) {
120 /* Transmit next byte */
121 outb(buf[actual], iobase + UART_TX);
129 static void dtl1_write_wakeup(dtl1_info_t *info)
132 BT_ERR("Unknown device");
136 if (test_bit(XMIT_WAITING, &(info->tx_state))) {
137 set_bit(XMIT_WAKEUP, &(info->tx_state));
141 if (test_and_set_bit(XMIT_SENDING, &(info->tx_state))) {
142 set_bit(XMIT_WAKEUP, &(info->tx_state));
147 unsigned int iobase = info->p_dev->resource[0]->start;
148 register struct sk_buff *skb;
151 clear_bit(XMIT_WAKEUP, &(info->tx_state));
153 if (!pcmcia_dev_present(info->p_dev))
156 if (!(skb = skb_dequeue(&(info->txq))))
160 len = dtl1_write(iobase, 32, skb->data, skb->len);
162 if (len == skb->len) {
163 set_bit(XMIT_WAITING, &(info->tx_state));
167 skb_queue_head(&(info->txq), skb);
170 info->hdev->stat.byte_tx += len;
172 } while (test_bit(XMIT_WAKEUP, &(info->tx_state)));
174 clear_bit(XMIT_SENDING, &(info->tx_state));
178 static void dtl1_control(dtl1_info_t *info, struct sk_buff *skb)
180 u8 flowmask = *(u8 *)skb->data;
183 printk(KERN_INFO "Bluetooth: Nokia control data =");
184 for (i = 0; i < skb->len; i++) {
185 printk(" %02x", skb->data[i]);
189 /* transition to active state */
190 if (((info->flowmask & 0x07) == 0) && ((flowmask & 0x07) != 0)) {
191 clear_bit(XMIT_WAITING, &(info->tx_state));
192 dtl1_write_wakeup(info);
195 info->flowmask = flowmask;
201 static void dtl1_receive(dtl1_info_t *info)
208 BT_ERR("Unknown device");
212 iobase = info->p_dev->resource[0]->start;
215 info->hdev->stat.byte_rx++;
217 /* Allocate packet */
218 if (info->rx_skb == NULL)
219 if (!(info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC))) {
220 BT_ERR("Can't allocate mem for new packet");
221 info->rx_state = RECV_WAIT_NSH;
222 info->rx_count = NSHL;
226 *skb_put(info->rx_skb, 1) = inb(iobase + UART_RX);
227 nsh = (nsh_t *)info->rx_skb->data;
231 if (info->rx_count == 0) {
233 switch (info->rx_state) {
235 info->rx_state = RECV_WAIT_DATA;
236 info->rx_count = nsh->len + (nsh->len & 0x0001);
239 bt_cb(info->rx_skb)->pkt_type = nsh->type;
241 /* remove PAD byte if it exists */
242 if (nsh->len & 0x0001) {
243 info->rx_skb->tail--;
248 skb_pull(info->rx_skb, NSHL);
250 switch (bt_cb(info->rx_skb)->pkt_type) {
252 /* control data for the Nokia Card */
253 dtl1_control(info, info->rx_skb);
258 /* send frame to the HCI layer */
259 info->rx_skb->dev = (void *) info->hdev;
260 bt_cb(info->rx_skb)->pkt_type &= 0x0f;
261 hci_recv_frame(info->rx_skb);
265 BT_ERR("Unknown HCI packet with type 0x%02x received", bt_cb(info->rx_skb)->pkt_type);
266 kfree_skb(info->rx_skb);
270 info->rx_state = RECV_WAIT_NSH;
271 info->rx_count = NSHL;
278 /* Make sure we don't stay here too long */
279 if (boguscount++ > 32)
282 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
286 static irqreturn_t dtl1_interrupt(int irq, void *dev_inst)
288 dtl1_info_t *info = dev_inst;
293 irqreturn_t r = IRQ_NONE;
295 if (!info || !info->hdev)
296 /* our irq handler is shared */
299 iobase = info->p_dev->resource[0]->start;
301 spin_lock(&(info->lock));
303 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
307 /* Clear interrupt */
308 lsr = inb(iobase + UART_LSR);
315 /* Receive interrupt */
319 if (lsr & UART_LSR_THRE) {
320 /* Transmitter ready for data */
321 dtl1_write_wakeup(info);
325 BT_ERR("Unhandled IIR=%#x", iir);
329 /* Make sure we don't stay here too long */
330 if (boguscount++ > 100)
333 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
337 msr = inb(iobase + UART_MSR);
339 if (info->ri_latch ^ (msr & UART_MSR_RI)) {
340 info->ri_latch = msr & UART_MSR_RI;
341 clear_bit(XMIT_WAITING, &(info->tx_state));
342 dtl1_write_wakeup(info);
346 spin_unlock(&(info->lock));
353 /* ======================== HCI interface ======================== */
356 static int dtl1_hci_open(struct hci_dev *hdev)
358 set_bit(HCI_RUNNING, &(hdev->flags));
364 static int dtl1_hci_flush(struct hci_dev *hdev)
366 dtl1_info_t *info = hci_get_drvdata(hdev);
369 skb_queue_purge(&(info->txq));
375 static int dtl1_hci_close(struct hci_dev *hdev)
377 if (!test_and_clear_bit(HCI_RUNNING, &(hdev->flags)))
380 dtl1_hci_flush(hdev);
386 static int dtl1_hci_send_frame(struct sk_buff *skb)
389 struct hci_dev *hdev = (struct hci_dev *)(skb->dev);
394 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
398 info = hci_get_drvdata(hdev);
400 switch (bt_cb(skb)->pkt_type) {
401 case HCI_COMMAND_PKT:
405 case HCI_ACLDATA_PKT:
409 case HCI_SCODATA_PKT:
420 s = bt_skb_alloc(NSHL + skb->len + 1, GFP_ATOMIC);
424 skb_reserve(s, NSHL);
425 skb_copy_from_linear_data(skb, skb_put(s, skb->len), skb->len);
426 if (skb->len & 0x0001)
427 *skb_put(s, 1) = 0; /* PAD */
429 /* Prepend skb with Nokia frame header and queue */
430 memcpy(skb_push(s, NSHL), &nsh, NSHL);
431 skb_queue_tail(&(info->txq), s);
433 dtl1_write_wakeup(info);
441 static int dtl1_hci_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg)
448 /* ======================== Card services HCI interaction ======================== */
451 static int dtl1_open(dtl1_info_t *info)
454 unsigned int iobase = info->p_dev->resource[0]->start;
455 struct hci_dev *hdev;
457 spin_lock_init(&(info->lock));
459 skb_queue_head_init(&(info->txq));
461 info->rx_state = RECV_WAIT_NSH;
462 info->rx_count = NSHL;
465 set_bit(XMIT_WAITING, &(info->tx_state));
467 /* Initialize HCI device */
468 hdev = hci_alloc_dev();
470 BT_ERR("Can't allocate HCI device");
476 hdev->bus = HCI_PCCARD;
477 hci_set_drvdata(hdev, info);
478 SET_HCIDEV_DEV(hdev, &info->p_dev->dev);
480 hdev->open = dtl1_hci_open;
481 hdev->close = dtl1_hci_close;
482 hdev->flush = dtl1_hci_flush;
483 hdev->send = dtl1_hci_send_frame;
484 hdev->ioctl = dtl1_hci_ioctl;
486 spin_lock_irqsave(&(info->lock), flags);
489 outb(0, iobase + UART_MCR);
491 /* Turn off interrupts */
492 outb(0, iobase + UART_IER);
494 /* Initialize UART */
495 outb(UART_LCR_WLEN8, iobase + UART_LCR); /* Reset DLAB */
496 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase + UART_MCR);
498 info->ri_latch = inb(info->p_dev->resource[0]->start + UART_MSR)
501 /* Turn on interrupts */
502 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
504 spin_unlock_irqrestore(&(info->lock), flags);
506 /* Timeout before it is safe to send the first HCI packet */
509 /* Register HCI device */
510 if (hci_register_dev(hdev) < 0) {
511 BT_ERR("Can't register HCI device");
521 static int dtl1_close(dtl1_info_t *info)
524 unsigned int iobase = info->p_dev->resource[0]->start;
525 struct hci_dev *hdev = info->hdev;
530 dtl1_hci_close(hdev);
532 spin_lock_irqsave(&(info->lock), flags);
535 outb(0, iobase + UART_MCR);
537 /* Turn off interrupts */
538 outb(0, iobase + UART_IER);
540 spin_unlock_irqrestore(&(info->lock), flags);
542 hci_unregister_dev(hdev);
548 static int dtl1_probe(struct pcmcia_device *link)
552 /* Create new info device */
553 info = devm_kzalloc(&link->dev, sizeof(*info), GFP_KERNEL);
560 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
562 return dtl1_config(link);
566 static void dtl1_detach(struct pcmcia_device *link)
568 dtl1_info_t *info = link->priv;
571 pcmcia_disable_device(link);
574 static int dtl1_confcheck(struct pcmcia_device *p_dev, void *priv_data)
576 if ((p_dev->resource[1]->end) || (p_dev->resource[1]->end < 8))
579 p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
580 p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
582 return pcmcia_request_io(p_dev);
585 static int dtl1_config(struct pcmcia_device *link)
587 dtl1_info_t *info = link->priv;
590 /* Look for a generic full-sized window */
591 link->resource[0]->end = 8;
592 ret = pcmcia_loop_config(link, dtl1_confcheck, NULL);
596 ret = pcmcia_request_irq(link, dtl1_interrupt);
600 ret = pcmcia_enable_device(link);
604 ret = dtl1_open(info);
615 static const struct pcmcia_device_id dtl1_ids[] = {
616 PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d),
617 PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-4", 0xe1bfdd64, 0x9102bc82),
618 PCMCIA_DEVICE_PROD_ID12("Socket", "CF", 0xb38bcc2e, 0x44ebf863),
619 PCMCIA_DEVICE_PROD_ID12("Socket", "CF+ Personal Network Card", 0xb38bcc2e, 0xe732bae3),
622 MODULE_DEVICE_TABLE(pcmcia, dtl1_ids);
624 static struct pcmcia_driver dtl1_driver = {
625 .owner = THIS_MODULE,
628 .remove = dtl1_detach,
629 .id_table = dtl1_ids,
632 static int __init init_dtl1_cs(void)
634 return pcmcia_register_driver(&dtl1_driver);
638 static void __exit exit_dtl1_cs(void)
640 pcmcia_unregister_driver(&dtl1_driver);
643 module_init(init_dtl1_cs);
644 module_exit(exit_dtl1_cs);