blob: f889373d7f950f5bbe5782c5a29b525f997a0f69 [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 Zolnierkiewicz374e0422008-07-23 19:55:56 +020067 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +020068 const struct ide_dma_ops *dma_ops = hwif->dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Bartlomiej Zolnierkiewicz1edee602008-01-25 22:17:15 +010070 if (task->data_phase == TASKFILE_MULTI_IN ||
71 task->data_phase == TASKFILE_MULTI_OUT) {
72 if (!drive->mult_count) {
73 printk(KERN_ERR "%s: multimode not set!\n",
74 drive->name);
75 return ide_stopped;
76 }
77 }
78
79 if (task->tf_flags & IDE_TFLAG_FLAGGED)
80 task->tf_flags |= IDE_TFLAG_FLAGGED_SET_IN_FLAGS;
81
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020082 if ((task->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {
83 ide_tf_dump(drive->name, tf);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020084 tp_ops->set_irq(hwif, 1);
Bartlomiej Zolnierkiewiczed4af482008-07-15 21:21:48 +020085 SELECT_MASK(drive, 0);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020086 tp_ops->tf_load(drive, task);
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010089 switch (task->data_phase) {
90 case TASKFILE_MULTI_OUT:
91 case TASKFILE_OUT:
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020092 tp_ops->exec_command(hwif, tf->command);
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010093 ndelay(400); /* FIXME */
94 return pre_task_out_intr(drive, task->rq);
95 case TASKFILE_MULTI_IN:
96 case TASKFILE_IN:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010097 handler = task_in_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010098 /* fall-through */
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010099 case TASKFILE_NO_DATA:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100100 if (handler == NULL)
101 handler = task_no_data_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100102 /* WIN_{SPECIFY,RESTORE,SETMULT} use custom handlers */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100103 if (task->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) {
104 switch (tf->command) {
105 case WIN_SPECIFY: handler = set_geometry_intr; break;
106 case WIN_RESTORE: handler = recal_intr; break;
107 case WIN_SETMULT: handler = set_multmode_intr; break;
108 }
109 }
110 ide_execute_command(drive, tf->command, handler,
111 WAIT_WORSTCASE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return ide_started;
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100113 default:
Bartlomiej Zolnierkiewicz07fe69d2008-07-16 20:33:43 +0200114 if (drive->using_dma == 0 || dma_ops->dma_setup(drive))
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100115 return ide_stopped;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200116 dma_ops->dma_exec_cmd(drive, tf->command);
117 dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100118 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100121EXPORT_SYMBOL_GPL(do_rw_taskfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
124 * set_multmode_intr() is invoked on completion of a WIN_SETMULT cmd.
125 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100126static ide_startstop_t set_multmode_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200128 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz90d2c6b2008-07-24 22:53:36 +0200129 u8 stat;
130
131 local_irq_enable_in_hardirq();
132 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100134 if (OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 drive->mult_count = drive->mult_req;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100136 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 drive->mult_req = drive->mult_count = 0;
138 drive->special.b.recalibrate = 1;
139 (void) ide_dump_status(drive, "set_multmode", stat);
140 }
141 return ide_stopped;
142}
143
144/*
145 * set_geometry_intr() is invoked on completion of a WIN_SPECIFY cmd.
146 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100147static ide_startstop_t set_geometry_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200149 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 int retries = 5;
151 u8 stat;
152
Bartlomiej Zolnierkiewicz90d2c6b2008-07-24 22:53:36 +0200153 local_irq_enable_in_hardirq();
154
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200155 while (1) {
156 stat = hwif->tp_ops->read_status(hwif);
157 if ((stat & BUSY_STAT) == 0 || retries-- == 0)
158 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 udelay(10);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200160 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 if (OK_STAT(stat, READY_STAT, BAD_STAT))
163 return ide_stopped;
164
165 if (stat & (ERR_STAT|DRQ_STAT))
166 return ide_error(drive, "set_geometry_intr", stat);
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 ide_set_handler(drive, &set_geometry_intr, WAIT_WORSTCASE, NULL);
169 return ide_started;
170}
171
172/*
173 * recal_intr() is invoked on completion of a WIN_RESTORE (recalibrate) cmd.
174 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100175static ide_startstop_t recal_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200177 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz90d2c6b2008-07-24 22:53:36 +0200178 u8 stat;
179
180 local_irq_enable_in_hardirq();
181 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100183 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return ide_error(drive, "recal_intr", stat);
185 return ide_stopped;
186}
187
188/*
189 * Handler for commands without a data phase
190 */
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100191static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200193 ide_hwif_t *hwif = drive->hwif;
194 ide_task_t *args = hwif->hwgroup->rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 u8 stat;
196
Ingo Molnar366c7f52006-07-03 00:25:25 -0700197 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200198 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100199
200 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return ide_error(drive, "task_no_data_intr", stat);
202 /* calls ide_end_drive_cmd */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (args)
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100205 ide_end_drive_cmd(drive, stat, ide_read_error(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 return ide_stopped;
208}
209
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100210static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200212 ide_hwif_t *hwif = drive->hwif;
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200213 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 u8 stat;
215
216 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200217 * Last sector was transfered, wait until device is ready. This can
218 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200220 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200221 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100222
223 if (stat & BUSY_STAT)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200224 udelay(10);
225 else
226 break;
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200229 if (stat & BUSY_STAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
231
232 return stat;
233}
234
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200235static void ide_pio_sector(ide_drive_t *drive, struct request *rq,
236 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 ide_hwif_t *hwif = drive->hwif;
239 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200240 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 struct page *page;
242#ifdef CONFIG_HIGHMEM
243 unsigned long flags;
244#endif
245 unsigned int offset;
246 u8 *buf;
247
Jens Axboe55c16a72007-07-25 08:13:56 +0200248 cursg = hwif->cursg;
249 if (!cursg) {
250 cursg = sg;
251 hwif->cursg = sg;
252 }
253
Jens Axboe45711f12007-10-22 21:19:53 +0200254 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200255 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 /* get the current page and offset */
258 page = nth_page(page, (offset >> PAGE_SHIFT));
259 offset %= PAGE_SIZE;
260
261#ifdef CONFIG_HIGHMEM
262 local_irq_save(flags);
263#endif
264 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
265
266 hwif->nleft--;
267 hwif->cursg_ofs++;
268
Jens Axboe55c16a72007-07-25 08:13:56 +0200269 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
270 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 hwif->cursg_ofs = 0;
272 }
273
274 /* do the actual data transfer */
275 if (write)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200276 hwif->tp_ops->output_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 else
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200278 hwif->tp_ops->input_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
281#ifdef CONFIG_HIGHMEM
282 local_irq_restore(flags);
283#endif
284}
285
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200286static void ide_pio_multi(ide_drive_t *drive, struct request *rq,
287 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 unsigned int nsect;
290
291 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
292 while (nsect--)
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200293 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Arjan van de Ven858119e2006-01-14 13:20:43 -0800296static void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 unsigned int write)
298{
Tejun Heo35cf2b92008-01-26 20:13:10 +0100299 u8 saved_io_32bit = drive->io_32bit;
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (rq->bio) /* fs request */
302 rq->errors = 0;
303
Tejun Heo35cf2b92008-01-26 20:13:10 +0100304 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
305 ide_task_t *task = rq->special;
306
307 if (task->tf_flags & IDE_TFLAG_IO_16BIT)
308 drive->io_32bit = 0;
309 }
310
Andrew Morton651c29a2006-02-15 15:17:37 -0800311 touch_softlockup_watchdog();
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 switch (drive->hwif->data_phase) {
314 case TASKFILE_MULTI_IN:
315 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200316 ide_pio_multi(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 break;
318 default:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200319 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 break;
321 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100322
323 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
327 const char *s, u8 stat)
328{
329 if (rq->bio) {
330 ide_hwif_t *hwif = drive->hwif;
331 int sectors = hwif->nsect - hwif->nleft;
332
333 switch (hwif->data_phase) {
334 case TASKFILE_IN:
335 if (hwif->nleft)
336 break;
337 /* fall through */
338 case TASKFILE_OUT:
339 sectors--;
340 break;
341 case TASKFILE_MULTI_IN:
342 if (hwif->nleft)
343 break;
344 /* fall through */
345 case TASKFILE_MULTI_OUT:
346 sectors -= drive->mult_count;
347 default:
348 break;
349 }
350
351 if (sectors > 0) {
352 ide_driver_t *drv;
353
354 drv = *(ide_driver_t **)rq->rq_disk->private_data;
355 drv->end_request(drive, 1, sectors);
356 }
357 }
358 return ide_error(drive, s, stat);
359}
360
Tejun Heo4d7a9842008-01-26 20:13:11 +0100361void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200363 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100364 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Tejun Heo4d7a9842008-01-26 20:13:11 +0100366 ide_end_drive_cmd(drive, stat, err);
367 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369
Richard Purdie03731fb2006-03-31 02:31:15 -0800370 if (rq->rq_disk) {
371 ide_driver_t *drv;
372
373 drv = *(ide_driver_t **)rq->rq_disk->private_data;;
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100374 drv->end_request(drive, 1, rq->nr_sectors);
Richard Purdie03731fb2006-03-31 02:31:15 -0800375 } else
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100376 ide_end_request(drive, 1, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700380 * We got an interrupt on a task_in case, but no errors and no DRQ.
381 *
382 * It might be a spurious irq (shared irq), but it might be a
383 * command that had no output.
384 */
385static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat)
386{
387 /* Command all done? */
388 if (OK_STAT(stat, READY_STAT, BUSY_STAT)) {
389 task_end_request(drive, rq, stat);
390 return ide_stopped;
391 }
392
393 /* Assume it was a spurious irq */
394 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
395 return ide_started;
396}
397
398/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * Handler for command with PIO data-in phase (Read/Read Multiple).
400 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100401static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200404 struct request *rq = hwif->hwgroup->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200405 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700407 /* Error? */
408 if (stat & ERR_STAT)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200409 return task_error(drive, rq, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700410
411 /* Didn't want any data? Odd. */
412 if (!(stat & DRQ_STAT))
413 return task_in_unexpected(drive, rq, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 ide_pio_datablock(drive, rq, 0);
416
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700417 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (!hwif->nleft) {
419 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100420 if (!OK_STAT(stat, 0, BAD_STAT))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200421 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 task_end_request(drive, rq, stat);
423 return ide_stopped;
424 }
425
426 /* Still data left to transfer. */
427 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
428
429 return ide_started;
430}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432/*
433 * Handler for command with PIO data-out phase (Write/Write Multiple).
434 */
435static ide_startstop_t task_out_intr (ide_drive_t *drive)
436{
437 ide_hwif_t *hwif = drive->hwif;
438 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200439 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200442 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 /* Deal with unexpected ATA data phase. */
445 if (((stat & DRQ_STAT) == 0) ^ !hwif->nleft)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200446 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if (!hwif->nleft) {
449 task_end_request(drive, rq, stat);
450 return ide_stopped;
451 }
452
453 /* Still data left to transfer. */
454 ide_pio_datablock(drive, rq, 1);
455 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
456
457 return ide_started;
458}
459
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100460static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 ide_startstop_t startstop;
463
Bartlomiej Zolnierkiewicz4906f3b2008-01-26 20:13:11 +0100464 if (ide_wait_stat(&startstop, drive, DRQ_STAT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 drive->bad_wstat, WAIT_DRQ)) {
466 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
467 drive->name,
468 drive->hwif->data_phase ? "MULT" : "",
469 drive->addressing ? "_EXT" : "");
470 return startstop;
471 }
472
473 if (!drive->unmask)
474 local_irq_disable();
475
476 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
477 ide_pio_datablock(drive, rq, 1);
478
479 return ide_started;
480}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100482int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200484 struct request *rq;
485 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200487 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
488 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
489 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /*
492 * (ks) We transfer currently only whole sectors.
493 * This is suffient for now. But, it would be great,
494 * if we would find a solution to transfer any size.
495 * To support special commands like READ LONG.
496 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200497 rq->hard_nr_sectors = rq->nr_sectors = nsect;
498 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100500 if (task->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200501 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200503 rq->special = task;
504 task->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200506 error = blk_execute_rq(drive->queue, NULL, rq, 0);
507 blk_put_request(rq);
508
509 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512EXPORT_SYMBOL(ide_raw_taskfile);
513
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100514int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task)
515{
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100516 task->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100517
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100518 return ide_raw_taskfile(drive, task, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100519}
520EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
521
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100522#ifdef CONFIG_IDE_TASK_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
524{
525 ide_task_request_t *req_task;
526 ide_task_t args;
527 u8 *outbuf = NULL;
528 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100529 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 int err = 0;
531 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100532 unsigned int taskin = 0;
533 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100534 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 char __user *buf = (char __user *)arg;
536
537// printk("IDE Taskfile ...\n");
538
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800539 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (copy_from_user(req_task, buf, tasksize)) {
542 kfree(req_task);
543 return -EFAULT;
544 }
545
Alan Cox3a42bb22006-10-16 16:31:02 +0100546 taskout = req_task->out_size;
547 taskin = req_task->in_size;
548
549 if (taskin > 65536 || taskout > 65536) {
550 err = -EINVAL;
551 goto abort;
552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 if (taskout) {
555 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800556 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (outbuf == NULL) {
558 err = -ENOMEM;
559 goto abort;
560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
562 err = -EFAULT;
563 goto abort;
564 }
565 }
566
567 if (taskin) {
568 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800569 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (inbuf == NULL) {
571 err = -ENOMEM;
572 goto abort;
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (copy_from_user(inbuf, buf + intotal, taskin)) {
575 err = -EFAULT;
576 goto abort;
577 }
578 }
579
580 memset(&args, 0, sizeof(ide_task_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100582 memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
583 memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100584
585 args.data_phase = req_task->data_phase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100587 args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
588 IDE_TFLAG_IN_TF;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100589 if (drive->addressing == 1)
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100590 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100591
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100592 if (req_task->out_flags.all) {
593 args.tf_flags |= IDE_TFLAG_FLAGGED;
594
595 if (req_task->out_flags.b.data)
596 args.tf_flags |= IDE_TFLAG_OUT_DATA;
597
598 if (req_task->out_flags.b.nsector_hob)
599 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
600 if (req_task->out_flags.b.sector_hob)
601 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
602 if (req_task->out_flags.b.lcyl_hob)
603 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
604 if (req_task->out_flags.b.hcyl_hob)
605 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
606
607 if (req_task->out_flags.b.error_feature)
608 args.tf_flags |= IDE_TFLAG_OUT_FEATURE;
609 if (req_task->out_flags.b.nsector)
610 args.tf_flags |= IDE_TFLAG_OUT_NSECT;
611 if (req_task->out_flags.b.sector)
612 args.tf_flags |= IDE_TFLAG_OUT_LBAL;
613 if (req_task->out_flags.b.lcyl)
614 args.tf_flags |= IDE_TFLAG_OUT_LBAM;
615 if (req_task->out_flags.b.hcyl)
616 args.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100617 } else {
618 args.tf_flags |= IDE_TFLAG_OUT_TF;
619 if (args.tf_flags & IDE_TFLAG_LBA48)
620 args.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100621 }
622
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100623 if (req_task->in_flags.b.data)
624 args.tf_flags |= IDE_TFLAG_IN_DATA;
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 case TASKFILE_MULTI_OUT:
628 if (!drive->mult_count) {
629 /* (hs): give up if multcount is not set */
630 printk(KERN_ERR "%s: %s Multimode Write " \
631 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200632 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 err = -EPERM;
634 goto abort;
635 }
636 /* fall through */
637 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100638 /* fall through */
639 case TASKFILE_OUT_DMAQ:
640 case TASKFILE_OUT_DMA:
641 nsect = taskout / SECTOR_SIZE;
642 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 break;
644 case TASKFILE_MULTI_IN:
645 if (!drive->mult_count) {
646 /* (hs): give up if multcount is not set */
647 printk(KERN_ERR "%s: %s Multimode Read failure " \
648 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200649 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 err = -EPERM;
651 goto abort;
652 }
653 /* fall through */
654 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100655 /* fall through */
656 case TASKFILE_IN_DMAQ:
657 case TASKFILE_IN_DMA:
658 nsect = taskin / SECTOR_SIZE;
659 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 break;
661 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 break;
663 default:
664 err = -EFAULT;
665 goto abort;
666 }
667
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100668 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
669 nsect = 0;
670 else if (!nsect) {
671 nsect = (args.tf.hob_nsect << 8) | args.tf.nsect;
672
673 if (!nsect) {
674 printk(KERN_ERR "%s: in/out command without data\n",
675 drive->name);
676 err = -EFAULT;
677 goto abort;
678 }
679 }
680
681 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
682 args.tf_flags |= IDE_TFLAG_WRITE;
683
684 err = ide_raw_taskfile(drive, &args, data_buf, nsect);
685
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100686 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
687 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100688
689 if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) &&
690 req_task->in_flags.all == 0) {
691 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
692 if (drive->addressing == 1)
693 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 if (copy_to_user(buf, req_task, tasksize)) {
697 err = -EFAULT;
698 goto abort;
699 }
700 if (taskout) {
701 int outtotal = tasksize;
702 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
703 err = -EFAULT;
704 goto abort;
705 }
706 }
707 if (taskin) {
708 int intotal = tasksize + taskout;
709 if (copy_to_user(buf + intotal, inbuf, taskin)) {
710 err = -EFAULT;
711 goto abort;
712 }
713 }
714abort:
715 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800716 kfree(outbuf);
717 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return err;
722}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100723#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725int ide_cmd_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
726{
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100727 u8 *buf = NULL;
728 int bufsize = 0, err = 0;
729 u8 args[4], xfer_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 ide_task_t tfargs;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100731 struct ide_taskfile *tf = &tfargs.tf;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200732 u16 *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 if (NULL == (void *) arg) {
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200735 struct request *rq;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100736
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200737 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
738 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
739 err = blk_execute_rq(drive->queue, NULL, rq, 0);
740 blk_put_request(rq);
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100741
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200742 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
745 if (copy_from_user(args, (void __user *)arg, 4))
746 return -EFAULT;
747
748 memset(&tfargs, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100749 tf->feature = args[2];
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100750 if (args[0] == WIN_SMART) {
751 tf->nsect = args[3];
752 tf->lbal = args[1];
753 tf->lbam = 0x4f;
754 tf->lbah = 0xc2;
755 tfargs.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_IN_NSECT;
756 } else {
757 tf->nsect = args[1];
758 tfargs.tf_flags = IDE_TFLAG_OUT_FEATURE |
759 IDE_TFLAG_OUT_NSECT | IDE_TFLAG_IN_NSECT;
760 }
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100761 tf->command = args[0];
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100762 tfargs.data_phase = args[3] ? TASKFILE_IN : TASKFILE_NO_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 if (args[3]) {
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100765 tfargs.tf_flags |= IDE_TFLAG_IO_16BIT;
766 bufsize = SECTOR_WORDS * 4 * args[3];
767 buf = kzalloc(bufsize, GFP_KERNEL);
768 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100771
Bartlomiej Zolnierkiewicz5efe7c52008-02-02 19:56:46 +0100772 if (tf->command == WIN_SETFEATURES &&
773 tf->feature == SETFEATURES_XFER &&
774 tf->nsect >= XFER_SW_DMA_0 &&
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200775 (id[ATA_ID_UDMA_MODES] ||
776 id[ATA_ID_MWDMA_MODES] ||
777 id[ATA_ID_SWDMA_MODES])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 xfer_rate = args[1];
Bartlomiej Zolnierkiewiczaf10f772008-02-02 19:56:46 +0100779 if (tf->nsect > XFER_UDMA_2 && !eighty_ninty_three(drive)) {
780 printk(KERN_WARNING "%s: UDMA speeds >UDMA33 cannot "
781 "be set\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 goto abort;
Bartlomiej Zolnierkiewiczaf10f772008-02-02 19:56:46 +0100783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100786 err = ide_raw_taskfile(drive, &tfargs, buf, args[3]);
787
788 args[0] = tf->status;
789 args[1] = tf->error;
790 args[2] = tf->nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 if (!err && xfer_rate) {
793 /* active-retuning-calls future */
794 ide_set_xfer_rate(drive, xfer_rate);
795 ide_driveid_update(drive);
796 }
797abort:
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100798 if (copy_to_user((void __user *)arg, &args, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 err = -EFAULT;
Bartlomiej Zolnierkiewicz5a9e77a2008-01-26 20:13:13 +0100800 if (buf) {
801 if (copy_to_user((void __user *)(arg + 4), buf, bufsize))
802 err = -EFAULT;
803 kfree(buf);
804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return err;
806}
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808int ide_task_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
809{
810 void __user *p = (void __user *)arg;
811 int err = 0;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100812 u8 args[7];
813 ide_task_t task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 if (copy_from_user(args, p, 7))
816 return -EFAULT;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100817
818 memset(&task, 0, sizeof(task));
819 memcpy(&task.tf_array[7], &args[1], 6);
820 task.tf.command = args[0];
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100821 task.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100822
823 err = ide_no_data_taskfile(drive, &task);
824
825 args[0] = task.tf.command;
826 memcpy(&args[1], &task.tf_array[7], 6);
827
828 if (copy_to_user(p, args, 7))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 err = -EFAULT;
Bartlomiej Zolnierkiewicz14b89ef2008-01-25 22:17:11 +0100830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return err;
832}