blob: fc2b3957afac293a2e9b89340166fa4c90079efc [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{
42 ide_task_t args;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010045 args.tf.nsect = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 if (drive->media == ide_disk)
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010047 args.tf.command = WIN_IDENTIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 else
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010049 args.tf.command = WIN_PIDENTIFY;
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +010050 args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +010051 args.data_phase = TASKFILE_IN;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +010052 return ide_raw_taskfile(drive, &args, buf, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010055static ide_startstop_t task_no_data_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010056static ide_startstop_t set_geometry_intr(ide_drive_t *);
57static ide_startstop_t recal_intr(ide_drive_t *);
58static ide_startstop_t set_multmode_intr(ide_drive_t *);
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +010059static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct request *);
60static ide_startstop_t task_in_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task)
63{
64 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010065 struct ide_taskfile *tf = &task->tf;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010066 ide_handler_t *handler = NULL;
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 Zolnierkiewicz1edee602008-01-25 22:17:15 +010069 if (task->data_phase == TASKFILE_MULTI_IN ||
70 task->data_phase == TASKFILE_MULTI_OUT) {
71 if (!drive->mult_count) {
72 printk(KERN_ERR "%s: multimode not set!\n",
73 drive->name);
74 return ide_stopped;
75 }
76 }
77
78 if (task->tf_flags & IDE_TFLAG_FLAGGED)
79 task->tf_flags |= IDE_TFLAG_FLAGGED_SET_IN_FLAGS;
80
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020081 if ((task->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {
82 ide_tf_dump(drive->name, tf);
Bartlomiej Zolnierkiewiczed4af482008-07-15 21:21:48 +020083 ide_set_irq(drive, 1);
84 SELECT_MASK(drive, 0);
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +020085 hwif->tf_load(drive, task);
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010088 switch (task->data_phase) {
89 case TASKFILE_MULTI_OUT:
90 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +020091 hwif->exec_command(hwif, tf->command);
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010092 ndelay(400); /* FIXME */
93 return pre_task_out_intr(drive, task->rq);
94 case TASKFILE_MULTI_IN:
95 case TASKFILE_IN:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010096 handler = task_in_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010097 /* fall-through */
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010098 case TASKFILE_NO_DATA:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010099 if (handler == NULL)
100 handler = task_no_data_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100101 /* WIN_{SPECIFY,RESTORE,SETMULT} use custom handlers */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100102 if (task->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) {
103 switch (tf->command) {
104 case WIN_SPECIFY: handler = set_geometry_intr; break;
105 case WIN_RESTORE: handler = recal_intr; break;
106 case WIN_SETMULT: handler = set_multmode_intr; break;
107 }
108 }
109 ide_execute_command(drive, tf->command, handler,
110 WAIT_WORSTCASE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return ide_started;
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100112 default:
Bartlomiej Zolnierkiewicz07fe69d2008-07-16 20:33:43 +0200113 if (drive->using_dma == 0 || dma_ops->dma_setup(drive))
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100114 return ide_stopped;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200115 dma_ops->dma_exec_cmd(drive, tf->command);
116 dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100117 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100120EXPORT_SYMBOL_GPL(do_rw_taskfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/*
123 * set_multmode_intr() is invoked on completion of a WIN_SETMULT cmd.
124 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100125static ide_startstop_t set_multmode_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200127 ide_hwif_t *hwif = drive->hwif;
128 u8 stat = hwif->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100130 if (OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 drive->mult_count = drive->mult_req;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100132 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 drive->mult_req = drive->mult_count = 0;
134 drive->special.b.recalibrate = 1;
135 (void) ide_dump_status(drive, "set_multmode", stat);
136 }
137 return ide_stopped;
138}
139
140/*
141 * set_geometry_intr() is invoked on completion of a WIN_SPECIFY cmd.
142 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100143static ide_startstop_t set_geometry_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200145 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 int retries = 5;
147 u8 stat;
148
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200149 while (((stat = hwif->read_status(hwif)) & BUSY_STAT) && retries--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 udelay(10);
151
152 if (OK_STAT(stat, READY_STAT, BAD_STAT))
153 return ide_stopped;
154
155 if (stat & (ERR_STAT|DRQ_STAT))
156 return ide_error(drive, "set_geometry_intr", stat);
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 ide_set_handler(drive, &set_geometry_intr, WAIT_WORSTCASE, NULL);
159 return ide_started;
160}
161
162/*
163 * recal_intr() is invoked on completion of a WIN_RESTORE (recalibrate) cmd.
164 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100165static ide_startstop_t recal_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200167 ide_hwif_t *hwif = drive->hwif;
168 u8 stat = hwif->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100170 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return ide_error(drive, "recal_intr", stat);
172 return ide_stopped;
173}
174
175/*
176 * Handler for commands without a data phase
177 */
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100178static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200180 ide_hwif_t *hwif = drive->hwif;
181 ide_task_t *args = hwif->hwgroup->rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 u8 stat;
183
Ingo Molnar366c7f52006-07-03 00:25:25 -0700184 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200185 stat = hwif->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100186
187 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return ide_error(drive, "task_no_data_intr", stat);
189 /* calls ide_end_drive_cmd */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (args)
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100192 ide_end_drive_cmd(drive, stat, ide_read_error(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 return ide_stopped;
195}
196
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100197static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200199 ide_hwif_t *hwif = drive->hwif;
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200200 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 u8 stat;
202
203 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200204 * Last sector was transfered, wait until device is ready. This can
205 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200207 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200208 stat = hwif->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100209
210 if (stat & BUSY_STAT)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200211 udelay(10);
212 else
213 break;
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200216 if (stat & BUSY_STAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
218
219 return stat;
220}
221
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200222static void ide_pio_sector(ide_drive_t *drive, struct request *rq,
223 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 ide_hwif_t *hwif = drive->hwif;
226 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200227 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 struct page *page;
229#ifdef CONFIG_HIGHMEM
230 unsigned long flags;
231#endif
232 unsigned int offset;
233 u8 *buf;
234
Jens Axboe55c16a72007-07-25 08:13:56 +0200235 cursg = hwif->cursg;
236 if (!cursg) {
237 cursg = sg;
238 hwif->cursg = sg;
239 }
240
Jens Axboe45711f12007-10-22 21:19:53 +0200241 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200242 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 /* get the current page and offset */
245 page = nth_page(page, (offset >> PAGE_SHIFT));
246 offset %= PAGE_SIZE;
247
248#ifdef CONFIG_HIGHMEM
249 local_irq_save(flags);
250#endif
251 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
252
253 hwif->nleft--;
254 hwif->cursg_ofs++;
255
Jens Axboe55c16a72007-07-25 08:13:56 +0200256 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
257 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 hwif->cursg_ofs = 0;
259 }
260
261 /* do the actual data transfer */
262 if (write)
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200263 hwif->output_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 else
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200265 hwif->input_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
268#ifdef CONFIG_HIGHMEM
269 local_irq_restore(flags);
270#endif
271}
272
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200273static void ide_pio_multi(ide_drive_t *drive, struct request *rq,
274 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 unsigned int nsect;
277
278 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
279 while (nsect--)
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200280 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Arjan van de Ven858119e2006-01-14 13:20:43 -0800283static void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 unsigned int write)
285{
Tejun Heo35cf2b92008-01-26 20:13:10 +0100286 u8 saved_io_32bit = drive->io_32bit;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (rq->bio) /* fs request */
289 rq->errors = 0;
290
Tejun Heo35cf2b92008-01-26 20:13:10 +0100291 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
292 ide_task_t *task = rq->special;
293
294 if (task->tf_flags & IDE_TFLAG_IO_16BIT)
295 drive->io_32bit = 0;
296 }
297
Andrew Morton651c29a2006-02-15 15:17:37 -0800298 touch_softlockup_watchdog();
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 switch (drive->hwif->data_phase) {
301 case TASKFILE_MULTI_IN:
302 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200303 ide_pio_multi(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 break;
305 default:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200306 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 break;
308 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100309
310 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
314 const char *s, u8 stat)
315{
316 if (rq->bio) {
317 ide_hwif_t *hwif = drive->hwif;
318 int sectors = hwif->nsect - hwif->nleft;
319
320 switch (hwif->data_phase) {
321 case TASKFILE_IN:
322 if (hwif->nleft)
323 break;
324 /* fall through */
325 case TASKFILE_OUT:
326 sectors--;
327 break;
328 case TASKFILE_MULTI_IN:
329 if (hwif->nleft)
330 break;
331 /* fall through */
332 case TASKFILE_MULTI_OUT:
333 sectors -= drive->mult_count;
334 default:
335 break;
336 }
337
338 if (sectors > 0) {
339 ide_driver_t *drv;
340
341 drv = *(ide_driver_t **)rq->rq_disk->private_data;
342 drv->end_request(drive, 1, sectors);
343 }
344 }
345 return ide_error(drive, s, stat);
346}
347
Tejun Heo4d7a9842008-01-26 20:13:11 +0100348void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200350 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100351 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Tejun Heo4d7a9842008-01-26 20:13:11 +0100353 ide_end_drive_cmd(drive, stat, err);
354 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
Richard Purdie03731fb2006-03-31 02:31:15 -0800357 if (rq->rq_disk) {
358 ide_driver_t *drv;
359
360 drv = *(ide_driver_t **)rq->rq_disk->private_data;;
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100361 drv->end_request(drive, 1, rq->nr_sectors);
Richard Purdie03731fb2006-03-31 02:31:15 -0800362 } else
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100363 ide_end_request(drive, 1, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
366/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700367 * We got an interrupt on a task_in case, but no errors and no DRQ.
368 *
369 * It might be a spurious irq (shared irq), but it might be a
370 * command that had no output.
371 */
372static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat)
373{
374 /* Command all done? */
375 if (OK_STAT(stat, READY_STAT, BUSY_STAT)) {
376 task_end_request(drive, rq, stat);
377 return ide_stopped;
378 }
379
380 /* Assume it was a spurious irq */
381 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
382 return ide_started;
383}
384
385/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * Handler for command with PIO data-in phase (Read/Read Multiple).
387 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100388static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200391 struct request *rq = hwif->hwgroup->rq;
392 u8 stat = hwif->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700394 /* Error? */
395 if (stat & ERR_STAT)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200396 return task_error(drive, rq, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700397
398 /* Didn't want any data? Odd. */
399 if (!(stat & DRQ_STAT))
400 return task_in_unexpected(drive, rq, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 ide_pio_datablock(drive, rq, 0);
403
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700404 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (!hwif->nleft) {
406 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100407 if (!OK_STAT(stat, 0, BAD_STAT))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200408 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 task_end_request(drive, rq, stat);
410 return ide_stopped;
411 }
412
413 /* Still data left to transfer. */
414 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
415
416 return ide_started;
417}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419/*
420 * Handler for command with PIO data-out phase (Write/Write Multiple).
421 */
422static ide_startstop_t task_out_intr (ide_drive_t *drive)
423{
424 ide_hwif_t *hwif = drive->hwif;
425 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200426 u8 stat = hwif->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200429 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 /* Deal with unexpected ATA data phase. */
432 if (((stat & DRQ_STAT) == 0) ^ !hwif->nleft)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200433 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 if (!hwif->nleft) {
436 task_end_request(drive, rq, stat);
437 return ide_stopped;
438 }
439
440 /* Still data left to transfer. */
441 ide_pio_datablock(drive, rq, 1);
442 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
443
444 return ide_started;
445}
446
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100447static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 ide_startstop_t startstop;
450
Bartlomiej Zolnierkiewicz4906f3b2008-01-26 20:13:11 +0100451 if (ide_wait_stat(&startstop, drive, DRQ_STAT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 drive->bad_wstat, WAIT_DRQ)) {
453 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
454 drive->name,
455 drive->hwif->data_phase ? "MULT" : "",
456 drive->addressing ? "_EXT" : "");
457 return startstop;
458 }
459
460 if (!drive->unmask)
461 local_irq_disable();
462
463 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
464 ide_pio_datablock(drive, rq, 1);
465
466 return ide_started;
467}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100469int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200471 struct request *rq;
472 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200474 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
475 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
476 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /*
479 * (ks) We transfer currently only whole sectors.
480 * This is suffient for now. But, it would be great,
481 * if we would find a solution to transfer any size.
482 * To support special commands like READ LONG.
483 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200484 rq->hard_nr_sectors = rq->nr_sectors = nsect;
485 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100487 if (task->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200488 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200490 rq->special = task;
491 task->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200493 error = blk_execute_rq(drive->queue, NULL, rq, 0);
494 blk_put_request(rq);
495
496 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499EXPORT_SYMBOL(ide_raw_taskfile);
500
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100501int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task)
502{
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100503 task->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100504
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100505 return ide_raw_taskfile(drive, task, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100506}
507EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
508
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100509#ifdef CONFIG_IDE_TASK_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
511{
512 ide_task_request_t *req_task;
513 ide_task_t args;
514 u8 *outbuf = NULL;
515 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100516 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 int err = 0;
518 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100519 unsigned int taskin = 0;
520 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100521 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 char __user *buf = (char __user *)arg;
523
524// printk("IDE Taskfile ...\n");
525
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800526 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (copy_from_user(req_task, buf, tasksize)) {
529 kfree(req_task);
530 return -EFAULT;
531 }
532
Alan Cox3a42bb22006-10-16 16:31:02 +0100533 taskout = req_task->out_size;
534 taskin = req_task->in_size;
535
536 if (taskin > 65536 || taskout > 65536) {
537 err = -EINVAL;
538 goto abort;
539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 if (taskout) {
542 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800543 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (outbuf == NULL) {
545 err = -ENOMEM;
546 goto abort;
547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
549 err = -EFAULT;
550 goto abort;
551 }
552 }
553
554 if (taskin) {
555 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800556 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (inbuf == NULL) {
558 err = -ENOMEM;
559 goto abort;
560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (copy_from_user(inbuf, buf + intotal, taskin)) {
562 err = -EFAULT;
563 goto abort;
564 }
565 }
566
567 memset(&args, 0, sizeof(ide_task_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100569 memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
570 memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100571
572 args.data_phase = req_task->data_phase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100574 args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
575 IDE_TFLAG_IN_TF;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100576 if (drive->addressing == 1)
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100577 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100578
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100579 if (req_task->out_flags.all) {
580 args.tf_flags |= IDE_TFLAG_FLAGGED;
581
582 if (req_task->out_flags.b.data)
583 args.tf_flags |= IDE_TFLAG_OUT_DATA;
584
585 if (req_task->out_flags.b.nsector_hob)
586 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
587 if (req_task->out_flags.b.sector_hob)
588 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
589 if (req_task->out_flags.b.lcyl_hob)
590 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
591 if (req_task->out_flags.b.hcyl_hob)
592 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
593
594 if (req_task->out_flags.b.error_feature)
595 args.tf_flags |= IDE_TFLAG_OUT_FEATURE;
596 if (req_task->out_flags.b.nsector)
597 args.tf_flags |= IDE_TFLAG_OUT_NSECT;
598 if (req_task->out_flags.b.sector)
599 args.tf_flags |= IDE_TFLAG_OUT_LBAL;
600 if (req_task->out_flags.b.lcyl)
601 args.tf_flags |= IDE_TFLAG_OUT_LBAM;
602 if (req_task->out_flags.b.hcyl)
603 args.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100604 } else {
605 args.tf_flags |= IDE_TFLAG_OUT_TF;
606 if (args.tf_flags & IDE_TFLAG_LBA48)
607 args.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100608 }
609
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100610 if (req_task->in_flags.b.data)
611 args.tf_flags |= IDE_TFLAG_IN_DATA;
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 case TASKFILE_MULTI_OUT:
615 if (!drive->mult_count) {
616 /* (hs): give up if multcount is not set */
617 printk(KERN_ERR "%s: %s Multimode Write " \
618 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200619 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 err = -EPERM;
621 goto abort;
622 }
623 /* fall through */
624 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100625 /* fall through */
626 case TASKFILE_OUT_DMAQ:
627 case TASKFILE_OUT_DMA:
628 nsect = taskout / SECTOR_SIZE;
629 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 break;
631 case TASKFILE_MULTI_IN:
632 if (!drive->mult_count) {
633 /* (hs): give up if multcount is not set */
634 printk(KERN_ERR "%s: %s Multimode Read failure " \
635 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200636 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 err = -EPERM;
638 goto abort;
639 }
640 /* fall through */
641 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100642 /* fall through */
643 case TASKFILE_IN_DMAQ:
644 case TASKFILE_IN_DMA:
645 nsect = taskin / SECTOR_SIZE;
646 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 break;
648 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
650 default:
651 err = -EFAULT;
652 goto abort;
653 }
654
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100655 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
656 nsect = 0;
657 else if (!nsect) {
658 nsect = (args.tf.hob_nsect << 8) | args.tf.nsect;
659
660 if (!nsect) {
661 printk(KERN_ERR "%s: in/out command without data\n",
662 drive->name);
663 err = -EFAULT;
664 goto abort;
665 }
666 }
667
668 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
669 args.tf_flags |= IDE_TFLAG_WRITE;
670
671 err = ide_raw_taskfile(drive, &args, data_buf, nsect);
672
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100673 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
674 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100675
676 if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) &&
677 req_task->in_flags.all == 0) {
678 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
679 if (drive->addressing == 1)
680 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 if (copy_to_user(buf, req_task, tasksize)) {
684 err = -EFAULT;
685 goto abort;
686 }
687 if (taskout) {
688 int outtotal = tasksize;
689 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
690 err = -EFAULT;
691 goto abort;
692 }
693 }
694 if (taskin) {
695 int intotal = tasksize + taskout;
696 if (copy_to_user(buf + intotal, inbuf, taskin)) {
697 err = -EFAULT;
698 goto abort;
699 }
700 }
701abort:
702 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800703 kfree(outbuf);
704 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return err;
709}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100710#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712int ide_cmd_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
713{
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100714 u8 *buf = NULL;
715 int bufsize = 0, err = 0;
716 u8 args[4], xfer_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 ide_task_t tfargs;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100718 struct ide_taskfile *tf = &tfargs.tf;
Bartlomiej Zolnierkiewicz5efe7c52008-02-02 19:56:46 +0100719 struct hd_driveid *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 if (NULL == (void *) arg) {
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200722 struct request *rq;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100723
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200724 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
725 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
726 err = blk_execute_rq(drive->queue, NULL, rq, 0);
727 blk_put_request(rq);
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100728
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200729 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731
732 if (copy_from_user(args, (void __user *)arg, 4))
733 return -EFAULT;
734
735 memset(&tfargs, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100736 tf->feature = args[2];
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100737 if (args[0] == WIN_SMART) {
738 tf->nsect = args[3];
739 tf->lbal = args[1];
740 tf->lbam = 0x4f;
741 tf->lbah = 0xc2;
742 tfargs.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_IN_NSECT;
743 } else {
744 tf->nsect = args[1];
745 tfargs.tf_flags = IDE_TFLAG_OUT_FEATURE |
746 IDE_TFLAG_OUT_NSECT | IDE_TFLAG_IN_NSECT;
747 }
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100748 tf->command = args[0];
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100749 tfargs.data_phase = args[3] ? TASKFILE_IN : TASKFILE_NO_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 if (args[3]) {
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100752 tfargs.tf_flags |= IDE_TFLAG_IO_16BIT;
753 bufsize = SECTOR_WORDS * 4 * args[3];
754 buf = kzalloc(bufsize, GFP_KERNEL);
755 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100758
Bartlomiej Zolnierkiewicz5efe7c52008-02-02 19:56:46 +0100759 if (tf->command == WIN_SETFEATURES &&
760 tf->feature == SETFEATURES_XFER &&
761 tf->nsect >= XFER_SW_DMA_0 &&
762 (id->dma_ultra || id->dma_mword || id->dma_1word)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 xfer_rate = args[1];
Bartlomiej Zolnierkiewiczaf10f772008-02-02 19:56:46 +0100764 if (tf->nsect > XFER_UDMA_2 && !eighty_ninty_three(drive)) {
765 printk(KERN_WARNING "%s: UDMA speeds >UDMA33 cannot "
766 "be set\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 goto abort;
Bartlomiej Zolnierkiewiczaf10f772008-02-02 19:56:46 +0100768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100771 err = ide_raw_taskfile(drive, &tfargs, buf, args[3]);
772
773 args[0] = tf->status;
774 args[1] = tf->error;
775 args[2] = tf->nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 if (!err && xfer_rate) {
778 /* active-retuning-calls future */
779 ide_set_xfer_rate(drive, xfer_rate);
780 ide_driveid_update(drive);
781 }
782abort:
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100783 if (copy_to_user((void __user *)arg, &args, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 err = -EFAULT;
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100785 if (buf) {
786 if (copy_to_user((void __user *)(arg + 4), buf, bufsize))
787 err = -EFAULT;
788 kfree(buf);
789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return err;
791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793int ide_task_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
794{
795 void __user *p = (void __user *)arg;
796 int err = 0;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100797 u8 args[7];
798 ide_task_t task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 if (copy_from_user(args, p, 7))
801 return -EFAULT;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100802
803 memset(&task, 0, sizeof(task));
804 memcpy(&task.tf_array[7], &args[1], 6);
805 task.tf.command = args[0];
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100806 task.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100807
808 err = ide_no_data_taskfile(drive, &task);
809
810 args[0] = task.tf.command;
811 memcpy(&args[1], &task.tf_array[7], 6);
812
813 if (copy_to_user(p, args, 7))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 err = -EFAULT;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return err;
817}