]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/ide/arm/icside.c
70f5b164828b0888681cca503c06298f5d59eda5
[linux-2.6-omap-h63xx.git] / drivers / ide / arm / icside.c
1 /*
2  * Copyright (c) 1996-2004 Russell King.
3  *
4  * Please note that this platform does not support 32-bit IDE IO.
5  */
6
7 #include <linux/string.h>
8 #include <linux/module.h>
9 #include <linux/ioport.h>
10 #include <linux/slab.h>
11 #include <linux/blkdev.h>
12 #include <linux/errno.h>
13 #include <linux/ide.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/device.h>
16 #include <linux/init.h>
17 #include <linux/scatterlist.h>
18 #include <linux/io.h>
19
20 #include <asm/dma.h>
21 #include <asm/ecard.h>
22
23 #define DRV_NAME "icside"
24
25 #define ICS_IDENT_OFFSET                0x2280
26
27 #define ICS_ARCIN_V5_INTRSTAT           0x0000
28 #define ICS_ARCIN_V5_INTROFFSET         0x0004
29 #define ICS_ARCIN_V5_IDEOFFSET          0x2800
30 #define ICS_ARCIN_V5_IDEALTOFFSET       0x2b80
31 #define ICS_ARCIN_V5_IDESTEPPING        6
32
33 #define ICS_ARCIN_V6_IDEOFFSET_1        0x2000
34 #define ICS_ARCIN_V6_INTROFFSET_1       0x2200
35 #define ICS_ARCIN_V6_INTRSTAT_1         0x2290
36 #define ICS_ARCIN_V6_IDEALTOFFSET_1     0x2380
37 #define ICS_ARCIN_V6_IDEOFFSET_2        0x3000
38 #define ICS_ARCIN_V6_INTROFFSET_2       0x3200
39 #define ICS_ARCIN_V6_INTRSTAT_2         0x3290
40 #define ICS_ARCIN_V6_IDEALTOFFSET_2     0x3380
41 #define ICS_ARCIN_V6_IDESTEPPING        6
42
43 struct cardinfo {
44         unsigned int dataoffset;
45         unsigned int ctrloffset;
46         unsigned int stepping;
47 };
48
49 static struct cardinfo icside_cardinfo_v5 = {
50         .dataoffset     = ICS_ARCIN_V5_IDEOFFSET,
51         .ctrloffset     = ICS_ARCIN_V5_IDEALTOFFSET,
52         .stepping       = ICS_ARCIN_V5_IDESTEPPING,
53 };
54
55 static struct cardinfo icside_cardinfo_v6_1 = {
56         .dataoffset     = ICS_ARCIN_V6_IDEOFFSET_1,
57         .ctrloffset     = ICS_ARCIN_V6_IDEALTOFFSET_1,
58         .stepping       = ICS_ARCIN_V6_IDESTEPPING,
59 };
60
61 static struct cardinfo icside_cardinfo_v6_2 = {
62         .dataoffset     = ICS_ARCIN_V6_IDEOFFSET_2,
63         .ctrloffset     = ICS_ARCIN_V6_IDEALTOFFSET_2,
64         .stepping       = ICS_ARCIN_V6_IDESTEPPING,
65 };
66
67 struct icside_state {
68         unsigned int channel;
69         unsigned int enabled;
70         void __iomem *irq_port;
71         void __iomem *ioc_base;
72         unsigned int sel;
73         unsigned int type;
74         struct ide_host *host;
75 };
76
77 #define ICS_TYPE_A3IN   0
78 #define ICS_TYPE_A3USER 1
79 #define ICS_TYPE_V6     3
80 #define ICS_TYPE_V5     15
81 #define ICS_TYPE_NOTYPE ((unsigned int)-1)
82
83 /* ---------------- Version 5 PCB Support Functions --------------------- */
84 /* Prototype: icside_irqenable_arcin_v5 (struct expansion_card *ec, int irqnr)
85  * Purpose  : enable interrupts from card
86  */
87 static void icside_irqenable_arcin_v5 (struct expansion_card *ec, int irqnr)
88 {
89         struct icside_state *state = ec->irq_data;
90
91         writeb(0, state->irq_port + ICS_ARCIN_V5_INTROFFSET);
92 }
93
94 /* Prototype: icside_irqdisable_arcin_v5 (struct expansion_card *ec, int irqnr)
95  * Purpose  : disable interrupts from card
96  */
97 static void icside_irqdisable_arcin_v5 (struct expansion_card *ec, int irqnr)
98 {
99         struct icside_state *state = ec->irq_data;
100
101         readb(state->irq_port + ICS_ARCIN_V5_INTROFFSET);
102 }
103
104 static const expansioncard_ops_t icside_ops_arcin_v5 = {
105         .irqenable      = icside_irqenable_arcin_v5,
106         .irqdisable     = icside_irqdisable_arcin_v5,
107 };
108
109
110 /* ---------------- Version 6 PCB Support Functions --------------------- */
111 /* Prototype: icside_irqenable_arcin_v6 (struct expansion_card *ec, int irqnr)
112  * Purpose  : enable interrupts from card
113  */
114 static void icside_irqenable_arcin_v6 (struct expansion_card *ec, int irqnr)
115 {
116         struct icside_state *state = ec->irq_data;
117         void __iomem *base = state->irq_port;
118
119         state->enabled = 1;
120
121         switch (state->channel) {
122         case 0:
123                 writeb(0, base + ICS_ARCIN_V6_INTROFFSET_1);
124                 readb(base + ICS_ARCIN_V6_INTROFFSET_2);
125                 break;
126         case 1:
127                 writeb(0, base + ICS_ARCIN_V6_INTROFFSET_2);
128                 readb(base + ICS_ARCIN_V6_INTROFFSET_1);
129                 break;
130         }
131 }
132
133 /* Prototype: icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
134  * Purpose  : disable interrupts from card
135  */
136 static void icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
137 {
138         struct icside_state *state = ec->irq_data;
139
140         state->enabled = 0;
141
142         readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_1);
143         readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_2);
144 }
145
146 /* Prototype: icside_irqprobe(struct expansion_card *ec)
147  * Purpose  : detect an active interrupt from card
148  */
149 static int icside_irqpending_arcin_v6(struct expansion_card *ec)
150 {
151         struct icside_state *state = ec->irq_data;
152
153         return readb(state->irq_port + ICS_ARCIN_V6_INTRSTAT_1) & 1 ||
154                readb(state->irq_port + ICS_ARCIN_V6_INTRSTAT_2) & 1;
155 }
156
157 static const expansioncard_ops_t icside_ops_arcin_v6 = {
158         .irqenable      = icside_irqenable_arcin_v6,
159         .irqdisable     = icside_irqdisable_arcin_v6,
160         .irqpending     = icside_irqpending_arcin_v6,
161 };
162
163 /*
164  * Handle routing of interrupts.  This is called before
165  * we write the command to the drive.
166  */
167 static void icside_maskproc(ide_drive_t *drive, int mask)
168 {
169         ide_hwif_t *hwif = HWIF(drive);
170         struct expansion_card *ec = ECARD_DEV(hwif->dev);
171         struct icside_state *state = ecard_get_drvdata(ec);
172         unsigned long flags;
173
174         local_irq_save(flags);
175
176         state->channel = hwif->channel;
177
178         if (state->enabled && !mask) {
179                 switch (hwif->channel) {
180                 case 0:
181                         writeb(0, state->irq_port + ICS_ARCIN_V6_INTROFFSET_1);
182                         readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_2);
183                         break;
184                 case 1:
185                         writeb(0, state->irq_port + ICS_ARCIN_V6_INTROFFSET_2);
186                         readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_1);
187                         break;
188                 }
189         } else {
190                 readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_2);
191                 readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_1);
192         }
193
194         local_irq_restore(flags);
195 }
196
197 static const struct ide_port_ops icside_v6_no_dma_port_ops = {
198         .maskproc               = icside_maskproc,
199 };
200
201 #ifdef CONFIG_BLK_DEV_IDEDMA_ICS
202 /*
203  * SG-DMA support.
204  *
205  * Similar to the BM-DMA, but we use the RiscPCs IOMD DMA controllers.
206  * There is only one DMA controller per card, which means that only
207  * one drive can be accessed at one time.  NOTE! We do not enforce that
208  * here, but we rely on the main IDE driver spotting that both
209  * interfaces use the same IRQ, which should guarantee this.
210  */
211
212 /*
213  * Configure the IOMD to give the appropriate timings for the transfer
214  * mode being requested.  We take the advice of the ATA standards, and
215  * calculate the cycle time based on the transfer mode, and the EIDE
216  * MW DMA specs that the drive provides in the IDENTIFY command.
217  *
218  * We have the following IOMD DMA modes to choose from:
219  *
220  *      Type    Active          Recovery        Cycle
221  *      A       250 (250)       312 (550)       562 (800)
222  *      B       187             250             437
223  *      C       125 (125)       125 (375)       250 (500)
224  *      D       62              125             187
225  *
226  * (figures in brackets are actual measured timings)
227  *
228  * However, we also need to take care of the read/write active and
229  * recovery timings:
230  *
231  *                      Read    Write
232  *      Mode    Active  -- Recovery --  Cycle   IOMD type
233  *      MW0     215     50      215     480     A
234  *      MW1     80      50      50      150     C
235  *      MW2     70      25      25      120     C
236  */
237 static void icside_set_dma_mode(ide_drive_t *drive, const u8 xfer_mode)
238 {
239         int cycle_time, use_dma_info = 0;
240
241         switch (xfer_mode) {
242         case XFER_MW_DMA_2:
243                 cycle_time = 250;
244                 use_dma_info = 1;
245                 break;
246
247         case XFER_MW_DMA_1:
248                 cycle_time = 250;
249                 use_dma_info = 1;
250                 break;
251
252         case XFER_MW_DMA_0:
253                 cycle_time = 480;
254                 break;
255
256         case XFER_SW_DMA_2:
257         case XFER_SW_DMA_1:
258         case XFER_SW_DMA_0:
259                 cycle_time = 480;
260                 break;
261         }
262
263         /*
264          * If we're going to be doing MW_DMA_1 or MW_DMA_2, we should
265          * take care to note the values in the ID...
266          */
267         if (use_dma_info && drive->id[ATA_ID_EIDE_DMA_TIME] > cycle_time)
268                 cycle_time = drive->id[ATA_ID_EIDE_DMA_TIME];
269
270         drive->drive_data = cycle_time;
271
272         printk("%s: %s selected (peak %dMB/s)\n", drive->name,
273                 ide_xfer_verbose(xfer_mode), 2000 / drive->drive_data);
274 }
275
276 static const struct ide_port_ops icside_v6_port_ops = {
277         .set_dma_mode           = icside_set_dma_mode,
278         .maskproc               = icside_maskproc,
279 };
280
281 static void icside_dma_host_set(ide_drive_t *drive, int on)
282 {
283 }
284
285 static int icside_dma_end(ide_drive_t *drive)
286 {
287         ide_hwif_t *hwif = HWIF(drive);
288         struct expansion_card *ec = ECARD_DEV(hwif->dev);
289
290         drive->waiting_for_dma = 0;
291
292         disable_dma(ec->dma);
293
294         /* Teardown mappings after DMA has completed. */
295         ide_destroy_dmatable(drive);
296
297         return get_dma_residue(ec->dma) != 0;
298 }
299
300 static void icside_dma_start(ide_drive_t *drive)
301 {
302         ide_hwif_t *hwif = HWIF(drive);
303         struct expansion_card *ec = ECARD_DEV(hwif->dev);
304
305         /* We can not enable DMA on both channels simultaneously. */
306         BUG_ON(dma_channel_active(ec->dma));
307         enable_dma(ec->dma);
308 }
309
310 static int icside_dma_setup(ide_drive_t *drive)
311 {
312         ide_hwif_t *hwif = HWIF(drive);
313         struct expansion_card *ec = ECARD_DEV(hwif->dev);
314         struct icside_state *state = ecard_get_drvdata(ec);
315         struct request *rq = hwif->hwgroup->rq;
316         unsigned int dma_mode;
317
318         if (rq_data_dir(rq))
319                 dma_mode = DMA_MODE_WRITE;
320         else
321                 dma_mode = DMA_MODE_READ;
322
323         /*
324          * We can not enable DMA on both channels.
325          */
326         BUG_ON(dma_channel_active(ec->dma));
327
328         hwif->sg_nents = ide_build_sglist(drive, rq);
329
330         /*
331          * Ensure that we have the right interrupt routed.
332          */
333         icside_maskproc(drive, 0);
334
335         /*
336          * Route the DMA signals to the correct interface.
337          */
338         writeb(state->sel | hwif->channel, state->ioc_base);
339
340         /*
341          * Select the correct timing for this drive.
342          */
343         set_dma_speed(ec->dma, drive->drive_data);
344
345         /*
346          * Tell the DMA engine about the SG table and
347          * data direction.
348          */
349         set_dma_sg(ec->dma, hwif->sg_table, hwif->sg_nents);
350         set_dma_mode(ec->dma, dma_mode);
351
352         drive->waiting_for_dma = 1;
353
354         return 0;
355 }
356
357 static void icside_dma_exec_cmd(ide_drive_t *drive, u8 cmd)
358 {
359         /* issue cmd to drive */
360         ide_execute_command(drive, cmd, ide_dma_intr, 2 * WAIT_CMD, NULL);
361 }
362
363 static int icside_dma_test_irq(ide_drive_t *drive)
364 {
365         ide_hwif_t *hwif = HWIF(drive);
366         struct expansion_card *ec = ECARD_DEV(hwif->dev);
367         struct icside_state *state = ecard_get_drvdata(ec);
368
369         return readb(state->irq_port +
370                      (hwif->channel ?
371                         ICS_ARCIN_V6_INTRSTAT_2 :
372                         ICS_ARCIN_V6_INTRSTAT_1)) & 1;
373 }
374
375 static void icside_dma_timeout(ide_drive_t *drive)
376 {
377         ide_hwif_t *hwif = drive->hwif;
378
379         printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
380
381         if (icside_dma_test_irq(drive))
382                 return;
383
384         ide_dump_status(drive, "DMA timeout", hwif->tp_ops->read_status(hwif));
385
386         icside_dma_end(drive);
387 }
388
389 static void icside_dma_lost_irq(ide_drive_t *drive)
390 {
391         printk(KERN_ERR "%s: IRQ lost\n", drive->name);
392 }
393
394 static int icside_dma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
395 {
396         hwif->dmatable_cpu      = NULL;
397         hwif->dmatable_dma      = 0;
398
399         return 0;
400 }
401
402 static const struct ide_dma_ops icside_v6_dma_ops = {
403         .dma_host_set           = icside_dma_host_set,
404         .dma_setup              = icside_dma_setup,
405         .dma_exec_cmd           = icside_dma_exec_cmd,
406         .dma_start              = icside_dma_start,
407         .dma_end                = icside_dma_end,
408         .dma_test_irq           = icside_dma_test_irq,
409         .dma_timeout            = icside_dma_timeout,
410         .dma_lost_irq           = icside_dma_lost_irq,
411 };
412 #else
413 #define icside_v6_dma_ops NULL
414 #endif
415
416 static int icside_dma_off_init(ide_hwif_t *hwif, const struct ide_port_info *d)
417 {
418         return -EOPNOTSUPP;
419 }
420
421 static void icside_setup_ports(hw_regs_t *hw, void __iomem *base,
422                                struct cardinfo *info, struct expansion_card *ec)
423 {
424         unsigned long port = (unsigned long)base + info->dataoffset;
425
426         hw->io_ports.data_addr   = port;
427         hw->io_ports.error_addr  = port + (1 << info->stepping);
428         hw->io_ports.nsect_addr  = port + (2 << info->stepping);
429         hw->io_ports.lbal_addr   = port + (3 << info->stepping);
430         hw->io_ports.lbam_addr   = port + (4 << info->stepping);
431         hw->io_ports.lbah_addr   = port + (5 << info->stepping);
432         hw->io_ports.device_addr = port + (6 << info->stepping);
433         hw->io_ports.status_addr = port + (7 << info->stepping);
434         hw->io_ports.ctl_addr    = (unsigned long)base + info->ctrloffset;
435
436         hw->irq = ec->irq;
437         hw->dev = &ec->dev;
438         hw->chipset = ide_acorn;
439 }
440
441 static int __init
442 icside_register_v5(struct icside_state *state, struct expansion_card *ec)
443 {
444         void __iomem *base;
445         struct ide_host *host;
446         hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL };
447         int ret;
448
449         base = ecardm_iomap(ec, ECARD_RES_MEMC, 0, 0);
450         if (!base)
451                 return -ENOMEM;
452
453         state->irq_port = base;
454
455         ec->irqaddr  = base + ICS_ARCIN_V5_INTRSTAT;
456         ec->irqmask  = 1;
457
458         ecard_setirq(ec, &icside_ops_arcin_v5, state);
459
460         /*
461          * Be on the safe side - disable interrupts
462          */
463         icside_irqdisable_arcin_v5(ec, 0);
464
465         icside_setup_ports(&hw, base, &icside_cardinfo_v5, ec);
466
467         host = ide_host_alloc(NULL, hws);
468         if (host == NULL)
469                 return -ENODEV;
470
471         state->host = host;
472
473         ecard_set_drvdata(ec, state);
474
475         ret = ide_host_register(host, NULL, hws);
476         if (ret)
477                 goto err_free;
478
479         return 0;
480 err_free:
481         ide_host_free(host);
482         ecard_set_drvdata(ec, NULL);
483         return ret;
484 }
485
486 static const struct ide_port_info icside_v6_port_info __initdata = {
487         .init_dma               = icside_dma_off_init,
488         .port_ops               = &icside_v6_no_dma_port_ops,
489         .dma_ops                = &icside_v6_dma_ops,
490         .host_flags             = IDE_HFLAG_SERIALIZE | IDE_HFLAG_MMIO,
491         .mwdma_mask             = ATA_MWDMA2,
492         .swdma_mask             = ATA_SWDMA2,
493 };
494
495 static int __init
496 icside_register_v6(struct icside_state *state, struct expansion_card *ec)
497 {
498         void __iomem *ioc_base, *easi_base;
499         struct ide_host *host;
500         unsigned int sel = 0;
501         int ret;
502         hw_regs_t hw[2], *hws[] = { &hw[0], NULL, NULL, NULL };
503         struct ide_port_info d = icside_v6_port_info;
504
505         ioc_base = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);
506         if (!ioc_base) {
507                 ret = -ENOMEM;
508                 goto out;
509         }
510
511         easi_base = ioc_base;
512
513         if (ecard_resource_flags(ec, ECARD_RES_EASI)) {
514                 easi_base = ecardm_iomap(ec, ECARD_RES_EASI, 0, 0);
515                 if (!easi_base) {
516                         ret = -ENOMEM;
517                         goto out;
518                 }
519
520                 /*
521                  * Enable access to the EASI region.
522                  */
523                 sel = 1 << 5;
524         }
525
526         writeb(sel, ioc_base);
527
528         ecard_setirq(ec, &icside_ops_arcin_v6, state);
529
530         state->irq_port   = easi_base;
531         state->ioc_base   = ioc_base;
532         state->sel        = sel;
533
534         /*
535          * Be on the safe side - disable interrupts
536          */
537         icside_irqdisable_arcin_v6(ec, 0);
538
539         icside_setup_ports(&hw[0], easi_base, &icside_cardinfo_v6_1, ec);
540         icside_setup_ports(&hw[1], easi_base, &icside_cardinfo_v6_2, ec);
541
542         host = ide_host_alloc(&d, hws);
543         if (host == NULL)
544                 return -ENODEV;
545
546         state->host = host;
547
548         ecard_set_drvdata(ec, state);
549
550         if (ec->dma != NO_DMA && !request_dma(ec->dma, DRV_NAME)) {
551                 d.init_dma = icside_dma_init;
552                 d.port_ops = &icside_v6_port_ops;
553                 d.dma_ops = NULL;
554         }
555
556         ret = ide_host_register(host, NULL, hws);
557         if (ret)
558                 goto err_free;
559
560         return 0;
561 err_free:
562         ide_host_free(host);
563         if (d.dma_ops)
564                 free_dma(ec->dma);
565         ecard_set_drvdata(ec, NULL);
566 out:
567         return ret;
568 }
569
570 static int __devinit
571 icside_probe(struct expansion_card *ec, const struct ecard_id *id)
572 {
573         struct icside_state *state;
574         void __iomem *idmem;
575         int ret;
576
577         ret = ecard_request_resources(ec);
578         if (ret)
579                 goto out;
580
581         state = kzalloc(sizeof(struct icside_state), GFP_KERNEL);
582         if (!state) {
583                 ret = -ENOMEM;
584                 goto release;
585         }
586
587         state->type     = ICS_TYPE_NOTYPE;
588
589         idmem = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);
590         if (idmem) {
591                 unsigned int type;
592
593                 type = readb(idmem + ICS_IDENT_OFFSET) & 1;
594                 type |= (readb(idmem + ICS_IDENT_OFFSET + 4) & 1) << 1;
595                 type |= (readb(idmem + ICS_IDENT_OFFSET + 8) & 1) << 2;
596                 type |= (readb(idmem + ICS_IDENT_OFFSET + 12) & 1) << 3;
597                 ecardm_iounmap(ec, idmem);
598
599                 state->type = type;
600         }
601
602         switch (state->type) {
603         case ICS_TYPE_A3IN:
604                 dev_warn(&ec->dev, "A3IN unsupported\n");
605                 ret = -ENODEV;
606                 break;
607
608         case ICS_TYPE_A3USER:
609                 dev_warn(&ec->dev, "A3USER unsupported\n");
610                 ret = -ENODEV;
611                 break;
612
613         case ICS_TYPE_V5:
614                 ret = icside_register_v5(state, ec);
615                 break;
616
617         case ICS_TYPE_V6:
618                 ret = icside_register_v6(state, ec);
619                 break;
620
621         default:
622                 dev_warn(&ec->dev, "unknown interface type\n");
623                 ret = -ENODEV;
624                 break;
625         }
626
627         if (ret == 0)
628                 goto out;
629
630         kfree(state);
631  release:
632         ecard_release_resources(ec);
633  out:
634         return ret;
635 }
636
637 static void __devexit icside_remove(struct expansion_card *ec)
638 {
639         struct icside_state *state = ecard_get_drvdata(ec);
640
641         switch (state->type) {
642         case ICS_TYPE_V5:
643                 /* FIXME: tell IDE to stop using the interface */
644
645                 /* Disable interrupts */
646                 icside_irqdisable_arcin_v5(ec, 0);
647                 break;
648
649         case ICS_TYPE_V6:
650                 /* FIXME: tell IDE to stop using the interface */
651                 if (ec->dma != NO_DMA)
652                         free_dma(ec->dma);
653
654                 /* Disable interrupts */
655                 icside_irqdisable_arcin_v6(ec, 0);
656
657                 /* Reset the ROM pointer/EASI selection */
658                 writeb(0, state->ioc_base);
659                 break;
660         }
661
662         ecard_set_drvdata(ec, NULL);
663
664         kfree(state);
665         ecard_release_resources(ec);
666 }
667
668 static void icside_shutdown(struct expansion_card *ec)
669 {
670         struct icside_state *state = ecard_get_drvdata(ec);
671         unsigned long flags;
672
673         /*
674          * Disable interrupts from this card.  We need to do
675          * this before disabling EASI since we may be accessing
676          * this register via that region.
677          */
678         local_irq_save(flags);
679         ec->ops->irqdisable(ec, 0);
680         local_irq_restore(flags);
681
682         /*
683          * Reset the ROM pointer so that we can read the ROM
684          * after a soft reboot.  This also disables access to
685          * the IDE taskfile via the EASI region.
686          */
687         if (state->ioc_base)
688                 writeb(0, state->ioc_base);
689 }
690
691 static const struct ecard_id icside_ids[] = {
692         { MANU_ICS,  PROD_ICS_IDE  },
693         { MANU_ICS2, PROD_ICS2_IDE },
694         { 0xffff, 0xffff }
695 };
696
697 static struct ecard_driver icside_driver = {
698         .probe          = icside_probe,
699         .remove         = __devexit_p(icside_remove),
700         .shutdown       = icside_shutdown,
701         .id_table       = icside_ids,
702         .drv = {
703                 .name   = "icside",
704         },
705 };
706
707 static int __init icside_init(void)
708 {
709         return ecard_register_driver(&icside_driver);
710 }
711
712 static void __exit icside_exit(void);
713 {
714         ecard_unregister_driver(&icside_driver);
715 }
716
717 MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
718 MODULE_LICENSE("GPL");
719 MODULE_DESCRIPTION("ICS IDE driver");
720
721 module_init(icside_init);
722 module_exit(icside_exit);