blob: b6a1c4b511299a1380de86a70430c679507dbf8e [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/module.h>
12#include <linux/types.h>
13#include <linux/string.h>
14#include <linux/kernel.h>
15#include <linux/timer.h>
16#include <linux/mm.h>
Andrew Morton651c29a2006-02-15 15:17:37 -080017#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/interrupt.h>
19#include <linux/major.h>
20#include <linux/errno.h>
21#include <linux/genhd.h>
22#include <linux/blkpg.h>
23#include <linux/slab.h>
24#include <linux/pci.h>
25#include <linux/delay.h>
26#include <linux/hdreg.h>
27#include <linux/ide.h>
28#include <linux/bitops.h>
Jens Axboe55c16a72007-07-25 08:13:56 +020029#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/byteorder.h>
32#include <asm/irq.h>
33#include <asm/uaccess.h>
34#include <asm/io.h>
35
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020036void ide_tf_dump(const char *s, struct ide_taskfile *tf)
37{
38#ifdef DEBUG
39 printk("%s: tf: feat 0x%02x nsect 0x%02x lbal 0x%02x "
40 "lbam 0x%02x lbah 0x%02x dev 0x%02x cmd 0x%02x\n",
41 s, tf->feature, tf->nsect, tf->lbal,
42 tf->lbam, tf->lbah, tf->device, tf->command);
43 printk("%s: hob: nsect 0x%02x lbal 0x%02x "
44 "lbam 0x%02x lbah 0x%02x\n",
45 s, tf->hob_nsect, tf->hob_lbal,
46 tf->hob_lbam, tf->hob_lbah);
47#endif
48}
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050int taskfile_lib_get_identify (ide_drive_t *drive, u8 *buf)
51{
52 ide_task_t args;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010055 args.tf.nsect = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 if (drive->media == ide_disk)
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010057 args.tf.command = WIN_IDENTIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 else
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010059 args.tf.command = WIN_PIDENTIFY;
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +010060 args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +010061 args.data_phase = TASKFILE_IN;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +010062 return ide_raw_taskfile(drive, &args, buf, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +010065static int inline task_dma_ok(ide_task_t *task)
66{
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +010067 if (blk_fs_request(task->rq) || (task->tf_flags & IDE_TFLAG_FLAGGED))
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +010068 return 1;
69
70 switch (task->tf.command) {
71 case WIN_WRITEDMA_ONCE:
72 case WIN_WRITEDMA:
73 case WIN_WRITEDMA_EXT:
74 case WIN_READDMA_ONCE:
75 case WIN_READDMA:
76 case WIN_READDMA_EXT:
77 case WIN_IDENTIFY_DMA:
78 return 1;
79 }
80
81 return 0;
82}
83
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010084static ide_startstop_t task_no_data_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010085static ide_startstop_t set_geometry_intr(ide_drive_t *);
86static ide_startstop_t recal_intr(ide_drive_t *);
87static ide_startstop_t set_multmode_intr(ide_drive_t *);
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +010088static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct request *);
89static ide_startstop_t task_in_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task)
92{
93 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010094 struct ide_taskfile *tf = &task->tf;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010095 ide_handler_t *handler = NULL;
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +020096 const struct ide_dma_ops *dma_ops = hwif->dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Bartlomiej Zolnierkiewicz1edee602008-01-25 22:17:15 +010098 if (task->data_phase == TASKFILE_MULTI_IN ||
99 task->data_phase == TASKFILE_MULTI_OUT) {
100 if (!drive->mult_count) {
101 printk(KERN_ERR "%s: multimode not set!\n",
102 drive->name);
103 return ide_stopped;
104 }
105 }
106
107 if (task->tf_flags & IDE_TFLAG_FLAGGED)
108 task->tf_flags |= IDE_TFLAG_FLAGGED_SET_IN_FLAGS;
109
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +0200110 if ((task->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {
111 ide_tf_dump(drive->name, tf);
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200112 hwif->tf_load(drive, task);
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +0200113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100115 switch (task->data_phase) {
116 case TASKFILE_MULTI_OUT:
117 case TASKFILE_OUT:
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200118 hwif->OUTBSYNC(drive, tf->command, hwif->io_ports.command_addr);
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100119 ndelay(400); /* FIXME */
120 return pre_task_out_intr(drive, task->rq);
121 case TASKFILE_MULTI_IN:
122 case TASKFILE_IN:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100123 handler = task_in_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100124 /* fall-through */
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100125 case TASKFILE_NO_DATA:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100126 if (handler == NULL)
127 handler = task_no_data_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100128 /* WIN_{SPECIFY,RESTORE,SETMULT} use custom handlers */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100129 if (task->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) {
130 switch (tf->command) {
131 case WIN_SPECIFY: handler = set_geometry_intr; break;
132 case WIN_RESTORE: handler = recal_intr; break;
133 case WIN_SETMULT: handler = set_multmode_intr; break;
134 }
135 }
136 ide_execute_command(drive, tf->command, handler,
137 WAIT_WORSTCASE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return ide_started;
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100139 default:
140 if (task_dma_ok(task) == 0 || drive->using_dma == 0 ||
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200141 dma_ops->dma_setup(drive))
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100142 return ide_stopped;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200143 dma_ops->dma_exec_cmd(drive, tf->command);
144 dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100145 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100148EXPORT_SYMBOL_GPL(do_rw_taskfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
151 * set_multmode_intr() is invoked on completion of a WIN_SETMULT cmd.
152 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100153static ide_startstop_t set_multmode_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100155 u8 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100157 if (OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 drive->mult_count = drive->mult_req;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100159 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 drive->mult_req = drive->mult_count = 0;
161 drive->special.b.recalibrate = 1;
162 (void) ide_dump_status(drive, "set_multmode", stat);
163 }
164 return ide_stopped;
165}
166
167/*
168 * set_geometry_intr() is invoked on completion of a WIN_SPECIFY cmd.
169 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100170static ide_startstop_t set_geometry_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 int retries = 5;
173 u8 stat;
174
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100175 while (((stat = ide_read_status(drive)) & BUSY_STAT) && retries--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 udelay(10);
177
178 if (OK_STAT(stat, READY_STAT, BAD_STAT))
179 return ide_stopped;
180
181 if (stat & (ERR_STAT|DRQ_STAT))
182 return ide_error(drive, "set_geometry_intr", stat);
183
Eric Sesterhenn125e1872006-06-23 02:06:06 -0700184 BUG_ON(HWGROUP(drive)->handler != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ide_set_handler(drive, &set_geometry_intr, WAIT_WORSTCASE, NULL);
186 return ide_started;
187}
188
189/*
190 * recal_intr() is invoked on completion of a WIN_RESTORE (recalibrate) cmd.
191 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100192static ide_startstop_t recal_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100194 u8 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100196 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return ide_error(drive, "recal_intr", stat);
198 return ide_stopped;
199}
200
201/*
202 * Handler for commands without a data phase
203 */
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100204static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 ide_task_t *args = HWGROUP(drive)->rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 u8 stat;
208
Ingo Molnar366c7f52006-07-03 00:25:25 -0700209 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100210 stat = ide_read_status(drive);
211
212 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return ide_error(drive, "task_no_data_intr", stat);
214 /* calls ide_end_drive_cmd */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (args)
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100217 ide_end_drive_cmd(drive, stat, ide_read_error(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 return ide_stopped;
220}
221
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100222static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200224 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 u8 stat;
226
227 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200228 * Last sector was transfered, wait until device is ready. This can
229 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200231 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100232 stat = ide_read_status(drive);
233
234 if (stat & BUSY_STAT)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200235 udelay(10);
236 else
237 break;
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200240 if (stat & BUSY_STAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
242
243 return stat;
244}
245
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200246static void ide_pio_sector(ide_drive_t *drive, struct request *rq,
247 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 ide_hwif_t *hwif = drive->hwif;
250 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200251 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 struct page *page;
253#ifdef CONFIG_HIGHMEM
254 unsigned long flags;
255#endif
256 unsigned int offset;
257 u8 *buf;
258
Jens Axboe55c16a72007-07-25 08:13:56 +0200259 cursg = hwif->cursg;
260 if (!cursg) {
261 cursg = sg;
262 hwif->cursg = sg;
263 }
264
Jens Axboe45711f12007-10-22 21:19:53 +0200265 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200266 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 /* get the current page and offset */
269 page = nth_page(page, (offset >> PAGE_SHIFT));
270 offset %= PAGE_SIZE;
271
272#ifdef CONFIG_HIGHMEM
273 local_irq_save(flags);
274#endif
275 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
276
277 hwif->nleft--;
278 hwif->cursg_ofs++;
279
Jens Axboe55c16a72007-07-25 08:13:56 +0200280 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
281 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 hwif->cursg_ofs = 0;
283 }
284
285 /* do the actual data transfer */
286 if (write)
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200287 hwif->output_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 else
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200289 hwif->input_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
292#ifdef CONFIG_HIGHMEM
293 local_irq_restore(flags);
294#endif
295}
296
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200297static void ide_pio_multi(ide_drive_t *drive, struct request *rq,
298 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 unsigned int nsect;
301
302 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
303 while (nsect--)
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200304 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Arjan van de Ven858119e2006-01-14 13:20:43 -0800307static void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 unsigned int write)
309{
Tejun Heo35cf2b92008-01-26 20:13:10 +0100310 u8 saved_io_32bit = drive->io_32bit;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (rq->bio) /* fs request */
313 rq->errors = 0;
314
Tejun Heo35cf2b92008-01-26 20:13:10 +0100315 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
316 ide_task_t *task = rq->special;
317
318 if (task->tf_flags & IDE_TFLAG_IO_16BIT)
319 drive->io_32bit = 0;
320 }
321
Andrew Morton651c29a2006-02-15 15:17:37 -0800322 touch_softlockup_watchdog();
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 switch (drive->hwif->data_phase) {
325 case TASKFILE_MULTI_IN:
326 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200327 ide_pio_multi(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 break;
329 default:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200330 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100333
334 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
338 const char *s, u8 stat)
339{
340 if (rq->bio) {
341 ide_hwif_t *hwif = drive->hwif;
342 int sectors = hwif->nsect - hwif->nleft;
343
344 switch (hwif->data_phase) {
345 case TASKFILE_IN:
346 if (hwif->nleft)
347 break;
348 /* fall through */
349 case TASKFILE_OUT:
350 sectors--;
351 break;
352 case TASKFILE_MULTI_IN:
353 if (hwif->nleft)
354 break;
355 /* fall through */
356 case TASKFILE_MULTI_OUT:
357 sectors -= drive->mult_count;
358 default:
359 break;
360 }
361
362 if (sectors > 0) {
363 ide_driver_t *drv;
364
365 drv = *(ide_driver_t **)rq->rq_disk->private_data;
366 drv->end_request(drive, 1, sectors);
367 }
368 }
369 return ide_error(drive, s, stat);
370}
371
Tejun Heo4d7a9842008-01-26 20:13:11 +0100372void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200374 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100375 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Tejun Heo4d7a9842008-01-26 20:13:11 +0100377 ide_end_drive_cmd(drive, stat, err);
378 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
Richard Purdie03731fb2006-03-31 02:31:15 -0800381 if (rq->rq_disk) {
382 ide_driver_t *drv;
383
384 drv = *(ide_driver_t **)rq->rq_disk->private_data;;
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100385 drv->end_request(drive, 1, rq->nr_sectors);
Richard Purdie03731fb2006-03-31 02:31:15 -0800386 } else
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100387 ide_end_request(drive, 1, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700391 * We got an interrupt on a task_in case, but no errors and no DRQ.
392 *
393 * It might be a spurious irq (shared irq), but it might be a
394 * command that had no output.
395 */
396static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat)
397{
398 /* Command all done? */
399 if (OK_STAT(stat, READY_STAT, BUSY_STAT)) {
400 task_end_request(drive, rq, stat);
401 return ide_stopped;
402 }
403
404 /* Assume it was a spurious irq */
405 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
406 return ide_started;
407}
408
409/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * Handler for command with PIO data-in phase (Read/Read Multiple).
411 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100412static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 ide_hwif_t *hwif = drive->hwif;
415 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100416 u8 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700418 /* Error? */
419 if (stat & ERR_STAT)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200420 return task_error(drive, rq, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700421
422 /* Didn't want any data? Odd. */
423 if (!(stat & DRQ_STAT))
424 return task_in_unexpected(drive, rq, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 ide_pio_datablock(drive, rq, 0);
427
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700428 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (!hwif->nleft) {
430 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100431 if (!OK_STAT(stat, 0, BAD_STAT))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200432 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 task_end_request(drive, rq, stat);
434 return ide_stopped;
435 }
436
437 /* Still data left to transfer. */
438 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
439
440 return ide_started;
441}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443/*
444 * Handler for command with PIO data-out phase (Write/Write Multiple).
445 */
446static ide_startstop_t task_out_intr (ide_drive_t *drive)
447{
448 ide_hwif_t *hwif = drive->hwif;
449 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100450 u8 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200453 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 /* Deal with unexpected ATA data phase. */
456 if (((stat & DRQ_STAT) == 0) ^ !hwif->nleft)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200457 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if (!hwif->nleft) {
460 task_end_request(drive, rq, stat);
461 return ide_stopped;
462 }
463
464 /* Still data left to transfer. */
465 ide_pio_datablock(drive, rq, 1);
466 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
467
468 return ide_started;
469}
470
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100471static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 ide_startstop_t startstop;
474
Bartlomiej Zolnierkiewicz4906f3b2008-01-26 20:13:11 +0100475 if (ide_wait_stat(&startstop, drive, DRQ_STAT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 drive->bad_wstat, WAIT_DRQ)) {
477 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
478 drive->name,
479 drive->hwif->data_phase ? "MULT" : "",
480 drive->addressing ? "_EXT" : "");
481 return startstop;
482 }
483
484 if (!drive->unmask)
485 local_irq_disable();
486
487 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
488 ide_pio_datablock(drive, rq, 1);
489
490 return ide_started;
491}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100493int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200495 struct request *rq;
496 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200498 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
499 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
500 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 /*
503 * (ks) We transfer currently only whole sectors.
504 * This is suffient for now. But, it would be great,
505 * if we would find a solution to transfer any size.
506 * To support special commands like READ LONG.
507 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200508 rq->hard_nr_sectors = rq->nr_sectors = nsect;
509 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100511 if (task->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200512 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200514 rq->special = task;
515 task->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200517 error = blk_execute_rq(drive->queue, NULL, rq, 0);
518 blk_put_request(rq);
519
520 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523EXPORT_SYMBOL(ide_raw_taskfile);
524
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100525int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task)
526{
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100527 task->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100528
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100529 return ide_raw_taskfile(drive, task, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100530}
531EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
532
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100533#ifdef CONFIG_IDE_TASK_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
535{
536 ide_task_request_t *req_task;
537 ide_task_t args;
538 u8 *outbuf = NULL;
539 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100540 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int err = 0;
542 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100543 unsigned int taskin = 0;
544 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100545 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 char __user *buf = (char __user *)arg;
547
548// printk("IDE Taskfile ...\n");
549
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800550 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (copy_from_user(req_task, buf, tasksize)) {
553 kfree(req_task);
554 return -EFAULT;
555 }
556
Alan Cox3a42bb22006-10-16 16:31:02 +0100557 taskout = req_task->out_size;
558 taskin = req_task->in_size;
559
560 if (taskin > 65536 || taskout > 65536) {
561 err = -EINVAL;
562 goto abort;
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (taskout) {
566 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800567 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (outbuf == NULL) {
569 err = -ENOMEM;
570 goto abort;
571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
573 err = -EFAULT;
574 goto abort;
575 }
576 }
577
578 if (taskin) {
579 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800580 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (inbuf == NULL) {
582 err = -ENOMEM;
583 goto abort;
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (copy_from_user(inbuf, buf + intotal, taskin)) {
586 err = -EFAULT;
587 goto abort;
588 }
589 }
590
591 memset(&args, 0, sizeof(ide_task_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100593 memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
594 memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100595
596 args.data_phase = req_task->data_phase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100598 args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
599 IDE_TFLAG_IN_TF;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100600 if (drive->addressing == 1)
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100601 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100602
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100603 if (req_task->out_flags.all) {
604 args.tf_flags |= IDE_TFLAG_FLAGGED;
605
606 if (req_task->out_flags.b.data)
607 args.tf_flags |= IDE_TFLAG_OUT_DATA;
608
609 if (req_task->out_flags.b.nsector_hob)
610 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
611 if (req_task->out_flags.b.sector_hob)
612 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
613 if (req_task->out_flags.b.lcyl_hob)
614 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
615 if (req_task->out_flags.b.hcyl_hob)
616 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
617
618 if (req_task->out_flags.b.error_feature)
619 args.tf_flags |= IDE_TFLAG_OUT_FEATURE;
620 if (req_task->out_flags.b.nsector)
621 args.tf_flags |= IDE_TFLAG_OUT_NSECT;
622 if (req_task->out_flags.b.sector)
623 args.tf_flags |= IDE_TFLAG_OUT_LBAL;
624 if (req_task->out_flags.b.lcyl)
625 args.tf_flags |= IDE_TFLAG_OUT_LBAM;
626 if (req_task->out_flags.b.hcyl)
627 args.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100628 } else {
629 args.tf_flags |= IDE_TFLAG_OUT_TF;
630 if (args.tf_flags & IDE_TFLAG_LBA48)
631 args.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100632 }
633
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100634 if (req_task->in_flags.b.data)
635 args.tf_flags |= IDE_TFLAG_IN_DATA;
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 case TASKFILE_MULTI_OUT:
639 if (!drive->mult_count) {
640 /* (hs): give up if multcount is not set */
641 printk(KERN_ERR "%s: %s Multimode Write " \
642 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200643 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 err = -EPERM;
645 goto abort;
646 }
647 /* fall through */
648 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100649 /* fall through */
650 case TASKFILE_OUT_DMAQ:
651 case TASKFILE_OUT_DMA:
652 nsect = taskout / SECTOR_SIZE;
653 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 break;
655 case TASKFILE_MULTI_IN:
656 if (!drive->mult_count) {
657 /* (hs): give up if multcount is not set */
658 printk(KERN_ERR "%s: %s Multimode Read failure " \
659 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200660 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 err = -EPERM;
662 goto abort;
663 }
664 /* fall through */
665 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100666 /* fall through */
667 case TASKFILE_IN_DMAQ:
668 case TASKFILE_IN_DMA:
669 nsect = taskin / SECTOR_SIZE;
670 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 break;
672 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
674 default:
675 err = -EFAULT;
676 goto abort;
677 }
678
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100679 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
680 nsect = 0;
681 else if (!nsect) {
682 nsect = (args.tf.hob_nsect << 8) | args.tf.nsect;
683
684 if (!nsect) {
685 printk(KERN_ERR "%s: in/out command without data\n",
686 drive->name);
687 err = -EFAULT;
688 goto abort;
689 }
690 }
691
692 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
693 args.tf_flags |= IDE_TFLAG_WRITE;
694
695 err = ide_raw_taskfile(drive, &args, data_buf, nsect);
696
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100697 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
698 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100699
700 if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) &&
701 req_task->in_flags.all == 0) {
702 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
703 if (drive->addressing == 1)
704 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 if (copy_to_user(buf, req_task, tasksize)) {
708 err = -EFAULT;
709 goto abort;
710 }
711 if (taskout) {
712 int outtotal = tasksize;
713 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
714 err = -EFAULT;
715 goto abort;
716 }
717 }
718 if (taskin) {
719 int intotal = tasksize + taskout;
720 if (copy_to_user(buf + intotal, inbuf, taskin)) {
721 err = -EFAULT;
722 goto abort;
723 }
724 }
725abort:
726 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800727 kfree(outbuf);
728 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return err;
733}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100734#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736int ide_cmd_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
737{
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100738 u8 *buf = NULL;
739 int bufsize = 0, err = 0;
740 u8 args[4], xfer_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 ide_task_t tfargs;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100742 struct ide_taskfile *tf = &tfargs.tf;
Bartlomiej Zolnierkiewicz5efe7c52008-02-02 19:56:46 +0100743 struct hd_driveid *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 if (NULL == (void *) arg) {
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200746 struct request *rq;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100747
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200748 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
749 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
750 err = blk_execute_rq(drive->queue, NULL, rq, 0);
751 blk_put_request(rq);
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100752
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200753 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755
756 if (copy_from_user(args, (void __user *)arg, 4))
757 return -EFAULT;
758
759 memset(&tfargs, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100760 tf->feature = args[2];
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100761 if (args[0] == WIN_SMART) {
762 tf->nsect = args[3];
763 tf->lbal = args[1];
764 tf->lbam = 0x4f;
765 tf->lbah = 0xc2;
766 tfargs.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_IN_NSECT;
767 } else {
768 tf->nsect = args[1];
769 tfargs.tf_flags = IDE_TFLAG_OUT_FEATURE |
770 IDE_TFLAG_OUT_NSECT | IDE_TFLAG_IN_NSECT;
771 }
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100772 tf->command = args[0];
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100773 tfargs.data_phase = args[3] ? TASKFILE_IN : TASKFILE_NO_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 if (args[3]) {
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100776 tfargs.tf_flags |= IDE_TFLAG_IO_16BIT;
777 bufsize = SECTOR_WORDS * 4 * args[3];
778 buf = kzalloc(bufsize, GFP_KERNEL);
779 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100782
Bartlomiej Zolnierkiewicz5efe7c52008-02-02 19:56:46 +0100783 if (tf->command == WIN_SETFEATURES &&
784 tf->feature == SETFEATURES_XFER &&
785 tf->nsect >= XFER_SW_DMA_0 &&
786 (id->dma_ultra || id->dma_mword || id->dma_1word)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 xfer_rate = args[1];
Bartlomiej Zolnierkiewiczaf10f772008-02-02 19:56:46 +0100788 if (tf->nsect > XFER_UDMA_2 && !eighty_ninty_three(drive)) {
789 printk(KERN_WARNING "%s: UDMA speeds >UDMA33 cannot "
790 "be set\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 goto abort;
Bartlomiej Zolnierkiewiczaf10f772008-02-02 19:56:46 +0100792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100795 err = ide_raw_taskfile(drive, &tfargs, buf, args[3]);
796
797 args[0] = tf->status;
798 args[1] = tf->error;
799 args[2] = tf->nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 if (!err && xfer_rate) {
802 /* active-retuning-calls future */
803 ide_set_xfer_rate(drive, xfer_rate);
804 ide_driveid_update(drive);
805 }
806abort:
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100807 if (copy_to_user((void __user *)arg, &args, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 err = -EFAULT;
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100809 if (buf) {
810 if (copy_to_user((void __user *)(arg + 4), buf, bufsize))
811 err = -EFAULT;
812 kfree(buf);
813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return err;
815}
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817int ide_task_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
818{
819 void __user *p = (void __user *)arg;
820 int err = 0;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100821 u8 args[7];
822 ide_task_t task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if (copy_from_user(args, p, 7))
825 return -EFAULT;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100826
827 memset(&task, 0, sizeof(task));
828 memcpy(&task.tf_array[7], &args[1], 6);
829 task.tf.command = args[0];
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100830 task.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100831
832 err = ide_no_data_taskfile(drive, &task);
833
834 args[0] = task.tf.command;
835 memcpy(&args[1], &task.tf_array[7], 6);
836
837 if (copy_to_user(p, args, 7))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 err = -EFAULT;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return err;
841}