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
8 * The big the bad and the ugly.
11 #include <linux/module.h>
12 #include <linux/types.h>
13 #include <linux/string.h>
14 #include <linux/kernel.h>
15 #include <linux/timer.h>
17 #include <linux/sched.h>
18 #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>
29 #include <linux/scatterlist.h>
31 #include <asm/byteorder.h>
33 #include <asm/uaccess.h>
36 void ide_tf_load(ide_drive_t
*drive
, ide_task_t
*task
)
38 ide_hwif_t
*hwif
= drive
->hwif
;
39 struct ide_taskfile
*tf
= &task
->tf
;
40 u8 HIHI
= (task
->tf_flags
& IDE_TFLAG_LBA48
) ? 0xE0 : 0xEF;
42 if (task
->tf_flags
& IDE_TFLAG_FLAGGED
)
46 printk("%s: tf: feat 0x%02x nsect 0x%02x lbal 0x%02x "
47 "lbam 0x%02x lbah 0x%02x dev 0x%02x cmd 0x%02x\n",
48 drive
->name
, tf
->feature
, tf
->nsect
, tf
->lbal
,
49 tf
->lbam
, tf
->lbah
, tf
->device
, tf
->command
);
50 printk("%s: hob: nsect 0x%02x lbal 0x%02x "
51 "lbam 0x%02x lbah 0x%02x\n",
52 drive
->name
, tf
->hob_nsect
, tf
->hob_lbal
,
53 tf
->hob_lbam
, tf
->hob_lbah
);
56 ide_set_irq(drive
, 1);
58 if ((task
->tf_flags
& IDE_TFLAG_NO_SELECT_MASK
) == 0)
59 SELECT_MASK(drive
, 0);
61 if (task
->tf_flags
& IDE_TFLAG_OUT_DATA
)
62 hwif
->OUTW((tf
->hob_data
<< 8) | tf
->data
, IDE_DATA_REG
);
64 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_FEATURE
)
65 hwif
->OUTB(tf
->hob_feature
, IDE_FEATURE_REG
);
66 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_NSECT
)
67 hwif
->OUTB(tf
->hob_nsect
, IDE_NSECTOR_REG
);
68 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAL
)
69 hwif
->OUTB(tf
->hob_lbal
, IDE_SECTOR_REG
);
70 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAM
)
71 hwif
->OUTB(tf
->hob_lbam
, IDE_LCYL_REG
);
72 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAH
)
73 hwif
->OUTB(tf
->hob_lbah
, IDE_HCYL_REG
);
75 if (task
->tf_flags
& IDE_TFLAG_OUT_FEATURE
)
76 hwif
->OUTB(tf
->feature
, IDE_FEATURE_REG
);
77 if (task
->tf_flags
& IDE_TFLAG_OUT_NSECT
)
78 hwif
->OUTB(tf
->nsect
, IDE_NSECTOR_REG
);
79 if (task
->tf_flags
& IDE_TFLAG_OUT_LBAL
)
80 hwif
->OUTB(tf
->lbal
, IDE_SECTOR_REG
);
81 if (task
->tf_flags
& IDE_TFLAG_OUT_LBAM
)
82 hwif
->OUTB(tf
->lbam
, IDE_LCYL_REG
);
83 if (task
->tf_flags
& IDE_TFLAG_OUT_LBAH
)
84 hwif
->OUTB(tf
->lbah
, IDE_HCYL_REG
);
86 if (task
->tf_flags
& IDE_TFLAG_OUT_DEVICE
)
87 hwif
->OUTB((tf
->device
& HIHI
) | drive
->select
.all
, IDE_SELECT_REG
);
90 int taskfile_lib_get_identify (ide_drive_t
*drive
, u8
*buf
)
94 memset(&args
, 0, sizeof(ide_task_t
));
96 if (drive
->media
== ide_disk
)
97 args
.tf
.command
= WIN_IDENTIFY
;
99 args
.tf
.command
= WIN_PIDENTIFY
;
100 args
.tf_flags
= IDE_TFLAG_TF
| IDE_TFLAG_DEVICE
;
101 args
.data_phase
= TASKFILE_IN
;
102 return ide_raw_taskfile(drive
, &args
, buf
, 1);
105 static int inline task_dma_ok(ide_task_t
*task
)
107 if (blk_fs_request(task
->rq
) || (task
->tf_flags
& IDE_TFLAG_FLAGGED
))
110 switch (task
->tf
.command
) {
111 case WIN_WRITEDMA_ONCE
:
113 case WIN_WRITEDMA_EXT
:
114 case WIN_READDMA_ONCE
:
116 case WIN_READDMA_EXT
:
117 case WIN_IDENTIFY_DMA
:
124 static ide_startstop_t
task_no_data_intr(ide_drive_t
*);
125 static ide_startstop_t
set_geometry_intr(ide_drive_t
*);
126 static ide_startstop_t
recal_intr(ide_drive_t
*);
127 static ide_startstop_t
set_multmode_intr(ide_drive_t
*);
128 static ide_startstop_t
pre_task_out_intr(ide_drive_t
*, struct request
*);
129 static ide_startstop_t
task_in_intr(ide_drive_t
*);
131 ide_startstop_t
do_rw_taskfile (ide_drive_t
*drive
, ide_task_t
*task
)
133 ide_hwif_t
*hwif
= HWIF(drive
);
134 struct ide_taskfile
*tf
= &task
->tf
;
135 ide_handler_t
*handler
= NULL
;
137 if (task
->data_phase
== TASKFILE_MULTI_IN
||
138 task
->data_phase
== TASKFILE_MULTI_OUT
) {
139 if (!drive
->mult_count
) {
140 printk(KERN_ERR
"%s: multimode not set!\n",
146 if (task
->tf_flags
& IDE_TFLAG_FLAGGED
)
147 task
->tf_flags
|= IDE_TFLAG_FLAGGED_SET_IN_FLAGS
;
149 if ((task
->tf_flags
& IDE_TFLAG_DMA_PIO_FALLBACK
) == 0)
150 ide_tf_load(drive
, task
);
152 switch (task
->data_phase
) {
153 case TASKFILE_MULTI_OUT
:
155 hwif
->OUTBSYNC(drive
, tf
->command
, IDE_COMMAND_REG
);
156 ndelay(400); /* FIXME */
157 return pre_task_out_intr(drive
, task
->rq
);
158 case TASKFILE_MULTI_IN
:
160 handler
= task_in_intr
;
162 case TASKFILE_NO_DATA
:
164 handler
= task_no_data_intr
;
165 /* WIN_{SPECIFY,RESTORE,SETMULT} use custom handlers */
166 if (task
->tf_flags
& IDE_TFLAG_CUSTOM_HANDLER
) {
167 switch (tf
->command
) {
168 case WIN_SPECIFY
: handler
= set_geometry_intr
; break;
169 case WIN_RESTORE
: handler
= recal_intr
; break;
170 case WIN_SETMULT
: handler
= set_multmode_intr
; break;
173 ide_execute_command(drive
, tf
->command
, handler
,
174 WAIT_WORSTCASE
, NULL
);
177 if (task_dma_ok(task
) == 0 || drive
->using_dma
== 0 ||
178 hwif
->dma_setup(drive
))
180 hwif
->dma_exec_cmd(drive
, tf
->command
);
181 hwif
->dma_start(drive
);
185 EXPORT_SYMBOL_GPL(do_rw_taskfile
);
188 * set_multmode_intr() is invoked on completion of a WIN_SETMULT cmd.
190 static ide_startstop_t
set_multmode_intr(ide_drive_t
*drive
)
192 u8 stat
= ide_read_status(drive
);
194 if (OK_STAT(stat
, READY_STAT
, BAD_STAT
))
195 drive
->mult_count
= drive
->mult_req
;
197 drive
->mult_req
= drive
->mult_count
= 0;
198 drive
->special
.b
.recalibrate
= 1;
199 (void) ide_dump_status(drive
, "set_multmode", stat
);
205 * set_geometry_intr() is invoked on completion of a WIN_SPECIFY cmd.
207 static ide_startstop_t
set_geometry_intr(ide_drive_t
*drive
)
212 while (((stat
= ide_read_status(drive
)) & BUSY_STAT
) && retries
--)
215 if (OK_STAT(stat
, READY_STAT
, BAD_STAT
))
218 if (stat
& (ERR_STAT
|DRQ_STAT
))
219 return ide_error(drive
, "set_geometry_intr", stat
);
221 BUG_ON(HWGROUP(drive
)->handler
!= NULL
);
222 ide_set_handler(drive
, &set_geometry_intr
, WAIT_WORSTCASE
, NULL
);
227 * recal_intr() is invoked on completion of a WIN_RESTORE (recalibrate) cmd.
229 static ide_startstop_t
recal_intr(ide_drive_t
*drive
)
231 u8 stat
= ide_read_status(drive
);
233 if (!OK_STAT(stat
, READY_STAT
, BAD_STAT
))
234 return ide_error(drive
, "recal_intr", stat
);
239 * Handler for commands without a data phase
241 static ide_startstop_t
task_no_data_intr(ide_drive_t
*drive
)
243 ide_task_t
*args
= HWGROUP(drive
)->rq
->special
;
246 local_irq_enable_in_hardirq();
247 stat
= ide_read_status(drive
);
249 if (!OK_STAT(stat
, READY_STAT
, BAD_STAT
))
250 return ide_error(drive
, "task_no_data_intr", stat
);
251 /* calls ide_end_drive_cmd */
254 ide_end_drive_cmd(drive
, stat
, ide_read_error(drive
));
259 static u8
wait_drive_not_busy(ide_drive_t
*drive
)
265 * Last sector was transfered, wait until drive is ready.
266 * This can take up to 10 usec, but we will wait max 1 ms.
268 for (retries
= 0; retries
< 100; retries
++) {
269 stat
= ide_read_status(drive
);
271 if (stat
& BUSY_STAT
)
277 if (stat
& BUSY_STAT
)
278 printk(KERN_ERR
"%s: drive still BUSY!\n", drive
->name
);
283 static void ide_pio_sector(ide_drive_t
*drive
, unsigned int write
)
285 ide_hwif_t
*hwif
= drive
->hwif
;
286 struct scatterlist
*sg
= hwif
->sg_table
;
287 struct scatterlist
*cursg
= hwif
->cursg
;
289 #ifdef CONFIG_HIGHMEM
301 page
= sg_page(cursg
);
302 offset
= cursg
->offset
+ hwif
->cursg_ofs
* SECTOR_SIZE
;
304 /* get the current page and offset */
305 page
= nth_page(page
, (offset
>> PAGE_SHIFT
));
308 #ifdef CONFIG_HIGHMEM
309 local_irq_save(flags
);
311 buf
= kmap_atomic(page
, KM_BIO_SRC_IRQ
) + offset
;
316 if ((hwif
->cursg_ofs
* SECTOR_SIZE
) == cursg
->length
) {
317 hwif
->cursg
= sg_next(hwif
->cursg
);
321 /* do the actual data transfer */
323 hwif
->ata_output_data(drive
, buf
, SECTOR_WORDS
);
325 hwif
->ata_input_data(drive
, buf
, SECTOR_WORDS
);
327 kunmap_atomic(buf
, KM_BIO_SRC_IRQ
);
328 #ifdef CONFIG_HIGHMEM
329 local_irq_restore(flags
);
333 static void ide_pio_multi(ide_drive_t
*drive
, unsigned int write
)
337 nsect
= min_t(unsigned int, drive
->hwif
->nleft
, drive
->mult_count
);
339 ide_pio_sector(drive
, write
);
342 static void ide_pio_datablock(ide_drive_t
*drive
, struct request
*rq
,
345 u8 saved_io_32bit
= drive
->io_32bit
;
347 if (rq
->bio
) /* fs request */
350 if (rq
->cmd_type
== REQ_TYPE_ATA_TASKFILE
) {
351 ide_task_t
*task
= rq
->special
;
353 if (task
->tf_flags
& IDE_TFLAG_IO_16BIT
)
357 touch_softlockup_watchdog();
359 switch (drive
->hwif
->data_phase
) {
360 case TASKFILE_MULTI_IN
:
361 case TASKFILE_MULTI_OUT
:
362 ide_pio_multi(drive
, write
);
365 ide_pio_sector(drive
, write
);
369 drive
->io_32bit
= saved_io_32bit
;
372 static ide_startstop_t
task_error(ide_drive_t
*drive
, struct request
*rq
,
373 const char *s
, u8 stat
)
376 ide_hwif_t
*hwif
= drive
->hwif
;
377 int sectors
= hwif
->nsect
- hwif
->nleft
;
379 switch (hwif
->data_phase
) {
387 case TASKFILE_MULTI_IN
:
391 case TASKFILE_MULTI_OUT
:
392 sectors
-= drive
->mult_count
;
400 drv
= *(ide_driver_t
**)rq
->rq_disk
->private_data
;
401 drv
->end_request(drive
, 1, sectors
);
404 return ide_error(drive
, s
, stat
);
407 void task_end_request(ide_drive_t
*drive
, struct request
*rq
, u8 stat
)
409 if (rq
->cmd_type
== REQ_TYPE_ATA_TASKFILE
) {
410 u8 err
= ide_read_error(drive
);
412 ide_end_drive_cmd(drive
, stat
, err
);
419 drv
= *(ide_driver_t
**)rq
->rq_disk
->private_data
;;
420 drv
->end_request(drive
, 1, rq
->nr_sectors
);
422 ide_end_request(drive
, 1, rq
->nr_sectors
);
426 * We got an interrupt on a task_in case, but no errors and no DRQ.
428 * It might be a spurious irq (shared irq), but it might be a
429 * command that had no output.
431 static ide_startstop_t
task_in_unexpected(ide_drive_t
*drive
, struct request
*rq
, u8 stat
)
433 /* Command all done? */
434 if (OK_STAT(stat
, READY_STAT
, BUSY_STAT
)) {
435 task_end_request(drive
, rq
, stat
);
439 /* Assume it was a spurious irq */
440 ide_set_handler(drive
, &task_in_intr
, WAIT_WORSTCASE
, NULL
);
445 * Handler for command with PIO data-in phase (Read/Read Multiple).
447 static ide_startstop_t
task_in_intr(ide_drive_t
*drive
)
449 ide_hwif_t
*hwif
= drive
->hwif
;
450 struct request
*rq
= HWGROUP(drive
)->rq
;
451 u8 stat
= ide_read_status(drive
);
455 return task_error(drive
, rq
, __FUNCTION__
, stat
);
457 /* Didn't want any data? Odd. */
458 if (!(stat
& DRQ_STAT
))
459 return task_in_unexpected(drive
, rq
, stat
);
461 ide_pio_datablock(drive
, rq
, 0);
463 /* Are we done? Check status and finish transfer. */
465 stat
= wait_drive_not_busy(drive
);
466 if (!OK_STAT(stat
, 0, BAD_STAT
))
467 return task_error(drive
, rq
, __FUNCTION__
, stat
);
468 task_end_request(drive
, rq
, stat
);
472 /* Still data left to transfer. */
473 ide_set_handler(drive
, &task_in_intr
, WAIT_WORSTCASE
, NULL
);
479 * Handler for command with PIO data-out phase (Write/Write Multiple).
481 static ide_startstop_t
task_out_intr (ide_drive_t
*drive
)
483 ide_hwif_t
*hwif
= drive
->hwif
;
484 struct request
*rq
= HWGROUP(drive
)->rq
;
485 u8 stat
= ide_read_status(drive
);
487 if (!OK_STAT(stat
, DRIVE_READY
, drive
->bad_wstat
))
488 return task_error(drive
, rq
, __FUNCTION__
, stat
);
490 /* Deal with unexpected ATA data phase. */
491 if (((stat
& DRQ_STAT
) == 0) ^ !hwif
->nleft
)
492 return task_error(drive
, rq
, __FUNCTION__
, stat
);
495 task_end_request(drive
, rq
, stat
);
499 /* Still data left to transfer. */
500 ide_pio_datablock(drive
, rq
, 1);
501 ide_set_handler(drive
, &task_out_intr
, WAIT_WORSTCASE
, NULL
);
506 static ide_startstop_t
pre_task_out_intr(ide_drive_t
*drive
, struct request
*rq
)
508 ide_startstop_t startstop
;
510 if (ide_wait_stat(&startstop
, drive
, DRQ_STAT
,
511 drive
->bad_wstat
, WAIT_DRQ
)) {
512 printk(KERN_ERR
"%s: no DRQ after issuing %sWRITE%s\n",
514 drive
->hwif
->data_phase
? "MULT" : "",
515 drive
->addressing
? "_EXT" : "");
522 ide_set_handler(drive
, &task_out_intr
, WAIT_WORSTCASE
, NULL
);
523 ide_pio_datablock(drive
, rq
, 1);
528 int ide_raw_taskfile(ide_drive_t
*drive
, ide_task_t
*task
, u8
*buf
, u16 nsect
)
532 memset(&rq
, 0, sizeof(rq
));
534 rq
.cmd_type
= REQ_TYPE_ATA_TASKFILE
;
538 * (ks) We transfer currently only whole sectors.
539 * This is suffient for now. But, it would be great,
540 * if we would find a solution to transfer any size.
541 * To support special commands like READ LONG.
543 rq
.hard_nr_sectors
= rq
.nr_sectors
= nsect
;
544 rq
.hard_cur_sectors
= rq
.current_nr_sectors
= nsect
;
546 if (task
->tf_flags
& IDE_TFLAG_WRITE
)
547 rq
.cmd_flags
|= REQ_RW
;
552 return ide_do_drive_cmd(drive
, &rq
, ide_wait
);
555 EXPORT_SYMBOL(ide_raw_taskfile
);
557 int ide_no_data_taskfile(ide_drive_t
*drive
, ide_task_t
*task
)
559 task
->data_phase
= TASKFILE_NO_DATA
;
561 return ide_raw_taskfile(drive
, task
, NULL
, 0);
563 EXPORT_SYMBOL_GPL(ide_no_data_taskfile
);
565 #ifdef CONFIG_IDE_TASK_IOCTL
566 int ide_taskfile_ioctl (ide_drive_t
*drive
, unsigned int cmd
, unsigned long arg
)
568 ide_task_request_t
*req_task
;
574 int tasksize
= sizeof(struct ide_task_request_s
);
575 unsigned int taskin
= 0;
576 unsigned int taskout
= 0;
578 char __user
*buf
= (char __user
*)arg
;
580 // printk("IDE Taskfile ...\n");
582 req_task
= kzalloc(tasksize
, GFP_KERNEL
);
583 if (req_task
== NULL
) return -ENOMEM
;
584 if (copy_from_user(req_task
, buf
, tasksize
)) {
589 taskout
= req_task
->out_size
;
590 taskin
= req_task
->in_size
;
592 if (taskin
> 65536 || taskout
> 65536) {
598 int outtotal
= tasksize
;
599 outbuf
= kzalloc(taskout
, GFP_KERNEL
);
600 if (outbuf
== NULL
) {
604 if (copy_from_user(outbuf
, buf
+ outtotal
, taskout
)) {
611 int intotal
= tasksize
+ taskout
;
612 inbuf
= kzalloc(taskin
, GFP_KERNEL
);
617 if (copy_from_user(inbuf
, buf
+ intotal
, taskin
)) {
623 memset(&args
, 0, sizeof(ide_task_t
));
625 memcpy(&args
.tf_array
[0], req_task
->hob_ports
, HDIO_DRIVE_HOB_HDR_SIZE
- 2);
626 memcpy(&args
.tf_array
[6], req_task
->io_ports
, HDIO_DRIVE_TASK_HDR_SIZE
);
628 args
.data_phase
= req_task
->data_phase
;
630 args
.tf_flags
= IDE_TFLAG_IO_16BIT
| IDE_TFLAG_DEVICE
|
632 if (drive
->addressing
== 1)
633 args
.tf_flags
|= (IDE_TFLAG_LBA48
| IDE_TFLAG_IN_HOB
);
635 if (req_task
->out_flags
.all
) {
636 args
.tf_flags
|= IDE_TFLAG_FLAGGED
;
638 if (req_task
->out_flags
.b
.data
)
639 args
.tf_flags
|= IDE_TFLAG_OUT_DATA
;
641 if (req_task
->out_flags
.b
.nsector_hob
)
642 args
.tf_flags
|= IDE_TFLAG_OUT_HOB_NSECT
;
643 if (req_task
->out_flags
.b
.sector_hob
)
644 args
.tf_flags
|= IDE_TFLAG_OUT_HOB_LBAL
;
645 if (req_task
->out_flags
.b
.lcyl_hob
)
646 args
.tf_flags
|= IDE_TFLAG_OUT_HOB_LBAM
;
647 if (req_task
->out_flags
.b
.hcyl_hob
)
648 args
.tf_flags
|= IDE_TFLAG_OUT_HOB_LBAH
;
650 if (req_task
->out_flags
.b
.error_feature
)
651 args
.tf_flags
|= IDE_TFLAG_OUT_FEATURE
;
652 if (req_task
->out_flags
.b
.nsector
)
653 args
.tf_flags
|= IDE_TFLAG_OUT_NSECT
;
654 if (req_task
->out_flags
.b
.sector
)
655 args
.tf_flags
|= IDE_TFLAG_OUT_LBAL
;
656 if (req_task
->out_flags
.b
.lcyl
)
657 args
.tf_flags
|= IDE_TFLAG_OUT_LBAM
;
658 if (req_task
->out_flags
.b
.hcyl
)
659 args
.tf_flags
|= IDE_TFLAG_OUT_LBAH
;
661 args
.tf_flags
|= IDE_TFLAG_OUT_TF
;
662 if (args
.tf_flags
& IDE_TFLAG_LBA48
)
663 args
.tf_flags
|= IDE_TFLAG_OUT_HOB
;
666 if (req_task
->in_flags
.b
.data
)
667 args
.tf_flags
|= IDE_TFLAG_IN_DATA
;
669 switch(req_task
->data_phase
) {
670 case TASKFILE_MULTI_OUT
:
671 if (!drive
->mult_count
) {
672 /* (hs): give up if multcount is not set */
673 printk(KERN_ERR
"%s: %s Multimode Write " \
674 "multcount is not set\n",
675 drive
->name
, __FUNCTION__
);
682 case TASKFILE_OUT_DMAQ
:
683 case TASKFILE_OUT_DMA
:
684 nsect
= taskout
/ SECTOR_SIZE
;
687 case TASKFILE_MULTI_IN
:
688 if (!drive
->mult_count
) {
689 /* (hs): give up if multcount is not set */
690 printk(KERN_ERR
"%s: %s Multimode Read failure " \
691 "multcount is not set\n",
692 drive
->name
, __FUNCTION__
);
699 case TASKFILE_IN_DMAQ
:
700 case TASKFILE_IN_DMA
:
701 nsect
= taskin
/ SECTOR_SIZE
;
704 case TASKFILE_NO_DATA
:
711 if (req_task
->req_cmd
== IDE_DRIVE_TASK_NO_DATA
)
714 nsect
= (args
.tf
.hob_nsect
<< 8) | args
.tf
.nsect
;
717 printk(KERN_ERR
"%s: in/out command without data\n",
724 if (req_task
->req_cmd
== IDE_DRIVE_TASK_RAW_WRITE
)
725 args
.tf_flags
|= IDE_TFLAG_WRITE
;
727 err
= ide_raw_taskfile(drive
, &args
, data_buf
, nsect
);
729 memcpy(req_task
->hob_ports
, &args
.tf_array
[0], HDIO_DRIVE_HOB_HDR_SIZE
- 2);
730 memcpy(req_task
->io_ports
, &args
.tf_array
[6], HDIO_DRIVE_TASK_HDR_SIZE
);
732 if ((args
.tf_flags
& IDE_TFLAG_FLAGGED_SET_IN_FLAGS
) &&
733 req_task
->in_flags
.all
== 0) {
734 req_task
->in_flags
.all
= IDE_TASKFILE_STD_IN_FLAGS
;
735 if (drive
->addressing
== 1)
736 req_task
->in_flags
.all
|= (IDE_HOB_STD_IN_FLAGS
<< 8);
739 if (copy_to_user(buf
, req_task
, tasksize
)) {
744 int outtotal
= tasksize
;
745 if (copy_to_user(buf
+ outtotal
, outbuf
, taskout
)) {
751 int intotal
= tasksize
+ taskout
;
752 if (copy_to_user(buf
+ intotal
, inbuf
, taskin
)) {
762 // printk("IDE Taskfile ioctl ended. rc = %i\n", err);
768 int ide_cmd_ioctl (ide_drive_t
*drive
, unsigned int cmd
, unsigned long arg
)
771 int bufsize
= 0, err
= 0;
772 u8 args
[4], xfer_rate
= 0;
774 struct ide_taskfile
*tf
= &tfargs
.tf
;
775 struct hd_driveid
*id
= drive
->id
;
777 if (NULL
== (void *) arg
) {
780 ide_init_drive_cmd(&rq
);
781 rq
.cmd_type
= REQ_TYPE_ATA_TASKFILE
;
783 return ide_do_drive_cmd(drive
, &rq
, ide_wait
);
786 if (copy_from_user(args
, (void __user
*)arg
, 4))
789 memset(&tfargs
, 0, sizeof(ide_task_t
));
790 tf
->feature
= args
[2];
791 if (args
[0] == WIN_SMART
) {
796 tfargs
.tf_flags
= IDE_TFLAG_OUT_TF
| IDE_TFLAG_IN_NSECT
;
799 tfargs
.tf_flags
= IDE_TFLAG_OUT_FEATURE
|
800 IDE_TFLAG_OUT_NSECT
| IDE_TFLAG_IN_NSECT
;
802 tf
->command
= args
[0];
803 tfargs
.data_phase
= args
[3] ? TASKFILE_IN
: TASKFILE_NO_DATA
;
806 tfargs
.tf_flags
|= IDE_TFLAG_IO_16BIT
;
807 bufsize
= SECTOR_WORDS
* 4 * args
[3];
808 buf
= kzalloc(bufsize
, GFP_KERNEL
);
813 if (tf
->command
== WIN_SETFEATURES
&&
814 tf
->feature
== SETFEATURES_XFER
&&
815 tf
->nsect
>= XFER_SW_DMA_0
&&
816 (id
->dma_ultra
|| id
->dma_mword
|| id
->dma_1word
)) {
818 if (tf
->nsect
> XFER_UDMA_2
&& !eighty_ninty_three(drive
)) {
819 printk(KERN_WARNING
"%s: UDMA speeds >UDMA33 cannot "
820 "be set\n", drive
->name
);
825 err
= ide_raw_taskfile(drive
, &tfargs
, buf
, args
[3]);
827 args
[0] = tf
->status
;
831 if (!err
&& xfer_rate
) {
832 /* active-retuning-calls future */
833 ide_set_xfer_rate(drive
, xfer_rate
);
834 ide_driveid_update(drive
);
837 if (copy_to_user((void __user
*)arg
, &args
, 4))
840 if (copy_to_user((void __user
*)(arg
+ 4), buf
, bufsize
))
847 int ide_task_ioctl (ide_drive_t
*drive
, unsigned int cmd
, unsigned long arg
)
849 void __user
*p
= (void __user
*)arg
;
854 if (copy_from_user(args
, p
, 7))
857 memset(&task
, 0, sizeof(task
));
858 memcpy(&task
.tf_array
[7], &args
[1], 6);
859 task
.tf
.command
= args
[0];
860 task
.tf_flags
= IDE_TFLAG_TF
| IDE_TFLAG_DEVICE
;
862 err
= ide_no_data_taskfile(drive
, &task
);
864 args
[0] = task
.tf
.command
;
865 memcpy(&args
[1], &task
.tf_array
[7], 6);
867 if (copy_to_user(p
, args
, 7))