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