blob: 832c8ccd0e8056e79b72016751c5e8a4a6d1d6f2 [file] [log] [blame]
Russell King73b6a2b2007-05-03 09:55:52 +01001#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/init.h>
4#include <linux/blkdev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09005#include <linux/gfp.h>
Russell King73b6a2b2007-05-03 09:55:52 +01006#include <scsi/scsi_host.h>
7#include <linux/ata.h>
8#include <linux/libata.h>
9
10#include <asm/dma.h>
11#include <asm/ecard.h>
12
13#define DRV_NAME "pata_icside"
14
15#define ICS_IDENT_OFFSET 0x2280
16
17#define ICS_ARCIN_V5_INTRSTAT 0x0000
18#define ICS_ARCIN_V5_INTROFFSET 0x0004
19
20#define ICS_ARCIN_V6_INTROFFSET_1 0x2200
21#define ICS_ARCIN_V6_INTRSTAT_1 0x2290
22#define ICS_ARCIN_V6_INTROFFSET_2 0x3200
23#define ICS_ARCIN_V6_INTRSTAT_2 0x3290
24
25struct portinfo {
26 unsigned int dataoffset;
27 unsigned int ctrloffset;
28 unsigned int stepping;
29};
30
31static const struct portinfo pata_icside_portinfo_v5 = {
32 .dataoffset = 0x2800,
33 .ctrloffset = 0x2b80,
34 .stepping = 6,
35};
36
37static const struct portinfo pata_icside_portinfo_v6_1 = {
38 .dataoffset = 0x2000,
39 .ctrloffset = 0x2380,
40 .stepping = 6,
41};
42
43static const struct portinfo pata_icside_portinfo_v6_2 = {
44 .dataoffset = 0x3000,
45 .ctrloffset = 0x3380,
46 .stepping = 6,
47};
48
Russell King73b6a2b2007-05-03 09:55:52 +010049struct pata_icside_state {
50 void __iomem *irq_port;
51 void __iomem *ioc_base;
52 unsigned int type;
53 unsigned int dma;
54 struct {
55 u8 port_sel;
56 u8 disabled;
57 unsigned int speed[ATA_MAX_DEVICES];
58 } port[2];
Russell King73b6a2b2007-05-03 09:55:52 +010059};
60
Russell Kingf95637d2007-05-10 19:32:36 +010061struct pata_icside_info {
62 struct pata_icside_state *state;
63 struct expansion_card *ec;
64 void __iomem *base;
65 void __iomem *irqaddr;
66 unsigned int irqmask;
67 const expansioncard_ops_t *irqops;
68 unsigned int mwdma_mask;
69 unsigned int nr_ports;
70 const struct portinfo *port[2];
Tejun Heocbcdd872007-08-18 13:14:55 +090071 unsigned long raw_base;
72 unsigned long raw_ioc_base;
Russell Kingf95637d2007-05-10 19:32:36 +010073};
74
Russell King73b6a2b2007-05-03 09:55:52 +010075#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: pata_icside_irqenable_arcin_v5 (struct expansion_card *ec, int irqnr)
83 * Purpose : enable interrupts from card
84 */
85static void pata_icside_irqenable_arcin_v5 (struct expansion_card *ec, int irqnr)
86{
87 struct pata_icside_state *state = ec->irq_data;
88
89 writeb(0, state->irq_port + ICS_ARCIN_V5_INTROFFSET);
90}
91
92/* Prototype: pata_icside_irqdisable_arcin_v5 (struct expansion_card *ec, int irqnr)
93 * Purpose : disable interrupts from card
94 */
95static void pata_icside_irqdisable_arcin_v5 (struct expansion_card *ec, int irqnr)
96{
97 struct pata_icside_state *state = ec->irq_data;
98
99 readb(state->irq_port + ICS_ARCIN_V5_INTROFFSET);
100}
101
102static const expansioncard_ops_t pata_icside_ops_arcin_v5 = {
103 .irqenable = pata_icside_irqenable_arcin_v5,
104 .irqdisable = pata_icside_irqdisable_arcin_v5,
105};
106
107
108/* ---------------- Version 6 PCB Support Functions --------------------- */
109/* Prototype: pata_icside_irqenable_arcin_v6 (struct expansion_card *ec, int irqnr)
110 * Purpose : enable interrupts from card
111 */
112static void pata_icside_irqenable_arcin_v6 (struct expansion_card *ec, int irqnr)
113{
114 struct pata_icside_state *state = ec->irq_data;
115 void __iomem *base = state->irq_port;
116
117 if (!state->port[0].disabled)
118 writeb(0, base + ICS_ARCIN_V6_INTROFFSET_1);
119 if (!state->port[1].disabled)
120 writeb(0, base + ICS_ARCIN_V6_INTROFFSET_2);
121}
122
123/* Prototype: pata_icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
124 * Purpose : disable interrupts from card
125 */
126static void pata_icside_irqdisable_arcin_v6 (struct expansion_card *ec, int irqnr)
127{
128 struct pata_icside_state *state = ec->irq_data;
129
130 readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_1);
131 readb(state->irq_port + ICS_ARCIN_V6_INTROFFSET_2);
132}
133
134/* Prototype: pata_icside_irqprobe(struct expansion_card *ec)
135 * Purpose : detect an active interrupt from card
136 */
137static int pata_icside_irqpending_arcin_v6(struct expansion_card *ec)
138{
139 struct pata_icside_state *state = ec->irq_data;
140
141 return readb(state->irq_port + ICS_ARCIN_V6_INTRSTAT_1) & 1 ||
142 readb(state->irq_port + ICS_ARCIN_V6_INTRSTAT_2) & 1;
143}
144
145static const expansioncard_ops_t pata_icside_ops_arcin_v6 = {
146 .irqenable = pata_icside_irqenable_arcin_v6,
147 .irqdisable = pata_icside_irqdisable_arcin_v6,
148 .irqpending = pata_icside_irqpending_arcin_v6,
149};
150
151
152/*
153 * SG-DMA support.
154 *
155 * Similar to the BM-DMA, but we use the RiscPCs IOMD DMA controllers.
156 * There is only one DMA controller per card, which means that only
157 * one drive can be accessed at one time. NOTE! We do not enforce that
158 * here, but we rely on the main IDE driver spotting that both
159 * interfaces use the same IRQ, which should guarantee this.
160 */
161
162/*
163 * Configure the IOMD to give the appropriate timings for the transfer
164 * mode being requested. We take the advice of the ATA standards, and
165 * calculate the cycle time based on the transfer mode, and the EIDE
166 * MW DMA specs that the drive provides in the IDENTIFY command.
167 *
168 * We have the following IOMD DMA modes to choose from:
169 *
170 * Type Active Recovery Cycle
171 * A 250 (250) 312 (550) 562 (800)
172 * B 187 (200) 250 (550) 437 (750)
173 * C 125 (125) 125 (375) 250 (500)
174 * D 62 (50) 125 (375) 187 (425)
175 *
176 * (figures in brackets are actual measured timings on DIOR/DIOW)
177 *
178 * However, we also need to take care of the read/write active and
179 * recovery timings:
180 *
181 * Read Write
182 * Mode Active -- Recovery -- Cycle IOMD type
183 * MW0 215 50 215 480 A
184 * MW1 80 50 50 150 C
185 * MW2 70 25 25 120 C
186 */
187static void pata_icside_set_dmamode(struct ata_port *ap, struct ata_device *adev)
188{
189 struct pata_icside_state *state = ap->host->private_data;
190 struct ata_timing t;
191 unsigned int cycle;
192 char iomd_type;
193
194 /*
195 * DMA is based on a 16MHz clock
196 */
197 if (ata_timing_compute(adev, adev->dma_mode, &t, 1000, 1))
198 return;
199
200 /*
201 * Choose the IOMD cycle timing which ensure that the interface
202 * satisfies the measured active, recovery and cycle times.
203 */
204 if (t.active <= 50 && t.recover <= 375 && t.cycle <= 425)
205 iomd_type = 'D', cycle = 187;
206 else if (t.active <= 125 && t.recover <= 375 && t.cycle <= 500)
207 iomd_type = 'C', cycle = 250;
208 else if (t.active <= 200 && t.recover <= 550 && t.cycle <= 750)
209 iomd_type = 'B', cycle = 437;
210 else
211 iomd_type = 'A', cycle = 562;
212
213 ata_dev_printk(adev, KERN_INFO, "timings: act %dns rec %dns cyc %dns (%c)\n",
214 t.active, t.recover, t.cycle, iomd_type);
215
216 state->port[ap->port_no].speed[adev->devno] = cycle;
217}
218
219static void pata_icside_bmdma_setup(struct ata_queued_cmd *qc)
220{
221 struct ata_port *ap = qc->ap;
222 struct pata_icside_state *state = ap->host->private_data;
Russell King73b6a2b2007-05-03 09:55:52 +0100223 unsigned int write = qc->tf.flags & ATA_TFLAG_WRITE;
224
225 /*
226 * We are simplex; BUG if we try to fiddle with DMA
227 * while it's active.
228 */
229 BUG_ON(dma_channel_active(state->dma));
230
231 /*
Russell King73b6a2b2007-05-03 09:55:52 +0100232 * Route the DMA signals to the correct interface
233 */
234 writeb(state->port[ap->port_no].port_sel, state->ioc_base);
235
236 set_dma_speed(state->dma, state->port[ap->port_no].speed[qc->dev->devno]);
Russell Kingf6718652008-12-08 19:25:28 +0000237 set_dma_sg(state->dma, qc->sg, qc->n_elem);
Russell King73b6a2b2007-05-03 09:55:52 +0100238 set_dma_mode(state->dma, write ? DMA_MODE_WRITE : DMA_MODE_READ);
239
240 /* issue r/w command */
Tejun Heo5682ed32008-04-07 22:47:16 +0900241 ap->ops->sff_exec_command(ap, &qc->tf);
Russell King73b6a2b2007-05-03 09:55:52 +0100242}
243
244static void pata_icside_bmdma_start(struct ata_queued_cmd *qc)
245{
246 struct ata_port *ap = qc->ap;
247 struct pata_icside_state *state = ap->host->private_data;
248
249 BUG_ON(dma_channel_active(state->dma));
250 enable_dma(state->dma);
251}
252
253static void pata_icside_bmdma_stop(struct ata_queued_cmd *qc)
254{
255 struct ata_port *ap = qc->ap;
256 struct pata_icside_state *state = ap->host->private_data;
257
258 disable_dma(state->dma);
259
260 /* see ata_bmdma_stop */
Alan Coxa57c1ba2008-05-29 22:10:58 +0100261 ata_sff_dma_pause(ap);
Russell King73b6a2b2007-05-03 09:55:52 +0100262}
263
264static u8 pata_icside_bmdma_status(struct ata_port *ap)
265{
266 struct pata_icside_state *state = ap->host->private_data;
267 void __iomem *irq_port;
268
269 irq_port = state->irq_port + (ap->port_no ? ICS_ARCIN_V6_INTRSTAT_2 :
270 ICS_ARCIN_V6_INTRSTAT_1);
271
272 return readb(irq_port) & 1 ? ATA_DMA_INTR : 0;
273}
274
Russell Kingf95637d2007-05-10 19:32:36 +0100275static int icside_dma_init(struct pata_icside_info *info)
Russell King73b6a2b2007-05-03 09:55:52 +0100276{
Russell Kingf95637d2007-05-10 19:32:36 +0100277 struct pata_icside_state *state = info->state;
278 struct expansion_card *ec = info->ec;
Russell King73b6a2b2007-05-03 09:55:52 +0100279 int i;
280
281 for (i = 0; i < ATA_MAX_DEVICES; i++) {
282 state->port[0].speed[i] = 480;
283 state->port[1].speed[i] = 480;
284 }
285
286 if (ec->dma != NO_DMA && !request_dma(ec->dma, DRV_NAME)) {
287 state->dma = ec->dma;
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100288 info->mwdma_mask = ATA_MWDMA2;
Russell King73b6a2b2007-05-03 09:55:52 +0100289 }
290
291 return 0;
292}
293
294
Russell King73b6a2b2007-05-03 09:55:52 +0100295static struct scsi_host_template pata_icside_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900296 ATA_BASE_SHT(DRV_NAME),
Russell King5369bea2008-12-11 16:37:06 +0000297 .sg_tablesize = SCSI_MAX_SG_CHAIN_SEGMENTS,
298 .dma_boundary = IOMD_DMA_BOUNDARY,
Russell King73b6a2b2007-05-03 09:55:52 +0100299};
300
Al Viroc15fcaf2007-10-14 01:12:39 +0100301static void pata_icside_postreset(struct ata_link *link, unsigned int *classes)
Russell King73b6a2b2007-05-03 09:55:52 +0100302{
Al Viroc15fcaf2007-10-14 01:12:39 +0100303 struct ata_port *ap = link->ap;
Russell King73b6a2b2007-05-03 09:55:52 +0100304 struct pata_icside_state *state = ap->host->private_data;
305
Russell Kingeba84482007-08-06 16:10:54 +0100306 if (classes[0] != ATA_DEV_NONE || classes[1] != ATA_DEV_NONE)
Tejun Heo9363c382008-04-07 22:47:16 +0900307 return ata_sff_postreset(link, classes);
Russell King73b6a2b2007-05-03 09:55:52 +0100308
309 state->port[ap->port_no].disabled = 1;
310
311 if (state->type == ICS_TYPE_V6) {
312 /*
313 * Disable interrupts from this port, otherwise we
314 * receive spurious interrupts from the floating
315 * interrupt line.
316 */
317 void __iomem *irq_port = state->irq_port +
318 (ap->port_no ? ICS_ARCIN_V6_INTROFFSET_2 : ICS_ARCIN_V6_INTROFFSET_1);
319 readb(irq_port);
320 }
321}
322
Russell King73b6a2b2007-05-03 09:55:52 +0100323static struct ata_port_operations pata_icside_port_ops = {
Tejun Heo8930ff22010-05-10 21:41:33 +0200324 .inherits = &ata_bmdma_port_ops,
Russell King73b6a2b2007-05-03 09:55:52 +0100325 /* no need to build any PRD tables for DMA */
326 .qc_prep = ata_noop_qc_prep,
Tejun Heo5682ed32008-04-07 22:47:16 +0900327 .sff_data_xfer = ata_sff_data_xfer_noirq,
Tejun Heo029cfd62008-03-25 12:22:49 +0900328 .bmdma_setup = pata_icside_bmdma_setup,
329 .bmdma_start = pata_icside_bmdma_start,
Russell King73b6a2b2007-05-03 09:55:52 +0100330 .bmdma_stop = pata_icside_bmdma_stop,
331 .bmdma_status = pata_icside_bmdma_status,
Tejun Heo029cfd62008-03-25 12:22:49 +0900332
333 .cable_detect = ata_cable_40wire,
334 .set_dmamode = pata_icside_set_dmamode,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900335 .postreset = pata_icside_postreset,
Tejun Heo029cfd62008-03-25 12:22:49 +0900336 .post_internal_cmd = pata_icside_bmdma_stop,
Tejun Heo8930ff22010-05-10 21:41:33 +0200337
338 .mode_filter = ATA_OP_NULL, /* will be removed soon */
Russell King73b6a2b2007-05-03 09:55:52 +0100339};
340
Russell Kingf95637d2007-05-10 19:32:36 +0100341static void __devinit
Tejun Heocbcdd872007-08-18 13:14:55 +0900342pata_icside_setup_ioaddr(struct ata_port *ap, void __iomem *base,
Al Viroc15fcaf2007-10-14 01:12:39 +0100343 struct pata_icside_info *info,
344 const struct portinfo *port)
Russell King73b6a2b2007-05-03 09:55:52 +0100345{
Tejun Heocbcdd872007-08-18 13:14:55 +0900346 struct ata_ioports *ioaddr = &ap->ioaddr;
Al Viroc15fcaf2007-10-14 01:12:39 +0100347 void __iomem *cmd = base + port->dataoffset;
Russell King73b6a2b2007-05-03 09:55:52 +0100348
349 ioaddr->cmd_addr = cmd;
Al Viroc15fcaf2007-10-14 01:12:39 +0100350 ioaddr->data_addr = cmd + (ATA_REG_DATA << port->stepping);
351 ioaddr->error_addr = cmd + (ATA_REG_ERR << port->stepping);
352 ioaddr->feature_addr = cmd + (ATA_REG_FEATURE << port->stepping);
353 ioaddr->nsect_addr = cmd + (ATA_REG_NSECT << port->stepping);
354 ioaddr->lbal_addr = cmd + (ATA_REG_LBAL << port->stepping);
355 ioaddr->lbam_addr = cmd + (ATA_REG_LBAM << port->stepping);
356 ioaddr->lbah_addr = cmd + (ATA_REG_LBAH << port->stepping);
357 ioaddr->device_addr = cmd + (ATA_REG_DEVICE << port->stepping);
358 ioaddr->status_addr = cmd + (ATA_REG_STATUS << port->stepping);
359 ioaddr->command_addr = cmd + (ATA_REG_CMD << port->stepping);
Russell King73b6a2b2007-05-03 09:55:52 +0100360
Al Viroc15fcaf2007-10-14 01:12:39 +0100361 ioaddr->ctl_addr = base + port->ctrloffset;
Russell King73b6a2b2007-05-03 09:55:52 +0100362 ioaddr->altstatus_addr = ioaddr->ctl_addr;
Tejun Heocbcdd872007-08-18 13:14:55 +0900363
364 ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx",
Al Viroc15fcaf2007-10-14 01:12:39 +0100365 info->raw_base + port->dataoffset,
366 info->raw_base + port->ctrloffset);
Tejun Heocbcdd872007-08-18 13:14:55 +0900367
368 if (info->raw_ioc_base)
369 ata_port_desc(ap, "iocbase 0x%lx", info->raw_ioc_base);
Russell King73b6a2b2007-05-03 09:55:52 +0100370}
371
Russell Kingf95637d2007-05-10 19:32:36 +0100372static int __devinit pata_icside_register_v5(struct pata_icside_info *info)
Russell King73b6a2b2007-05-03 09:55:52 +0100373{
Russell Kingf95637d2007-05-10 19:32:36 +0100374 struct pata_icside_state *state = info->state;
Russell King73b6a2b2007-05-03 09:55:52 +0100375 void __iomem *base;
376
Russell King10bdaaa2007-05-10 18:40:51 +0100377 base = ecardm_iomap(info->ec, ECARD_RES_MEMC, 0, 0);
Russell King73b6a2b2007-05-03 09:55:52 +0100378 if (!base)
379 return -ENOMEM;
380
381 state->irq_port = base;
382
Russell Kingf95637d2007-05-10 19:32:36 +0100383 info->base = base;
384 info->irqaddr = base + ICS_ARCIN_V5_INTRSTAT;
385 info->irqmask = 1;
386 info->irqops = &pata_icside_ops_arcin_v5;
387 info->nr_ports = 1;
388 info->port[0] = &pata_icside_portinfo_v5;
Russell King73b6a2b2007-05-03 09:55:52 +0100389
Al Viroc15fcaf2007-10-14 01:12:39 +0100390 info->raw_base = ecard_resource_start(info->ec, ECARD_RES_MEMC);
Tejun Heocbcdd872007-08-18 13:14:55 +0900391
Russell King73b6a2b2007-05-03 09:55:52 +0100392 return 0;
393}
394
Russell Kingf95637d2007-05-10 19:32:36 +0100395static int __devinit pata_icside_register_v6(struct pata_icside_info *info)
Russell King73b6a2b2007-05-03 09:55:52 +0100396{
Russell Kingf95637d2007-05-10 19:32:36 +0100397 struct pata_icside_state *state = info->state;
398 struct expansion_card *ec = info->ec;
Russell King73b6a2b2007-05-03 09:55:52 +0100399 void __iomem *ioc_base, *easi_base;
400 unsigned int sel = 0;
Russell King73b6a2b2007-05-03 09:55:52 +0100401
Russell King10bdaaa2007-05-10 18:40:51 +0100402 ioc_base = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);
403 if (!ioc_base)
404 return -ENOMEM;
Russell King73b6a2b2007-05-03 09:55:52 +0100405
406 easi_base = ioc_base;
407
408 if (ecard_resource_flags(ec, ECARD_RES_EASI)) {
Russell King10bdaaa2007-05-10 18:40:51 +0100409 easi_base = ecardm_iomap(ec, ECARD_RES_EASI, 0, 0);
410 if (!easi_base)
411 return -ENOMEM;
Russell King73b6a2b2007-05-03 09:55:52 +0100412
413 /*
414 * Enable access to the EASI region.
415 */
416 sel = 1 << 5;
417 }
418
419 writeb(sel, ioc_base);
420
Russell King73b6a2b2007-05-03 09:55:52 +0100421 state->irq_port = easi_base;
422 state->ioc_base = ioc_base;
423 state->port[0].port_sel = sel;
424 state->port[1].port_sel = sel | 1;
425
Russell Kingf95637d2007-05-10 19:32:36 +0100426 info->base = easi_base;
427 info->irqops = &pata_icside_ops_arcin_v6;
428 info->nr_ports = 2;
429 info->port[0] = &pata_icside_portinfo_v6_1;
430 info->port[1] = &pata_icside_portinfo_v6_2;
Russell King73b6a2b2007-05-03 09:55:52 +0100431
Tejun Heocbcdd872007-08-18 13:14:55 +0900432 info->raw_base = ecard_resource_start(ec, ECARD_RES_EASI);
433 info->raw_ioc_base = ecard_resource_start(ec, ECARD_RES_IOCFAST);
434
Russell Kingf95637d2007-05-10 19:32:36 +0100435 return icside_dma_init(info);
436}
437
438static int __devinit pata_icside_add_ports(struct pata_icside_info *info)
439{
440 struct expansion_card *ec = info->ec;
441 struct ata_host *host;
442 int i;
443
444 if (info->irqaddr) {
445 ec->irqaddr = info->irqaddr;
446 ec->irqmask = info->irqmask;
447 }
448 if (info->irqops)
449 ecard_setirq(ec, info->irqops, info->state);
450
451 /*
452 * Be on the safe side - disable interrupts
453 */
454 ec->ops->irqdisable(ec, ec->irq);
455
456 host = ata_host_alloc(&ec->dev, info->nr_ports);
457 if (!host)
458 return -ENOMEM;
459
460 host->private_data = info->state;
461 host->flags = ATA_HOST_SIMPLEX;
462
463 for (i = 0; i < info->nr_ports; i++) {
464 struct ata_port *ap = host->ports[i];
465
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100466 ap->pio_mask = ATA_PIO4;
Russell Kingf95637d2007-05-10 19:32:36 +0100467 ap->mwdma_mask = info->mwdma_mask;
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400468 ap->flags |= ATA_FLAG_SLAVE_POSS;
Russell Kingf95637d2007-05-10 19:32:36 +0100469 ap->ops = &pata_icside_port_ops;
470
Al Viroc15fcaf2007-10-14 01:12:39 +0100471 pata_icside_setup_ioaddr(ap, info->base, info, info->port[i]);
Russell Kingf95637d2007-05-10 19:32:36 +0100472 }
473
Tejun Heo9363c382008-04-07 22:47:16 +0900474 return ata_host_activate(host, ec->irq, ata_sff_interrupt, 0,
Russell Kingf95637d2007-05-10 19:32:36 +0100475 &pata_icside_sht);
Russell King73b6a2b2007-05-03 09:55:52 +0100476}
477
478static int __devinit
479pata_icside_probe(struct expansion_card *ec, const struct ecard_id *id)
480{
481 struct pata_icside_state *state;
Russell Kingf95637d2007-05-10 19:32:36 +0100482 struct pata_icside_info info;
Russell King73b6a2b2007-05-03 09:55:52 +0100483 void __iomem *idmem;
484 int ret;
485
486 ret = ecard_request_resources(ec);
487 if (ret)
488 goto out;
489
Russell Kingf95637d2007-05-10 19:32:36 +0100490 state = devm_kzalloc(&ec->dev, sizeof(*state), GFP_KERNEL);
Russell King73b6a2b2007-05-03 09:55:52 +0100491 if (!state) {
492 ret = -ENOMEM;
493 goto release;
494 }
495
496 state->type = ICS_TYPE_NOTYPE;
497 state->dma = NO_DMA;
498
Russell King10bdaaa2007-05-10 18:40:51 +0100499 idmem = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);
Russell King73b6a2b2007-05-03 09:55:52 +0100500 if (idmem) {
501 unsigned int type;
502
503 type = readb(idmem + ICS_IDENT_OFFSET) & 1;
504 type |= (readb(idmem + ICS_IDENT_OFFSET + 4) & 1) << 1;
505 type |= (readb(idmem + ICS_IDENT_OFFSET + 8) & 1) << 2;
506 type |= (readb(idmem + ICS_IDENT_OFFSET + 12) & 1) << 3;
Russell King10bdaaa2007-05-10 18:40:51 +0100507 ecardm_iounmap(ec, idmem);
Russell King73b6a2b2007-05-03 09:55:52 +0100508
509 state->type = type;
510 }
511
Russell Kingf95637d2007-05-10 19:32:36 +0100512 memset(&info, 0, sizeof(info));
513 info.state = state;
514 info.ec = ec;
Russell King73b6a2b2007-05-03 09:55:52 +0100515
516 switch (state->type) {
517 case ICS_TYPE_A3IN:
518 dev_warn(&ec->dev, "A3IN unsupported\n");
519 ret = -ENODEV;
520 break;
521
522 case ICS_TYPE_A3USER:
523 dev_warn(&ec->dev, "A3USER unsupported\n");
524 ret = -ENODEV;
525 break;
526
527 case ICS_TYPE_V5:
Russell Kingf95637d2007-05-10 19:32:36 +0100528 ret = pata_icside_register_v5(&info);
Russell King73b6a2b2007-05-03 09:55:52 +0100529 break;
530
531 case ICS_TYPE_V6:
Russell Kingf95637d2007-05-10 19:32:36 +0100532 ret = pata_icside_register_v6(&info);
Russell King73b6a2b2007-05-03 09:55:52 +0100533 break;
534
535 default:
536 dev_warn(&ec->dev, "unknown interface type\n");
537 ret = -ENODEV;
538 break;
539 }
540
541 if (ret == 0)
Russell Kingf95637d2007-05-10 19:32:36 +0100542 ret = pata_icside_add_ports(&info);
Russell King73b6a2b2007-05-03 09:55:52 +0100543
544 if (ret == 0)
545 goto out;
546
Russell King73b6a2b2007-05-03 09:55:52 +0100547 release:
548 ecard_release_resources(ec);
549 out:
550 return ret;
551}
552
553static void pata_icside_shutdown(struct expansion_card *ec)
554{
555 struct ata_host *host = ecard_get_drvdata(ec);
556 unsigned long flags;
557
558 /*
559 * Disable interrupts from this card. We need to do
560 * this before disabling EASI since we may be accessing
561 * this register via that region.
562 */
563 local_irq_save(flags);
Russell Kingc7b87f32007-05-10 16:46:13 +0100564 ec->ops->irqdisable(ec, ec->irq);
Russell King73b6a2b2007-05-03 09:55:52 +0100565 local_irq_restore(flags);
566
567 /*
568 * Reset the ROM pointer so that we can read the ROM
569 * after a soft reboot. This also disables access to
570 * the IDE taskfile via the EASI region.
571 */
572 if (host) {
573 struct pata_icside_state *state = host->private_data;
574 if (state->ioc_base)
575 writeb(0, state->ioc_base);
576 }
577}
578
579static void __devexit pata_icside_remove(struct expansion_card *ec)
580{
581 struct ata_host *host = ecard_get_drvdata(ec);
582 struct pata_icside_state *state = host->private_data;
583
584 ata_host_detach(host);
585
586 pata_icside_shutdown(ec);
587
588 /*
589 * don't NULL out the drvdata - devres/libata wants it
590 * to free the ata_host structure.
591 */
Russell King73b6a2b2007-05-03 09:55:52 +0100592 if (state->dma != NO_DMA)
593 free_dma(state->dma);
Russell King73b6a2b2007-05-03 09:55:52 +0100594
Russell King73b6a2b2007-05-03 09:55:52 +0100595 ecard_release_resources(ec);
596}
597
598static const struct ecard_id pata_icside_ids[] = {
599 { MANU_ICS, PROD_ICS_IDE },
600 { MANU_ICS2, PROD_ICS2_IDE },
601 { 0xffff, 0xffff }
602};
603
604static struct ecard_driver pata_icside_driver = {
605 .probe = pata_icside_probe,
606 .remove = __devexit_p(pata_icside_remove),
607 .shutdown = pata_icside_shutdown,
608 .id_table = pata_icside_ids,
609 .drv = {
610 .name = DRV_NAME,
611 },
612};
613
614static int __init pata_icside_init(void)
615{
616 return ecard_register_driver(&pata_icside_driver);
617}
618
619static void __exit pata_icside_exit(void)
620{
621 ecard_remove_driver(&pata_icside_driver);
622}
623
624MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
625MODULE_LICENSE("GPL");
626MODULE_DESCRIPTION("ICS PATA driver");
627
628module_init(pata_icside_init);
629module_exit(pata_icside_exit);