diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:46 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:46 -0400 |
commit | 2298169418f43ba5e0919762a4bab95a1227872a (patch) | |
tree | 67cf3133c7bae747ad957c68a650534105a7d8e7 /drivers/ide/au1xxx-ide.c | |
parent | 130e886708d6e11f3d54e5d27c266578de56f343 (diff) |
ide: pass command to ide_map_sg()
* Set IDE_TFLAG_WRITE flag and ->rq also for ATA_CMD_PACKET
commands.
* Pass command to ->dma_setup method and update all its
implementations accordingly.
* Pass command instead of request to ide_build_sglist(),
*_build_dmatable() and ide_map_sg().
While at it:
* Fix scc_dma_setup() documentation + use ATA_DMA_WR define.
* Rename sgiioc4_build_dma_table() to sgiioc4_build_dmatable(),
change return value type to 'int' and drop unused 'ddir'
argument.
* Do some minor cleanups in [tx4939]ide_dma_setup().
There should be no functional changes caused by this patch.
Acked-by: Borislav Petkov <petkovbb@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/au1xxx-ide.c')
-rw-r--r-- | drivers/ide/au1xxx-ide.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/ide/au1xxx-ide.c b/drivers/ide/au1xxx-ide.c index 3ace0cda5452..58485d6cb026 100644 --- a/drivers/ide/au1xxx-ide.c +++ b/drivers/ide/au1xxx-ide.c | |||
@@ -209,15 +209,14 @@ static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed) | |||
209 | */ | 209 | */ |
210 | 210 | ||
211 | #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA | 211 | #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA |
212 | static int auide_build_dmatable(ide_drive_t *drive) | 212 | static int auide_build_dmatable(ide_drive_t *drive, struct ide_cmd *cmd) |
213 | { | 213 | { |
214 | ide_hwif_t *hwif = drive->hwif; | 214 | ide_hwif_t *hwif = drive->hwif; |
215 | struct request *rq = hwif->rq; | ||
216 | _auide_hwif *ahwif = &auide_hwif; | 215 | _auide_hwif *ahwif = &auide_hwif; |
217 | struct scatterlist *sg; | 216 | struct scatterlist *sg; |
218 | int i = hwif->cmd.sg_nents, iswrite, count = 0; | 217 | int i = cmd->sg_nents, count = 0; |
218 | int iswrite = !!(cmd->tf_flags & IDE_TFLAG_WRITE); | ||
219 | 219 | ||
220 | iswrite = (rq_data_dir(rq) == WRITE); | ||
221 | /* Save for interrupt context */ | 220 | /* Save for interrupt context */ |
222 | ahwif->drive = drive; | 221 | ahwif->drive = drive; |
223 | 222 | ||
@@ -298,12 +297,10 @@ static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command) | |||
298 | (2*WAIT_CMD), NULL); | 297 | (2*WAIT_CMD), NULL); |
299 | } | 298 | } |
300 | 299 | ||
301 | static int auide_dma_setup(ide_drive_t *drive) | 300 | static int auide_dma_setup(ide_drive_t *drive, struct ide_cmd *cmd) |
302 | { | 301 | { |
303 | struct request *rq = drive->hwif->rq; | 302 | if (auide_build_dmatable(drive, cmd) == 0) { |
304 | 303 | ide_map_sg(drive, cmd); | |
305 | if (!auide_build_dmatable(drive)) { | ||
306 | ide_map_sg(drive, rq); | ||
307 | return 1; | 304 | return 1; |
308 | } | 305 | } |
309 | 306 | ||