blob: bb8e4025fb9eb8d30d670ce03d9afcc245336e88 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * Driver for Bluetooth PCMCIA cards with HCI UART interface
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24
25#include <linux/kernel.h>
26#include <linux/init.h>
27#include <linux/slab.h>
28#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#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>
35
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>
Prasanna Karthik239ede32015-09-30 12:27:46 +000041#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <pcmcia/cistpl.h>
44#include <pcmcia/ciscode.h>
45#include <pcmcia/ds.h>
46#include <pcmcia/cisreg.h>
47
48#include <net/bluetooth/bluetooth.h>
49#include <net/bluetooth/hci_core.h>
50
51
52
53/* ======================== Module parameters ======================== */
54
55
56MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
57MODULE_DESCRIPTION("Bluetooth driver for Bluetooth PCMCIA cards with HCI UART interface");
58MODULE_LICENSE("GPL");
59
60
61
62/* ======================== Local structures ======================== */
63
64
Himangi Saraogiad709d42014-08-13 14:51:39 +053065struct btuart_info {
Dominik Brodowskifd238232006-03-05 10:45:09 +010066 struct pcmcia_device *p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 struct hci_dev *hdev;
69
70 spinlock_t lock; /* For serializing operations */
71
72 struct sk_buff_head txq;
73 unsigned long tx_state;
74
75 unsigned long rx_state;
76 unsigned long rx_count;
77 struct sk_buff *rx_skb;
Himangi Saraogiad709d42014-08-13 14:51:39 +053078};
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020081static int btuart_config(struct pcmcia_device *link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +020082static void btuart_release(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Dominik Brodowskicc3b4862005-11-14 21:23:14 +010084static void btuart_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/* Maximum baud rate */
88#define SPEED_MAX 115200
89
90/* Default baud rate: 57600, 115200, 230400 or 460800 */
91#define DEFAULT_BAUD_RATE 115200
92
93
94/* Transmit states */
95#define XMIT_SENDING 1
96#define XMIT_WAKEUP 2
97#define XMIT_WAITING 8
98
99/* Receiver states */
100#define RECV_WAIT_PACKET_TYPE 0
101#define RECV_WAIT_EVENT_HEADER 1
102#define RECV_WAIT_ACL_HEADER 2
103#define RECV_WAIT_SCO_HEADER 3
104#define RECV_WAIT_DATA 4
105
106
107
108/* ======================== Interrupt handling ======================== */
109
110
111static int btuart_write(unsigned int iobase, int fifo_size, __u8 *buf, int len)
112{
113 int actual = 0;
114
115 /* Tx FIFO should be empty */
116 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE))
117 return 0;
118
119 /* Fill FIFO with current frame */
120 while ((fifo_size-- > 0) && (actual < len)) {
121 /* Transmit next byte */
122 outb(buf[actual], iobase + UART_TX);
123 actual++;
124 }
125
126 return actual;
127}
128
129
Himangi Saraogiad709d42014-08-13 14:51:39 +0530130static void btuart_write_wakeup(struct btuart_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 if (!info) {
133 BT_ERR("Unknown device");
134 return;
135 }
136
137 if (test_and_set_bit(XMIT_SENDING, &(info->tx_state))) {
138 set_bit(XMIT_WAKEUP, &(info->tx_state));
139 return;
140 }
141
142 do {
Gustavo Padovanfc5fef62012-05-23 04:04:19 -0300143 unsigned int iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 register struct sk_buff *skb;
Gustavo Padovanfc5fef62012-05-23 04:04:19 -0300145 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 clear_bit(XMIT_WAKEUP, &(info->tx_state));
148
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100149 if (!pcmcia_dev_present(info->p_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return;
151
Valentin Iliea08b15e2013-08-12 18:46:00 +0300152 skb = skb_dequeue(&(info->txq));
153 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 break;
155
156 /* Send frame */
157 len = btuart_write(iobase, 16, skb->data, skb->len);
158 set_bit(XMIT_WAKEUP, &(info->tx_state));
159
160 if (len == skb->len) {
161 kfree_skb(skb);
162 } else {
163 skb_pull(skb, len);
164 skb_queue_head(&(info->txq), skb);
165 }
166
167 info->hdev->stat.byte_tx += len;
168
169 } while (test_bit(XMIT_WAKEUP, &(info->tx_state)));
170
171 clear_bit(XMIT_SENDING, &(info->tx_state));
172}
173
174
Himangi Saraogiad709d42014-08-13 14:51:39 +0530175static void btuart_receive(struct btuart_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 unsigned int iobase;
178 int boguscount = 0;
179
180 if (!info) {
181 BT_ERR("Unknown device");
182 return;
183 }
184
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200185 iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 do {
188 info->hdev->stat.byte_rx++;
189
190 /* Allocate packet */
Prasanna Karthik05bd7762015-09-25 09:05:04 +0000191 if (!info->rx_skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 info->rx_state = RECV_WAIT_PACKET_TYPE;
193 info->rx_count = 0;
Valentin Iliea08b15e2013-08-12 18:46:00 +0300194 info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
195 if (!info->rx_skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 BT_ERR("Can't allocate mem for new packet");
197 return;
198 }
199 }
200
201 if (info->rx_state == RECV_WAIT_PACKET_TYPE) {
202
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700203 bt_cb(info->rx_skb)->pkt_type = inb(iobase + UART_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700205 switch (bt_cb(info->rx_skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 case HCI_EVENT_PKT:
208 info->rx_state = RECV_WAIT_EVENT_HEADER;
209 info->rx_count = HCI_EVENT_HDR_SIZE;
210 break;
211
212 case HCI_ACLDATA_PKT:
213 info->rx_state = RECV_WAIT_ACL_HEADER;
214 info->rx_count = HCI_ACL_HDR_SIZE;
215 break;
216
217 case HCI_SCODATA_PKT:
218 info->rx_state = RECV_WAIT_SCO_HEADER;
219 info->rx_count = HCI_SCO_HDR_SIZE;
220 break;
221
222 default:
223 /* Unknown packet */
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700224 BT_ERR("Unknown HCI packet with type 0x%02x received", bt_cb(info->rx_skb)->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 info->hdev->stat.err_rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 kfree_skb(info->rx_skb);
228 info->rx_skb = NULL;
229 break;
230
231 }
232
233 } else {
234
235 *skb_put(info->rx_skb, 1) = inb(iobase + UART_RX);
236 info->rx_count--;
237
238 if (info->rx_count == 0) {
239
240 int dlen;
241 struct hci_event_hdr *eh;
242 struct hci_acl_hdr *ah;
243 struct hci_sco_hdr *sh;
244
245
246 switch (info->rx_state) {
247
248 case RECV_WAIT_EVENT_HEADER:
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300249 eh = hci_event_hdr(info->rx_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 info->rx_state = RECV_WAIT_DATA;
251 info->rx_count = eh->plen;
252 break;
253
254 case RECV_WAIT_ACL_HEADER:
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300255 ah = hci_acl_hdr(info->rx_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 dlen = __le16_to_cpu(ah->dlen);
257 info->rx_state = RECV_WAIT_DATA;
258 info->rx_count = dlen;
259 break;
260
261 case RECV_WAIT_SCO_HEADER:
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300262 sh = hci_sco_hdr(info->rx_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 info->rx_state = RECV_WAIT_DATA;
264 info->rx_count = sh->dlen;
265 break;
266
267 case RECV_WAIT_DATA:
Marcel Holtmanne1a26172013-10-10 16:52:43 -0700268 hci_recv_frame(info->hdev, info->rx_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 info->rx_skb = NULL;
270 break;
271
272 }
273
274 }
275
276 }
277
278 /* Make sure we don't stay here too long */
279 if (boguscount++ > 16)
280 break;
281
282 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
283}
284
285
David Howells7d12e782006-10-05 14:55:46 +0100286static irqreturn_t btuart_interrupt(int irq, void *dev_inst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Himangi Saraogiad709d42014-08-13 14:51:39 +0530288 struct btuart_info *info = dev_inst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 unsigned int iobase;
290 int boguscount = 0;
291 int iir, lsr;
Alan Coxaafcf992008-10-05 17:35:41 +0100292 irqreturn_t r = IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Mike Frysinger74278472009-09-14 13:43:49 -0400294 if (!info || !info->hdev)
295 /* our irq handler is shared */
296 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200298 iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 spin_lock(&(info->lock));
301
302 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
303 while (iir) {
Alan Coxaafcf992008-10-05 17:35:41 +0100304 r = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* Clear interrupt */
307 lsr = inb(iobase + UART_LSR);
308
309 switch (iir) {
310 case UART_IIR_RLSI:
311 BT_ERR("RLSI");
312 break;
313 case UART_IIR_RDI:
314 /* Receive interrupt */
315 btuart_receive(info);
316 break;
317 case UART_IIR_THRI:
318 if (lsr & UART_LSR_THRE) {
319 /* Transmitter ready for data */
320 btuart_write_wakeup(info);
321 }
322 break;
323 default:
324 BT_ERR("Unhandled IIR=%#x", iir);
325 break;
326 }
327
328 /* Make sure we don't stay here too long */
329 if (boguscount++ > 100)
330 break;
331
332 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
333
334 }
335
336 spin_unlock(&(info->lock));
337
Alan Coxaafcf992008-10-05 17:35:41 +0100338 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341
Himangi Saraogiad709d42014-08-13 14:51:39 +0530342static void btuart_change_speed(struct btuart_info *info,
343 unsigned int speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 unsigned long flags;
346 unsigned int iobase;
347 int fcr; /* FIFO control reg */
348 int lcr; /* Line control reg */
349 int divisor;
350
351 if (!info) {
352 BT_ERR("Unknown device");
353 return;
354 }
355
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200356 iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 spin_lock_irqsave(&(info->lock), flags);
359
360 /* Turn off interrupts */
361 outb(0, iobase + UART_IER);
362
363 divisor = SPEED_MAX / speed;
364
365 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT;
366
367 /*
368 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
369 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
370 * about this timeout since it will always be fast enough.
371 */
372
373 if (speed < 38400)
374 fcr |= UART_FCR_TRIGGER_1;
375 else
376 fcr |= UART_FCR_TRIGGER_14;
377
378 /* Bluetooth cards use 8N1 */
379 lcr = UART_LCR_WLEN8;
380
381 outb(UART_LCR_DLAB | lcr, iobase + UART_LCR); /* Set DLAB */
382 outb(divisor & 0xff, iobase + UART_DLL); /* Set speed */
383 outb(divisor >> 8, iobase + UART_DLM);
384 outb(lcr, iobase + UART_LCR); /* Set 8N1 */
385 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */
386
Joe Perchesb92b1c52008-02-03 17:10:31 +0200387 /* Turn on interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
389
390 spin_unlock_irqrestore(&(info->lock), flags);
391}
392
393
394
395/* ======================== HCI interface ======================== */
396
397
398static int btuart_hci_flush(struct hci_dev *hdev)
399{
Himangi Saraogiad709d42014-08-13 14:51:39 +0530400 struct btuart_info *info = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* Drop TX queue */
403 skb_queue_purge(&(info->txq));
404
405 return 0;
406}
407
408
409static int btuart_hci_open(struct hci_dev *hdev)
410{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return 0;
412}
413
414
415static int btuart_hci_close(struct hci_dev *hdev)
416{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 btuart_hci_flush(hdev);
418
419 return 0;
420}
421
422
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700423static int btuart_hci_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Himangi Saraogiad709d42014-08-13 14:51:39 +0530425 struct btuart_info *info = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700427 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 case HCI_COMMAND_PKT:
429 hdev->stat.cmd_tx++;
430 break;
431 case HCI_ACLDATA_PKT:
432 hdev->stat.acl_tx++;
433 break;
434 case HCI_SCODATA_PKT:
435 hdev->stat.sco_tx++;
436 break;
Peter Senna Tschudin5ad77792012-09-07 17:24:48 +0200437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 /* Prepend skb with frame type */
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700440 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 skb_queue_tail(&(info->txq), skb);
442
443 btuart_write_wakeup(info);
444
445 return 0;
446}
447
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450/* ======================== Card services HCI interaction ======================== */
451
452
Himangi Saraogiad709d42014-08-13 14:51:39 +0530453static int btuart_open(struct btuart_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 unsigned long flags;
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200456 unsigned int iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 struct hci_dev *hdev;
458
459 spin_lock_init(&(info->lock));
460
461 skb_queue_head_init(&(info->txq));
462
463 info->rx_state = RECV_WAIT_PACKET_TYPE;
464 info->rx_count = 0;
465 info->rx_skb = NULL;
466
467 /* Initialize HCI device */
468 hdev = hci_alloc_dev();
469 if (!hdev) {
470 BT_ERR("Can't allocate HCI device");
471 return -ENOMEM;
472 }
473
474 info->hdev = hdev;
475
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100476 hdev->bus = HCI_PCCARD;
David Herrmann155961e2012-02-09 21:58:32 +0100477 hci_set_drvdata(hdev, info);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200478 SET_HCIDEV_DEV(hdev, &info->p_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Marcel Holtmann71f39032013-10-10 10:50:03 -0700480 hdev->open = btuart_hci_open;
481 hdev->close = btuart_hci_close;
482 hdev->flush = btuart_hci_flush;
483 hdev->send = btuart_hci_send_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 spin_lock_irqsave(&(info->lock), flags);
486
487 /* Reset UART */
488 outb(0, iobase + UART_MCR);
489
490 /* Turn off interrupts */
491 outb(0, iobase + UART_IER);
492
493 /* Initialize UART */
494 outb(UART_LCR_WLEN8, iobase + UART_LCR); /* Reset DLAB */
495 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase + UART_MCR);
496
497 /* Turn on interrupts */
498 // outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
499
500 spin_unlock_irqrestore(&(info->lock), flags);
501
502 btuart_change_speed(info, DEFAULT_BAUD_RATE);
503
504 /* Timeout before it is safe to send the first HCI packet */
505 msleep(1000);
506
507 /* Register HCI device */
508 if (hci_register_dev(hdev) < 0) {
509 BT_ERR("Can't register HCI device");
510 info->hdev = NULL;
511 hci_free_dev(hdev);
512 return -ENODEV;
513 }
514
515 return 0;
516}
517
518
Himangi Saraogiad709d42014-08-13 14:51:39 +0530519static int btuart_close(struct btuart_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 unsigned long flags;
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200522 unsigned int iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 struct hci_dev *hdev = info->hdev;
524
525 if (!hdev)
526 return -ENODEV;
527
528 btuart_hci_close(hdev);
529
530 spin_lock_irqsave(&(info->lock), flags);
531
532 /* Reset UART */
533 outb(0, iobase + UART_MCR);
534
535 /* Turn off interrupts */
536 outb(0, iobase + UART_IER);
537
538 spin_unlock_irqrestore(&(info->lock), flags);
539
David Herrmann13ea4012011-10-26 10:43:18 +0200540 hci_unregister_dev(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 hci_free_dev(hdev);
542
543 return 0;
544}
545
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200546static int btuart_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Himangi Saraogiad709d42014-08-13 14:51:39 +0530548 struct btuart_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 /* Create new info device */
Sachin Kamatfdefa112012-07-27 12:38:38 +0530551 info = devm_kzalloc(&link->dev, sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!info)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100553 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200555 info->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 link->priv = info;
557
Dominik Brodowski00990e72010-07-30 13:13:46 +0200558 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_VPP |
559 CONF_AUTO_SET_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200561 return btuart_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200565static void btuart_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100567 btuart_release(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Dominik Brodowski00990e72010-07-30 13:13:46 +0200570static int btuart_check_config(struct pcmcia_device *p_dev, void *priv_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200572 int *try = priv_data;
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200573
Andrei Emeltchenko510df252012-06-20 14:40:12 +0300574 if (!try)
Dominik Brodowski00990e72010-07-30 13:13:46 +0200575 p_dev->io_lines = 16;
576
577 if ((p_dev->resource[0]->end != 8) || (p_dev->resource[0]->start == 0))
578 return -EINVAL;
579
580 p_dev->resource[0]->end = 8;
581 p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
582 p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
583
584 return pcmcia_request_io(p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Dominik Brodowskied588722008-07-29 08:38:55 +0200587static int btuart_check_config_notpicky(struct pcmcia_device *p_dev,
Dominik Brodowskied588722008-07-29 08:38:55 +0200588 void *priv_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Dominik Brodowskied588722008-07-29 08:38:55 +0200590 static unsigned int base[5] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0x0 };
591 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Dominik Brodowski00990e72010-07-30 13:13:46 +0200593 if (p_dev->io_lines > 3)
594 return -ENODEV;
595
596 p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
597 p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
598 p_dev->resource[0]->end = 8;
599
600 for (j = 0; j < 5; j++) {
601 p_dev->resource[0]->start = base[j];
602 p_dev->io_lines = base[j] ? 16 : 3;
603 if (!pcmcia_request_io(p_dev))
604 return 0;
Dominik Brodowskied588722008-07-29 08:38:55 +0200605 }
606 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200609static int btuart_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Himangi Saraogiad709d42014-08-13 14:51:39 +0530611 struct btuart_info *info = link->priv;
Dominik Brodowskied588722008-07-29 08:38:55 +0200612 int i;
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200613 int try;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Dominik Brodowskied588722008-07-29 08:38:55 +0200615 /* First pass: look for a config entry that looks normal.
616 Two tries: without IO aliases, then with aliases */
617 for (try = 0; try < 2; try++)
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200618 if (!pcmcia_loop_config(link, btuart_check_config, &try))
Dominik Brodowskied588722008-07-29 08:38:55 +0200619 goto found_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 /* Second pass: try to find an entry that isn't picky about
622 its base address, then try to grab any standard serial port
623 address, and finally try to get any free port. */
Dominik Brodowskied588722008-07-29 08:38:55 +0200624 if (!pcmcia_loop_config(link, btuart_check_config_notpicky, NULL))
625 goto found_port;
626
627 BT_ERR("No usable port range found");
Dominik Brodowskied588722008-07-29 08:38:55 +0200628 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630found_port:
Dominik Brodowskieb141202010-03-07 12:21:16 +0100631 i = pcmcia_request_irq(link, btuart_interrupt);
Dominik Brodowski9ac3e582009-10-24 15:45:06 +0200632 if (i != 0)
Dominik Brodowskieb141202010-03-07 12:21:16 +0100633 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200635 i = pcmcia_enable_device(link);
Dominik Brodowski9ac3e582009-10-24 15:45:06 +0200636 if (i != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 if (btuart_open(info) != 0)
640 goto failed;
641
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644failed:
645 btuart_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200646 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200650static void btuart_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Himangi Saraogiad709d42014-08-13 14:51:39 +0530652 struct btuart_info *info = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100654 btuart_close(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200656 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Joe Perches25f8f542011-05-03 19:29:01 -0700659static const struct pcmcia_device_id btuart_ids[] = {
Dominik Brodowski279c9362005-06-27 16:28:38 -0700660 /* don't use this driver. Use serial_cs + hci_uart instead */
661 PCMCIA_DEVICE_NULL
662};
663MODULE_DEVICE_TABLE(pcmcia, btuart_ids);
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665static struct pcmcia_driver btuart_driver = {
666 .owner = THIS_MODULE,
Dominik Brodowski2e9b9812010-08-08 11:36:26 +0200667 .name = "btuart_cs",
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200668 .probe = btuart_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100669 .remove = btuart_detach,
Dominik Brodowski279c9362005-06-27 16:28:38 -0700670 .id_table = btuart_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671};
H Hartley Sweetene0c005f2013-03-06 11:26:24 -0700672module_pcmcia_driver(btuart_driver);