ide-scsi.c 28.0 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3
 * Copyright (C) 1996-1999  Gadi Oxman <gadio@netvision.net.il>
 * Copyright (C) 2004-2005  Bartlomiej Zolnierkiewicz
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 */

/*
 * Emulation of a SCSI host adapter for IDE ATAPI devices.
 *
 * With this driver, one can use the Linux SCSI drivers instead of the
 * native IDE ATAPI drivers.
 *
 * Ver 0.1   Dec  3 96   Initial version.
 * Ver 0.2   Jan 26 97   Fixed bug in cleanup_module() and added emulation
 *                        of MODE_SENSE_6/MODE_SELECT_6 for cdroms. Thanks
 *                        to Janos Farkas for pointing this out.
 *                       Avoid using bitfields in structures for m68k.
 *                       Added Scatter/Gather and DMA support.
 * Ver 0.4   Dec  7 97   Add support for ATAPI PD/CD drives.
 *                       Use variable timeout for each command.
 * Ver 0.5   Jan  2 98   Fix previous PD/CD support.
 *                       Allow disabling of SCSI-6 to SCSI-10 transformation.
 * Ver 0.6   Jan 27 98   Allow disabling of SCSI command translation layer
 *                        for access through /dev/sg.
 *                       Fix MODE_SENSE_6/MODE_SELECT_6/INQUIRY translation.
 * Ver 0.7   Dec 04 98   Ignore commands where lun != 0 to avoid multiple
 *                        detection of devices with CONFIG_SCSI_MULTI_LUN
 * Ver 0.8   Feb 05 99   Optical media need translation too. Reverse 0.7.
 * Ver 0.9   Jul 04 99   Fix a bug in SG_SET_TRANSFORM.
 * Ver 0.91  Jun 10 02   Fix "off by one" error in transforms
 * Ver 0.92  Dec 31 02   Implement new SCSI mid level API
 */

#define IDESCSI_VERSION "0.92"

#include <linux/module.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/ioport.h>
#include <linux/blkdev.h>
#include <linux/errno.h>
#include <linux/hdreg.h>
#include <linux/slab.h>
#include <linux/ide.h>
#include <linux/scatterlist.h>
47
#include <linux/delay.h>
48
#include <linux/mutex.h>
J
Jiri Slaby 已提交
49
#include <linux/bitops.h>
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78

#include <asm/io.h>
#include <asm/uaccess.h>

#include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_host.h>
#include <scsi/scsi_tcq.h>
#include <scsi/sg.h>

#define IDESCSI_DEBUG_LOG		0

/*
 *	SCSI command transformation layer
 */
#define IDESCSI_SG_TRANSFORM		1	/* /dev/sg transformation */

/*
 *	Log flags
 */
#define IDESCSI_LOG_CMD			0	/* Log SCSI commands */

typedef struct ide_scsi_obj {
	ide_drive_t		*drive;
	ide_driver_t		*driver;
	struct gendisk		*disk;
	struct Scsi_Host	*host;

79
	struct ide_atapi_pc *pc;		/* Current packet command */
L
Linus Torvalds 已提交
80 81 82 83 84
	unsigned long flags;			/* Status/Action flags */
	unsigned long transform;		/* SCSI cmd translation layer */
	unsigned long log;			/* log flags */
} idescsi_scsi_t;

85
static DEFINE_MUTEX(idescsi_ref_mutex);
86 87
/* Set by module param to skip cd */
static int idescsi_nocd;
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95

#define ide_scsi_g(disk) \
	container_of((disk)->private_data, struct ide_scsi_obj, driver)

static struct ide_scsi_obj *ide_scsi_get(struct gendisk *disk)
{
	struct ide_scsi_obj *scsi = NULL;

96
	mutex_lock(&idescsi_ref_mutex);
L
Linus Torvalds 已提交
97 98 99
	scsi = ide_scsi_g(disk);
	if (scsi)
		scsi_host_get(scsi->host);
100
	mutex_unlock(&idescsi_ref_mutex);
L
Linus Torvalds 已提交
101 102 103 104 105
	return scsi;
}

static void ide_scsi_put(struct ide_scsi_obj *scsi)
{
106
	mutex_lock(&idescsi_ref_mutex);
L
Linus Torvalds 已提交
107
	scsi_host_put(scsi->host);
108
	mutex_unlock(&idescsi_ref_mutex);
L
Linus Torvalds 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
}

static inline idescsi_scsi_t *scsihost_to_idescsi(struct Scsi_Host *host)
{
	return (idescsi_scsi_t*) (&host[1]);
}

static inline idescsi_scsi_t *drive_to_idescsi(ide_drive_t *ide_drive)
{
	return scsihost_to_idescsi(ide_drive->driver_data);
}

/*
 *	Per ATAPI device status bits.
 */
#define IDESCSI_DRQ_INTERRUPT		0	/* DRQ interrupt device */

/*
 *	ide-scsi requests.
 */
#define IDESCSI_PC_RQ			90

/*
132
 *	PIO data transfer routine using the scatter gather table.
L
Linus Torvalds 已提交
133
 */
134 135
static void ide_scsi_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
				unsigned int bcount, int write)
L
Linus Torvalds 已提交
136
{
137
	ide_hwif_t *hwif = drive->hwif;
138
	xfer_func_t *xf = write ? hwif->output_data : hwif->input_data;
L
Linus Torvalds 已提交
139 140 141 142 143
	char *buf;
	int count;

	while (bcount) {
		count = min(pc->sg->length - pc->b_count, bcount);
J
Jens Axboe 已提交
144
		if (PageHighMem(sg_page(pc->sg))) {
145 146 147
			unsigned long flags;

			local_irq_save(flags);
J
Jens Axboe 已提交
148
			buf = kmap_atomic(sg_page(pc->sg), KM_IRQ0) +
149 150
					  pc->sg->offset;
			xf(drive, NULL, buf + pc->b_count, count);
151 152 153
			kunmap_atomic(buf - pc->sg->offset, KM_IRQ0);
			local_irq_restore(flags);
		} else {
J
Jens Axboe 已提交
154
			buf = sg_virt(pc->sg);
155
			xf(drive, NULL, buf + pc->b_count, count);
156 157
		}
		bcount -= count; pc->b_count += count;
L
Linus Torvalds 已提交
158
		if (pc->b_count == pc->sg->length) {
159
			if (!--pc->sg_cnt)
J
Jens Axboe 已提交
160 161
				break;
			pc->sg = sg_next(pc->sg);
L
Linus Torvalds 已提交
162 163 164
			pc->b_count = 0;
		}
	}
J
Jens Axboe 已提交
165 166

	if (bcount) {
167 168 169 170
		printk(KERN_ERR "%s: scatter gather table too small, %s\n",
				drive->name, write ? "padding with zeros"
						   : "discarding data");
		ide_pad_transfer(drive, write, bcount);
J
Jens Axboe 已提交
171
	}
L
Linus Torvalds 已提交
172 173
}

174 175 176 177 178
static void ide_scsi_hex_dump(u8 *data, int len)
{
	print_hex_dump(KERN_CONT, "", DUMP_PREFIX_NONE, 16, 1, data, len, 0);
}

179 180
static int idescsi_check_condition(ide_drive_t *drive,
		struct request *failed_cmd)
L
Linus Torvalds 已提交
181 182
{
	idescsi_scsi_t *scsi = drive_to_idescsi(drive);
183
	struct ide_atapi_pc   *pc;
L
Linus Torvalds 已提交
184 185 186 187
	struct request *rq;
	u8             *buf;

	/* stuff a sense request in front of our current request */
188
	pc = kzalloc(sizeof(struct ide_atapi_pc), GFP_ATOMIC);
189 190 191
	rq = kmalloc(sizeof(struct request), GFP_ATOMIC);
	buf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_ATOMIC);
	if (!pc || !rq || !buf) {
J
Jesper Juhl 已提交
192 193 194
		kfree(buf);
		kfree(rq);
		kfree(pc);
L
Linus Torvalds 已提交
195 196
		return -ENOMEM;
	}
F
FUJITA Tomonori 已提交
197
	blk_rq_init(NULL, rq);
L
Linus Torvalds 已提交
198 199
	rq->special = (char *) pc;
	pc->rq = rq;
200
	pc->buf = buf;
L
Linus Torvalds 已提交
201
	pc->c[0] = REQUEST_SENSE;
202
	pc->c[4] = pc->req_xfer = pc->buf_size = SCSI_SENSE_BUFFERSIZE;
203
	rq->cmd_type = REQ_TYPE_SENSE;
204
	rq->cmd_flags |= REQ_PREEMPT;
L
Linus Torvalds 已提交
205 206
	pc->timeout = jiffies + WAIT_READY;
	/* NOTE! Save the failed packet command in "rq->buffer" */
207 208
	rq->buffer = (void *) failed_cmd->special;
	pc->scsi_cmd = ((struct ide_atapi_pc *) failed_cmd->special)->scsi_cmd;
L
Linus Torvalds 已提交
209 210
	if (test_bit(IDESCSI_LOG_CMD, &scsi->log)) {
		printk ("ide-scsi: %s: queue cmd = ", drive->name);
211
		ide_scsi_hex_dump(pc->c, 6);
L
Linus Torvalds 已提交
212 213
	}
	rq->rq_disk = scsi->disk;
214 215
	ide_do_drive_cmd(drive, rq);
	return 0;
L
Linus Torvalds 已提交
216 217 218 219 220 221 222
}

static int idescsi_end_request(ide_drive_t *, int, int);

static ide_startstop_t
idescsi_atapi_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
{
223 224
	ide_hwif_t *hwif = drive->hwif;

225
	if (ide_read_status(drive) & (BUSY_STAT | DRQ_STAT))
L
Linus Torvalds 已提交
226
		/* force an abort */
227
		hwif->OUTBSYNC(hwif, WIN_IDLEIMMEDIATE,
228
			       hwif->io_ports.command_addr);
L
Linus Torvalds 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241

	rq->errors++;

	idescsi_end_request(drive, 0, 0);

	return ide_stopped;
}

static ide_startstop_t
idescsi_atapi_abort(ide_drive_t *drive, struct request *rq)
{
#if IDESCSI_DEBUG_LOG
	printk(KERN_WARNING "idescsi_atapi_abort called for %lu\n",
242
		((struct ide_atapi_pc *) rq->special)->scsi_cmd->serial_number);
L
Linus Torvalds 已提交
243 244 245 246 247 248 249 250 251 252 253 254
#endif
	rq->errors |= ERROR_MAX;

	idescsi_end_request(drive, 0, 0);

	return ide_stopped;
}

static int idescsi_end_request (ide_drive_t *drive, int uptodate, int nrsecs)
{
	idescsi_scsi_t *scsi = drive_to_idescsi(drive);
	struct request *rq = HWGROUP(drive)->rq;
255
	struct ide_atapi_pc *pc = (struct ide_atapi_pc *) rq->special;
L
Linus Torvalds 已提交
256 257
	int log = test_bit(IDESCSI_LOG_CMD, &scsi->log);
	struct Scsi_Host *host;
258
	int errors = rq->errors;
L
Linus Torvalds 已提交
259 260
	unsigned long flags;

261
	if (!blk_special_request(rq) && !blk_sense_request(rq)) {
L
Linus Torvalds 已提交
262 263 264 265
		ide_end_request(drive, uptodate, nrsecs);
		return 0;
	}
	ide_end_drive_cmd (drive, 0, 0);
266
	if (blk_sense_request(rq)) {
267
		struct ide_atapi_pc *opc = (struct ide_atapi_pc *) rq->buffer;
L
Linus Torvalds 已提交
268 269
		if (log) {
			printk ("ide-scsi: %s: wrap up check %lu, rst = ", drive->name, opc->scsi_cmd->serial_number);
270
			ide_scsi_hex_dump(pc->buf, 16);
L
Linus Torvalds 已提交
271
		}
272 273 274
		memcpy((void *) opc->scsi_cmd->sense_buffer, pc->buf,
			SCSI_SENSE_BUFFERSIZE);
		kfree(pc->buf);
L
Linus Torvalds 已提交
275 276 277 278 279
		kfree(pc);
		kfree(rq);
		pc = opc;
		rq = pc->rq;
		pc->scsi_cmd->result = (CHECK_CONDITION << 1) |
280 281 282 283
				(((pc->flags & PC_FLAG_TIMEDOUT) ?
				  DID_TIME_OUT :
				  DID_OK) << 16);
	} else if (pc->flags & PC_FLAG_TIMEDOUT) {
L
Linus Torvalds 已提交
284 285 286 287
		if (log)
			printk (KERN_WARNING "ide-scsi: %s: timed out for %lu\n",
					drive->name, pc->scsi_cmd->serial_number);
		pc->scsi_cmd->result = DID_TIME_OUT << 16;
288
	} else if (errors >= ERROR_MAX) {
L
Linus Torvalds 已提交
289 290 291
		pc->scsi_cmd->result = DID_ERROR << 16;
		if (log)
			printk ("ide-scsi: %s: I/O error for %lu\n", drive->name, pc->scsi_cmd->serial_number);
292
	} else if (errors) {
L
Linus Torvalds 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
		if (log)
			printk ("ide-scsi: %s: check condition for %lu\n", drive->name, pc->scsi_cmd->serial_number);
		if (!idescsi_check_condition(drive, rq))
			/* we started a request sense, so we'll be back, exit for now */
			return 0;
		pc->scsi_cmd->result = (CHECK_CONDITION << 1) | (DID_OK << 16);
	} else {
		pc->scsi_cmd->result = DID_OK << 16;
	}
	host = pc->scsi_cmd->device->host;
	spin_lock_irqsave(host->host_lock, flags);
	pc->done(pc->scsi_cmd);
	spin_unlock_irqrestore(host->host_lock, flags);
	kfree(pc);
	kfree(rq);
	scsi->pc = NULL;
	return 0;
}

312
static inline unsigned long get_timeout(struct ide_atapi_pc *pc)
L
Linus Torvalds 已提交
313 314 315 316 317 318
{
	return max_t(unsigned long, WAIT_CMD, pc->timeout - jiffies);
}

static int idescsi_expiry(ide_drive_t *drive)
{
319
	idescsi_scsi_t *scsi = drive_to_idescsi(drive);
320
	struct ide_atapi_pc   *pc   = scsi->pc;
L
Linus Torvalds 已提交
321 322 323 324

#if IDESCSI_DEBUG_LOG
	printk(KERN_WARNING "idescsi_expiry called for %lu at %lu\n", pc->scsi_cmd->serial_number, jiffies);
#endif
325
	pc->flags |= PC_FLAG_TIMEDOUT;
L
Linus Torvalds 已提交
326 327 328 329 330 331 332 333 334 335

	return 0;					/* we do not want the ide subsystem to retry */
}

/*
 *	Our interrupt handler.
 */
static ide_startstop_t idescsi_pc_intr (ide_drive_t *drive)
{
	idescsi_scsi_t *scsi = drive_to_idescsi(drive);
336
	ide_hwif_t *hwif = drive->hwif;
337
	struct ide_atapi_pc *pc = scsi->pc;
L
Linus Torvalds 已提交
338
	struct request *rq = pc->rq;
339
	xfer_func_t *xferfunc;
L
Linus Torvalds 已提交
340
	unsigned int temp;
341
	u16 bcount;
342
	u8 stat, ireason;
L
Linus Torvalds 已提交
343 344 345 346 347

#if IDESCSI_DEBUG_LOG
	printk (KERN_INFO "ide-scsi: Reached idescsi_pc_intr interrupt handler\n");
#endif /* IDESCSI_DEBUG_LOG */

348
	if (pc->flags & PC_FLAG_TIMEDOUT) {
L
Linus Torvalds 已提交
349 350 351 352 353 354 355 356
#if IDESCSI_DEBUG_LOG
		printk(KERN_WARNING "idescsi_pc_intr: got timed out packet  %lu at %lu\n",
				pc->scsi_cmd->serial_number, jiffies);
#endif
		/* end this request now - scsi should retry it*/
		idescsi_end_request (drive, 1, 0);
		return ide_stopped;
	}
357
	if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
358 359 360 361
		if (hwif->dma_ops->dma_end(drive))
			pc->flags |= PC_FLAG_DMA_ERROR;
		else
			pc->xferred = pc->req_xfer;
L
Linus Torvalds 已提交
362 363 364 365 366 367
#if IDESCSI_DEBUG_LOG
		printk ("ide-scsi: %s: DMA complete\n", drive->name);
#endif /* IDESCSI_DEBUG_LOG */
	}

	/* Clear the interrupt */
368
	stat = ide_read_status(drive);
L
Linus Torvalds 已提交
369

370
	if ((stat & DRQ_STAT) == 0) {
L
Linus Torvalds 已提交
371 372
		/* No more interrupts */
		if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
373 374
			printk(KERN_INFO "Packet command completed, %d bytes"
					" transferred\n", pc->xferred);
375
		pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
376
		local_irq_enable_in_hardirq();
377
		if ((stat & ERR_STAT) || (pc->flags & PC_FLAG_DMA_ERROR))
L
Linus Torvalds 已提交
378 379 380 381
			rq->errors++;
		idescsi_end_request (drive, 1, 0);
		return ide_stopped;
	}
382 383 384 385 386 387 388
	if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
		pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
		printk(KERN_ERR "%s: The device wants to issue more interrupts "
				"in DMA mode\n", drive->name);
		ide_dma_off(drive);
		return ide_do_reset(drive);
	}
389 390 391
	bcount = (hwif->INB(hwif->io_ports.lbah_addr) << 8) |
		  hwif->INB(hwif->io_ports.lbam_addr);
	ireason = hwif->INB(hwif->io_ports.nsect_addr);
L
Linus Torvalds 已提交
392

393
	if (ireason & CD) {
L
Linus Torvalds 已提交
394 395 396
		printk(KERN_ERR "ide-scsi: CoD != 0 in idescsi_pc_intr\n");
		return ide_do_reset (drive);
	}
397 398 399 400 401 402 403 404 405
	if (((ireason & IO) == IO) == !!(pc->flags & PC_FLAG_WRITING)) {
		/* Hopefully, we will never get here */
		printk(KERN_ERR "%s: We wanted to %s, but the device wants us "
				"to %s!\n", drive->name,
				(ireason & IO) ? "Write" : "Read",
				(ireason & IO) ? "Read" : "Write");
		return ide_do_reset(drive);
	}
	if (!(pc->flags & PC_FLAG_WRITING)) {
406 407 408
		temp = pc->xferred + bcount;
		if (temp > pc->req_xfer) {
			if (temp > pc->buf_size) {
L
Linus Torvalds 已提交
409 410 411
				printk(KERN_ERR "ide-scsi: The scsi wants to "
					"send us more data than expected "
					"- discarding data\n");
412
				temp = pc->buf_size - pc->xferred;
L
Linus Torvalds 已提交
413 414
				if (temp) {
					if (pc->sg)
415 416
						ide_scsi_io_buffers(drive, pc,
								    temp, 0);
L
Linus Torvalds 已提交
417
					else
418 419
						hwif->input_data(drive, NULL,
							pc->cur_pos, temp);
420 421 422
					printk(KERN_ERR "ide-scsi: transferred"
							" %d of %d bytes\n",
							temp, bcount);
L
Linus Torvalds 已提交
423
				}
424 425
				pc->xferred += temp;
				pc->cur_pos += temp;
426
				ide_pad_transfer(drive, 0, bcount - temp);
L
Linus Torvalds 已提交
427 428 429 430 431 432 433
				ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
				return ide_started;
			}
#if IDESCSI_DEBUG_LOG
			printk (KERN_NOTICE "ide-scsi: The scsi wants to send us more data than expected - allowing transfer\n");
#endif /* IDESCSI_DEBUG_LOG */
		}
434 435 436 437 438 439 440 441 442 443
		xferfunc = hwif->input_data;
	} else
		xferfunc = hwif->output_data;

	if (pc->sg)
		ide_scsi_io_buffers(drive, pc, bcount,
				    !!(pc->flags & PC_FLAG_WRITING));
	else
		xferfunc(drive, NULL, pc->cur_pos, bcount);

L
Linus Torvalds 已提交
444
	/* Update the current position */
445 446
	pc->xferred += bcount;
	pc->cur_pos += bcount;
L
Linus Torvalds 已提交
447 448 449 450 451 452 453 454 455 456

	/* And set the interrupt handler again */
	ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
	return ide_started;
}

static ide_startstop_t idescsi_transfer_pc(ide_drive_t *drive)
{
	ide_hwif_t *hwif = drive->hwif;
	idescsi_scsi_t *scsi = drive_to_idescsi(drive);
457
	struct ide_atapi_pc *pc = scsi->pc;
L
Linus Torvalds 已提交
458
	ide_startstop_t startstop;
459
	u8 ireason;
L
Linus Torvalds 已提交
460 461 462 463 464 465

	if (ide_wait_stat(&startstop,drive,DRQ_STAT,BUSY_STAT,WAIT_READY)) {
		printk(KERN_ERR "ide-scsi: Strange, packet command "
			"initiated yet DRQ isn't asserted\n");
		return startstop;
	}
466
	ireason = hwif->INB(hwif->io_ports.nsect_addr);
467
	if ((ireason & CD) == 0 || (ireason & IO)) {
L
Linus Torvalds 已提交
468 469 470 471
		printk(KERN_ERR "ide-scsi: (IO,CoD) != (0,1) while "
				"issuing a packet command\n");
		return ide_do_reset (drive);
	}
E
Eric Sesterhenn 已提交
472
	BUG_ON(HWGROUP(drive)->handler != NULL);
L
Linus Torvalds 已提交
473 474
	/* Set the interrupt routine */
	ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
475

476 477
	if (pc->flags & PC_FLAG_DMA_OK) {
		pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
478
		hwif->dma_ops->dma_start(drive);
L
Linus Torvalds 已提交
479
	}
480 481 482 483

	/* Send the actual packet */
	hwif->output_data(drive, NULL, scsi->pc->c, 12);

L
Linus Torvalds 已提交
484 485 486
	return ide_started;
}

487
static inline int idescsi_set_direction(struct ide_atapi_pc *pc)
L
Linus Torvalds 已提交
488 489 490
{
	switch (pc->c[0]) {
		case READ_6: case READ_10: case READ_12:
491
			pc->flags &= ~PC_FLAG_WRITING;
L
Linus Torvalds 已提交
492 493
			return 0;
		case WRITE_6: case WRITE_10: case WRITE_12:
494
			pc->flags |= PC_FLAG_WRITING;
L
Linus Torvalds 已提交
495 496 497 498 499 500
			return 0;
		default:
			return 1;
	}
}

501
static int idescsi_map_sg(ide_drive_t *drive, struct ide_atapi_pc *pc)
L
Linus Torvalds 已提交
502 503 504 505 506
{
	ide_hwif_t *hwif = drive->hwif;
	struct scatterlist *sg, *scsi_sg;
	int segments;

507
	if (!pc->req_xfer || pc->req_xfer % 1024)
L
Linus Torvalds 已提交
508 509 510 511 512 513
		return 1;

	if (idescsi_set_direction(pc))
		return 1;

	sg = hwif->sg_table;
514 515
	scsi_sg = scsi_sglist(pc->scsi_cmd);
	segments = scsi_sg_count(pc->scsi_cmd);
L
Linus Torvalds 已提交
516 517 518 519

	if (segments > hwif->sg_max_nents)
		return 1;

520 521
	hwif->sg_nents = segments;
	memcpy(sg, scsi_sg, sizeof(*sg) * segments);
L
Linus Torvalds 已提交
522 523 524 525

	return 0;
}

526 527
static ide_startstop_t idescsi_issue_pc(ide_drive_t *drive,
		struct ide_atapi_pc *pc)
L
Linus Torvalds 已提交
528 529 530
{
	idescsi_scsi_t *scsi = drive_to_idescsi(drive);
	ide_hwif_t *hwif = drive->hwif;
531
	u16 bcount;
532
	u8 dma = 0;
L
Linus Torvalds 已提交
533

534 535 536 537 538
	/* Set the current packet command */
	scsi->pc = pc;
	/* We haven't transferred any data yet */
	pc->xferred = 0;
	pc->cur_pos = pc->buf;
539
	/* Request to transfer the entire buffer at once */
540
	bcount = min(pc->req_xfer, 63 * 1024);
L
Linus Torvalds 已提交
541 542 543

	if (drive->using_dma && !idescsi_map_sg(drive, pc)) {
		hwif->sg_mapped = 1;
544
		dma = !hwif->dma_ops->dma_setup(drive);
L
Linus Torvalds 已提交
545 546 547
		hwif->sg_mapped = 0;
	}

548
	ide_pktcmd_tf_load(drive, 0, bcount, dma);
L
Linus Torvalds 已提交
549

550
	if (dma)
551
		pc->flags |= PC_FLAG_DMA_OK;
L
Linus Torvalds 已提交
552 553

	if (test_bit(IDESCSI_DRQ_INTERRUPT, &scsi->flags)) {
554 555
		ide_execute_command(drive, WIN_PACKETCMD, &idescsi_transfer_pc,
				    get_timeout(pc), idescsi_expiry);
L
Linus Torvalds 已提交
556 557 558
		return ide_started;
	} else {
		/* Issue the packet command */
559
		ide_execute_pkt_cmd(drive);
L
Linus Torvalds 已提交
560 561 562 563 564 565 566 567 568 569
		return idescsi_transfer_pc(drive);
	}
}

/*
 *	idescsi_do_request is our request handling function.
 */
static ide_startstop_t idescsi_do_request (ide_drive_t *drive, struct request *rq, sector_t block)
{
#if IDESCSI_DEBUG_LOG
570
	printk (KERN_INFO "dev: %s, cmd: %x, errors: %d\n", rq->rq_disk->disk_name,rq->cmd[0],rq->errors);
L
Linus Torvalds 已提交
571 572 573
	printk (KERN_INFO "sector: %ld, nr_sectors: %ld, current_nr_sectors: %d\n",rq->sector,rq->nr_sectors,rq->current_nr_sectors);
#endif /* IDESCSI_DEBUG_LOG */

574
	if (blk_sense_request(rq) || blk_special_request(rq)) {
575 576
		return idescsi_issue_pc(drive,
				(struct ide_atapi_pc *) rq->special);
L
Linus Torvalds 已提交
577 578 579 580 581 582
	}
	blk_dump_rq_flags(rq, "ide-scsi: unsup command");
	idescsi_end_request (drive, 0, 0);
	return ide_stopped;
}

583
#ifdef CONFIG_IDE_PROC_FS
L
Linus Torvalds 已提交
584 585 586 587 588
static void idescsi_add_settings(ide_drive_t *drive)
{
	idescsi_scsi_t *scsi = drive_to_idescsi(drive);

/*
589
 *			drive	setting name	read/write	data type	min	max	mul_factor	div_factor	data pointer		set function
L
Linus Torvalds 已提交
590
 */
591 592 593 594 595
	ide_add_setting(drive,	"bios_cyl",	SETTING_RW,	TYPE_INT,	0,	1023,	1,		1,		&drive->bios_cyl,	NULL);
	ide_add_setting(drive,	"bios_head",	SETTING_RW,	TYPE_BYTE,	0,	255,	1,		1,		&drive->bios_head,	NULL);
	ide_add_setting(drive,	"bios_sect",	SETTING_RW,	TYPE_BYTE,	0,	63,	1,		1,		&drive->bios_sect,	NULL);
	ide_add_setting(drive,	"transform",	SETTING_RW,	TYPE_INT,	0,	3,	1,		1,		&scsi->transform,	NULL);
	ide_add_setting(drive,	"log",		SETTING_RW,	TYPE_INT,	0,	1,	1,		1,		&scsi->log,		NULL);
L
Linus Torvalds 已提交
596
}
597 598 599
#else
static inline void idescsi_add_settings(ide_drive_t *drive) { ; }
#endif
L
Linus Torvalds 已提交
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614

/*
 *	Driver initialization.
 */
static void idescsi_setup (ide_drive_t *drive, idescsi_scsi_t *scsi)
{
	if (drive->id && (drive->id->config & 0x0060) == 0x20)
		set_bit (IDESCSI_DRQ_INTERRUPT, &scsi->flags);
	clear_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
#if IDESCSI_DEBUG_LOG
	set_bit(IDESCSI_LOG_CMD, &scsi->log);
#endif /* IDESCSI_DEBUG_LOG */
	idescsi_add_settings(drive);
}

615
static void ide_scsi_remove(ide_drive_t *drive)
L
Linus Torvalds 已提交
616 617 618 619 620
{
	struct Scsi_Host *scsihost = drive->driver_data;
	struct ide_scsi_obj *scsi = scsihost_to_idescsi(scsihost);
	struct gendisk *g = scsi->disk;

621
	scsi_remove_host(scsihost);
622
	ide_proc_unregister_driver(drive, scsi->driver);
L
Linus Torvalds 已提交
623 624 625 626 627 628 629 630 631 632

	ide_unregister_region(g);

	drive->driver_data = NULL;
	g->private_data = NULL;
	put_disk(g);

	ide_scsi_put(scsi);
}

633
static int ide_scsi_probe(ide_drive_t *);
L
Linus Torvalds 已提交
634

635
#ifdef CONFIG_IDE_PROC_FS
L
Linus Torvalds 已提交
636 637 638 639 640 641 642
static ide_proc_entry_t idescsi_proc[] = {
	{ "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
	{ NULL, 0, NULL, NULL }
};
#endif

static ide_driver_t idescsi_driver = {
643
	.gen_driver = {
644
		.owner		= THIS_MODULE,
645 646 647
		.name		= "ide-scsi",
		.bus		= &ide_bus_type,
	},
648 649
	.probe			= ide_scsi_probe,
	.remove			= ide_scsi_remove,
L
Linus Torvalds 已提交
650 651 652 653 654 655 656
	.version		= IDESCSI_VERSION,
	.media			= ide_scsi,
	.supports_dsc_overlap	= 0,
	.do_request		= idescsi_do_request,
	.end_request		= idescsi_end_request,
	.error                  = idescsi_atapi_error,
	.abort                  = idescsi_atapi_abort,
657 658 659
#ifdef CONFIG_IDE_PROC_FS
	.proc			= idescsi_proc,
#endif
L
Linus Torvalds 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
};

static int idescsi_ide_open(struct inode *inode, struct file *filp)
{
	struct gendisk *disk = inode->i_bdev->bd_disk;
	struct ide_scsi_obj *scsi;

	if (!(scsi = ide_scsi_get(disk)))
		return -ENXIO;

	return 0;
}

static int idescsi_ide_release(struct inode *inode, struct file *filp)
{
	struct gendisk *disk = inode->i_bdev->bd_disk;
	struct ide_scsi_obj *scsi = ide_scsi_g(disk);

	ide_scsi_put(scsi);

	return 0;
}

static int idescsi_ide_ioctl(struct inode *inode, struct file *file,
			unsigned int cmd, unsigned long arg)
{
	struct block_device *bdev = inode->i_bdev;
	struct ide_scsi_obj *scsi = ide_scsi_g(bdev->bd_disk);
	return generic_ide_ioctl(scsi->drive, file, bdev, cmd, arg);
}

static struct block_device_operations idescsi_ops = {
	.owner		= THIS_MODULE,
	.open		= idescsi_ide_open,
	.release	= idescsi_ide_release,
	.ioctl		= idescsi_ide_ioctl,
};

static int idescsi_slave_configure(struct scsi_device * sdp)
{
	/* Configure detected device */
701 702
	sdp->use_10_for_rw = 1;
	sdp->use_10_for_ms = 1;
L
Linus Torvalds 已提交
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
	scsi_adjust_queue_depth(sdp, MSG_SIMPLE_TAG, sdp->host->cmd_per_lun);
	return 0;
}

static const char *idescsi_info (struct Scsi_Host *host)
{
	return "SCSI host adapter emulation for IDE ATAPI devices";
}

static int idescsi_ioctl (struct scsi_device *dev, int cmd, void __user *arg)
{
	idescsi_scsi_t *scsi = scsihost_to_idescsi(dev->host);

	if (cmd == SG_SET_TRANSFORM) {
		if (arg)
			set_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
		else
			clear_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
		return 0;
	} else if (cmd == SG_GET_TRANSFORM)
		return put_user(test_bit(IDESCSI_SG_TRANSFORM, &scsi->transform), (int __user *) arg);
	return -EINVAL;
}

static int idescsi_queue (struct scsi_cmnd *cmd,
		void (*done)(struct scsi_cmnd *))
{
	struct Scsi_Host *host = cmd->device->host;
	idescsi_scsi_t *scsi = scsihost_to_idescsi(host);
	ide_drive_t *drive = scsi->drive;
	struct request *rq = NULL;
734
	struct ide_atapi_pc *pc = NULL;
L
Linus Torvalds 已提交
735 736

	if (!drive) {
J
Jeff Garzik 已提交
737
		scmd_printk (KERN_ERR, cmd, "drive not present\n");
L
Linus Torvalds 已提交
738 739 740
		goto abort;
	}
	scsi = drive_to_idescsi(drive);
741 742
	pc = kmalloc(sizeof(struct ide_atapi_pc), GFP_ATOMIC);
	rq = kmalloc(sizeof(struct request), GFP_ATOMIC);
L
Linus Torvalds 已提交
743 744 745 746 747 748 749
	if (rq == NULL || pc == NULL) {
		printk (KERN_ERR "ide-scsi: %s: out of memory\n", drive->name);
		goto abort;
	}

	memset (pc->c, 0, 12);
	pc->flags = 0;
750 751
	if (cmd->sc_data_direction == DMA_TO_DEVICE)
		pc->flags |= PC_FLAG_WRITING;
L
Linus Torvalds 已提交
752 753
	pc->rq = rq;
	memcpy (pc->c, cmd->cmnd, cmd->cmd_len);
754
	pc->buf = NULL;
755
	pc->sg = scsi_sglist(cmd);
756
	pc->sg_cnt = scsi_sg_count(cmd);
L
Linus Torvalds 已提交
757
	pc->b_count = 0;
758
	pc->req_xfer = pc->buf_size = scsi_bufflen(cmd);
L
Linus Torvalds 已提交
759 760 761 762 763 764
	pc->scsi_cmd = cmd;
	pc->done = done;
	pc->timeout = jiffies + cmd->timeout_per_command;

	if (test_bit(IDESCSI_LOG_CMD, &scsi->log)) {
		printk ("ide-scsi: %s: que %lu, cmd = ", drive->name, cmd->serial_number);
765
		ide_scsi_hex_dump(cmd->cmnd, cmd->cmd_len);
L
Linus Torvalds 已提交
766 767
		if (memcmp(pc->c, cmd->cmnd, cmd->cmd_len)) {
			printk ("ide-scsi: %s: que %lu, tsl = ", drive->name, cmd->serial_number);
768
			ide_scsi_hex_dump(pc->c, 12);
L
Linus Torvalds 已提交
769 770 771
		}
	}

F
FUJITA Tomonori 已提交
772
	blk_rq_init(NULL, rq);
L
Linus Torvalds 已提交
773
	rq->special = (char *) pc;
774
	rq->cmd_type = REQ_TYPE_SPECIAL;
L
Linus Torvalds 已提交
775
	spin_unlock_irq(host->host_lock);
776
	blk_execute_rq_nowait(drive->queue, scsi->disk, rq, 0, NULL);
L
Linus Torvalds 已提交
777 778 779
	spin_lock_irq(host->host_lock);
	return 0;
abort:
J
Jesper Juhl 已提交
780 781
	kfree (pc);
	kfree (rq);
L
Linus Torvalds 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
	cmd->result = DID_ERROR << 16;
	done(cmd);
	return 0;
}

static int idescsi_eh_abort (struct scsi_cmnd *cmd)
{
	idescsi_scsi_t *scsi  = scsihost_to_idescsi(cmd->device->host);
	ide_drive_t    *drive = scsi->drive;
	int		busy;
	int             ret   = FAILED;

	/* In idescsi_eh_abort we try to gently pry our command from the ide subsystem */

	if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
		printk (KERN_WARNING "ide-scsi: abort called for %lu\n", cmd->serial_number);

	if (!drive) {
		printk (KERN_WARNING "ide-scsi: Drive not set in idescsi_eh_abort\n");
		WARN_ON(1);
		goto no_drive;
	}

	/* First give it some more time, how much is "right" is hard to say :-( */

	busy = ide_wait_not_busy(HWIF(drive), 100);	/* FIXME - uses mdelay which causes latency? */
	if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
		printk (KERN_WARNING "ide-scsi: drive did%s become ready\n", busy?" not":"");

	spin_lock_irq(&ide_lock);

	/* If there is no pc running we're done (our interrupt took care of it) */
	if (!scsi->pc) {
		ret = SUCCESS;
		goto ide_unlock;
	}

	/* It's somewhere in flight. Does ide subsystem agree? */
	if (scsi->pc->scsi_cmd->serial_number == cmd->serial_number && !busy &&
	    elv_queue_empty(drive->queue) && HWGROUP(drive)->rq != scsi->pc->rq) {
		/*
		 * FIXME - not sure this condition can ever occur
		 */
		printk (KERN_ERR "ide-scsi: cmd aborted!\n");

827
		if (blk_sense_request(scsi->pc->rq))
828
			kfree(scsi->pc->buf);
L
Linus Torvalds 已提交
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
		kfree(scsi->pc->rq);
		kfree(scsi->pc);
		scsi->pc = NULL;

		ret = SUCCESS;
	}

ide_unlock:
	spin_unlock_irq(&ide_lock);
no_drive:
	if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
		printk (KERN_WARNING "ide-scsi: abort returns %s\n", ret == SUCCESS?"success":"failed");

	return ret;
}

static int idescsi_eh_reset (struct scsi_cmnd *cmd)
{
	struct request *req;
	idescsi_scsi_t *scsi  = scsihost_to_idescsi(cmd->device->host);
	ide_drive_t    *drive = scsi->drive;
	int             ready = 0;
	int             ret   = SUCCESS;

	/* In idescsi_eh_reset we forcefully remove the command from the ide subsystem and reset the device. */

	if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
		printk (KERN_WARNING "ide-scsi: reset called for %lu\n", cmd->serial_number);

	if (!drive) {
		printk (KERN_WARNING "ide-scsi: Drive not set in idescsi_eh_reset\n");
		WARN_ON(1);
		return FAILED;
	}

864 865
	spin_lock_irq(cmd->device->host->host_lock);
	spin_lock(&ide_lock);
L
Linus Torvalds 已提交
866 867 868 869

	if (!scsi->pc || (req = scsi->pc->rq) != HWGROUP(drive)->rq || !HWGROUP(drive)->handler) {
		printk (KERN_WARNING "ide-scsi: No active request in idescsi_eh_reset\n");
		spin_unlock(&ide_lock);
870
		spin_unlock_irq(cmd->device->host->host_lock);
L
Linus Torvalds 已提交
871 872 873 874
		return FAILED;
	}

	/* kill current request */
875 876
	if (__blk_end_request(req, -EIO, 0))
		BUG();
877
	if (blk_sense_request(req))
878
		kfree(scsi->pc->buf);
L
Linus Torvalds 已提交
879 880 881 882 883 884
	kfree(scsi->pc);
	scsi->pc = NULL;
	kfree(req);

	/* now nuke the drive queue */
	while ((req = elv_next_request(drive->queue))) {
885 886
		if (__blk_end_request(req, -EIO, 0))
			BUG();
L
Linus Torvalds 已提交
887 888 889 890 891
	}

	HWGROUP(drive)->rq = NULL;
	HWGROUP(drive)->handler = NULL;
	HWGROUP(drive)->busy = 1;		/* will set this to zero when ide reset finished */
892
	spin_unlock(&ide_lock);
L
Linus Torvalds 已提交
893 894 895 896 897 898 899

	ide_do_reset(drive);

	/* ide_do_reset starts a polling handler which restarts itself every 50ms until the reset finishes */

	do {
		spin_unlock_irq(cmd->device->host->host_lock);
900
		msleep(50);
L
Linus Torvalds 已提交
901 902 903 904 905 906 907 908 909 910
		spin_lock_irq(cmd->device->host->host_lock);
	} while ( HWGROUP(drive)->handler );

	ready = drive_is_ready(drive);
	HWGROUP(drive)->busy--;
	if (!ready) {
		printk (KERN_ERR "ide-scsi: reset failed!\n");
		ret = FAILED;
	}

911
	spin_unlock_irq(cmd->device->host->host_lock);
L
Linus Torvalds 已提交
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
	return ret;
}

static int idescsi_bios(struct scsi_device *sdev, struct block_device *bdev,
		sector_t capacity, int *parm)
{
	idescsi_scsi_t *idescsi = scsihost_to_idescsi(sdev->host);
	ide_drive_t *drive = idescsi->drive;

	if (drive->bios_cyl && drive->bios_head && drive->bios_sect) {
		parm[0] = drive->bios_head;
		parm[1] = drive->bios_sect;
		parm[2] = drive->bios_cyl;
	}
	return 0;
}

static struct scsi_host_template idescsi_template = {
	.module			= THIS_MODULE,
	.name			= "idescsi",
	.info			= idescsi_info,
	.slave_configure        = idescsi_slave_configure,
	.ioctl			= idescsi_ioctl,
	.queuecommand		= idescsi_queue,
	.eh_abort_handler	= idescsi_eh_abort,
	.eh_host_reset_handler  = idescsi_eh_reset,
	.bios_param		= idescsi_bios,
	.can_queue		= 40,
	.this_id		= -1,
	.sg_tablesize		= 256,
	.cmd_per_lun		= 5,
	.max_sectors		= 128,
	.use_clustering		= DISABLE_CLUSTERING,
	.emulated		= 1,
	.proc_name		= "ide-scsi",
};

949
static int ide_scsi_probe(ide_drive_t *drive)
L
Linus Torvalds 已提交
950 951 952 953 954 955 956 957 958 959 960 961
{
	idescsi_scsi_t *idescsi;
	struct Scsi_Host *host;
	struct gendisk *g;
	static int warned;
	int err = -ENOMEM;

	if (!warned && drive->media == ide_cdrom) {
		printk(KERN_WARNING "ide-scsi is deprecated for cd burning! Use ide-cd and give dev=/dev/hdX as device\n");
		warned = 1;
	}

962 963 964
	if (idescsi_nocd && drive->media == ide_cdrom)
		return -ENODEV;

L
Linus Torvalds 已提交
965 966 967 968
	if (!strstr("ide-scsi", drive->driver_req) ||
	    !drive->present ||
	    drive->media == ide_disk ||
	    !(host = scsi_host_alloc(&idescsi_template,sizeof(idescsi_scsi_t))))
969
		return -ENODEV;
L
Linus Torvalds 已提交
970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994

	g = alloc_disk(1 << PARTN_BITS);
	if (!g)
		goto out_host_put;

	ide_init_disk(g, drive);

	host->max_id = 1;

#if IDESCSI_DEBUG_LOG
	if (drive->id->last_lun)
		printk(KERN_NOTICE "%s: id->last_lun=%u\n", drive->name, drive->id->last_lun);
#endif
	if ((drive->id->last_lun & 0x7) != 7)
		host->max_lun = (drive->id->last_lun & 0x7) + 1;
	else
		host->max_lun = 1;

	drive->driver_data = host;
	idescsi = scsihost_to_idescsi(host);
	idescsi->drive = drive;
	idescsi->driver = &idescsi_driver;
	idescsi->host = host;
	idescsi->disk = g;
	g->private_data = &idescsi->driver;
995
	ide_proc_register_driver(drive, &idescsi_driver);
996 997 998 999 1000
	err = 0;
	idescsi_setup(drive, idescsi);
	g->fops = &idescsi_ops;
	ide_register_region(g);
	err = scsi_add_host(host, &drive->gendev);
L
Linus Torvalds 已提交
1001
	if (!err) {
1002 1003
		scsi_scan_host(host);
		return 0;
L
Linus Torvalds 已提交
1004
	}
1005 1006
	/* fall through on error */
	ide_unregister_region(g);
1007
	ide_proc_unregister_driver(drive, &idescsi_driver);
L
Linus Torvalds 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016

	put_disk(g);
out_host_put:
	scsi_host_put(host);
	return err;
}

static int __init init_idescsi_module(void)
{
1017
	return driver_register(&idescsi_driver.gen_driver);
L
Linus Torvalds 已提交
1018 1019 1020 1021
}

static void __exit exit_idescsi_module(void)
{
1022
	driver_unregister(&idescsi_driver.gen_driver);
L
Linus Torvalds 已提交
1023 1024
}

1025 1026
module_param(idescsi_nocd, int, 0600);
MODULE_PARM_DESC(idescsi_nocd, "Disable handling of CD-ROMs so they may be driven by ide-cd");
L
Linus Torvalds 已提交
1027 1028 1029
module_init(init_idescsi_module);
module_exit(exit_idescsi_module);
MODULE_LICENSE("GPL");