ide: unify exit paths in task_pio_intr()
[linux-2.6] / drivers / ide / ide-taskfile.c
1 /*
2  *  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
5  *                                      IBM Storage Technology Division
6  *  Copyright (C) 2003-2004, 2007  Bartlomiej Zolnierkiewicz
7  *
8  *  The big the bad and the ugly.
9  */
10
11 #include <linux/types.h>
12 #include <linux/string.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/interrupt.h>
16 #include <linux/errno.h>
17 #include <linux/slab.h>
18 #include <linux/delay.h>
19 #include <linux/hdreg.h>
20 #include <linux/ide.h>
21 #include <linux/scatterlist.h>
22
23 #include <asm/uaccess.h>
24 #include <asm/io.h>
25
26 void 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
40 int taskfile_lib_get_identify (ide_drive_t *drive, u8 *buf)
41 {
42         struct ide_cmd cmd;
43
44         memset(&cmd, 0, sizeof(cmd));
45         cmd.tf.nsect = 0x01;
46         if (drive->media == ide_disk)
47                 cmd.tf.command = ATA_CMD_ID_ATA;
48         else
49                 cmd.tf.command = ATA_CMD_ID_ATAPI;
50         cmd.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
51         cmd.protocol = ATA_PROT_PIO;
52
53         return ide_raw_taskfile(drive, &cmd, buf, 1);
54 }
55
56 static ide_startstop_t task_no_data_intr(ide_drive_t *);
57 static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct ide_cmd *);
58 static ide_startstop_t task_pio_intr(ide_drive_t *);
59
60 ide_startstop_t do_rw_taskfile(ide_drive_t *drive, struct ide_cmd *orig_cmd)
61 {
62         ide_hwif_t *hwif = drive->hwif;
63         struct ide_cmd *cmd = &hwif->cmd;
64         struct ide_taskfile *tf = &cmd->tf;
65         ide_handler_t *handler = NULL;
66         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
67         const struct ide_dma_ops *dma_ops = hwif->dma_ops;
68
69         if (orig_cmd->protocol == ATA_PROT_PIO &&
70             (orig_cmd->tf_flags & IDE_TFLAG_MULTI_PIO) &&
71             drive->mult_count == 0) {
72                 printk(KERN_ERR "%s: multimode not set!\n", drive->name);
73                 return ide_stopped;
74         }
75
76         if (orig_cmd->ftf_flags & IDE_FTFLAG_FLAGGED)
77                 orig_cmd->ftf_flags |= IDE_FTFLAG_SET_IN_FLAGS;
78
79         memcpy(cmd, orig_cmd, sizeof(*cmd));
80
81         if ((cmd->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {
82                 ide_tf_dump(drive->name, tf);
83                 tp_ops->set_irq(hwif, 1);
84                 SELECT_MASK(drive, 0);
85                 tp_ops->tf_load(drive, cmd);
86         }
87
88         switch (cmd->protocol) {
89         case ATA_PROT_PIO:
90                 if (cmd->tf_flags & IDE_TFLAG_WRITE) {
91                         tp_ops->exec_command(hwif, tf->command);
92                         ndelay(400);    /* FIXME */
93                         return pre_task_out_intr(drive, cmd);
94                 }
95                 handler = task_pio_intr;
96                 /* fall-through */
97         case ATA_PROT_NODATA:
98                 if (handler == NULL)
99                         handler = task_no_data_intr;
100                 ide_execute_command(drive, tf->command, handler,
101                                     WAIT_WORSTCASE, NULL);
102                 return ide_started;
103         default:
104                 if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0 ||
105                     ide_build_sglist(drive, hwif->rq) == 0 ||
106                     dma_ops->dma_setup(drive))
107                         return ide_stopped;
108                 dma_ops->dma_exec_cmd(drive, tf->command);
109                 dma_ops->dma_start(drive);
110                 return ide_started;
111         }
112 }
113 EXPORT_SYMBOL_GPL(do_rw_taskfile);
114
115 static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
116 {
117         ide_hwif_t *hwif = drive->hwif;
118         struct ide_cmd *cmd = &hwif->cmd;
119         struct ide_taskfile *tf = &cmd->tf;
120         int custom = (cmd->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) ? 1 : 0;
121         int retries = (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) ? 5 : 1;
122         u8 stat;
123
124         local_irq_enable_in_hardirq();
125
126         while (1) {
127                 stat = hwif->tp_ops->read_status(hwif);
128                 if ((stat & ATA_BUSY) == 0 || retries-- == 0)
129                         break;
130                 udelay(10);
131         };
132
133         if (!OK_STAT(stat, ATA_DRDY, BAD_STAT)) {
134                 if (custom && tf->command == ATA_CMD_SET_MULTI) {
135                         drive->mult_req = drive->mult_count = 0;
136                         drive->special.b.recalibrate = 1;
137                         (void)ide_dump_status(drive, __func__, stat);
138                         return ide_stopped;
139                 } else if (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) {
140                         if ((stat & (ATA_ERR | ATA_DRQ)) == 0) {
141                                 ide_set_handler(drive, &task_no_data_intr,
142                                                 WAIT_WORSTCASE, NULL);
143                                 return ide_started;
144                         }
145                 }
146                 return ide_error(drive, "task_no_data_intr", stat);
147         }
148
149         if (custom && tf->command == ATA_CMD_IDLEIMMEDIATE) {
150                 hwif->tp_ops->tf_read(drive, cmd);
151                 if (tf->lbal != 0xc4) {
152                         printk(KERN_ERR "%s: head unload failed!\n",
153                                drive->name);
154                         ide_tf_dump(drive->name, tf);
155                 } else
156                         drive->dev_flags |= IDE_DFLAG_PARKED;
157         } else if (custom && tf->command == ATA_CMD_SET_MULTI)
158                 drive->mult_count = drive->mult_req;
159
160         if (custom == 0 || tf->command == ATA_CMD_IDLEIMMEDIATE) {
161                 struct request *rq = hwif->rq;
162                 u8 err = ide_read_error(drive);
163
164                 if (blk_pm_request(rq))
165                         ide_complete_pm_rq(drive, rq);
166                 else {
167                         if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
168                                 ide_complete_cmd(drive, cmd, stat, err);
169                         ide_complete_rq(drive, err);
170                 }
171         }
172
173         return ide_stopped;
174 }
175
176 static u8 wait_drive_not_busy(ide_drive_t *drive)
177 {
178         ide_hwif_t *hwif = drive->hwif;
179         int retries;
180         u8 stat;
181
182         /*
183          * Last sector was transfered, wait until device is ready.  This can
184          * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
185          */
186         for (retries = 0; retries < 1000; retries++) {
187                 stat = hwif->tp_ops->read_status(hwif);
188
189                 if (stat & ATA_BUSY)
190                         udelay(10);
191                 else
192                         break;
193         }
194
195         if (stat & ATA_BUSY)
196                 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
197
198         return stat;
199 }
200
201 static void ide_pio_sector(ide_drive_t *drive, struct ide_cmd *cmd,
202                            unsigned int write)
203 {
204         ide_hwif_t *hwif = drive->hwif;
205         struct scatterlist *sg = hwif->sg_table;
206         struct scatterlist *cursg = cmd->cursg;
207         struct page *page;
208 #ifdef CONFIG_HIGHMEM
209         unsigned long flags;
210 #endif
211         unsigned int offset;
212         u8 *buf;
213
214         cursg = cmd->cursg;
215         if (!cursg) {
216                 cursg = sg;
217                 cmd->cursg = sg;
218         }
219
220         page = sg_page(cursg);
221         offset = cursg->offset + cmd->cursg_ofs * SECTOR_SIZE;
222
223         /* get the current page and offset */
224         page = nth_page(page, (offset >> PAGE_SHIFT));
225         offset %= PAGE_SIZE;
226
227 #ifdef CONFIG_HIGHMEM
228         local_irq_save(flags);
229 #endif
230         buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
231
232         cmd->nleft--;
233         cmd->cursg_ofs++;
234
235         if ((cmd->cursg_ofs * SECTOR_SIZE) == cursg->length) {
236                 cmd->cursg = sg_next(cmd->cursg);
237                 cmd->cursg_ofs = 0;
238         }
239
240         /* do the actual data transfer */
241         if (write)
242                 hwif->tp_ops->output_data(drive, cmd, buf, SECTOR_SIZE);
243         else
244                 hwif->tp_ops->input_data(drive, cmd, buf, SECTOR_SIZE);
245
246         kunmap_atomic(buf, KM_BIO_SRC_IRQ);
247 #ifdef CONFIG_HIGHMEM
248         local_irq_restore(flags);
249 #endif
250 }
251
252 static void ide_pio_multi(ide_drive_t *drive, struct ide_cmd *cmd,
253                           unsigned int write)
254 {
255         unsigned int nsect;
256
257         nsect = min_t(unsigned int, cmd->nleft, drive->mult_count);
258         while (nsect--)
259                 ide_pio_sector(drive, cmd, write);
260 }
261
262 static void ide_pio_datablock(ide_drive_t *drive, struct ide_cmd *cmd,
263                               unsigned int write)
264 {
265         u8 saved_io_32bit = drive->io_32bit;
266
267         if (cmd->tf_flags & IDE_TFLAG_FS)
268                 cmd->rq->errors = 0;
269
270         if (cmd->tf_flags & IDE_TFLAG_IO_16BIT)
271                 drive->io_32bit = 0;
272
273         touch_softlockup_watchdog();
274
275         if (cmd->tf_flags & IDE_TFLAG_MULTI_PIO)
276                 ide_pio_multi(drive, cmd, write);
277         else
278                 ide_pio_sector(drive, cmd, write);
279
280         drive->io_32bit = saved_io_32bit;
281 }
282
283 static ide_startstop_t task_error(ide_drive_t *drive, struct ide_cmd *cmd,
284                                   const char *s, u8 stat)
285 {
286         if (cmd->tf_flags & IDE_TFLAG_FS) {
287                 int sectors = cmd->nsect - cmd->nleft;
288
289                 if (cmd->protocol == ATA_PROT_PIO &&
290                     ((cmd->tf_flags & IDE_TFLAG_WRITE) || cmd->nleft == 0)) {
291                         if (cmd->tf_flags & IDE_TFLAG_MULTI_PIO)
292                                 sectors -= drive->mult_count;
293                         else
294                                 sectors--;
295                 }
296
297                 if (sectors > 0)
298                         ide_end_request(drive, 1, sectors);
299         }
300         return ide_error(drive, s, stat);
301 }
302
303 void ide_finish_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 stat)
304 {
305         if ((cmd->tf_flags & IDE_TFLAG_FS) == 0) {
306                 u8 err = ide_read_error(drive);
307
308                 ide_complete_cmd(drive, cmd, stat, err);
309                 ide_complete_rq(drive, err);
310                 return;
311         }
312
313         ide_end_request(drive, 1, cmd->rq->nr_sectors);
314 }
315
316 /*
317  * Handler for command with PIO data phase.
318  */
319 static ide_startstop_t task_pio_intr(ide_drive_t *drive)
320 {
321         ide_hwif_t *hwif = drive->hwif;
322         struct ide_cmd *cmd = &drive->hwif->cmd;
323         u8 stat = hwif->tp_ops->read_status(hwif);
324         u8 write = !!(cmd->tf_flags & IDE_TFLAG_WRITE);
325
326         if (write == 0) {
327                 /* Error? */
328                 if (stat & ATA_ERR)
329                         goto out_err;
330
331                 /* Didn't want any data? Odd. */
332                 if ((stat & ATA_DRQ) == 0) {
333                         /* Command all done? */
334                         if (OK_STAT(stat, ATA_DRDY, ATA_BUSY))
335                                 goto out_end;
336
337                         /* Assume it was a spurious irq */
338                         goto out_wait;
339                 }
340         } else {
341                 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
342                         goto out_err;
343
344                 /* Deal with unexpected ATA data phase. */
345                 if (((stat & ATA_DRQ) == 0) ^ (cmd->nleft == 0))
346                         goto out_err;
347         }
348
349         if (write && cmd->nleft == 0)
350                 goto out_end;
351
352         /* Still data left to transfer. */
353         ide_pio_datablock(drive, cmd, write);
354
355         /* Are we done? Check status and finish transfer. */
356         if (write == 0 && cmd->nleft == 0) {
357                 stat = wait_drive_not_busy(drive);
358                 if (!OK_STAT(stat, 0, BAD_STAT))
359                         goto out_err;
360
361                 goto out_end;
362         }
363 out_wait:
364         /* Still data left to transfer. */
365         ide_set_handler(drive, &task_pio_intr, WAIT_WORSTCASE, NULL);
366         return ide_started;
367 out_end:
368         ide_finish_cmd(drive, cmd, stat);
369         return ide_stopped;
370 out_err:
371         return task_error(drive, cmd, __func__, stat);
372 }
373
374 static ide_startstop_t pre_task_out_intr(ide_drive_t *drive,
375                                          struct ide_cmd *cmd)
376 {
377         ide_startstop_t startstop;
378
379         if (ide_wait_stat(&startstop, drive, ATA_DRQ,
380                           drive->bad_wstat, WAIT_DRQ)) {
381                 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
382                         drive->name,
383                         (cmd->tf_flags & IDE_TFLAG_MULTI_PIO) ? "MULT" : "",
384                         (drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : "");
385                 return startstop;
386         }
387
388         if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0)
389                 local_irq_disable();
390
391         ide_set_handler(drive, &task_pio_intr, WAIT_WORSTCASE, NULL);
392
393         ide_pio_datablock(drive, cmd, 1);
394
395         return ide_started;
396 }
397
398 int ide_raw_taskfile(ide_drive_t *drive, struct ide_cmd *cmd, u8 *buf,
399                      u16 nsect)
400 {
401         struct request *rq;
402         int error;
403
404         rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
405         rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
406         rq->buffer = buf;
407
408         /*
409          * (ks) We transfer currently only whole sectors.
410          * This is suffient for now.  But, it would be great,
411          * if we would find a solution to transfer any size.
412          * To support special commands like READ LONG.
413          */
414         rq->hard_nr_sectors = rq->nr_sectors = nsect;
415         rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
416
417         if (cmd->tf_flags & IDE_TFLAG_WRITE)
418                 rq->cmd_flags |= REQ_RW;
419
420         rq->special = cmd;
421         cmd->rq = rq;
422
423         error = blk_execute_rq(drive->queue, NULL, rq, 0);
424         blk_put_request(rq);
425
426         return error;
427 }
428
429 EXPORT_SYMBOL(ide_raw_taskfile);
430
431 int ide_no_data_taskfile(ide_drive_t *drive, struct ide_cmd *cmd)
432 {
433         cmd->protocol = ATA_PROT_NODATA;
434
435         return ide_raw_taskfile(drive, cmd, NULL, 0);
436 }
437 EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
438
439 #ifdef CONFIG_IDE_TASK_IOCTL
440 int ide_taskfile_ioctl(ide_drive_t *drive, unsigned long arg)
441 {
442         ide_task_request_t      *req_task;
443         struct ide_cmd          cmd;
444         u8 *outbuf              = NULL;
445         u8 *inbuf               = NULL;
446         u8 *data_buf            = NULL;
447         int err                 = 0;
448         int tasksize            = sizeof(struct ide_task_request_s);
449         unsigned int taskin     = 0;
450         unsigned int taskout    = 0;
451         u16 nsect               = 0;
452         char __user *buf = (char __user *)arg;
453
454 //      printk("IDE Taskfile ...\n");
455
456         req_task = kzalloc(tasksize, GFP_KERNEL);
457         if (req_task == NULL) return -ENOMEM;
458         if (copy_from_user(req_task, buf, tasksize)) {
459                 kfree(req_task);
460                 return -EFAULT;
461         }
462
463         taskout = req_task->out_size;
464         taskin  = req_task->in_size;
465         
466         if (taskin > 65536 || taskout > 65536) {
467                 err = -EINVAL;
468                 goto abort;
469         }
470
471         if (taskout) {
472                 int outtotal = tasksize;
473                 outbuf = kzalloc(taskout, GFP_KERNEL);
474                 if (outbuf == NULL) {
475                         err = -ENOMEM;
476                         goto abort;
477                 }
478                 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
479                         err = -EFAULT;
480                         goto abort;
481                 }
482         }
483
484         if (taskin) {
485                 int intotal = tasksize + taskout;
486                 inbuf = kzalloc(taskin, GFP_KERNEL);
487                 if (inbuf == NULL) {
488                         err = -ENOMEM;
489                         goto abort;
490                 }
491                 if (copy_from_user(inbuf, buf + intotal, taskin)) {
492                         err = -EFAULT;
493                         goto abort;
494                 }
495         }
496
497         memset(&cmd, 0, sizeof(cmd));
498
499         memcpy(&cmd.tf_array[0], req_task->hob_ports,
500                HDIO_DRIVE_HOB_HDR_SIZE - 2);
501         memcpy(&cmd.tf_array[6], req_task->io_ports,
502                HDIO_DRIVE_TASK_HDR_SIZE);
503
504         cmd.tf_flags   = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
505                          IDE_TFLAG_IN_TF;
506
507         if (drive->dev_flags & IDE_DFLAG_LBA48)
508                 cmd.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
509
510         if (req_task->out_flags.all) {
511                 cmd.ftf_flags |= IDE_FTFLAG_FLAGGED;
512
513                 if (req_task->out_flags.b.data)
514                         cmd.ftf_flags |= IDE_FTFLAG_OUT_DATA;
515
516                 if (req_task->out_flags.b.nsector_hob)
517                         cmd.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
518                 if (req_task->out_flags.b.sector_hob)
519                         cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
520                 if (req_task->out_flags.b.lcyl_hob)
521                         cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
522                 if (req_task->out_flags.b.hcyl_hob)
523                         cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
524
525                 if (req_task->out_flags.b.error_feature)
526                         cmd.tf_flags |= IDE_TFLAG_OUT_FEATURE;
527                 if (req_task->out_flags.b.nsector)
528                         cmd.tf_flags |= IDE_TFLAG_OUT_NSECT;
529                 if (req_task->out_flags.b.sector)
530                         cmd.tf_flags |= IDE_TFLAG_OUT_LBAL;
531                 if (req_task->out_flags.b.lcyl)
532                         cmd.tf_flags |= IDE_TFLAG_OUT_LBAM;
533                 if (req_task->out_flags.b.hcyl)
534                         cmd.tf_flags |= IDE_TFLAG_OUT_LBAH;
535         } else {
536                 cmd.tf_flags |= IDE_TFLAG_OUT_TF;
537                 if (cmd.tf_flags & IDE_TFLAG_LBA48)
538                         cmd.tf_flags |= IDE_TFLAG_OUT_HOB;
539         }
540
541         if (req_task->in_flags.b.data)
542                 cmd.ftf_flags |= IDE_FTFLAG_IN_DATA;
543
544         if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE) {
545                 /* fixup data phase if needed */
546                 if (req_task->data_phase == TASKFILE_IN_DMAQ ||
547                     req_task->data_phase == TASKFILE_IN_DMA)
548                         cmd.tf_flags |= IDE_TFLAG_WRITE;
549         }
550
551         cmd.protocol = ATA_PROT_DMA;
552
553         switch (req_task->data_phase) {
554                 case TASKFILE_MULTI_OUT:
555                         if (!drive->mult_count) {
556                                 /* (hs): give up if multcount is not set */
557                                 printk(KERN_ERR "%s: %s Multimode Write " \
558                                         "multcount is not set\n",
559                                         drive->name, __func__);
560                                 err = -EPERM;
561                                 goto abort;
562                         }
563                         cmd.tf_flags |= IDE_TFLAG_MULTI_PIO;
564                         /* fall through */
565                 case TASKFILE_OUT:
566                         cmd.protocol = ATA_PROT_PIO;
567                         /* fall through */
568                 case TASKFILE_OUT_DMAQ:
569                 case TASKFILE_OUT_DMA:
570                         cmd.tf_flags |= IDE_TFLAG_WRITE;
571                         nsect = taskout / SECTOR_SIZE;
572                         data_buf = outbuf;
573                         break;
574                 case TASKFILE_MULTI_IN:
575                         if (!drive->mult_count) {
576                                 /* (hs): give up if multcount is not set */
577                                 printk(KERN_ERR "%s: %s Multimode Read failure " \
578                                         "multcount is not set\n",
579                                         drive->name, __func__);
580                                 err = -EPERM;
581                                 goto abort;
582                         }
583                         cmd.tf_flags |= IDE_TFLAG_MULTI_PIO;
584                         /* fall through */
585                 case TASKFILE_IN:
586                         cmd.protocol = ATA_PROT_PIO;
587                         /* fall through */
588                 case TASKFILE_IN_DMAQ:
589                 case TASKFILE_IN_DMA:
590                         nsect = taskin / SECTOR_SIZE;
591                         data_buf = inbuf;
592                         break;
593                 case TASKFILE_NO_DATA:
594                         cmd.protocol = ATA_PROT_NODATA;
595                         break;
596                 default:
597                         err = -EFAULT;
598                         goto abort;
599         }
600
601         if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
602                 nsect = 0;
603         else if (!nsect) {
604                 nsect = (cmd.tf.hob_nsect << 8) | cmd.tf.nsect;
605
606                 if (!nsect) {
607                         printk(KERN_ERR "%s: in/out command without data\n",
608                                         drive->name);
609                         err = -EFAULT;
610                         goto abort;
611                 }
612         }
613
614         err = ide_raw_taskfile(drive, &cmd, data_buf, nsect);
615
616         memcpy(req_task->hob_ports, &cmd.tf_array[0],
617                HDIO_DRIVE_HOB_HDR_SIZE - 2);
618         memcpy(req_task->io_ports, &cmd.tf_array[6],
619                HDIO_DRIVE_TASK_HDR_SIZE);
620
621         if ((cmd.ftf_flags & IDE_FTFLAG_SET_IN_FLAGS) &&
622             req_task->in_flags.all == 0) {
623                 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
624                 if (drive->dev_flags & IDE_DFLAG_LBA48)
625                         req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
626         }
627
628         if (copy_to_user(buf, req_task, tasksize)) {
629                 err = -EFAULT;
630                 goto abort;
631         }
632         if (taskout) {
633                 int outtotal = tasksize;
634                 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
635                         err = -EFAULT;
636                         goto abort;
637                 }
638         }
639         if (taskin) {
640                 int intotal = tasksize + taskout;
641                 if (copy_to_user(buf + intotal, inbuf, taskin)) {
642                         err = -EFAULT;
643                         goto abort;
644                 }
645         }
646 abort:
647         kfree(req_task);
648         kfree(outbuf);
649         kfree(inbuf);
650
651 //      printk("IDE Taskfile ioctl ended. rc = %i\n", err);
652
653         return err;
654 }
655 #endif