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