blob: ad1a2f9dc7727ca4af8ed410592c327b70b40235 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
42
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 Nokia Connectivity Card DTL-1");
58MODULE_LICENSE("GPL");
59
60
61
62/* ======================== Local structures ======================== */
63
64
65typedef struct dtl1_info_t {
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 unsigned long flowmask; /* HCI flow mask */
73 int ri_latch;
74
75 struct sk_buff_head txq;
76 unsigned long tx_state;
77
78 unsigned long rx_state;
79 unsigned long rx_count;
80 struct sk_buff *rx_skb;
81} dtl1_info_t;
82
83
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020084static int dtl1_config(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/* Transmit states */
88#define XMIT_SENDING 1
89#define XMIT_WAKEUP 2
90#define XMIT_WAITING 8
91
92/* Receiver States */
93#define RECV_WAIT_NSH 0
94#define RECV_WAIT_DATA 1
95
96
97typedef struct {
98 u8 type;
99 u8 zero;
100 u16 len;
Gustavo F. Padovan81ca4052010-07-19 13:54:05 -0300101} __packed nsh_t; /* Nokia Specific Header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103#define NSHL 4 /* Nokia Specific Header Length */
104
105
106
107/* ======================== Interrupt handling ======================== */
108
109
110static int dtl1_write(unsigned int iobase, int fifo_size, __u8 *buf, int len)
111{
112 int actual = 0;
113
114 /* Tx FIFO should be empty */
115 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE))
116 return 0;
117
118 /* Fill FIFO with current frame */
119 while ((fifo_size-- > 0) && (actual < len)) {
120 /* Transmit next byte */
121 outb(buf[actual], iobase + UART_TX);
122 actual++;
123 }
124
125 return actual;
126}
127
128
129static void dtl1_write_wakeup(dtl1_info_t *info)
130{
131 if (!info) {
132 BT_ERR("Unknown device");
133 return;
134 }
135
136 if (test_bit(XMIT_WAITING, &(info->tx_state))) {
137 set_bit(XMIT_WAKEUP, &(info->tx_state));
138 return;
139 }
140
141 if (test_and_set_bit(XMIT_SENDING, &(info->tx_state))) {
142 set_bit(XMIT_WAKEUP, &(info->tx_state));
143 return;
144 }
145
146 do {
Gustavo Padovanfc5fef62012-05-23 04:04:19 -0300147 unsigned int iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 register struct sk_buff *skb;
Gustavo Padovanfc5fef62012-05-23 04:04:19 -0300149 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 clear_bit(XMIT_WAKEUP, &(info->tx_state));
152
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100153 if (!pcmcia_dev_present(info->p_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return;
155
156 if (!(skb = skb_dequeue(&(info->txq))))
157 break;
158
159 /* Send frame */
160 len = dtl1_write(iobase, 32, skb->data, skb->len);
161
162 if (len == skb->len) {
163 set_bit(XMIT_WAITING, &(info->tx_state));
164 kfree_skb(skb);
165 } else {
166 skb_pull(skb, len);
167 skb_queue_head(&(info->txq), skb);
168 }
169
170 info->hdev->stat.byte_tx += len;
171
172 } while (test_bit(XMIT_WAKEUP, &(info->tx_state)));
173
174 clear_bit(XMIT_SENDING, &(info->tx_state));
175}
176
177
178static void dtl1_control(dtl1_info_t *info, struct sk_buff *skb)
179{
180 u8 flowmask = *(u8 *)skb->data;
181 int i;
182
183 printk(KERN_INFO "Bluetooth: Nokia control data =");
184 for (i = 0; i < skb->len; i++) {
185 printk(" %02x", skb->data[i]);
186 }
187 printk("\n");
188
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);
193 }
194
195 info->flowmask = flowmask;
196
197 kfree_skb(skb);
198}
199
200
201static void dtl1_receive(dtl1_info_t *info)
202{
203 unsigned int iobase;
204 nsh_t *nsh;
205 int boguscount = 0;
206
207 if (!info) {
208 BT_ERR("Unknown device");
209 return;
210 }
211
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200212 iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 do {
215 info->hdev->stat.byte_rx++;
216
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;
223 return;
224 }
225
226 *skb_put(info->rx_skb, 1) = inb(iobase + UART_RX);
227 nsh = (nsh_t *)info->rx_skb->data;
228
229 info->rx_count--;
230
231 if (info->rx_count == 0) {
232
233 switch (info->rx_state) {
234 case RECV_WAIT_NSH:
235 info->rx_state = RECV_WAIT_DATA;
236 info->rx_count = nsh->len + (nsh->len & 0x0001);
237 break;
238 case RECV_WAIT_DATA:
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700239 bt_cb(info->rx_skb)->pkt_type = nsh->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /* remove PAD byte if it exists */
242 if (nsh->len & 0x0001) {
243 info->rx_skb->tail--;
244 info->rx_skb->len--;
245 }
246
247 /* remove NSH */
248 skb_pull(info->rx_skb, NSHL);
249
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700250 switch (bt_cb(info->rx_skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 case 0x80:
252 /* control data for the Nokia Card */
253 dtl1_control(info, info->rx_skb);
254 break;
255 case 0x82:
256 case 0x83:
257 case 0x84:
258 /* send frame to the HCI layer */
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700259 bt_cb(info->rx_skb)->pkt_type &= 0x0f;
Marcel Holtmanne1a26172013-10-10 16:52:43 -0700260 hci_recv_frame(info->hdev, info->rx_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 break;
262 default:
263 /* unknown packet */
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700264 BT_ERR("Unknown HCI packet with type 0x%02x received", bt_cb(info->rx_skb)->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 kfree_skb(info->rx_skb);
266 break;
267 }
268
269 info->rx_state = RECV_WAIT_NSH;
270 info->rx_count = NSHL;
271 info->rx_skb = NULL;
272 break;
273 }
274
275 }
276
277 /* Make sure we don't stay here too long */
278 if (boguscount++ > 32)
279 break;
280
281 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
282}
283
284
David Howells7d12e782006-10-05 14:55:46 +0100285static irqreturn_t dtl1_interrupt(int irq, void *dev_inst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 dtl1_info_t *info = dev_inst;
288 unsigned int iobase;
289 unsigned char msr;
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) {
304
Alan Coxaafcf992008-10-05 17:35:41 +0100305 r = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* 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 dtl1_receive(info);
316 break;
317 case UART_IIR_THRI:
318 if (lsr & UART_LSR_THRE) {
319 /* Transmitter ready for data */
320 dtl1_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 msr = inb(iobase + UART_MSR);
337
338 if (info->ri_latch ^ (msr & UART_MSR_RI)) {
339 info->ri_latch = msr & UART_MSR_RI;
340 clear_bit(XMIT_WAITING, &(info->tx_state));
341 dtl1_write_wakeup(info);
Alan Coxaafcf992008-10-05 17:35:41 +0100342 r = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
345 spin_unlock(&(info->lock));
346
Alan Coxaafcf992008-10-05 17:35:41 +0100347 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350
351
352/* ======================== HCI interface ======================== */
353
354
355static int dtl1_hci_open(struct hci_dev *hdev)
356{
357 set_bit(HCI_RUNNING, &(hdev->flags));
358
359 return 0;
360}
361
362
363static int dtl1_hci_flush(struct hci_dev *hdev)
364{
David Herrmann155961e2012-02-09 21:58:32 +0100365 dtl1_info_t *info = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 /* Drop TX queue */
368 skb_queue_purge(&(info->txq));
369
370 return 0;
371}
372
373
374static int dtl1_hci_close(struct hci_dev *hdev)
375{
376 if (!test_and_clear_bit(HCI_RUNNING, &(hdev->flags)))
377 return 0;
378
379 dtl1_hci_flush(hdev);
380
381 return 0;
382}
383
384
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700385static int dtl1_hci_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
387 dtl1_info_t *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 struct sk_buff *s;
389 nsh_t nsh;
390
391 if (!hdev) {
392 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
393 return -ENODEV;
394 }
395
David Herrmann155961e2012-02-09 21:58:32 +0100396 info = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700398 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 case HCI_COMMAND_PKT:
400 hdev->stat.cmd_tx++;
401 nsh.type = 0x81;
402 break;
403 case HCI_ACLDATA_PKT:
404 hdev->stat.acl_tx++;
405 nsh.type = 0x82;
406 break;
407 case HCI_SCODATA_PKT:
408 hdev->stat.sco_tx++;
409 nsh.type = 0x83;
410 break;
Marcel Holtmann3c4bdc42009-06-14 15:24:44 +0200411 default:
412 return -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 };
414
415 nsh.zero = 0;
416 nsh.len = skb->len;
417
418 s = bt_skb_alloc(NSHL + skb->len + 1, GFP_ATOMIC);
Jesper Juhl57136ca2006-06-26 00:24:33 -0700419 if (!s)
420 return -ENOMEM;
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 skb_reserve(s, NSHL);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300423 skb_copy_from_linear_data(skb, skb_put(s, skb->len), skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (skb->len & 0x0001)
425 *skb_put(s, 1) = 0; /* PAD */
426
427 /* Prepend skb with Nokia frame header and queue */
428 memcpy(skb_push(s, NSHL), &nsh, NSHL);
429 skb_queue_tail(&(info->txq), s);
430
431 dtl1_write_wakeup(info);
432
433 kfree_skb(skb);
434
435 return 0;
436}
437
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440/* ======================== Card services HCI interaction ======================== */
441
442
443static int dtl1_open(dtl1_info_t *info)
444{
445 unsigned long flags;
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200446 unsigned int iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct hci_dev *hdev;
448
449 spin_lock_init(&(info->lock));
450
451 skb_queue_head_init(&(info->txq));
452
453 info->rx_state = RECV_WAIT_NSH;
454 info->rx_count = NSHL;
455 info->rx_skb = NULL;
456
457 set_bit(XMIT_WAITING, &(info->tx_state));
458
459 /* Initialize HCI device */
460 hdev = hci_alloc_dev();
461 if (!hdev) {
462 BT_ERR("Can't allocate HCI device");
463 return -ENOMEM;
464 }
465
466 info->hdev = hdev;
467
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100468 hdev->bus = HCI_PCCARD;
David Herrmann155961e2012-02-09 21:58:32 +0100469 hci_set_drvdata(hdev, info);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200470 SET_HCIDEV_DEV(hdev, &info->p_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Marcel Holtmann3c728842013-10-10 10:50:04 -0700472 hdev->open = dtl1_hci_open;
473 hdev->close = dtl1_hci_close;
474 hdev->flush = dtl1_hci_flush;
475 hdev->send = dtl1_hci_send_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 spin_lock_irqsave(&(info->lock), flags);
478
479 /* Reset UART */
480 outb(0, iobase + UART_MCR);
481
482 /* Turn off interrupts */
483 outb(0, iobase + UART_IER);
484
485 /* Initialize UART */
486 outb(UART_LCR_WLEN8, iobase + UART_LCR); /* Reset DLAB */
487 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase + UART_MCR);
488
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200489 info->ri_latch = inb(info->p_dev->resource[0]->start + UART_MSR)
490 & UART_MSR_RI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* Turn on interrupts */
493 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
494
495 spin_unlock_irqrestore(&(info->lock), flags);
496
497 /* Timeout before it is safe to send the first HCI packet */
498 msleep(2000);
499
500 /* Register HCI device */
501 if (hci_register_dev(hdev) < 0) {
502 BT_ERR("Can't register HCI device");
503 info->hdev = NULL;
504 hci_free_dev(hdev);
505 return -ENODEV;
506 }
507
508 return 0;
509}
510
511
512static int dtl1_close(dtl1_info_t *info)
513{
514 unsigned long flags;
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200515 unsigned int iobase = info->p_dev->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct hci_dev *hdev = info->hdev;
517
518 if (!hdev)
519 return -ENODEV;
520
521 dtl1_hci_close(hdev);
522
523 spin_lock_irqsave(&(info->lock), flags);
524
525 /* Reset UART */
526 outb(0, iobase + UART_MCR);
527
528 /* Turn off interrupts */
529 outb(0, iobase + UART_IER);
530
531 spin_unlock_irqrestore(&(info->lock), flags);
532
David Herrmann13ea4012011-10-26 10:43:18 +0200533 hci_unregister_dev(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 hci_free_dev(hdev);
535
536 return 0;
537}
538
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200539static int dtl1_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 dtl1_info_t *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /* Create new info device */
Sachin Kamatcd7cf782012-07-27 12:38:41 +0530544 info = devm_kzalloc(&link->dev, sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (!info)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100546 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200548 info->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 link->priv = info;
550
Dominik Brodowski00990e72010-07-30 13:13:46 +0200551 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200553 return dtl1_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200557static void dtl1_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
559 dtl1_info_t *info = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
David Herrmann5a0b8152012-01-07 15:19:41 +0100561 dtl1_close(info);
562 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Dominik Brodowski00990e72010-07-30 13:13:46 +0200565static int dtl1_confcheck(struct pcmcia_device *p_dev, void *priv_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Dominik Brodowski00990e72010-07-30 13:13:46 +0200567 if ((p_dev->resource[1]->end) || (p_dev->resource[1]->end < 8))
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200568 return -ENODEV;
569
Dominik Brodowski00990e72010-07-30 13:13:46 +0200570 p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
571 p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
572
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200573 return pcmcia_request_io(p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200576static int dtl1_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 dtl1_info_t *info = link->priv;
Devendra Naga46afede2012-06-19 21:51:31 +0530579 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* Look for a generic full-sized window */
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200582 link->resource[0]->end = 8;
Devendra Naga46afede2012-06-19 21:51:31 +0530583 ret = pcmcia_loop_config(link, dtl1_confcheck, NULL);
584 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Devendra Naga46afede2012-06-19 21:51:31 +0530587 ret = pcmcia_request_irq(link, dtl1_interrupt);
588 if (ret)
Dominik Brodowskieb141202010-03-07 12:21:16 +0100589 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Devendra Naga46afede2012-06-19 21:51:31 +0530591 ret = pcmcia_enable_device(link);
592 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Devendra Naga46afede2012-06-19 21:51:31 +0530595 ret = dtl1_open(info);
596 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 goto failed;
598
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200599 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601failed:
David Herrmann5a0b8152012-01-07 15:19:41 +0100602 dtl1_detach(link);
Devendra Naga46afede2012-06-19 21:51:31 +0530603 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Joe Perches25f8f542011-05-03 19:29:01 -0700606static const struct pcmcia_device_id dtl1_ids[] = {
Dominik Brodowski88eca2e2005-06-27 16:28:39 -0700607 PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d),
Marcel Holtmann8602b4f2006-10-20 08:55:34 +0200608 PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-4", 0xe1bfdd64, 0x9102bc82),
Dominik Brodowski88eca2e2005-06-27 16:28:39 -0700609 PCMCIA_DEVICE_PROD_ID12("Socket", "CF", 0xb38bcc2e, 0x44ebf863),
Richard Purdie725a6ab2006-01-05 09:56:03 +0000610 PCMCIA_DEVICE_PROD_ID12("Socket", "CF+ Personal Network Card", 0xb38bcc2e, 0xe732bae3),
Dominik Brodowski88eca2e2005-06-27 16:28:39 -0700611 PCMCIA_DEVICE_NULL
612};
613MODULE_DEVICE_TABLE(pcmcia, dtl1_ids);
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615static struct pcmcia_driver dtl1_driver = {
616 .owner = THIS_MODULE,
Dominik Brodowski2e9b9812010-08-08 11:36:26 +0200617 .name = "dtl1_cs",
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200618 .probe = dtl1_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100619 .remove = dtl1_detach,
Dominik Brodowski88eca2e2005-06-27 16:28:39 -0700620 .id_table = dtl1_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621};
H Hartley Sweetene0c005f2013-03-06 11:26:24 -0700622module_pcmcia_driver(dtl1_driver);