dtl1_cs.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  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. unsigned int iobase = info->p_dev->resource[0]->start;
  107. register struct sk_buff *skb;
  108. 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. bt_cb(info->rx_skb)->pkt_type &= 0x0f;
  192. hci_recv_frame(info->hdev, info->rx_skb);
  193. break;
  194. default:
  195. /* unknown packet */
  196. BT_ERR("Unknown HCI packet with type 0x%02x received", bt_cb(info->rx_skb)->pkt_type);
  197. kfree_skb(info->rx_skb);
  198. break;
  199. }
  200. info->rx_state = RECV_WAIT_NSH;
  201. info->rx_count = NSHL;
  202. info->rx_skb = NULL;
  203. break;
  204. }
  205. }
  206. /* Make sure we don't stay here too long */
  207. if (boguscount++ > 32)
  208. break;
  209. } while (inb(iobase + UART_LSR) & UART_LSR_DR);
  210. }
  211. static irqreturn_t dtl1_interrupt(int irq, void *dev_inst)
  212. {
  213. dtl1_info_t *info = dev_inst;
  214. unsigned int iobase;
  215. unsigned char msr;
  216. int boguscount = 0;
  217. int iir, lsr;
  218. irqreturn_t r = IRQ_NONE;
  219. if (!info || !info->hdev)
  220. /* our irq handler is shared */
  221. return IRQ_NONE;
  222. iobase = info->p_dev->resource[0]->start;
  223. spin_lock(&(info->lock));
  224. iir = inb(iobase + UART_IIR) & UART_IIR_ID;
  225. while (iir) {
  226. r = IRQ_HANDLED;
  227. /* Clear interrupt */
  228. lsr = inb(iobase + UART_LSR);
  229. switch (iir) {
  230. case UART_IIR_RLSI:
  231. BT_ERR("RLSI");
  232. break;
  233. case UART_IIR_RDI:
  234. /* Receive interrupt */
  235. dtl1_receive(info);
  236. break;
  237. case UART_IIR_THRI:
  238. if (lsr & UART_LSR_THRE) {
  239. /* Transmitter ready for data */
  240. dtl1_write_wakeup(info);
  241. }
  242. break;
  243. default:
  244. BT_ERR("Unhandled IIR=%#x", iir);
  245. break;
  246. }
  247. /* Make sure we don't stay here too long */
  248. if (boguscount++ > 100)
  249. break;
  250. iir = inb(iobase + UART_IIR) & UART_IIR_ID;
  251. }
  252. msr = inb(iobase + UART_MSR);
  253. if (info->ri_latch ^ (msr & UART_MSR_RI)) {
  254. info->ri_latch = msr & UART_MSR_RI;
  255. clear_bit(XMIT_WAITING, &(info->tx_state));
  256. dtl1_write_wakeup(info);
  257. r = IRQ_HANDLED;
  258. }
  259. spin_unlock(&(info->lock));
  260. return r;
  261. }
  262. /* ======================== HCI interface ======================== */
  263. static int dtl1_hci_open(struct hci_dev *hdev)
  264. {
  265. set_bit(HCI_RUNNING, &(hdev->flags));
  266. return 0;
  267. }
  268. static int dtl1_hci_flush(struct hci_dev *hdev)
  269. {
  270. dtl1_info_t *info = hci_get_drvdata(hdev);
  271. /* Drop TX queue */
  272. skb_queue_purge(&(info->txq));
  273. return 0;
  274. }
  275. static int dtl1_hci_close(struct hci_dev *hdev)
  276. {
  277. if (!test_and_clear_bit(HCI_RUNNING, &(hdev->flags)))
  278. return 0;
  279. dtl1_hci_flush(hdev);
  280. return 0;
  281. }
  282. static int dtl1_hci_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
  283. {
  284. dtl1_info_t *info = hci_get_drvdata(hdev);
  285. struct sk_buff *s;
  286. nsh_t nsh;
  287. switch (bt_cb(skb)->pkt_type) {
  288. case HCI_COMMAND_PKT:
  289. hdev->stat.cmd_tx++;
  290. nsh.type = 0x81;
  291. break;
  292. case HCI_ACLDATA_PKT:
  293. hdev->stat.acl_tx++;
  294. nsh.type = 0x82;
  295. break;
  296. case HCI_SCODATA_PKT:
  297. hdev->stat.sco_tx++;
  298. nsh.type = 0x83;
  299. break;
  300. default:
  301. return -EILSEQ;
  302. };
  303. nsh.zero = 0;
  304. nsh.len = skb->len;
  305. s = bt_skb_alloc(NSHL + skb->len + 1, GFP_ATOMIC);
  306. if (!s)
  307. return -ENOMEM;
  308. skb_reserve(s, NSHL);
  309. skb_copy_from_linear_data(skb, skb_put(s, skb->len), skb->len);
  310. if (skb->len & 0x0001)
  311. *skb_put(s, 1) = 0; /* PAD */
  312. /* Prepend skb with Nokia frame header and queue */
  313. memcpy(skb_push(s, NSHL), &nsh, NSHL);
  314. skb_queue_tail(&(info->txq), s);
  315. dtl1_write_wakeup(info);
  316. kfree_skb(skb);
  317. return 0;
  318. }
  319. /* ======================== Card services HCI interaction ======================== */
  320. static int dtl1_open(dtl1_info_t *info)
  321. {
  322. unsigned long flags;
  323. unsigned int iobase = info->p_dev->resource[0]->start;
  324. struct hci_dev *hdev;
  325. spin_lock_init(&(info->lock));
  326. skb_queue_head_init(&(info->txq));
  327. info->rx_state = RECV_WAIT_NSH;
  328. info->rx_count = NSHL;
  329. info->rx_skb = NULL;
  330. set_bit(XMIT_WAITING, &(info->tx_state));
  331. /* Initialize HCI device */
  332. hdev = hci_alloc_dev();
  333. if (!hdev) {
  334. BT_ERR("Can't allocate HCI device");
  335. return -ENOMEM;
  336. }
  337. info->hdev = hdev;
  338. hdev->bus = HCI_PCCARD;
  339. hci_set_drvdata(hdev, info);
  340. SET_HCIDEV_DEV(hdev, &info->p_dev->dev);
  341. hdev->open = dtl1_hci_open;
  342. hdev->close = dtl1_hci_close;
  343. hdev->flush = dtl1_hci_flush;
  344. hdev->send = dtl1_hci_send_frame;
  345. spin_lock_irqsave(&(info->lock), flags);
  346. /* Reset UART */
  347. outb(0, iobase + UART_MCR);
  348. /* Turn off interrupts */
  349. outb(0, iobase + UART_IER);
  350. /* Initialize UART */
  351. outb(UART_LCR_WLEN8, iobase + UART_LCR); /* Reset DLAB */
  352. outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase + UART_MCR);
  353. info->ri_latch = inb(info->p_dev->resource[0]->start + UART_MSR)
  354. & UART_MSR_RI;
  355. /* Turn on interrupts */
  356. outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
  357. spin_unlock_irqrestore(&(info->lock), flags);
  358. /* Timeout before it is safe to send the first HCI packet */
  359. msleep(2000);
  360. /* Register HCI device */
  361. if (hci_register_dev(hdev) < 0) {
  362. BT_ERR("Can't register HCI device");
  363. info->hdev = NULL;
  364. hci_free_dev(hdev);
  365. return -ENODEV;
  366. }
  367. return 0;
  368. }
  369. static int dtl1_close(dtl1_info_t *info)
  370. {
  371. unsigned long flags;
  372. unsigned int iobase = info->p_dev->resource[0]->start;
  373. struct hci_dev *hdev = info->hdev;
  374. if (!hdev)
  375. return -ENODEV;
  376. dtl1_hci_close(hdev);
  377. spin_lock_irqsave(&(info->lock), flags);
  378. /* Reset UART */
  379. outb(0, iobase + UART_MCR);
  380. /* Turn off interrupts */
  381. outb(0, iobase + UART_IER);
  382. spin_unlock_irqrestore(&(info->lock), flags);
  383. hci_unregister_dev(hdev);
  384. hci_free_dev(hdev);
  385. return 0;
  386. }
  387. static int dtl1_probe(struct pcmcia_device *link)
  388. {
  389. dtl1_info_t *info;
  390. /* Create new info device */
  391. info = devm_kzalloc(&link->dev, sizeof(*info), GFP_KERNEL);
  392. if (!info)
  393. return -ENOMEM;
  394. info->p_dev = link;
  395. link->priv = info;
  396. link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
  397. return dtl1_config(link);
  398. }
  399. static void dtl1_detach(struct pcmcia_device *link)
  400. {
  401. dtl1_info_t *info = link->priv;
  402. dtl1_close(info);
  403. pcmcia_disable_device(link);
  404. }
  405. static int dtl1_confcheck(struct pcmcia_device *p_dev, void *priv_data)
  406. {
  407. if ((p_dev->resource[1]->end) || (p_dev->resource[1]->end < 8))
  408. return -ENODEV;
  409. p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
  410. p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
  411. return pcmcia_request_io(p_dev);
  412. }
  413. static int dtl1_config(struct pcmcia_device *link)
  414. {
  415. dtl1_info_t *info = link->priv;
  416. int ret;
  417. /* Look for a generic full-sized window */
  418. link->resource[0]->end = 8;
  419. ret = pcmcia_loop_config(link, dtl1_confcheck, NULL);
  420. if (ret)
  421. goto failed;
  422. ret = pcmcia_request_irq(link, dtl1_interrupt);
  423. if (ret)
  424. goto failed;
  425. ret = pcmcia_enable_device(link);
  426. if (ret)
  427. goto failed;
  428. ret = dtl1_open(info);
  429. if (ret)
  430. goto failed;
  431. return 0;
  432. failed:
  433. dtl1_detach(link);
  434. return ret;
  435. }
  436. static const struct pcmcia_device_id dtl1_ids[] = {
  437. PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d),
  438. PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-4", 0xe1bfdd64, 0x9102bc82),
  439. PCMCIA_DEVICE_PROD_ID12("Socket", "CF", 0xb38bcc2e, 0x44ebf863),
  440. PCMCIA_DEVICE_PROD_ID12("Socket", "CF+ Personal Network Card", 0xb38bcc2e, 0xe732bae3),
  441. PCMCIA_DEVICE_NULL
  442. };
  443. MODULE_DEVICE_TABLE(pcmcia, dtl1_ids);
  444. static struct pcmcia_driver dtl1_driver = {
  445. .owner = THIS_MODULE,
  446. .name = "dtl1_cs",
  447. .probe = dtl1_probe,
  448. .remove = dtl1_detach,
  449. .id_table = dtl1_ids,
  450. };
  451. module_pcmcia_driver(dtl1_driver);