blob: d7e6f09aa86bff58e2035fdd3916fc7d4740d494 [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 {
Bartlomiej Zolnierkiewiczf75d4a22010-01-05 07:07:27 +000068 unsigned int channel;
69 unsigned int enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 void __iomem *irq_port;
71 void __iomem *ioc_base;
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +020072 unsigned int sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned int type;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020074 struct ide_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
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 */
87static 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 */
97static 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
104static 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 */
114static 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
Bartlomiej Zolnierkiewiczf75d4a22010-01-05 07:07:27 +0000119 state->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Bartlomiej Zolnierkiewiczf75d4a22010-01-05 07:07:27 +0000121 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133/* Prototype: icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
134 * Purpose : disable interrupts from card
135 */
136static void icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
137{
138 struct icside_state *state = ec->irq_data;
139
Bartlomiej Zolnierkiewiczf75d4a22010-01-05 07:07:27 +0000140 state->enabled = 0;
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 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 */
149static 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
157static 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
Bartlomiej Zolnierkiewiczf75d4a22010-01-05 07:07:27 +0000163/*
164 * Handle routing of interrupts. This is called before
165 * we write the command to the drive.
166 */
167static void icside_maskproc(ide_drive_t *drive, int mask)
168{
169 ide_hwif_t *hwif = drive->hwif;
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
197static const struct ide_port_ops icside_v6_no_dma_port_ops = {
198 .maskproc = icside_maskproc,
199};
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#ifdef CONFIG_BLK_DEV_IDEDMA_ICS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/*
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 */
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200237static void icside_set_dma_mode(ide_drive_t *drive, const u8 xfer_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200239 unsigned long cycle_time;
240 int use_dma_info = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 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 */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200268 if (use_dma_info && drive->id[ATA_ID_EIDE_DMA_TIME] > cycle_time)
269 cycle_time = drive->id[ATA_ID_EIDE_DMA_TIME];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200271 ide_set_drivedata(drive, (void *)cycle_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 printk("%s: %s selected (peak %dMB/s)\n", drive->name,
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200274 ide_xfer_verbose(xfer_mode),
275 2000 / (unsigned long)ide_get_drivedata(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200278static const struct ide_port_ops icside_v6_port_ops = {
279 .set_dma_mode = icside_set_dma_mode,
Bartlomiej Zolnierkiewiczf75d4a22010-01-05 07:07:27 +0000280 .maskproc = icside_maskproc,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200281};
282
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100283static void icside_dma_host_set(ide_drive_t *drive, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287static int icside_dma_end(ide_drive_t *drive)
288{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100289 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100290 struct expansion_card *ec = ECARD_DEV(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100292 disable_dma(ec->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100294 return get_dma_residue(ec->dma) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297static void icside_dma_start(ide_drive_t *drive)
298{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100299 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100300 struct expansion_card *ec = ECARD_DEV(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 /* We can not enable DMA on both channels simultaneously. */
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100303 BUG_ON(dma_channel_active(ec->dma));
304 enable_dma(ec->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100307static int icside_dma_setup(ide_drive_t *drive, struct ide_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100309 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100310 struct expansion_card *ec = ECARD_DEV(hwif->dev);
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200311 struct icside_state *state = ecard_get_drvdata(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 unsigned int dma_mode;
313
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100314 if (cmd->tf_flags & IDE_TFLAG_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 dma_mode = DMA_MODE_WRITE;
316 else
317 dma_mode = DMA_MODE_READ;
318
319 /*
320 * We can not enable DMA on both channels.
321 */
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100322 BUG_ON(dma_channel_active(ec->dma));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /*
Bartlomiej Zolnierkiewiczf75d4a22010-01-05 07:07:27 +0000325 * Ensure that we have the right interrupt routed.
326 */
327 icside_maskproc(drive, 0);
328
329 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * Route the DMA signals to the correct interface.
331 */
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200332 writeb(state->sel | hwif->channel, state->ioc_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /*
335 * Select the correct timing for this drive.
336 */
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200337 set_dma_speed(ec->dma, (unsigned long)ide_get_drivedata(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /*
340 * Tell the DMA engine about the SG table and
341 * data direction.
342 */
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100343 set_dma_sg(ec->dma, hwif->sg_table, cmd->sg_nents);
Bartlomiej Zolnierkiewiczf8341c12008-02-01 23:09:32 +0100344 set_dma_mode(ec->dma, dma_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return 0;
347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349static int icside_dma_test_irq(ide_drive_t *drive)
350{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100351 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200352 struct expansion_card *ec = ECARD_DEV(hwif->dev);
353 struct icside_state *state = ecard_get_drvdata(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 return readb(state->irq_port +
356 (hwif->channel ?
357 ICS_ARCIN_V6_INTRSTAT_2 :
358 ICS_ARCIN_V6_INTRSTAT_1)) & 1;
359}
360
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200361static int icside_dma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 hwif->dmatable_cpu = NULL;
364 hwif->dmatable_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200368
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200369static const struct ide_dma_ops icside_v6_dma_ops = {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200370 .dma_host_set = icside_dma_host_set,
371 .dma_setup = icside_dma_setup,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200372 .dma_start = icside_dma_start,
373 .dma_end = icside_dma_end,
374 .dma_test_irq = icside_dma_test_irq,
Bartlomiej Zolnierkiewiczde23ec92008-10-13 21:39:46 +0200375 .dma_lost_irq = ide_dma_lost_irq,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200376};
377#else
378#define icside_v6_dma_ops NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#endif
380
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200381static int icside_dma_off_init(ide_hwif_t *hwif, const struct ide_port_info *d)
382{
383 return -EOPNOTSUPP;
384}
385
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200386static void icside_setup_ports(struct ide_hw *hw, void __iomem *base,
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200387 struct cardinfo *info, struct expansion_card *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 unsigned long port = (unsigned long)base + info->dataoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200391 hw->io_ports.data_addr = port;
392 hw->io_ports.error_addr = port + (1 << info->stepping);
393 hw->io_ports.nsect_addr = port + (2 << info->stepping);
394 hw->io_ports.lbal_addr = port + (3 << info->stepping);
395 hw->io_ports.lbam_addr = port + (4 << info->stepping);
396 hw->io_ports.lbah_addr = port + (5 << info->stepping);
397 hw->io_ports.device_addr = port + (6 << info->stepping);
398 hw->io_ports.status_addr = port + (7 << info->stepping);
399 hw->io_ports.ctl_addr = (unsigned long)base + info->ctrloffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200401 hw->irq = ec->irq;
402 hw->dev = &ec->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
Bartlomiej Zolnierkiewicz33050ec2009-03-27 12:46:17 +0100405static const struct ide_port_info icside_v5_port_info = {
406 .host_flags = IDE_HFLAG_NO_DMA,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +0200407 .chipset = ide_acorn,
Bartlomiej Zolnierkiewicz33050ec2009-03-27 12:46:17 +0100408};
409
Al Virod16d7662008-11-22 17:34:34 +0000410static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411icside_register_v5(struct icside_state *state, struct expansion_card *ec)
412{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 void __iomem *base;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200414 struct ide_host *host;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200415 struct ide_hw hw, *hws[] = { &hw };
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200416 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Russell King10bdaaa2007-05-10 18:40:51 +0100418 base = ecardm_iomap(ec, ECARD_RES_MEMC, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (!base)
420 return -ENOMEM;
421
422 state->irq_port = base;
423
424 ec->irqaddr = base + ICS_ARCIN_V5_INTRSTAT;
425 ec->irqmask = 1;
Russell Kingc7b87f32007-05-10 16:46:13 +0100426
427 ecard_setirq(ec, &icside_ops_arcin_v5, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /*
430 * Be on the safe side - disable interrupts
431 */
432 icside_irqdisable_arcin_v5(ec, 0);
433
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200434 icside_setup_ports(&hw, base, &icside_cardinfo_v5, ec);
435
Bartlomiej Zolnierkiewiczdca39832009-05-17 19:12:24 +0200436 host = ide_host_alloc(&icside_v5_port_info, hws, 1);
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200437 if (host == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200440 state->host = host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200442 ecard_set_drvdata(ec, state);
443
Bartlomiej Zolnierkiewicz33050ec2009-03-27 12:46:17 +0100444 ret = ide_host_register(host, &icside_v5_port_info, hws);
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200445 if (ret)
446 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 return 0;
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200449err_free:
450 ide_host_free(host);
451 ecard_set_drvdata(ec, NULL);
452 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100455static const struct ide_port_info icside_v6_port_info __initdata = {
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200456 .init_dma = icside_dma_off_init,
Bartlomiej Zolnierkiewiczf75d4a22010-01-05 07:07:27 +0000457 .port_ops = &icside_v6_no_dma_port_ops,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200458 .dma_ops = &icside_v6_dma_ops,
Bartlomiej Zolnierkiewiczc5dd43e2008-04-28 23:44:37 +0200459 .host_flags = IDE_HFLAG_SERIALIZE | IDE_HFLAG_MMIO,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100460 .mwdma_mask = ATA_MWDMA2,
461 .swdma_mask = ATA_SWDMA2,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +0200462 .chipset = ide_acorn,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100463};
464
Al Virod16d7662008-11-22 17:34:34 +0000465static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466icside_register_v6(struct icside_state *state, struct expansion_card *ec)
467{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 void __iomem *ioc_base, *easi_base;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200469 struct ide_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 unsigned int sel = 0;
471 int ret;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200472 struct ide_hw hw[2], *hws[] = { &hw[0], &hw[1] };
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100473 struct ide_port_info d = icside_v6_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Russell King10bdaaa2007-05-10 18:40:51 +0100475 ioc_base = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (!ioc_base) {
477 ret = -ENOMEM;
478 goto out;
479 }
480
481 easi_base = ioc_base;
482
483 if (ecard_resource_flags(ec, ECARD_RES_EASI)) {
Russell King10bdaaa2007-05-10 18:40:51 +0100484 easi_base = ecardm_iomap(ec, ECARD_RES_EASI, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (!easi_base) {
486 ret = -ENOMEM;
Russell King10bdaaa2007-05-10 18:40:51 +0100487 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
490 /*
491 * Enable access to the EASI region.
492 */
493 sel = 1 << 5;
494 }
495
496 writeb(sel, ioc_base);
497
Russell Kingc7b87f32007-05-10 16:46:13 +0100498 ecard_setirq(ec, &icside_ops_arcin_v6, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 state->irq_port = easi_base;
501 state->ioc_base = ioc_base;
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200502 state->sel = sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /*
505 * Be on the safe side - disable interrupts
506 */
507 icside_irqdisable_arcin_v6(ec, 0);
508
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200509 icside_setup_ports(&hw[0], easi_base, &icside_cardinfo_v6_1, ec);
510 icside_setup_ports(&hw[1], easi_base, &icside_cardinfo_v6_2, ec);
511
Bartlomiej Zolnierkiewiczdca39832009-05-17 19:12:24 +0200512 host = ide_host_alloc(&d, hws, 2);
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200513 if (host == NULL)
Bartlomiej Zolnierkiewiczb25afdf2008-07-16 20:33:41 +0200514 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200516 state->host = host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200518 ecard_set_drvdata(ec, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Bartlomiej Zolnierkiewicz67717e22008-07-16 20:33:44 +0200520 if (ec->dma != NO_DMA && !request_dma(ec->dma, DRV_NAME)) {
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200521 d.init_dma = icside_dma_init;
Al Viro9c391ba2008-04-27 15:38:23 +0200522 d.port_ops = &icside_v6_port_ops;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200523 d.dma_ops = NULL;
Bartlomiej Zolnierkiewicz91432f42008-04-26 22:25:23 +0200524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Bartlomiej Zolnierkiewiczd224b622009-02-02 20:12:23 +0100526 ret = ide_host_register(host, &d, hws);
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200527 if (ret)
528 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 return 0;
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +0200531err_free:
532 ide_host_free(host);
533 if (d.dma_ops)
534 free_dma(ec->dma);
535 ecard_set_drvdata(ec, NULL);
536out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return ret;
538}
539
540static int __devinit
541icside_probe(struct expansion_card *ec, const struct ecard_id *id)
542{
543 struct icside_state *state;
544 void __iomem *idmem;
545 int ret;
546
547 ret = ecard_request_resources(ec);
548 if (ret)
549 goto out;
550
Mariusz Kozlowskicc60d8b2007-08-01 23:46:44 +0200551 state = kzalloc(sizeof(struct icside_state), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!state) {
553 ret = -ENOMEM;
554 goto release;
555 }
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 state->type = ICS_TYPE_NOTYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Russell King10bdaaa2007-05-10 18:40:51 +0100559 idmem = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (idmem) {
561 unsigned int type;
562
563 type = readb(idmem + ICS_IDENT_OFFSET) & 1;
564 type |= (readb(idmem + ICS_IDENT_OFFSET + 4) & 1) << 1;
565 type |= (readb(idmem + ICS_IDENT_OFFSET + 8) & 1) << 2;
566 type |= (readb(idmem + ICS_IDENT_OFFSET + 12) & 1) << 3;
Russell King10bdaaa2007-05-10 18:40:51 +0100567 ecardm_iounmap(ec, idmem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 state->type = type;
570 }
571
572 switch (state->type) {
573 case ICS_TYPE_A3IN:
574 dev_warn(&ec->dev, "A3IN unsupported\n");
575 ret = -ENODEV;
576 break;
577
578 case ICS_TYPE_A3USER:
579 dev_warn(&ec->dev, "A3USER unsupported\n");
580 ret = -ENODEV;
581 break;
582
583 case ICS_TYPE_V5:
584 ret = icside_register_v5(state, ec);
585 break;
586
587 case ICS_TYPE_V6:
588 ret = icside_register_v6(state, ec);
589 break;
590
591 default:
592 dev_warn(&ec->dev, "unknown interface type\n");
593 ret = -ENODEV;
594 break;
595 }
596
Bartlomiej Zolnierkiewicz26839f02008-07-16 20:33:40 +0200597 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 kfree(state);
601 release:
602 ecard_release_resources(ec);
603 out:
604 return ret;
605}
606
607static void __devexit icside_remove(struct expansion_card *ec)
608{
609 struct icside_state *state = ecard_get_drvdata(ec);
610
611 switch (state->type) {
612 case ICS_TYPE_V5:
613 /* FIXME: tell IDE to stop using the interface */
614
615 /* Disable interrupts */
616 icside_irqdisable_arcin_v5(ec, 0);
617 break;
618
619 case ICS_TYPE_V6:
620 /* FIXME: tell IDE to stop using the interface */
621 if (ec->dma != NO_DMA)
622 free_dma(ec->dma);
623
624 /* Disable interrupts */
625 icside_irqdisable_arcin_v6(ec, 0);
626
627 /* Reset the ROM pointer/EASI selection */
628 writeb(0, state->ioc_base);
629 break;
630 }
631
632 ecard_set_drvdata(ec, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 kfree(state);
635 ecard_release_resources(ec);
636}
637
638static void icside_shutdown(struct expansion_card *ec)
639{
640 struct icside_state *state = ecard_get_drvdata(ec);
641 unsigned long flags;
642
643 /*
644 * Disable interrupts from this card. We need to do
645 * this before disabling EASI since we may be accessing
646 * this register via that region.
647 */
648 local_irq_save(flags);
649 ec->ops->irqdisable(ec, 0);
650 local_irq_restore(flags);
651
652 /*
653 * Reset the ROM pointer so that we can read the ROM
654 * after a soft reboot. This also disables access to
655 * the IDE taskfile via the EASI region.
656 */
657 if (state->ioc_base)
658 writeb(0, state->ioc_base);
659}
660
661static const struct ecard_id icside_ids[] = {
662 { MANU_ICS, PROD_ICS_IDE },
663 { MANU_ICS2, PROD_ICS2_IDE },
664 { 0xffff, 0xffff }
665};
666
667static struct ecard_driver icside_driver = {
668 .probe = icside_probe,
669 .remove = __devexit_p(icside_remove),
670 .shutdown = icside_shutdown,
671 .id_table = icside_ids,
672 .drv = {
673 .name = "icside",
674 },
675};
676
677static int __init icside_init(void)
678{
679 return ecard_register_driver(&icside_driver);
680}
681
Al Viro1137fb62008-10-26 05:40:26 +0000682static void __exit icside_exit(void)
Bartlomiej Zolnierkiewicz8e27cb12008-07-24 22:53:27 +0200683{
Al Viro1137fb62008-10-26 05:40:26 +0000684 ecard_remove_driver(&icside_driver);
Bartlomiej Zolnierkiewicz8e27cb12008-07-24 22:53:27 +0200685}
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
688MODULE_LICENSE("GPL");
689MODULE_DESCRIPTION("ICS IDE driver");
690
691module_init(icside_init);
Bartlomiej Zolnierkiewicz8e27cb12008-07-24 22:53:27 +0200692module_exit(icside_exit);