Merge tag '9p-3.10-bug-fix-1' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / ide / ide-dma.c
CommitLineData
1da177e4 1/*
204f47c5
BZ
2 * IDE DMA support (including IDE PCI BM-DMA).
3 *
59bca8cc
BZ
4 * Copyright (C) 1995-1998 Mark Lord
5 * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
6 * Copyright (C) 2004, 2007 Bartlomiej Zolnierkiewicz
58f189fc 7 *
1da177e4 8 * May be copied or modified under the terms of the GNU General Public License
204f47c5
BZ
9 *
10 * DMA is supported for all IDE devices (disk drives, cdroms, tapes, floppies).
1da177e4
LT
11 */
12
13/*
14 * Special Thanks to Mark for his Six years of work.
1da177e4
LT
15 */
16
17/*
1da177e4
LT
18 * Thanks to "Christopher J. Reimer" <reimer@doe.carleton.ca> for
19 * fixing the problem with the BIOS on some Acer motherboards.
20 *
21 * Thanks to "Benoit Poulot-Cazajous" <poulot@chorus.fr> for testing
22 * "TX" chipset compatibility and for providing patches for the "TX" chipset.
23 *
24 * Thanks to Christian Brunner <chb@muc.de> for taking a good first crack
25 * at generic DMA -- his patches were referred to when preparing this code.
26 *
27 * Most importantly, thanks to Robert Bringman <rob@mars.trion.com>
28 * for supplying a Promise UDMA board & WD UDMA drive for this work!
1da177e4
LT
29 */
30
1da177e4 31#include <linux/types.h>
5a0e3ad6 32#include <linux/gfp.h>
1da177e4 33#include <linux/kernel.h>
38789fda 34#include <linux/export.h>
1da177e4 35#include <linux/ide.h>
1da177e4 36#include <linux/scatterlist.h>
5c05ff68 37#include <linux/dma-mapping.h>
1da177e4 38
db3f99ef 39static const struct drive_list_entry drive_whitelist[] = {
c2d3ce8c
JH
40 { "Micropolis 2112A" , NULL },
41 { "CONNER CTMA 4000" , NULL },
42 { "CONNER CTT8000-A" , NULL },
43 { "ST34342A" , NULL },
1da177e4
LT
44 { NULL , NULL }
45};
46
db3f99ef 47static const struct drive_list_entry drive_blacklist[] = {
c2d3ce8c
JH
48 { "WDC AC11000H" , NULL },
49 { "WDC AC22100H" , NULL },
50 { "WDC AC32500H" , NULL },
51 { "WDC AC33100H" , NULL },
52 { "WDC AC31600H" , NULL },
1da177e4
LT
53 { "WDC AC32100H" , "24.09P07" },
54 { "WDC AC23200L" , "21.10N21" },
c2d3ce8c
JH
55 { "Compaq CRD-8241B" , NULL },
56 { "CRD-8400B" , NULL },
57 { "CRD-8480B", NULL },
58 { "CRD-8482B", NULL },
59 { "CRD-84" , NULL },
60 { "SanDisk SDP3B" , NULL },
61 { "SanDisk SDP3B-64" , NULL },
62 { "SANYO CD-ROM CRD" , NULL },
63 { "HITACHI CDR-8" , NULL },
64 { "HITACHI CDR-8335" , NULL },
65 { "HITACHI CDR-8435" , NULL },
66 { "Toshiba CD-ROM XM-6202B" , NULL },
67 { "TOSHIBA CD-ROM XM-1702BC", NULL },
68 { "CD-532E-A" , NULL },
69 { "E-IDE CD-ROM CR-840", NULL },
70 { "CD-ROM Drive/F5A", NULL },
71 { "WPI CDD-820", NULL },
72 { "SAMSUNG CD-ROM SC-148C", NULL },
73 { "SAMSUNG CD-ROM SC", NULL },
74 { "ATAPI CD-ROM DRIVE 40X MAXIMUM", NULL },
75 { "_NEC DV5800A", NULL },
5a6248ca 76 { "SAMSUNG CD-ROM SN-124", "N001" },
c2d3ce8c 77 { "Seagate STT20000A", NULL },
b0bc65b9 78 { "CD-ROM CDR_U200", "1.09" },
1da177e4
LT
79 { NULL , NULL }
80
81};
82
1da177e4
LT
83/**
84 * ide_dma_intr - IDE DMA interrupt handler
85 * @drive: the drive the interrupt is for
86 *
db3f99ef 87 * Handle an interrupt completing a read/write DMA transfer on an
1da177e4
LT
88 * IDE device
89 */
db3f99ef
BZ
90
91ide_startstop_t ide_dma_intr(ide_drive_t *drive)
1da177e4 92{
b73c7ee2 93 ide_hwif_t *hwif = drive->hwif;
f094d4d8 94 struct ide_cmd *cmd = &hwif->cmd;
1da177e4
LT
95 u8 stat = 0, dma_stat = 0;
96
88b4132e 97 drive->waiting_for_dma = 0;
b73c7ee2 98 dma_stat = hwif->dma_ops->dma_end(drive);
f094d4d8 99 ide_dma_unmap_sg(drive, cmd);
374e042c 100 stat = hwif->tp_ops->read_status(hwif);
c47137a9 101
3a7d2484 102 if (OK_STAT(stat, DRIVE_READY, drive->bad_wstat | ATA_DRQ)) {
1da177e4 103 if (!dma_stat) {
2230d90d
BZ
104 if ((cmd->tf_flags & IDE_TFLAG_FS) == 0)
105 ide_finish_cmd(drive, cmd, stat);
106 else
130e8867 107 ide_complete_rq(drive, 0,
9780e2dd 108 blk_rq_sectors(cmd->rq) << 9);
1da177e4
LT
109 return ide_stopped;
110 }
db3f99ef
BZ
111 printk(KERN_ERR "%s: %s: bad DMA status (0x%02x)\n",
112 drive->name, __func__, dma_stat);
1da177e4
LT
113 }
114 return ide_error(drive, "dma_intr", stat);
115}
1da177e4 116
2dbe7e91 117int ide_dma_good_drive(ide_drive_t *drive)
75d7d963
BZ
118{
119 return ide_in_drive_list(drive->id, drive_whitelist);
120}
121
1da177e4 122/**
f094d4d8
BZ
123 * ide_dma_map_sg - map IDE scatter gather for DMA I/O
124 * @drive: the drive to map the DMA table for
22981694 125 * @cmd: command
1da177e4 126 *
5c05ff68
BZ
127 * Perform the DMA mapping magic necessary to access the source or
128 * target buffers of a request via DMA. The lower layers of the
1da177e4 129 * kernel provide the necessary cache management so that we can
5c05ff68 130 * operate in a portable fashion.
1da177e4
LT
131 */
132
f094d4d8 133static int ide_dma_map_sg(ide_drive_t *drive, struct ide_cmd *cmd)
1da177e4 134{
db3f99ef 135 ide_hwif_t *hwif = drive->hwif;
1da177e4 136 struct scatterlist *sg = hwif->sg_table;
5d82720a 137 int i;
1da177e4 138
22981694 139 if (cmd->tf_flags & IDE_TFLAG_WRITE)
b6308ee0 140 cmd->sg_dma_direction = DMA_TO_DEVICE;
22981694
BZ
141 else
142 cmd->sg_dma_direction = DMA_FROM_DEVICE;
1da177e4 143
b6308ee0 144 i = dma_map_sg(hwif->dev, sg, cmd->sg_nents, cmd->sg_dma_direction);
f094d4d8 145 if (i) {
b6308ee0
BZ
146 cmd->orig_sg_nents = cmd->sg_nents;
147 cmd->sg_nents = i;
5d82720a
FT
148 }
149
150 return i;
1da177e4 151}
1da177e4 152
1da177e4 153/**
f094d4d8 154 * ide_dma_unmap_sg - clean up DMA mapping
1da177e4
LT
155 * @drive: The drive to unmap
156 *
157 * Teardown mappings after DMA has completed. This must be called
158 * after the completion of each use of ide_build_dmatable and before
159 * the next use of ide_build_dmatable. Failure to do so will cause
160 * an oops as only one mapping can be live for each target at a given
161 * time.
162 */
db3f99ef 163
f094d4d8 164void ide_dma_unmap_sg(ide_drive_t *drive, struct ide_cmd *cmd)
1da177e4 165{
36501650 166 ide_hwif_t *hwif = drive->hwif;
1da177e4 167
b6308ee0
BZ
168 dma_unmap_sg(hwif->dev, hwif->sg_table, cmd->orig_sg_nents,
169 cmd->sg_dma_direction);
1da177e4 170}
f094d4d8 171EXPORT_SYMBOL_GPL(ide_dma_unmap_sg);
1da177e4 172
1da177e4 173/**
7469aaf6 174 * ide_dma_off_quietly - Generic DMA kill
1da177e4
LT
175 * @drive: drive to control
176 *
db3f99ef 177 * Turn off the current DMA on this IDE controller.
1da177e4
LT
178 */
179
7469aaf6 180void ide_dma_off_quietly(ide_drive_t *drive)
1da177e4 181{
97100fc8 182 drive->dev_flags &= ~IDE_DFLAG_USING_DMA;
1da177e4
LT
183 ide_toggle_bounce(drive, 0);
184
5e37bdc0 185 drive->hwif->dma_ops->dma_host_set(drive, 0);
1da177e4 186}
7469aaf6 187EXPORT_SYMBOL(ide_dma_off_quietly);
1da177e4
LT
188
189/**
7469aaf6 190 * ide_dma_off - disable DMA on a device
1da177e4
LT
191 * @drive: drive to disable DMA on
192 *
193 * Disable IDE DMA for a device on this IDE controller.
194 * Inform the user that DMA has been disabled.
195 */
196
7469aaf6 197void ide_dma_off(ide_drive_t *drive)
1da177e4
LT
198{
199 printk(KERN_INFO "%s: DMA disabled\n", drive->name);
4a546e04 200 ide_dma_off_quietly(drive);
1da177e4 201}
7469aaf6 202EXPORT_SYMBOL(ide_dma_off);
1da177e4 203
1da177e4 204/**
4a546e04 205 * ide_dma_on - Enable DMA on a device
1da177e4
LT
206 * @drive: drive to enable DMA on
207 *
208 * Enable IDE DMA for a device on this IDE controller.
209 */
4a546e04
BZ
210
211void ide_dma_on(ide_drive_t *drive)
1da177e4 212{
97100fc8 213 drive->dev_flags |= IDE_DFLAG_USING_DMA;
1da177e4
LT
214 ide_toggle_bounce(drive, 1);
215
5e37bdc0 216 drive->hwif->dma_ops->dma_host_set(drive, 1);
1da177e4
LT
217}
218
db3f99ef 219int __ide_dma_bad_drive(ide_drive_t *drive)
1da177e4 220{
4dde4492 221 u16 *id = drive->id;
1da177e4 222
65e5f2e3 223 int blacklist = ide_in_drive_list(id, drive_blacklist);
1da177e4
LT
224 if (blacklist) {
225 printk(KERN_WARNING "%s: Disabling (U)DMA for %s (blacklisted)\n",
4dde4492 226 drive->name, (char *)&id[ATA_ID_PROD]);
1da177e4
LT
227 return blacklist;
228 }
229 return 0;
230}
1da177e4
LT
231EXPORT_SYMBOL(__ide_dma_bad_drive);
232
2d5eaa6d
BZ
233static const u8 xfer_mode_bases[] = {
234 XFER_UDMA_0,
235 XFER_MW_DMA_0,
236 XFER_SW_DMA_0,
237};
238
7670df73 239static unsigned int ide_get_mode_mask(ide_drive_t *drive, u8 base, u8 req_mode)
2d5eaa6d 240{
4dde4492 241 u16 *id = drive->id;
2d5eaa6d 242 ide_hwif_t *hwif = drive->hwif;
ac95beed 243 const struct ide_port_ops *port_ops = hwif->port_ops;
2d5eaa6d
BZ
244 unsigned int mask = 0;
245
db3f99ef 246 switch (base) {
2d5eaa6d 247 case XFER_UDMA_0:
4dde4492 248 if ((id[ATA_ID_FIELD_VALID] & 4) == 0)
2d5eaa6d 249 break;
8d64fcd9 250 mask = id[ATA_ID_UDMA_MODES];
ac95beed 251 if (port_ops && port_ops->udma_filter)
8d64fcd9 252 mask &= port_ops->udma_filter(drive);
851dd33b 253 else
8d64fcd9 254 mask &= hwif->ultra_mask;
2d5eaa6d 255
7670df73
BZ
256 /*
257 * avoid false cable warning from eighty_ninty_three()
258 */
259 if (req_mode > XFER_UDMA_2) {
260 if ((mask & 0x78) && (eighty_ninty_three(drive) == 0))
261 mask &= 0x07;
262 }
2d5eaa6d
BZ
263 break;
264 case XFER_MW_DMA_0:
8d64fcd9 265 mask = id[ATA_ID_MWDMA_MODES];
74638c84
SS
266
267 /* Also look for the CF specific MWDMA modes... */
268 if (ata_id_is_cfa(id) && (id[ATA_ID_CFA_MODES] & 0x38)) {
269 u8 mode = ((id[ATA_ID_CFA_MODES] & 0x38) >> 3) - 1;
270
271 mask |= ((2 << mode) - 1) << 3;
272 }
273
ac95beed 274 if (port_ops && port_ops->mdma_filter)
8d64fcd9 275 mask &= port_ops->mdma_filter(drive);
b4e44369 276 else
8d64fcd9 277 mask &= hwif->mwdma_mask;
2d5eaa6d
BZ
278 break;
279 case XFER_SW_DMA_0:
8d64fcd9
SS
280 mask = id[ATA_ID_SWDMA_MODES];
281 if (!(mask & ATA_SWDMA2) && (id[ATA_ID_OLD_DMA_MODES] >> 8)) {
48fb2688 282 u8 mode = id[ATA_ID_OLD_DMA_MODES] >> 8;
15a4f943
BZ
283
284 /*
285 * if the mode is valid convert it to the mask
286 * (the maximum allowed mode is XFER_SW_DMA_2)
287 */
288 if (mode <= 2)
8d64fcd9 289 mask = (2 << mode) - 1;
15a4f943 290 }
8d64fcd9 291 mask &= hwif->swdma_mask;
2d5eaa6d
BZ
292 break;
293 default:
294 BUG();
295 break;
296 }
297
298 return mask;
299}
300
301/**
7670df73 302 * ide_find_dma_mode - compute DMA speed
2d5eaa6d 303 * @drive: IDE device
7670df73
BZ
304 * @req_mode: requested mode
305 *
306 * Checks the drive/host capabilities and finds the speed to use for
307 * the DMA transfer. The speed is then limited by the requested mode.
2d5eaa6d 308 *
7670df73
BZ
309 * Returns 0 if the drive/host combination is incapable of DMA transfers
310 * or if the requested mode is not a DMA mode.
2d5eaa6d
BZ
311 */
312
7670df73 313u8 ide_find_dma_mode(ide_drive_t *drive, u8 req_mode)
2d5eaa6d
BZ
314{
315 ide_hwif_t *hwif = drive->hwif;
316 unsigned int mask;
317 int x, i;
318 u8 mode = 0;
319
33c1002e
BZ
320 if (drive->media != ide_disk) {
321 if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
322 return 0;
323 }
2d5eaa6d
BZ
324
325 for (i = 0; i < ARRAY_SIZE(xfer_mode_bases); i++) {
7670df73
BZ
326 if (req_mode < xfer_mode_bases[i])
327 continue;
328 mask = ide_get_mode_mask(drive, xfer_mode_bases[i], req_mode);
2d5eaa6d
BZ
329 x = fls(mask) - 1;
330 if (x >= 0) {
331 mode = xfer_mode_bases[i] + x;
332 break;
333 }
334 }
335
75d7d963
BZ
336 if (hwif->chipset == ide_acorn && mode == 0) {
337 /*
338 * is this correct?
339 */
4dde4492
BZ
340 if (ide_dma_good_drive(drive) &&
341 drive->id[ATA_ID_EIDE_DMA_TIME] < 150)
75d7d963
BZ
342 mode = XFER_MW_DMA_1;
343 }
344
3ab7efe8
BZ
345 mode = min(mode, req_mode);
346
347 printk(KERN_INFO "%s: %s mode selected\n", drive->name,
d34887da 348 mode ? ide_xfer_verbose(mode) : "no DMA");
2d5eaa6d 349
3ab7efe8 350 return mode;
2d5eaa6d 351}
2d5eaa6d 352
0ae2e178 353static int ide_tune_dma(ide_drive_t *drive)
29e744d0 354{
8704de8f 355 ide_hwif_t *hwif = drive->hwif;
29e744d0
BZ
356 u8 speed;
357
97100fc8
BZ
358 if (ata_id_has_dma(drive->id) == 0 ||
359 (drive->dev_flags & IDE_DFLAG_NODMA))
122ab088
BZ
360 return 0;
361
362 /* consult the list of known "bad" drives */
363 if (__ide_dma_bad_drive(drive))
29e744d0
BZ
364 return 0;
365
8704de8f 366 if (hwif->host_flags & IDE_HFLAG_TRUST_BIOS_FOR_DMA)
0ae2e178
BZ
367 return config_drive_for_dma(drive);
368
29e744d0
BZ
369 speed = ide_max_dma_mode(drive);
370
951784b6
BZ
371 if (!speed)
372 return 0;
29e744d0 373
88b2b32b 374 if (ide_set_dma_mode(drive, speed))
4728d546 375 return 0;
29e744d0 376
4728d546 377 return 1;
29e744d0
BZ
378}
379
0ae2e178
BZ
380static int ide_dma_check(ide_drive_t *drive)
381{
382 ide_hwif_t *hwif = drive->hwif;
0ae2e178 383
ba4b2e60 384 if (ide_tune_dma(drive))
0ae2e178
BZ
385 return 0;
386
387 /* TODO: always do PIO fallback */
388 if (hwif->host_flags & IDE_HFLAG_TRUST_BIOS_FOR_DMA)
389 return -1;
390
391 ide_set_max_pio(drive);
392
ba4b2e60 393 return -1;
0ae2e178
BZ
394}
395
3608b5d7
BZ
396int ide_set_dma(ide_drive_t *drive)
397{
3608b5d7
BZ
398 int rc;
399
7b905994
BZ
400 /*
401 * Force DMAing for the beginning of the check.
402 * Some chipsets appear to do interesting
403 * things, if not checked and cleared.
404 * PARANOIA!!!
405 */
4a546e04 406 ide_dma_off_quietly(drive);
3608b5d7 407
7b905994
BZ
408 rc = ide_dma_check(drive);
409 if (rc)
410 return rc;
3608b5d7 411
4a546e04
BZ
412 ide_dma_on(drive);
413
414 return 0;
3608b5d7
BZ
415}
416
578cfa0d
BZ
417void ide_check_dma_crc(ide_drive_t *drive)
418{
419 u8 mode;
420
421 ide_dma_off_quietly(drive);
422 drive->crc_count = 0;
423 mode = drive->current_speed;
424 /*
425 * Don't try non Ultra-DMA modes without iCRC's. Force the
426 * device to PIO and make the user enable SWDMA/MWDMA modes.
427 */
428 if (mode > XFER_UDMA_0 && mode <= XFER_UDMA_7)
429 mode--;
430 else
431 mode = XFER_PIO_4;
432 ide_set_xfer_rate(drive, mode);
433 if (drive->current_speed >= XFER_SW_DMA_0)
434 ide_dma_on(drive);
435}
436
de23ec9c 437void ide_dma_lost_irq(ide_drive_t *drive)
1da177e4 438{
de23ec9c 439 printk(KERN_ERR "%s: DMA interrupt recovery\n", drive->name);
1da177e4 440}
de23ec9c 441EXPORT_SYMBOL_GPL(ide_dma_lost_irq);
1da177e4 442
65ca5377
BZ
443/*
444 * un-busy the port etc, and clear any pending DMA status. we want to
445 * retry the current request in pio mode instead of risking tossing it
446 * all away
447 */
448ide_startstop_t ide_dma_timeout_retry(ide_drive_t *drive, int error)
449{
450 ide_hwif_t *hwif = drive->hwif;
35c9b4da 451 const struct ide_dma_ops *dma_ops = hwif->dma_ops;
f094d4d8 452 struct ide_cmd *cmd = &hwif->cmd;
65ca5377
BZ
453 ide_startstop_t ret = ide_stopped;
454
455 /*
456 * end current dma transaction
457 */
458
459 if (error < 0) {
460 printk(KERN_WARNING "%s: DMA timeout error\n", drive->name);
88b4132e 461 drive->waiting_for_dma = 0;
35c9b4da 462 (void)dma_ops->dma_end(drive);
f094d4d8 463 ide_dma_unmap_sg(drive, cmd);
65ca5377
BZ
464 ret = ide_error(drive, "dma timeout error",
465 hwif->tp_ops->read_status(hwif));
466 } else {
467 printk(KERN_WARNING "%s: DMA timeout retry\n", drive->name);
35c9b4da
BZ
468 if (dma_ops->dma_clear)
469 dma_ops->dma_clear(drive);
1cee52de
BZ
470 printk(KERN_ERR "%s: timeout waiting for DMA\n", drive->name);
471 if (dma_ops->dma_test_irq(drive) == 0) {
472 ide_dump_status(drive, "DMA timeout",
473 hwif->tp_ops->read_status(hwif));
88b4132e 474 drive->waiting_for_dma = 0;
1cee52de 475 (void)dma_ops->dma_end(drive);
f094d4d8 476 ide_dma_unmap_sg(drive, cmd);
1cee52de 477 }
65ca5377
BZ
478 }
479
480 /*
481 * disable dma for now, but remember that we did so because of
482 * a timeout -- we'll reenable after we finish this next request
483 * (or rather the first chunk of it) in pio.
484 */
485 drive->dev_flags |= IDE_DFLAG_DMA_PIO_RETRY;
486 drive->retry_pio++;
487 ide_dma_off_quietly(drive);
488
489 /*
dd8717da 490 * make sure request is sane
65ca5377 491 */
dd8717da
TH
492 if (hwif->rq)
493 hwif->rq->errors = 0;
65ca5377
BZ
494 return ret;
495}
496
0d1bad21 497void ide_release_dma_engine(ide_hwif_t *hwif)
1da177e4
LT
498{
499 if (hwif->dmatable_cpu) {
2bbd57ca 500 int prd_size = hwif->prd_max_nents * hwif->prd_ent_size;
36501650 501
2bbd57ca
BZ
502 dma_free_coherent(hwif->dev, prd_size,
503 hwif->dmatable_cpu, hwif->dmatable_dma);
1da177e4
LT
504 hwif->dmatable_cpu = NULL;
505 }
1da177e4 506}
2bbd57ca 507EXPORT_SYMBOL_GPL(ide_release_dma_engine);
1da177e4 508
b8e73fba 509int ide_allocate_dma_engine(ide_hwif_t *hwif)
1da177e4 510{
2bbd57ca 511 int prd_size;
36501650 512
2bbd57ca
BZ
513 if (hwif->prd_max_nents == 0)
514 hwif->prd_max_nents = PRD_ENTRIES;
515 if (hwif->prd_ent_size == 0)
516 hwif->prd_ent_size = PRD_BYTES;
1da177e4 517
2bbd57ca 518 prd_size = hwif->prd_max_nents * hwif->prd_ent_size;
1da177e4 519
2bbd57ca
BZ
520 hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev, prd_size,
521 &hwif->dmatable_dma,
522 GFP_ATOMIC);
523 if (hwif->dmatable_cpu == NULL) {
524 printk(KERN_ERR "%s: unable to allocate PRD table\n",
5e59c236 525 hwif->name);
2bbd57ca
BZ
526 return -ENOMEM;
527 }
1da177e4 528
2bbd57ca 529 return 0;
1da177e4 530}
b8e73fba 531EXPORT_SYMBOL_GPL(ide_allocate_dma_engine);
5ae5412d
BZ
532
533int ide_dma_prepare(ide_drive_t *drive, struct ide_cmd *cmd)
534{
8a4a5738
BZ
535 const struct ide_dma_ops *dma_ops = drive->hwif->dma_ops;
536
5ae5412d 537 if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0 ||
f094d4d8
BZ
538 (dma_ops->dma_check && dma_ops->dma_check(drive, cmd)))
539 goto out;
540 ide_map_sg(drive, cmd);
541 if (ide_dma_map_sg(drive, cmd) == 0)
542 goto out_map;
543 if (dma_ops->dma_setup(drive, cmd))
544 goto out_dma_unmap;
88b4132e 545 drive->waiting_for_dma = 1;
5ae5412d 546 return 0;
f094d4d8
BZ
547out_dma_unmap:
548 ide_dma_unmap_sg(drive, cmd);
549out_map:
550 ide_map_sg(drive, cmd);
551out:
552 return 1;
5ae5412d 553}