blob: 6a17ab54f80152f4a81ca7411049f334e0f114af [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 Zolnierkiewiczed4af482008-07-15 21:21:48 +0200112 ide_set_irq(drive, 1);
113 SELECT_MASK(drive, 0);
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200114 hwif->tf_load(drive, task);
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +0200115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100117 switch (task->data_phase) {
118 case TASKFILE_MULTI_OUT:
119 case TASKFILE_OUT:
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200120 hwif->OUTBSYNC(drive, tf->command, hwif->io_ports.command_addr);
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100121 ndelay(400); /* FIXME */
122 return pre_task_out_intr(drive, task->rq);
123 case TASKFILE_MULTI_IN:
124 case TASKFILE_IN:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100125 handler = task_in_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100126 /* fall-through */
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100127 case TASKFILE_NO_DATA:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100128 if (handler == NULL)
129 handler = task_no_data_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100130 /* WIN_{SPECIFY,RESTORE,SETMULT} use custom handlers */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100131 if (task->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) {
132 switch (tf->command) {
133 case WIN_SPECIFY: handler = set_geometry_intr; break;
134 case WIN_RESTORE: handler = recal_intr; break;
135 case WIN_SETMULT: handler = set_multmode_intr; break;
136 }
137 }
138 ide_execute_command(drive, tf->command, handler,
139 WAIT_WORSTCASE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return ide_started;
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100141 default:
142 if (task_dma_ok(task) == 0 || drive->using_dma == 0 ||
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200143 dma_ops->dma_setup(drive))
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100144 return ide_stopped;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200145 dma_ops->dma_exec_cmd(drive, tf->command);
146 dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100147 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100150EXPORT_SYMBOL_GPL(do_rw_taskfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
153 * set_multmode_intr() is invoked on completion of a WIN_SETMULT cmd.
154 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100155static ide_startstop_t set_multmode_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100157 u8 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100159 if (OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 drive->mult_count = drive->mult_req;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100161 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 drive->mult_req = drive->mult_count = 0;
163 drive->special.b.recalibrate = 1;
164 (void) ide_dump_status(drive, "set_multmode", stat);
165 }
166 return ide_stopped;
167}
168
169/*
170 * set_geometry_intr() is invoked on completion of a WIN_SPECIFY cmd.
171 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100172static ide_startstop_t set_geometry_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 int retries = 5;
175 u8 stat;
176
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100177 while (((stat = ide_read_status(drive)) & BUSY_STAT) && retries--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 udelay(10);
179
180 if (OK_STAT(stat, READY_STAT, BAD_STAT))
181 return ide_stopped;
182
183 if (stat & (ERR_STAT|DRQ_STAT))
184 return ide_error(drive, "set_geometry_intr", stat);
185
Eric Sesterhenn125e1872006-06-23 02:06:06 -0700186 BUG_ON(HWGROUP(drive)->handler != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 ide_set_handler(drive, &set_geometry_intr, WAIT_WORSTCASE, NULL);
188 return ide_started;
189}
190
191/*
192 * recal_intr() is invoked on completion of a WIN_RESTORE (recalibrate) cmd.
193 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100194static ide_startstop_t recal_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100196 u8 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100198 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return ide_error(drive, "recal_intr", stat);
200 return ide_stopped;
201}
202
203/*
204 * Handler for commands without a data phase
205 */
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100206static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 ide_task_t *args = HWGROUP(drive)->rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 u8 stat;
210
Ingo Molnar366c7f52006-07-03 00:25:25 -0700211 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100212 stat = ide_read_status(drive);
213
214 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return ide_error(drive, "task_no_data_intr", stat);
216 /* calls ide_end_drive_cmd */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (args)
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100219 ide_end_drive_cmd(drive, stat, ide_read_error(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 return ide_stopped;
222}
223
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100224static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200226 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 u8 stat;
228
229 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200230 * Last sector was transfered, wait until device is ready. This can
231 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200233 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100234 stat = ide_read_status(drive);
235
236 if (stat & BUSY_STAT)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200237 udelay(10);
238 else
239 break;
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200242 if (stat & BUSY_STAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
244
245 return stat;
246}
247
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200248static void ide_pio_sector(ide_drive_t *drive, struct request *rq,
249 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 ide_hwif_t *hwif = drive->hwif;
252 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200253 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 struct page *page;
255#ifdef CONFIG_HIGHMEM
256 unsigned long flags;
257#endif
258 unsigned int offset;
259 u8 *buf;
260
Jens Axboe55c16a72007-07-25 08:13:56 +0200261 cursg = hwif->cursg;
262 if (!cursg) {
263 cursg = sg;
264 hwif->cursg = sg;
265 }
266
Jens Axboe45711f12007-10-22 21:19:53 +0200267 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200268 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /* get the current page and offset */
271 page = nth_page(page, (offset >> PAGE_SHIFT));
272 offset %= PAGE_SIZE;
273
274#ifdef CONFIG_HIGHMEM
275 local_irq_save(flags);
276#endif
277 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
278
279 hwif->nleft--;
280 hwif->cursg_ofs++;
281
Jens Axboe55c16a72007-07-25 08:13:56 +0200282 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
283 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 hwif->cursg_ofs = 0;
285 }
286
287 /* do the actual data transfer */
288 if (write)
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200289 hwif->output_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 else
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200291 hwif->input_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
294#ifdef CONFIG_HIGHMEM
295 local_irq_restore(flags);
296#endif
297}
298
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200299static void ide_pio_multi(ide_drive_t *drive, struct request *rq,
300 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 unsigned int nsect;
303
304 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
305 while (nsect--)
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200306 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Arjan van de Ven858119e2006-01-14 13:20:43 -0800309static void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 unsigned int write)
311{
Tejun Heo35cf2b92008-01-26 20:13:10 +0100312 u8 saved_io_32bit = drive->io_32bit;
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (rq->bio) /* fs request */
315 rq->errors = 0;
316
Tejun Heo35cf2b92008-01-26 20:13:10 +0100317 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
318 ide_task_t *task = rq->special;
319
320 if (task->tf_flags & IDE_TFLAG_IO_16BIT)
321 drive->io_32bit = 0;
322 }
323
Andrew Morton651c29a2006-02-15 15:17:37 -0800324 touch_softlockup_watchdog();
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 switch (drive->hwif->data_phase) {
327 case TASKFILE_MULTI_IN:
328 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200329 ide_pio_multi(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 break;
331 default:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200332 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 break;
334 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100335
336 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
340 const char *s, u8 stat)
341{
342 if (rq->bio) {
343 ide_hwif_t *hwif = drive->hwif;
344 int sectors = hwif->nsect - hwif->nleft;
345
346 switch (hwif->data_phase) {
347 case TASKFILE_IN:
348 if (hwif->nleft)
349 break;
350 /* fall through */
351 case TASKFILE_OUT:
352 sectors--;
353 break;
354 case TASKFILE_MULTI_IN:
355 if (hwif->nleft)
356 break;
357 /* fall through */
358 case TASKFILE_MULTI_OUT:
359 sectors -= drive->mult_count;
360 default:
361 break;
362 }
363
364 if (sectors > 0) {
365 ide_driver_t *drv;
366
367 drv = *(ide_driver_t **)rq->rq_disk->private_data;
368 drv->end_request(drive, 1, sectors);
369 }
370 }
371 return ide_error(drive, s, stat);
372}
373
Tejun Heo4d7a9842008-01-26 20:13:11 +0100374void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200376 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100377 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Tejun Heo4d7a9842008-01-26 20:13:11 +0100379 ide_end_drive_cmd(drive, stat, err);
380 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
Richard Purdie03731fb2006-03-31 02:31:15 -0800383 if (rq->rq_disk) {
384 ide_driver_t *drv;
385
386 drv = *(ide_driver_t **)rq->rq_disk->private_data;;
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100387 drv->end_request(drive, 1, rq->nr_sectors);
Richard Purdie03731fb2006-03-31 02:31:15 -0800388 } else
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100389 ide_end_request(drive, 1, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700393 * We got an interrupt on a task_in case, but no errors and no DRQ.
394 *
395 * It might be a spurious irq (shared irq), but it might be a
396 * command that had no output.
397 */
398static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat)
399{
400 /* Command all done? */
401 if (OK_STAT(stat, READY_STAT, BUSY_STAT)) {
402 task_end_request(drive, rq, stat);
403 return ide_stopped;
404 }
405
406 /* Assume it was a spurious irq */
407 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
408 return ide_started;
409}
410
411/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * Handler for command with PIO data-in phase (Read/Read Multiple).
413 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100414static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 ide_hwif_t *hwif = drive->hwif;
417 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100418 u8 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700420 /* Error? */
421 if (stat & ERR_STAT)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200422 return task_error(drive, rq, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700423
424 /* Didn't want any data? Odd. */
425 if (!(stat & DRQ_STAT))
426 return task_in_unexpected(drive, rq, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 ide_pio_datablock(drive, rq, 0);
429
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700430 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (!hwif->nleft) {
432 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100433 if (!OK_STAT(stat, 0, BAD_STAT))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200434 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 task_end_request(drive, rq, stat);
436 return ide_stopped;
437 }
438
439 /* Still data left to transfer. */
440 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
441
442 return ide_started;
443}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445/*
446 * Handler for command with PIO data-out phase (Write/Write Multiple).
447 */
448static ide_startstop_t task_out_intr (ide_drive_t *drive)
449{
450 ide_hwif_t *hwif = drive->hwif;
451 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100452 u8 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200455 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 /* Deal with unexpected ATA data phase. */
458 if (((stat & DRQ_STAT) == 0) ^ !hwif->nleft)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200459 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 if (!hwif->nleft) {
462 task_end_request(drive, rq, stat);
463 return ide_stopped;
464 }
465
466 /* Still data left to transfer. */
467 ide_pio_datablock(drive, rq, 1);
468 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
469
470 return ide_started;
471}
472
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100473static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 ide_startstop_t startstop;
476
Bartlomiej Zolnierkiewicz4906f3b2008-01-26 20:13:11 +0100477 if (ide_wait_stat(&startstop, drive, DRQ_STAT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 drive->bad_wstat, WAIT_DRQ)) {
479 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
480 drive->name,
481 drive->hwif->data_phase ? "MULT" : "",
482 drive->addressing ? "_EXT" : "");
483 return startstop;
484 }
485
486 if (!drive->unmask)
487 local_irq_disable();
488
489 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
490 ide_pio_datablock(drive, rq, 1);
491
492 return ide_started;
493}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100495int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200497 struct request *rq;
498 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200500 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
501 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
502 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /*
505 * (ks) We transfer currently only whole sectors.
506 * This is suffient for now. But, it would be great,
507 * if we would find a solution to transfer any size.
508 * To support special commands like READ LONG.
509 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200510 rq->hard_nr_sectors = rq->nr_sectors = nsect;
511 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100513 if (task->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200514 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200516 rq->special = task;
517 task->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200519 error = blk_execute_rq(drive->queue, NULL, rq, 0);
520 blk_put_request(rq);
521
522 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525EXPORT_SYMBOL(ide_raw_taskfile);
526
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100527int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task)
528{
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100529 task->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100530
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100531 return ide_raw_taskfile(drive, task, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100532}
533EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
534
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100535#ifdef CONFIG_IDE_TASK_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
537{
538 ide_task_request_t *req_task;
539 ide_task_t args;
540 u8 *outbuf = NULL;
541 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100542 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int err = 0;
544 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100545 unsigned int taskin = 0;
546 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100547 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 char __user *buf = (char __user *)arg;
549
550// printk("IDE Taskfile ...\n");
551
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800552 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (copy_from_user(req_task, buf, tasksize)) {
555 kfree(req_task);
556 return -EFAULT;
557 }
558
Alan Cox3a42bb22006-10-16 16:31:02 +0100559 taskout = req_task->out_size;
560 taskin = req_task->in_size;
561
562 if (taskin > 65536 || taskout > 65536) {
563 err = -EINVAL;
564 goto abort;
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 if (taskout) {
568 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800569 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (outbuf == NULL) {
571 err = -ENOMEM;
572 goto abort;
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
575 err = -EFAULT;
576 goto abort;
577 }
578 }
579
580 if (taskin) {
581 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800582 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (inbuf == NULL) {
584 err = -ENOMEM;
585 goto abort;
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (copy_from_user(inbuf, buf + intotal, taskin)) {
588 err = -EFAULT;
589 goto abort;
590 }
591 }
592
593 memset(&args, 0, sizeof(ide_task_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100595 memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
596 memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100597
598 args.data_phase = req_task->data_phase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100600 args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
601 IDE_TFLAG_IN_TF;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100602 if (drive->addressing == 1)
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100603 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100604
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100605 if (req_task->out_flags.all) {
606 args.tf_flags |= IDE_TFLAG_FLAGGED;
607
608 if (req_task->out_flags.b.data)
609 args.tf_flags |= IDE_TFLAG_OUT_DATA;
610
611 if (req_task->out_flags.b.nsector_hob)
612 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
613 if (req_task->out_flags.b.sector_hob)
614 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
615 if (req_task->out_flags.b.lcyl_hob)
616 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
617 if (req_task->out_flags.b.hcyl_hob)
618 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
619
620 if (req_task->out_flags.b.error_feature)
621 args.tf_flags |= IDE_TFLAG_OUT_FEATURE;
622 if (req_task->out_flags.b.nsector)
623 args.tf_flags |= IDE_TFLAG_OUT_NSECT;
624 if (req_task->out_flags.b.sector)
625 args.tf_flags |= IDE_TFLAG_OUT_LBAL;
626 if (req_task->out_flags.b.lcyl)
627 args.tf_flags |= IDE_TFLAG_OUT_LBAM;
628 if (req_task->out_flags.b.hcyl)
629 args.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100630 } else {
631 args.tf_flags |= IDE_TFLAG_OUT_TF;
632 if (args.tf_flags & IDE_TFLAG_LBA48)
633 args.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100634 }
635
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100636 if (req_task->in_flags.b.data)
637 args.tf_flags |= IDE_TFLAG_IN_DATA;
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 case TASKFILE_MULTI_OUT:
641 if (!drive->mult_count) {
642 /* (hs): give up if multcount is not set */
643 printk(KERN_ERR "%s: %s Multimode Write " \
644 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200645 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 err = -EPERM;
647 goto abort;
648 }
649 /* fall through */
650 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100651 /* fall through */
652 case TASKFILE_OUT_DMAQ:
653 case TASKFILE_OUT_DMA:
654 nsect = taskout / SECTOR_SIZE;
655 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 break;
657 case TASKFILE_MULTI_IN:
658 if (!drive->mult_count) {
659 /* (hs): give up if multcount is not set */
660 printk(KERN_ERR "%s: %s Multimode Read failure " \
661 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200662 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 err = -EPERM;
664 goto abort;
665 }
666 /* fall through */
667 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100668 /* fall through */
669 case TASKFILE_IN_DMAQ:
670 case TASKFILE_IN_DMA:
671 nsect = taskin / SECTOR_SIZE;
672 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
674 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 break;
676 default:
677 err = -EFAULT;
678 goto abort;
679 }
680
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100681 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
682 nsect = 0;
683 else if (!nsect) {
684 nsect = (args.tf.hob_nsect << 8) | args.tf.nsect;
685
686 if (!nsect) {
687 printk(KERN_ERR "%s: in/out command without data\n",
688 drive->name);
689 err = -EFAULT;
690 goto abort;
691 }
692 }
693
694 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
695 args.tf_flags |= IDE_TFLAG_WRITE;
696
697 err = ide_raw_taskfile(drive, &args, data_buf, nsect);
698
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100699 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
700 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100701
702 if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) &&
703 req_task->in_flags.all == 0) {
704 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
705 if (drive->addressing == 1)
706 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 if (copy_to_user(buf, req_task, tasksize)) {
710 err = -EFAULT;
711 goto abort;
712 }
713 if (taskout) {
714 int outtotal = tasksize;
715 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
716 err = -EFAULT;
717 goto abort;
718 }
719 }
720 if (taskin) {
721 int intotal = tasksize + taskout;
722 if (copy_to_user(buf + intotal, inbuf, taskin)) {
723 err = -EFAULT;
724 goto abort;
725 }
726 }
727abort:
728 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800729 kfree(outbuf);
730 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return err;
735}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738int ide_cmd_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
739{
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100740 u8 *buf = NULL;
741 int bufsize = 0, err = 0;
742 u8 args[4], xfer_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 ide_task_t tfargs;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100744 struct ide_taskfile *tf = &tfargs.tf;
Bartlomiej Zolnierkiewicz5efe7c52008-02-02 19:56:46 +0100745 struct hd_driveid *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 if (NULL == (void *) arg) {
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200748 struct request *rq;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100749
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200750 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
751 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
752 err = blk_execute_rq(drive->queue, NULL, rq, 0);
753 blk_put_request(rq);
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100754
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200755 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
758 if (copy_from_user(args, (void __user *)arg, 4))
759 return -EFAULT;
760
761 memset(&tfargs, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100762 tf->feature = args[2];
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100763 if (args[0] == WIN_SMART) {
764 tf->nsect = args[3];
765 tf->lbal = args[1];
766 tf->lbam = 0x4f;
767 tf->lbah = 0xc2;
768 tfargs.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_IN_NSECT;
769 } else {
770 tf->nsect = args[1];
771 tfargs.tf_flags = IDE_TFLAG_OUT_FEATURE |
772 IDE_TFLAG_OUT_NSECT | IDE_TFLAG_IN_NSECT;
773 }
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100774 tf->command = args[0];
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100775 tfargs.data_phase = args[3] ? TASKFILE_IN : TASKFILE_NO_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 if (args[3]) {
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100778 tfargs.tf_flags |= IDE_TFLAG_IO_16BIT;
779 bufsize = SECTOR_WORDS * 4 * args[3];
780 buf = kzalloc(bufsize, GFP_KERNEL);
781 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100784
Bartlomiej Zolnierkiewicz5efe7c52008-02-02 19:56:46 +0100785 if (tf->command == WIN_SETFEATURES &&
786 tf->feature == SETFEATURES_XFER &&
787 tf->nsect >= XFER_SW_DMA_0 &&
788 (id->dma_ultra || id->dma_mword || id->dma_1word)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 xfer_rate = args[1];
Bartlomiej Zolnierkiewiczaf10f772008-02-02 19:56:46 +0100790 if (tf->nsect > XFER_UDMA_2 && !eighty_ninty_three(drive)) {
791 printk(KERN_WARNING "%s: UDMA speeds >UDMA33 cannot "
792 "be set\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 goto abort;
Bartlomiej Zolnierkiewiczaf10f772008-02-02 19:56:46 +0100794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100797 err = ide_raw_taskfile(drive, &tfargs, buf, args[3]);
798
799 args[0] = tf->status;
800 args[1] = tf->error;
801 args[2] = tf->nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 if (!err && xfer_rate) {
804 /* active-retuning-calls future */
805 ide_set_xfer_rate(drive, xfer_rate);
806 ide_driveid_update(drive);
807 }
808abort:
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100809 if (copy_to_user((void __user *)arg, &args, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 err = -EFAULT;
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100811 if (buf) {
812 if (copy_to_user((void __user *)(arg + 4), buf, bufsize))
813 err = -EFAULT;
814 kfree(buf);
815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return err;
817}
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819int ide_task_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
820{
821 void __user *p = (void __user *)arg;
822 int err = 0;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100823 u8 args[7];
824 ide_task_t task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 if (copy_from_user(args, p, 7))
827 return -EFAULT;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100828
829 memset(&task, 0, sizeof(task));
830 memcpy(&task.tf_array[7], &args[1], 6);
831 task.tf.command = args[0];
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100832 task.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100833
834 err = ide_no_data_taskfile(drive, &task);
835
836 args[0] = task.tf.command;
837 memcpy(&args[1], &task.tf_array[7], 6);
838
839 if (copy_to_user(p, args, 7))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 err = -EFAULT;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return err;
843}