dtl1_cs.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. /*
  2. *
  3. * A driver for Nokia Connectivity Card DTL-1 devices
  4. *
  5. * Copyright (C) 2001-2002 Marcel Holtmann <marcel@holtmann.org>
  6. *
  7. *
  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;
  11. *
  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.
  16. *
  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.
  20. *
  21. */
  22. #include <linux/module.h>
  23. #include <linux/kernel.h>
  24. #include <linux/init.h>
  25. #include <linux/slab.h>
  26. #include <linux/types.h>
  27. #include <linux/delay.h>
  28. #include <linux/errno.h>
  29. #include <linux/ptrace.h>
  30. #include <linux/ioport.h>
  31. #include <linux/spinlock.h>
  32. #include <linux/moduleparam.h>
  33. #include <linux/skbuff.h>
  34. #include <linux/string.h>
  35. #include <linux/serial.h>
  36. #include <linux/serial_reg.h>
  37. #include <linux/bitops.h>
  38. #include <asm/io.h>
  39. #include <pcmcia/cistpl.h>
  40. #include <pcmcia/ciscode.h>
  41. #include <pcmcia/ds.h>
  42. #include <pcmcia/cisreg.h>
  43. #include <net/bluetooth/bluetooth.h>
  44. #include <net/bluetooth/hci_core.h>
  45. /* ======================== Module parameters ======================== */
  46. MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
  47. MODULE_DESCRIPTION("Bluetooth driver for Nokia Connectivity Card DTL-1");
  48. MODULE_LICENSE("GPL");
  49. /* ======================== Local structures ======================== */
  50. typedef struct dtl1_info_t {
  51. struct pcmcia_device *p_dev;
  52. struct hci_dev *hdev;
  53. spinlock_t lock; /* For serializing operations */
  54. unsigned long flowmask; /* HCI flow mask */
  55. int ri_latch;
  56. struct sk_buff_head txq;
  57. unsigned long tx_state;
  58. unsigned long rx_state;
  59. unsigned long rx_count;
  60. struct sk_buff *rx_skb;
  61. } dtl1_info_t;
  62. static int dtl1_config(struct pcmcia_device *link);
  63. /* Transmit states */
  64. #define XMIT_SENDING 1
  65. #define XMIT_WAKEUP 2
  66. #define XMIT_WAITING 8
  67. /* Receiver States */
  68. #define RECV_WAIT_NSH 0
  69. #define RECV_WAIT_DATA 1
  70. typedef struct {
  71. u8 type;
  72. u8 zero;
  73. u16 len;
  74. } __packed nsh_t; /* Nokia Specific Header */
  75. #define NSHL 4 /* Nokia Specific Header Length */
  76. /* ======================== Interrupt handling ======================== */
  77. static int dtl1_write(unsigned int iobase, int fifo_size, __u8 *buf, int len)
  78. {
  79. int actual = 0;
  80. /* Tx FIFO should be empty */
  81. if (!(inb(iobase + UART_LSR) & UART_LSR_THRE))
  82. return 0;
  83. /* Fill FIFO with current frame */
  84. while ((fifo_size-- > 0) && (actual < len)) {
  85. /* Transmit next byte */
  86. outb(buf[actual], iobase + UART_TX);
  87. actual++;
  88. }
  89. return actual;
  90. }
  91. static void dtl1_write_wakeup(dtl1_info_t *info)
  92. {
  93. if (!info) {
  94. BT_ERR("Unknown device");
  95. return;
  96. }
  97. if (test_bit(XMIT_WAITING, &(info->tx_state))) {
  98. set_bit(XMIT_WAKEUP, &(info->tx_state));
  99. return;
  100. }
  101. if (test_and_set_bit(XMIT_SENDING, &(info->tx_state))) {
  102. set_bit(XMIT_WAKEUP, &(info->tx_state));
  103. return;
  104. }
  105. do {
  106. register unsigned int iobase = info->p_dev->resource[0]->start;
  107. register struct sk_buff *skb;
  108. register int len;
  109. clear_bit(XMIT_WAKEUP, &(info->tx_state));
  110. if (!pcmcia_dev_present(info->p_dev))
  111. return;
  112. if (!(skb = skb_dequeue(&(info->txq))))
  113. break;
  114. /* Send frame */
  115. len = dtl1_write(iobase, 32, skb->data, skb->len);
  116. if (len == skb->len) {
  117. set_bit(XMIT_WAITING, &(info->tx_state));
  118. kfree_skb(skb);
  119. } else {
  120. skb_pull(skb, len);
  121. skb_queue_head(&(info->txq), skb);
  122. }
  123. info->hdev->stat.byte_tx += len;
  124. } while (test_bit(XMIT_WAKEUP, &(info->tx_state)));
  125. clear_bit(XMIT_SENDING, &(info->tx_state));
  126. }
  127. static void dtl1_control(dtl1_info_t *info, struct sk_buff *skb)
  128. {
  129. u8 flowmask = *(u8 *)skb->data;
  130. int i;
  131. printk(KERN_INFO "Bluetooth: Nokia control data =");
  132. for (i = 0; i < skb->len; i++) {
  133. printk(" %02x", skb->data[i]);
  134. }
  135. printk("\n");
  136. /* transition to active state */
  137. if (((info->flowmask & 0x07) == 0) && ((flowmask & 0x07) != 0)) {
  138. clear_bit(XMIT_WAITING, &(info->tx_state));
  139. dtl1_write_wakeup(info);
  140. }
  141. info->flowmask = flowmask;
  142. kfree_skb(skb);
  143. }
  144. static void dtl1_receive(dtl1_info_t *info)
  145. {
  146. unsigned int iobase;
  147. nsh_t *nsh;
  148. int boguscount = 0;
  149. if (!info) {
  150. BT_ERR("Unknown device");
  151. return;
  152. }
  153. iobase = info->p_dev->resource[0]->start;
  154. do {
  155. info->hdev->stat.byte_rx++;
  156. /* Allocate packet */
  157. if (info->rx_skb == NULL)
  158. if (!(info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC))) {
  159. BT_ERR("Can't allocate mem for new packet");
  160. info->rx_state = RECV_WAIT_NSH;
  161. info->rx_count = NSHL;
  162. return;
  163. }
  164. *skb_put(info->rx_skb, 1) = inb(iobase + UART_RX);
  165. nsh = (nsh_t *)info->rx_skb->data;
  166. info->rx_count--;
  167. if (info->rx_count == 0) {
  168. switch (info->rx_state) {
  169. case RECV_WAIT_NSH:
  170. info->rx_state = RECV_WAIT_DATA;
  171. info->rx_count = nsh->len + (nsh->len & 0x0001);
  172. break;
  173. case RECV_WAIT_DATA:
  174. bt_cb(info->rx_skb)->pkt_type = nsh->type;
  175. /* remove PAD byte if it exists */
  176. if (nsh->len & 0x0001) {
  177. info->rx_skb->tail--;
  178. info->rx_skb->len--;
  179. }
  180. /* remove NSH */
  181. skb_pull(info->rx_skb, NSHL);
  182. switch (bt_cb(info->rx_skb)->pkt_type) {
  183. case 0x80:
  184. /* control data for the Nokia Card */
  185. dtl1_control(info, info->rx_skb);
  186. break;
  187. case 0x82:
  188. case 0x83:
  189. case 0x84:
  190. /* send frame to the HCI layer */
  191. info->rx_skb->dev = (void *) info->hdev;
  192. bt_cb(info->rx_skb)->pkt_type &= 0x0f;
  193. hci_recv_frame(info->rx_skb);
  194. break;
  195. default:
  196. /* unknown packet */
  197. BT_ERR("Unknown HCI packet with type 0x%02x received", bt_cb(info->rx_skb)->pkt_type);
  198. kfree_skb(info->rx_skb);
  199. break;
  200. }
  201. info->rx_state = RECV_WAIT_NSH;
  202. info->rx_count = NSHL;
  203. info->rx_skb = NULL;
  204. break;
  205. }
  206. }
  207. /* Make sure we don't stay here too long */
  208. if (boguscount++ > 32)
  209. break;
  210. } while (inb(iobase + UART_LSR) & UART_LSR_DR);
  211. }
  212. static irqreturn_t dtl1_interrupt(int irq, void *dev_inst)
  213. {
  214. dtl1_info_t *info = dev_inst;
  215. unsigned int iobase;
  216. unsigned char msr;
  217. int boguscount = 0;
  218. int iir, lsr;
  219. irqreturn_t r = IRQ_NONE;
  220. if (!info || !info->hdev)
  221. /* our irq handler is shared */
  222. return IRQ_NONE;
  223. iobase = info->p_dev->resource[0]->start;
  224. spin_lock(&(info->lock));
  225. iir = inb(iobase + UART_IIR) & UART_IIR_ID;
  226. while (iir) {
  227. r = IRQ_HANDLED;
  228. /* Clear interrupt */
  229. lsr = inb(iobase + UART_LSR);
  230. switch (iir) {
  231. case UART_IIR_RLSI:
  232. BT_ERR("RLSI");
  233. break;
  234. case UART_IIR_RDI:
  235. /* Receive interrupt */
  236. dtl1_receive(info);
  237. break;
  238. case UART_IIR_THRI:
  239. if (lsr & UART_LSR_THRE) {
  240. /* Transmitter ready for data */
  241. dtl1_write_wakeup(info);
  242. }
  243. break;
  244. default:
  245. BT_ERR("Unhandled IIR=%#x", iir);
  246. break;
  247. }
  248. /* Make sure we don't stay here too long */
  249. if (boguscount++ > 100)
  250. break;
  251. iir = inb(iobase + UART_IIR) & UART_IIR_ID;
  252. }
  253. msr = inb(iobase + UART_MSR);
  254. if (info->ri_latch ^ (msr & UART_MSR_RI)) {
  255. info->ri_latch = msr & UART_MSR_RI;
  256. clear_bit(XMIT_WAITING, &(info->tx_state));
  257. dtl1_write_wakeup(info);
  258. r = IRQ_HANDLED;
  259. }
  260. spin_unlock(&(info->lock));
  261. return r;
  262. }
  263. /* ======================== HCI interface ======================== */
  264. static int dtl1_hci_open(struct hci_dev *hdev)
  265. {
  266. set_bit(HCI_RUNNING, &(hdev->flags));
  267. return 0;
  268. }
  269. static int dtl1_hci_flush(struct hci_dev *hdev)
  270. {
  271. dtl1_info_t *info = hci_get_drvdata(hdev);
  272. /* Drop TX queue */
  273. skb_queue_purge(&(info->txq));
  274. return 0;
  275. }
  276. static int dtl1_hci_close(struct hci_dev *hdev)
  277. {
  278. if (!test_and_clear_bit(HCI_RUNNING, &(hdev->flags)))
  279. return 0;
  280. dtl1_hci_flush(hdev);
  281. return 0;
  282. }
  283. static int dtl1_hci_send_frame(struct sk_buff *skb)
  284. {
  285. dtl1_info_t *info;
  286. struct hci_dev *hdev = (struct hci_dev *)(skb->dev);
  287. struct sk_buff *s;
  288. nsh_t nsh;
  289. if (!hdev) {
  290. BT_ERR("Frame for unknown HCI device (hdev=NULL)");
  291. return -ENODEV;
  292. }
  293. info = hci_get_drvdata(hdev);
  294. switch (bt_cb(skb)->pkt_type) {
  295. case HCI_COMMAND_PKT:
  296. hdev->stat.cmd_tx++;
  297. nsh.type = 0x81;
  298. break;
  299. case HCI_ACLDATA_PKT:
  300. hdev->stat.acl_tx++;
  301. nsh.type = 0x82;
  302. break;
  303. case HCI_SCODATA_PKT:
  304. hdev->stat.sco_tx++;
  305. nsh.type = 0x83;
  306. break;
  307. default:
  308. return -EILSEQ;
  309. };
  310. nsh.zero = 0;
  311. nsh.len = skb->len;
  312. s = bt_skb_alloc(NSHL + skb->len + 1, GFP_ATOMIC);
  313. if (!s)
  314. return -ENOMEM;
  315. skb_reserve(s, NSHL);
  316. skb_copy_from_linear_data(skb, skb_put(s, skb->len), skb->len);
  317. if (skb->len & 0x0001)
  318. *skb_put(s, 1) = 0; /* PAD */
  319. /* Prepend skb with Nokia frame header and queue */
  320. memcpy(skb_push(s, NSHL), &nsh, NSHL);
  321. skb_queue_tail(&(info->txq), s);
  322. dtl1_write_wakeup(info);
  323. kfree_skb(skb);
  324. return 0;
  325. }
  326. static int dtl1_hci_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg)
  327. {
  328. return -ENOIOCTLCMD;
  329. }
  330. /* ======================== Card services HCI interaction ======================== */
  331. static int dtl1_open(dtl1_info_t *info)
  332. {
  333. unsigned long flags;
  334. unsigned int iobase = info->p_dev->resource[0]->start;
  335. struct hci_dev *hdev;
  336. spin_lock_init(&(info->lock));
  337. skb_queue_head_init(&(info->txq));
  338. info->rx_state = RECV_WAIT_NSH;
  339. info->rx_count = NSHL;
  340. info->rx_skb = NULL;
  341. set_bit(XMIT_WAITING, &(info->tx_state));
  342. /* Initialize HCI device */
  343. hdev = hci_alloc_dev();
  344. if (!hdev) {
  345. BT_ERR("Can't allocate HCI device");
  346. return -ENOMEM;
  347. }
  348. info->hdev = hdev;
  349. hdev->bus = HCI_PCCARD;
  350. hci_set_drvdata(hdev, info);
  351. SET_HCIDEV_DEV(hdev, &info->p_dev->dev);
  352. hdev->open = dtl1_hci_open;
  353. hdev->close = dtl1_hci_close;
  354. hdev->flush = dtl1_hci_flush;
  355. hdev->send = dtl1_hci_send_frame;
  356. hdev->ioctl = dtl1_hci_ioctl;
  357. spin_lock_irqsave(&(info->lock), flags);
  358. /* Reset UART */
  359. outb(0, iobase + UART_MCR);
  360. /* Turn off interrupts */
  361. outb(0, iobase + UART_IER);
  362. /* Initialize UART */
  363. outb(UART_LCR_WLEN8, iobase + UART_LCR); /* Reset DLAB */
  364. outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase + UART_MCR);
  365. info->ri_latch = inb(info->p_dev->resource[0]->start + UART_MSR)
  366. & UART_MSR_RI;
  367. /* Turn on interrupts */
  368. outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
  369. spin_unlock_irqrestore(&(info->lock), flags);
  370. /* Timeout before it is safe to send the first HCI packet */
  371. msleep(2000);
  372. /* Register HCI device */
  373. if (hci_register_dev(hdev) < 0) {
  374. BT_ERR("Can't register HCI device");
  375. info->hdev = NULL;
  376. hci_free_dev(hdev);
  377. return -ENODEV;
  378. }
  379. return 0;
  380. }
  381. static int dtl1_close(dtl1_info_t *info)
  382. {
  383. unsigned long flags;
  384. unsigned int iobase = info->p_dev->resource[0]->start;
  385. struct hci_dev *hdev = info->hdev;
  386. if (!hdev)
  387. return -ENODEV;
  388. dtl1_hci_close(hdev);
  389. spin_lock_irqsave(&(info->lock), flags);
  390. /* Reset UART */
  391. outb(0, iobase + UART_MCR);
  392. /* Turn off interrupts */
  393. outb(0, iobase + UART_IER);
  394. spin_unlock_irqrestore(&(info->lock), flags);
  395. hci_unregister_dev(hdev);
  396. hci_free_dev(hdev);
  397. return 0;
  398. }
  399. static int dtl1_probe(struct pcmcia_device *link)
  400. {
  401. dtl1_info_t *info;
  402. /* Create new info device */
  403. info = kzalloc(sizeof(*info), GFP_KERNEL);
  404. if (!info)
  405. return -ENOMEM;
  406. info->p_dev = link;
  407. link->priv = info;
  408. link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
  409. return dtl1_config(link);
  410. }
  411. static void dtl1_detach(struct pcmcia_device *link)
  412. {
  413. dtl1_info_t *info = link->priv;
  414. dtl1_close(info);
  415. pcmcia_disable_device(link);
  416. kfree(info);
  417. }
  418. static int dtl1_confcheck(struct pcmcia_device *p_dev, void *priv_data)
  419. {
  420. if ((p_dev->resource[1]->end) || (p_dev->resource[1]->end < 8))
  421. return -ENODEV;
  422. p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
  423. p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
  424. return pcmcia_request_io(p_dev);
  425. }
  426. static int dtl1_config(struct pcmcia_device *link)
  427. {
  428. dtl1_info_t *info = link->priv;
  429. int i;
  430. /* Look for a generic full-sized window */
  431. link->resource[0]->end = 8;
  432. if (pcmcia_loop_config(link, dtl1_confcheck, NULL) < 0)
  433. goto failed;
  434. i = pcmcia_request_irq(link, dtl1_interrupt);
  435. if (i != 0)
  436. goto failed;
  437. i = pcmcia_enable_device(link);
  438. if (i != 0)
  439. goto failed;
  440. if (dtl1_open(info) != 0)
  441. goto failed;
  442. return 0;
  443. failed:
  444. dtl1_detach(link);
  445. return -ENODEV;
  446. }
  447. static const struct pcmcia_device_id dtl1_ids[] = {
  448. PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d),
  449. PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-4", 0xe1bfdd64, 0x9102bc82),
  450. PCMCIA_DEVICE_PROD_ID12("Socket", "CF", 0xb38bcc2e, 0x44ebf863),
  451. PCMCIA_DEVICE_PROD_ID12("Socket", "CF+ Personal Network Card", 0xb38bcc2e, 0xe732bae3),
  452. PCMCIA_DEVICE_NULL
  453. };
  454. MODULE_DEVICE_TABLE(pcmcia, dtl1_ids);
  455. static struct pcmcia_driver dtl1_driver = {
  456. .owner = THIS_MODULE,
  457. .name = "dtl1_cs",
  458. .probe = dtl1_probe,
  459. .remove = dtl1_detach,
  460. .id_table = dtl1_ids,
  461. };
  462. static int __init init_dtl1_cs(void)
  463. {
  464. return pcmcia_register_driver(&dtl1_driver);
  465. }
  466. static void __exit exit_dtl1_cs(void)
  467. {
  468. pcmcia_unregister_driver(&dtl1_driver);
  469. }
  470. module_init(init_dtl1_cs);
  471. module_exit(exit_dtl1_cs);