blob: ada733ca6725261a38d29415a1fe04a487e8c5ce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 1996-1999 Gadi Oxman <gadio@netvision.net.il>
3 * Copyright (C) 2004-2005 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6/*
7 * Emulation of a SCSI host adapter for IDE ATAPI devices.
8 *
9 * With this driver, one can use the Linux SCSI drivers instead of the
10 * native IDE ATAPI drivers.
11 *
12 * Ver 0.1 Dec 3 96 Initial version.
13 * Ver 0.2 Jan 26 97 Fixed bug in cleanup_module() and added emulation
14 * of MODE_SENSE_6/MODE_SELECT_6 for cdroms. Thanks
15 * to Janos Farkas for pointing this out.
16 * Avoid using bitfields in structures for m68k.
17 * Added Scatter/Gather and DMA support.
18 * Ver 0.4 Dec 7 97 Add support for ATAPI PD/CD drives.
19 * Use variable timeout for each command.
20 * Ver 0.5 Jan 2 98 Fix previous PD/CD support.
21 * Allow disabling of SCSI-6 to SCSI-10 transformation.
22 * Ver 0.6 Jan 27 98 Allow disabling of SCSI command translation layer
23 * for access through /dev/sg.
24 * Fix MODE_SENSE_6/MODE_SELECT_6/INQUIRY translation.
25 * Ver 0.7 Dec 04 98 Ignore commands where lun != 0 to avoid multiple
26 * detection of devices with CONFIG_SCSI_MULTI_LUN
27 * Ver 0.8 Feb 05 99 Optical media need translation too. Reverse 0.7.
28 * Ver 0.9 Jul 04 99 Fix a bug in SG_SET_TRANSFORM.
29 * Ver 0.91 Jun 10 02 Fix "off by one" error in transforms
30 * Ver 0.92 Dec 31 02 Implement new SCSI mid level API
31 */
32
33#define IDESCSI_VERSION "0.92"
34
35#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/types.h>
37#include <linux/string.h>
38#include <linux/kernel.h>
39#include <linux/mm.h>
40#include <linux/ioport.h>
41#include <linux/blkdev.h>
42#include <linux/errno.h>
43#include <linux/hdreg.h>
44#include <linux/slab.h>
45#include <linux/ide.h>
46#include <linux/scatterlist.h>
Jeff Garzik df0ae242005-05-28 07:57:14 -040047#include <linux/delay.h>
Jes Sorensene723ccd2006-03-23 03:00:22 -080048#include <linux/mutex.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070049#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/uaccess.h>
53
54#include <scsi/scsi.h>
55#include <scsi/scsi_cmnd.h>
56#include <scsi/scsi_device.h>
57#include <scsi/scsi_host.h>
58#include <scsi/scsi_tcq.h>
59#include <scsi/sg.h>
60
61#define IDESCSI_DEBUG_LOG 0
62
Bartlomiej Zolnierkiewicz43a2b5b2008-07-15 21:21:52 +020063#if IDESCSI_DEBUG_LOG
64#define debug_log(fmt, args...) \
65 printk(KERN_INFO "ide-scsi: " fmt, ## args)
66#else
67#define debug_log(fmt, args...) do {} while (0)
68#endif
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * SCSI command transformation layer
72 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define IDESCSI_SG_TRANSFORM 1 /* /dev/sg transformation */
74
75/*
76 * Log flags
77 */
78#define IDESCSI_LOG_CMD 0 /* Log SCSI commands */
79
80typedef struct ide_scsi_obj {
81 ide_drive_t *drive;
82 ide_driver_t *driver;
83 struct gendisk *disk;
84 struct Scsi_Host *host;
85
Borislav Petkov1c065782008-04-18 00:46:27 +020086 struct ide_atapi_pc *pc; /* Current packet command */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 unsigned long flags; /* Status/Action flags */
88 unsigned long transform; /* SCSI cmd translation layer */
89 unsigned long log; /* log flags */
90} idescsi_scsi_t;
91
Jes Sorensene723ccd2006-03-23 03:00:22 -080092static DEFINE_MUTEX(idescsi_ref_mutex);
Borislav Petkov1c065782008-04-18 00:46:27 +020093/* Set by module param to skip cd */
94static int idescsi_nocd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#define ide_scsi_g(disk) \
97 container_of((disk)->private_data, struct ide_scsi_obj, driver)
98
99static struct ide_scsi_obj *ide_scsi_get(struct gendisk *disk)
100{
101 struct ide_scsi_obj *scsi = NULL;
102
Jes Sorensene723ccd2006-03-23 03:00:22 -0800103 mutex_lock(&idescsi_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 scsi = ide_scsi_g(disk);
105 if (scsi)
106 scsi_host_get(scsi->host);
Jes Sorensene723ccd2006-03-23 03:00:22 -0800107 mutex_unlock(&idescsi_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return scsi;
109}
110
111static void ide_scsi_put(struct ide_scsi_obj *scsi)
112{
Jes Sorensene723ccd2006-03-23 03:00:22 -0800113 mutex_lock(&idescsi_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 scsi_host_put(scsi->host);
Jes Sorensene723ccd2006-03-23 03:00:22 -0800115 mutex_unlock(&idescsi_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118static inline idescsi_scsi_t *scsihost_to_idescsi(struct Scsi_Host *host)
119{
120 return (idescsi_scsi_t*) (&host[1]);
121}
122
123static inline idescsi_scsi_t *drive_to_idescsi(ide_drive_t *ide_drive)
124{
125 return scsihost_to_idescsi(ide_drive->driver_data);
126}
127
128/*
129 * Per ATAPI device status bits.
130 */
131#define IDESCSI_DRQ_INTERRUPT 0 /* DRQ interrupt device */
132
133/*
134 * ide-scsi requests.
135 */
136#define IDESCSI_PC_RQ 90
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/*
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200139 * PIO data transfer routine using the scatter gather table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200141static void ide_scsi_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc,
142 unsigned int bcount, int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200144 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200145 xfer_func_t *xf = write ? hwif->output_data : hwif->input_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 char *buf;
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200147 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 while (bcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 count = min(pc->sg->length - pc->b_count, bcount);
Jens Axboe45711f12007-10-22 21:19:53 +0200151 if (PageHighMem(sg_page(pc->sg))) {
Andrew Mortona717f772005-10-31 14:08:53 -0800152 unsigned long flags;
153
154 local_irq_save(flags);
Jens Axboe45711f12007-10-22 21:19:53 +0200155 buf = kmap_atomic(sg_page(pc->sg), KM_IRQ0) +
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200156 pc->sg->offset;
157 xf(drive, NULL, buf + pc->b_count, count);
Andrew Mortona717f772005-10-31 14:08:53 -0800158 kunmap_atomic(buf - pc->sg->offset, KM_IRQ0);
159 local_irq_restore(flags);
160 } else {
Jens Axboe45711f12007-10-22 21:19:53 +0200161 buf = sg_virt(pc->sg);
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200162 xf(drive, NULL, buf + pc->b_count, count);
Andrew Mortona717f772005-10-31 14:08:53 -0800163 }
164 bcount -= count; pc->b_count += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (pc->b_count == pc->sg->length) {
Jens Axboec79d88b2007-10-17 13:16:35 +0200166 if (!--pc->sg_cnt)
Jens Axboed274a982007-10-16 11:20:52 +0200167 break;
168 pc->sg = sg_next(pc->sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 pc->b_count = 0;
170 }
171 }
Jens Axboed274a982007-10-16 11:20:52 +0200172
173 if (bcount) {
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200174 printk(KERN_ERR "%s: scatter gather table too small, %s\n",
175 drive->name, write ? "padding with zeros"
176 : "discarding data");
177 ide_pad_transfer(drive, write, bcount);
Jens Axboed274a982007-10-16 11:20:52 +0200178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100181static void ide_scsi_hex_dump(u8 *data, int len)
182{
183 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_NONE, 16, 1, data, len, 0);
184}
185
Bartlomiej Zolnierkiewiczc6b2d262008-07-15 21:22:02 +0200186static int idescsi_end_request(ide_drive_t *, int, int);
187
188static void ide_scsi_callback(ide_drive_t *drive)
189{
190 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
191 struct ide_atapi_pc *pc = scsi->pc;
192
193 if (pc->flags & PC_FLAG_TIMEDOUT)
194 debug_log("%s: got timed out packet %lu at %lu\n", __func__,
195 pc->scsi_cmd->serial_number, jiffies);
196 /* end this request now - scsi should retry it*/
197 else if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
198 printk(KERN_INFO "Packet command completed, %d bytes"
199 " transferred\n", pc->xferred);
200
201 idescsi_end_request(drive, 1, 0);
202}
203
Borislav Petkov1c065782008-04-18 00:46:27 +0200204static int idescsi_check_condition(ide_drive_t *drive,
205 struct request *failed_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
Borislav Petkov1c065782008-04-18 00:46:27 +0200208 struct ide_atapi_pc *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct request *rq;
210 u8 *buf;
211
212 /* stuff a sense request in front of our current request */
Borislav Petkov1c065782008-04-18 00:46:27 +0200213 pc = kzalloc(sizeof(struct ide_atapi_pc), GFP_ATOMIC);
Mariusz Kozlowski41ead3c2007-08-01 23:46:45 +0200214 rq = kmalloc(sizeof(struct request), GFP_ATOMIC);
215 buf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_ATOMIC);
216 if (!pc || !rq || !buf) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800217 kfree(buf);
218 kfree(rq);
219 kfree(pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -ENOMEM;
221 }
FUJITA Tomonori124cafc2008-07-15 21:21:44 +0200222 blk_rq_init(NULL, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 rq->special = (char *) pc;
224 pc->rq = rq;
Borislav Petkov1c065782008-04-18 00:46:27 +0200225 pc->buf = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 pc->c[0] = REQUEST_SENSE;
Borislav Petkov1c065782008-04-18 00:46:27 +0200227 pc->c[4] = pc->req_xfer = pc->buf_size = SCSI_SENSE_BUFFERSIZE;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200228 rq->cmd_type = REQ_TYPE_SENSE;
Bartlomiej Zolnierkiewicze8a96aa2008-07-15 21:21:41 +0200229 rq->cmd_flags |= REQ_PREEMPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 pc->timeout = jiffies + WAIT_READY;
Bartlomiej Zolnierkiewiczc6b2d262008-07-15 21:22:02 +0200231 pc->callback = ide_scsi_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /* NOTE! Save the failed packet command in "rq->buffer" */
Borislav Petkov1c065782008-04-18 00:46:27 +0200233 rq->buffer = (void *) failed_cmd->special;
234 pc->scsi_cmd = ((struct ide_atapi_pc *) failed_cmd->special)->scsi_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (test_bit(IDESCSI_LOG_CMD, &scsi->log)) {
236 printk ("ide-scsi: %s: queue cmd = ", drive->name);
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100237 ide_scsi_hex_dump(pc->c, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239 rq->rq_disk = scsi->disk;
FUJITA Tomonori63f5abb2008-07-15 21:21:51 +0200240 ide_do_drive_cmd(drive, rq);
241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244static ide_startstop_t
245idescsi_atapi_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
246{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200247 ide_hwif_t *hwif = drive->hwif;
248
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100249 if (ide_read_status(drive) & (BUSY_STAT | DRQ_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* force an abort */
Bartlomiej Zolnierkiewiczf8c4bd0a2008-07-15 21:21:49 +0200251 hwif->OUTBSYNC(hwif, WIN_IDLEIMMEDIATE,
Bartlomiej Zolnierkiewicz32b3fe42008-04-28 23:44:38 +0200252 hwif->io_ports.command_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 rq->errors++;
255
256 idescsi_end_request(drive, 0, 0);
257
258 return ide_stopped;
259}
260
261static ide_startstop_t
262idescsi_atapi_abort(ide_drive_t *drive, struct request *rq)
263{
Bartlomiej Zolnierkiewicz43a2b5b2008-07-15 21:21:52 +0200264 debug_log("%s called for %lu\n", __func__,
Borislav Petkov1c065782008-04-18 00:46:27 +0200265 ((struct ide_atapi_pc *) rq->special)->scsi_cmd->serial_number);
Bartlomiej Zolnierkiewicz43a2b5b2008-07-15 21:21:52 +0200266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 rq->errors |= ERROR_MAX;
268
269 idescsi_end_request(drive, 0, 0);
270
271 return ide_stopped;
272}
273
274static int idescsi_end_request (ide_drive_t *drive, int uptodate, int nrsecs)
275{
276 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
277 struct request *rq = HWGROUP(drive)->rq;
Borislav Petkov1c065782008-04-18 00:46:27 +0200278 struct ide_atapi_pc *pc = (struct ide_atapi_pc *) rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 int log = test_bit(IDESCSI_LOG_CMD, &scsi->log);
280 struct Scsi_Host *host;
Willem Riede32565342005-10-31 00:03:49 +0000281 int errors = rq->errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 unsigned long flags;
283
Jens Axboe4aff5e22006-08-10 08:44:47 +0200284 if (!blk_special_request(rq) && !blk_sense_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 ide_end_request(drive, uptodate, nrsecs);
286 return 0;
287 }
288 ide_end_drive_cmd (drive, 0, 0);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200289 if (blk_sense_request(rq)) {
Borislav Petkov1c065782008-04-18 00:46:27 +0200290 struct ide_atapi_pc *opc = (struct ide_atapi_pc *) rq->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (log) {
292 printk ("ide-scsi: %s: wrap up check %lu, rst = ", drive->name, opc->scsi_cmd->serial_number);
Borislav Petkov1c065782008-04-18 00:46:27 +0200293 ide_scsi_hex_dump(pc->buf, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
Borislav Petkov1c065782008-04-18 00:46:27 +0200295 memcpy((void *) opc->scsi_cmd->sense_buffer, pc->buf,
296 SCSI_SENSE_BUFFERSIZE);
297 kfree(pc->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 kfree(pc);
299 kfree(rq);
300 pc = opc;
301 rq = pc->rq;
302 pc->scsi_cmd->result = (CHECK_CONDITION << 1) |
Borislav Petkove3bfae42008-04-18 00:46:27 +0200303 (((pc->flags & PC_FLAG_TIMEDOUT) ?
304 DID_TIME_OUT :
305 DID_OK) << 16);
306 } else if (pc->flags & PC_FLAG_TIMEDOUT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (log)
308 printk (KERN_WARNING "ide-scsi: %s: timed out for %lu\n",
309 drive->name, pc->scsi_cmd->serial_number);
310 pc->scsi_cmd->result = DID_TIME_OUT << 16;
Willem Riede32565342005-10-31 00:03:49 +0000311 } else if (errors >= ERROR_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 pc->scsi_cmd->result = DID_ERROR << 16;
313 if (log)
314 printk ("ide-scsi: %s: I/O error for %lu\n", drive->name, pc->scsi_cmd->serial_number);
Willem Riede32565342005-10-31 00:03:49 +0000315 } else if (errors) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (log)
317 printk ("ide-scsi: %s: check condition for %lu\n", drive->name, pc->scsi_cmd->serial_number);
318 if (!idescsi_check_condition(drive, rq))
319 /* we started a request sense, so we'll be back, exit for now */
320 return 0;
321 pc->scsi_cmd->result = (CHECK_CONDITION << 1) | (DID_OK << 16);
322 } else {
323 pc->scsi_cmd->result = DID_OK << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325 host = pc->scsi_cmd->device->host;
326 spin_lock_irqsave(host->host_lock, flags);
327 pc->done(pc->scsi_cmd);
328 spin_unlock_irqrestore(host->host_lock, flags);
329 kfree(pc);
330 kfree(rq);
331 scsi->pc = NULL;
332 return 0;
333}
334
Borislav Petkov1c065782008-04-18 00:46:27 +0200335static inline unsigned long get_timeout(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 return max_t(unsigned long, WAIT_CMD, pc->timeout - jiffies);
338}
339
340static int idescsi_expiry(ide_drive_t *drive)
341{
Bartlomiej Zolnierkiewiczd1be0a82007-06-16 02:24:44 +0200342 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
Borislav Petkov1c065782008-04-18 00:46:27 +0200343 struct ide_atapi_pc *pc = scsi->pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Bartlomiej Zolnierkiewicz43a2b5b2008-07-15 21:21:52 +0200345 debug_log("%s called for %lu at %lu\n", __func__,
346 pc->scsi_cmd->serial_number, jiffies);
347
Borislav Petkove3bfae42008-04-18 00:46:27 +0200348 pc->flags |= PC_FLAG_TIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 return 0; /* we do not want the ide subsystem to retry */
351}
352
353/*
354 * Our interrupt handler.
355 */
356static ide_startstop_t idescsi_pc_intr (ide_drive_t *drive)
357{
358 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100359 ide_hwif_t *hwif = drive->hwif;
Borislav Petkov1c065782008-04-18 00:46:27 +0200360 struct ide_atapi_pc *pc = scsi->pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct request *rq = pc->rq;
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200362 xfer_func_t *xferfunc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 unsigned int temp;
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100364 u16 bcount;
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100365 u8 stat, ireason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Bartlomiej Zolnierkiewiczcdca5c12008-07-15 21:22:02 +0200367 debug_log("Enter %s - interrupt handler\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Borislav Petkove3bfae42008-04-18 00:46:27 +0200369 if (pc->flags & PC_FLAG_TIMEDOUT) {
Bartlomiej Zolnierkiewiczc6b2d262008-07-15 21:22:02 +0200370 pc->callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return ide_stopped;
372 }
Bartlomiej Zolnierkiewicz55d82bf2008-07-15 21:22:03 +0200373
374 /* Clear the interrupt */
375 stat = ide_read_status(drive);
376
Borislav Petkove3bfae42008-04-18 00:46:27 +0200377 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
Bartlomiej Zolnierkiewiczc04bbc82008-07-15 21:21:51 +0200378 if (hwif->dma_ops->dma_end(drive))
379 pc->flags |= PC_FLAG_DMA_ERROR;
380 else
381 pc->xferred = pc->req_xfer;
Bartlomiej Zolnierkiewicz43a2b5b2008-07-15 21:21:52 +0200382 debug_log("%s: DMA finished\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100385 if ((stat & DRQ_STAT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* No more interrupts */
Bartlomiej Zolnierkiewiczcdca5c12008-07-15 21:22:02 +0200387 debug_log("Packet command completed, %d bytes transferred\n",
388 pc->xferred);
Bartlomiej Zolnierkiewicze8e25f02008-07-15 21:21:51 +0200389 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Ingo Molnar36e8e572006-08-27 01:23:56 -0700390 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewiczcdca5c12008-07-15 21:22:02 +0200391 if ((stat & ERR_STAT) || (pc->flags & PC_FLAG_DMA_ERROR)) {
392 /* Error detected */
393 debug_log("%s: I/O error\n", drive->name);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 rq->errors++;
Bartlomiej Zolnierkiewiczcdca5c12008-07-15 21:22:02 +0200396 }
Bartlomiej Zolnierkiewiczc6b2d262008-07-15 21:22:02 +0200397 pc->callback(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return ide_stopped;
399 }
Bartlomiej Zolnierkiewicze8e25f02008-07-15 21:21:51 +0200400 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
401 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
402 printk(KERN_ERR "%s: The device wants to issue more interrupts "
403 "in DMA mode\n", drive->name);
404 ide_dma_off(drive);
405 return ide_do_reset(drive);
406 }
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200407 bcount = (hwif->INB(hwif->io_ports.lbah_addr) << 8) |
408 hwif->INB(hwif->io_ports.lbam_addr);
409 ireason = hwif->INB(hwif->io_ports.nsect_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Bartlomiej Zolnierkiewicz8e7657a2008-01-25 22:17:12 +0100411 if (ireason & CD) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200412 printk(KERN_ERR "%s: CoD != 0 in %s\n", drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return ide_do_reset (drive);
414 }
Bartlomiej Zolnierkiewicz6c60bd82008-07-15 21:21:52 +0200415 if (((ireason & IO) == IO) == !!(pc->flags & PC_FLAG_WRITING)) {
416 /* Hopefully, we will never get here */
417 printk(KERN_ERR "%s: We wanted to %s, but the device wants us "
418 "to %s!\n", drive->name,
419 (ireason & IO) ? "Write" : "Read",
420 (ireason & IO) ? "Read" : "Write");
421 return ide_do_reset(drive);
422 }
423 if (!(pc->flags & PC_FLAG_WRITING)) {
Borislav Petkov1c065782008-04-18 00:46:27 +0200424 temp = pc->xferred + bcount;
425 if (temp > pc->req_xfer) {
426 if (temp > pc->buf_size) {
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200427 printk(KERN_ERR "%s: The device wants to send "
428 "us more data than expected - "
429 "discarding data\n",
430 drive->name);
Borislav Petkov1c065782008-04-18 00:46:27 +0200431 temp = pc->buf_size - pc->xferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (temp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (pc->sg)
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200434 ide_scsi_io_buffers(drive, pc,
435 temp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 else
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200437 hwif->input_data(drive, NULL,
438 pc->cur_pos, temp);
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200439 printk(KERN_ERR "%s: transferred %d of "
440 "%d bytes\n",
441 drive->name,
Bartlomiej Zolnierkiewicz790d1232008-01-25 22:17:12 +0100442 temp, bcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Borislav Petkov1c065782008-04-18 00:46:27 +0200444 pc->xferred += temp;
445 pc->cur_pos += temp;
Bartlomiej Zolnierkiewicz9f87abe2008-04-28 23:44:41 +0200446 ide_pad_transfer(drive, 0, bcount - temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
448 return ide_started;
449 }
Bartlomiej Zolnierkiewicz568ca922008-07-15 21:21:54 +0200450 debug_log("The device wants to send us more data than "
Bartlomiej Zolnierkiewicz43a2b5b2008-07-15 21:21:52 +0200451 "expected - allowing transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
Bartlomiej Zolnierkiewicz3e52fb42008-07-15 21:21:52 +0200453 xferfunc = hwif->input_data;
454 } else
455 xferfunc = hwif->output_data;
456
457 if (pc->sg)
458 ide_scsi_io_buffers(drive, pc, bcount,
459 !!(pc->flags & PC_FLAG_WRITING));
460 else
461 xferfunc(drive, NULL, pc->cur_pos, bcount);
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /* Update the current position */
Borislav Petkov1c065782008-04-18 00:46:27 +0200464 pc->xferred += bcount;
465 pc->cur_pos += bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Bartlomiej Zolnierkiewiczcdca5c12008-07-15 21:22:02 +0200467 debug_log("[cmd %x] transferred %d bytes on that intr.\n",
468 pc->c[0], bcount);
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /* And set the interrupt handler again */
471 ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
472 return ide_started;
473}
474
475static ide_startstop_t idescsi_transfer_pc(ide_drive_t *drive)
476{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200479 return ide_transfer_pc(drive, scsi->pc, idescsi_pc_intr,
480 get_timeout(scsi->pc), idescsi_expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Borislav Petkov1c065782008-04-18 00:46:27 +0200483static inline int idescsi_set_direction(struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 switch (pc->c[0]) {
486 case READ_6: case READ_10: case READ_12:
Borislav Petkove3bfae42008-04-18 00:46:27 +0200487 pc->flags &= ~PC_FLAG_WRITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return 0;
489 case WRITE_6: case WRITE_10: case WRITE_12:
Borislav Petkove3bfae42008-04-18 00:46:27 +0200490 pc->flags |= PC_FLAG_WRITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return 0;
492 default:
493 return 1;
494 }
495}
496
Borislav Petkov1c065782008-04-18 00:46:27 +0200497static int idescsi_map_sg(ide_drive_t *drive, struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 ide_hwif_t *hwif = drive->hwif;
500 struct scatterlist *sg, *scsi_sg;
501 int segments;
502
Borislav Petkov1c065782008-04-18 00:46:27 +0200503 if (!pc->req_xfer || pc->req_xfer % 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return 1;
505
506 if (idescsi_set_direction(pc))
507 return 1;
508
509 sg = hwif->sg_table;
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200510 scsi_sg = scsi_sglist(pc->scsi_cmd);
511 segments = scsi_sg_count(pc->scsi_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 if (segments > hwif->sg_max_nents)
514 return 1;
515
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200516 hwif->sg_nents = segments;
517 memcpy(sg, scsi_sg, sizeof(*sg) * segments);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 return 0;
520}
521
Borislav Petkov1c065782008-04-18 00:46:27 +0200522static ide_startstop_t idescsi_issue_pc(ide_drive_t *drive,
523 struct ide_atapi_pc *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Borislav Petkov1c065782008-04-18 00:46:27 +0200527 /* Set the current packet command */
528 scsi->pc = pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200530 return ide_issue_pc(drive, pc, idescsi_transfer_pc,
531 get_timeout(pc), idescsi_expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
534/*
535 * idescsi_do_request is our request handling function.
536 */
537static ide_startstop_t idescsi_do_request (ide_drive_t *drive, struct request *rq, sector_t block)
538{
Bartlomiej Zolnierkiewicz43a2b5b2008-07-15 21:21:52 +0200539 debug_log("dev: %s, cmd: %x, errors: %d\n", rq->rq_disk->disk_name,
540 rq->cmd[0], rq->errors);
541 debug_log("sector: %ld, nr_sectors: %ld, current_nr_sectors: %d\n",
542 rq->sector, rq->nr_sectors, rq->current_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Jens Axboe4aff5e22006-08-10 08:44:47 +0200544 if (blk_sense_request(rq) || blk_special_request(rq)) {
Bartlomiej Zolnierkiewicz4cc19682008-07-15 21:21:58 +0200545 struct ide_atapi_pc *pc = (struct ide_atapi_pc *)rq->special;
Bartlomiej Zolnierkiewicz28c72142008-07-15 21:21:59 +0200546 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
547
548 if (test_bit(IDESCSI_DRQ_INTERRUPT, &scsi->flags))
549 pc->flags |= PC_FLAG_DRQ_INTERRUPT;
Bartlomiej Zolnierkiewicz4cc19682008-07-15 21:21:58 +0200550
551 if (drive->using_dma && !idescsi_map_sg(drive, pc))
552 pc->flags |= PC_FLAG_DMA_OK;
553
554 return idescsi_issue_pc(drive, pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556 blk_dump_rq_flags(rq, "ide-scsi: unsup command");
557 idescsi_end_request (drive, 0, 0);
558 return ide_stopped;
559}
560
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200561#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static void idescsi_add_settings(ide_drive_t *drive)
563{
564 idescsi_scsi_t *scsi = drive_to_idescsi(drive);
565
566/*
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200567 * drive setting name read/write data type min max mul_factor div_factor data pointer set function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 */
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200569 ide_add_setting(drive, "bios_cyl", SETTING_RW, TYPE_INT, 0, 1023, 1, 1, &drive->bios_cyl, NULL);
570 ide_add_setting(drive, "bios_head", SETTING_RW, TYPE_BYTE, 0, 255, 1, 1, &drive->bios_head, NULL);
571 ide_add_setting(drive, "bios_sect", SETTING_RW, TYPE_BYTE, 0, 63, 1, 1, &drive->bios_sect, NULL);
572 ide_add_setting(drive, "transform", SETTING_RW, TYPE_INT, 0, 3, 1, 1, &scsi->transform, NULL);
573 ide_add_setting(drive, "log", SETTING_RW, TYPE_INT, 0, 1, 1, 1, &scsi->log, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200575#else
576static inline void idescsi_add_settings(ide_drive_t *drive) { ; }
577#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579/*
580 * Driver initialization.
581 */
582static void idescsi_setup (ide_drive_t *drive, idescsi_scsi_t *scsi)
583{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (drive->id && (drive->id->config & 0x0060) == 0x20)
585 set_bit (IDESCSI_DRQ_INTERRUPT, &scsi->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 clear_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
587#if IDESCSI_DEBUG_LOG
588 set_bit(IDESCSI_LOG_CMD, &scsi->log);
589#endif /* IDESCSI_DEBUG_LOG */
590 idescsi_add_settings(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Mikael Petterssonb62735d2006-02-01 03:04:45 -0800593static void ide_scsi_remove(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 struct Scsi_Host *scsihost = drive->driver_data;
596 struct ide_scsi_obj *scsi = scsihost_to_idescsi(scsihost);
597 struct gendisk *g = scsi->disk;
598
Matthew Wilcox6fdea8d2007-08-15 12:57:01 -0600599 scsi_remove_host(scsihost);
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200600 ide_proc_unregister_driver(drive, scsi->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 ide_unregister_region(g);
603
604 drive->driver_data = NULL;
605 g->private_data = NULL;
606 put_disk(g);
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 ide_scsi_put(scsi);
Bartlomiej Zolnierkiewiczf83cbc72008-07-15 21:21:58 +0200609
610 drive->scsi = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Mikael Petterssonb62735d2006-02-01 03:04:45 -0800613static int ide_scsi_probe(ide_drive_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200615#ifdef CONFIG_IDE_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616static ide_proc_entry_t idescsi_proc[] = {
617 { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
618 { NULL, 0, NULL, NULL }
619};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#endif
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622static ide_driver_t idescsi_driver = {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200623 .gen_driver = {
Laurent Riffard4ef3b8f2005-11-18 22:15:40 +0100624 .owner = THIS_MODULE,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200625 .name = "ide-scsi",
626 .bus = &ide_bus_type,
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200627 },
Mikael Petterssonb62735d2006-02-01 03:04:45 -0800628 .probe = ide_scsi_probe,
629 .remove = ide_scsi_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 .version = IDESCSI_VERSION,
631 .media = ide_scsi,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 .supports_dsc_overlap = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 .do_request = idescsi_do_request,
634 .end_request = idescsi_end_request,
635 .error = idescsi_atapi_error,
636 .abort = idescsi_atapi_abort,
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200637#ifdef CONFIG_IDE_PROC_FS
638 .proc = idescsi_proc,
639#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640};
641
642static int idescsi_ide_open(struct inode *inode, struct file *filp)
643{
644 struct gendisk *disk = inode->i_bdev->bd_disk;
645 struct ide_scsi_obj *scsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 if (!(scsi = ide_scsi_get(disk)))
648 return -ENXIO;
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return 0;
651}
652
653static int idescsi_ide_release(struct inode *inode, struct file *filp)
654{
655 struct gendisk *disk = inode->i_bdev->bd_disk;
656 struct ide_scsi_obj *scsi = ide_scsi_g(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 ide_scsi_put(scsi);
659
660 return 0;
661}
662
663static int idescsi_ide_ioctl(struct inode *inode, struct file *file,
664 unsigned int cmd, unsigned long arg)
665{
666 struct block_device *bdev = inode->i_bdev;
667 struct ide_scsi_obj *scsi = ide_scsi_g(bdev->bd_disk);
668 return generic_ide_ioctl(scsi->drive, file, bdev, cmd, arg);
669}
670
671static struct block_device_operations idescsi_ops = {
672 .owner = THIS_MODULE,
673 .open = idescsi_ide_open,
674 .release = idescsi_ide_release,
675 .ioctl = idescsi_ide_ioctl,
676};
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678static int idescsi_slave_configure(struct scsi_device * sdp)
679{
680 /* Configure detected device */
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200681 sdp->use_10_for_rw = 1;
682 sdp->use_10_for_ms = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 scsi_adjust_queue_depth(sdp, MSG_SIMPLE_TAG, sdp->host->cmd_per_lun);
684 return 0;
685}
686
687static const char *idescsi_info (struct Scsi_Host *host)
688{
689 return "SCSI host adapter emulation for IDE ATAPI devices";
690}
691
692static int idescsi_ioctl (struct scsi_device *dev, int cmd, void __user *arg)
693{
694 idescsi_scsi_t *scsi = scsihost_to_idescsi(dev->host);
695
696 if (cmd == SG_SET_TRANSFORM) {
697 if (arg)
698 set_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
699 else
700 clear_bit(IDESCSI_SG_TRANSFORM, &scsi->transform);
701 return 0;
702 } else if (cmd == SG_GET_TRANSFORM)
703 return put_user(test_bit(IDESCSI_SG_TRANSFORM, &scsi->transform), (int __user *) arg);
704 return -EINVAL;
705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707static int idescsi_queue (struct scsi_cmnd *cmd,
708 void (*done)(struct scsi_cmnd *))
709{
710 struct Scsi_Host *host = cmd->device->host;
711 idescsi_scsi_t *scsi = scsihost_to_idescsi(host);
712 ide_drive_t *drive = scsi->drive;
713 struct request *rq = NULL;
Borislav Petkov1c065782008-04-18 00:46:27 +0200714 struct ide_atapi_pc *pc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 if (!drive) {
Jeff Garzik017560f2005-10-24 18:04:36 -0400717 scmd_printk (KERN_ERR, cmd, "drive not present\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 goto abort;
719 }
720 scsi = drive_to_idescsi(drive);
Borislav Petkov1c065782008-04-18 00:46:27 +0200721 pc = kmalloc(sizeof(struct ide_atapi_pc), GFP_ATOMIC);
722 rq = kmalloc(sizeof(struct request), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (rq == NULL || pc == NULL) {
724 printk (KERN_ERR "ide-scsi: %s: out of memory\n", drive->name);
725 goto abort;
726 }
727
728 memset (pc->c, 0, 12);
729 pc->flags = 0;
Bartlomiej Zolnierkiewicz6c60bd82008-07-15 21:21:52 +0200730 if (cmd->sc_data_direction == DMA_TO_DEVICE)
731 pc->flags |= PC_FLAG_WRITING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 pc->rq = rq;
733 memcpy (pc->c, cmd->cmnd, cmd->cmd_len);
Borislav Petkov1c065782008-04-18 00:46:27 +0200734 pc->buf = NULL;
Boaz Harrosh427d0bd2007-09-18 12:27:43 +0200735 pc->sg = scsi_sglist(cmd);
Jens Axboec79d88b2007-10-17 13:16:35 +0200736 pc->sg_cnt = scsi_sg_count(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 pc->b_count = 0;
Borislav Petkov1c065782008-04-18 00:46:27 +0200738 pc->req_xfer = pc->buf_size = scsi_bufflen(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 pc->scsi_cmd = cmd;
740 pc->done = done;
741 pc->timeout = jiffies + cmd->timeout_per_command;
Bartlomiej Zolnierkiewiczc6b2d262008-07-15 21:22:02 +0200742 pc->callback = ide_scsi_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (test_bit(IDESCSI_LOG_CMD, &scsi->log)) {
745 printk ("ide-scsi: %s: que %lu, cmd = ", drive->name, cmd->serial_number);
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100746 ide_scsi_hex_dump(cmd->cmnd, cmd->cmd_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (memcmp(pc->c, cmd->cmnd, cmd->cmd_len)) {
748 printk ("ide-scsi: %s: que %lu, tsl = ", drive->name, cmd->serial_number);
Bartlomiej Zolnierkiewicz69ae6fe2007-12-12 23:31:57 +0100749 ide_scsi_hex_dump(pc->c, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751 }
752
FUJITA Tomonori124cafc2008-07-15 21:21:44 +0200753 blk_rq_init(NULL, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 rq->special = (char *) pc;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200755 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 spin_unlock_irq(host->host_lock);
FUJITA Tomonori7e12ca12008-07-15 21:21:50 +0200757 blk_execute_rq_nowait(drive->queue, scsi->disk, rq, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 spin_lock_irq(host->host_lock);
759 return 0;
760abort:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800761 kfree (pc);
762 kfree (rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 cmd->result = DID_ERROR << 16;
764 done(cmd);
765 return 0;
766}
767
768static int idescsi_eh_abort (struct scsi_cmnd *cmd)
769{
770 idescsi_scsi_t *scsi = scsihost_to_idescsi(cmd->device->host);
771 ide_drive_t *drive = scsi->drive;
772 int busy;
773 int ret = FAILED;
774
775 /* In idescsi_eh_abort we try to gently pry our command from the ide subsystem */
776
777 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
778 printk (KERN_WARNING "ide-scsi: abort called for %lu\n", cmd->serial_number);
779
780 if (!drive) {
781 printk (KERN_WARNING "ide-scsi: Drive not set in idescsi_eh_abort\n");
782 WARN_ON(1);
783 goto no_drive;
784 }
785
786 /* First give it some more time, how much is "right" is hard to say :-( */
787
788 busy = ide_wait_not_busy(HWIF(drive), 100); /* FIXME - uses mdelay which causes latency? */
789 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
790 printk (KERN_WARNING "ide-scsi: drive did%s become ready\n", busy?" not":"");
791
792 spin_lock_irq(&ide_lock);
793
794 /* If there is no pc running we're done (our interrupt took care of it) */
795 if (!scsi->pc) {
796 ret = SUCCESS;
797 goto ide_unlock;
798 }
799
800 /* It's somewhere in flight. Does ide subsystem agree? */
801 if (scsi->pc->scsi_cmd->serial_number == cmd->serial_number && !busy &&
802 elv_queue_empty(drive->queue) && HWGROUP(drive)->rq != scsi->pc->rq) {
803 /*
804 * FIXME - not sure this condition can ever occur
805 */
806 printk (KERN_ERR "ide-scsi: cmd aborted!\n");
807
Jens Axboe4aff5e22006-08-10 08:44:47 +0200808 if (blk_sense_request(scsi->pc->rq))
Borislav Petkov1c065782008-04-18 00:46:27 +0200809 kfree(scsi->pc->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 kfree(scsi->pc->rq);
811 kfree(scsi->pc);
812 scsi->pc = NULL;
813
814 ret = SUCCESS;
815 }
816
817ide_unlock:
818 spin_unlock_irq(&ide_lock);
819no_drive:
820 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
821 printk (KERN_WARNING "ide-scsi: abort returns %s\n", ret == SUCCESS?"success":"failed");
822
823 return ret;
824}
825
826static int idescsi_eh_reset (struct scsi_cmnd *cmd)
827{
828 struct request *req;
829 idescsi_scsi_t *scsi = scsihost_to_idescsi(cmd->device->host);
830 ide_drive_t *drive = scsi->drive;
831 int ready = 0;
832 int ret = SUCCESS;
833
834 /* In idescsi_eh_reset we forcefully remove the command from the ide subsystem and reset the device. */
835
836 if (test_bit(IDESCSI_LOG_CMD, &scsi->log))
837 printk (KERN_WARNING "ide-scsi: reset called for %lu\n", cmd->serial_number);
838
839 if (!drive) {
840 printk (KERN_WARNING "ide-scsi: Drive not set in idescsi_eh_reset\n");
841 WARN_ON(1);
842 return FAILED;
843 }
844
Jeff Garzik df0ae242005-05-28 07:57:14 -0400845 spin_lock_irq(cmd->device->host->host_lock);
846 spin_lock(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 if (!scsi->pc || (req = scsi->pc->rq) != HWGROUP(drive)->rq || !HWGROUP(drive)->handler) {
849 printk (KERN_WARNING "ide-scsi: No active request in idescsi_eh_reset\n");
850 spin_unlock(&ide_lock);
Jeff Garzik df0ae242005-05-28 07:57:14 -0400851 spin_unlock_irq(cmd->device->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return FAILED;
853 }
854
855 /* kill current request */
Kiyoshi Ueda5a330e32007-12-11 17:49:29 -0500856 if (__blk_end_request(req, -EIO, 0))
857 BUG();
Jens Axboe4aff5e22006-08-10 08:44:47 +0200858 if (blk_sense_request(req))
Borislav Petkov1c065782008-04-18 00:46:27 +0200859 kfree(scsi->pc->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 kfree(scsi->pc);
861 scsi->pc = NULL;
862 kfree(req);
863
864 /* now nuke the drive queue */
865 while ((req = elv_next_request(drive->queue))) {
Kiyoshi Ueda5a330e32007-12-11 17:49:29 -0500866 if (__blk_end_request(req, -EIO, 0))
867 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869
870 HWGROUP(drive)->rq = NULL;
871 HWGROUP(drive)->handler = NULL;
872 HWGROUP(drive)->busy = 1; /* will set this to zero when ide reset finished */
Jeff Garzik df0ae242005-05-28 07:57:14 -0400873 spin_unlock(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 ide_do_reset(drive);
876
877 /* ide_do_reset starts a polling handler which restarts itself every 50ms until the reset finishes */
878
879 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 spin_unlock_irq(cmd->device->host->host_lock);
Jeff Garzik df0ae242005-05-28 07:57:14 -0400881 msleep(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 spin_lock_irq(cmd->device->host->host_lock);
883 } while ( HWGROUP(drive)->handler );
884
885 ready = drive_is_ready(drive);
886 HWGROUP(drive)->busy--;
887 if (!ready) {
888 printk (KERN_ERR "ide-scsi: reset failed!\n");
889 ret = FAILED;
890 }
891
Jeff Garzik df0ae242005-05-28 07:57:14 -0400892 spin_unlock_irq(cmd->device->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return ret;
894}
895
896static int idescsi_bios(struct scsi_device *sdev, struct block_device *bdev,
897 sector_t capacity, int *parm)
898{
899 idescsi_scsi_t *idescsi = scsihost_to_idescsi(sdev->host);
900 ide_drive_t *drive = idescsi->drive;
901
902 if (drive->bios_cyl && drive->bios_head && drive->bios_sect) {
903 parm[0] = drive->bios_head;
904 parm[1] = drive->bios_sect;
905 parm[2] = drive->bios_cyl;
906 }
907 return 0;
908}
909
910static struct scsi_host_template idescsi_template = {
911 .module = THIS_MODULE,
912 .name = "idescsi",
913 .info = idescsi_info,
914 .slave_configure = idescsi_slave_configure,
915 .ioctl = idescsi_ioctl,
916 .queuecommand = idescsi_queue,
917 .eh_abort_handler = idescsi_eh_abort,
918 .eh_host_reset_handler = idescsi_eh_reset,
919 .bios_param = idescsi_bios,
920 .can_queue = 40,
921 .this_id = -1,
922 .sg_tablesize = 256,
923 .cmd_per_lun = 5,
924 .max_sectors = 128,
925 .use_clustering = DISABLE_CLUSTERING,
926 .emulated = 1,
927 .proc_name = "ide-scsi",
928};
929
Mikael Petterssonb62735d2006-02-01 03:04:45 -0800930static int ide_scsi_probe(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
932 idescsi_scsi_t *idescsi;
933 struct Scsi_Host *host;
934 struct gendisk *g;
935 static int warned;
936 int err = -ENOMEM;
937
938 if (!warned && drive->media == ide_cdrom) {
939 printk(KERN_WARNING "ide-scsi is deprecated for cd burning! Use ide-cd and give dev=/dev/hdX as device\n");
940 warned = 1;
941 }
942
Alan Coxaaeab802006-12-06 20:39:33 -0800943 if (idescsi_nocd && drive->media == ide_cdrom)
944 return -ENODEV;
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (!strstr("ide-scsi", drive->driver_req) ||
947 !drive->present ||
948 drive->media == ide_disk ||
949 !(host = scsi_host_alloc(&idescsi_template,sizeof(idescsi_scsi_t))))
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200950 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Bartlomiej Zolnierkiewiczf83cbc72008-07-15 21:21:58 +0200952 drive->scsi = 1;
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 g = alloc_disk(1 << PARTN_BITS);
955 if (!g)
956 goto out_host_put;
957
958 ide_init_disk(g, drive);
959
960 host->max_id = 1;
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (drive->id->last_lun)
Bartlomiej Zolnierkiewicz43a2b5b2008-07-15 21:21:52 +0200963 debug_log("%s: id->last_lun=%u\n", drive->name,
964 drive->id->last_lun);
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if ((drive->id->last_lun & 0x7) != 7)
967 host->max_lun = (drive->id->last_lun & 0x7) + 1;
968 else
969 host->max_lun = 1;
970
971 drive->driver_data = host;
972 idescsi = scsihost_to_idescsi(host);
973 idescsi->drive = drive;
974 idescsi->driver = &idescsi_driver;
975 idescsi->host = host;
976 idescsi->disk = g;
977 g->private_data = &idescsi->driver;
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200978 ide_proc_register_driver(drive, &idescsi_driver);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200979 err = 0;
980 idescsi_setup(drive, idescsi);
981 g->fops = &idescsi_ops;
982 ide_register_region(g);
983 err = scsi_add_host(host, &drive->gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!err) {
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200985 scsi_scan_host(host);
986 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200988 /* fall through on error */
989 ide_unregister_region(g);
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200990 ide_proc_unregister_driver(drive, &idescsi_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 put_disk(g);
993out_host_put:
Bartlomiej Zolnierkiewiczf83cbc72008-07-15 21:21:58 +0200994 drive->scsi = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 scsi_host_put(host);
996 return err;
997}
998
999static int __init init_idescsi_module(void)
1000{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001001 return driver_register(&idescsi_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
1003
1004static void __exit exit_idescsi_module(void)
1005{
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001006 driver_unregister(&idescsi_driver.gen_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
Alan Coxaaeab802006-12-06 20:39:33 -08001009module_param(idescsi_nocd, int, 0600);
1010MODULE_PARM_DESC(idescsi_nocd, "Disable handling of CD-ROMs so they may be driven by ide-cd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011module_init(init_idescsi_module);
1012module_exit(exit_idescsi_module);
1013MODULE_LICENSE("GPL");