ide-taskfile.c 16.7 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3 4
 *  Copyright (C) 2000-2002	   Michael Cornwell <cornwell@acm.org>
 *  Copyright (C) 2000-2002	   Andre Hedrick <andre@linux-ide.org>
 *  Copyright (C) 2001-2002	   Klaus Smolin
L
Linus Torvalds 已提交
5
 *					IBM Storage Technology Division
6
 *  Copyright (C) 2003-2004, 2007  Bartlomiej Zolnierkiewicz
L
Linus Torvalds 已提交
7 8 9 10 11 12 13
 *
 *  The big the bad and the ugly.
 */

#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
14
#include <linux/export.h>
15
#include <linux/sched.h>
L
Linus Torvalds 已提交
16 17 18 19 20 21
#include <linux/interrupt.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/delay.h>
#include <linux/hdreg.h>
#include <linux/ide.h>
22
#include <linux/nmi.h>
J
Jens Axboe 已提交
23
#include <linux/scatterlist.h>
24
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
25 26 27

#include <asm/io.h>

S
Sergei Shtylyov 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
void ide_tf_readback(ide_drive_t *drive, struct ide_cmd *cmd)
{
	ide_hwif_t *hwif = drive->hwif;
	const struct ide_tp_ops *tp_ops = hwif->tp_ops;

	/* Be sure we're looking at the low order bytes */
	tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);

	tp_ops->tf_read(drive, &cmd->tf, cmd->valid.in.tf);

	if (cmd->tf_flags & IDE_TFLAG_LBA48) {
		tp_ops->write_devctl(hwif, ATA_HOB | ATA_DEVCTL_OBS);

		tp_ops->tf_read(drive, &cmd->hob, cmd->valid.in.hob);
	}
}

45
void ide_tf_dump(const char *s, struct ide_cmd *cmd)
46
{
47 48 49
#ifdef DEBUG
	printk("%s: tf: feat 0x%02x nsect 0x%02x lbal 0x%02x "
		"lbam 0x%02x lbah 0x%02x dev 0x%02x cmd 0x%02x\n",
50 51 52 53 54
	       s, cmd->tf.feature, cmd->tf.nsect,
	       cmd->tf.lbal, cmd->tf.lbam, cmd->tf.lbah,
	       cmd->tf.device, cmd->tf.command);
	printk("%s: hob: nsect 0x%02x lbal 0x%02x lbam 0x%02x lbah 0x%02x\n",
	       s, cmd->hob.nsect, cmd->hob.lbal, cmd->hob.lbam, cmd->hob.lbah);
55
#endif
56 57
}

58
int taskfile_lib_get_identify(ide_drive_t *drive, u8 *buf)
L
Linus Torvalds 已提交
59
{
60
	struct ide_cmd cmd;
61

62 63
	memset(&cmd, 0, sizeof(cmd));
	cmd.tf.nsect = 0x01;
L
Linus Torvalds 已提交
64
	if (drive->media == ide_disk)
65
		cmd.tf.command = ATA_CMD_ID_ATA;
L
Linus Torvalds 已提交
66
	else
67
		cmd.tf.command = ATA_CMD_ID_ATAPI;
68 69
	cmd.valid.out.tf = IDE_VALID_OUT_TF | IDE_VALID_DEVICE;
	cmd.valid.in.tf  = IDE_VALID_IN_TF  | IDE_VALID_DEVICE;
70
	cmd.protocol = ATA_PROT_PIO;
71 72

	return ide_raw_taskfile(drive, &cmd, buf, 1);
L
Linus Torvalds 已提交
73 74
}

75
static ide_startstop_t task_no_data_intr(ide_drive_t *);
76
static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct ide_cmd *);
77
static ide_startstop_t task_pio_intr(ide_drive_t *);
78

79
ide_startstop_t do_rw_taskfile(ide_drive_t *drive, struct ide_cmd *orig_cmd)
L
Linus Torvalds 已提交
80
{
81
	ide_hwif_t *hwif = drive->hwif;
82
	struct ide_cmd *cmd = &hwif->cmd;
83
	struct ide_taskfile *tf = &cmd->tf;
84
	ide_handler_t *handler = NULL;
85
	const struct ide_tp_ops *tp_ops = hwif->tp_ops;
86
	const struct ide_dma_ops *dma_ops = hwif->dma_ops;
L
Linus Torvalds 已提交
87

88 89 90
	if (orig_cmd->protocol == ATA_PROT_PIO &&
	    (orig_cmd->tf_flags & IDE_TFLAG_MULTI_PIO) &&
	    drive->mult_count == 0) {
91
		pr_err("%s: multimode not set!\n", drive->name);
92
		return ide_stopped;
93 94
	}

95 96
	if (orig_cmd->ftf_flags & IDE_FTFLAG_FLAGGED)
		orig_cmd->ftf_flags |= IDE_FTFLAG_SET_IN_FLAGS;
97

98
	memcpy(cmd, orig_cmd, sizeof(*cmd));
99

100
	if ((cmd->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {
101
		ide_tf_dump(drive->name, cmd);
102
		tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);
103 104

		if (cmd->ftf_flags & IDE_FTFLAG_OUT_DATA) {
105
			u8 data[2] = { cmd->tf.data, cmd->hob.data };
106 107 108

			tp_ops->output_data(drive, cmd, data, 2);
		}
109 110 111 112 113 114 115 116 117 118

		if (cmd->valid.out.tf & IDE_VALID_DEVICE) {
			u8 HIHI = (cmd->tf_flags & IDE_TFLAG_LBA48) ?
				  0xE0 : 0xEF;

			if (!(cmd->ftf_flags & IDE_FTFLAG_FLAGGED))
				cmd->tf.device &= HIHI;
			cmd->tf.device |= drive->select;
		}

S
Sergei Shtylyov 已提交
119 120
		tp_ops->tf_load(drive, &cmd->hob, cmd->valid.out.hob);
		tp_ops->tf_load(drive, &cmd->tf,  cmd->valid.out.tf);
121
	}
L
Linus Torvalds 已提交
122

123 124 125 126 127 128 129
	switch (cmd->protocol) {
	case ATA_PROT_PIO:
		if (cmd->tf_flags & IDE_TFLAG_WRITE) {
			tp_ops->exec_command(hwif, tf->command);
			ndelay(400);	/* FIXME */
			return pre_task_out_intr(drive, cmd);
		}
130
		handler = task_pio_intr;
131
		/* fall-through */
132
	case ATA_PROT_NODATA:
133 134
		if (handler == NULL)
			handler = task_no_data_intr;
135
		ide_execute_command(drive, cmd, handler, WAIT_WORSTCASE);
L
Linus Torvalds 已提交
136
		return ide_started;
137
	case ATA_PROT_DMA:
138
		if (ide_dma_prepare(drive, cmd))
139
			return ide_stopped;
140
		hwif->expiry = dma_ops->dma_timer_expiry;
141
		ide_execute_command(drive, cmd, ide_dma_intr, 2 * WAIT_CMD);
142
		dma_ops->dma_start(drive);
143
	default:
144
		return ide_started;
L
Linus Torvalds 已提交
145 146
	}
}
147
EXPORT_SYMBOL_GPL(do_rw_taskfile);
L
Linus Torvalds 已提交
148

149
static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
L
Linus Torvalds 已提交
150
{
151
	ide_hwif_t *hwif = drive->hwif;
152 153 154
	struct ide_cmd *cmd = &hwif->cmd;
	struct ide_taskfile *tf = &cmd->tf;
	int custom = (cmd->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) ? 1 : 0;
155
	int retries = (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) ? 5 : 1;
L
Linus Torvalds 已提交
156 157
	u8 stat;

158 159
	local_irq_enable_in_hardirq();

160 161
	while (1) {
		stat = hwif->tp_ops->read_status(hwif);
162
		if ((stat & ATA_BUSY) == 0 || retries-- == 0)
163
			break;
L
Linus Torvalds 已提交
164
		udelay(10);
165
	};
L
Linus Torvalds 已提交
166

167 168 169
	if (!OK_STAT(stat, ATA_DRDY, BAD_STAT)) {
		if (custom && tf->command == ATA_CMD_SET_MULTI) {
			drive->mult_req = drive->mult_count = 0;
170
			drive->special_flags |= IDE_SFLAG_RECALIBRATE;
171 172 173 174 175
			(void)ide_dump_status(drive, __func__, stat);
			return ide_stopped;
		} else if (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) {
			if ((stat & (ATA_ERR | ATA_DRQ)) == 0) {
				ide_set_handler(drive, &task_no_data_intr,
176
						WAIT_WORSTCASE);
177 178 179
				return ide_started;
			}
		}
L
Linus Torvalds 已提交
180
		return ide_error(drive, "task_no_data_intr", stat);
181
	}
182

183
	if (custom && tf->command == ATA_CMD_SET_MULTI)
184
		drive->mult_count = drive->mult_req;
L
Linus Torvalds 已提交
185

186 187
	if (custom == 0 || tf->command == ATA_CMD_IDLEIMMEDIATE ||
	    tf->command == ATA_CMD_CHK_POWER) {
188 189
		struct request *rq = hwif->rq;

190
		if (ata_pm_request(rq))
191
			ide_complete_pm_rq(drive, rq);
192 193
		else
			ide_finish_cmd(drive, cmd, stat);
194 195
	}

L
Linus Torvalds 已提交
196 197 198
	return ide_stopped;
}

199
static u8 wait_drive_not_busy(ide_drive_t *drive)
L
Linus Torvalds 已提交
200
{
201
	ide_hwif_t *hwif = drive->hwif;
202
	int retries;
L
Linus Torvalds 已提交
203 204 205
	u8 stat;

	/*
L
Lucas De Marchi 已提交
206
	 * Last sector was transferred, wait until device is ready.  This can
207
	 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
L
Linus Torvalds 已提交
208
	 */
209
	for (retries = 0; retries < 1000; retries++) {
210
		stat = hwif->tp_ops->read_status(hwif);
211

212
		if (stat & ATA_BUSY)
213 214 215 216
			udelay(10);
		else
			break;
	}
L
Linus Torvalds 已提交
217

218
	if (stat & ATA_BUSY)
219
		pr_err("%s: drive still BUSY!\n", drive->name);
L
Linus Torvalds 已提交
220 221 222 223

	return stat;
}

224 225
void ide_pio_bytes(ide_drive_t *drive, struct ide_cmd *cmd,
		   unsigned int write, unsigned int len)
L
Linus Torvalds 已提交
226 227 228
{
	ide_hwif_t *hwif = drive->hwif;
	struct scatterlist *sg = hwif->sg_table;
229
	struct scatterlist *cursg = cmd->cursg;
230
	unsigned long uninitialized_var(flags);
L
Linus Torvalds 已提交
231 232 233 234
	struct page *page;
	unsigned int offset;
	u8 *buf;

235 236 237 238 239
	if (cursg == NULL)
		cursg = cmd->cursg = sg;

	while (len) {
		unsigned nr_bytes = min(len, cursg->length - cmd->cursg_ofs);
J
Jean Delvare 已提交
240
		int page_is_high;
J
Jens Axboe 已提交
241

242 243 244 245 246 247
		page = sg_page(cursg);
		offset = cursg->offset + cmd->cursg_ofs;

		/* get the current page and offset */
		page = nth_page(page, (offset >> PAGE_SHIFT));
		offset %= PAGE_SIZE;
L
Linus Torvalds 已提交
248

249 250
		nr_bytes = min_t(unsigned, nr_bytes, (PAGE_SIZE - offset));

J
Jean Delvare 已提交
251 252
		page_is_high = PageHighMem(page);
		if (page_is_high)
253 254
			local_irq_save(flags);

255
		buf = kmap_atomic(page) + offset;
L
Linus Torvalds 已提交
256

257 258
		cmd->nleft -= nr_bytes;
		cmd->cursg_ofs += nr_bytes;
L
Linus Torvalds 已提交
259

260 261 262 263
		if (cmd->cursg_ofs == cursg->length) {
			cursg = cmd->cursg = sg_next(cmd->cursg);
			cmd->cursg_ofs = 0;
		}
L
Linus Torvalds 已提交
264

265 266 267 268 269
		/* do the actual data transfer */
		if (write)
			hwif->tp_ops->output_data(drive, cmd, buf, nr_bytes);
		else
			hwif->tp_ops->input_data(drive, cmd, buf, nr_bytes);
L
Linus Torvalds 已提交
270

271
		kunmap_atomic(buf);
272

J
Jean Delvare 已提交
273
		if (page_is_high)
274
			local_irq_restore(flags);
L
Linus Torvalds 已提交
275

276 277
		len -= nr_bytes;
	}
L
Linus Torvalds 已提交
278
}
279
EXPORT_SYMBOL_GPL(ide_pio_bytes);
L
Linus Torvalds 已提交
280

281 282
static void ide_pio_datablock(ide_drive_t *drive, struct ide_cmd *cmd,
			      unsigned int write)
L
Linus Torvalds 已提交
283
{
284 285
	unsigned int nr_bytes;

286 287
	u8 saved_io_32bit = drive->io_32bit;

288
	if (cmd->tf_flags & IDE_TFLAG_FS)
289
		scsi_req(cmd->rq)->result = 0;
L
Linus Torvalds 已提交
290

291
	if (cmd->tf_flags & IDE_TFLAG_IO_16BIT)
292
		drive->io_32bit = 0;
293

294 295
	touch_softlockup_watchdog();

296
	if (cmd->tf_flags & IDE_TFLAG_MULTI_PIO)
297
		nr_bytes = min_t(unsigned, cmd->nleft, drive->mult_count << 9);
298
	else
299 300 301
		nr_bytes = SECTOR_SIZE;

	ide_pio_bytes(drive, cmd, write, nr_bytes);
302 303

	drive->io_32bit = saved_io_32bit;
L
Linus Torvalds 已提交
304 305
}

306
static void ide_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
L
Linus Torvalds 已提交
307
{
308
	if (cmd->tf_flags & IDE_TFLAG_FS) {
309
		int nr_bytes = cmd->nbytes - cmd->nleft;
L
Linus Torvalds 已提交
310

311 312 313
		if (cmd->protocol == ATA_PROT_PIO &&
		    ((cmd->tf_flags & IDE_TFLAG_WRITE) || cmd->nleft == 0)) {
			if (cmd->tf_flags & IDE_TFLAG_MULTI_PIO)
314
				nr_bytes -= drive->mult_count << 9;
315
			else
316
				nr_bytes -= SECTOR_SIZE;
L
Linus Torvalds 已提交
317 318
		}

319
		if (nr_bytes > 0)
320
			ide_complete_rq(drive, BLK_STS_OK, nr_bytes);
L
Linus Torvalds 已提交
321 322 323
	}
}

324
void ide_finish_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 stat)
L
Linus Torvalds 已提交
325
{
326
	struct request *rq = drive->hwif->rq;
327 328
	u8 err = ide_read_error(drive), nsect = cmd->tf.nsect;
	u8 set_xfer = !!(cmd->tf_flags & IDE_TFLAG_SET_XFER);
L
Linus Torvalds 已提交
329

330
	ide_complete_cmd(drive, cmd, stat, err);
331
	scsi_req(rq)->result = err;
332 333 334 335 336 337

	if (err == 0 && set_xfer) {
		ide_set_xfer_rate(drive, nsect);
		ide_driveid_update(drive);
	}

338
	ide_complete_rq(drive, err ? BLK_STS_IOERR : BLK_STS_OK, blk_rq_bytes(rq));
L
Linus Torvalds 已提交
339 340 341
}

/*
342
 * Handler for command with PIO data phase.
L
Linus Torvalds 已提交
343
 */
344
static ide_startstop_t task_pio_intr(ide_drive_t *drive)
L
Linus Torvalds 已提交
345 346
{
	ide_hwif_t *hwif = drive->hwif;
347
	struct ide_cmd *cmd = &drive->hwif->cmd;
348
	u8 stat = hwif->tp_ops->read_status(hwif);
349
	u8 write = !!(cmd->tf_flags & IDE_TFLAG_WRITE);
L
Linus Torvalds 已提交
350

351 352 353
	if (write == 0) {
		/* Error? */
		if (stat & ATA_ERR)
354
			goto out_err;
L
Linus Torvalds 已提交
355

356
		/* Didn't want any data? Odd. */
357 358
		if ((stat & ATA_DRQ) == 0) {
			/* Command all done? */
359 360
			if (OK_STAT(stat, ATA_DRDY, ATA_BUSY))
				goto out_end;
361 362

			/* Assume it was a spurious irq */
363
			goto out_wait;
364
		}
365 366
	} else {
		if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
367
			goto out_err;
L
Linus Torvalds 已提交
368

369 370
		/* Deal with unexpected ATA data phase. */
		if (((stat & ATA_DRQ) == 0) ^ (cmd->nleft == 0))
371
			goto out_err;
372 373
	}

374 375
	if (write && cmd->nleft == 0)
		goto out_end;
L
Linus Torvalds 已提交
376 377

	/* Still data left to transfer. */
378
	ide_pio_datablock(drive, cmd, write);
L
Linus Torvalds 已提交
379

380 381 382 383
	/* Are we done? Check status and finish transfer. */
	if (write == 0 && cmd->nleft == 0) {
		stat = wait_drive_not_busy(drive);
		if (!OK_STAT(stat, 0, BAD_STAT))
384
			goto out_err;
L
Linus Torvalds 已提交
385

386 387 388
		goto out_end;
	}
out_wait:
L
Linus Torvalds 已提交
389
	/* Still data left to transfer. */
390
	ide_set_handler(drive, &task_pio_intr, WAIT_WORSTCASE);
L
Linus Torvalds 已提交
391
	return ide_started;
392
out_end:
393 394 395
	if ((cmd->tf_flags & IDE_TFLAG_FS) == 0)
		ide_finish_cmd(drive, cmd, stat);
	else
396
		ide_complete_rq(drive, BLK_STS_OK, blk_rq_sectors(cmd->rq) << 9);
397 398
	return ide_stopped;
out_err:
399 400
	ide_error_cmd(drive, cmd);
	return ide_error(drive, __func__, stat);
L
Linus Torvalds 已提交
401 402
}

403 404
static ide_startstop_t pre_task_out_intr(ide_drive_t *drive,
					 struct ide_cmd *cmd)
L
Linus Torvalds 已提交
405 406 407
{
	ide_startstop_t startstop;

408
	if (ide_wait_stat(&startstop, drive, ATA_DRQ,
L
Linus Torvalds 已提交
409
			  drive->bad_wstat, WAIT_DRQ)) {
410
		pr_err("%s: no DRQ after issuing %sWRITE%s\n", drive->name,
411
			(cmd->tf_flags & IDE_TFLAG_MULTI_PIO) ? "MULT" : "",
B
Bartlomiej Zolnierkiewicz 已提交
412
			(drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : "");
L
Linus Torvalds 已提交
413 414 415
		return startstop;
	}

B
Bartlomiej Zolnierkiewicz 已提交
416
	if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0)
L
Linus Torvalds 已提交
417 418
		local_irq_disable();

419
	ide_set_handler(drive, &task_pio_intr, WAIT_WORSTCASE);
420

421
	ide_pio_datablock(drive, cmd, 1);
L
Linus Torvalds 已提交
422 423 424 425

	return ide_started;
}

426 427
int ide_raw_taskfile(ide_drive_t *drive, struct ide_cmd *cmd, u8 *buf,
		     u16 nsect)
L
Linus Torvalds 已提交
428
{
429 430
	struct request *rq;
	int error;
L
Linus Torvalds 已提交
431

432 433 434
	rq = blk_get_request(drive->queue,
		(cmd->tf_flags & IDE_TFLAG_WRITE) ?
			REQ_OP_DRV_OUT : REQ_OP_DRV_IN, __GFP_RECLAIM);
C
Christoph Hellwig 已提交
435
	ide_req(rq)->type = ATA_PRIV_TASKFILE;
T
Tejun Heo 已提交
436

L
Linus Torvalds 已提交
437 438 439 440 441 442
	/*
	 * (ks) We transfer currently only whole sectors.
	 * This is suffient for now.  But, it would be great,
	 * if we would find a solution to transfer any size.
	 * To support special commands like READ LONG.
	 */
T
Tejun Heo 已提交
443 444
	if (nsect) {
		error = blk_rq_map_kern(drive->queue, rq, buf,
445
					nsect * SECTOR_SIZE, __GFP_RECLAIM);
T
Tejun Heo 已提交
446 447 448
		if (error)
			goto put_req;
	}
L
Linus Torvalds 已提交
449

450 451
	rq->special = cmd;
	cmd->rq = rq;
L
Linus Torvalds 已提交
452

453
	blk_execute_rq(drive->queue, NULL, rq, 0);
454
	error = scsi_req(rq)->result ? -EIO : 0;
T
Tejun Heo 已提交
455 456
put_req:
	blk_put_request(rq);
457
	return error;
L
Linus Torvalds 已提交
458 459 460
}
EXPORT_SYMBOL(ide_raw_taskfile);

461
int ide_no_data_taskfile(ide_drive_t *drive, struct ide_cmd *cmd)
462
{
463
	cmd->protocol = ATA_PROT_NODATA;
464

465
	return ide_raw_taskfile(drive, cmd, NULL, 0);
466 467 468
}
EXPORT_SYMBOL_GPL(ide_no_data_taskfile);

469
#ifdef CONFIG_IDE_TASK_IOCTL
470
int ide_taskfile_ioctl(ide_drive_t *drive, unsigned long arg)
L
Linus Torvalds 已提交
471 472
{
	ide_task_request_t	*req_task;
473
	struct ide_cmd		cmd;
L
Linus Torvalds 已提交
474 475
	u8 *outbuf		= NULL;
	u8 *inbuf		= NULL;
476
	u8 *data_buf		= NULL;
L
Linus Torvalds 已提交
477 478
	int err			= 0;
	int tasksize		= sizeof(struct ide_task_request_s);
479 480
	unsigned int taskin	= 0;
	unsigned int taskout	= 0;
481
	u16 nsect		= 0;
L
Linus Torvalds 已提交
482 483
	char __user *buf = (char __user *)arg;

J
Julia Lawall 已提交
484 485 486
	req_task = memdup_user(buf, tasksize);
	if (IS_ERR(req_task))
		return PTR_ERR(req_task);
L
Linus Torvalds 已提交
487

488 489
	taskout = req_task->out_size;
	taskin  = req_task->in_size;
490

491 492 493 494
	if (taskin > 65536 || taskout > 65536) {
		err = -EINVAL;
		goto abort;
	}
L
Linus Torvalds 已提交
495 496 497

	if (taskout) {
		int outtotal = tasksize;
498
		outbuf = kzalloc(taskout, GFP_KERNEL);
L
Linus Torvalds 已提交
499 500 501 502 503 504 505 506 507 508 509 510
		if (outbuf == NULL) {
			err = -ENOMEM;
			goto abort;
		}
		if (copy_from_user(outbuf, buf + outtotal, taskout)) {
			err = -EFAULT;
			goto abort;
		}
	}

	if (taskin) {
		int intotal = tasksize + taskout;
511
		inbuf = kzalloc(taskin, GFP_KERNEL);
L
Linus Torvalds 已提交
512 513 514 515 516 517 518 519 520 521
		if (inbuf == NULL) {
			err = -ENOMEM;
			goto abort;
		}
		if (copy_from_user(inbuf, buf + intotal, taskin)) {
			err = -EFAULT;
			goto abort;
		}
	}

522
	memset(&cmd, 0, sizeof(cmd));
L
Linus Torvalds 已提交
523

524 525
	memcpy(&cmd.hob, req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
	memcpy(&cmd.tf,  req_task->io_ports,  HDIO_DRIVE_TASK_HDR_SIZE);
526

527 528 529
	cmd.valid.out.tf = IDE_VALID_DEVICE;
	cmd.valid.in.tf  = IDE_VALID_DEVICE | IDE_VALID_IN_TF;
	cmd.tf_flags = IDE_TFLAG_IO_16BIT;
L
Linus Torvalds 已提交
530

531 532 533 534
	if (drive->dev_flags & IDE_DFLAG_LBA48) {
		cmd.tf_flags |= IDE_TFLAG_LBA48;
		cmd.valid.in.hob = IDE_VALID_IN_HOB;
	}
535

536
	if (req_task->out_flags.all) {
537
		cmd.ftf_flags |= IDE_FTFLAG_FLAGGED;
538 539

		if (req_task->out_flags.b.data)
540
			cmd.ftf_flags |= IDE_FTFLAG_OUT_DATA;
541 542

		if (req_task->out_flags.b.nsector_hob)
543
			cmd.valid.out.hob |= IDE_VALID_NSECT;
544
		if (req_task->out_flags.b.sector_hob)
545
			cmd.valid.out.hob |= IDE_VALID_LBAL;
546
		if (req_task->out_flags.b.lcyl_hob)
547
			cmd.valid.out.hob |= IDE_VALID_LBAM;
548
		if (req_task->out_flags.b.hcyl_hob)
549
			cmd.valid.out.hob |= IDE_VALID_LBAH;
550 551

		if (req_task->out_flags.b.error_feature)
552
			cmd.valid.out.tf  |= IDE_VALID_FEATURE;
553
		if (req_task->out_flags.b.nsector)
554
			cmd.valid.out.tf  |= IDE_VALID_NSECT;
555
		if (req_task->out_flags.b.sector)
556
			cmd.valid.out.tf  |= IDE_VALID_LBAL;
557
		if (req_task->out_flags.b.lcyl)
558
			cmd.valid.out.tf  |= IDE_VALID_LBAM;
559
		if (req_task->out_flags.b.hcyl)
560
			cmd.valid.out.tf  |= IDE_VALID_LBAH;
561
	} else {
562
		cmd.valid.out.tf |= IDE_VALID_OUT_TF;
563
		if (cmd.tf_flags & IDE_TFLAG_LBA48)
564
			cmd.valid.out.hob |= IDE_VALID_OUT_HOB;
565 566
	}

567
	if (req_task->in_flags.b.data)
568
		cmd.ftf_flags |= IDE_FTFLAG_IN_DATA;
569

570 571 572 573
	if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE) {
		/* fixup data phase if needed */
		if (req_task->data_phase == TASKFILE_IN_DMAQ ||
		    req_task->data_phase == TASKFILE_IN_DMA)
574
			cmd.tf_flags |= IDE_TFLAG_WRITE;
575 576
	}

577 578 579
	cmd.protocol = ATA_PROT_DMA;

	switch (req_task->data_phase) {
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
	case TASKFILE_MULTI_OUT:
		if (!drive->mult_count) {
			/* (hs): give up if multcount is not set */
			pr_err("%s: %s Multimode Write multcount is not set\n",
				drive->name, __func__);
			err = -EPERM;
			goto abort;
		}
		cmd.tf_flags |= IDE_TFLAG_MULTI_PIO;
		/* fall through */
	case TASKFILE_OUT:
		cmd.protocol = ATA_PROT_PIO;
		/* fall through */
	case TASKFILE_OUT_DMAQ:
	case TASKFILE_OUT_DMA:
		cmd.tf_flags |= IDE_TFLAG_WRITE;
		nsect = taskout / SECTOR_SIZE;
		data_buf = outbuf;
		break;
	case TASKFILE_MULTI_IN:
		if (!drive->mult_count) {
			/* (hs): give up if multcount is not set */
			pr_err("%s: %s Multimode Read multcount is not set\n",
				drive->name, __func__);
			err = -EPERM;
L
Linus Torvalds 已提交
605
			goto abort;
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
		}
		cmd.tf_flags |= IDE_TFLAG_MULTI_PIO;
		/* fall through */
	case TASKFILE_IN:
		cmd.protocol = ATA_PROT_PIO;
		/* fall through */
	case TASKFILE_IN_DMAQ:
	case TASKFILE_IN_DMA:
		nsect = taskin / SECTOR_SIZE;
		data_buf = inbuf;
		break;
	case TASKFILE_NO_DATA:
		cmd.protocol = ATA_PROT_NODATA;
		break;
	default:
		err = -EFAULT;
		goto abort;
L
Linus Torvalds 已提交
623 624
	}

625 626 627
	if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
		nsect = 0;
	else if (!nsect) {
628
		nsect = (cmd.hob.nsect << 8) | cmd.tf.nsect;
629 630

		if (!nsect) {
631
			pr_err("%s: in/out command without data\n",
632 633 634 635 636 637
					drive->name);
			err = -EFAULT;
			goto abort;
		}
	}

638
	err = ide_raw_taskfile(drive, &cmd, data_buf, nsect);
639

640 641
	memcpy(req_task->hob_ports, &cmd.hob, HDIO_DRIVE_HOB_HDR_SIZE - 2);
	memcpy(req_task->io_ports,  &cmd.tf,  HDIO_DRIVE_TASK_HDR_SIZE);
642

643
	if ((cmd.ftf_flags & IDE_FTFLAG_SET_IN_FLAGS) &&
644 645
	    req_task->in_flags.all == 0) {
		req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
B
Bartlomiej Zolnierkiewicz 已提交
646
		if (drive->dev_flags & IDE_DFLAG_LBA48)
647 648
			req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
	}
L
Linus Torvalds 已提交
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669

	if (copy_to_user(buf, req_task, tasksize)) {
		err = -EFAULT;
		goto abort;
	}
	if (taskout) {
		int outtotal = tasksize;
		if (copy_to_user(buf + outtotal, outbuf, taskout)) {
			err = -EFAULT;
			goto abort;
		}
	}
	if (taskin) {
		int intotal = tasksize + taskout;
		if (copy_to_user(buf + intotal, inbuf, taskin)) {
			err = -EFAULT;
			goto abort;
		}
	}
abort:
	kfree(req_task);
670 671
	kfree(outbuf);
	kfree(inbuf);
L
Linus Torvalds 已提交
672 673 674

	return err;
}
675
#endif