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>
41 #include <asm/system.h>
44 #include <pcmcia/cs_types.h>
45 #include <pcmcia/cs.h>
46 #include <pcmcia/cistpl.h>
47 #include <pcmcia/ciscode.h>
48 #include <pcmcia/ds.h>
49 #include <pcmcia/cisreg.h>
51 #include <net/bluetooth/bluetooth.h>
52 #include <net/bluetooth/hci_core.h>
56 /* ======================== Module parameters ======================== */
59 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
60 MODULE_DESCRIPTION("Bluetooth driver for Nokia Connectivity Card DTL-1");
61 MODULE_LICENSE("GPL");
65 /* ======================== Local structures ======================== */
68 typedef struct dtl1_info_t
{
69 struct pcmcia_device
*p_dev
;
73 spinlock_t lock
; /* For serializing operations */
75 unsigned long flowmask
; /* HCI flow mask */
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 int dtl1_config(struct pcmcia_device
*link
);
88 static void dtl1_release(struct pcmcia_device
*link
);
90 static void dtl1_detach(struct pcmcia_device
*p_dev
);
94 #define XMIT_SENDING 1
96 #define XMIT_WAITING 8
99 #define RECV_WAIT_NSH 0
100 #define RECV_WAIT_DATA 1
107 } __attribute__ ((packed
)) nsh_t
; /* Nokia Specific Header */
109 #define NSHL 4 /* Nokia Specific Header Length */
113 /* ======================== Interrupt handling ======================== */
116 static int dtl1_write(unsigned int iobase
, int fifo_size
, __u8
*buf
, int len
)
120 /* Tx FIFO should be empty */
121 if (!(inb(iobase
+ UART_LSR
) & UART_LSR_THRE
))
124 /* Fill FIFO with current frame */
125 while ((fifo_size
-- > 0) && (actual
< len
)) {
126 /* Transmit next byte */
127 outb(buf
[actual
], iobase
+ UART_TX
);
135 static void dtl1_write_wakeup(dtl1_info_t
*info
)
138 BT_ERR("Unknown device");
142 if (test_bit(XMIT_WAITING
, &(info
->tx_state
))) {
143 set_bit(XMIT_WAKEUP
, &(info
->tx_state
));
147 if (test_and_set_bit(XMIT_SENDING
, &(info
->tx_state
))) {
148 set_bit(XMIT_WAKEUP
, &(info
->tx_state
));
153 register unsigned int iobase
= info
->p_dev
->io
.BasePort1
;
154 register struct sk_buff
*skb
;
157 clear_bit(XMIT_WAKEUP
, &(info
->tx_state
));
159 if (!pcmcia_dev_present(info
->p_dev
))
162 if (!(skb
= skb_dequeue(&(info
->txq
))))
166 len
= dtl1_write(iobase
, 32, skb
->data
, skb
->len
);
168 if (len
== skb
->len
) {
169 set_bit(XMIT_WAITING
, &(info
->tx_state
));
173 skb_queue_head(&(info
->txq
), skb
);
176 info
->hdev
->stat
.byte_tx
+= len
;
178 } while (test_bit(XMIT_WAKEUP
, &(info
->tx_state
)));
180 clear_bit(XMIT_SENDING
, &(info
->tx_state
));
184 static void dtl1_control(dtl1_info_t
*info
, struct sk_buff
*skb
)
186 u8 flowmask
= *(u8
*)skb
->data
;
189 printk(KERN_INFO
"Bluetooth: Nokia control data =");
190 for (i
= 0; i
< skb
->len
; i
++) {
191 printk(" %02x", skb
->data
[i
]);
195 /* transition to active state */
196 if (((info
->flowmask
& 0x07) == 0) && ((flowmask
& 0x07) != 0)) {
197 clear_bit(XMIT_WAITING
, &(info
->tx_state
));
198 dtl1_write_wakeup(info
);
201 info
->flowmask
= flowmask
;
207 static void dtl1_receive(dtl1_info_t
*info
)
214 BT_ERR("Unknown device");
218 iobase
= info
->p_dev
->io
.BasePort1
;
221 info
->hdev
->stat
.byte_rx
++;
223 /* Allocate packet */
224 if (info
->rx_skb
== NULL
)
225 if (!(info
->rx_skb
= bt_skb_alloc(HCI_MAX_FRAME_SIZE
, GFP_ATOMIC
))) {
226 BT_ERR("Can't allocate mem for new packet");
227 info
->rx_state
= RECV_WAIT_NSH
;
228 info
->rx_count
= NSHL
;
232 *skb_put(info
->rx_skb
, 1) = inb(iobase
+ UART_RX
);
233 nsh
= (nsh_t
*)info
->rx_skb
->data
;
237 if (info
->rx_count
== 0) {
239 switch (info
->rx_state
) {
241 info
->rx_state
= RECV_WAIT_DATA
;
242 info
->rx_count
= nsh
->len
+ (nsh
->len
& 0x0001);
245 bt_cb(info
->rx_skb
)->pkt_type
= nsh
->type
;
247 /* remove PAD byte if it exists */
248 if (nsh
->len
& 0x0001) {
249 info
->rx_skb
->tail
--;
254 skb_pull(info
->rx_skb
, NSHL
);
256 switch (bt_cb(info
->rx_skb
)->pkt_type
) {
258 /* control data for the Nokia Card */
259 dtl1_control(info
, info
->rx_skb
);
264 /* send frame to the HCI layer */
265 info
->rx_skb
->dev
= (void *) info
->hdev
;
266 bt_cb(info
->rx_skb
)->pkt_type
&= 0x0f;
267 hci_recv_frame(info
->rx_skb
);
271 BT_ERR("Unknown HCI packet with type 0x%02x received", bt_cb(info
->rx_skb
)->pkt_type
);
272 kfree_skb(info
->rx_skb
);
276 info
->rx_state
= RECV_WAIT_NSH
;
277 info
->rx_count
= NSHL
;
284 /* Make sure we don't stay here too long */
285 if (boguscount
++ > 32)
288 } while (inb(iobase
+ UART_LSR
) & UART_LSR_DR
);
292 static irqreturn_t
dtl1_interrupt(int irq
, void *dev_inst
)
294 dtl1_info_t
*info
= dev_inst
;
299 irqreturn_t r
= IRQ_NONE
;
301 if (!info
|| !info
->hdev
)
302 /* our irq handler is shared */
305 iobase
= info
->p_dev
->io
.BasePort1
;
307 spin_lock(&(info
->lock
));
309 iir
= inb(iobase
+ UART_IIR
) & UART_IIR_ID
;
313 /* Clear interrupt */
314 lsr
= inb(iobase
+ UART_LSR
);
321 /* Receive interrupt */
325 if (lsr
& UART_LSR_THRE
) {
326 /* Transmitter ready for data */
327 dtl1_write_wakeup(info
);
331 BT_ERR("Unhandled IIR=%#x", iir
);
335 /* Make sure we don't stay here too long */
336 if (boguscount
++ > 100)
339 iir
= inb(iobase
+ UART_IIR
) & UART_IIR_ID
;
343 msr
= inb(iobase
+ UART_MSR
);
345 if (info
->ri_latch
^ (msr
& UART_MSR_RI
)) {
346 info
->ri_latch
= msr
& UART_MSR_RI
;
347 clear_bit(XMIT_WAITING
, &(info
->tx_state
));
348 dtl1_write_wakeup(info
);
352 spin_unlock(&(info
->lock
));
359 /* ======================== HCI interface ======================== */
362 static int dtl1_hci_open(struct hci_dev
*hdev
)
364 set_bit(HCI_RUNNING
, &(hdev
->flags
));
370 static int dtl1_hci_flush(struct hci_dev
*hdev
)
372 dtl1_info_t
*info
= (dtl1_info_t
*)(hdev
->driver_data
);
375 skb_queue_purge(&(info
->txq
));
381 static int dtl1_hci_close(struct hci_dev
*hdev
)
383 if (!test_and_clear_bit(HCI_RUNNING
, &(hdev
->flags
)))
386 dtl1_hci_flush(hdev
);
392 static int dtl1_hci_send_frame(struct sk_buff
*skb
)
395 struct hci_dev
*hdev
= (struct hci_dev
*)(skb
->dev
);
400 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
404 info
= (dtl1_info_t
*)(hdev
->driver_data
);
406 switch (bt_cb(skb
)->pkt_type
) {
407 case HCI_COMMAND_PKT
:
411 case HCI_ACLDATA_PKT
:
415 case HCI_SCODATA_PKT
:
426 s
= bt_skb_alloc(NSHL
+ skb
->len
+ 1, GFP_ATOMIC
);
430 skb_reserve(s
, NSHL
);
431 skb_copy_from_linear_data(skb
, skb_put(s
, skb
->len
), skb
->len
);
432 if (skb
->len
& 0x0001)
433 *skb_put(s
, 1) = 0; /* PAD */
435 /* Prepend skb with Nokia frame header and queue */
436 memcpy(skb_push(s
, NSHL
), &nsh
, NSHL
);
437 skb_queue_tail(&(info
->txq
), s
);
439 dtl1_write_wakeup(info
);
447 static void dtl1_hci_destruct(struct hci_dev
*hdev
)
452 static int dtl1_hci_ioctl(struct hci_dev
*hdev
, unsigned int cmd
, unsigned long arg
)
459 /* ======================== Card services HCI interaction ======================== */
462 static int dtl1_open(dtl1_info_t
*info
)
465 unsigned int iobase
= info
->p_dev
->io
.BasePort1
;
466 struct hci_dev
*hdev
;
468 spin_lock_init(&(info
->lock
));
470 skb_queue_head_init(&(info
->txq
));
472 info
->rx_state
= RECV_WAIT_NSH
;
473 info
->rx_count
= NSHL
;
476 set_bit(XMIT_WAITING
, &(info
->tx_state
));
478 /* Initialize HCI device */
479 hdev
= hci_alloc_dev();
481 BT_ERR("Can't allocate HCI device");
487 hdev
->bus
= HCI_PCCARD
;
488 hdev
->driver_data
= info
;
489 SET_HCIDEV_DEV(hdev
, &info
->p_dev
->dev
);
491 hdev
->open
= dtl1_hci_open
;
492 hdev
->close
= dtl1_hci_close
;
493 hdev
->flush
= dtl1_hci_flush
;
494 hdev
->send
= dtl1_hci_send_frame
;
495 hdev
->destruct
= dtl1_hci_destruct
;
496 hdev
->ioctl
= dtl1_hci_ioctl
;
498 hdev
->owner
= THIS_MODULE
;
500 spin_lock_irqsave(&(info
->lock
), flags
);
503 outb(0, iobase
+ UART_MCR
);
505 /* Turn off interrupts */
506 outb(0, iobase
+ UART_IER
);
508 /* Initialize UART */
509 outb(UART_LCR_WLEN8
, iobase
+ UART_LCR
); /* Reset DLAB */
510 outb((UART_MCR_DTR
| UART_MCR_RTS
| UART_MCR_OUT2
), iobase
+ UART_MCR
);
512 info
->ri_latch
= inb(info
->p_dev
->io
.BasePort1
+ UART_MSR
) & UART_MSR_RI
;
514 /* Turn on interrupts */
515 outb(UART_IER_RLSI
| UART_IER_RDI
| UART_IER_THRI
, iobase
+ UART_IER
);
517 spin_unlock_irqrestore(&(info
->lock
), flags
);
519 /* Timeout before it is safe to send the first HCI packet */
522 /* Register HCI device */
523 if (hci_register_dev(hdev
) < 0) {
524 BT_ERR("Can't register HCI device");
534 static int dtl1_close(dtl1_info_t
*info
)
537 unsigned int iobase
= info
->p_dev
->io
.BasePort1
;
538 struct hci_dev
*hdev
= info
->hdev
;
543 dtl1_hci_close(hdev
);
545 spin_lock_irqsave(&(info
->lock
), flags
);
548 outb(0, iobase
+ UART_MCR
);
550 /* Turn off interrupts */
551 outb(0, iobase
+ UART_IER
);
553 spin_unlock_irqrestore(&(info
->lock
), flags
);
555 if (hci_unregister_dev(hdev
) < 0)
556 BT_ERR("Can't unregister HCI device %s", hdev
->name
);
563 static int dtl1_probe(struct pcmcia_device
*link
)
567 /* Create new info device */
568 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
575 link
->io
.Attributes1
= IO_DATA_PATH_WIDTH_8
;
576 link
->io
.NumPorts1
= 8;
578 link
->conf
.Attributes
= CONF_ENABLE_IRQ
;
579 link
->conf
.IntType
= INT_MEMORY_AND_IO
;
581 return dtl1_config(link
);
585 static void dtl1_detach(struct pcmcia_device
*link
)
587 dtl1_info_t
*info
= link
->priv
;
594 static int dtl1_confcheck(struct pcmcia_device
*p_dev
,
595 cistpl_cftable_entry_t
*cf
,
596 cistpl_cftable_entry_t
*dflt
,
600 if ((cf
->io
.nwin
== 1) && (cf
->io
.win
[0].len
> 8)) {
601 p_dev
->io
.BasePort1
= cf
->io
.win
[0].base
;
602 p_dev
->io
.NumPorts1
= cf
->io
.win
[0].len
; /*yo */
603 p_dev
->io
.IOAddrLines
= cf
->io
.flags
& CISTPL_IO_LINES_MASK
;
604 if (!pcmcia_request_io(p_dev
, &p_dev
->io
))
610 static int dtl1_config(struct pcmcia_device
*link
)
612 dtl1_info_t
*info
= link
->priv
;
615 /* Look for a generic full-sized window */
616 link
->io
.NumPorts1
= 8;
617 if (pcmcia_loop_config(link
, dtl1_confcheck
, NULL
) < 0)
620 i
= pcmcia_request_irq(link
, dtl1_interrupt
);
624 i
= pcmcia_request_configuration(link
, &link
->conf
);
628 if (dtl1_open(info
) != 0)
639 static void dtl1_release(struct pcmcia_device
*link
)
641 dtl1_info_t
*info
= link
->priv
;
645 pcmcia_disable_device(link
);
649 static struct pcmcia_device_id dtl1_ids
[] = {
650 PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d),
651 PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-4", 0xe1bfdd64, 0x9102bc82),
652 PCMCIA_DEVICE_PROD_ID12("Socket", "CF", 0xb38bcc2e, 0x44ebf863),
653 PCMCIA_DEVICE_PROD_ID12("Socket", "CF+ Personal Network Card", 0xb38bcc2e, 0xe732bae3),
656 MODULE_DEVICE_TABLE(pcmcia
, dtl1_ids
);
658 static struct pcmcia_driver dtl1_driver
= {
659 .owner
= THIS_MODULE
,
664 .remove
= dtl1_detach
,
665 .id_table
= dtl1_ids
,
668 static int __init
init_dtl1_cs(void)
670 return pcmcia_register_driver(&dtl1_driver
);
674 static void __exit
exit_dtl1_cs(void)
676 pcmcia_unregister_driver(&dtl1_driver
);
679 module_init(init_dtl1_cs
);
680 module_exit(exit_dtl1_cs
);