blob: 45a49be65042c5cff18538e26958c0260f24e30b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-scsi.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from
31 * - http://www.t10.org/
32 * - http://www.t13.org/
33 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
35
36#include <linux/kernel.h>
37#include <linux/blkdev.h>
38#include <linux/spinlock.h>
39#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <scsi/scsi_host.h>
Mike Christie85837eb2005-11-11 16:38:53 -060041#include <scsi/scsi_eh.h>
Jeff Garzik005a5a02005-10-30 23:31:48 -050042#include <scsi/scsi_device.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050043#include <scsi/scsi_request.h>
Tejun Heoa6e6ce82006-05-15 21:03:48 +090044#include <scsi/scsi_tcq.h>
Tejun Heo30afc842006-03-18 18:40:14 +090045#include <scsi/scsi_transport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/libata.h>
Jeff Garzikb0955182005-05-12 15:45:22 -040047#include <linux/hdreg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/uaccess.h>
49
50#include "libata.h"
51
Jeff Garzikb0955182005-05-12 15:45:22 -040052#define SECTOR_SIZE 512
53
Jeff Garzik057ace52005-10-22 14:27:05 -040054typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *qc, const u8 *scsicmd);
Tejun Heoab5b3a52006-05-31 18:27:34 +090055
56static struct ata_device * __ata_scsi_find_dev(struct ata_port *ap,
57 const struct scsi_device *scsidev);
58static struct ata_device * ata_scsi_find_dev(struct ata_port *ap,
59 const struct scsi_device *scsidev);
Tejun Heo83c47bc2006-05-31 18:28:07 +090060static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
61 unsigned int id, unsigned int lun);
Tejun Heoab5b3a52006-05-31 18:27:34 +090062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Douglas Gilbert00ac37f2005-10-28 15:58:28 -040064#define RW_RECOVERY_MPAGE 0x1
65#define RW_RECOVERY_MPAGE_LEN 12
66#define CACHE_MPAGE 0x8
67#define CACHE_MPAGE_LEN 20
68#define CONTROL_MPAGE 0xa
69#define CONTROL_MPAGE_LEN 12
70#define ALL_MPAGES 0x3f
71#define ALL_SUB_MPAGES 0xff
72
73
74static const u8 def_rw_recovery_mpage[] = {
75 RW_RECOVERY_MPAGE,
76 RW_RECOVERY_MPAGE_LEN - 2,
77 (1 << 7) | /* AWRE, sat-r06 say it shall be 0 */
78 (1 << 6), /* ARRE (auto read reallocation) */
79 0, /* read retry count */
80 0, 0, 0, 0,
81 0, /* write retry count */
82 0, 0, 0
83};
84
85static const u8 def_cache_mpage[CACHE_MPAGE_LEN] = {
86 CACHE_MPAGE,
87 CACHE_MPAGE_LEN - 2,
88 0, /* contains WCE, needs to be 0 for logic */
89 0, 0, 0, 0, 0, 0, 0, 0, 0,
90 0, /* contains DRA, needs to be 0 for logic */
91 0, 0, 0, 0, 0, 0, 0
92};
93
94static const u8 def_control_mpage[CONTROL_MPAGE_LEN] = {
95 CONTROL_MPAGE,
96 CONTROL_MPAGE_LEN - 2,
97 2, /* DSENSE=0, GLTSD=1 */
98 0, /* [QAM+QERR may be 1, see 05-359r1] */
99 0, 0, 0, 0, 0xff, 0xff,
100 0, 30 /* extended self test time, see 05-359r1 */
101};
102
Tejun Heo30afc842006-03-18 18:40:14 +0900103/*
104 * libata transport template. libata doesn't do real transport stuff.
105 * It just needs the eh_timed_out hook.
106 */
107struct scsi_transport_template ata_scsi_transport_template = {
Christoph Hellwig9227c332006-04-01 19:21:04 +0200108 .eh_strategy_handler = ata_scsi_error,
Tejun Heo30afc842006-03-18 18:40:14 +0900109 .eh_timed_out = ata_scsi_timed_out,
Tejun Heoccf68c32006-05-31 18:28:09 +0900110 .user_scan = ata_scsi_user_scan,
Tejun Heo30afc842006-03-18 18:40:14 +0900111};
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Douglas Gilbertae006512005-10-09 09:09:35 -0400114static void ata_scsi_invalid_field(struct scsi_cmnd *cmd,
115 void (*done)(struct scsi_cmnd *))
116{
117 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x24, 0x0);
118 /* "Invalid field in cbd" */
119 done(cmd);
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/**
123 * ata_std_bios_param - generic bios head/sector/cylinder calculator used by sd.
124 * @sdev: SCSI device for which BIOS geometry is to be determined
125 * @bdev: block device associated with @sdev
126 * @capacity: capacity of SCSI device
127 * @geom: location to which geometry will be output
128 *
129 * Generic bios head/sector/cylinder calculator
130 * used by sd. Most BIOSes nowadays expect a XXX/255/16 (CHS)
131 * mapping. Some situations may arise where the disk is not
132 * bootable if this is not used.
133 *
134 * LOCKING:
135 * Defined by the SCSI layer. We don't really care.
136 *
137 * RETURNS:
138 * Zero.
139 */
140int ata_std_bios_param(struct scsi_device *sdev, struct block_device *bdev,
141 sector_t capacity, int geom[])
142{
143 geom[0] = 255;
144 geom[1] = 63;
145 sector_div(capacity, 255*63);
146 geom[2] = capacity;
147
148 return 0;
149}
150
Jeff Garzikb0955182005-05-12 15:45:22 -0400151/**
152 * ata_cmd_ioctl - Handler for HDIO_DRIVE_CMD ioctl
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800153 * @scsidev: Device to which we are issuing command
Jeff Garzikb0955182005-05-12 15:45:22 -0400154 * @arg: User provided data for issuing command
155 *
156 * LOCKING:
157 * Defined by the SCSI layer. We don't really care.
158 *
159 * RETURNS:
160 * Zero on success, negative errno on error.
161 */
162
163int ata_cmd_ioctl(struct scsi_device *scsidev, void __user *arg)
164{
165 int rc = 0;
166 u8 scsi_cmd[MAX_COMMAND_SIZE];
167 u8 args[4], *argbuf = NULL;
168 int argsize = 0;
Mike Christie85837eb2005-11-11 16:38:53 -0600169 struct scsi_sense_hdr sshdr;
170 enum dma_data_direction data_dir;
Jeff Garzikb0955182005-05-12 15:45:22 -0400171
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500172 if (arg == NULL)
Jeff Garzikb0955182005-05-12 15:45:22 -0400173 return -EINVAL;
174
175 if (copy_from_user(args, arg, sizeof(args)))
176 return -EFAULT;
177
Jeff Garzikb0955182005-05-12 15:45:22 -0400178 memset(scsi_cmd, 0, sizeof(scsi_cmd));
179
180 if (args[3]) {
181 argsize = SECTOR_SIZE * args[3];
182 argbuf = kmalloc(argsize, GFP_KERNEL);
Jeff Raubitschek54dac832005-10-04 10:21:19 -0400183 if (argbuf == NULL) {
184 rc = -ENOMEM;
185 goto error;
186 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400187
188 scsi_cmd[1] = (4 << 1); /* PIO Data-in */
189 scsi_cmd[2] = 0x0e; /* no off.line or cc, read from dev,
190 block count in sector count field */
Mike Christie85837eb2005-11-11 16:38:53 -0600191 data_dir = DMA_FROM_DEVICE;
Jeff Garzikb0955182005-05-12 15:45:22 -0400192 } else {
193 scsi_cmd[1] = (3 << 1); /* Non-data */
194 /* scsi_cmd[2] is already 0 -- no off.line, cc, or data xfer */
Mike Christie85837eb2005-11-11 16:38:53 -0600195 data_dir = DMA_NONE;
Jeff Garzikb0955182005-05-12 15:45:22 -0400196 }
197
198 scsi_cmd[0] = ATA_16;
199
200 scsi_cmd[4] = args[2];
201 if (args[0] == WIN_SMART) { /* hack -- ide driver does this too... */
202 scsi_cmd[6] = args[3];
203 scsi_cmd[8] = args[1];
204 scsi_cmd[10] = 0x4f;
205 scsi_cmd[12] = 0xc2;
206 } else {
207 scsi_cmd[6] = args[1];
208 }
209 scsi_cmd[14] = args[0];
210
211 /* Good values for timeout and retries? Values below
212 from scsi_ioctl_send_command() for default case... */
Mike Christie85837eb2005-11-11 16:38:53 -0600213 if (scsi_execute_req(scsidev, scsi_cmd, data_dir, argbuf, argsize,
214 &sshdr, (10*HZ), 5)) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400215 rc = -EIO;
216 goto error;
217 }
218
219 /* Need code to retrieve data from check condition? */
220
221 if ((argbuf)
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500222 && copy_to_user(arg + sizeof(args), argbuf, argsize))
Jeff Garzikb0955182005-05-12 15:45:22 -0400223 rc = -EFAULT;
224error:
Jeff Garzikb0955182005-05-12 15:45:22 -0400225 if (argbuf)
226 kfree(argbuf);
227
228 return rc;
229}
230
231/**
232 * ata_task_ioctl - Handler for HDIO_DRIVE_TASK ioctl
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800233 * @scsidev: Device to which we are issuing command
Jeff Garzikb0955182005-05-12 15:45:22 -0400234 * @arg: User provided data for issuing command
235 *
236 * LOCKING:
237 * Defined by the SCSI layer. We don't really care.
238 *
239 * RETURNS:
240 * Zero on success, negative errno on error.
241 */
242int ata_task_ioctl(struct scsi_device *scsidev, void __user *arg)
243{
244 int rc = 0;
245 u8 scsi_cmd[MAX_COMMAND_SIZE];
246 u8 args[7];
Mike Christie85837eb2005-11-11 16:38:53 -0600247 struct scsi_sense_hdr sshdr;
Jeff Garzikb0955182005-05-12 15:45:22 -0400248
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500249 if (arg == NULL)
Jeff Garzikb0955182005-05-12 15:45:22 -0400250 return -EINVAL;
251
252 if (copy_from_user(args, arg, sizeof(args)))
253 return -EFAULT;
254
255 memset(scsi_cmd, 0, sizeof(scsi_cmd));
256 scsi_cmd[0] = ATA_16;
257 scsi_cmd[1] = (3 << 1); /* Non-data */
258 /* scsi_cmd[2] is already 0 -- no off.line, cc, or data xfer */
259 scsi_cmd[4] = args[1];
260 scsi_cmd[6] = args[2];
261 scsi_cmd[8] = args[3];
262 scsi_cmd[10] = args[4];
263 scsi_cmd[12] = args[5];
264 scsi_cmd[14] = args[0];
265
Jeff Garzikb0955182005-05-12 15:45:22 -0400266 /* Good values for timeout and retries? Values below
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500267 from scsi_ioctl_send_command() for default case... */
Mike Christie85837eb2005-11-11 16:38:53 -0600268 if (scsi_execute_req(scsidev, scsi_cmd, DMA_NONE, NULL, 0, &sshdr,
269 (10*HZ), 5))
Jeff Garzikb0955182005-05-12 15:45:22 -0400270 rc = -EIO;
Jeff Garzikb0955182005-05-12 15:45:22 -0400271
272 /* Need code to retrieve data from check condition? */
Jeff Garzikb0955182005-05-12 15:45:22 -0400273 return rc;
274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276int ata_scsi_ioctl(struct scsi_device *scsidev, int cmd, void __user *arg)
277{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int val = -EINVAL, rc = -EINVAL;
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 switch (cmd) {
281 case ATA_IOC_GET_IO32:
282 val = 0;
283 if (copy_to_user(arg, &val, 1))
284 return -EFAULT;
285 return 0;
286
287 case ATA_IOC_SET_IO32:
288 val = (unsigned long) arg;
289 if (val != 0)
290 return -EINVAL;
291 return 0;
292
Jeff Garzikb0955182005-05-12 15:45:22 -0400293 case HDIO_DRIVE_CMD:
294 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
295 return -EACCES;
296 return ata_cmd_ioctl(scsidev, arg);
297
298 case HDIO_DRIVE_TASK:
299 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
300 return -EACCES;
301 return ata_task_ioctl(scsidev, arg);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 default:
304 rc = -ENOTTY;
305 break;
306 }
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return rc;
309}
310
311/**
312 * ata_scsi_qc_new - acquire new ata_queued_cmd reference
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * @dev: ATA device to which the new command is attached
314 * @cmd: SCSI command that originated this ATA command
315 * @done: SCSI command completion function
316 *
317 * Obtain a reference to an unused ata_queued_cmd structure,
318 * which is the basic libata structure representing a single
319 * ATA command sent to the hardware.
320 *
321 * If a command was available, fill in the SCSI-specific
322 * portions of the structure with information on the
323 * current command.
324 *
325 * LOCKING:
326 * spin_lock_irqsave(host_set lock)
327 *
328 * RETURNS:
329 * Command allocated, or %NULL if none available.
330 */
Tejun Heo3373efd2006-05-15 20:57:53 +0900331struct ata_queued_cmd *ata_scsi_qc_new(struct ata_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 struct scsi_cmnd *cmd,
333 void (*done)(struct scsi_cmnd *))
334{
335 struct ata_queued_cmd *qc;
336
Tejun Heo3373efd2006-05-15 20:57:53 +0900337 qc = ata_qc_new_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (qc) {
339 qc->scsicmd = cmd;
340 qc->scsidone = done;
341
342 if (cmd->use_sg) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400343 qc->__sg = (struct scatterlist *) cmd->request_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 qc->n_elem = cmd->use_sg;
345 } else {
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400346 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 qc->n_elem = 1;
348 }
349 } else {
350 cmd->result = (DID_OK << 16) | (QUEUE_FULL << 1);
351 done(cmd);
352 }
353
354 return qc;
355}
356
357/**
Jeff Garzikb0955182005-05-12 15:45:22 -0400358 * ata_dump_status - user friendly display of error info
359 * @id: id of the port in question
360 * @tf: ptr to filled out taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 *
Jeff Garzikb0955182005-05-12 15:45:22 -0400362 * Decode and dump the ATA error/status registers for the user so
363 * that they have some idea what really happened at the non
364 * make-believe layer.
365 *
366 * LOCKING:
367 * inherited from caller
368 */
369void ata_dump_status(unsigned id, struct ata_taskfile *tf)
370{
371 u8 stat = tf->command, err = tf->feature;
372
373 printk(KERN_WARNING "ata%u: status=0x%02x { ", id, stat);
374 if (stat & ATA_BUSY) {
375 printk("Busy }\n"); /* Data is not valid in this case */
376 } else {
377 if (stat & 0x40) printk("DriveReady ");
378 if (stat & 0x20) printk("DeviceFault ");
379 if (stat & 0x10) printk("SeekComplete ");
380 if (stat & 0x08) printk("DataRequest ");
381 if (stat & 0x04) printk("CorrectedError ");
382 if (stat & 0x02) printk("Index ");
383 if (stat & 0x01) printk("Error ");
384 printk("}\n");
385
386 if (err) {
387 printk(KERN_WARNING "ata%u: error=0x%02x { ", id, err);
388 if (err & 0x04) printk("DriveStatusError ");
389 if (err & 0x80) {
390 if (err & 0x04) printk("BadCRC ");
391 else printk("Sector ");
392 }
393 if (err & 0x40) printk("UncorrectableError ");
394 if (err & 0x10) printk("SectorIdNotFound ");
395 if (err & 0x02) printk("TrackZeroNotFound ");
396 if (err & 0x01) printk("AddrMarkNotFound ");
397 printk("}\n");
398 }
399 }
400}
401
Jens Axboe9b847542006-01-06 09:28:07 +0100402int ata_scsi_device_resume(struct scsi_device *sdev)
403{
Jeff Garzik35bb94b2006-04-11 13:12:34 -0400404 struct ata_port *ap = ata_shost_to_port(sdev->host);
Tejun Heo31534362006-05-31 18:27:36 +0900405 struct ata_device *dev = __ata_scsi_find_dev(ap, sdev);
Jens Axboe9b847542006-01-06 09:28:07 +0100406
Tejun Heo3373efd2006-05-15 20:57:53 +0900407 return ata_device_resume(dev);
Jens Axboe9b847542006-01-06 09:28:07 +0100408}
409
Nigel Cunningham082776e2006-03-23 23:22:16 +1000410int ata_scsi_device_suspend(struct scsi_device *sdev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +0100411{
Jeff Garzik35bb94b2006-04-11 13:12:34 -0400412 struct ata_port *ap = ata_shost_to_port(sdev->host);
Tejun Heo31534362006-05-31 18:27:36 +0900413 struct ata_device *dev = __ata_scsi_find_dev(ap, sdev);
Jens Axboe9b847542006-01-06 09:28:07 +0100414
Tejun Heo3373efd2006-05-15 20:57:53 +0900415 return ata_device_suspend(dev, state);
Jens Axboe9b847542006-01-06 09:28:07 +0100416}
417
Jeff Garzikb0955182005-05-12 15:45:22 -0400418/**
419 * ata_to_sense_error - convert ATA error to SCSI error
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800420 * @id: ATA device number
Jeff Garzikb0955182005-05-12 15:45:22 -0400421 * @drv_stat: value contained in ATA status register
422 * @drv_err: value contained in ATA error register
423 * @sk: the sense key we'll fill out
424 * @asc: the additional sense code we'll fill out
425 * @ascq: the additional sense code qualifier we'll fill out
Tejun Heo246619d2006-05-15 20:58:16 +0900426 * @verbose: be verbose
Jeff Garzikb0955182005-05-12 15:45:22 -0400427 *
428 * Converts an ATA error into a SCSI error. Fill out pointers to
429 * SK, ASC, and ASCQ bytes for later use in fixed or descriptor
430 * format sense blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 *
432 * LOCKING:
433 * spin_lock_irqsave(host_set lock)
434 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500435void ata_to_sense_error(unsigned id, u8 drv_stat, u8 drv_err, u8 *sk, u8 *asc,
Tejun Heo246619d2006-05-15 20:58:16 +0900436 u8 *ascq, int verbose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Jeff Garzikb0955182005-05-12 15:45:22 -0400438 int i;
Jeff Garzikffe75ef2005-10-09 10:40:44 -0400439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* Based on the 3ware driver translation table */
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100441 static const unsigned char sense_table[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /* BBD|ECC|ID|MAR */
443 {0xd1, ABORTED_COMMAND, 0x00, 0x00}, // Device busy Aborted command
444 /* BBD|ECC|ID */
445 {0xd0, ABORTED_COMMAND, 0x00, 0x00}, // Device busy Aborted command
446 /* ECC|MC|MARK */
447 {0x61, HARDWARE_ERROR, 0x00, 0x00}, // Device fault Hardware error
448 /* ICRC|ABRT */ /* NB: ICRC & !ABRT is BBD */
449 {0x84, ABORTED_COMMAND, 0x47, 0x00}, // Data CRC error SCSI parity error
450 /* MC|ID|ABRT|TRK0|MARK */
451 {0x37, NOT_READY, 0x04, 0x00}, // Unit offline Not ready
452 /* MCR|MARK */
453 {0x09, NOT_READY, 0x04, 0x00}, // Unrecovered disk error Not ready
454 /* Bad address mark */
455 {0x01, MEDIUM_ERROR, 0x13, 0x00}, // Address mark not found Address mark not found for data field
456 /* TRK0 */
457 {0x02, HARDWARE_ERROR, 0x00, 0x00}, // Track 0 not found Hardware error
458 /* Abort & !ICRC */
459 {0x04, ABORTED_COMMAND, 0x00, 0x00}, // Aborted command Aborted command
460 /* Media change request */
461 {0x08, NOT_READY, 0x04, 0x00}, // Media change request FIXME: faking offline
462 /* SRV */
463 {0x10, ABORTED_COMMAND, 0x14, 0x00}, // ID not found Recorded entity not found
464 /* Media change */
465 {0x08, NOT_READY, 0x04, 0x00}, // Media change FIXME: faking offline
466 /* ECC */
467 {0x40, MEDIUM_ERROR, 0x11, 0x04}, // Uncorrectable ECC error Unrecovered read error
468 /* BBD - block marked bad */
469 {0x80, MEDIUM_ERROR, 0x11, 0x04}, // Block marked bad Medium error, unrecovered read error
470 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
471 };
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100472 static const unsigned char stat_table[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* Must be first because BUSY means no other bits valid */
474 {0x80, ABORTED_COMMAND, 0x47, 0x00}, // Busy, fake parity for now
475 {0x20, HARDWARE_ERROR, 0x00, 0x00}, // Device fault
476 {0x08, ABORTED_COMMAND, 0x47, 0x00}, // Timed out in xfer, fake parity for now
477 {0x04, RECOVERED_ERROR, 0x11, 0x00}, // Recovered ECC error Medium error, recovered
478 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
479 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /*
482 * Is this an error we can process/parse
483 */
Jeff Garzikb0955182005-05-12 15:45:22 -0400484 if (drv_stat & ATA_BUSY) {
485 drv_err = 0; /* Ignore the err bits, they're invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Jeff Garzikb0955182005-05-12 15:45:22 -0400488 if (drv_err) {
489 /* Look for drv_err */
490 for (i = 0; sense_table[i][0] != 0xFF; i++) {
491 /* Look for best matches first */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500492 if ((sense_table[i][0] & drv_err) ==
Jeff Garzikb0955182005-05-12 15:45:22 -0400493 sense_table[i][0]) {
494 *sk = sense_table[i][1];
495 *asc = sense_table[i][2];
496 *ascq = sense_table[i][3];
497 goto translate_done;
498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400500 /* No immediate match */
Tejun Heo246619d2006-05-15 20:58:16 +0900501 if (verbose)
502 printk(KERN_WARNING "ata%u: no sense translation for "
503 "error 0x%02x\n", id, drv_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* Fall back to interpreting status bits */
Jeff Garzikb0955182005-05-12 15:45:22 -0400507 for (i = 0; stat_table[i][0] != 0xFF; i++) {
508 if (stat_table[i][0] & drv_stat) {
509 *sk = stat_table[i][1];
510 *asc = stat_table[i][2];
511 *ascq = stat_table[i][3];
512 goto translate_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400515 /* No error? Undecoded? */
Tejun Heo246619d2006-05-15 20:58:16 +0900516 if (verbose)
517 printk(KERN_WARNING "ata%u: no sense translation for "
518 "status: 0x%02x\n", id, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Alan Cox2d202022006-03-21 15:53:46 +0000520 /* We need a sensible error return here, which is tricky, and one
521 that won't cause people to do things like return a disk wrongly */
522 *sk = ABORTED_COMMAND;
523 *asc = 0x00;
524 *ascq = 0x00;
Jeff Garzikb0955182005-05-12 15:45:22 -0400525
526 translate_done:
Tejun Heo246619d2006-05-15 20:58:16 +0900527 if (verbose)
528 printk(KERN_ERR "ata%u: translated ATA stat/err 0x%02x/%02x "
529 "to SCSI SK/ASC/ASCQ 0x%x/%02x/%02x\n",
530 id, drv_stat, drv_err, *sk, *asc, *ascq);
Jeff Garzikb0955182005-05-12 15:45:22 -0400531 return;
532}
533
534/*
535 * ata_gen_ata_desc_sense - Generate check condition sense block.
536 * @qc: Command that completed.
537 *
538 * This function is specific to the ATA descriptor format sense
539 * block specified for the ATA pass through commands. Regardless
540 * of whether the command errored or not, return a sense
541 * block. Copy all controller registers into the sense
542 * block. Clear sense key, ASC & ASCQ if there is no error.
543 *
544 * LOCKING:
545 * spin_lock_irqsave(host_set lock)
546 */
547void ata_gen_ata_desc_sense(struct ata_queued_cmd *qc)
548{
549 struct scsi_cmnd *cmd = qc->scsicmd;
Tejun Heoe61e0672006-05-15 20:57:40 +0900550 struct ata_taskfile *tf = &qc->result_tf;
Jeff Garzikb0955182005-05-12 15:45:22 -0400551 unsigned char *sb = cmd->sense_buffer;
552 unsigned char *desc = sb + 8;
Tejun Heo246619d2006-05-15 20:58:16 +0900553 int verbose = qc->ap->ops->error_handler == NULL;
Jeff Garzikb0955182005-05-12 15:45:22 -0400554
555 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
556
Jeff Garzik0e5dec42005-10-06 09:40:20 -0400557 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
Jeff Garzikb0955182005-05-12 15:45:22 -0400558
559 /*
Jeff Garzikb0955182005-05-12 15:45:22 -0400560 * Use ata_to_sense_error() to map status register bits
561 * onto sense key, asc & ascq.
562 */
Tejun Heo058e55e2006-04-02 18:51:53 +0900563 if (qc->err_mask ||
564 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400565 ata_to_sense_error(qc->ap->id, tf->command, tf->feature,
Tejun Heo246619d2006-05-15 20:58:16 +0900566 &sb[1], &sb[2], &sb[3], verbose);
Jeff Garzikb0955182005-05-12 15:45:22 -0400567 sb[1] &= 0x0f;
568 }
569
570 /*
571 * Sense data is current and format is descriptor.
572 */
573 sb[0] = 0x72;
574
575 desc[0] = 0x09;
576
577 /*
578 * Set length of additional sense data.
579 * Since we only populate descriptor 0, the total
580 * length is the same (fixed) length as descriptor 0.
581 */
582 desc[1] = sb[7] = 14;
583
584 /*
585 * Copy registers into sense buffer.
586 */
587 desc[2] = 0x00;
588 desc[3] = tf->feature; /* == error reg */
589 desc[5] = tf->nsect;
590 desc[7] = tf->lbal;
591 desc[9] = tf->lbam;
592 desc[11] = tf->lbah;
593 desc[12] = tf->device;
594 desc[13] = tf->command; /* == status reg */
595
596 /*
597 * Fill in Extend bit, and the high order bytes
598 * if applicable.
599 */
600 if (tf->flags & ATA_TFLAG_LBA48) {
601 desc[2] |= 0x01;
602 desc[4] = tf->hob_nsect;
603 desc[6] = tf->hob_lbal;
604 desc[8] = tf->hob_lbam;
605 desc[10] = tf->hob_lbah;
606 }
607}
608
609/**
610 * ata_gen_fixed_sense - generate a SCSI fixed sense block
611 * @qc: Command that we are erroring out
612 *
613 * Leverage ata_to_sense_error() to give us the codes. Fit our
614 * LBA in here if there's room.
615 *
616 * LOCKING:
617 * inherited from caller
618 */
619void ata_gen_fixed_sense(struct ata_queued_cmd *qc)
620{
621 struct scsi_cmnd *cmd = qc->scsicmd;
Tejun Heoe61e0672006-05-15 20:57:40 +0900622 struct ata_taskfile *tf = &qc->result_tf;
Jeff Garzikb0955182005-05-12 15:45:22 -0400623 unsigned char *sb = cmd->sense_buffer;
Tejun Heo246619d2006-05-15 20:58:16 +0900624 int verbose = qc->ap->ops->error_handler == NULL;
Jeff Garzikb0955182005-05-12 15:45:22 -0400625
626 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
627
Jeff Garzik0e5dec42005-10-06 09:40:20 -0400628 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
Jeff Garzikb0955182005-05-12 15:45:22 -0400629
630 /*
Jeff Garzikb0955182005-05-12 15:45:22 -0400631 * Use ata_to_sense_error() to map status register bits
632 * onto sense key, asc & ascq.
633 */
Tejun Heo058e55e2006-04-02 18:51:53 +0900634 if (qc->err_mask ||
635 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400636 ata_to_sense_error(qc->ap->id, tf->command, tf->feature,
Tejun Heo246619d2006-05-15 20:58:16 +0900637 &sb[2], &sb[12], &sb[13], verbose);
Jeff Garzikb0955182005-05-12 15:45:22 -0400638 sb[2] &= 0x0f;
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 sb[0] = 0x70;
Jeff Garzikb0955182005-05-12 15:45:22 -0400642 sb[7] = 0x0a;
Jeff Garzik0274aa22005-06-22 13:50:56 -0400643
Jeff Garzika7dac442005-10-30 04:44:42 -0500644 if (tf->flags & ATA_TFLAG_LBA48) {
645 /* TODO: find solution for LBA48 descriptors */
646 }
647
648 else if (tf->flags & ATA_TFLAG_LBA) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400649 /* A small (28b) LBA will fit in the 32b info field */
650 sb[0] |= 0x80; /* set valid bit */
651 sb[3] = tf->device & 0x0f;
652 sb[4] = tf->lbah;
653 sb[5] = tf->lbam;
654 sb[6] = tf->lbal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Jeff Garzika7dac442005-10-30 04:44:42 -0500656
657 else {
658 /* TODO: C/H/S */
659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Brian Kinga6cce2a2006-03-17 17:04:15 -0600662static void ata_scsi_sdev_config(struct scsi_device *sdev)
663{
664 sdev->use_10_for_rw = 1;
665 sdev->use_10_for_ms = 1;
666}
667
668static void ata_scsi_dev_config(struct scsi_device *sdev,
669 struct ata_device *dev)
670{
671 unsigned int max_sectors;
672
673 /* TODO: 2048 is an arbitrary number, not the
674 * hardware maximum. This should be increased to
675 * 65534 when Jens Axboe's patch for dynamically
676 * determining max_sectors is merged.
677 */
678 max_sectors = ATA_MAX_SECTORS;
679 if (dev->flags & ATA_DFLAG_LBA48)
Tejun Heo200d5a72006-02-15 16:24:49 +0900680 max_sectors = ATA_MAX_SECTORS_LBA48;
Brian Kinga6cce2a2006-03-17 17:04:15 -0600681 if (dev->max_sectors)
682 max_sectors = dev->max_sectors;
683
684 blk_queue_max_sectors(sdev->request_queue, max_sectors);
685
686 /*
687 * SATA DMA transfers must be multiples of 4 byte, so
688 * we need to pad ATAPI transfers using an extra sg.
689 * Decrement max hw segments accordingly.
690 */
691 if (dev->class == ATA_DEV_ATAPI) {
692 request_queue_t *q = sdev->request_queue;
693 blk_queue_max_hw_segments(q, q->max_hw_segments - 1);
694 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +0900695
696 if (dev->flags & ATA_DFLAG_NCQ) {
697 int depth;
698
699 depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id));
700 depth = min(ATA_MAX_QUEUE - 1, depth);
701 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, depth);
702 }
Brian Kinga6cce2a2006-03-17 17:04:15 -0600703}
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/**
706 * ata_scsi_slave_config - Set SCSI device attributes
707 * @sdev: SCSI device to examine
708 *
709 * This is called before we actually start reading
710 * and writing to the device, to configure certain
711 * SCSI mid-layer behaviors.
712 *
713 * LOCKING:
714 * Defined by SCSI layer. We don't really care.
715 */
716
717int ata_scsi_slave_config(struct scsi_device *sdev)
718{
Tejun Heo31534362006-05-31 18:27:36 +0900719 struct ata_port *ap = ata_shost_to_port(sdev->host);
720 struct ata_device *dev = __ata_scsi_find_dev(ap, sdev);
721
Brian Kinga6cce2a2006-03-17 17:04:15 -0600722 ata_scsi_sdev_config(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 blk_queue_max_phys_segments(sdev->request_queue, LIBATA_MAX_PRD);
725
Tejun Heo31534362006-05-31 18:27:36 +0900726 if (dev)
Brian Kinga6cce2a2006-03-17 17:04:15 -0600727 ata_scsi_dev_config(sdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 return 0; /* scsi layer doesn't check return value, sigh */
730}
731
732/**
Tejun Heo83c47bc2006-05-31 18:28:07 +0900733 * ata_scsi_slave_destroy - SCSI device is about to be destroyed
734 * @sdev: SCSI device to be destroyed
735 *
736 * @sdev is about to be destroyed for hot/warm unplugging. If
737 * this unplugging was initiated by libata as indicated by NULL
738 * dev->sdev, this function doesn't have to do anything.
739 * Otherwise, SCSI layer initiated warm-unplug is in progress.
740 * Clear dev->sdev, schedule the device for ATA detach and invoke
741 * EH.
742 *
743 * LOCKING:
744 * Defined by SCSI layer. We don't really care.
745 */
746void ata_scsi_slave_destroy(struct scsi_device *sdev)
747{
748 struct ata_port *ap = ata_shost_to_port(sdev->host);
749 unsigned long flags;
750 struct ata_device *dev;
751
752 if (!ap->ops->error_handler)
753 return;
754
755 spin_lock_irqsave(&ap->host_set->lock, flags);
756 dev = __ata_scsi_find_dev(ap, sdev);
757 if (dev && dev->sdev) {
758 /* SCSI device already in CANCEL state, no need to offline it */
759 dev->sdev = NULL;
760 dev->flags |= ATA_DFLAG_DETACH;
761 ata_port_schedule_eh(ap);
762 }
763 spin_unlock_irqrestore(&ap->host_set->lock, flags);
764}
765
766/**
Tejun Heoa6e6ce82006-05-15 21:03:48 +0900767 * ata_scsi_change_queue_depth - SCSI callback for queue depth config
768 * @sdev: SCSI device to configure queue depth for
769 * @queue_depth: new queue depth
770 *
771 * This is libata standard hostt->change_queue_depth callback.
772 * SCSI will call into this callback when user tries to set queue
773 * depth via sysfs.
774 *
775 * LOCKING:
776 * SCSI layer (we don't care)
777 *
778 * RETURNS:
779 * Newly configured queue depth.
780 */
781int ata_scsi_change_queue_depth(struct scsi_device *sdev, int queue_depth)
782{
783 struct ata_port *ap = ata_shost_to_port(sdev->host);
784 struct ata_device *dev;
785 int max_depth;
786
787 if (queue_depth < 1)
788 return sdev->queue_depth;
789
790 dev = ata_scsi_find_dev(ap, sdev);
791 if (!dev || !ata_dev_enabled(dev))
792 return sdev->queue_depth;
793
794 max_depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id));
795 max_depth = min(ATA_MAX_QUEUE - 1, max_depth);
796 if (queue_depth > max_depth)
797 queue_depth = max_depth;
798
799 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, queue_depth);
800 return queue_depth;
801}
802
803/**
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400804 * ata_scsi_start_stop_xlat - Translate SCSI START STOP UNIT command
805 * @qc: Storage for translated ATA taskfile
806 * @scsicmd: SCSI command to translate
807 *
808 * Sets up an ATA taskfile to issue STANDBY (to stop) or READ VERIFY
809 * (to start). Perhaps these commands should be preceded by
810 * CHECK POWER MODE to see what power mode the device is already in.
811 * [See SAT revision 5 at www.t10.org]
812 *
813 * LOCKING:
814 * spin_lock_irqsave(host_set lock)
815 *
816 * RETURNS:
817 * Zero on success, non-zero on error.
818 */
819
820static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc,
Jeff Garzik057ace52005-10-22 14:27:05 -0400821 const u8 *scsicmd)
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400822{
823 struct ata_taskfile *tf = &qc->tf;
824
825 tf->flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
826 tf->protocol = ATA_PROT_NODATA;
827 if (scsicmd[1] & 0x1) {
828 ; /* ignore IMMED bit, violates sat-r05 */
829 }
830 if (scsicmd[4] & 0x2)
Douglas Gilbertae006512005-10-09 09:09:35 -0400831 goto invalid_fld; /* LOEJ bit set not supported */
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400832 if (((scsicmd[4] >> 4) & 0xf) != 0)
Douglas Gilbertae006512005-10-09 09:09:35 -0400833 goto invalid_fld; /* power conditions not supported */
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400834 if (scsicmd[4] & 0x1) {
835 tf->nsect = 1; /* 1 sector, lba=0 */
Albert Lee9d5b1302005-10-04 08:48:17 -0400836
837 if (qc->dev->flags & ATA_DFLAG_LBA) {
Tejun Heoc44078c2006-05-15 20:57:21 +0900838 tf->flags |= ATA_TFLAG_LBA;
Albert Lee9d5b1302005-10-04 08:48:17 -0400839
840 tf->lbah = 0x0;
841 tf->lbam = 0x0;
842 tf->lbal = 0x0;
843 tf->device |= ATA_LBA;
844 } else {
845 /* CHS */
846 tf->lbal = 0x1; /* sect */
847 tf->lbam = 0x0; /* cyl low */
848 tf->lbah = 0x0; /* cyl high */
849 }
850
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400851 tf->command = ATA_CMD_VERIFY; /* READ VERIFY */
852 } else {
853 tf->nsect = 0; /* time period value (0 implies now) */
854 tf->command = ATA_CMD_STANDBY;
855 /* Consider: ATA STANDBY IMMEDIATE command */
856 }
857 /*
858 * Standby and Idle condition timers could be implemented but that
859 * would require libata to implement the Power condition mode page
860 * and allow the user to change it. Changing mode pages requires
861 * MODE SELECT to be implemented.
862 */
863
864 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -0400865
866invalid_fld:
867 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x24, 0x0);
868 /* "Invalid field in cbd" */
869 return 1;
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400870}
871
872
873/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 * ata_scsi_flush_xlat - Translate SCSI SYNCHRONIZE CACHE command
875 * @qc: Storage for translated ATA taskfile
876 * @scsicmd: SCSI command to translate (ignored)
877 *
878 * Sets up an ATA taskfile to issue FLUSH CACHE or
879 * FLUSH CACHE EXT.
880 *
881 * LOCKING:
882 * spin_lock_irqsave(host_set lock)
883 *
884 * RETURNS:
885 * Zero on success, non-zero on error.
886 */
887
Jeff Garzik057ace52005-10-22 14:27:05 -0400888static unsigned int ata_scsi_flush_xlat(struct ata_queued_cmd *qc, const u8 *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 struct ata_taskfile *tf = &qc->tf;
891
892 tf->flags |= ATA_TFLAG_DEVICE;
893 tf->protocol = ATA_PROT_NODATA;
894
Albert Lee07506692005-10-12 15:04:18 +0800895 if ((qc->dev->flags & ATA_DFLAG_LBA48) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 (ata_id_has_flush_ext(qc->dev->id)))
897 tf->command = ATA_CMD_FLUSH_EXT;
898 else
899 tf->command = ATA_CMD_FLUSH;
900
901 return 0;
902}
903
904/**
Albert Lee3aef5232005-10-04 08:47:43 -0400905 * scsi_6_lba_len - Get LBA and transfer length
906 * @scsicmd: SCSI command to translate
907 *
908 * Calculate LBA and transfer length for 6-byte commands.
909 *
910 * RETURNS:
911 * @plba: the LBA
912 * @plen: the transfer length
913 */
914
Jeff Garzik057ace52005-10-22 14:27:05 -0400915static void scsi_6_lba_len(const u8 *scsicmd, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -0400916{
917 u64 lba = 0;
918 u32 len = 0;
919
920 VPRINTK("six-byte command\n");
921
922 lba |= ((u64)scsicmd[2]) << 8;
923 lba |= ((u64)scsicmd[3]);
924
925 len |= ((u32)scsicmd[4]);
926
927 *plba = lba;
928 *plen = len;
929}
930
931/**
932 * scsi_10_lba_len - Get LBA and transfer length
933 * @scsicmd: SCSI command to translate
934 *
935 * Calculate LBA and transfer length for 10-byte commands.
936 *
937 * RETURNS:
938 * @plba: the LBA
939 * @plen: the transfer length
940 */
941
Jeff Garzik057ace52005-10-22 14:27:05 -0400942static void scsi_10_lba_len(const u8 *scsicmd, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -0400943{
944 u64 lba = 0;
945 u32 len = 0;
946
947 VPRINTK("ten-byte command\n");
948
949 lba |= ((u64)scsicmd[2]) << 24;
950 lba |= ((u64)scsicmd[3]) << 16;
951 lba |= ((u64)scsicmd[4]) << 8;
952 lba |= ((u64)scsicmd[5]);
953
954 len |= ((u32)scsicmd[7]) << 8;
955 len |= ((u32)scsicmd[8]);
956
957 *plba = lba;
958 *plen = len;
959}
960
961/**
962 * scsi_16_lba_len - Get LBA and transfer length
963 * @scsicmd: SCSI command to translate
964 *
965 * Calculate LBA and transfer length for 16-byte commands.
966 *
967 * RETURNS:
968 * @plba: the LBA
969 * @plen: the transfer length
970 */
971
Jeff Garzik057ace52005-10-22 14:27:05 -0400972static void scsi_16_lba_len(const u8 *scsicmd, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -0400973{
974 u64 lba = 0;
975 u32 len = 0;
976
977 VPRINTK("sixteen-byte command\n");
978
979 lba |= ((u64)scsicmd[2]) << 56;
980 lba |= ((u64)scsicmd[3]) << 48;
981 lba |= ((u64)scsicmd[4]) << 40;
982 lba |= ((u64)scsicmd[5]) << 32;
983 lba |= ((u64)scsicmd[6]) << 24;
984 lba |= ((u64)scsicmd[7]) << 16;
985 lba |= ((u64)scsicmd[8]) << 8;
986 lba |= ((u64)scsicmd[9]);
987
988 len |= ((u32)scsicmd[10]) << 24;
989 len |= ((u32)scsicmd[11]) << 16;
990 len |= ((u32)scsicmd[12]) << 8;
991 len |= ((u32)scsicmd[13]);
992
993 *plba = lba;
994 *plen = len;
995}
996
997/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 * ata_scsi_verify_xlat - Translate SCSI VERIFY command into an ATA one
999 * @qc: Storage for translated ATA taskfile
1000 * @scsicmd: SCSI command to translate
1001 *
1002 * Converts SCSI VERIFY command to an ATA READ VERIFY command.
1003 *
1004 * LOCKING:
1005 * spin_lock_irqsave(host_set lock)
1006 *
1007 * RETURNS:
1008 * Zero on success, non-zero on error.
1009 */
1010
Jeff Garzik057ace52005-10-22 14:27:05 -04001011static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc, const u8 *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 struct ata_taskfile *tf = &qc->tf;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001014 struct ata_device *dev = qc->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 u64 dev_sectors = qc->dev->n_sectors;
Albert Lee3aef5232005-10-04 08:47:43 -04001016 u64 block;
1017 u32 n_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1020 tf->protocol = ATA_PROT_NODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Albert Lee3aef5232005-10-04 08:47:43 -04001022 if (scsicmd[0] == VERIFY)
1023 scsi_10_lba_len(scsicmd, &block, &n_block);
1024 else if (scsicmd[0] == VERIFY_16)
1025 scsi_16_lba_len(scsicmd, &block, &n_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 else
Douglas Gilbertae006512005-10-09 09:09:35 -04001027 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Albert Lee8bf62ec2005-05-12 15:29:42 -04001029 if (!n_block)
Douglas Gilbertae006512005-10-09 09:09:35 -04001030 goto nothing_to_do;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001031 if (block >= dev_sectors)
Douglas Gilbertae006512005-10-09 09:09:35 -04001032 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001033 if ((block + n_block) > dev_sectors)
Douglas Gilbertae006512005-10-09 09:09:35 -04001034 goto out_of_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Albert Lee07506692005-10-12 15:04:18 +08001036 if (dev->flags & ATA_DFLAG_LBA) {
1037 tf->flags |= ATA_TFLAG_LBA;
1038
Albert Leec6a33e22005-10-12 15:12:26 +08001039 if (lba_28_ok(block, n_block)) {
1040 /* use LBA28 */
1041 tf->command = ATA_CMD_VERIFY;
1042 tf->device |= (block >> 24) & 0xf;
1043 } else if (lba_48_ok(block, n_block)) {
1044 if (!(dev->flags & ATA_DFLAG_LBA48))
1045 goto out_of_range;
Albert Lee07506692005-10-12 15:04:18 +08001046
1047 /* use LBA48 */
1048 tf->flags |= ATA_TFLAG_LBA48;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001049 tf->command = ATA_CMD_VERIFY_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Albert Lee8bf62ec2005-05-12 15:29:42 -04001051 tf->hob_nsect = (n_block >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Albert Lee8bf62ec2005-05-12 15:29:42 -04001053 tf->hob_lbah = (block >> 40) & 0xff;
1054 tf->hob_lbam = (block >> 32) & 0xff;
1055 tf->hob_lbal = (block >> 24) & 0xff;
Albert Leec6a33e22005-10-12 15:12:26 +08001056 } else
1057 /* request too large even for LBA48 */
1058 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001059
1060 tf->nsect = n_block & 0xff;
1061
1062 tf->lbah = (block >> 16) & 0xff;
1063 tf->lbam = (block >> 8) & 0xff;
1064 tf->lbal = block & 0xff;
1065
1066 tf->device |= ATA_LBA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001068 /* CHS */
1069 u32 sect, head, cyl, track;
1070
Albert Leec6a33e22005-10-12 15:12:26 +08001071 if (!lba_28_ok(block, n_block))
1072 goto out_of_range;
Albert Lee07506692005-10-12 15:04:18 +08001073
Albert Lee8bf62ec2005-05-12 15:29:42 -04001074 /* Convert LBA to CHS */
1075 track = (u32)block / dev->sectors;
1076 cyl = track / dev->heads;
1077 head = track % dev->heads;
1078 sect = (u32)block % dev->sectors + 1;
1079
Albert Leec187c4b2005-10-04 08:46:51 -04001080 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
1081 (u32)block, track, cyl, head, sect);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001082
1083 /* Check whether the converted CHS can fit.
1084 Cylinder: 0-65535
Albert Lee8bf62ec2005-05-12 15:29:42 -04001085 Head: 0-15
1086 Sector: 1-255*/
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001087 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
Douglas Gilbertae006512005-10-09 09:09:35 -04001088 goto out_of_range;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 tf->command = ATA_CMD_VERIFY;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001091 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
1092 tf->lbal = sect;
1093 tf->lbam = cyl;
1094 tf->lbah = cyl >> 8;
1095 tf->device |= head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001099
1100invalid_fld:
1101 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x24, 0x0);
1102 /* "Invalid field in cbd" */
1103 return 1;
1104
1105out_of_range:
1106 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x21, 0x0);
1107 /* "Logical Block Address out of range" */
1108 return 1;
1109
1110nothing_to_do:
1111 qc->scsicmd->result = SAM_STAT_GOOD;
1112 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
1115/**
1116 * ata_scsi_rw_xlat - Translate SCSI r/w command into an ATA one
1117 * @qc: Storage for translated ATA taskfile
1118 * @scsicmd: SCSI command to translate
1119 *
1120 * Converts any of six SCSI read/write commands into the
1121 * ATA counterpart, including starting sector (LBA),
1122 * sector count, and taking into account the device's LBA48
1123 * support.
1124 *
1125 * Commands %READ_6, %READ_10, %READ_16, %WRITE_6, %WRITE_10, and
1126 * %WRITE_16 are currently supported.
1127 *
1128 * LOCKING:
1129 * spin_lock_irqsave(host_set lock)
1130 *
1131 * RETURNS:
1132 * Zero on success, non-zero on error.
1133 */
1134
Jeff Garzik057ace52005-10-22 14:27:05 -04001135static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc, const u8 *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
1137 struct ata_taskfile *tf = &qc->tf;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001138 struct ata_device *dev = qc->dev;
Albert Lee3aef5232005-10-04 08:47:43 -04001139 u64 block;
1140 u32 n_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Tejun Heo27197362006-04-02 18:51:53 +09001142 qc->flags |= ATA_QCFLAG_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Albert Lee8cbd6df2005-10-12 15:06:27 +08001145 if (scsicmd[0] == WRITE_10 || scsicmd[0] == WRITE_6 ||
1146 scsicmd[0] == WRITE_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 tf->flags |= ATA_TFLAG_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001149 /* Calculate the SCSI LBA, transfer length and FUA. */
Albert Lee3aef5232005-10-04 08:47:43 -04001150 switch (scsicmd[0]) {
1151 case READ_10:
1152 case WRITE_10:
1153 scsi_10_lba_len(scsicmd, &block, &n_block);
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001154 if (unlikely(scsicmd[1] & (1 << 3)))
1155 tf->flags |= ATA_TFLAG_FUA;
Albert Lee3aef5232005-10-04 08:47:43 -04001156 break;
1157 case READ_6:
1158 case WRITE_6:
1159 scsi_6_lba_len(scsicmd, &block, &n_block);
Albert Leec187c4b2005-10-04 08:46:51 -04001160
1161 /* for 6-byte r/w commands, transfer length 0
1162 * means 256 blocks of data, not 0 block.
1163 */
Jeff Garzik76b2bf92005-08-29 19:24:43 -04001164 if (!n_block)
1165 n_block = 256;
Albert Lee3aef5232005-10-04 08:47:43 -04001166 break;
1167 case READ_16:
1168 case WRITE_16:
1169 scsi_16_lba_len(scsicmd, &block, &n_block);
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001170 if (unlikely(scsicmd[1] & (1 << 3)))
1171 tf->flags |= ATA_TFLAG_FUA;
Albert Lee3aef5232005-10-04 08:47:43 -04001172 break;
1173 default:
Albert Lee8bf62ec2005-05-12 15:29:42 -04001174 DPRINTK("no-byte command\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04001175 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
Albert Lee8bf62ec2005-05-12 15:29:42 -04001178 /* Check and compose ATA command */
1179 if (!n_block)
Albert Leec187c4b2005-10-04 08:46:51 -04001180 /* For 10-byte and 16-byte SCSI R/W commands, transfer
1181 * length 0 means transfer 0 block of data.
1182 * However, for ATA R/W commands, sector count 0 means
1183 * 256 or 65536 sectors, not 0 sectors as in SCSI.
Alan Coxf51750d2005-11-07 17:06:33 +00001184 *
1185 * WARNING: one or two older ATA drives treat 0 as 0...
Albert Leec187c4b2005-10-04 08:46:51 -04001186 */
Douglas Gilbertae006512005-10-09 09:09:35 -04001187 goto nothing_to_do;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001188
Tejun Heo3dc1d882006-05-15 21:03:45 +09001189 if ((dev->flags & (ATA_DFLAG_PIO | ATA_DFLAG_NCQ)) == ATA_DFLAG_NCQ) {
1190 /* yay, NCQ */
1191 if (!lba_48_ok(block, n_block))
1192 goto out_of_range;
1193
1194 tf->protocol = ATA_PROT_NCQ;
1195 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
1196
1197 if (tf->flags & ATA_TFLAG_WRITE)
1198 tf->command = ATA_CMD_FPDMA_WRITE;
1199 else
1200 tf->command = ATA_CMD_FPDMA_READ;
1201
1202 qc->nsect = n_block;
1203
1204 tf->nsect = qc->tag << 3;
1205 tf->hob_feature = (n_block >> 8) & 0xff;
1206 tf->feature = n_block & 0xff;
1207
1208 tf->hob_lbah = (block >> 40) & 0xff;
1209 tf->hob_lbam = (block >> 32) & 0xff;
1210 tf->hob_lbal = (block >> 24) & 0xff;
1211 tf->lbah = (block >> 16) & 0xff;
1212 tf->lbam = (block >> 8) & 0xff;
1213 tf->lbal = block & 0xff;
1214
1215 tf->device = 1 << 6;
1216 if (tf->flags & ATA_TFLAG_FUA)
1217 tf->device |= 1 << 7;
1218 } else if (dev->flags & ATA_DFLAG_LBA) {
Albert Lee07506692005-10-12 15:04:18 +08001219 tf->flags |= ATA_TFLAG_LBA;
1220
Albert Leec6a33e22005-10-12 15:12:26 +08001221 if (lba_28_ok(block, n_block)) {
1222 /* use LBA28 */
1223 tf->device |= (block >> 24) & 0xf;
1224 } else if (lba_48_ok(block, n_block)) {
1225 if (!(dev->flags & ATA_DFLAG_LBA48))
Douglas Gilbertae006512005-10-09 09:09:35 -04001226 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001227
Albert Lee07506692005-10-12 15:04:18 +08001228 /* use LBA48 */
1229 tf->flags |= ATA_TFLAG_LBA48;
1230
Albert Lee8bf62ec2005-05-12 15:29:42 -04001231 tf->hob_nsect = (n_block >> 8) & 0xff;
1232
1233 tf->hob_lbah = (block >> 40) & 0xff;
1234 tf->hob_lbam = (block >> 32) & 0xff;
1235 tf->hob_lbal = (block >> 24) & 0xff;
Albert Leec6a33e22005-10-12 15:12:26 +08001236 } else
1237 /* request too large even for LBA48 */
1238 goto out_of_range;
Albert Leec187c4b2005-10-04 08:46:51 -04001239
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001240 if (unlikely(ata_rwcmd_protocol(qc) < 0))
1241 goto invalid_fld;
Albert Lee8cbd6df2005-10-12 15:06:27 +08001242
Albert Lee8bf62ec2005-05-12 15:29:42 -04001243 qc->nsect = n_block;
1244 tf->nsect = n_block & 0xff;
1245
1246 tf->lbah = (block >> 16) & 0xff;
1247 tf->lbam = (block >> 8) & 0xff;
1248 tf->lbal = block & 0xff;
1249
1250 tf->device |= ATA_LBA;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001251 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001252 /* CHS */
1253 u32 sect, head, cyl, track;
1254
1255 /* The request -may- be too large for CHS addressing. */
Albert Leec6a33e22005-10-12 15:12:26 +08001256 if (!lba_28_ok(block, n_block))
Douglas Gilbertae006512005-10-09 09:09:35 -04001257 goto out_of_range;
Albert Leec187c4b2005-10-04 08:46:51 -04001258
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001259 if (unlikely(ata_rwcmd_protocol(qc) < 0))
1260 goto invalid_fld;
Albert Lee8cbd6df2005-10-12 15:06:27 +08001261
Albert Lee8bf62ec2005-05-12 15:29:42 -04001262 /* Convert LBA to CHS */
1263 track = (u32)block / dev->sectors;
1264 cyl = track / dev->heads;
1265 head = track % dev->heads;
1266 sect = (u32)block % dev->sectors + 1;
1267
Albert Leec187c4b2005-10-04 08:46:51 -04001268 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
Albert Lee8bf62ec2005-05-12 15:29:42 -04001269 (u32)block, track, cyl, head, sect);
Albert Leec187c4b2005-10-04 08:46:51 -04001270
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001271 /* Check whether the converted CHS can fit.
1272 Cylinder: 0-65535
Albert Lee8bf62ec2005-05-12 15:29:42 -04001273 Head: 0-15
1274 Sector: 1-255*/
Albert Leec187c4b2005-10-04 08:46:51 -04001275 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
Douglas Gilbertae006512005-10-09 09:09:35 -04001276 goto out_of_range;
Albert Leec187c4b2005-10-04 08:46:51 -04001277
Albert Lee8bf62ec2005-05-12 15:29:42 -04001278 qc->nsect = n_block;
1279 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
1280 tf->lbal = sect;
1281 tf->lbam = cyl;
1282 tf->lbah = cyl >> 8;
1283 tf->device |= head;
1284 }
1285
1286 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001287
1288invalid_fld:
1289 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x24, 0x0);
1290 /* "Invalid field in cbd" */
1291 return 1;
1292
1293out_of_range:
1294 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x21, 0x0);
1295 /* "Logical Block Address out of range" */
1296 return 1;
1297
1298nothing_to_do:
1299 qc->scsicmd->result = SAM_STAT_GOOD;
1300 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
Tejun Heo77853bf2006-01-23 13:09:36 +09001303static void ata_scsi_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 struct scsi_cmnd *cmd = qc->scsicmd;
Jeff Garzika7dac442005-10-30 04:44:42 -05001306 u8 *cdb = cmd->cmnd;
Albert Leea22e2eb2005-12-05 15:38:02 +08001307 int need_sense = (qc->err_mask != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
zhao, forrest3057ac32006-06-12 12:01:34 +08001309 /* We snoop the SET_FEATURES - Write Cache ON/OFF command, and
1310 * schedule EH_REVALIDATE operation to update the IDENTIFY DEVICE
1311 * cache
1312 */
1313 if (!need_sense && (qc->tf.command == ATA_CMD_SET_FEATURES) &&
1314 ((qc->tf.feature == SETFEATURES_WC_ON) ||
1315 (qc->tf.feature == SETFEATURES_WC_OFF))) {
1316 qc->ap->eh_info.action |= ATA_EH_REVALIDATE;
1317 ata_port_schedule_eh(qc->ap);
1318 }
1319
Jeff Garzikb0955182005-05-12 15:45:22 -04001320 /* For ATA pass thru (SAT) commands, generate a sense block if
1321 * user mandated it or if there's an error. Note that if we
1322 * generate because the user forced us to, a check condition
1323 * is generated and the ATA register values are returned
1324 * whether the command completed successfully or not. If there
1325 * was no error, SK, ASC and ASCQ will all be zero.
1326 */
Jeff Garzika7dac442005-10-30 04:44:42 -05001327 if (((cdb[0] == ATA_16) || (cdb[0] == ATA_12)) &&
1328 ((cdb[2] & 0x20) || need_sense)) {
Jeff Garzikb0955182005-05-12 15:45:22 -04001329 ata_gen_ata_desc_sense(qc);
1330 } else {
1331 if (!need_sense) {
1332 cmd->result = SAM_STAT_GOOD;
1333 } else {
1334 /* TODO: decide which descriptor format to use
1335 * for 48b LBA devices and call that here
1336 * instead of the fixed desc, which is only
1337 * good for smaller LBA (and maybe CHS?)
1338 * devices.
1339 */
1340 ata_gen_fixed_sense(qc);
1341 }
1342 }
1343
Tejun Heo246619d2006-05-15 20:58:16 +09001344 if (need_sense && !qc->ap->ops->error_handler)
Tejun Heoe61e0672006-05-15 20:57:40 +09001345 ata_dump_status(qc->ap->id, &qc->result_tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 qc->scsidone(cmd);
1348
Tejun Heo77853bf2006-01-23 13:09:36 +09001349 ata_qc_free(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352/**
Tejun Heo3dc1d882006-05-15 21:03:45 +09001353 * ata_scmd_need_defer - Check whether we need to defer scmd
1354 * @dev: ATA device to which the command is addressed
1355 * @is_io: Is the command IO (and thus possibly NCQ)?
1356 *
1357 * NCQ and non-NCQ commands cannot run together. As upper layer
1358 * only knows the queue depth, we are responsible for maintaining
1359 * exclusion. This function checks whether a new command can be
1360 * issued to @dev.
1361 *
1362 * LOCKING:
1363 * spin_lock_irqsave(host_set lock)
1364 *
1365 * RETURNS:
1366 * 1 if deferring is needed, 0 otherwise.
1367 */
1368static int ata_scmd_need_defer(struct ata_device *dev, int is_io)
1369{
1370 struct ata_port *ap = dev->ap;
1371
1372 if (!(dev->flags & ATA_DFLAG_NCQ))
1373 return 0;
1374
1375 if (is_io) {
1376 if (!ata_tag_valid(ap->active_tag))
1377 return 0;
1378 } else {
1379 if (!ata_tag_valid(ap->active_tag) && !ap->sactive)
1380 return 0;
1381 }
1382 return 1;
1383}
1384
1385/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 * ata_scsi_translate - Translate then issue SCSI command to ATA device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 * @dev: ATA device to which the command is addressed
1388 * @cmd: SCSI command to execute
1389 * @done: SCSI command completion function
1390 * @xlat_func: Actor which translates @cmd to an ATA taskfile
1391 *
1392 * Our ->queuecommand() function has decided that the SCSI
1393 * command issued can be directly translated into an ATA
1394 * command, rather than handled internally.
1395 *
1396 * This function sets up an ata_queued_cmd structure for the
1397 * SCSI command, and sends that ata_queued_cmd to the hardware.
1398 *
Douglas Gilbertae006512005-10-09 09:09:35 -04001399 * The xlat_func argument (actor) returns 0 if ready to execute
1400 * ATA command, else 1 to finish translation. If 1 is returned
1401 * then cmd->result (and possibly cmd->sense_buffer) are assumed
1402 * to be set reflecting an error condition or clean (early)
1403 * termination.
1404 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 * LOCKING:
1406 * spin_lock_irqsave(host_set lock)
Tejun Heo2115ea92006-05-15 21:03:39 +09001407 *
1408 * RETURNS:
1409 * 0 on success, SCSI_ML_QUEUE_DEVICE_BUSY if the command
1410 * needs to be deferred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 */
Tejun Heo2115ea92006-05-15 21:03:39 +09001412static int ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd,
1413 void (*done)(struct scsi_cmnd *),
1414 ata_xlat_func_t xlat_func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
1416 struct ata_queued_cmd *qc;
1417 u8 *scsicmd = cmd->cmnd;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001418 int is_io = xlat_func == ata_scsi_rw_xlat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 VPRINTK("ENTER\n");
1421
Tejun Heo3dc1d882006-05-15 21:03:45 +09001422 if (unlikely(ata_scmd_need_defer(dev, is_io)))
1423 goto defer;
1424
Tejun Heo3373efd2006-05-15 20:57:53 +09001425 qc = ata_scsi_qc_new(dev, cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (!qc)
Douglas Gilbertae006512005-10-09 09:09:35 -04001427 goto err_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 /* data is present; dma-map it */
be7db052005-04-17 15:26:13 -05001430 if (cmd->sc_data_direction == DMA_FROM_DEVICE ||
1431 cmd->sc_data_direction == DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (unlikely(cmd->request_bufflen < 1)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001433 ata_dev_printk(dev, KERN_WARNING,
1434 "WARNING: zero len r/w req\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04001435 goto err_did;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437
1438 if (cmd->use_sg)
1439 ata_sg_init(qc, cmd->request_buffer, cmd->use_sg);
1440 else
1441 ata_sg_init_one(qc, cmd->request_buffer,
1442 cmd->request_bufflen);
1443
1444 qc->dma_dir = cmd->sc_data_direction;
1445 }
1446
1447 qc->complete_fn = ata_scsi_qc_complete;
1448
1449 if (xlat_func(qc, scsicmd))
Douglas Gilbertae006512005-10-09 09:09:35 -04001450 goto early_finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 /* select device, send command to hardware */
Tejun Heo8e0e6942006-03-31 20:41:11 +09001453 ata_qc_issue(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 VPRINTK("EXIT\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001456 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Douglas Gilbertae006512005-10-09 09:09:35 -04001458early_finish:
1459 ata_qc_free(qc);
1460 done(cmd);
1461 DPRINTK("EXIT - early finish (good or error)\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001462 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001463
1464err_did:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 ata_qc_free(qc);
Douglas Gilbertae006512005-10-09 09:09:35 -04001466err_mem:
1467 cmd->result = (DID_ERROR << 16);
1468 done(cmd);
1469 DPRINTK("EXIT - internal\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001470 return 0;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001471
1472defer:
1473 DPRINTK("EXIT - defer\n");
1474 return SCSI_MLQUEUE_DEVICE_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
1477/**
1478 * ata_scsi_rbuf_get - Map response buffer.
1479 * @cmd: SCSI command containing buffer to be mapped.
1480 * @buf_out: Pointer to mapped area.
1481 *
1482 * Maps buffer contained within SCSI command @cmd.
1483 *
1484 * LOCKING:
1485 * spin_lock_irqsave(host_set lock)
1486 *
1487 * RETURNS:
1488 * Length of response buffer.
1489 */
1490
1491static unsigned int ata_scsi_rbuf_get(struct scsi_cmnd *cmd, u8 **buf_out)
1492{
1493 u8 *buf;
1494 unsigned int buflen;
1495
1496 if (cmd->use_sg) {
1497 struct scatterlist *sg;
1498
1499 sg = (struct scatterlist *) cmd->request_buffer;
1500 buf = kmap_atomic(sg->page, KM_USER0) + sg->offset;
1501 buflen = sg->length;
1502 } else {
1503 buf = cmd->request_buffer;
1504 buflen = cmd->request_bufflen;
1505 }
1506
1507 *buf_out = buf;
1508 return buflen;
1509}
1510
1511/**
1512 * ata_scsi_rbuf_put - Unmap response buffer.
1513 * @cmd: SCSI command containing buffer to be unmapped.
1514 * @buf: buffer to unmap
1515 *
1516 * Unmaps response buffer contained within @cmd.
1517 *
1518 * LOCKING:
1519 * spin_lock_irqsave(host_set lock)
1520 */
1521
1522static inline void ata_scsi_rbuf_put(struct scsi_cmnd *cmd, u8 *buf)
1523{
1524 if (cmd->use_sg) {
1525 struct scatterlist *sg;
1526
1527 sg = (struct scatterlist *) cmd->request_buffer;
1528 kunmap_atomic(buf - sg->offset, KM_USER0);
1529 }
1530}
1531
1532/**
1533 * ata_scsi_rbuf_fill - wrapper for SCSI command simulators
1534 * @args: device IDENTIFY data / SCSI command of interest.
1535 * @actor: Callback hook for desired SCSI command simulator
1536 *
1537 * Takes care of the hard work of simulating a SCSI command...
1538 * Mapping the response buffer, calling the command's handler,
1539 * and handling the handler's return value. This return value
1540 * indicates whether the handler wishes the SCSI command to be
Douglas Gilbertae006512005-10-09 09:09:35 -04001541 * completed successfully (0), or not (in which case cmd->result
1542 * and sense buffer are assumed to be set).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 *
1544 * LOCKING:
1545 * spin_lock_irqsave(host_set lock)
1546 */
1547
1548void ata_scsi_rbuf_fill(struct ata_scsi_args *args,
1549 unsigned int (*actor) (struct ata_scsi_args *args,
1550 u8 *rbuf, unsigned int buflen))
1551{
1552 u8 *rbuf;
1553 unsigned int buflen, rc;
1554 struct scsi_cmnd *cmd = args->cmd;
1555
1556 buflen = ata_scsi_rbuf_get(cmd, &rbuf);
1557 memset(rbuf, 0, buflen);
1558 rc = actor(args, rbuf, buflen);
1559 ata_scsi_rbuf_put(cmd, rbuf);
1560
Douglas Gilbertae006512005-10-09 09:09:35 -04001561 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 cmd->result = SAM_STAT_GOOD;
Douglas Gilbertae006512005-10-09 09:09:35 -04001563 args->done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
1566/**
1567 * ata_scsiop_inq_std - Simulate INQUIRY command
1568 * @args: device IDENTIFY data / SCSI command of interest.
1569 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1570 * @buflen: Response buffer length.
1571 *
1572 * Returns standard device identification data associated
Jeff Garzikb142eb62006-03-21 20:37:47 -05001573 * with non-VPD INQUIRY command output.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 *
1575 * LOCKING:
1576 * spin_lock_irqsave(host_set lock)
1577 */
1578
1579unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf,
1580 unsigned int buflen)
1581{
1582 u8 hdr[] = {
1583 TYPE_DISK,
1584 0,
1585 0x5, /* claim SPC-3 version compatibility */
1586 2,
1587 95 - 4
1588 };
1589
1590 /* set scsi removeable (RMB) bit per ata bit */
1591 if (ata_id_removeable(args->id))
1592 hdr[1] |= (1 << 7);
1593
1594 VPRINTK("ENTER\n");
1595
1596 memcpy(rbuf, hdr, sizeof(hdr));
1597
1598 if (buflen > 35) {
1599 memcpy(&rbuf[8], "ATA ", 8);
Tejun Heo6a62a042006-02-13 10:02:46 +09001600 ata_id_string(args->id, &rbuf[16], ATA_ID_PROD_OFS, 16);
1601 ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV_OFS, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (rbuf[32] == 0 || rbuf[32] == ' ')
1603 memcpy(&rbuf[32], "n/a ", 4);
1604 }
1605
1606 if (buflen > 63) {
1607 const u8 versions[] = {
1608 0x60, /* SAM-3 (no version claimed) */
1609
1610 0x03,
1611 0x20, /* SBC-2 (no version claimed) */
1612
1613 0x02,
1614 0x60 /* SPC-3 (no version claimed) */
1615 };
1616
1617 memcpy(rbuf + 59, versions, sizeof(versions));
1618 }
1619
1620 return 0;
1621}
1622
1623/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001624 * ata_scsiop_inq_00 - Simulate INQUIRY VPD page 0, list of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 * @args: device IDENTIFY data / SCSI command of interest.
1626 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1627 * @buflen: Response buffer length.
1628 *
Jeff Garzikb142eb62006-03-21 20:37:47 -05001629 * Returns list of inquiry VPD pages available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 *
1631 * LOCKING:
1632 * spin_lock_irqsave(host_set lock)
1633 */
1634
1635unsigned int ata_scsiop_inq_00(struct ata_scsi_args *args, u8 *rbuf,
1636 unsigned int buflen)
1637{
1638 const u8 pages[] = {
1639 0x00, /* page 0x00, this page */
1640 0x80, /* page 0x80, unit serial no page */
1641 0x83 /* page 0x83, device ident page */
1642 };
Jeff Garzikb142eb62006-03-21 20:37:47 -05001643 rbuf[3] = sizeof(pages); /* number of supported VPD pages */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645 if (buflen > 6)
1646 memcpy(rbuf + 4, pages, sizeof(pages));
1647
1648 return 0;
1649}
1650
1651/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001652 * ata_scsiop_inq_80 - Simulate INQUIRY VPD page 80, device serial number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 * @args: device IDENTIFY data / SCSI command of interest.
1654 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1655 * @buflen: Response buffer length.
1656 *
1657 * Returns ATA device serial number.
1658 *
1659 * LOCKING:
1660 * spin_lock_irqsave(host_set lock)
1661 */
1662
1663unsigned int ata_scsiop_inq_80(struct ata_scsi_args *args, u8 *rbuf,
1664 unsigned int buflen)
1665{
1666 const u8 hdr[] = {
1667 0,
1668 0x80, /* this page code */
1669 0,
1670 ATA_SERNO_LEN, /* page len */
1671 };
1672 memcpy(rbuf, hdr, sizeof(hdr));
1673
1674 if (buflen > (ATA_SERNO_LEN + 4 - 1))
Tejun Heo6a62a042006-02-13 10:02:46 +09001675 ata_id_string(args->id, (unsigned char *) &rbuf[4],
1676 ATA_ID_SERNO_OFS, ATA_SERNO_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 return 0;
1679}
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001682 * ata_scsiop_inq_83 - Simulate INQUIRY VPD page 83, device identity
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 * @args: device IDENTIFY data / SCSI command of interest.
1684 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1685 * @buflen: Response buffer length.
1686 *
Jeff Garzikb142eb62006-03-21 20:37:47 -05001687 * Yields two logical unit device identification designators:
1688 * - vendor specific ASCII containing the ATA serial number
1689 * - SAT defined "t10 vendor id based" containing ASCII vendor
1690 * name ("ATA "), model and serial numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 *
1692 * LOCKING:
1693 * spin_lock_irqsave(host_set lock)
1694 */
1695
1696unsigned int ata_scsiop_inq_83(struct ata_scsi_args *args, u8 *rbuf,
1697 unsigned int buflen)
1698{
Jeff Garzikb142eb62006-03-21 20:37:47 -05001699 int num;
1700 const int sat_model_serial_desc_len = 68;
1701 const int ata_model_byte_len = 40;
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 rbuf[1] = 0x83; /* this page code */
Jeff Garzikb142eb62006-03-21 20:37:47 -05001704 num = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Jeff Garzikb142eb62006-03-21 20:37:47 -05001706 if (buflen > (ATA_SERNO_LEN + num + 3)) {
1707 /* piv=0, assoc=lu, code_set=ACSII, designator=vendor */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001708 rbuf[num + 0] = 2;
Jeff Garzikb142eb62006-03-21 20:37:47 -05001709 rbuf[num + 3] = ATA_SERNO_LEN;
1710 num += 4;
1711 ata_id_string(args->id, (unsigned char *) rbuf + num,
1712 ATA_ID_SERNO_OFS, ATA_SERNO_LEN);
1713 num += ATA_SERNO_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
Jeff Garzikb142eb62006-03-21 20:37:47 -05001715 if (buflen > (sat_model_serial_desc_len + num + 3)) {
1716 /* SAT defined lu model and serial numbers descriptor */
1717 /* piv=0, assoc=lu, code_set=ACSII, designator=t10 vendor id */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001718 rbuf[num + 0] = 2;
1719 rbuf[num + 1] = 1;
Jeff Garzikb142eb62006-03-21 20:37:47 -05001720 rbuf[num + 3] = sat_model_serial_desc_len;
1721 num += 4;
1722 memcpy(rbuf + num, "ATA ", 8);
1723 num += 8;
1724 ata_id_string(args->id, (unsigned char *) rbuf + num,
1725 ATA_ID_PROD_OFS, ata_model_byte_len);
1726 num += ata_model_byte_len;
1727 ata_id_string(args->id, (unsigned char *) rbuf + num,
1728 ATA_ID_SERNO_OFS, ATA_SERNO_LEN);
1729 num += ATA_SERNO_LEN;
1730 }
1731 rbuf[3] = num - 4; /* page len (assume less than 256 bytes) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return 0;
1733}
1734
1735/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001736 * ata_scsiop_noop - Command handler that simply returns success.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 * @args: device IDENTIFY data / SCSI command of interest.
1738 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1739 * @buflen: Response buffer length.
1740 *
1741 * No operation. Simply returns success to caller, to indicate
1742 * that the caller should successfully complete this SCSI command.
1743 *
1744 * LOCKING:
1745 * spin_lock_irqsave(host_set lock)
1746 */
1747
1748unsigned int ata_scsiop_noop(struct ata_scsi_args *args, u8 *rbuf,
1749 unsigned int buflen)
1750{
1751 VPRINTK("ENTER\n");
1752 return 0;
1753}
1754
1755/**
1756 * ata_msense_push - Push data onto MODE SENSE data output buffer
1757 * @ptr_io: (input/output) Location to store more output data
1758 * @last: End of output data buffer
1759 * @buf: Pointer to BLOB being added to output buffer
1760 * @buflen: Length of BLOB
1761 *
1762 * Store MODE SENSE data on an output buffer.
1763 *
1764 * LOCKING:
1765 * None.
1766 */
1767
1768static void ata_msense_push(u8 **ptr_io, const u8 *last,
1769 const u8 *buf, unsigned int buflen)
1770{
1771 u8 *ptr = *ptr_io;
1772
1773 if ((ptr + buflen - 1) > last)
1774 return;
1775
1776 memcpy(ptr, buf, buflen);
1777
1778 ptr += buflen;
1779
1780 *ptr_io = ptr;
1781}
1782
1783/**
1784 * ata_msense_caching - Simulate MODE SENSE caching info page
1785 * @id: device IDENTIFY data
1786 * @ptr_io: (input/output) Location to store more output data
1787 * @last: End of output data buffer
1788 *
1789 * Generate a caching info page, which conditionally indicates
1790 * write caching to the SCSI layer, depending on device
1791 * capabilities.
1792 *
1793 * LOCKING:
1794 * None.
1795 */
1796
1797static unsigned int ata_msense_caching(u16 *id, u8 **ptr_io,
1798 const u8 *last)
1799{
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001800 u8 page[CACHE_MPAGE_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001802 memcpy(page, def_cache_mpage, sizeof(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (ata_id_wcache_enabled(id))
1804 page[2] |= (1 << 2); /* write cache enable */
1805 if (!ata_id_rahead_enabled(id))
1806 page[12] |= (1 << 5); /* disable read ahead */
1807
1808 ata_msense_push(ptr_io, last, page, sizeof(page));
1809 return sizeof(page);
1810}
1811
1812/**
1813 * ata_msense_ctl_mode - Simulate MODE SENSE control mode page
1814 * @dev: Device associated with this MODE SENSE command
1815 * @ptr_io: (input/output) Location to store more output data
1816 * @last: End of output data buffer
1817 *
1818 * Generate a generic MODE SENSE control mode page.
1819 *
1820 * LOCKING:
1821 * None.
1822 */
1823
1824static unsigned int ata_msense_ctl_mode(u8 **ptr_io, const u8 *last)
1825{
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001826 ata_msense_push(ptr_io, last, def_control_mpage,
1827 sizeof(def_control_mpage));
1828 return sizeof(def_control_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
1831/**
1832 * ata_msense_rw_recovery - Simulate MODE SENSE r/w error recovery page
1833 * @dev: Device associated with this MODE SENSE command
1834 * @ptr_io: (input/output) Location to store more output data
1835 * @last: End of output data buffer
1836 *
1837 * Generate a generic MODE SENSE r/w error recovery page.
1838 *
1839 * LOCKING:
1840 * None.
1841 */
1842
1843static unsigned int ata_msense_rw_recovery(u8 **ptr_io, const u8 *last)
1844{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001846 ata_msense_push(ptr_io, last, def_rw_recovery_mpage,
1847 sizeof(def_rw_recovery_mpage));
1848 return sizeof(def_rw_recovery_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
1850
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001851/*
1852 * We can turn this into a real blacklist if it's needed, for now just
1853 * blacklist any Maxtor BANC1G10 revision firmware
1854 */
1855static int ata_dev_supports_fua(u16 *id)
1856{
1857 unsigned char model[41], fw[9];
1858
Jeff Garzikc3c013a2006-02-27 22:31:19 -05001859 if (!libata_fua)
1860 return 0;
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001861 if (!ata_id_has_fua(id))
1862 return 0;
1863
Tejun Heo6a62a042006-02-13 10:02:46 +09001864 ata_id_c_string(id, model, ATA_ID_PROD_OFS, sizeof(model));
1865 ata_id_c_string(id, fw, ATA_ID_FW_REV_OFS, sizeof(fw));
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001866
Tejun Heo2e026712006-02-12 22:47:04 +09001867 if (strcmp(model, "Maxtor"))
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001868 return 1;
Tejun Heo2e026712006-02-12 22:47:04 +09001869 if (strcmp(fw, "BANC1G10"))
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001870 return 1;
1871
1872 return 0; /* blacklisted */
1873}
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875/**
1876 * ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands
1877 * @args: device IDENTIFY data / SCSI command of interest.
1878 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1879 * @buflen: Response buffer length.
1880 *
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001881 * Simulate MODE SENSE commands. Assume this is invoked for direct
1882 * access devices (e.g. disks) only. There should be no block
1883 * descriptor for other device types.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 *
1885 * LOCKING:
1886 * spin_lock_irqsave(host_set lock)
1887 */
1888
1889unsigned int ata_scsiop_mode_sense(struct ata_scsi_args *args, u8 *rbuf,
1890 unsigned int buflen)
1891{
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001892 struct ata_device *dev = args->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 u8 *scsicmd = args->cmd->cmnd, *p, *last;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001894 const u8 sat_blk_desc[] = {
1895 0, 0, 0, 0, /* number of blocks: sat unspecified */
1896 0,
1897 0, 0x2, 0x0 /* block length: 512 bytes */
1898 };
1899 u8 pg, spg;
1900 unsigned int ebd, page_control, six_byte, output_len, alloc_len, minlen;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001901 u8 dpofua;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 VPRINTK("ENTER\n");
1904
1905 six_byte = (scsicmd[0] == MODE_SENSE);
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001906 ebd = !(scsicmd[1] & 0x8); /* dbd bit inverted == edb */
1907 /*
1908 * LLBA bit in msense(10) ignored (compliant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 */
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 page_control = scsicmd[2] >> 6;
Douglas Gilbertae006512005-10-09 09:09:35 -04001912 switch (page_control) {
1913 case 0: /* current */
1914 break; /* supported */
1915 case 3: /* saved */
1916 goto saving_not_supp;
1917 case 1: /* changeable */
1918 case 2: /* defaults */
1919 default:
1920 goto invalid_fld;
1921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001923 if (six_byte) {
1924 output_len = 4 + (ebd ? 8 : 0);
1925 alloc_len = scsicmd[4];
1926 } else {
1927 output_len = 8 + (ebd ? 8 : 0);
1928 alloc_len = (scsicmd[7] << 8) + scsicmd[8];
1929 }
1930 minlen = (alloc_len < buflen) ? alloc_len : buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 p = rbuf + output_len;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001933 last = rbuf + minlen - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001935 pg = scsicmd[2] & 0x3f;
1936 spg = scsicmd[3];
1937 /*
1938 * No mode subpages supported (yet) but asking for _all_
1939 * subpages may be valid
1940 */
1941 if (spg && (spg != ALL_SUB_MPAGES))
1942 goto invalid_fld;
1943
1944 switch(pg) {
1945 case RW_RECOVERY_MPAGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 output_len += ata_msense_rw_recovery(&p, last);
1947 break;
1948
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001949 case CACHE_MPAGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 output_len += ata_msense_caching(args->id, &p, last);
1951 break;
1952
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001953 case CONTROL_MPAGE: {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 output_len += ata_msense_ctl_mode(&p, last);
1955 break;
1956 }
1957
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001958 case ALL_MPAGES:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 output_len += ata_msense_rw_recovery(&p, last);
1960 output_len += ata_msense_caching(args->id, &p, last);
1961 output_len += ata_msense_ctl_mode(&p, last);
1962 break;
1963
1964 default: /* invalid page code */
Douglas Gilbertae006512005-10-09 09:09:35 -04001965 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001968 if (minlen < 1)
1969 return 0;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001970
1971 dpofua = 0;
Alan Coxf79d4092006-05-22 16:55:11 +01001972 if (ata_dev_supports_fua(args->id) && (dev->flags & ATA_DFLAG_LBA48) &&
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001973 (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count))
1974 dpofua = 1 << 4;
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (six_byte) {
1977 output_len--;
1978 rbuf[0] = output_len;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001979 if (minlen > 2)
1980 rbuf[2] |= dpofua;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001981 if (ebd) {
1982 if (minlen > 3)
1983 rbuf[3] = sizeof(sat_blk_desc);
1984 if (minlen > 11)
1985 memcpy(rbuf + 4, sat_blk_desc,
1986 sizeof(sat_blk_desc));
1987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 } else {
1989 output_len -= 2;
1990 rbuf[0] = output_len >> 8;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001991 if (minlen > 1)
1992 rbuf[1] = output_len;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001993 if (minlen > 3)
1994 rbuf[3] |= dpofua;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001995 if (ebd) {
1996 if (minlen > 7)
1997 rbuf[7] = sizeof(sat_blk_desc);
1998 if (minlen > 15)
1999 memcpy(rbuf + 8, sat_blk_desc,
2000 sizeof(sat_blk_desc));
2001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04002004
2005invalid_fld:
2006 ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x24, 0x0);
2007 /* "Invalid field in cbd" */
2008 return 1;
2009
2010saving_not_supp:
2011 ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x39, 0x0);
2012 /* "Saving parameters not supported" */
2013 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
2015
2016/**
2017 * ata_scsiop_read_cap - Simulate READ CAPACITY[ 16] commands
2018 * @args: device IDENTIFY data / SCSI command of interest.
2019 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
2020 * @buflen: Response buffer length.
2021 *
2022 * Simulate READ CAPACITY commands.
2023 *
2024 * LOCKING:
2025 * spin_lock_irqsave(host_set lock)
2026 */
2027
2028unsigned int ata_scsiop_read_cap(struct ata_scsi_args *args, u8 *rbuf,
2029 unsigned int buflen)
2030{
2031 u64 n_sectors;
2032 u32 tmp;
2033
2034 VPRINTK("ENTER\n");
2035
Albert Lee8bf62ec2005-05-12 15:29:42 -04002036 if (ata_id_has_lba(args->id)) {
2037 if (ata_id_has_lba48(args->id))
2038 n_sectors = ata_id_u64(args->id, 100);
2039 else
2040 n_sectors = ata_id_u32(args->id, 60);
2041 } else {
2042 /* CHS default translation */
2043 n_sectors = args->id[1] * args->id[3] * args->id[6];
2044
2045 if (ata_id_current_chs_valid(args->id))
2046 /* CHS current translation */
2047 n_sectors = ata_id_u32(args->id, 57);
2048 }
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 n_sectors--; /* ATA TotalUserSectors - 1 */
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 if (args->cmd->cmnd[0] == READ_CAPACITY) {
Philip Pokorny0c144d02005-05-28 01:24:47 -07002053 if( n_sectors >= 0xffffffffULL )
2054 tmp = 0xffffffff ; /* Return max count on overflow */
2055 else
2056 tmp = n_sectors ;
2057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 /* sector count, 32-bit */
2059 rbuf[0] = tmp >> (8 * 3);
2060 rbuf[1] = tmp >> (8 * 2);
2061 rbuf[2] = tmp >> (8 * 1);
2062 rbuf[3] = tmp;
2063
2064 /* sector size */
2065 tmp = ATA_SECT_SIZE;
2066 rbuf[6] = tmp >> 8;
2067 rbuf[7] = tmp;
2068
2069 } else {
2070 /* sector count, 64-bit */
Philip Pokorny0c144d02005-05-28 01:24:47 -07002071 tmp = n_sectors >> (8 * 4);
2072 rbuf[2] = tmp >> (8 * 3);
2073 rbuf[3] = tmp >> (8 * 2);
2074 rbuf[4] = tmp >> (8 * 1);
2075 rbuf[5] = tmp;
2076 tmp = n_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 rbuf[6] = tmp >> (8 * 3);
2078 rbuf[7] = tmp >> (8 * 2);
2079 rbuf[8] = tmp >> (8 * 1);
2080 rbuf[9] = tmp;
2081
2082 /* sector size */
2083 tmp = ATA_SECT_SIZE;
2084 rbuf[12] = tmp >> 8;
2085 rbuf[13] = tmp;
2086 }
2087
2088 return 0;
2089}
2090
2091/**
2092 * ata_scsiop_report_luns - Simulate REPORT LUNS command
2093 * @args: device IDENTIFY data / SCSI command of interest.
2094 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
2095 * @buflen: Response buffer length.
2096 *
2097 * Simulate REPORT LUNS command.
2098 *
2099 * LOCKING:
2100 * spin_lock_irqsave(host_set lock)
2101 */
2102
2103unsigned int ata_scsiop_report_luns(struct ata_scsi_args *args, u8 *rbuf,
2104 unsigned int buflen)
2105{
2106 VPRINTK("ENTER\n");
2107 rbuf[3] = 8; /* just one lun, LUN 0, size 8 bytes */
2108
2109 return 0;
2110}
2111
2112/**
Douglas Gilbert845c5832005-10-09 08:55:41 -04002113 * ata_scsi_set_sense - Set SCSI sense data and status
2114 * @cmd: SCSI request to be handled
2115 * @sk: SCSI-defined sense key
2116 * @asc: SCSI-defined additional sense code
2117 * @ascq: SCSI-defined additional sense code qualifier
2118 *
2119 * Helper function that builds a valid fixed format, current
2120 * response code and the given sense key (sk), additional sense
2121 * code (asc) and additional sense code qualifier (ascq) with
2122 * a SCSI command status of %SAM_STAT_CHECK_CONDITION and
2123 * DRIVER_SENSE set in the upper bits of scsi_cmnd::result .
2124 *
2125 * LOCKING:
2126 * Not required
2127 */
2128
2129void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq)
2130{
2131 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
2132
2133 cmd->sense_buffer[0] = 0x70; /* fixed format, current */
2134 cmd->sense_buffer[2] = sk;
2135 cmd->sense_buffer[7] = 18 - 8; /* additional sense length */
2136 cmd->sense_buffer[12] = asc;
2137 cmd->sense_buffer[13] = ascq;
2138}
2139
2140/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 * ata_scsi_badcmd - End a SCSI request with an error
2142 * @cmd: SCSI request to be handled
2143 * @done: SCSI command completion function
2144 * @asc: SCSI-defined additional sense code
2145 * @ascq: SCSI-defined additional sense code qualifier
2146 *
2147 * Helper function that completes a SCSI command with
2148 * %SAM_STAT_CHECK_CONDITION, with a sense key %ILLEGAL_REQUEST
2149 * and the specified additional sense codes.
2150 *
2151 * LOCKING:
2152 * spin_lock_irqsave(host_set lock)
2153 */
2154
2155void ata_scsi_badcmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *), u8 asc, u8 ascq)
2156{
2157 DPRINTK("ENTER\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04002158 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, asc, ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 done(cmd);
2161}
2162
Tejun Heo77853bf2006-01-23 13:09:36 +09002163static void atapi_sense_complete(struct ata_queued_cmd *qc)
Jeff Garzika939c962005-10-05 17:09:16 -04002164{
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002165 if (qc->err_mask && ((qc->err_mask & AC_ERR_DEV) == 0)) {
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002166 /* FIXME: not quite right; we don't want the
2167 * translation of taskfile registers into
2168 * a sense descriptors, since that's only
2169 * correct for ATA, not ATAPI
2170 */
2171 ata_gen_ata_desc_sense(qc);
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002172 }
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002173
2174 qc->scsidone(qc->scsicmd);
Tejun Heo77853bf2006-01-23 13:09:36 +09002175 ata_qc_free(qc);
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002176}
2177
2178/* is it pointless to prefer PIO for "safety reasons"? */
2179static inline int ata_pio_use_silly(struct ata_port *ap)
2180{
2181 return (ap->flags & ATA_FLAG_PIO_DMA);
2182}
2183
2184static void atapi_request_sense(struct ata_queued_cmd *qc)
2185{
2186 struct ata_port *ap = qc->ap;
2187 struct scsi_cmnd *cmd = qc->scsicmd;
Jeff Garzika939c962005-10-05 17:09:16 -04002188
2189 DPRINTK("ATAPI request sense\n");
2190
Jeff Garzika939c962005-10-05 17:09:16 -04002191 /* FIXME: is this needed? */
2192 memset(cmd->sense_buffer, 0, sizeof(cmd->sense_buffer));
2193
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002194 ap->ops->tf_read(ap, &qc->tf);
2195
2196 /* fill these in, for the case where they are -not- overwritten */
2197 cmd->sense_buffer[0] = 0x70;
2198 cmd->sense_buffer[2] = qc->tf.feature >> 4;
2199
2200 ata_qc_reinit(qc);
2201
Jeff Garzika939c962005-10-05 17:09:16 -04002202 ata_sg_init_one(qc, cmd->sense_buffer, sizeof(cmd->sense_buffer));
2203 qc->dma_dir = DMA_FROM_DEVICE;
2204
Tejun Heo6e7846e2006-02-12 23:32:58 +09002205 memset(&qc->cdb, 0, qc->dev->cdb_len);
Jeff Garzika939c962005-10-05 17:09:16 -04002206 qc->cdb[0] = REQUEST_SENSE;
2207 qc->cdb[4] = SCSI_SENSE_BUFFERSIZE;
2208
2209 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2210 qc->tf.command = ATA_CMD_PACKET;
2211
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002212 if (ata_pio_use_silly(ap)) {
2213 qc->tf.protocol = ATA_PROT_ATAPI_DMA;
2214 qc->tf.feature |= ATAPI_PKT_DMA;
2215 } else {
2216 qc->tf.protocol = ATA_PROT_ATAPI;
2217 qc->tf.lbam = (8 * 1024) & 0xff;
2218 qc->tf.lbah = (8 * 1024) >> 8;
2219 }
Jeff Garzika939c962005-10-05 17:09:16 -04002220 qc->nbytes = SCSI_SENSE_BUFFERSIZE;
2221
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002222 qc->complete_fn = atapi_sense_complete;
Jeff Garzika939c962005-10-05 17:09:16 -04002223
Tejun Heo8e0e6942006-03-31 20:41:11 +09002224 ata_qc_issue(qc);
Jeff Garzika939c962005-10-05 17:09:16 -04002225
2226 DPRINTK("EXIT\n");
2227}
2228
Tejun Heo77853bf2006-01-23 13:09:36 +09002229static void atapi_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
2231 struct scsi_cmnd *cmd = qc->scsicmd;
Albert Leea22e2eb2005-12-05 15:38:02 +08002232 unsigned int err_mask = qc->err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Jeff Garzika7dac442005-10-30 04:44:42 -05002234 VPRINTK("ENTER, err_mask 0x%X\n", err_mask);
Jeff Garzike12669e2005-10-05 18:39:23 -04002235
Tejun Heo246619d2006-05-15 20:58:16 +09002236 /* handle completion from new EH */
2237 if (unlikely(qc->ap->ops->error_handler &&
2238 (err_mask || qc->flags & ATA_QCFLAG_SENSE_VALID))) {
2239
2240 if (!(qc->flags & ATA_QCFLAG_SENSE_VALID)) {
2241 /* FIXME: not quite right; we don't want the
2242 * translation of taskfile registers into a
2243 * sense descriptors, since that's only
2244 * correct for ATA, not ATAPI
2245 */
2246 ata_gen_ata_desc_sense(qc);
2247 }
2248
2249 qc->scsicmd->result = SAM_STAT_CHECK_CONDITION;
2250 qc->scsidone(cmd);
2251 ata_qc_free(qc);
2252 return;
2253 }
2254
2255 /* successful completion or old EH failure path */
Jeff Garzika7dac442005-10-30 04:44:42 -05002256 if (unlikely(err_mask & AC_ERR_DEV)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 cmd->result = SAM_STAT_CHECK_CONDITION;
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002258 atapi_request_sense(qc);
Tejun Heo77853bf2006-01-23 13:09:36 +09002259 return;
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002260 } else if (unlikely(err_mask)) {
Jeff Garzika7dac442005-10-30 04:44:42 -05002261 /* FIXME: not quite right; we don't want the
2262 * translation of taskfile registers into
2263 * a sense descriptors, since that's only
2264 * correct for ATA, not ATAPI
2265 */
2266 ata_gen_ata_desc_sense(qc);
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002267 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 u8 *scsicmd = cmd->cmnd;
2269
Tony Battersbyfd71da42005-12-21 16:35:44 -05002270 if ((scsicmd[0] == INQUIRY) && ((scsicmd[1] & 0x03) == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 u8 *buf = NULL;
2272 unsigned int buflen;
2273
2274 buflen = ata_scsi_rbuf_get(cmd, &buf);
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002275
2276 /* ATAPI devices typically report zero for their SCSI version,
2277 * and sometimes deviate from the spec WRT response data
2278 * format. If SCSI version is reported as zero like normal,
2279 * then we make the following fixups: 1) Fake MMC-5 version,
2280 * to indicate to the Linux scsi midlayer this is a modern
2281 * device. 2) Ensure response data format / ATAPI information
2282 * are always correct.
2283 */
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002284 if (buf[2] == 0) {
2285 buf[2] = 0x5;
2286 buf[3] = 0x32;
2287 }
2288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 ata_scsi_rbuf_put(cmd, buf);
2290 }
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 cmd->result = SAM_STAT_GOOD;
2293 }
2294
2295 qc->scsidone(cmd);
Tejun Heo77853bf2006-01-23 13:09:36 +09002296 ata_qc_free(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297}
2298/**
2299 * atapi_xlat - Initialize PACKET taskfile
2300 * @qc: command structure to be initialized
2301 * @scsicmd: SCSI CDB associated with this PACKET command
2302 *
2303 * LOCKING:
2304 * spin_lock_irqsave(host_set lock)
2305 *
2306 * RETURNS:
2307 * Zero on success, non-zero on failure.
2308 */
2309
Jeff Garzik057ace52005-10-22 14:27:05 -04002310static unsigned int atapi_xlat(struct ata_queued_cmd *qc, const u8 *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
2312 struct scsi_cmnd *cmd = qc->scsicmd;
2313 struct ata_device *dev = qc->dev;
2314 int using_pio = (dev->flags & ATA_DFLAG_PIO);
be7db052005-04-17 15:26:13 -05002315 int nodata = (cmd->sc_data_direction == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 if (!using_pio)
2318 /* Check whether ATAPI DMA is safe */
2319 if (ata_check_atapi_dma(qc))
2320 using_pio = 1;
2321
Tejun Heo6e7846e2006-02-12 23:32:58 +09002322 memcpy(&qc->cdb, scsicmd, dev->cdb_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 qc->complete_fn = atapi_qc_complete;
2325
2326 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
be7db052005-04-17 15:26:13 -05002327 if (cmd->sc_data_direction == DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 qc->tf.flags |= ATA_TFLAG_WRITE;
2329 DPRINTK("direction: write\n");
2330 }
2331
2332 qc->tf.command = ATA_CMD_PACKET;
2333
2334 /* no data, or PIO data xfer */
2335 if (using_pio || nodata) {
2336 if (nodata)
2337 qc->tf.protocol = ATA_PROT_ATAPI_NODATA;
2338 else
2339 qc->tf.protocol = ATA_PROT_ATAPI;
2340 qc->tf.lbam = (8 * 1024) & 0xff;
2341 qc->tf.lbah = (8 * 1024) >> 8;
2342 }
2343
2344 /* DMA data xfer */
2345 else {
2346 qc->tf.protocol = ATA_PROT_ATAPI_DMA;
2347 qc->tf.feature |= ATAPI_PKT_DMA;
2348
Albert Lee95de7192006-04-04 10:57:18 +08002349 if (atapi_dmadir && (cmd->sc_data_direction != DMA_TO_DEVICE))
2350 /* some SATA bridges need us to indicate data xfer direction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 qc->tf.feature |= ATAPI_DMADIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 }
2353
2354 qc->nbytes = cmd->bufflen;
2355
2356 return 0;
2357}
2358
Tejun Heoab5b3a52006-05-31 18:27:34 +09002359static struct ata_device * ata_find_dev(struct ata_port *ap, int id)
2360{
2361 if (likely(id < ATA_MAX_DEVICES))
2362 return &ap->device[id];
2363 return NULL;
2364}
2365
2366static struct ata_device * __ata_scsi_find_dev(struct ata_port *ap,
2367 const struct scsi_device *scsidev)
2368{
2369 /* skip commands not addressed to targets we simulate */
2370 if (unlikely(scsidev->channel || scsidev->lun))
2371 return NULL;
2372
2373 return ata_find_dev(ap, scsidev->id);
2374}
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376/**
2377 * ata_scsi_find_dev - lookup ata_device from scsi_cmnd
2378 * @ap: ATA port to which the device is attached
2379 * @scsidev: SCSI device from which we derive the ATA device
2380 *
2381 * Given various information provided in struct scsi_cmnd,
2382 * map that onto an ATA bus, and using that mapping
2383 * determine which ata_device is associated with the
2384 * SCSI command to be sent.
2385 *
2386 * LOCKING:
2387 * spin_lock_irqsave(host_set lock)
2388 *
2389 * RETURNS:
2390 * Associated ATA device, or %NULL if not found.
2391 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392static struct ata_device *
Jeff Garzik057ace52005-10-22 14:27:05 -04002393ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Tejun Heoab5b3a52006-05-31 18:27:34 +09002395 struct ata_device *dev = __ata_scsi_find_dev(ap, scsidev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Tejun Heoab5b3a52006-05-31 18:27:34 +09002397 if (unlikely(!dev || !ata_dev_enabled(dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return NULL;
2399
Jeff Garzik50630192005-12-13 02:29:45 -05002400 if (!atapi_enabled || (ap->flags & ATA_FLAG_NO_ATAPI)) {
2401 if (unlikely(dev->class == ATA_DEV_ATAPI)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002402 ata_dev_printk(dev, KERN_WARNING,
2403 "WARNING: ATAPI is %s, device ignored.\n",
2404 atapi_enabled ? "not supported with this driver" : "disabled");
Jeff Garzik1623c812005-08-30 03:37:42 -04002405 return NULL;
Jeff Garzik50630192005-12-13 02:29:45 -05002406 }
Jeff Garzik1623c812005-08-30 03:37:42 -04002407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
2409 return dev;
2410}
2411
Jeff Garzikb0955182005-05-12 15:45:22 -04002412/*
2413 * ata_scsi_map_proto - Map pass-thru protocol value to taskfile value.
2414 * @byte1: Byte 1 from pass-thru CDB.
2415 *
2416 * RETURNS:
2417 * ATA_PROT_UNKNOWN if mapping failed/unimplemented, protocol otherwise.
2418 */
2419static u8
2420ata_scsi_map_proto(u8 byte1)
2421{
2422 switch((byte1 & 0x1e) >> 1) {
2423 case 3: /* Non-data */
2424 return ATA_PROT_NODATA;
2425
2426 case 6: /* DMA */
2427 return ATA_PROT_DMA;
2428
2429 case 4: /* PIO Data-in */
2430 case 5: /* PIO Data-out */
Jeff Garzikb0955182005-05-12 15:45:22 -04002431 return ATA_PROT_PIO;
2432
2433 case 10: /* Device Reset */
2434 case 0: /* Hard Reset */
2435 case 1: /* SRST */
2436 case 2: /* Bus Idle */
2437 case 7: /* Packet */
2438 case 8: /* DMA Queued */
2439 case 9: /* Device Diagnostic */
2440 case 11: /* UDMA Data-in */
2441 case 12: /* UDMA Data-Out */
2442 case 13: /* FPDMA */
2443 default: /* Reserved */
2444 break;
2445 }
2446
2447 return ATA_PROT_UNKNOWN;
2448}
2449
2450/**
2451 * ata_scsi_pass_thru - convert ATA pass-thru CDB to taskfile
2452 * @qc: command structure to be initialized
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08002453 * @scsicmd: SCSI command to convert
Jeff Garzikb0955182005-05-12 15:45:22 -04002454 *
2455 * Handles either 12 or 16-byte versions of the CDB.
2456 *
2457 * RETURNS:
2458 * Zero on success, non-zero on failure.
2459 */
2460static unsigned int
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002461ata_scsi_pass_thru(struct ata_queued_cmd *qc, const u8 *scsicmd)
Jeff Garzikb0955182005-05-12 15:45:22 -04002462{
2463 struct ata_taskfile *tf = &(qc->tf);
2464 struct scsi_cmnd *cmd = qc->scsicmd;
Alan Coxf79d4092006-05-22 16:55:11 +01002465 struct ata_device *dev = qc->dev;
Jeff Garzikb0955182005-05-12 15:45:22 -04002466
2467 if ((tf->protocol = ata_scsi_map_proto(scsicmd[1])) == ATA_PROT_UNKNOWN)
Tejun Heo9a405252005-12-02 11:49:11 +09002468 goto invalid_fld;
Jeff Garzik8190bdb2006-05-24 01:53:39 -04002469
Alan Coxf79d4092006-05-22 16:55:11 +01002470 /* We may not issue DMA commands if no DMA mode is set */
2471 if (tf->protocol == ATA_PROT_DMA && dev->dma_mode == 0)
2472 goto invalid_fld;
Jeff Garzikb0955182005-05-12 15:45:22 -04002473
Albert Leef59b0cf2006-03-16 17:59:22 +08002474 if (scsicmd[1] & 0xe0)
2475 /* PIO multi not supported yet */
2476 goto invalid_fld;
2477
Jeff Garzikb0955182005-05-12 15:45:22 -04002478 /*
2479 * 12 and 16 byte CDBs use different offsets to
2480 * provide the various register values.
2481 */
2482 if (scsicmd[0] == ATA_16) {
2483 /*
2484 * 16-byte CDB - may contain extended commands.
2485 *
2486 * If that is the case, copy the upper byte register values.
2487 */
2488 if (scsicmd[1] & 0x01) {
2489 tf->hob_feature = scsicmd[3];
2490 tf->hob_nsect = scsicmd[5];
2491 tf->hob_lbal = scsicmd[7];
2492 tf->hob_lbam = scsicmd[9];
2493 tf->hob_lbah = scsicmd[11];
2494 tf->flags |= ATA_TFLAG_LBA48;
2495 } else
2496 tf->flags &= ~ATA_TFLAG_LBA48;
2497
2498 /*
2499 * Always copy low byte, device and command registers.
2500 */
2501 tf->feature = scsicmd[4];
2502 tf->nsect = scsicmd[6];
2503 tf->lbal = scsicmd[8];
2504 tf->lbam = scsicmd[10];
2505 tf->lbah = scsicmd[12];
2506 tf->device = scsicmd[13];
2507 tf->command = scsicmd[14];
2508 } else {
2509 /*
2510 * 12-byte CDB - incapable of extended commands.
2511 */
2512 tf->flags &= ~ATA_TFLAG_LBA48;
2513
2514 tf->feature = scsicmd[3];
2515 tf->nsect = scsicmd[4];
2516 tf->lbal = scsicmd[5];
2517 tf->lbam = scsicmd[6];
2518 tf->lbah = scsicmd[7];
2519 tf->device = scsicmd[8];
2520 tf->command = scsicmd[9];
2521 }
Mark Lorddcc2d1e2005-11-13 16:22:06 -05002522 /*
2523 * If slave is possible, enforce correct master/slave bit
2524 */
2525 if (qc->ap->flags & ATA_FLAG_SLAVE_POSS)
2526 tf->device = qc->dev->devno ?
2527 tf->device | ATA_DEV1 : tf->device & ~ATA_DEV1;
Jeff Garzikb0955182005-05-12 15:45:22 -04002528
2529 /*
2530 * Filter SET_FEATURES - XFER MODE command -- otherwise,
2531 * SET_FEATURES - XFER MODE must be preceded/succeeded
2532 * by an update to hardware-specific registers for each
2533 * controller (i.e. the reason for ->set_piomode(),
2534 * ->set_dmamode(), and ->post_set_mode() hooks).
2535 */
2536 if ((tf->command == ATA_CMD_SET_FEATURES)
2537 && (tf->feature == SETFEATURES_XFER))
Tejun Heo9a405252005-12-02 11:49:11 +09002538 goto invalid_fld;
Jeff Garzikb0955182005-05-12 15:45:22 -04002539
2540 /*
2541 * Set flags so that all registers will be written,
2542 * and pass on write indication (used for PIO/DMA
2543 * setup.)
2544 */
2545 tf->flags |= (ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE);
2546
Jeff Garzik0274aa22005-06-22 13:50:56 -04002547 if (cmd->sc_data_direction == DMA_TO_DEVICE)
Jeff Garzikb0955182005-05-12 15:45:22 -04002548 tf->flags |= ATA_TFLAG_WRITE;
2549
2550 /*
2551 * Set transfer length.
2552 *
2553 * TODO: find out if we need to do more here to
2554 * cover scatter/gather case.
2555 */
2556 qc->nsect = cmd->bufflen / ATA_SECT_SIZE;
2557
Tejun Heoe61e0672006-05-15 20:57:40 +09002558 /* request result TF */
2559 qc->flags |= ATA_QCFLAG_RESULT_TF;
2560
Jeff Garzikb0955182005-05-12 15:45:22 -04002561 return 0;
Tejun Heo9a405252005-12-02 11:49:11 +09002562
2563 invalid_fld:
2564 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x24, 0x00);
2565 /* "Invalid field in cdb" */
2566 return 1;
Jeff Garzikb0955182005-05-12 15:45:22 -04002567}
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569/**
2570 * ata_get_xlat_func - check if SCSI to ATA translation is possible
2571 * @dev: ATA device
2572 * @cmd: SCSI command opcode to consider
2573 *
2574 * Look up the SCSI command given, and determine whether the
2575 * SCSI command is to be translated or simulated.
2576 *
2577 * RETURNS:
2578 * Pointer to translation function if possible, %NULL if not.
2579 */
2580
2581static inline ata_xlat_func_t ata_get_xlat_func(struct ata_device *dev, u8 cmd)
2582{
2583 switch (cmd) {
2584 case READ_6:
2585 case READ_10:
2586 case READ_16:
2587
2588 case WRITE_6:
2589 case WRITE_10:
2590 case WRITE_16:
2591 return ata_scsi_rw_xlat;
2592
2593 case SYNCHRONIZE_CACHE:
2594 if (ata_try_flush_cache(dev))
2595 return ata_scsi_flush_xlat;
2596 break;
2597
2598 case VERIFY:
2599 case VERIFY_16:
2600 return ata_scsi_verify_xlat;
Jeff Garzikb0955182005-05-12 15:45:22 -04002601
2602 case ATA_12:
2603 case ATA_16:
2604 return ata_scsi_pass_thru;
Jeff Garzikda613962005-08-29 19:01:43 -04002605
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04002606 case START_STOP:
2607 return ata_scsi_start_stop_xlat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
2609
2610 return NULL;
2611}
2612
2613/**
2614 * ata_scsi_dump_cdb - dump SCSI command contents to dmesg
2615 * @ap: ATA port to which the command was being sent
2616 * @cmd: SCSI command to dump
2617 *
2618 * Prints the contents of a SCSI command via printk().
2619 */
2620
2621static inline void ata_scsi_dump_cdb(struct ata_port *ap,
2622 struct scsi_cmnd *cmd)
2623{
2624#ifdef ATA_DEBUG
2625 struct scsi_device *scsidev = cmd->device;
2626 u8 *scsicmd = cmd->cmnd;
2627
2628 DPRINTK("CDB (%u:%d,%d,%d) %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
2629 ap->id,
2630 scsidev->channel, scsidev->id, scsidev->lun,
2631 scsicmd[0], scsicmd[1], scsicmd[2], scsicmd[3],
2632 scsicmd[4], scsicmd[5], scsicmd[6], scsicmd[7],
2633 scsicmd[8]);
2634#endif
2635}
2636
Tejun Heo2115ea92006-05-15 21:03:39 +09002637static inline int __ata_scsi_queuecmd(struct scsi_cmnd *cmd,
2638 void (*done)(struct scsi_cmnd *),
2639 struct ata_device *dev)
Brian Kingeb3f0f92006-03-23 17:30:02 -06002640{
Tejun Heo2115ea92006-05-15 21:03:39 +09002641 int rc = 0;
2642
Brian Kingeb3f0f92006-03-23 17:30:02 -06002643 if (dev->class == ATA_DEV_ATA) {
2644 ata_xlat_func_t xlat_func = ata_get_xlat_func(dev,
2645 cmd->cmnd[0]);
2646
2647 if (xlat_func)
Tejun Heo2115ea92006-05-15 21:03:39 +09002648 rc = ata_scsi_translate(dev, cmd, done, xlat_func);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002649 else
Tejun Heo3373efd2006-05-15 20:57:53 +09002650 ata_scsi_simulate(dev, cmd, done);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002651 } else
Tejun Heo2115ea92006-05-15 21:03:39 +09002652 rc = ata_scsi_translate(dev, cmd, done, atapi_xlat);
2653
2654 return rc;
Brian Kingeb3f0f92006-03-23 17:30:02 -06002655}
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657/**
2658 * ata_scsi_queuecmd - Issue SCSI cdb to libata-managed device
2659 * @cmd: SCSI command to be sent
2660 * @done: Completion function, called when command is complete
2661 *
2662 * In some cases, this function translates SCSI commands into
2663 * ATA taskfiles, and queues the taskfiles to be sent to
2664 * hardware. In other cases, this function simulates a
2665 * SCSI device by evaluating and responding to certain
2666 * SCSI commands. This creates the overall effect of
2667 * ATA and ATAPI devices appearing as SCSI devices.
2668 *
2669 * LOCKING:
2670 * Releases scsi-layer-held lock, and obtains host_set lock.
2671 *
2672 * RETURNS:
Tejun Heo2115ea92006-05-15 21:03:39 +09002673 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
2674 * 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
2677{
2678 struct ata_port *ap;
2679 struct ata_device *dev;
2680 struct scsi_device *scsidev = cmd->device;
Jeff Garzik005a5a02005-10-30 23:31:48 -05002681 struct Scsi_Host *shost = scsidev->host;
Tejun Heo2115ea92006-05-15 21:03:39 +09002682 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Jeff Garzik35bb94b2006-04-11 13:12:34 -04002684 ap = ata_shost_to_port(shost);
Jeff Garzik005a5a02005-10-30 23:31:48 -05002685
2686 spin_unlock(shost->host_lock);
2687 spin_lock(&ap->host_set->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
2689 ata_scsi_dump_cdb(ap, cmd);
2690
2691 dev = ata_scsi_find_dev(ap, scsidev);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002692 if (likely(dev))
Tejun Heo2115ea92006-05-15 21:03:39 +09002693 rc = __ata_scsi_queuecmd(cmd, done, dev);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002694 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 cmd->result = (DID_BAD_TARGET << 16);
2696 done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 }
2698
Jeff Garzik005a5a02005-10-30 23:31:48 -05002699 spin_unlock(&ap->host_set->lock);
2700 spin_lock(shost->host_lock);
Tejun Heo2115ea92006-05-15 21:03:39 +09002701 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702}
2703
2704/**
2705 * ata_scsi_simulate - simulate SCSI command on ATA device
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002706 * @dev: the target device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 * @cmd: SCSI command being sent to device.
2708 * @done: SCSI command completion function.
2709 *
2710 * Interprets and directly executes a select list of SCSI commands
2711 * that can be handled internally.
2712 *
2713 * LOCKING:
2714 * spin_lock_irqsave(host_set lock)
2715 */
2716
Tejun Heo3373efd2006-05-15 20:57:53 +09002717void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 void (*done)(struct scsi_cmnd *))
2719{
2720 struct ata_scsi_args args;
Jeff Garzik057ace52005-10-22 14:27:05 -04002721 const u8 *scsicmd = cmd->cmnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002723 args.dev = dev;
2724 args.id = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 args.cmd = cmd;
2726 args.done = done;
2727
2728 switch(scsicmd[0]) {
2729 /* no-op's, complete with success */
2730 case SYNCHRONIZE_CACHE:
2731 case REZERO_UNIT:
2732 case SEEK_6:
2733 case SEEK_10:
2734 case TEST_UNIT_READY:
2735 case FORMAT_UNIT: /* FIXME: correct? */
2736 case SEND_DIAGNOSTIC: /* FIXME: correct? */
2737 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
2738 break;
2739
2740 case INQUIRY:
2741 if (scsicmd[1] & 2) /* is CmdDt set? */
Douglas Gilbertae006512005-10-09 09:09:35 -04002742 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 else if ((scsicmd[1] & 1) == 0) /* is EVPD clear? */
2744 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_std);
2745 else if (scsicmd[2] == 0x00)
2746 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_00);
2747 else if (scsicmd[2] == 0x80)
2748 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_80);
2749 else if (scsicmd[2] == 0x83)
2750 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_83);
2751 else
Douglas Gilbertae006512005-10-09 09:09:35 -04002752 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 break;
2754
2755 case MODE_SENSE:
2756 case MODE_SENSE_10:
2757 ata_scsi_rbuf_fill(&args, ata_scsiop_mode_sense);
2758 break;
2759
2760 case MODE_SELECT: /* unconditionally return */
2761 case MODE_SELECT_10: /* bad-field-in-cdb */
Douglas Gilbertae006512005-10-09 09:09:35 -04002762 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 break;
2764
2765 case READ_CAPACITY:
2766 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
2767 break;
2768
2769 case SERVICE_ACTION_IN:
2770 if ((scsicmd[1] & 0x1f) == SAI_READ_CAPACITY_16)
2771 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
2772 else
Douglas Gilbertae006512005-10-09 09:09:35 -04002773 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 break;
2775
2776 case REPORT_LUNS:
2777 ata_scsi_rbuf_fill(&args, ata_scsiop_report_luns);
2778 break;
2779
Jeff Garzikb0955182005-05-12 15:45:22 -04002780 /* mandatory commands we haven't implemented yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 case REQUEST_SENSE:
2782
2783 /* all other commands */
2784 default:
Douglas Gilbertae006512005-10-09 09:09:35 -04002785 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x20, 0x0);
2786 /* "Invalid command operation code" */
2787 done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 break;
2789 }
2790}
2791
Jeff Garzik644dd0c2005-10-03 15:55:19 -04002792void ata_scsi_scan_host(struct ata_port *ap)
2793{
2794 unsigned int i;
2795
Tejun Heo198e0fe2006-04-02 18:51:52 +09002796 if (ap->flags & ATA_FLAG_DISABLED)
Jeff Garzik644dd0c2005-10-03 15:55:19 -04002797 return;
2798
Jeff Garzik3f19ee82005-10-03 21:36:41 -04002799 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heo3edebac2006-05-31 18:27:40 +09002800 struct ata_device *dev = &ap->device[i];
2801 struct scsi_device *sdev;
Jeff Garzik3f19ee82005-10-03 21:36:41 -04002802
Tejun Heo3edebac2006-05-31 18:27:40 +09002803 if (!ata_dev_enabled(dev) || dev->sdev)
2804 continue;
2805
2806 sdev = __scsi_add_device(ap->host, 0, i, 0, NULL);
2807 if (!IS_ERR(sdev)) {
2808 dev->sdev = sdev;
2809 scsi_device_put(sdev);
2810 }
Jeff Garzik3f19ee82005-10-03 21:36:41 -04002811 }
Jeff Garzik644dd0c2005-10-03 15:55:19 -04002812}
Tejun Heo0ea035a2006-05-31 18:28:01 +09002813
2814/**
2815 * ata_scsi_offline_dev - offline attached SCSI device
2816 * @dev: ATA device to offline attached SCSI device for
2817 *
2818 * This function is called from ata_eh_hotplug() and responsible
2819 * for taking the SCSI device attached to @dev offline. This
2820 * function is called with host_set lock which protects dev->sdev
2821 * against clearing.
2822 *
2823 * LOCKING:
2824 * spin_lock_irqsave(host_set lock)
2825 *
2826 * RETURNS:
2827 * 1 if attached SCSI device exists, 0 otherwise.
2828 */
2829int ata_scsi_offline_dev(struct ata_device *dev)
2830{
2831 if (dev->sdev) {
2832 scsi_device_set_state(dev->sdev, SDEV_OFFLINE);
2833 return 1;
2834 }
2835 return 0;
2836}
Tejun Heo580b2102006-05-31 18:28:05 +09002837
2838/**
2839 * ata_scsi_remove_dev - remove attached SCSI device
2840 * @dev: ATA device to remove attached SCSI device for
2841 *
2842 * This function is called from ata_eh_scsi_hotplug() and
2843 * responsible for removing the SCSI device attached to @dev.
2844 *
2845 * LOCKING:
2846 * Kernel thread context (may sleep).
2847 */
2848static void ata_scsi_remove_dev(struct ata_device *dev)
2849{
2850 struct ata_port *ap = dev->ap;
2851 struct scsi_device *sdev;
2852 unsigned long flags;
2853
2854 /* Alas, we need to grab scan_mutex to ensure SCSI device
2855 * state doesn't change underneath us and thus
2856 * scsi_device_get() always succeeds. The mutex locking can
2857 * be removed if there is __scsi_device_get() interface which
2858 * increments reference counts regardless of device state.
2859 */
2860 mutex_lock(&ap->host->scan_mutex);
2861 spin_lock_irqsave(&ap->host_set->lock, flags);
2862
2863 /* clearing dev->sdev is protected by host_set lock */
2864 sdev = dev->sdev;
2865 dev->sdev = NULL;
2866
2867 if (sdev) {
2868 /* If user initiated unplug races with us, sdev can go
2869 * away underneath us after the host_set lock and
2870 * scan_mutex are released. Hold onto it.
2871 */
2872 if (scsi_device_get(sdev) == 0) {
2873 /* The following ensures the attached sdev is
2874 * offline on return from ata_scsi_offline_dev()
2875 * regardless it wins or loses the race
2876 * against this function.
2877 */
2878 scsi_device_set_state(sdev, SDEV_OFFLINE);
2879 } else {
2880 WARN_ON(1);
2881 sdev = NULL;
2882 }
2883 }
2884
2885 spin_unlock_irqrestore(&ap->host_set->lock, flags);
2886 mutex_unlock(&ap->host->scan_mutex);
2887
2888 if (sdev) {
2889 ata_dev_printk(dev, KERN_INFO, "detaching (SCSI %s)\n",
2890 sdev->sdev_gendev.bus_id);
2891
2892 scsi_remove_device(sdev);
2893 scsi_device_put(sdev);
2894 }
2895}
2896
2897/**
2898 * ata_scsi_hotplug - SCSI part of hotplug
2899 * @data: Pointer to ATA port to perform SCSI hotplug on
2900 *
2901 * Perform SCSI part of hotplug. It's executed from a separate
2902 * workqueue after EH completes. This is necessary because SCSI
2903 * hot plugging requires working EH and hot unplugging is
2904 * synchronized with hot plugging with a mutex.
2905 *
2906 * LOCKING:
2907 * Kernel thread context (may sleep).
2908 */
2909void ata_scsi_hotplug(void *data)
2910{
2911 struct ata_port *ap = data;
2912 int i;
2913
2914 if (ap->flags & ATA_FLAG_UNLOADING) {
2915 DPRINTK("ENTER/EXIT - unloading\n");
2916 return;
2917 }
2918
2919 DPRINTK("ENTER\n");
2920
2921 /* unplug detached devices */
2922 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2923 struct ata_device *dev = &ap->device[i];
2924 unsigned long flags;
2925
2926 if (!(dev->flags & ATA_DFLAG_DETACHED))
2927 continue;
2928
2929 spin_lock_irqsave(&ap->host_set->lock, flags);
2930 dev->flags &= ~ATA_DFLAG_DETACHED;
2931 spin_unlock_irqrestore(&ap->host_set->lock, flags);
2932
2933 ata_scsi_remove_dev(dev);
2934 }
2935
2936 /* scan for new ones */
2937 ata_scsi_scan_host(ap);
2938
2939 /* If we scanned while EH was in progress, scan would have
2940 * failed silently. Requeue if there are enabled but
2941 * unattached devices.
2942 */
2943 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2944 struct ata_device *dev = &ap->device[i];
2945 if (ata_dev_enabled(dev) && !dev->sdev) {
2946 queue_delayed_work(ata_aux_wq, &ap->hotplug_task, HZ);
2947 break;
2948 }
2949 }
2950
2951 DPRINTK("EXIT\n");
2952}
Tejun Heo83c47bc2006-05-31 18:28:07 +09002953
2954/**
2955 * ata_scsi_user_scan - indication for user-initiated bus scan
2956 * @shost: SCSI host to scan
2957 * @channel: Channel to scan
2958 * @id: ID to scan
2959 * @lun: LUN to scan
2960 *
2961 * This function is called when user explicitly requests bus
2962 * scan. Set probe pending flag and invoke EH.
2963 *
2964 * LOCKING:
2965 * SCSI layer (we don't care)
2966 *
2967 * RETURNS:
2968 * Zero.
2969 */
2970static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
2971 unsigned int id, unsigned int lun)
2972{
2973 struct ata_port *ap = ata_shost_to_port(shost);
2974 unsigned long flags;
2975 int rc = 0;
2976
2977 if (!ap->ops->error_handler)
2978 return -EOPNOTSUPP;
2979
2980 if ((channel != SCAN_WILD_CARD && channel != 0) ||
2981 (lun != SCAN_WILD_CARD && lun != 0))
2982 return -EINVAL;
2983
2984 spin_lock_irqsave(&ap->host_set->lock, flags);
2985
2986 if (id == SCAN_WILD_CARD) {
2987 ap->eh_info.probe_mask |= (1 << ATA_MAX_DEVICES) - 1;
2988 ap->eh_info.action |= ATA_EH_SOFTRESET;
2989 } else {
2990 struct ata_device *dev = ata_find_dev(ap, id);
2991
2992 if (dev) {
2993 ap->eh_info.probe_mask |= 1 << dev->devno;
2994 ap->eh_info.action |= ATA_EH_SOFTRESET;
2995 } else
2996 rc = -EINVAL;
2997 }
2998
2999 if (rc == 0)
3000 ata_port_schedule_eh(ap);
3001
3002 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3003
3004 return rc;
3005}
zhao, forrest3057ac32006-06-12 12:01:34 +08003006
3007/**
3008 * ata_scsi_dev_rescan - initiate scsi_rescan_device()
3009 * @data: Pointer to ATA port to perform scsi_rescan_device()
3010 *
3011 * After ATA pass thru (SAT) commands are executed successfully,
3012 * libata need to propagate the changes to SCSI layer.
3013 *
3014 * LOCKING:
3015 * Kernel thread context (may sleep).
3016 */
3017void ata_scsi_dev_rescan(void *data)
3018{
3019 struct ata_port *ap = data;
3020 struct ata_device *dev;
3021 unsigned int i;
3022
3023 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3024 dev = &ap->device[i];
3025
3026 if (ata_dev_enabled(dev))
3027 scsi_rescan_device(&(dev->sdev->sdev_gendev));
3028 }
3029}
3030