blob: 77e8a81228fcf9d0de46e9cacf4668192309f02c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/scsi/ide-scsi.c Version 0.9 Jul 4, 1999
3 *
4 * Copyright (C) 1996 - 1999 Gadi Oxman <gadio@netvision.net.il>
5 */
6
7/*
8 * Emulation of a SCSI host adapter for IDE ATAPI devices.
9 *
10 * With this driver, one can use the Linux SCSI drivers instead of the
11 * native IDE ATAPI drivers.
12 *
13 * Ver 0.1 Dec 3 96 Initial version.
14 * Ver 0.2 Jan 26 97 Fixed bug in cleanup_module() and added emulation
15 * of MODE_SENSE_6/MODE_SELECT_6 for cdroms. Thanks
16 * to Janos Farkas for pointing this out.
17 * Avoid using bitfields in structures for m68k.
18 * Added Scatter/Gather and DMA support.
19 * Ver 0.4 Dec 7 97 Add support for ATAPI PD/CD drives.
20 * Use variable timeout for each command.
21 * Ver 0.5 Jan 2 98 Fix previous PD/CD support.
22 * Allow disabling of SCSI-6 to SCSI-10 transformation.
23 * Ver 0.6 Jan 27 98 Allow disabling of SCSI command translation layer
24 * for access through /dev/sg.
25 * Fix MODE_SENSE_6/MODE_SELECT_6/INQUIRY translation.
26 * Ver 0.7 Dec 04 98 Ignore commands where lun != 0 to avoid multiple
27 * detection of devices with CONFIG_SCSI_MULTI_LUN
28 * Ver 0.8 Feb 05 99 Optical media need translation too. Reverse 0.7.
29 * Ver 0.9 Jul 04 99 Fix a bug in SG_SET_TRANSFORM.
30 * Ver 0.91 Jun 10 02 Fix "off by one" error in transforms
31 * Ver 0.92 Dec 31 02 Implement new SCSI mid level API
32 */
33
34#define IDESCSI_VERSION "0.92"
35
36#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/types.h>
38#include <linux/string.h>
39#include <linux/kernel.h>
40#include <linux/mm.h>
41#include <linux/ioport.h>
42#include <linux/blkdev.h>
43#include <linux/errno.h>
44#include <linux/hdreg.h>
45#include <linux/slab.h>
46#include <linux/ide.h>
47#include <linux/scatterlist.h>
Jeff Garzik df0ae242005-05-28 07:57:14 -040048#include <linux/delay.h>
Jes Sorensene723ccd2006-03-23 03:00:22 -080049#include <linux/mutex.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070050#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/uaccess.h>
54
55#include <scsi/scsi.h>
56#include <scsi/scsi_cmnd.h>
57#include <scsi/scsi_device.h>
58#include <scsi/scsi_host.h>
59#include <scsi/scsi_tcq.h>
60#include <scsi/sg.h>
61
62#define IDESCSI_DEBUG_LOG 0
63
64typedef struct idescsi_pc_s {
65 u8 c[12]; /* Actual packet bytes */
66 int request_transfer; /* Bytes to transfer */
67 int actually_transferred; /* Bytes actually transferred */
68 int buffer_size; /* Size of our data buffer */
69 struct request *rq; /* The corresponding request */
70 u8 *buffer; /* Data buffer */
71 u8 *current_position; /* Pointer into the above buffer */
72 struct scatterlist *sg; /* Scatter gather table */
Jens Axboec79d88b2007-10-17 13:16:35 +020073 unsigned int sg_cnt; /* Number of entries in sg */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 int b_count; /* Bytes transferred from current entry */
75 struct scsi_cmnd *scsi_cmd; /* SCSI command */
76 void (*done)(struct scsi_cmnd *); /* Scsi completion routine */
77 unsigned long flags; /* Status/Action flags */
78 unsigned long timeout; /* Command timeout */
79} idescsi_pc_t;
80
81/*
82 * Packet command status bits.
83 */
84#define PC_DMA_IN_PROGRESS 0 /* 1 while DMA in progress */
85#define PC_WRITING 1 /* Data direction */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#define PC_TIMEDOUT 3 /* command timed out */
87#define PC_DMA_OK 4 /* Use DMA */
88
89/*
90 * SCSI command transformation layer
91 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#define IDESCSI_SG_TRANSFORM 1 /* /dev/sg transformation */
93
94/*
95 * Log flags
96 */
97#define IDESCSI_LOG_CMD 0 /* Log SCSI commands */
98
99typedef struct ide_scsi_obj {
100 ide_drive_t *drive;
101 ide_driver_t *driver;
102 struct gendisk *disk;
103 struct Scsi_Host *host;
104
105 idescsi_pc_t *pc; /* Current packet command */
106 unsigned long flags; /* Status/Action flags */
107 unsigned long transform; /* SCSI cmd translation layer */
108 unsigned long log; /* log flags */
109} idescsi_scsi_t;
110
Jes Sorensene723ccd2006-03-23 03:00:22 -0800111static DEFINE_MUTEX(idescsi_ref_mutex);
Alan Coxaaeab802006-12-06 20:39:33 -0800112static int idescsi_nocd; /* Set by module param to skip cd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114#define ide_scsi_g(disk) \
115 container_of((disk)->private_data, struct ide_scsi_obj, driver)
116
117static struct ide_scsi_obj *ide_scsi_get(struct gendisk *disk)
118{
119 struct ide_scsi_obj *scsi = NULL;
120
Jes Sorensene723ccd2006-03-23 03:00:22 -0800121 mutex_lock(&idescsi_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 scsi = ide_scsi_g(disk);
123 if (scsi)
124 scsi_host_get(scsi->host);
Jes Sorensene723ccd2006-03-23 03:00:22 -0800125 mutex_unlock(&idescsi_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return scsi;
127}
128
129static void ide_scsi_put(struct ide_scsi_obj *scsi)
130{
Jes Sorensene723ccd2006-03-23 03:00:22 -0800131 mutex_lock(&idescsi_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 scsi_host_put(scsi->host);
Jes Sorensene723ccd2006-03-23 03:00:22 -0800133 mutex_unlock(&idescsi_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136static inline idescsi_scsi_t *scsihost_to_idescsi(struct Scsi_Host *host)
137{
138 return (idescsi_scsi_t*) (&host[1]);
139}
140
141static inline idescsi_scsi_t *drive_to_idescsi(ide_drive_t *ide_drive)
142{
143 return scsihost_to_idescsi(ide_drive->driver_data);
144}
145
146/*
147 * Per ATAPI device status bits.
148 */
149#define IDESCSI_DRQ_INTERRUPT 0 /* DRQ interrupt device */
150
151/*
152 * ide-scsi requests.
153 */
154#define IDESCSI_PC_RQ 90
155
156static void idescsi_discard_data (ide_drive_t *drive, unsigned int bcount)
157{
158 while (bcount--)
159 (void) HWIF(drive)->INB(IDE_DATA_REG);
160}
161
162static void idescsi_output_zeros (ide_drive_t *drive, unsigned int bcount)
163{
164 while (bcount--)
165 HWIF(drive)->OUTB(0, IDE_DATA_REG);
166}
167
168/*
169 * PIO data transfer routines using the scatter gather table.
170 */
171static void idescsi_input_buffers (ide_drive_t *drive, idescsi_pc_t *pc, unsigned int bcount)
172{
173 int count;
174 char *buf;
175
176 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 count = min(pc->sg->length - pc->b_count, bcount);
Jens Axboe45711f12007-10-22 21:19:53 +0200178 if (PageHighMem(sg_page(pc->sg))) {
Andrew Mortona717f772005-10-31 14:08:53 -0800179 unsigned long flags;
180
181 local_irq_save(flags);
Jens Axboe45711f12007-10-22 21:19:53 +0200182 buf = kmap_atomic(sg_page(pc->sg), KM_IRQ0) +
Andrew Mortona717f772005-10-31 14:08:53 -0800183 pc->sg->offset;
184 drive->hwif->atapi_input_bytes(drive,
185 buf + pc->b_count, count);
186 kunmap_atomic(buf - pc->sg->offset, KM_IRQ0);
187 local_irq_restore(flags);
188 } else {
Jens Axboe45711f12007-10-22 21:19:53 +0200189 buf = sg_virt(pc->sg);
Andrew Mortona717f772005-10-31 14:08:53 -0800190 drive->hwif->atapi_input_bytes(drive,
191 buf + pc->b_count, count);
192 }
193 bcount -= count; pc->b_count += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (pc->b_count == pc->sg->length) {
Jens Axboec79d88b2007-10-17 13:16:35 +0200195 if (!--pc->sg_cnt)
Jens Axboed274a982007-10-16 11:20:52 +0200196 break;
197 pc->sg = sg_next(pc->sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 pc->b_count = 0;
199 }
200 }
Jens Axboed274a982007-10-16 11:20:52 +0200201
202 if (bcount) {
203 printk (KERN_ERR "ide-scsi: scatter gather table too small, discarding data\n");
204 idescsi_discard_data (drive, bcount);
205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
208static void idescsi_output_buffers (ide_drive_t *drive, idescsi_pc_t *pc, unsigned int bcount)
209{
210 int count;
211 char *buf;
212
213 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 count = min(pc->sg->length - pc->b_count, bcount);
Jens Axboe45711f12007-10-22 21:19:53 +0200215 if (PageHighMem(sg_page(pc->sg))) {
Andrew Mortona717f772005-10-31 14:08:53 -0800216 unsigned long flags;
217
218 local_irq_save(flags);
Jens Axboe45711f12007-10-22 21:19:53 +0200219 buf = kmap_atomic(sg_page(pc->sg), KM_IRQ0) +
Andrew Mortona717f772005-10-31 14:08:53 -0800220 pc->sg->offset;
221 drive->hwif->atapi_output_bytes(drive,
222 buf + pc->b_count, count);
223 kunmap_atomic(buf - pc->sg->offset, KM_IRQ0);
224 local_irq_restore(flags);
225 } else {
Jens Axboe45711f12007-10-22 21:19:53 +0200226 buf = sg_virt(pc->sg);
Andrew Mortona717f772005-10-31 14:08:53 -0800227 drive->hwif->atapi_output_bytes(drive,
228 buf + pc->b_count, count);
229 }
230 bcount -= count; pc->b_count += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (pc->b_count == pc->sg->length) {
Jens Axboec79d88b2007-10-17 13:16:35 +0200232 if (!--pc->sg_cnt)
Jens Axboed274a982007-10-16 11:20:52 +0200233 break;
234 pc->sg = sg_next(pc->sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 pc->b_count = 0;
236 }
237 }
Jens Axboed274a982007-10-16 11:20:52 +0200238
239 if (bcount) {
240 printk (KERN_ERR "ide-scsi: scatter gather table too small, padding with zeros\n");
241 idescsi_output_zeros (drive, bcount);
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100245static void ide_scsi_hex_dump(u8 *data, int len)
246{
247 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_NONE, 16, 1, data, len, 0);
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250static int idescsi_check_condition(ide_drive_t *drive, struct request *failed_command)
251{
252 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
253 idescsi_pc_t *pc;
254 struct request *rq;
255 u8 *buf;
256
257 /* stuff a sense request in front of our current request */
Mariusz Kozlowski41ead3c2007-08-01 23:46:45 +0200258 pc = kzalloc(sizeof(idescsi_pc_t), GFP_ATOMIC);
259 rq = kmalloc(sizeof(struct request), GFP_ATOMIC);
260 buf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_ATOMIC);
261 if (!pc || !rq || !buf) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800262 kfree(buf);
263 kfree(rq);
264 kfree(pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return -ENOMEM;
266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 ide_init_drive_cmd(rq);
268 rq->special = (char *) pc;
269 pc->rq = rq;
270 pc->buffer = buf;
271 pc->c[0] = REQUEST_SENSE;
272 pc->c[4] = pc->request_transfer = pc->buffer_size = SCSI_SENSE_BUFFERSIZE;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200273 rq->cmd_type = REQ_TYPE_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 pc->timeout = jiffies + WAIT_READY;
275 /* NOTE! Save the failed packet command in "rq->buffer" */
276 rq->buffer = (void *) failed_command->special;
277 pc->scsi_cmd = ((idescsi_pc_t *) failed_command->special)->scsi_cmd;
278 if (test_bit(IDESCSI_LOG_CMD, &scsi->log)) {
279 printk ("ide-scsi: %s: queue cmd = ", drive->name);
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100280 ide_scsi_hex_dump(pc->c, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 rq->rq_disk = scsi->disk;
283 return ide_do_drive_cmd(drive, rq, ide_preempt);
284}
285
286static int idescsi_end_request(ide_drive_t *, int, int);
287
288static ide_startstop_t
289idescsi_atapi_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
290{
291 if (HWIF(drive)->INB(IDE_STATUS_REG) & (BUSY_STAT|DRQ_STAT))
292 /* force an abort */
293 HWIF(drive)->OUTB(WIN_IDLEIMMEDIATE,IDE_COMMAND_REG);
294
295 rq->errors++;
296
297 idescsi_end_request(drive, 0, 0);
298
299 return ide_stopped;
300}
301
302static ide_startstop_t
303idescsi_atapi_abort(ide_drive_t *drive, struct request *rq)
304{
305#if IDESCSI_DEBUG_LOG
306 printk(KERN_WARNING "idescsi_atapi_abort called for %lu\n",
307 ((idescsi_pc_t *) rq->special)->scsi_cmd->serial_number);
308#endif
309 rq->errors |= ERROR_MAX;
310
311 idescsi_end_request(drive, 0, 0);
312
313 return ide_stopped;
314}
315
316static int idescsi_end_request (ide_drive_t *drive, int uptodate, int nrsecs)
317{
318 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
319 struct request *rq = HWGROUP(drive)->rq;
320 idescsi_pc_t *pc = (idescsi_pc_t *) rq->special;
321 int log = test_bit(IDESCSI_LOG_CMD, &scsi->log);
322 struct Scsi_Host *host;
Willem Riede32565342005-10-31 00:03:49 +0000323 int errors = rq->errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 unsigned long flags;
325
Jens Axboe4aff5e22006-08-10 08:44:47 +0200326 if (!blk_special_request(rq) && !blk_sense_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 ide_end_request(drive, uptodate, nrsecs);
328 return 0;
329 }
330 ide_end_drive_cmd (drive, 0, 0);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200331 if (blk_sense_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 idescsi_pc_t *opc = (idescsi_pc_t *) rq->buffer;
333 if (log) {
334 printk ("ide-scsi: %s: wrap up check %lu, rst = ", drive->name, opc->scsi_cmd->serial_number);
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100335 ide_scsi_hex_dump(pc->buffer, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 memcpy((void *) opc->scsi_cmd->sense_buffer, pc->buffer, SCSI_SENSE_BUFFERSIZE);
338 kfree(pc->buffer);
339 kfree(pc);
340 kfree(rq);
341 pc = opc;
342 rq = pc->rq;
343 pc->scsi_cmd->result = (CHECK_CONDITION << 1) |
344 ((test_bit(PC_TIMEDOUT, &pc->flags)?DID_TIME_OUT:DID_OK) << 16);
345 } else if (test_bit(PC_TIMEDOUT, &pc->flags)) {
346 if (log)
347 printk (KERN_WARNING "ide-scsi: %s: timed out for %lu\n",
348 drive->name, pc->scsi_cmd->serial_number);
349 pc->scsi_cmd->result = DID_TIME_OUT << 16;
Willem Riede32565342005-10-31 00:03:49 +0000350 } else if (errors >= ERROR_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 pc->scsi_cmd->result = DID_ERROR << 16;
352 if (log)
353 printk ("ide-scsi: %s: I/O error for %lu\n", drive->name, pc->scsi_cmd->serial_number);
Willem Riede32565342005-10-31 00:03:49 +0000354 } else if (errors) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (log)
356 printk ("ide-scsi: %s: check condition for %lu\n", drive->name, pc->scsi_cmd->serial_number);
357 if (!idescsi_check_condition(drive, rq))
358 /* we started a request sense, so we'll be back, exit for now */
359 return 0;
360 pc->scsi_cmd->result = (CHECK_CONDITION << 1) | (DID_OK << 16);
361 } else {
362 pc->scsi_cmd->result = DID_OK << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364 host = pc->scsi_cmd->device->host;
365 spin_lock_irqsave(host->host_lock, flags);
366 pc->done(pc->scsi_cmd);
367 spin_unlock_irqrestore(host->host_lock, flags);
368 kfree(pc);
369 kfree(rq);
370 scsi->pc = NULL;
371 return 0;
372}
373
374static inline unsigned long get_timeout(idescsi_pc_t *pc)
375{
376 return max_t(unsigned long, WAIT_CMD, pc->timeout - jiffies);
377}
378
379static int idescsi_expiry(ide_drive_t *drive)
380{
Bartlomiej Zolnierkiewiczd1be0a82007-06-16 02:24:44 +0200381 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 idescsi_pc_t *pc = scsi->pc;
383
384#if IDESCSI_DEBUG_LOG
385 printk(KERN_WARNING "idescsi_expiry called for %lu at %lu\n", pc->scsi_cmd->serial_number, jiffies);
386#endif
387 set_bit(PC_TIMEDOUT, &pc->flags);
388
389 return 0; /* we do not want the ide subsystem to retry */
390}
391
392/*
393 * Our interrupt handler.
394 */
395static ide_startstop_t idescsi_pc_intr (ide_drive_t *drive)
396{
397 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100398 ide_hwif_t *hwif = drive->hwif;
399 idescsi_pc_t *pc = scsi->pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct request *rq = pc->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 atapi_ireason_t ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 unsigned int temp;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100403 u16 bcount;
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100404 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406#if IDESCSI_DEBUG_LOG
407 printk (KERN_INFO "ide-scsi: Reached idescsi_pc_intr interrupt handler\n");
408#endif /* IDESCSI_DEBUG_LOG */
409
410 if (test_bit(PC_TIMEDOUT, &pc->flags)){
411#if IDESCSI_DEBUG_LOG
412 printk(KERN_WARNING "idescsi_pc_intr: got timed out packet %lu at %lu\n",
413 pc->scsi_cmd->serial_number, jiffies);
414#endif
415 /* end this request now - scsi should retry it*/
416 idescsi_end_request (drive, 1, 0);
417 return ide_stopped;
418 }
419 if (test_and_clear_bit (PC_DMA_IN_PROGRESS, &pc->flags)) {
420#if IDESCSI_DEBUG_LOG
421 printk ("ide-scsi: %s: DMA complete\n", drive->name);
422#endif /* IDESCSI_DEBUG_LOG */
423 pc->actually_transferred=pc->request_transfer;
424 (void) HWIF(drive)->ide_dma_end(drive);
425 }
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /* Clear the interrupt */
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100428 stat = drive->hwif->INB(IDE_STATUS_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100430 if ((stat & DRQ_STAT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 /* No more interrupts */
432 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
433 printk (KERN_INFO "Packet command completed, %d bytes transferred\n", pc->actually_transferred);
Ingo Molnar36e8e572006-08-27 01:23:56 -0700434 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100435 if (stat & ERR_STAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 rq->errors++;
437 idescsi_end_request (drive, 1, 0);
438 return ide_stopped;
439 }
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100440 bcount = (hwif->INB(IDE_BCOUNTH_REG) << 8) |
441 hwif->INB(IDE_BCOUNTL_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 ireason.all = HWIF(drive)->INB(IDE_IREASON_REG);
443
444 if (ireason.b.cod) {
445 printk(KERN_ERR "ide-scsi: CoD != 0 in idescsi_pc_intr\n");
446 return ide_do_reset (drive);
447 }
448 if (ireason.b.io) {
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100449 temp = pc->actually_transferred + bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (temp > pc->request_transfer) {
451 if (temp > pc->buffer_size) {
452 printk(KERN_ERR "ide-scsi: The scsi wants to "
453 "send us more data than expected "
454 "- discarding data\n");
455 temp = pc->buffer_size - pc->actually_transferred;
456 if (temp) {
457 clear_bit(PC_WRITING, &pc->flags);
458 if (pc->sg)
459 idescsi_input_buffers(drive, pc, temp);
460 else
461 drive->hwif->atapi_input_bytes(drive, pc->current_position, temp);
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100462 printk(KERN_ERR "ide-scsi: transferred"
463 " %d of %d bytes\n",
464 temp, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 pc->actually_transferred += temp;
467 pc->current_position += temp;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100468 idescsi_discard_data(drive, bcount - temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
470 return ide_started;
471 }
472#if IDESCSI_DEBUG_LOG
473 printk (KERN_NOTICE "ide-scsi: The scsi wants to send us more data than expected - allowing transfer\n");
474#endif /* IDESCSI_DEBUG_LOG */
475 }
476 }
477 if (ireason.b.io) {
478 clear_bit(PC_WRITING, &pc->flags);
479 if (pc->sg)
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100480 idescsi_input_buffers(drive, pc, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 else
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100482 hwif->atapi_input_bytes(drive, pc->current_position,
483 bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 } else {
485 set_bit(PC_WRITING, &pc->flags);
486 if (pc->sg)
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100487 idescsi_output_buffers(drive, pc, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 else
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100489 hwif->atapi_output_bytes(drive, pc->current_position,
490 bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492 /* Update the current position */
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100493 pc->actually_transferred += bcount;
494 pc->current_position += bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /* And set the interrupt handler again */
497 ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
498 return ide_started;
499}
500
501static ide_startstop_t idescsi_transfer_pc(ide_drive_t *drive)
502{
503 ide_hwif_t *hwif = drive->hwif;
504 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
505 idescsi_pc_t *pc = scsi->pc;
506 atapi_ireason_t ireason;
507 ide_startstop_t startstop;
508
509 if (ide_wait_stat(&startstop,drive,DRQ_STAT,BUSY_STAT,WAIT_READY)) {
510 printk(KERN_ERR "ide-scsi: Strange, packet command "
511 "initiated yet DRQ isn't asserted\n");
512 return startstop;
513 }
514 ireason.all = HWIF(drive)->INB(IDE_IREASON_REG);
515 if (!ireason.b.cod || ireason.b.io) {
516 printk(KERN_ERR "ide-scsi: (IO,CoD) != (0,1) while "
517 "issuing a packet command\n");
518 return ide_do_reset (drive);
519 }
Eric Sesterhenn125e1872006-06-23 02:06:06 -0700520 BUG_ON(HWGROUP(drive)->handler != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* Set the interrupt routine */
522 ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
523 /* Send the actual packet */
524 drive->hwif->atapi_output_bytes(drive, scsi->pc->c, 12);
525 if (test_bit (PC_DMA_OK, &pc->flags)) {
526 set_bit (PC_DMA_IN_PROGRESS, &pc->flags);
527 hwif->dma_start(drive);
528 }
529 return ide_started;
530}
531
532static inline int idescsi_set_direction(idescsi_pc_t *pc)
533{
534 switch (pc->c[0]) {
535 case READ_6: case READ_10: case READ_12:
536 clear_bit(PC_WRITING, &pc->flags);
537 return 0;
538 case WRITE_6: case WRITE_10: case WRITE_12:
539 set_bit(PC_WRITING, &pc->flags);
540 return 0;
541 default:
542 return 1;
543 }
544}
545
546static int idescsi_map_sg(ide_drive_t *drive, idescsi_pc_t *pc)
547{
548 ide_hwif_t *hwif = drive->hwif;
549 struct scatterlist *sg, *scsi_sg;
550 int segments;
551
552 if (!pc->request_transfer || pc->request_transfer % 1024)
553 return 1;
554
555 if (idescsi_set_direction(pc))
556 return 1;
557
558 sg = hwif->sg_table;
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200559 scsi_sg = scsi_sglist(pc->scsi_cmd);
560 segments = scsi_sg_count(pc->scsi_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 if (segments > hwif->sg_max_nents)
563 return 1;
564
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200565 hwif->sg_nents = segments;
566 memcpy(sg, scsi_sg, sizeof(*sg) * segments);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 return 0;
569}
570
571/*
572 * Issue a packet command
573 */
574static ide_startstop_t idescsi_issue_pc (ide_drive_t *drive, idescsi_pc_t *pc)
575{
576 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
577 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100578 u16 bcount;
Bartlomiej Zolnierkiewicze5f9f5a2008-01-25 22:17:12 +0100579 u8 dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 scsi->pc=pc; /* Set the current packet command */
582 pc->actually_transferred=0; /* We haven't transferred any data yet */
583 pc->current_position=pc->buffer;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100584 /* Request to transfer the entire buffer at once */
585 bcount = min(pc->request_transfer, 63 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (drive->using_dma && !idescsi_map_sg(drive, pc)) {
588 hwif->sg_mapped = 1;
Bartlomiej Zolnierkiewicze5f9f5a2008-01-25 22:17:12 +0100589 dma = !hwif->dma_setup(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 hwif->sg_mapped = 0;
591 }
592
593 SELECT_DRIVE(drive);
594 if (IDE_CONTROL_REG)
595 HWIF(drive)->OUTB(drive->ctl, IDE_CONTROL_REG);
596
Bartlomiej Zolnierkiewicze5f9f5a2008-01-25 22:17:12 +0100597 hwif->OUTB(dma, IDE_FEATURE_REG);
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100598 hwif->OUTB((bcount >> 8) & 0xff, IDE_BCOUNTH_REG);
599 hwif->OUTB(bcount & 0xff, IDE_BCOUNTL_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Bartlomiej Zolnierkiewicze5f9f5a2008-01-25 22:17:12 +0100601 if (dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 set_bit(PC_DMA_OK, &pc->flags);
603
604 if (test_bit(IDESCSI_DRQ_INTERRUPT, &scsi->flags)) {
Eric Sesterhenn125e1872006-06-23 02:06:06 -0700605 BUG_ON(HWGROUP(drive)->handler != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 ide_set_handler(drive, &idescsi_transfer_pc,
607 get_timeout(pc), idescsi_expiry);
608 /* Issue the packet command */
609 HWIF(drive)->OUTB(WIN_PACKETCMD, IDE_COMMAND_REG);
610 return ide_started;
611 } else {
612 /* Issue the packet command */
613 HWIF(drive)->OUTB(WIN_PACKETCMD, IDE_COMMAND_REG);
614 return idescsi_transfer_pc(drive);
615 }
616}
617
618/*
619 * idescsi_do_request is our request handling function.
620 */
621static ide_startstop_t idescsi_do_request (ide_drive_t *drive, struct request *rq, sector_t block)
622{
623#if IDESCSI_DEBUG_LOG
Jens Axboecdd60262006-07-28 09:32:07 +0200624 printk (KERN_INFO "dev: %s, cmd: %x, errors: %d\n", rq->rq_disk->disk_name,rq->cmd[0],rq->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 printk (KERN_INFO "sector: %ld, nr_sectors: %ld, current_nr_sectors: %d\n",rq->sector,rq->nr_sectors,rq->current_nr_sectors);
626#endif /* IDESCSI_DEBUG_LOG */
627
Jens Axboe4aff5e22006-08-10 08:44:47 +0200628 if (blk_sense_request(rq) || blk_special_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return idescsi_issue_pc (drive, (idescsi_pc_t *) rq->special);
630 }
631 blk_dump_rq_flags(rq, "ide-scsi: unsup command");
632 idescsi_end_request (drive, 0, 0);
633 return ide_stopped;
634}
635
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200636#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637static void idescsi_add_settings(ide_drive_t *drive)
638{
639 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
640
641/*
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200642 * drive setting name read/write data type min max mul_factor div_factor data pointer set function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 */
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200644 ide_add_setting(drive, "bios_cyl", SETTING_RW, TYPE_INT, 0, 1023, 1, 1, &drive->bios_cyl, NULL);
645 ide_add_setting(drive, "bios_head", SETTING_RW, TYPE_BYTE, 0, 255, 1, 1, &drive->bios_head, NULL);
646 ide_add_setting(drive, "bios_sect", SETTING_RW, TYPE_BYTE, 0, 63, 1, 1, &drive->bios_sect, NULL);
647 ide_add_setting(drive, "transform", SETTING_RW, TYPE_INT, 0, 3, 1, 1, &scsi->transform, NULL);
648 ide_add_setting(drive, "log", SETTING_RW, TYPE_INT, 0, 1, 1, 1, &scsi->log, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200650#else
651static inline void idescsi_add_settings(ide_drive_t *drive) { ; }
652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654/*
655 * Driver initialization.
656 */
657static void idescsi_setup (ide_drive_t *drive, idescsi_scsi_t *scsi)
658{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (drive->id && (drive->id->config & 0x0060) == 0x20)
660 set_bit (IDESCSI_DRQ_INTERRUPT, &scsi->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 clear_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
662#if IDESCSI_DEBUG_LOG
663 set_bit(IDESCSI_LOG_CMD, &scsi->log);
664#endif /* IDESCSI_DEBUG_LOG */
665 idescsi_add_settings(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
Mikael Petterssonb62735d2006-02-01 03:04:45 -0800668static void ide_scsi_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 struct Scsi_Host *scsihost = drive->driver_data;
671 struct ide_scsi_obj *scsi = scsihost_to_idescsi(scsihost);
672 struct gendisk *g = scsi->disk;
673
Matthew Wilcox6fdea8d2007-08-15 12:57:01 -0600674 scsi_remove_host(scsihost);
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200675 ide_proc_unregister_driver(drive, scsi->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 ide_unregister_region(g);
678
679 drive->driver_data = NULL;
680 g->private_data = NULL;
681 put_disk(g);
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 ide_scsi_put(scsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Mikael Petterssonb62735d2006-02-01 03:04:45 -0800686static int ide_scsi_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200688#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689static ide_proc_entry_t idescsi_proc[] = {
690 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
691 { NULL, 0, NULL, NULL }
692};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693#endif
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695static ide_driver_t idescsi_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200696 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +0100697 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200698 .name = "ide-scsi",
699 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200700 },
Mikael Petterssonb62735d2006-02-01 03:04:45 -0800701 .probe = ide_scsi_probe,
702 .remove = ide_scsi_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 .version = IDESCSI_VERSION,
704 .media = ide_scsi,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 .supports_dsc_overlap = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 .do_request = idescsi_do_request,
707 .end_request = idescsi_end_request,
708 .error = idescsi_atapi_error,
709 .abort = idescsi_atapi_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200710#ifdef CONFIG_IDE_PROC_FS
711 .proc = idescsi_proc,
712#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713};
714
715static int idescsi_ide_open(struct inode *inode, struct file *filp)
716{
717 struct gendisk *disk = inode->i_bdev->bd_disk;
718 struct ide_scsi_obj *scsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 if (!(scsi = ide_scsi_get(disk)))
721 return -ENXIO;
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return 0;
724}
725
726static int idescsi_ide_release(struct inode *inode, struct file *filp)
727{
728 struct gendisk *disk = inode->i_bdev->bd_disk;
729 struct ide_scsi_obj *scsi = ide_scsi_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 ide_scsi_put(scsi);
732
733 return 0;
734}
735
736static int idescsi_ide_ioctl(struct inode *inode, struct file *file,
737 unsigned int cmd, unsigned long arg)
738{
739 struct block_device *bdev = inode->i_bdev;
740 struct ide_scsi_obj *scsi = ide_scsi_g(bdev->bd_disk);
741 return generic_ide_ioctl(scsi->drive, file, bdev, cmd, arg);
742}
743
744static struct block_device_operations idescsi_ops = {
745 .owner = THIS_MODULE,
746 .open = idescsi_ide_open,
747 .release = idescsi_ide_release,
748 .ioctl = idescsi_ide_ioctl,
749};
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751static int idescsi_slave_configure(struct scsi_device * sdp)
752{
753 /* Configure detected device */
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200754 sdp->use_10_for_rw = 1;
755 sdp->use_10_for_ms = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 scsi_adjust_queue_depth(sdp, MSG_SIMPLE_TAG, sdp->host->cmd_per_lun);
757 return 0;
758}
759
760static const char *idescsi_info (struct Scsi_Host *host)
761{
762 return "SCSI host adapter emulation for IDE ATAPI devices";
763}
764
765static int idescsi_ioctl (struct scsi_device *dev, int cmd, void __user *arg)
766{
767 idescsi_scsi_t *scsi = scsihost_to_idescsi(dev->host);
768
769 if (cmd == SG_SET_TRANSFORM) {
770 if (arg)
771 set_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
772 else
773 clear_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
774 return 0;
775 } else if (cmd == SG_GET_TRANSFORM)
776 return put_user(test_bit(IDESCSI_SG_TRANSFORM, &scsi->transform), (int __user *) arg);
777 return -EINVAL;
778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780static int idescsi_queue (struct scsi_cmnd *cmd,
781 void (*done)(struct scsi_cmnd *))
782{
783 struct Scsi_Host *host = cmd->device->host;
784 idescsi_scsi_t *scsi = scsihost_to_idescsi(host);
785 ide_drive_t *drive = scsi->drive;
786 struct request *rq = NULL;
787 idescsi_pc_t *pc = NULL;
788
789 if (!drive) {
Jeff Garzik017560f2005-10-24 18:04:36 -0400790 scmd_printk (KERN_ERR, cmd, "drive not present\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 goto abort;
792 }
793 scsi = drive_to_idescsi(drive);
794 pc = kmalloc (sizeof (idescsi_pc_t), GFP_ATOMIC);
795 rq = kmalloc (sizeof (struct request), GFP_ATOMIC);
796 if (rq == NULL || pc == NULL) {
797 printk (KERN_ERR "ide-scsi: %s: out of memory\n", drive->name);
798 goto abort;
799 }
800
801 memset (pc->c, 0, 12);
802 pc->flags = 0;
803 pc->rq = rq;
804 memcpy (pc->c, cmd->cmnd, cmd->cmd_len);
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200805 pc->buffer = NULL;
806 pc->sg = scsi_sglist(cmd);
Jens Axboec79d88b2007-10-17 13:16:35 +0200807 pc->sg_cnt = scsi_sg_count(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 pc->b_count = 0;
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200809 pc->request_transfer = pc->buffer_size = scsi_bufflen(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 pc->scsi_cmd = cmd;
811 pc->done = done;
812 pc->timeout = jiffies + cmd->timeout_per_command;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (test_bit(IDESCSI_LOG_CMD, &scsi->log)) {
815 printk ("ide-scsi: %s: que %lu, cmd = ", drive->name, cmd->serial_number);
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100816 ide_scsi_hex_dump(cmd->cmnd, cmd->cmd_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (memcmp(pc->c, cmd->cmnd, cmd->cmd_len)) {
818 printk ("ide-scsi: %s: que %lu, tsl = ", drive->name, cmd->serial_number);
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100819 ide_scsi_hex_dump(pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821 }
822
823 ide_init_drive_cmd (rq);
824 rq->special = (char *) pc;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200825 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 spin_unlock_irq(host->host_lock);
827 rq->rq_disk = scsi->disk;
828 (void) ide_do_drive_cmd (drive, rq, ide_end);
829 spin_lock_irq(host->host_lock);
830 return 0;
831abort:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800832 kfree (pc);
833 kfree (rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 cmd->result = DID_ERROR << 16;
835 done(cmd);
836 return 0;
837}
838
839static int idescsi_eh_abort (struct scsi_cmnd *cmd)
840{
841 idescsi_scsi_t *scsi = scsihost_to_idescsi(cmd->device->host);
842 ide_drive_t *drive = scsi->drive;
843 int busy;
844 int ret = FAILED;
845
846 /* In idescsi_eh_abort we try to gently pry our command from the ide subsystem */
847
848 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
849 printk (KERN_WARNING "ide-scsi: abort called for %lu\n", cmd->serial_number);
850
851 if (!drive) {
852 printk (KERN_WARNING "ide-scsi: Drive not set in idescsi_eh_abort\n");
853 WARN_ON(1);
854 goto no_drive;
855 }
856
857 /* First give it some more time, how much is "right" is hard to say :-( */
858
859 busy = ide_wait_not_busy(HWIF(drive), 100); /* FIXME - uses mdelay which causes latency? */
860 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
861 printk (KERN_WARNING "ide-scsi: drive did%s become ready\n", busy?" not":"");
862
863 spin_lock_irq(&ide_lock);
864
865 /* If there is no pc running we're done (our interrupt took care of it) */
866 if (!scsi->pc) {
867 ret = SUCCESS;
868 goto ide_unlock;
869 }
870
871 /* It's somewhere in flight. Does ide subsystem agree? */
872 if (scsi->pc->scsi_cmd->serial_number == cmd->serial_number && !busy &&
873 elv_queue_empty(drive->queue) && HWGROUP(drive)->rq != scsi->pc->rq) {
874 /*
875 * FIXME - not sure this condition can ever occur
876 */
877 printk (KERN_ERR "ide-scsi: cmd aborted!\n");
878
Jens Axboe4aff5e22006-08-10 08:44:47 +0200879 if (blk_sense_request(scsi->pc->rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 kfree(scsi->pc->buffer);
881 kfree(scsi->pc->rq);
882 kfree(scsi->pc);
883 scsi->pc = NULL;
884
885 ret = SUCCESS;
886 }
887
888ide_unlock:
889 spin_unlock_irq(&ide_lock);
890no_drive:
891 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
892 printk (KERN_WARNING "ide-scsi: abort returns %s\n", ret == SUCCESS?"success":"failed");
893
894 return ret;
895}
896
897static int idescsi_eh_reset (struct scsi_cmnd *cmd)
898{
899 struct request *req;
900 idescsi_scsi_t *scsi = scsihost_to_idescsi(cmd->device->host);
901 ide_drive_t *drive = scsi->drive;
902 int ready = 0;
903 int ret = SUCCESS;
904
905 /* In idescsi_eh_reset we forcefully remove the command from the ide subsystem and reset the device. */
906
907 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
908 printk (KERN_WARNING "ide-scsi: reset called for %lu\n", cmd->serial_number);
909
910 if (!drive) {
911 printk (KERN_WARNING "ide-scsi: Drive not set in idescsi_eh_reset\n");
912 WARN_ON(1);
913 return FAILED;
914 }
915
Jeff Garzik df0ae242005-05-28 07:57:14 -0400916 spin_lock_irq(cmd->device->host->host_lock);
917 spin_lock(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 if (!scsi->pc || (req = scsi->pc->rq) != HWGROUP(drive)->rq || !HWGROUP(drive)->handler) {
920 printk (KERN_WARNING "ide-scsi: No active request in idescsi_eh_reset\n");
921 spin_unlock(&ide_lock);
Jeff Garzik df0ae242005-05-28 07:57:14 -0400922 spin_unlock_irq(cmd->device->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return FAILED;
924 }
925
926 /* kill current request */
927 blkdev_dequeue_request(req);
Tejun Heo8ffdc652006-01-06 09:49:03 +0100928 end_that_request_last(req, 0);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200929 if (blk_sense_request(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 kfree(scsi->pc->buffer);
931 kfree(scsi->pc);
932 scsi->pc = NULL;
933 kfree(req);
934
935 /* now nuke the drive queue */
936 while ((req = elv_next_request(drive->queue))) {
937 blkdev_dequeue_request(req);
Tejun Heo8ffdc652006-01-06 09:49:03 +0100938 end_that_request_last(req, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940
941 HWGROUP(drive)->rq = NULL;
942 HWGROUP(drive)->handler = NULL;
943 HWGROUP(drive)->busy = 1; /* will set this to zero when ide reset finished */
Jeff Garzik df0ae242005-05-28 07:57:14 -0400944 spin_unlock(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 ide_do_reset(drive);
947
948 /* ide_do_reset starts a polling handler which restarts itself every 50ms until the reset finishes */
949
950 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 spin_unlock_irq(cmd->device->host->host_lock);
Jeff Garzik df0ae242005-05-28 07:57:14 -0400952 msleep(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 spin_lock_irq(cmd->device->host->host_lock);
954 } while ( HWGROUP(drive)->handler );
955
956 ready = drive_is_ready(drive);
957 HWGROUP(drive)->busy--;
958 if (!ready) {
959 printk (KERN_ERR "ide-scsi: reset failed!\n");
960 ret = FAILED;
961 }
962
Jeff Garzik df0ae242005-05-28 07:57:14 -0400963 spin_unlock_irq(cmd->device->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return ret;
965}
966
967static int idescsi_bios(struct scsi_device *sdev, struct block_device *bdev,
968 sector_t capacity, int *parm)
969{
970 idescsi_scsi_t *idescsi = scsihost_to_idescsi(sdev->host);
971 ide_drive_t *drive = idescsi->drive;
972
973 if (drive->bios_cyl && drive->bios_head && drive->bios_sect) {
974 parm[0] = drive->bios_head;
975 parm[1] = drive->bios_sect;
976 parm[2] = drive->bios_cyl;
977 }
978 return 0;
979}
980
981static struct scsi_host_template idescsi_template = {
982 .module = THIS_MODULE,
983 .name = "idescsi",
984 .info = idescsi_info,
985 .slave_configure = idescsi_slave_configure,
986 .ioctl = idescsi_ioctl,
987 .queuecommand = idescsi_queue,
988 .eh_abort_handler = idescsi_eh_abort,
989 .eh_host_reset_handler = idescsi_eh_reset,
990 .bios_param = idescsi_bios,
991 .can_queue = 40,
992 .this_id = -1,
993 .sg_tablesize = 256,
994 .cmd_per_lun = 5,
995 .max_sectors = 128,
996 .use_clustering = DISABLE_CLUSTERING,
997 .emulated = 1,
998 .proc_name = "ide-scsi",
999};
1000
Mikael Petterssonb62735d2006-02-01 03:04:45 -08001001static int ide_scsi_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
1003 idescsi_scsi_t *idescsi;
1004 struct Scsi_Host *host;
1005 struct gendisk *g;
1006 static int warned;
1007 int err = -ENOMEM;
1008
1009 if (!warned && drive->media == ide_cdrom) {
1010 printk(KERN_WARNING "ide-scsi is deprecated for cd burning! Use ide-cd and give dev=/dev/hdX as device\n");
1011 warned = 1;
1012 }
1013
Alan Coxaaeab802006-12-06 20:39:33 -08001014 if (idescsi_nocd && drive->media == ide_cdrom)
1015 return -ENODEV;
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (!strstr("ide-scsi", drive->driver_req) ||
1018 !drive->present ||
1019 drive->media == ide_disk ||
1020 !(host = scsi_host_alloc(&idescsi_template,sizeof(idescsi_scsi_t))))
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001021 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 g = alloc_disk(1 << PARTN_BITS);
1024 if (!g)
1025 goto out_host_put;
1026
1027 ide_init_disk(g, drive);
1028
1029 host->max_id = 1;
1030
1031#if IDESCSI_DEBUG_LOG
1032 if (drive->id->last_lun)
1033 printk(KERN_NOTICE "%s: id->last_lun=%u\n", drive->name, drive->id->last_lun);
1034#endif
1035 if ((drive->id->last_lun & 0x7) != 7)
1036 host->max_lun = (drive->id->last_lun & 0x7) + 1;
1037 else
1038 host->max_lun = 1;
1039
1040 drive->driver_data = host;
1041 idescsi = scsihost_to_idescsi(host);
1042 idescsi->drive = drive;
1043 idescsi->driver = &idescsi_driver;
1044 idescsi->host = host;
1045 idescsi->disk = g;
1046 g->private_data = &idescsi->driver;
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001047 ide_proc_register_driver(drive, &idescsi_driver);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001048 err = 0;
1049 idescsi_setup(drive, idescsi);
1050 g->fops = &idescsi_ops;
1051 ide_register_region(g);
1052 err = scsi_add_host(host, &drive->gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (!err) {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001054 scsi_scan_host(host);
1055 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001057 /* fall through on error */
1058 ide_unregister_region(g);
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +02001059 ide_proc_unregister_driver(drive, &idescsi_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 put_disk(g);
1062out_host_put:
1063 scsi_host_put(host);
1064 return err;
1065}
1066
1067static int __init init_idescsi_module(void)
1068{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001069 return driver_register(&idescsi_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
1072static void __exit exit_idescsi_module(void)
1073{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001074 driver_unregister(&idescsi_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
Alan Coxaaeab802006-12-06 20:39:33 -08001077module_param(idescsi_nocd, int, 0600);
1078MODULE_PARM_DESC(idescsi_nocd, "Disable handling of CD-ROMs so they may be driven by ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079module_init(init_idescsi_module);
1080module_exit(exit_idescsi_module);
1081MODULE_LICENSE("GPL");