blob: 26b6c0a1f772751956817a0489a003d7f52fcd50 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (c) 1996-2004 Russell King.
3 *
4 * Please note that this platform does not support 32-bit IDE IO.
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#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>
Al Viroba5b55d2007-07-15 21:01:32 +010018#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/dma.h>
21#include <asm/ecard.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Bartlomiej Zolnierkiewicz67717e22008-07-16 20:33:44 +020023#define DRV_NAME "icside"
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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
43struct cardinfo {
44 unsigned int dataoffset;
45 unsigned int ctrloffset;
46 unsigned int stepping;
47};
48
49static 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
55static 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
61static 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
67struct icside_state {
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 void __iomem *irq_port;
69 void __iomem *ioc_base;
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +020070 unsigned int sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 unsigned int type;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020072 struct ide_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75#define ICS_TYPE_A3IN 0
76#define ICS_TYPE_A3USER 1
77#define ICS_TYPE_V6 3
78#define ICS_TYPE_V5 15
79#define ICS_TYPE_NOTYPE ((unsigned int)-1)
80
81/* ---------------- Version 5 PCB Support Functions --------------------- */
82/* Prototype: icside_irqenable_arcin_v5 (struct expansion_card *ec, int irqnr)
83 * Purpose : enable interrupts from card
84 */
85static void icside_irqenable_arcin_v5 (struct expansion_card *ec, int irqnr)
86{
87 struct icside_state *state = ec->irq_data;
88
89 writeb(0, state->irq_port + ICS_ARCIN_V5_INTROFFSET);
90}
91
92/* Prototype: icside_irqdisable_arcin_v5 (struct expansion_card *ec, int irqnr)
93 * Purpose : disable interrupts from card
94 */
95static void icside_irqdisable_arcin_v5 (struct expansion_card *ec, int irqnr)
96{
97 struct icside_state *state = ec->irq_data;
98
99 readb(state->irq_port + ICS_ARCIN_V5_INTROFFSET);
100}
101
102static const expansioncard_ops_t icside_ops_arcin_v5 = {
103 .irqenable = icside_irqenable_arcin_v5,
104 .irqdisable = icside_irqdisable_arcin_v5,
105};
106
107
108/* ---------------- Version 6 PCB Support Functions --------------------- */
109/* Prototype: icside_irqenable_arcin_v6 (struct expansion_card *ec, int irqnr)
110 * Purpose : enable interrupts from card
111 */
112static void icside_irqenable_arcin_v6 (struct expansion_card *ec, int irqnr)
113{
114 struct icside_state *state = ec->irq_data;
115 void __iomem *base = state->irq_port;
116
Bartlomiej Zolnierkiewiczdff88172009-06-07 15:37:06 +0200117 writeb(0, base + ICS_ARCIN_V6_INTROFFSET_1);
118 readb(base + ICS_ARCIN_V6_INTROFFSET_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Bartlomiej Zolnierkiewiczdff88172009-06-07 15:37:06 +0200120 writeb(0, base + ICS_ARCIN_V6_INTROFFSET_2);
121 readb(base + ICS_ARCIN_V6_INTROFFSET_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124/* Prototype: icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
125 * Purpose : disable interrupts from card
126 */
127static void icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
128{
129 struct icside_state *state = ec->irq_data;
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_1);
132 readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_2);
133}
134
135/* Prototype: icside_irqprobe(struct expansion_card *ec)
136 * Purpose : detect an active interrupt from card
137 */
138static int icside_irqpending_arcin_v6(struct expansion_card *ec)
139{
140 struct icside_state *state = ec->irq_data;
141
142 return readb(state->irq_port + ICS_ARCIN_V6_INTRSTAT_1) & 1 ||
143 readb(state->irq_port + ICS_ARCIN_V6_INTRSTAT_2) & 1;
144}
145
146static const expansioncard_ops_t icside_ops_arcin_v6 = {
147 .irqenable = icside_irqenable_arcin_v6,
148 .irqdisable = icside_irqdisable_arcin_v6,
149 .irqpending = icside_irqpending_arcin_v6,
150};
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#ifdef CONFIG_BLK_DEV_IDEDMA_ICS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/*
154 * SG-DMA support.
155 *
156 * Similar to the BM-DMA, but we use the RiscPCs IOMD DMA controllers.
157 * There is only one DMA controller per card, which means that only
158 * one drive can be accessed at one time. NOTE! We do not enforce that
159 * here, but we rely on the main IDE driver spotting that both
160 * interfaces use the same IRQ, which should guarantee this.
161 */
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*
164 * Configure the IOMD to give the appropriate timings for the transfer
165 * mode being requested. We take the advice of the ATA standards, and
166 * calculate the cycle time based on the transfer mode, and the EIDE
167 * MW DMA specs that the drive provides in the IDENTIFY command.
168 *
169 * We have the following IOMD DMA modes to choose from:
170 *
171 * Type Active Recovery Cycle
172 * A 250 (250) 312 (550) 562 (800)
173 * B 187 250 437
174 * C 125 (125) 125 (375) 250 (500)
175 * D 62 125 187
176 *
177 * (figures in brackets are actual measured timings)
178 *
179 * However, we also need to take care of the read/write active and
180 * recovery timings:
181 *
182 * Read Write
183 * Mode Active -- Recovery -- Cycle IOMD type
184 * MW0 215 50 215 480 A
185 * MW1 80 50 50 150 C
186 * MW2 70 25 25 120 C
187 */
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -0800188static void icside_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200190 unsigned long cycle_time;
191 int use_dma_info = 0;
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -0800192 const u8 xfer_mode = drive->dma_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 switch (xfer_mode) {
195 case XFER_MW_DMA_2:
196 cycle_time = 250;
197 use_dma_info = 1;
198 break;
199
200 case XFER_MW_DMA_1:
201 cycle_time = 250;
202 use_dma_info = 1;
203 break;
204
205 case XFER_MW_DMA_0:
206 cycle_time = 480;
207 break;
208
209 case XFER_SW_DMA_2:
210 case XFER_SW_DMA_1:
211 case XFER_SW_DMA_0:
212 cycle_time = 480;
213 break;
214 }
215
216 /*
217 * If we're going to be doing MW_DMA_1 or MW_DMA_2, we should
218 * take care to note the values in the ID...
219 */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200220 if (use_dma_info && drive->id[ATA_ID_EIDE_DMA_TIME] > cycle_time)
221 cycle_time = drive->id[ATA_ID_EIDE_DMA_TIME];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200223 ide_set_drivedata(drive, (void *)cycle_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 printk("%s: %s selected (peak %dMB/s)\n", drive->name,
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200226 ide_xfer_verbose(xfer_mode),
227 2000 / (unsigned long)ide_get_drivedata(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200230static const struct ide_port_ops icside_v6_port_ops = {
231 .set_dma_mode = icside_set_dma_mode,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200232};
233
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100234static void icside_dma_host_set(ide_drive_t *drive, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static int icside_dma_end(ide_drive_t *drive)
239{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100240 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100241 struct expansion_card *ec = ECARD_DEV(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100243 disable_dma(ec->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100245 return get_dma_residue(ec->dma) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248static void icside_dma_start(ide_drive_t *drive)
249{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100250 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100251 struct expansion_card *ec = ECARD_DEV(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 /* We can not enable DMA on both channels simultaneously. */
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100254 BUG_ON(dma_channel_active(ec->dma));
255 enable_dma(ec->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100258static int icside_dma_setup(ide_drive_t *drive, struct ide_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100260 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100261 struct expansion_card *ec = ECARD_DEV(hwif->dev);
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200262 struct icside_state *state = ecard_get_drvdata(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned int dma_mode;
264
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100265 if (cmd->tf_flags & IDE_TFLAG_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 dma_mode = DMA_MODE_WRITE;
267 else
268 dma_mode = DMA_MODE_READ;
269
270 /*
271 * We can not enable DMA on both channels.
272 */
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100273 BUG_ON(dma_channel_active(ec->dma));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * Route the DMA signals to the correct interface.
277 */
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200278 writeb(state->sel | hwif->channel, state->ioc_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /*
281 * Select the correct timing for this drive.
282 */
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200283 set_dma_speed(ec->dma, (unsigned long)ide_get_drivedata(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /*
286 * Tell the DMA engine about the SG table and
287 * data direction.
288 */
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100289 set_dma_sg(ec->dma, hwif->sg_table, cmd->sg_nents);
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100290 set_dma_mode(ec->dma, dma_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 0;
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295static int icside_dma_test_irq(ide_drive_t *drive)
296{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100297 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200298 struct expansion_card *ec = ECARD_DEV(hwif->dev);
299 struct icside_state *state = ecard_get_drvdata(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 return readb(state->irq_port +
302 (hwif->channel ?
303 ICS_ARCIN_V6_INTRSTAT_2 :
304 ICS_ARCIN_V6_INTRSTAT_1)) & 1;
305}
306
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200307static int icside_dma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 hwif->dmatable_cpu = NULL;
310 hwif->dmatable_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200312 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200314
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200315static const struct ide_dma_ops icside_v6_dma_ops = {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200316 .dma_host_set = icside_dma_host_set,
317 .dma_setup = icside_dma_setup,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200318 .dma_start = icside_dma_start,
319 .dma_end = icside_dma_end,
320 .dma_test_irq = icside_dma_test_irq,
Bartlomiej Zolnierkiewiczde23ec92008-10-13 21:39:46 +0200321 .dma_lost_irq = ide_dma_lost_irq,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200322};
323#else
324#define icside_v6_dma_ops NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#endif
326
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200327static int icside_dma_off_init(ide_hwif_t *hwif, const struct ide_port_info *d)
328{
329 return -EOPNOTSUPP;
330}
331
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200332static void icside_setup_ports(struct ide_hw *hw, void __iomem *base,
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200333 struct cardinfo *info, struct expansion_card *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 unsigned long port = (unsigned long)base + info->dataoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200337 hw->io_ports.data_addr = port;
338 hw->io_ports.error_addr = port + (1 << info->stepping);
339 hw->io_ports.nsect_addr = port + (2 << info->stepping);
340 hw->io_ports.lbal_addr = port + (3 << info->stepping);
341 hw->io_ports.lbam_addr = port + (4 << info->stepping);
342 hw->io_ports.lbah_addr = port + (5 << info->stepping);
343 hw->io_ports.device_addr = port + (6 << info->stepping);
344 hw->io_ports.status_addr = port + (7 << info->stepping);
345 hw->io_ports.ctl_addr = (unsigned long)base + info->ctrloffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200347 hw->irq = ec->irq;
348 hw->dev = &ec->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Bartlomiej Zolnierkiewicz33050ec2009-03-27 12:46:17 +0100351static const struct ide_port_info icside_v5_port_info = {
352 .host_flags = IDE_HFLAG_NO_DMA,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +0200353 .chipset = ide_acorn,
Bartlomiej Zolnierkiewicz33050ec2009-03-27 12:46:17 +0100354};
355
Al Virod16d7662008-11-22 17:34:34 +0000356static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357icside_register_v5(struct icside_state *state, struct expansion_card *ec)
358{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 void __iomem *base;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200360 struct ide_host *host;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200361 struct ide_hw hw, *hws[] = { &hw };
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200362 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Russell King10bdaaa2007-05-10 18:40:51 +0100364 base = ecardm_iomap(ec, ECARD_RES_MEMC, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (!base)
366 return -ENOMEM;
367
368 state->irq_port = base;
369
370 ec->irqaddr = base + ICS_ARCIN_V5_INTRSTAT;
371 ec->irqmask = 1;
Russell Kingc7b87f32007-05-10 16:46:13 +0100372
373 ecard_setirq(ec, &icside_ops_arcin_v5, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /*
376 * Be on the safe side - disable interrupts
377 */
378 icside_irqdisable_arcin_v5(ec, 0);
379
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200380 icside_setup_ports(&hw, base, &icside_cardinfo_v5, ec);
381
Bartlomiej Zolnierkiewiczdca39832009-05-17 19:12:24 +0200382 host = ide_host_alloc(&icside_v5_port_info, hws, 1);
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200383 if (host == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200386 state->host = host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200388 ecard_set_drvdata(ec, state);
389
Bartlomiej Zolnierkiewicz33050ec2009-03-27 12:46:17 +0100390 ret = ide_host_register(host, &icside_v5_port_info, hws);
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200391 if (ret)
392 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 return 0;
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200395err_free:
396 ide_host_free(host);
397 ecard_set_drvdata(ec, NULL);
398 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100401static const struct ide_port_info icside_v6_port_info __initdata = {
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200402 .init_dma = icside_dma_off_init,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200403 .dma_ops = &icside_v6_dma_ops,
Bartlomiej Zolnierkiewiczc5dd43e2008-04-28 23:44:37 +0200404 .host_flags = IDE_HFLAG_SERIALIZE | IDE_HFLAG_MMIO,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100405 .mwdma_mask = ATA_MWDMA2,
406 .swdma_mask = ATA_SWDMA2,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +0200407 .chipset = ide_acorn,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100408};
409
Al Virod16d7662008-11-22 17:34:34 +0000410static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411icside_register_v6(struct icside_state *state, struct expansion_card *ec)
412{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 void __iomem *ioc_base, *easi_base;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200414 struct ide_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 unsigned int sel = 0;
416 int ret;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200417 struct ide_hw hw[2], *hws[] = { &hw[0], &hw[1] };
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100418 struct ide_port_info d = icside_v6_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Russell King10bdaaa2007-05-10 18:40:51 +0100420 ioc_base = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (!ioc_base) {
422 ret = -ENOMEM;
423 goto out;
424 }
425
426 easi_base = ioc_base;
427
428 if (ecard_resource_flags(ec, ECARD_RES_EASI)) {
Russell King10bdaaa2007-05-10 18:40:51 +0100429 easi_base = ecardm_iomap(ec, ECARD_RES_EASI, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (!easi_base) {
431 ret = -ENOMEM;
Russell King10bdaaa2007-05-10 18:40:51 +0100432 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 /*
436 * Enable access to the EASI region.
437 */
438 sel = 1 << 5;
439 }
440
441 writeb(sel, ioc_base);
442
Russell Kingc7b87f32007-05-10 16:46:13 +0100443 ecard_setirq(ec, &icside_ops_arcin_v6, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 state->irq_port = easi_base;
446 state->ioc_base = ioc_base;
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200447 state->sel = sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 /*
450 * Be on the safe side - disable interrupts
451 */
452 icside_irqdisable_arcin_v6(ec, 0);
453
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200454 icside_setup_ports(&hw[0], easi_base, &icside_cardinfo_v6_1, ec);
455 icside_setup_ports(&hw[1], easi_base, &icside_cardinfo_v6_2, ec);
456
Bartlomiej Zolnierkiewiczdca39832009-05-17 19:12:24 +0200457 host = ide_host_alloc(&d, hws, 2);
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200458 if (host == NULL)
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200459 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200461 state->host = host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200463 ecard_set_drvdata(ec, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Bartlomiej Zolnierkiewicz67717e22008-07-16 20:33:44 +0200465 if (ec->dma != NO_DMA && !request_dma(ec->dma, DRV_NAME)) {
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200466 d.init_dma = icside_dma_init;
Al Viro9c391ba2008-04-27 15:38:23 +0200467 d.port_ops = &icside_v6_port_ops;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200468 d.dma_ops = NULL;
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Bartlomiej Zolnierkiewiczd224b622009-02-02 20:12:23 +0100471 ret = ide_host_register(host, &d, hws);
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200472 if (ret)
473 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 return 0;
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200476err_free:
477 ide_host_free(host);
478 if (d.dma_ops)
479 free_dma(ec->dma);
480 ecard_set_drvdata(ec, NULL);
481out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return ret;
483}
484
485static int __devinit
486icside_probe(struct expansion_card *ec, const struct ecard_id *id)
487{
488 struct icside_state *state;
489 void __iomem *idmem;
490 int ret;
491
492 ret = ecard_request_resources(ec);
493 if (ret)
494 goto out;
495
Mariusz Kozlowskicc60d8b2007-08-01 23:46:44 +0200496 state = kzalloc(sizeof(struct icside_state), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (!state) {
498 ret = -ENOMEM;
499 goto release;
500 }
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 state->type = ICS_TYPE_NOTYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Russell King10bdaaa2007-05-10 18:40:51 +0100504 idmem = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (idmem) {
506 unsigned int type;
507
508 type = readb(idmem + ICS_IDENT_OFFSET) & 1;
509 type |= (readb(idmem + ICS_IDENT_OFFSET + 4) & 1) << 1;
510 type |= (readb(idmem + ICS_IDENT_OFFSET + 8) & 1) << 2;
511 type |= (readb(idmem + ICS_IDENT_OFFSET + 12) & 1) << 3;
Russell King10bdaaa2007-05-10 18:40:51 +0100512 ecardm_iounmap(ec, idmem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 state->type = type;
515 }
516
517 switch (state->type) {
518 case ICS_TYPE_A3IN:
519 dev_warn(&ec->dev, "A3IN unsupported\n");
520 ret = -ENODEV;
521 break;
522
523 case ICS_TYPE_A3USER:
524 dev_warn(&ec->dev, "A3USER unsupported\n");
525 ret = -ENODEV;
526 break;
527
528 case ICS_TYPE_V5:
529 ret = icside_register_v5(state, ec);
530 break;
531
532 case ICS_TYPE_V6:
533 ret = icside_register_v6(state, ec);
534 break;
535
536 default:
537 dev_warn(&ec->dev, "unknown interface type\n");
538 ret = -ENODEV;
539 break;
540 }
541
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200542 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 kfree(state);
546 release:
547 ecard_release_resources(ec);
548 out:
549 return ret;
550}
551
552static void __devexit icside_remove(struct expansion_card *ec)
553{
554 struct icside_state *state = ecard_get_drvdata(ec);
555
556 switch (state->type) {
557 case ICS_TYPE_V5:
558 /* FIXME: tell IDE to stop using the interface */
559
560 /* Disable interrupts */
561 icside_irqdisable_arcin_v5(ec, 0);
562 break;
563
564 case ICS_TYPE_V6:
565 /* FIXME: tell IDE to stop using the interface */
566 if (ec->dma != NO_DMA)
567 free_dma(ec->dma);
568
569 /* Disable interrupts */
570 icside_irqdisable_arcin_v6(ec, 0);
571
572 /* Reset the ROM pointer/EASI selection */
573 writeb(0, state->ioc_base);
574 break;
575 }
576
577 ecard_set_drvdata(ec, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 kfree(state);
580 ecard_release_resources(ec);
581}
582
583static void icside_shutdown(struct expansion_card *ec)
584{
585 struct icside_state *state = ecard_get_drvdata(ec);
586 unsigned long flags;
587
588 /*
589 * Disable interrupts from this card. We need to do
590 * this before disabling EASI since we may be accessing
591 * this register via that region.
592 */
593 local_irq_save(flags);
594 ec->ops->irqdisable(ec, 0);
595 local_irq_restore(flags);
596
597 /*
598 * Reset the ROM pointer so that we can read the ROM
599 * after a soft reboot. This also disables access to
600 * the IDE taskfile via the EASI region.
601 */
602 if (state->ioc_base)
603 writeb(0, state->ioc_base);
604}
605
606static const struct ecard_id icside_ids[] = {
607 { MANU_ICS, PROD_ICS_IDE },
608 { MANU_ICS2, PROD_ICS2_IDE },
609 { 0xffff, 0xffff }
610};
611
612static struct ecard_driver icside_driver = {
613 .probe = icside_probe,
614 .remove = __devexit_p(icside_remove),
615 .shutdown = icside_shutdown,
616 .id_table = icside_ids,
617 .drv = {
618 .name = "icside",
619 },
620};
621
622static int __init icside_init(void)
623{
624 return ecard_register_driver(&icside_driver);
625}
626
Al Viro1137fb62008-10-26 05:40:26 +0000627static void __exit icside_exit(void)
Bartlomiej Zolnierkiewicz8e27cb12008-07-24 22:53:27 +0200628{
Al Viro1137fb62008-10-26 05:40:26 +0000629 ecard_remove_driver(&icside_driver);
Bartlomiej Zolnierkiewicz8e27cb12008-07-24 22:53:27 +0200630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
633MODULE_LICENSE("GPL");
634MODULE_DESCRIPTION("ICS IDE driver");
635
636module_init(icside_init);
Bartlomiej Zolnierkiewicz8e27cb12008-07-24 22:53:27 +0200637module_exit(icside_exit);