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