| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 1 | #include <linux/types.h> | 
 | 2 | #include <linux/kernel.h> | 
| Paul Gortmaker | 38789fd | 2011-07-17 15:33:58 -0400 | [diff] [blame] | 3 | #include <linux/export.h> | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 4 | #include <linux/ide.h> | 
 | 5 | #include <linux/scatterlist.h> | 
 | 6 | #include <linux/dma-mapping.h> | 
 | 7 | #include <linux/io.h> | 
 | 8 |  | 
 | 9 | /** | 
 | 10 |  *	config_drive_for_dma	-	attempt to activate IDE DMA | 
 | 11 |  *	@drive: the drive to place in DMA mode | 
 | 12 |  * | 
 | 13 |  *	If the drive supports at least mode 2 DMA or UDMA of any kind | 
 | 14 |  *	then attempt to place it into DMA mode. Drives that are known to | 
 | 15 |  *	support DMA but predate the DMA properties or that are known | 
 | 16 |  *	to have DMA handling bugs are also set up appropriately based | 
 | 17 |  *	on the good/bad drive lists. | 
 | 18 |  */ | 
 | 19 |  | 
 | 20 | int config_drive_for_dma(ide_drive_t *drive) | 
 | 21 | { | 
 | 22 | 	ide_hwif_t *hwif = drive->hwif; | 
 | 23 | 	u16 *id = drive->id; | 
 | 24 |  | 
 | 25 | 	if (drive->media != ide_disk) { | 
 | 26 | 		if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA) | 
 | 27 | 			return 0; | 
 | 28 | 	} | 
 | 29 |  | 
 | 30 | 	/* | 
 | 31 | 	 * Enable DMA on any drive that has | 
 | 32 | 	 * UltraDMA (mode 0/1/2/3/4/5/6) enabled | 
 | 33 | 	 */ | 
 | 34 | 	if ((id[ATA_ID_FIELD_VALID] & 4) && | 
 | 35 | 	    ((id[ATA_ID_UDMA_MODES] >> 8) & 0x7f)) | 
 | 36 | 		return 1; | 
 | 37 |  | 
 | 38 | 	/* | 
 | 39 | 	 * Enable DMA on any drive that has mode2 DMA | 
 | 40 | 	 * (multi or single) enabled | 
 | 41 | 	 */ | 
| Sergei Shtylyov | 8d64fcd | 2009-03-31 20:15:27 +0200 | [diff] [blame] | 42 | 	if ((id[ATA_ID_MWDMA_MODES] & 0x404) == 0x404 || | 
 | 43 | 	    (id[ATA_ID_SWDMA_MODES] & 0x404) == 0x404) | 
 | 44 | 		return 1; | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 45 |  | 
 | 46 | 	/* Consult the list of known "good" drives */ | 
 | 47 | 	if (ide_dma_good_drive(drive)) | 
 | 48 | 		return 1; | 
 | 49 |  | 
 | 50 | 	return 0; | 
 | 51 | } | 
 | 52 |  | 
| Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 53 | u8 ide_dma_sff_read_status(ide_hwif_t *hwif) | 
 | 54 | { | 
 | 55 | 	unsigned long addr = hwif->dma_base + ATA_DMA_STATUS; | 
 | 56 |  | 
 | 57 | 	if (hwif->host_flags & IDE_HFLAG_MMIO) | 
 | 58 | 		return readb((void __iomem *)addr); | 
 | 59 | 	else | 
 | 60 | 		return inb(addr); | 
 | 61 | } | 
 | 62 | EXPORT_SYMBOL_GPL(ide_dma_sff_read_status); | 
 | 63 |  | 
| Sergei Shtylyov | 0578963 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 64 | static void ide_dma_sff_write_status(ide_hwif_t *hwif, u8 val) | 
 | 65 | { | 
 | 66 | 	unsigned long addr = hwif->dma_base + ATA_DMA_STATUS; | 
 | 67 |  | 
 | 68 | 	if (hwif->host_flags & IDE_HFLAG_MMIO) | 
 | 69 | 		writeb(val, (void __iomem *)addr); | 
 | 70 | 	else | 
 | 71 | 		outb(val, addr); | 
 | 72 | } | 
 | 73 |  | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 74 | /** | 
 | 75 |  *	ide_dma_host_set	-	Enable/disable DMA on a host | 
 | 76 |  *	@drive: drive to control | 
 | 77 |  * | 
 | 78 |  *	Enable/disable DMA on an IDE controller following generic | 
 | 79 |  *	bus-mastering IDE controller behaviour. | 
 | 80 |  */ | 
 | 81 |  | 
 | 82 | void ide_dma_host_set(ide_drive_t *drive, int on) | 
 | 83 | { | 
 | 84 | 	ide_hwif_t *hwif = drive->hwif; | 
 | 85 | 	u8 unit = drive->dn & 1; | 
| Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 86 | 	u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 87 |  | 
 | 88 | 	if (on) | 
 | 89 | 		dma_stat |= (1 << (5 + unit)); | 
 | 90 | 	else | 
 | 91 | 		dma_stat &= ~(1 << (5 + unit)); | 
 | 92 |  | 
| Sergei Shtylyov | 0578963 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 93 | 	ide_dma_sff_write_status(hwif, dma_stat); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 94 | } | 
 | 95 | EXPORT_SYMBOL_GPL(ide_dma_host_set); | 
 | 96 |  | 
 | 97 | /** | 
 | 98 |  *	ide_build_dmatable	-	build IDE DMA table | 
 | 99 |  * | 
 | 100 |  *	ide_build_dmatable() prepares a dma request. We map the command | 
 | 101 |  *	to get the pci bus addresses of the buffers and then build up | 
 | 102 |  *	the PRD table that the IDE layer wants to be fed. | 
 | 103 |  * | 
 | 104 |  *	Most chipsets correctly interpret a length of 0x0000 as 64KB, | 
 | 105 |  *	but at least one (e.g. CS5530) misinterprets it as zero (!). | 
 | 106 |  *	So we break the 64KB entry into two 32KB entries instead. | 
 | 107 |  * | 
 | 108 |  *	Returns the number of built PRD entries if all went okay, | 
 | 109 |  *	returns 0 otherwise. | 
 | 110 |  * | 
 | 111 |  *	May also be invoked from trm290.c | 
 | 112 |  */ | 
 | 113 |  | 
| Bartlomiej Zolnierkiewicz | 22981694 | 2009-03-27 12:46:46 +0100 | [diff] [blame] | 114 | int ide_build_dmatable(ide_drive_t *drive, struct ide_cmd *cmd) | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 115 | { | 
 | 116 | 	ide_hwif_t *hwif = drive->hwif; | 
 | 117 | 	__le32 *table = (__le32 *)hwif->dmatable_cpu; | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 118 | 	unsigned int count = 0; | 
 | 119 | 	int i; | 
 | 120 | 	struct scatterlist *sg; | 
| Bartlomiej Zolnierkiewicz | 1f66019 | 2008-12-29 20:27:34 +0100 | [diff] [blame] | 121 | 	u8 is_trm290 = !!(hwif->host_flags & IDE_HFLAG_TRM290); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 122 |  | 
| Bartlomiej Zolnierkiewicz | 22981694 | 2009-03-27 12:46:46 +0100 | [diff] [blame] | 123 | 	for_each_sg(hwif->sg_table, sg, cmd->sg_nents, i) { | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 124 | 		u32 cur_addr, cur_len, xcount, bcount; | 
 | 125 |  | 
 | 126 | 		cur_addr = sg_dma_address(sg); | 
 | 127 | 		cur_len = sg_dma_len(sg); | 
 | 128 |  | 
 | 129 | 		/* | 
 | 130 | 		 * Fill in the dma table, without crossing any 64kB boundaries. | 
 | 131 | 		 * Most hardware requires 16-bit alignment of all blocks, | 
 | 132 | 		 * but the trm290 requires 32-bit alignment. | 
 | 133 | 		 */ | 
 | 134 |  | 
 | 135 | 		while (cur_len) { | 
 | 136 | 			if (count++ >= PRD_ENTRIES) | 
 | 137 | 				goto use_pio_instead; | 
 | 138 |  | 
 | 139 | 			bcount = 0x10000 - (cur_addr & 0xffff); | 
 | 140 | 			if (bcount > cur_len) | 
 | 141 | 				bcount = cur_len; | 
 | 142 | 			*table++ = cpu_to_le32(cur_addr); | 
 | 143 | 			xcount = bcount & 0xffff; | 
 | 144 | 			if (is_trm290) | 
 | 145 | 				xcount = ((xcount >> 2) - 1) << 16; | 
| Bartlomiej Zolnierkiewicz | 769b49c | 2008-10-17 18:09:18 +0200 | [diff] [blame] | 146 | 			else if (xcount == 0x0000) { | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 147 | 				if (count++ >= PRD_ENTRIES) | 
 | 148 | 					goto use_pio_instead; | 
 | 149 | 				*table++ = cpu_to_le32(0x8000); | 
 | 150 | 				*table++ = cpu_to_le32(cur_addr + 0x8000); | 
 | 151 | 				xcount = 0x8000; | 
 | 152 | 			} | 
 | 153 | 			*table++ = cpu_to_le32(xcount); | 
 | 154 | 			cur_addr += bcount; | 
 | 155 | 			cur_len -= bcount; | 
 | 156 | 		} | 
 | 157 | 	} | 
 | 158 |  | 
 | 159 | 	if (count) { | 
 | 160 | 		if (!is_trm290) | 
 | 161 | 			*--table |= cpu_to_le32(0x80000000); | 
 | 162 | 		return count; | 
 | 163 | 	} | 
 | 164 |  | 
 | 165 | use_pio_instead: | 
 | 166 | 	printk(KERN_ERR "%s: %s\n", drive->name, | 
 | 167 | 		count ? "DMA table too small" : "empty DMA table?"); | 
 | 168 |  | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 169 | 	return 0; /* revert to PIO for this request */ | 
 | 170 | } | 
 | 171 | EXPORT_SYMBOL_GPL(ide_build_dmatable); | 
 | 172 |  | 
 | 173 | /** | 
 | 174 |  *	ide_dma_setup	-	begin a DMA phase | 
 | 175 |  *	@drive: target device | 
| Bartlomiej Zolnierkiewicz | 22981694 | 2009-03-27 12:46:46 +0100 | [diff] [blame] | 176 |  *	@cmd: command | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 177 |  * | 
 | 178 |  *	Build an IDE DMA PRD (IDE speak for scatter gather table) | 
 | 179 |  *	and then set up the DMA transfer registers for a device | 
 | 180 |  *	that follows generic IDE PCI DMA behaviour. Controllers can | 
 | 181 |  *	override this function if they need to | 
 | 182 |  * | 
 | 183 |  *	Returns 0 on success. If a PIO fallback is required then 1 | 
 | 184 |  *	is returned. | 
 | 185 |  */ | 
 | 186 |  | 
| Bartlomiej Zolnierkiewicz | 22981694 | 2009-03-27 12:46:46 +0100 | [diff] [blame] | 187 | int ide_dma_setup(ide_drive_t *drive, struct ide_cmd *cmd) | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 188 | { | 
 | 189 | 	ide_hwif_t *hwif = drive->hwif; | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 190 | 	u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0; | 
| Bartlomiej Zolnierkiewicz | 22981694 | 2009-03-27 12:46:46 +0100 | [diff] [blame] | 191 | 	u8 rw = (cmd->tf_flags & IDE_TFLAG_WRITE) ? 0 : ATA_DMA_WR; | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 192 | 	u8 dma_stat; | 
 | 193 |  | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 194 | 	/* fall back to pio! */ | 
| Bartlomiej Zolnierkiewicz | 22981694 | 2009-03-27 12:46:46 +0100 | [diff] [blame] | 195 | 	if (ide_build_dmatable(drive, cmd) == 0) { | 
 | 196 | 		ide_map_sg(drive, cmd); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 197 | 		return 1; | 
 | 198 | 	} | 
 | 199 |  | 
 | 200 | 	/* PRD table */ | 
| Sergei Shtylyov | 0578963 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 201 | 	if (mmio) | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 202 | 		writel(hwif->dmatable_dma, | 
 | 203 | 		       (void __iomem *)(hwif->dma_base + ATA_DMA_TABLE_OFS)); | 
 | 204 | 	else | 
 | 205 | 		outl(hwif->dmatable_dma, hwif->dma_base + ATA_DMA_TABLE_OFS); | 
 | 206 |  | 
 | 207 | 	/* specify r/w */ | 
 | 208 | 	if (mmio) | 
| Bartlomiej Zolnierkiewicz | 22981694 | 2009-03-27 12:46:46 +0100 | [diff] [blame] | 209 | 		writeb(rw, (void __iomem *)(hwif->dma_base + ATA_DMA_CMD)); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 210 | 	else | 
| Bartlomiej Zolnierkiewicz | 22981694 | 2009-03-27 12:46:46 +0100 | [diff] [blame] | 211 | 		outb(rw, hwif->dma_base + ATA_DMA_CMD); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 212 |  | 
 | 213 | 	/* read DMA status for INTR & ERROR flags */ | 
| Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 214 | 	dma_stat = hwif->dma_ops->dma_sff_read_status(hwif); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 215 |  | 
 | 216 | 	/* clear INTR & ERROR flags */ | 
| Sergei Shtylyov | 0578963 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 217 | 	ide_dma_sff_write_status(hwif, dma_stat | ATA_DMA_ERR | ATA_DMA_INTR); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 218 |  | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 219 | 	return 0; | 
 | 220 | } | 
 | 221 | EXPORT_SYMBOL_GPL(ide_dma_setup); | 
 | 222 |  | 
 | 223 | /** | 
| Bartlomiej Zolnierkiewicz | 22117d6 | 2009-03-27 12:46:47 +0100 | [diff] [blame] | 224 |  *	ide_dma_sff_timer_expiry	-	handle a DMA timeout | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 225 |  *	@drive: Drive that timed out | 
 | 226 |  * | 
 | 227 |  *	An IDE DMA transfer timed out. In the event of an error we ask | 
 | 228 |  *	the driver to resolve the problem, if a DMA transfer is still | 
 | 229 |  *	in progress we continue to wait (arguably we need to add a | 
 | 230 |  *	secondary 'I don't care what the drive thinks' timeout here) | 
 | 231 |  *	Finally if we have an interrupt we let it complete the I/O. | 
 | 232 |  *	But only one time - we clear expiry and if it's still not | 
 | 233 |  *	completed after WAIT_CMD, we error and retry in PIO. | 
 | 234 |  *	This can occur if an interrupt is lost or due to hang or bugs. | 
 | 235 |  */ | 
 | 236 |  | 
| Bartlomiej Zolnierkiewicz | 22117d6 | 2009-03-27 12:46:47 +0100 | [diff] [blame] | 237 | int ide_dma_sff_timer_expiry(ide_drive_t *drive) | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 238 | { | 
 | 239 | 	ide_hwif_t *hwif = drive->hwif; | 
| Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 240 | 	u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 241 |  | 
 | 242 | 	printk(KERN_WARNING "%s: %s: DMA status (0x%02x)\n", | 
 | 243 | 		drive->name, __func__, dma_stat); | 
 | 244 |  | 
 | 245 | 	if ((dma_stat & 0x18) == 0x18)	/* BUSY Stupid Early Timer !! */ | 
 | 246 | 		return WAIT_CMD; | 
 | 247 |  | 
| Bartlomiej Zolnierkiewicz | b65fac3 | 2009-01-06 17:20:50 +0100 | [diff] [blame] | 248 | 	hwif->expiry = NULL;	/* one free ride for now */ | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 249 |  | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 250 | 	if (dma_stat & ATA_DMA_ERR)	/* ERROR */ | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 251 | 		return -1; | 
 | 252 |  | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 253 | 	if (dma_stat & ATA_DMA_ACTIVE)	/* DMAing */ | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 254 | 		return WAIT_CMD; | 
 | 255 |  | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 256 | 	if (dma_stat & ATA_DMA_INTR)	/* Got an Interrupt */ | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 257 | 		return WAIT_CMD; | 
 | 258 |  | 
 | 259 | 	return 0;	/* Status is unknown -- reset the bus */ | 
 | 260 | } | 
| Bartlomiej Zolnierkiewicz | 22117d6 | 2009-03-27 12:46:47 +0100 | [diff] [blame] | 261 | EXPORT_SYMBOL_GPL(ide_dma_sff_timer_expiry); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 262 |  | 
 | 263 | void ide_dma_start(ide_drive_t *drive) | 
 | 264 | { | 
 | 265 | 	ide_hwif_t *hwif = drive->hwif; | 
 | 266 | 	u8 dma_cmd; | 
 | 267 |  | 
 | 268 | 	/* Note that this is done *after* the cmd has | 
 | 269 | 	 * been issued to the drive, as per the BM-IDE spec. | 
 | 270 | 	 * The Promise Ultra33 doesn't work correctly when | 
 | 271 | 	 * we do this part before issuing the drive cmd. | 
 | 272 | 	 */ | 
 | 273 | 	if (hwif->host_flags & IDE_HFLAG_MMIO) { | 
 | 274 | 		dma_cmd = readb((void __iomem *)(hwif->dma_base + ATA_DMA_CMD)); | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 275 | 		writeb(dma_cmd | ATA_DMA_START, | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 276 | 		       (void __iomem *)(hwif->dma_base + ATA_DMA_CMD)); | 
 | 277 | 	} else { | 
 | 278 | 		dma_cmd = inb(hwif->dma_base + ATA_DMA_CMD); | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 279 | 		outb(dma_cmd | ATA_DMA_START, hwif->dma_base + ATA_DMA_CMD); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 280 | 	} | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 281 | } | 
 | 282 | EXPORT_SYMBOL_GPL(ide_dma_start); | 
 | 283 |  | 
 | 284 | /* returns 1 on error, 0 otherwise */ | 
 | 285 | int ide_dma_end(ide_drive_t *drive) | 
 | 286 | { | 
 | 287 | 	ide_hwif_t *hwif = drive->hwif; | 
| Grant Grundler | edafcf7 | 2009-04-08 14:12:49 +0200 | [diff] [blame] | 288 | 	u8 dma_stat = 0, dma_cmd = 0; | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 289 |  | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 290 | 	/* stop DMA */ | 
| Sergei Shtylyov | 0578963 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 291 | 	if (hwif->host_flags & IDE_HFLAG_MMIO) { | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 292 | 		dma_cmd = readb((void __iomem *)(hwif->dma_base + ATA_DMA_CMD)); | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 293 | 		writeb(dma_cmd & ~ATA_DMA_START, | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 294 | 		       (void __iomem *)(hwif->dma_base + ATA_DMA_CMD)); | 
 | 295 | 	} else { | 
 | 296 | 		dma_cmd = inb(hwif->dma_base + ATA_DMA_CMD); | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 297 | 		outb(dma_cmd & ~ATA_DMA_START, hwif->dma_base + ATA_DMA_CMD); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 298 | 	} | 
 | 299 |  | 
 | 300 | 	/* get DMA status */ | 
| Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 301 | 	dma_stat = hwif->dma_ops->dma_sff_read_status(hwif); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 302 |  | 
| Sergei Shtylyov | 0578963 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 303 | 	/* clear INTR & ERROR bits */ | 
 | 304 | 	ide_dma_sff_write_status(hwif, dma_stat | ATA_DMA_ERR | ATA_DMA_INTR); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 305 |  | 
| Grant Grundler | edafcf7 | 2009-04-08 14:12:49 +0200 | [diff] [blame] | 306 | #define CHECK_DMA_MASK (ATA_DMA_ACTIVE | ATA_DMA_ERR | ATA_DMA_INTR) | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 307 |  | 
 | 308 | 	/* verify good DMA status */ | 
| Grant Grundler | edafcf7 | 2009-04-08 14:12:49 +0200 | [diff] [blame] | 309 | 	if ((dma_stat & CHECK_DMA_MASK) != ATA_DMA_INTR) | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 310 | 		return 0x10 | dma_stat; | 
 | 311 | 	return 0; | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 312 | } | 
 | 313 | EXPORT_SYMBOL_GPL(ide_dma_end); | 
 | 314 |  | 
 | 315 | /* returns 1 if dma irq issued, 0 otherwise */ | 
 | 316 | int ide_dma_test_irq(ide_drive_t *drive) | 
 | 317 | { | 
 | 318 | 	ide_hwif_t *hwif = drive->hwif; | 
| Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 319 | 	u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif); | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 320 |  | 
| Bartlomiej Zolnierkiewicz | 1d35364 | 2008-12-29 20:27:37 +0100 | [diff] [blame] | 321 | 	return (dma_stat & ATA_DMA_INTR) ? 1 : 0; | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 322 | } | 
 | 323 | EXPORT_SYMBOL_GPL(ide_dma_test_irq); | 
 | 324 |  | 
 | 325 | const struct ide_dma_ops sff_dma_ops = { | 
 | 326 | 	.dma_host_set		= ide_dma_host_set, | 
 | 327 | 	.dma_setup		= ide_dma_setup, | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 328 | 	.dma_start		= ide_dma_start, | 
 | 329 | 	.dma_end		= ide_dma_end, | 
 | 330 | 	.dma_test_irq		= ide_dma_test_irq, | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 331 | 	.dma_lost_irq		= ide_dma_lost_irq, | 
| Bartlomiej Zolnierkiewicz | 35c9b4d | 2009-03-31 20:15:19 +0200 | [diff] [blame] | 332 | 	.dma_timer_expiry	= ide_dma_sff_timer_expiry, | 
| Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 333 | 	.dma_sff_read_status	= ide_dma_sff_read_status, | 
| Bartlomiej Zolnierkiewicz | 2dbe7e9 | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 334 | }; | 
 | 335 | EXPORT_SYMBOL_GPL(sff_dma_ops); |