blob: d3bd93afbf2bc8ca04d7d7ded6f5dce28b9f1297 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 2000-2002 Michael Cornwell <cornwell@acm.org>
3 * Copyright (C) 2000-2002 Andre Hedrick <andre@linux-ide.org>
4 * Copyright (C) 2001-2002 Klaus Smolin
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * IBM Storage Technology Division
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01006 * Copyright (C) 2003-2004, 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * The big the bad and the ugly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/types.h>
12#include <linux/string.h>
13#include <linux/kernel.h>
Andrew Morton651c29a2006-02-15 15:17:37 -080014#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/delay.h>
19#include <linux/hdreg.h>
20#include <linux/ide.h>
Jens Axboe55c16a72007-07-25 08:13:56 +020021#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
24#include <asm/io.h>
25
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020026void ide_tf_dump(const char *s, struct ide_taskfile *tf)
27{
28#ifdef DEBUG
29 printk("%s: tf: feat 0x%02x nsect 0x%02x lbal 0x%02x "
30 "lbam 0x%02x lbah 0x%02x dev 0x%02x cmd 0x%02x\n",
31 s, tf->feature, tf->nsect, tf->lbal,
32 tf->lbam, tf->lbah, tf->device, tf->command);
33 printk("%s: hob: nsect 0x%02x lbal 0x%02x "
34 "lbam 0x%02x lbah 0x%02x\n",
35 s, tf->hob_nsect, tf->hob_lbal,
36 tf->hob_lbam, tf->hob_lbah);
37#endif
38}
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040int taskfile_lib_get_identify (ide_drive_t *drive, u8 *buf)
41{
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010042 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010043
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010044 memset(&cmd, 0, sizeof(cmd));
45 cmd.tf.nsect = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 if (drive->media == ide_disk)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010047 cmd.tf.command = ATA_CMD_ID_ATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 else
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010049 cmd.tf.command = ATA_CMD_ID_ATAPI;
50 cmd.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
51 cmd.data_phase = TASKFILE_IN;
52
53 return ide_raw_taskfile(drive, &cmd, buf, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010056static ide_startstop_t task_no_data_intr(ide_drive_t *);
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +010057static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct ide_cmd *);
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +010058static ide_startstop_t task_in_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010059
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +010060ide_startstop_t do_rw_taskfile(ide_drive_t *drive, struct ide_cmd *orig_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +010062 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +010063 struct ide_cmd *cmd = &hwif->cmd;
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010064 struct ide_taskfile *tf = &cmd->tf;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010065 ide_handler_t *handler = NULL;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020066 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +020067 const struct ide_dma_ops *dma_ops = hwif->dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +010069 if (orig_cmd->data_phase == TASKFILE_MULTI_IN ||
70 orig_cmd->data_phase == TASKFILE_MULTI_OUT) {
Bartlomiej Zolnierkiewicz1edee602008-01-25 22:17:15 +010071 if (!drive->mult_count) {
72 printk(KERN_ERR "%s: multimode not set!\n",
73 drive->name);
74 return ide_stopped;
75 }
76 }
77
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +010078 if (orig_cmd->ftf_flags & IDE_FTFLAG_FLAGGED)
79 orig_cmd->ftf_flags |= IDE_FTFLAG_SET_IN_FLAGS;
Bartlomiej Zolnierkiewicz1edee602008-01-25 22:17:15 +010080
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +010081 memcpy(cmd, orig_cmd, sizeof(*cmd));
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +020082
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010083 if ((cmd->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020084 ide_tf_dump(drive->name, tf);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020085 tp_ops->set_irq(hwif, 1);
Bartlomiej Zolnierkiewiczed4af482008-07-15 21:21:48 +020086 SELECT_MASK(drive, 0);
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010087 tp_ops->tf_load(drive, cmd);
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010090 switch (cmd->data_phase) {
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010091 case TASKFILE_MULTI_OUT:
92 case TASKFILE_OUT:
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020093 tp_ops->exec_command(hwif, tf->command);
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010094 ndelay(400); /* FIXME */
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +010095 return pre_task_out_intr(drive, cmd);
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010096 case TASKFILE_MULTI_IN:
97 case TASKFILE_IN:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010098 handler = task_in_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010099 /* fall-through */
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100100 case TASKFILE_NO_DATA:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100101 if (handler == NULL)
102 handler = task_no_data_intr;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100103 ide_execute_command(drive, tf->command, handler,
104 WAIT_WORSTCASE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return ide_started;
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100106 default:
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200107 if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0 ||
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100108 ide_build_sglist(drive, hwif->rq) == 0 ||
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200109 dma_ops->dma_setup(drive))
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100110 return ide_stopped;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200111 dma_ops->dma_exec_cmd(drive, tf->command);
112 dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100113 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100116EXPORT_SYMBOL_GPL(do_rw_taskfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/*
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200119 * Handler for commands without a data phase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 */
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200121static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200123 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100124 struct ide_cmd *cmd = &hwif->cmd;
125 struct ide_taskfile *tf = &cmd->tf;
126 int custom = (cmd->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) ? 1 : 0;
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200127 int retries = (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) ? 5 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 u8 stat;
129
Bartlomiej Zolnierkiewicz90d2c6b2008-07-24 22:53:36 +0200130 local_irq_enable_in_hardirq();
131
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200132 while (1) {
133 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200134 if ((stat & ATA_BUSY) == 0 || retries-- == 0)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200135 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 udelay(10);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200137 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200139 if (!OK_STAT(stat, ATA_DRDY, BAD_STAT)) {
140 if (custom && tf->command == ATA_CMD_SET_MULTI) {
141 drive->mult_req = drive->mult_count = 0;
142 drive->special.b.recalibrate = 1;
143 (void)ide_dump_status(drive, __func__, stat);
144 return ide_stopped;
145 } else if (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) {
146 if ((stat & (ATA_ERR | ATA_DRQ)) == 0) {
147 ide_set_handler(drive, &task_no_data_intr,
148 WAIT_WORSTCASE, NULL);
149 return ide_started;
150 }
151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return ide_error(drive, "task_no_data_intr", stat);
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200153 }
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100154
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100155 if (custom && tf->command == ATA_CMD_IDLEIMMEDIATE) {
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100156 hwif->tp_ops->tf_read(drive, cmd);
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +0200157 if (tf->lbal != 0xc4) {
158 printk(KERN_ERR "%s: head unload failed!\n",
159 drive->name);
160 ide_tf_dump(drive->name, tf);
161 } else
162 drive->dev_flags |= IDE_DFLAG_PARKED;
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100163 } else if (custom && tf->command == ATA_CMD_SET_MULTI)
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200164 drive->mult_count = drive->mult_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100166 if (custom == 0 || tf->command == ATA_CMD_IDLEIMMEDIATE) {
167 struct request *rq = hwif->rq;
168 u8 err = ide_read_error(drive);
169
170 if (blk_pm_request(rq))
171 ide_complete_pm_rq(drive, rq);
172 else {
173 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100174 ide_complete_cmd(drive, cmd, stat, err);
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100175 ide_complete_rq(drive, err);
176 }
177 }
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return ide_stopped;
180}
181
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100182static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200184 ide_hwif_t *hwif = drive->hwif;
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200185 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 u8 stat;
187
188 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200189 * Last sector was transfered, wait until device is ready. This can
190 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200192 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200193 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100194
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200195 if (stat & ATA_BUSY)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200196 udelay(10);
197 else
198 break;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200201 if (stat & ATA_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
203
204 return stat;
205}
206
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100207static void ide_pio_sector(ide_drive_t *drive, struct ide_cmd *cmd,
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200208 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 ide_hwif_t *hwif = drive->hwif;
211 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200212 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 struct page *page;
214#ifdef CONFIG_HIGHMEM
215 unsigned long flags;
216#endif
217 unsigned int offset;
218 u8 *buf;
219
Jens Axboe55c16a72007-07-25 08:13:56 +0200220 cursg = hwif->cursg;
221 if (!cursg) {
222 cursg = sg;
223 hwif->cursg = sg;
224 }
225
Jens Axboe45711f12007-10-22 21:19:53 +0200226 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200227 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* get the current page and offset */
230 page = nth_page(page, (offset >> PAGE_SHIFT));
231 offset %= PAGE_SIZE;
232
233#ifdef CONFIG_HIGHMEM
234 local_irq_save(flags);
235#endif
236 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
237
238 hwif->nleft--;
239 hwif->cursg_ofs++;
240
Jens Axboe55c16a72007-07-25 08:13:56 +0200241 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
242 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 hwif->cursg_ofs = 0;
244 }
245
246 /* do the actual data transfer */
247 if (write)
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100248 hwif->tp_ops->output_data(drive, cmd, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 else
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100250 hwif->tp_ops->input_data(drive, cmd, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
253#ifdef CONFIG_HIGHMEM
254 local_irq_restore(flags);
255#endif
256}
257
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100258static void ide_pio_multi(ide_drive_t *drive, struct ide_cmd *cmd,
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200259 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 unsigned int nsect;
262
263 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
264 while (nsect--)
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100265 ide_pio_sector(drive, cmd, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100268static void ide_pio_datablock(ide_drive_t *drive, struct ide_cmd *cmd,
269 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Tejun Heo35cf2b92008-01-26 20:13:10 +0100271 u8 saved_io_32bit = drive->io_32bit;
272
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100273 if (cmd->tf_flags & IDE_TFLAG_FS)
274 cmd->rq->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100276 if (cmd->tf_flags & IDE_TFLAG_IO_16BIT)
Bartlomiej Zolnierkiewicze3d9a732009-03-27 12:46:32 +0100277 drive->io_32bit = 0;
Tejun Heo35cf2b92008-01-26 20:13:10 +0100278
Andrew Morton651c29a2006-02-15 15:17:37 -0800279 touch_softlockup_watchdog();
280
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100281 switch (cmd->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 case TASKFILE_MULTI_IN:
283 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100284 ide_pio_multi(drive, cmd, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
286 default:
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100287 ide_pio_sector(drive, cmd, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 break;
289 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100290
291 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100294static ide_startstop_t task_error(ide_drive_t *drive, struct ide_cmd *cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 const char *s, u8 stat)
296{
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100297 if (cmd->tf_flags & IDE_TFLAG_FS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 ide_hwif_t *hwif = drive->hwif;
299 int sectors = hwif->nsect - hwif->nleft;
300
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100301 switch (cmd->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 case TASKFILE_IN:
303 if (hwif->nleft)
304 break;
305 /* fall through */
306 case TASKFILE_OUT:
307 sectors--;
308 break;
309 case TASKFILE_MULTI_IN:
310 if (hwif->nleft)
311 break;
312 /* fall through */
313 case TASKFILE_MULTI_OUT:
314 sectors -= drive->mult_count;
315 default:
316 break;
317 }
318
Bartlomiej Zolnierkiewiczc152cc12009-03-27 12:46:34 +0100319 if (sectors > 0)
320 ide_end_request(drive, 1, sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322 return ide_error(drive, s, stat);
323}
324
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100325void ide_finish_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100327 if ((cmd->tf_flags & IDE_TFLAG_FS) == 0) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100328 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100330 ide_complete_cmd(drive, cmd, stat, err);
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100331 ide_complete_rq(drive, err);
Tejun Heo4d7a9842008-01-26 20:13:11 +0100332 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100335 ide_end_request(drive, 1, cmd->rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700339 * We got an interrupt on a task_in case, but no errors and no DRQ.
340 *
341 * It might be a spurious irq (shared irq), but it might be a
342 * command that had no output.
343 */
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100344static ide_startstop_t task_in_unexpected(ide_drive_t *drive,
345 struct ide_cmd *cmd, u8 stat)
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700346{
347 /* Command all done? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200348 if (OK_STAT(stat, ATA_DRDY, ATA_BUSY)) {
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100349 ide_finish_cmd(drive, cmd, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700350 return ide_stopped;
351 }
352
353 /* Assume it was a spurious irq */
354 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
355 return ide_started;
356}
357
358/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * Handler for command with PIO data-in phase (Read/Read Multiple).
360 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100361static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100364 struct ide_cmd *cmd = &drive->hwif->cmd;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200365 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700367 /* Error? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200368 if (stat & ATA_ERR)
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100369 return task_error(drive, cmd, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700370
371 /* Didn't want any data? Odd. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200372 if ((stat & ATA_DRQ) == 0)
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100373 return task_in_unexpected(drive, cmd, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100375 ide_pio_datablock(drive, cmd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700377 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (!hwif->nleft) {
379 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100380 if (!OK_STAT(stat, 0, BAD_STAT))
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100381 return task_error(drive, cmd, __func__, stat);
382 ide_finish_cmd(drive, cmd, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return ide_stopped;
384 }
385
386 /* Still data left to transfer. */
387 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
388
389 return ide_started;
390}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392/*
393 * Handler for command with PIO data-out phase (Write/Write Multiple).
394 */
395static ide_startstop_t task_out_intr (ide_drive_t *drive)
396{
397 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100398 struct ide_cmd *cmd = &drive->hwif->cmd;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200399 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100402 return task_error(drive, cmd, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /* Deal with unexpected ATA data phase. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200405 if (((stat & ATA_DRQ) == 0) ^ !hwif->nleft)
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100406 return task_error(drive, cmd, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 if (!hwif->nleft) {
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100409 ide_finish_cmd(drive, cmd, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return ide_stopped;
411 }
412
413 /* Still data left to transfer. */
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100414 ide_pio_datablock(drive, cmd, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
416
417 return ide_started;
418}
419
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100420static ide_startstop_t pre_task_out_intr(ide_drive_t *drive,
421 struct ide_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 ide_startstop_t startstop;
424
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200425 if (ide_wait_stat(&startstop, drive, ATA_DRQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 drive->bad_wstat, WAIT_DRQ)) {
427 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
Bartlomiej Zolnierkiewiczc7db9662009-03-27 12:46:27 +0100428 drive->name,
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100429 cmd->data_phase == TASKFILE_MULTI_OUT ? "MULT" : "",
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200430 (drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return startstop;
432 }
433
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200434 if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 local_irq_disable();
436
437 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
Bartlomiej Zolnierkiewiczadb1af92009-03-27 12:46:38 +0100438 ide_pio_datablock(drive, cmd, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 return ide_started;
441}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100443int ide_raw_taskfile(ide_drive_t *drive, struct ide_cmd *cmd, u8 *buf,
444 u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200446 struct request *rq;
447 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200449 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
450 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
451 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 /*
454 * (ks) We transfer currently only whole sectors.
455 * This is suffient for now. But, it would be great,
456 * if we would find a solution to transfer any size.
457 * To support special commands like READ LONG.
458 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200459 rq->hard_nr_sectors = rq->nr_sectors = nsect;
460 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100462 if (cmd->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200463 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100465 rq->special = cmd;
466 cmd->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200468 error = blk_execute_rq(drive->queue, NULL, rq, 0);
469 blk_put_request(rq);
470
471 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474EXPORT_SYMBOL(ide_raw_taskfile);
475
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100476int ide_no_data_taskfile(ide_drive_t *drive, struct ide_cmd *cmd)
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100477{
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100478 cmd->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100479
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100480 return ide_raw_taskfile(drive, cmd, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100481}
482EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
483
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100484#ifdef CONFIG_IDE_TASK_IOCTL
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100485int ide_taskfile_ioctl(ide_drive_t *drive, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 ide_task_request_t *req_task;
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100488 struct ide_cmd cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 u8 *outbuf = NULL;
490 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100491 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 int err = 0;
493 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100494 unsigned int taskin = 0;
495 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100496 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 char __user *buf = (char __user *)arg;
498
499// printk("IDE Taskfile ...\n");
500
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800501 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (copy_from_user(req_task, buf, tasksize)) {
504 kfree(req_task);
505 return -EFAULT;
506 }
507
Alan Cox3a42bb22006-10-16 16:31:02 +0100508 taskout = req_task->out_size;
509 taskin = req_task->in_size;
510
511 if (taskin > 65536 || taskout > 65536) {
512 err = -EINVAL;
513 goto abort;
514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 if (taskout) {
517 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800518 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (outbuf == NULL) {
520 err = -ENOMEM;
521 goto abort;
522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
524 err = -EFAULT;
525 goto abort;
526 }
527 }
528
529 if (taskin) {
530 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800531 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (inbuf == NULL) {
533 err = -ENOMEM;
534 goto abort;
535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (copy_from_user(inbuf, buf + intotal, taskin)) {
537 err = -EFAULT;
538 goto abort;
539 }
540 }
541
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100542 memset(&cmd, 0, sizeof(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100544 memcpy(&cmd.tf_array[0], req_task->hob_ports,
545 HDIO_DRIVE_HOB_HDR_SIZE - 2);
546 memcpy(&cmd.tf_array[6], req_task->io_ports,
547 HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100548
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100549 cmd.data_phase = req_task->data_phase;
550 cmd.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
551 IDE_TFLAG_IN_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200553 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100554 cmd.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100555
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100556 if (req_task->out_flags.all) {
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100557 cmd.ftf_flags |= IDE_FTFLAG_FLAGGED;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100558
559 if (req_task->out_flags.b.data)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100560 cmd.ftf_flags |= IDE_FTFLAG_OUT_DATA;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100561
562 if (req_task->out_flags.b.nsector_hob)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100563 cmd.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100564 if (req_task->out_flags.b.sector_hob)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100565 cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100566 if (req_task->out_flags.b.lcyl_hob)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100567 cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100568 if (req_task->out_flags.b.hcyl_hob)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100569 cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100570
571 if (req_task->out_flags.b.error_feature)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100572 cmd.tf_flags |= IDE_TFLAG_OUT_FEATURE;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100573 if (req_task->out_flags.b.nsector)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100574 cmd.tf_flags |= IDE_TFLAG_OUT_NSECT;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100575 if (req_task->out_flags.b.sector)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100576 cmd.tf_flags |= IDE_TFLAG_OUT_LBAL;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100577 if (req_task->out_flags.b.lcyl)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100578 cmd.tf_flags |= IDE_TFLAG_OUT_LBAM;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100579 if (req_task->out_flags.b.hcyl)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100580 cmd.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100581 } else {
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100582 cmd.tf_flags |= IDE_TFLAG_OUT_TF;
583 if (cmd.tf_flags & IDE_TFLAG_LBA48)
584 cmd.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100585 }
586
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100587 if (req_task->in_flags.b.data)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100588 cmd.ftf_flags |= IDE_FTFLAG_IN_DATA;
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 case TASKFILE_MULTI_OUT:
592 if (!drive->mult_count) {
593 /* (hs): give up if multcount is not set */
594 printk(KERN_ERR "%s: %s Multimode Write " \
595 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200596 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 err = -EPERM;
598 goto abort;
599 }
600 /* fall through */
601 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100602 /* fall through */
603 case TASKFILE_OUT_DMAQ:
604 case TASKFILE_OUT_DMA:
605 nsect = taskout / SECTOR_SIZE;
606 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 break;
608 case TASKFILE_MULTI_IN:
609 if (!drive->mult_count) {
610 /* (hs): give up if multcount is not set */
611 printk(KERN_ERR "%s: %s Multimode Read failure " \
612 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200613 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 err = -EPERM;
615 goto abort;
616 }
617 /* fall through */
618 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100619 /* fall through */
620 case TASKFILE_IN_DMAQ:
621 case TASKFILE_IN_DMA:
622 nsect = taskin / SECTOR_SIZE;
623 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 break;
625 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 break;
627 default:
628 err = -EFAULT;
629 goto abort;
630 }
631
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100632 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
633 nsect = 0;
634 else if (!nsect) {
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100635 nsect = (cmd.tf.hob_nsect << 8) | cmd.tf.nsect;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100636
637 if (!nsect) {
638 printk(KERN_ERR "%s: in/out command without data\n",
639 drive->name);
640 err = -EFAULT;
641 goto abort;
642 }
643 }
644
645 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100646 cmd.tf_flags |= IDE_TFLAG_WRITE;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100647
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100648 err = ide_raw_taskfile(drive, &cmd, data_buf, nsect);
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100649
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100650 memcpy(req_task->hob_ports, &cmd.tf_array[0],
651 HDIO_DRIVE_HOB_HDR_SIZE - 2);
652 memcpy(req_task->io_ports, &cmd.tf_array[6],
653 HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100654
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100655 if ((cmd.ftf_flags & IDE_FTFLAG_SET_IN_FLAGS) &&
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100656 req_task->in_flags.all == 0) {
657 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200658 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100659 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 if (copy_to_user(buf, req_task, tasksize)) {
663 err = -EFAULT;
664 goto abort;
665 }
666 if (taskout) {
667 int outtotal = tasksize;
668 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
669 err = -EFAULT;
670 goto abort;
671 }
672 }
673 if (taskin) {
674 int intotal = tasksize + taskout;
675 if (copy_to_user(buf + intotal, inbuf, taskin)) {
676 err = -EFAULT;
677 goto abort;
678 }
679 }
680abort:
681 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800682 kfree(outbuf);
683 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return err;
688}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100689#endif