blob: b0d0cc41f3e8332041195a71e97c98405a04650c [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>
Christoph Hellwigbeb40482006-06-10 18:01:03 +020041#include <scsi/scsi_cmnd.h>
Mike Christie85837eb2005-11-11 16:38:53 -060042#include <scsi/scsi_eh.h>
Jeff Garzik005a5a02005-10-30 23:31:48 -050043#include <scsi/scsi_device.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:
Jesper Juhl8f760782006-06-27 02:55:06 -0700225 kfree(argbuf);
Jeff Garzikb0955182005-05-12 15:45:22 -0400226 return rc;
227}
228
229/**
230 * ata_task_ioctl - Handler for HDIO_DRIVE_TASK ioctl
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800231 * @scsidev: Device to which we are issuing command
Jeff Garzikb0955182005-05-12 15:45:22 -0400232 * @arg: User provided data for issuing command
233 *
234 * LOCKING:
235 * Defined by the SCSI layer. We don't really care.
236 *
237 * RETURNS:
238 * Zero on success, negative errno on error.
239 */
240int ata_task_ioctl(struct scsi_device *scsidev, void __user *arg)
241{
242 int rc = 0;
243 u8 scsi_cmd[MAX_COMMAND_SIZE];
244 u8 args[7];
Mike Christie85837eb2005-11-11 16:38:53 -0600245 struct scsi_sense_hdr sshdr;
Jeff Garzikb0955182005-05-12 15:45:22 -0400246
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500247 if (arg == NULL)
Jeff Garzikb0955182005-05-12 15:45:22 -0400248 return -EINVAL;
249
250 if (copy_from_user(args, arg, sizeof(args)))
251 return -EFAULT;
252
253 memset(scsi_cmd, 0, sizeof(scsi_cmd));
254 scsi_cmd[0] = ATA_16;
255 scsi_cmd[1] = (3 << 1); /* Non-data */
256 /* scsi_cmd[2] is already 0 -- no off.line, cc, or data xfer */
257 scsi_cmd[4] = args[1];
258 scsi_cmd[6] = args[2];
259 scsi_cmd[8] = args[3];
260 scsi_cmd[10] = args[4];
261 scsi_cmd[12] = args[5];
262 scsi_cmd[14] = args[0];
263
Jeff Garzikb0955182005-05-12 15:45:22 -0400264 /* Good values for timeout and retries? Values below
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500265 from scsi_ioctl_send_command() for default case... */
Mike Christie85837eb2005-11-11 16:38:53 -0600266 if (scsi_execute_req(scsidev, scsi_cmd, DMA_NONE, NULL, 0, &sshdr,
267 (10*HZ), 5))
Jeff Garzikb0955182005-05-12 15:45:22 -0400268 rc = -EIO;
Jeff Garzikb0955182005-05-12 15:45:22 -0400269
270 /* Need code to retrieve data from check condition? */
Jeff Garzikb0955182005-05-12 15:45:22 -0400271 return rc;
272}
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274int ata_scsi_ioctl(struct scsi_device *scsidev, int cmd, void __user *arg)
275{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 int val = -EINVAL, rc = -EINVAL;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 switch (cmd) {
279 case ATA_IOC_GET_IO32:
280 val = 0;
281 if (copy_to_user(arg, &val, 1))
282 return -EFAULT;
283 return 0;
284
285 case ATA_IOC_SET_IO32:
286 val = (unsigned long) arg;
287 if (val != 0)
288 return -EINVAL;
289 return 0;
290
Jeff Garzikb0955182005-05-12 15:45:22 -0400291 case HDIO_DRIVE_CMD:
292 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
293 return -EACCES;
294 return ata_cmd_ioctl(scsidev, arg);
295
296 case HDIO_DRIVE_TASK:
297 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
298 return -EACCES;
299 return ata_task_ioctl(scsidev, arg);
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 default:
302 rc = -ENOTTY;
303 break;
304 }
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return rc;
307}
308
309/**
310 * ata_scsi_qc_new - acquire new ata_queued_cmd reference
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 * @dev: ATA device to which the new command is attached
312 * @cmd: SCSI command that originated this ATA command
313 * @done: SCSI command completion function
314 *
315 * Obtain a reference to an unused ata_queued_cmd structure,
316 * which is the basic libata structure representing a single
317 * ATA command sent to the hardware.
318 *
319 * If a command was available, fill in the SCSI-specific
320 * portions of the structure with information on the
321 * current command.
322 *
323 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400324 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 *
326 * RETURNS:
327 * Command allocated, or %NULL if none available.
328 */
Tejun Heo3373efd2006-05-15 20:57:53 +0900329struct ata_queued_cmd *ata_scsi_qc_new(struct ata_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 struct scsi_cmnd *cmd,
331 void (*done)(struct scsi_cmnd *))
332{
333 struct ata_queued_cmd *qc;
334
Tejun Heo3373efd2006-05-15 20:57:53 +0900335 qc = ata_qc_new_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (qc) {
337 qc->scsicmd = cmd;
338 qc->scsidone = done;
339
340 if (cmd->use_sg) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400341 qc->__sg = (struct scatterlist *) cmd->request_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 qc->n_elem = cmd->use_sg;
343 } else {
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400344 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 qc->n_elem = 1;
346 }
347 } else {
348 cmd->result = (DID_OK << 16) | (QUEUE_FULL << 1);
349 done(cmd);
350 }
351
352 return qc;
353}
354
355/**
Jeff Garzikb0955182005-05-12 15:45:22 -0400356 * ata_dump_status - user friendly display of error info
357 * @id: id of the port in question
358 * @tf: ptr to filled out taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
Jeff Garzikb0955182005-05-12 15:45:22 -0400360 * Decode and dump the ATA error/status registers for the user so
361 * that they have some idea what really happened at the non
362 * make-believe layer.
363 *
364 * LOCKING:
365 * inherited from caller
366 */
367void ata_dump_status(unsigned id, struct ata_taskfile *tf)
368{
369 u8 stat = tf->command, err = tf->feature;
370
371 printk(KERN_WARNING "ata%u: status=0x%02x { ", id, stat);
372 if (stat & ATA_BUSY) {
373 printk("Busy }\n"); /* Data is not valid in this case */
374 } else {
375 if (stat & 0x40) printk("DriveReady ");
376 if (stat & 0x20) printk("DeviceFault ");
377 if (stat & 0x10) printk("SeekComplete ");
378 if (stat & 0x08) printk("DataRequest ");
379 if (stat & 0x04) printk("CorrectedError ");
380 if (stat & 0x02) printk("Index ");
381 if (stat & 0x01) printk("Error ");
382 printk("}\n");
383
384 if (err) {
385 printk(KERN_WARNING "ata%u: error=0x%02x { ", id, err);
386 if (err & 0x04) printk("DriveStatusError ");
387 if (err & 0x80) {
388 if (err & 0x04) printk("BadCRC ");
389 else printk("Sector ");
390 }
391 if (err & 0x40) printk("UncorrectableError ");
392 if (err & 0x10) printk("SectorIdNotFound ");
393 if (err & 0x02) printk("TrackZeroNotFound ");
394 if (err & 0x01) printk("AddrMarkNotFound ");
395 printk("}\n");
396 }
397 }
398}
399
Tejun Heod6f26d12006-07-03 16:07:26 +0900400/**
401 * ata_scsi_device_suspend - suspend ATA device associated with sdev
402 * @sdev: the SCSI device to suspend
Tejun Heo3c5100c2006-07-26 16:58:33 +0900403 * @mesg: target power management message
Tejun Heod6f26d12006-07-03 16:07:26 +0900404 *
405 * Request suspend EH action on the ATA device associated with
406 * @sdev and wait for the operation to complete.
407 *
408 * LOCKING:
409 * Kernel thread context (may sleep).
410 *
411 * RETURNS:
412 * 0 on success, -errno otherwise.
413 */
Tejun Heo3c5100c2006-07-26 16:58:33 +0900414int ata_scsi_device_suspend(struct scsi_device *sdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +0100415{
Jeff Garzik35bb94b2006-04-11 13:12:34 -0400416 struct ata_port *ap = ata_shost_to_port(sdev->host);
Tejun Heod6f26d12006-07-03 16:07:26 +0900417 struct ata_device *dev = ata_scsi_find_dev(ap, sdev);
418 unsigned long flags;
419 unsigned int action;
420 int rc = 0;
Jens Axboe9b847542006-01-06 09:28:07 +0100421
Tejun Heod6f26d12006-07-03 16:07:26 +0900422 if (!dev)
423 goto out;
424
425 spin_lock_irqsave(ap->lock, flags);
426
427 /* wait for the previous resume to complete */
428 while (dev->flags & ATA_DFLAG_SUSPENDED) {
429 spin_unlock_irqrestore(ap->lock, flags);
430 ata_port_wait_eh(ap);
431 spin_lock_irqsave(ap->lock, flags);
432 }
433
434 /* if @sdev is already detached, nothing to do */
435 if (sdev->sdev_state == SDEV_OFFLINE ||
436 sdev->sdev_state == SDEV_CANCEL || sdev->sdev_state == SDEV_DEL)
437 goto out_unlock;
438
439 /* request suspend */
440 action = ATA_EH_SUSPEND;
Tejun Heo3c5100c2006-07-26 16:58:33 +0900441 if (mesg.event != PM_EVENT_SUSPEND)
Tejun Heod6f26d12006-07-03 16:07:26 +0900442 action |= ATA_EH_PM_FREEZE;
443 ap->eh_info.dev_action[dev->devno] |= action;
444 ap->eh_info.flags |= ATA_EHI_QUIET;
445 ata_port_schedule_eh(ap);
446
447 spin_unlock_irqrestore(ap->lock, flags);
448
449 /* wait for EH to do the job */
450 ata_port_wait_eh(ap);
451
452 spin_lock_irqsave(ap->lock, flags);
453
454 /* If @sdev is still attached but the associated ATA device
455 * isn't suspended, the operation failed.
456 */
457 if (sdev->sdev_state != SDEV_OFFLINE &&
458 sdev->sdev_state != SDEV_CANCEL && sdev->sdev_state != SDEV_DEL &&
459 !(dev->flags & ATA_DFLAG_SUSPENDED))
460 rc = -EIO;
461
462 out_unlock:
463 spin_unlock_irqrestore(ap->lock, flags);
464 out:
465 if (rc == 0)
Tejun Heo3c5100c2006-07-26 16:58:33 +0900466 sdev->sdev_gendev.power.power_state = mesg;
Tejun Heod6f26d12006-07-03 16:07:26 +0900467 return rc;
468}
469
470/**
471 * ata_scsi_device_resume - resume ATA device associated with sdev
472 * @sdev: the SCSI device to resume
473 *
474 * Request resume EH action on the ATA device associated with
475 * @sdev and return immediately. This enables parallel
476 * wakeup/spinup of devices.
477 *
478 * LOCKING:
479 * Kernel thread context (may sleep).
480 *
481 * RETURNS:
482 * 0.
483 */
484int ata_scsi_device_resume(struct scsi_device *sdev)
485{
486 struct ata_port *ap = ata_shost_to_port(sdev->host);
487 struct ata_device *dev = ata_scsi_find_dev(ap, sdev);
488 struct ata_eh_info *ehi = &ap->eh_info;
489 unsigned long flags;
490 unsigned int action;
491
492 if (!dev)
493 goto out;
494
495 spin_lock_irqsave(ap->lock, flags);
496
497 /* if @sdev is already detached, nothing to do */
498 if (sdev->sdev_state == SDEV_OFFLINE ||
499 sdev->sdev_state == SDEV_CANCEL || sdev->sdev_state == SDEV_DEL)
500 goto out_unlock;
501
502 /* request resume */
503 action = ATA_EH_RESUME;
504 if (sdev->sdev_gendev.power.power_state.event == PM_EVENT_SUSPEND)
505 __ata_ehi_hotplugged(ehi);
506 else
507 action |= ATA_EH_PM_FREEZE | ATA_EH_SOFTRESET;
508 ehi->dev_action[dev->devno] |= action;
509
510 /* We don't want autopsy and verbose EH messages. Disable
511 * those if we're the only device on this link.
512 */
513 if (ata_port_max_devices(ap) == 1)
514 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
515
516 ata_port_schedule_eh(ap);
517
518 out_unlock:
519 spin_unlock_irqrestore(ap->lock, flags);
520 out:
521 sdev->sdev_gendev.power.power_state = PMSG_ON;
522 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +0100523}
524
Jeff Garzikb0955182005-05-12 15:45:22 -0400525/**
526 * ata_to_sense_error - convert ATA error to SCSI error
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800527 * @id: ATA device number
Jeff Garzikb0955182005-05-12 15:45:22 -0400528 * @drv_stat: value contained in ATA status register
529 * @drv_err: value contained in ATA error register
530 * @sk: the sense key we'll fill out
531 * @asc: the additional sense code we'll fill out
532 * @ascq: the additional sense code qualifier we'll fill out
Tejun Heo246619d2006-05-15 20:58:16 +0900533 * @verbose: be verbose
Jeff Garzikb0955182005-05-12 15:45:22 -0400534 *
535 * Converts an ATA error into a SCSI error. Fill out pointers to
536 * SK, ASC, and ASCQ bytes for later use in fixed or descriptor
537 * format sense blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 *
539 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400540 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500542void ata_to_sense_error(unsigned id, u8 drv_stat, u8 drv_err, u8 *sk, u8 *asc,
Tejun Heo246619d2006-05-15 20:58:16 +0900543 u8 *ascq, int verbose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Jeff Garzikb0955182005-05-12 15:45:22 -0400545 int i;
Jeff Garzikffe75ef2005-10-09 10:40:44 -0400546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* Based on the 3ware driver translation table */
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100548 static const unsigned char sense_table[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* BBD|ECC|ID|MAR */
550 {0xd1, ABORTED_COMMAND, 0x00, 0x00}, // Device busy Aborted command
551 /* BBD|ECC|ID */
552 {0xd0, ABORTED_COMMAND, 0x00, 0x00}, // Device busy Aborted command
553 /* ECC|MC|MARK */
554 {0x61, HARDWARE_ERROR, 0x00, 0x00}, // Device fault Hardware error
555 /* ICRC|ABRT */ /* NB: ICRC & !ABRT is BBD */
556 {0x84, ABORTED_COMMAND, 0x47, 0x00}, // Data CRC error SCSI parity error
557 /* MC|ID|ABRT|TRK0|MARK */
558 {0x37, NOT_READY, 0x04, 0x00}, // Unit offline Not ready
559 /* MCR|MARK */
560 {0x09, NOT_READY, 0x04, 0x00}, // Unrecovered disk error Not ready
561 /* Bad address mark */
562 {0x01, MEDIUM_ERROR, 0x13, 0x00}, // Address mark not found Address mark not found for data field
563 /* TRK0 */
564 {0x02, HARDWARE_ERROR, 0x00, 0x00}, // Track 0 not found Hardware error
565 /* Abort & !ICRC */
566 {0x04, ABORTED_COMMAND, 0x00, 0x00}, // Aborted command Aborted command
567 /* Media change request */
568 {0x08, NOT_READY, 0x04, 0x00}, // Media change request FIXME: faking offline
569 /* SRV */
570 {0x10, ABORTED_COMMAND, 0x14, 0x00}, // ID not found Recorded entity not found
571 /* Media change */
572 {0x08, NOT_READY, 0x04, 0x00}, // Media change FIXME: faking offline
573 /* ECC */
574 {0x40, MEDIUM_ERROR, 0x11, 0x04}, // Uncorrectable ECC error Unrecovered read error
575 /* BBD - block marked bad */
576 {0x80, MEDIUM_ERROR, 0x11, 0x04}, // Block marked bad Medium error, unrecovered read error
577 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
578 };
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100579 static const unsigned char stat_table[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /* Must be first because BUSY means no other bits valid */
581 {0x80, ABORTED_COMMAND, 0x47, 0x00}, // Busy, fake parity for now
582 {0x20, HARDWARE_ERROR, 0x00, 0x00}, // Device fault
583 {0x08, ABORTED_COMMAND, 0x47, 0x00}, // Timed out in xfer, fake parity for now
584 {0x04, RECOVERED_ERROR, 0x11, 0x00}, // Recovered ECC error Medium error, recovered
585 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
586 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /*
589 * Is this an error we can process/parse
590 */
Jeff Garzikb0955182005-05-12 15:45:22 -0400591 if (drv_stat & ATA_BUSY) {
592 drv_err = 0; /* Ignore the err bits, they're invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Jeff Garzikb0955182005-05-12 15:45:22 -0400595 if (drv_err) {
596 /* Look for drv_err */
597 for (i = 0; sense_table[i][0] != 0xFF; i++) {
598 /* Look for best matches first */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500599 if ((sense_table[i][0] & drv_err) ==
Jeff Garzikb0955182005-05-12 15:45:22 -0400600 sense_table[i][0]) {
601 *sk = sense_table[i][1];
602 *asc = sense_table[i][2];
603 *ascq = sense_table[i][3];
604 goto translate_done;
605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400607 /* No immediate match */
Tejun Heo246619d2006-05-15 20:58:16 +0900608 if (verbose)
609 printk(KERN_WARNING "ata%u: no sense translation for "
610 "error 0x%02x\n", id, drv_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* Fall back to interpreting status bits */
Jeff Garzikb0955182005-05-12 15:45:22 -0400614 for (i = 0; stat_table[i][0] != 0xFF; i++) {
615 if (stat_table[i][0] & drv_stat) {
616 *sk = stat_table[i][1];
617 *asc = stat_table[i][2];
618 *ascq = stat_table[i][3];
619 goto translate_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400622 /* No error? Undecoded? */
Tejun Heo246619d2006-05-15 20:58:16 +0900623 if (verbose)
624 printk(KERN_WARNING "ata%u: no sense translation for "
625 "status: 0x%02x\n", id, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Alan Cox2d202022006-03-21 15:53:46 +0000627 /* We need a sensible error return here, which is tricky, and one
628 that won't cause people to do things like return a disk wrongly */
629 *sk = ABORTED_COMMAND;
630 *asc = 0x00;
631 *ascq = 0x00;
Jeff Garzikb0955182005-05-12 15:45:22 -0400632
633 translate_done:
Tejun Heo246619d2006-05-15 20:58:16 +0900634 if (verbose)
635 printk(KERN_ERR "ata%u: translated ATA stat/err 0x%02x/%02x "
636 "to SCSI SK/ASC/ASCQ 0x%x/%02x/%02x\n",
637 id, drv_stat, drv_err, *sk, *asc, *ascq);
Jeff Garzikb0955182005-05-12 15:45:22 -0400638 return;
639}
640
641/*
642 * ata_gen_ata_desc_sense - Generate check condition sense block.
643 * @qc: Command that completed.
644 *
645 * This function is specific to the ATA descriptor format sense
646 * block specified for the ATA pass through commands. Regardless
647 * of whether the command errored or not, return a sense
648 * block. Copy all controller registers into the sense
649 * block. Clear sense key, ASC & ASCQ if there is no error.
650 *
651 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400652 * spin_lock_irqsave(host lock)
Jeff Garzikb0955182005-05-12 15:45:22 -0400653 */
654void ata_gen_ata_desc_sense(struct ata_queued_cmd *qc)
655{
656 struct scsi_cmnd *cmd = qc->scsicmd;
Tejun Heoe61e0672006-05-15 20:57:40 +0900657 struct ata_taskfile *tf = &qc->result_tf;
Jeff Garzikb0955182005-05-12 15:45:22 -0400658 unsigned char *sb = cmd->sense_buffer;
659 unsigned char *desc = sb + 8;
Tejun Heo246619d2006-05-15 20:58:16 +0900660 int verbose = qc->ap->ops->error_handler == NULL;
Jeff Garzikb0955182005-05-12 15:45:22 -0400661
662 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
663
Jeff Garzik0e5dec42005-10-06 09:40:20 -0400664 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
Jeff Garzikb0955182005-05-12 15:45:22 -0400665
666 /*
Jeff Garzikb0955182005-05-12 15:45:22 -0400667 * Use ata_to_sense_error() to map status register bits
668 * onto sense key, asc & ascq.
669 */
Tejun Heo058e55e2006-04-02 18:51:53 +0900670 if (qc->err_mask ||
671 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400672 ata_to_sense_error(qc->ap->id, tf->command, tf->feature,
Tejun Heo246619d2006-05-15 20:58:16 +0900673 &sb[1], &sb[2], &sb[3], verbose);
Jeff Garzikb0955182005-05-12 15:45:22 -0400674 sb[1] &= 0x0f;
675 }
676
677 /*
678 * Sense data is current and format is descriptor.
679 */
680 sb[0] = 0x72;
681
682 desc[0] = 0x09;
683
684 /*
685 * Set length of additional sense data.
686 * Since we only populate descriptor 0, the total
687 * length is the same (fixed) length as descriptor 0.
688 */
689 desc[1] = sb[7] = 14;
690
691 /*
692 * Copy registers into sense buffer.
693 */
694 desc[2] = 0x00;
695 desc[3] = tf->feature; /* == error reg */
696 desc[5] = tf->nsect;
697 desc[7] = tf->lbal;
698 desc[9] = tf->lbam;
699 desc[11] = tf->lbah;
700 desc[12] = tf->device;
701 desc[13] = tf->command; /* == status reg */
702
703 /*
704 * Fill in Extend bit, and the high order bytes
705 * if applicable.
706 */
707 if (tf->flags & ATA_TFLAG_LBA48) {
708 desc[2] |= 0x01;
709 desc[4] = tf->hob_nsect;
710 desc[6] = tf->hob_lbal;
711 desc[8] = tf->hob_lbam;
712 desc[10] = tf->hob_lbah;
713 }
714}
715
716/**
717 * ata_gen_fixed_sense - generate a SCSI fixed sense block
718 * @qc: Command that we are erroring out
719 *
720 * Leverage ata_to_sense_error() to give us the codes. Fit our
721 * LBA in here if there's room.
722 *
723 * LOCKING:
724 * inherited from caller
725 */
726void ata_gen_fixed_sense(struct ata_queued_cmd *qc)
727{
728 struct scsi_cmnd *cmd = qc->scsicmd;
Tejun Heoe61e0672006-05-15 20:57:40 +0900729 struct ata_taskfile *tf = &qc->result_tf;
Jeff Garzikb0955182005-05-12 15:45:22 -0400730 unsigned char *sb = cmd->sense_buffer;
Tejun Heo246619d2006-05-15 20:58:16 +0900731 int verbose = qc->ap->ops->error_handler == NULL;
Jeff Garzikb0955182005-05-12 15:45:22 -0400732
733 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
734
Jeff Garzik0e5dec42005-10-06 09:40:20 -0400735 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
Jeff Garzikb0955182005-05-12 15:45:22 -0400736
737 /*
Jeff Garzikb0955182005-05-12 15:45:22 -0400738 * Use ata_to_sense_error() to map status register bits
739 * onto sense key, asc & ascq.
740 */
Tejun Heo058e55e2006-04-02 18:51:53 +0900741 if (qc->err_mask ||
742 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400743 ata_to_sense_error(qc->ap->id, tf->command, tf->feature,
Tejun Heo246619d2006-05-15 20:58:16 +0900744 &sb[2], &sb[12], &sb[13], verbose);
Jeff Garzikb0955182005-05-12 15:45:22 -0400745 sb[2] &= 0x0f;
746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 sb[0] = 0x70;
Jeff Garzikb0955182005-05-12 15:45:22 -0400749 sb[7] = 0x0a;
Jeff Garzik0274aa22005-06-22 13:50:56 -0400750
Jeff Garzika7dac442005-10-30 04:44:42 -0500751 if (tf->flags & ATA_TFLAG_LBA48) {
752 /* TODO: find solution for LBA48 descriptors */
753 }
754
755 else if (tf->flags & ATA_TFLAG_LBA) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400756 /* A small (28b) LBA will fit in the 32b info field */
757 sb[0] |= 0x80; /* set valid bit */
758 sb[3] = tf->device & 0x0f;
759 sb[4] = tf->lbah;
760 sb[5] = tf->lbam;
761 sb[6] = tf->lbal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Jeff Garzika7dac442005-10-30 04:44:42 -0500763
764 else {
765 /* TODO: C/H/S */
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Brian Kinga6cce2a2006-03-17 17:04:15 -0600769static void ata_scsi_sdev_config(struct scsi_device *sdev)
770{
771 sdev->use_10_for_rw = 1;
772 sdev->use_10_for_ms = 1;
773}
774
775static void ata_scsi_dev_config(struct scsi_device *sdev,
776 struct ata_device *dev)
777{
778 unsigned int max_sectors;
779
780 /* TODO: 2048 is an arbitrary number, not the
781 * hardware maximum. This should be increased to
782 * 65534 when Jens Axboe's patch for dynamically
783 * determining max_sectors is merged.
784 */
785 max_sectors = ATA_MAX_SECTORS;
786 if (dev->flags & ATA_DFLAG_LBA48)
Tejun Heo200d5a72006-02-15 16:24:49 +0900787 max_sectors = ATA_MAX_SECTORS_LBA48;
Brian Kinga6cce2a2006-03-17 17:04:15 -0600788 if (dev->max_sectors)
789 max_sectors = dev->max_sectors;
790
791 blk_queue_max_sectors(sdev->request_queue, max_sectors);
792
793 /*
794 * SATA DMA transfers must be multiples of 4 byte, so
795 * we need to pad ATAPI transfers using an extra sg.
796 * Decrement max hw segments accordingly.
797 */
798 if (dev->class == ATA_DEV_ATAPI) {
799 request_queue_t *q = sdev->request_queue;
800 blk_queue_max_hw_segments(q, q->max_hw_segments - 1);
801 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +0900802
803 if (dev->flags & ATA_DFLAG_NCQ) {
804 int depth;
805
806 depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id));
807 depth = min(ATA_MAX_QUEUE - 1, depth);
808 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, depth);
809 }
Brian Kinga6cce2a2006-03-17 17:04:15 -0600810}
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/**
813 * ata_scsi_slave_config - Set SCSI device attributes
814 * @sdev: SCSI device to examine
815 *
816 * This is called before we actually start reading
817 * and writing to the device, to configure certain
818 * SCSI mid-layer behaviors.
819 *
820 * LOCKING:
821 * Defined by SCSI layer. We don't really care.
822 */
823
824int ata_scsi_slave_config(struct scsi_device *sdev)
825{
Tejun Heo31534362006-05-31 18:27:36 +0900826 struct ata_port *ap = ata_shost_to_port(sdev->host);
827 struct ata_device *dev = __ata_scsi_find_dev(ap, sdev);
828
Brian Kinga6cce2a2006-03-17 17:04:15 -0600829 ata_scsi_sdev_config(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 blk_queue_max_phys_segments(sdev->request_queue, LIBATA_MAX_PRD);
832
Tejun Heo31534362006-05-31 18:27:36 +0900833 if (dev)
Brian Kinga6cce2a2006-03-17 17:04:15 -0600834 ata_scsi_dev_config(sdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 return 0; /* scsi layer doesn't check return value, sigh */
837}
838
839/**
Tejun Heo83c47bc2006-05-31 18:28:07 +0900840 * ata_scsi_slave_destroy - SCSI device is about to be destroyed
841 * @sdev: SCSI device to be destroyed
842 *
843 * @sdev is about to be destroyed for hot/warm unplugging. If
844 * this unplugging was initiated by libata as indicated by NULL
845 * dev->sdev, this function doesn't have to do anything.
846 * Otherwise, SCSI layer initiated warm-unplug is in progress.
847 * Clear dev->sdev, schedule the device for ATA detach and invoke
848 * EH.
849 *
850 * LOCKING:
851 * Defined by SCSI layer. We don't really care.
852 */
853void ata_scsi_slave_destroy(struct scsi_device *sdev)
854{
855 struct ata_port *ap = ata_shost_to_port(sdev->host);
856 unsigned long flags;
857 struct ata_device *dev;
858
859 if (!ap->ops->error_handler)
860 return;
861
Jeff Garzikba6a1302006-06-22 23:46:10 -0400862 spin_lock_irqsave(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +0900863 dev = __ata_scsi_find_dev(ap, sdev);
864 if (dev && dev->sdev) {
865 /* SCSI device already in CANCEL state, no need to offline it */
866 dev->sdev = NULL;
867 dev->flags |= ATA_DFLAG_DETACH;
868 ata_port_schedule_eh(ap);
869 }
Jeff Garzikba6a1302006-06-22 23:46:10 -0400870 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +0900871}
872
873/**
Tejun Heoa6e6ce82006-05-15 21:03:48 +0900874 * ata_scsi_change_queue_depth - SCSI callback for queue depth config
875 * @sdev: SCSI device to configure queue depth for
876 * @queue_depth: new queue depth
877 *
878 * This is libata standard hostt->change_queue_depth callback.
879 * SCSI will call into this callback when user tries to set queue
880 * depth via sysfs.
881 *
882 * LOCKING:
883 * SCSI layer (we don't care)
884 *
885 * RETURNS:
886 * Newly configured queue depth.
887 */
888int ata_scsi_change_queue_depth(struct scsi_device *sdev, int queue_depth)
889{
890 struct ata_port *ap = ata_shost_to_port(sdev->host);
891 struct ata_device *dev;
Tejun Heo360f6542006-09-30 19:45:00 +0900892 unsigned long flags;
Tejun Heoa6e6ce82006-05-15 21:03:48 +0900893 int max_depth;
894
895 if (queue_depth < 1)
896 return sdev->queue_depth;
897
898 dev = ata_scsi_find_dev(ap, sdev);
899 if (!dev || !ata_dev_enabled(dev))
900 return sdev->queue_depth;
901
902 max_depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id));
903 max_depth = min(ATA_MAX_QUEUE - 1, max_depth);
904 if (queue_depth > max_depth)
905 queue_depth = max_depth;
906
907 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, queue_depth);
Tejun Heo360f6542006-09-30 19:45:00 +0900908
909 spin_lock_irqsave(ap->lock, flags);
910 if (queue_depth > 1)
911 dev->flags &= ~ATA_DFLAG_NCQ_OFF;
912 else
913 dev->flags |= ATA_DFLAG_NCQ_OFF;
914 spin_unlock_irqrestore(ap->lock, flags);
915
Tejun Heoa6e6ce82006-05-15 21:03:48 +0900916 return queue_depth;
917}
918
919/**
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400920 * ata_scsi_start_stop_xlat - Translate SCSI START STOP UNIT command
921 * @qc: Storage for translated ATA taskfile
922 * @scsicmd: SCSI command to translate
923 *
924 * Sets up an ATA taskfile to issue STANDBY (to stop) or READ VERIFY
925 * (to start). Perhaps these commands should be preceded by
926 * CHECK POWER MODE to see what power mode the device is already in.
927 * [See SAT revision 5 at www.t10.org]
928 *
929 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400930 * spin_lock_irqsave(host lock)
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400931 *
932 * RETURNS:
933 * Zero on success, non-zero on error.
934 */
935
936static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc,
Jeff Garzik057ace52005-10-22 14:27:05 -0400937 const u8 *scsicmd)
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400938{
939 struct ata_taskfile *tf = &qc->tf;
940
941 tf->flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
942 tf->protocol = ATA_PROT_NODATA;
943 if (scsicmd[1] & 0x1) {
944 ; /* ignore IMMED bit, violates sat-r05 */
945 }
946 if (scsicmd[4] & 0x2)
Douglas Gilbertae006512005-10-09 09:09:35 -0400947 goto invalid_fld; /* LOEJ bit set not supported */
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400948 if (((scsicmd[4] >> 4) & 0xf) != 0)
Douglas Gilbertae006512005-10-09 09:09:35 -0400949 goto invalid_fld; /* power conditions not supported */
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400950 if (scsicmd[4] & 0x1) {
951 tf->nsect = 1; /* 1 sector, lba=0 */
Albert Lee9d5b1302005-10-04 08:48:17 -0400952
953 if (qc->dev->flags & ATA_DFLAG_LBA) {
Tejun Heoc44078c2006-05-15 20:57:21 +0900954 tf->flags |= ATA_TFLAG_LBA;
Albert Lee9d5b1302005-10-04 08:48:17 -0400955
956 tf->lbah = 0x0;
957 tf->lbam = 0x0;
958 tf->lbal = 0x0;
959 tf->device |= ATA_LBA;
960 } else {
961 /* CHS */
962 tf->lbal = 0x1; /* sect */
963 tf->lbam = 0x0; /* cyl low */
964 tf->lbah = 0x0; /* cyl high */
965 }
966
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400967 tf->command = ATA_CMD_VERIFY; /* READ VERIFY */
968 } else {
969 tf->nsect = 0; /* time period value (0 implies now) */
970 tf->command = ATA_CMD_STANDBY;
971 /* Consider: ATA STANDBY IMMEDIATE command */
972 }
973 /*
974 * Standby and Idle condition timers could be implemented but that
975 * would require libata to implement the Power condition mode page
976 * and allow the user to change it. Changing mode pages requires
977 * MODE SELECT to be implemented.
978 */
979
980 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -0400981
982invalid_fld:
983 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x24, 0x0);
984 /* "Invalid field in cbd" */
985 return 1;
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400986}
987
988
989/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 * ata_scsi_flush_xlat - Translate SCSI SYNCHRONIZE CACHE command
991 * @qc: Storage for translated ATA taskfile
992 * @scsicmd: SCSI command to translate (ignored)
993 *
994 * Sets up an ATA taskfile to issue FLUSH CACHE or
995 * FLUSH CACHE EXT.
996 *
997 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400998 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 *
1000 * RETURNS:
1001 * Zero on success, non-zero on error.
1002 */
1003
Jeff Garzik057ace52005-10-22 14:27:05 -04001004static unsigned int ata_scsi_flush_xlat(struct ata_queued_cmd *qc, const u8 *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 struct ata_taskfile *tf = &qc->tf;
1007
1008 tf->flags |= ATA_TFLAG_DEVICE;
1009 tf->protocol = ATA_PROT_NODATA;
1010
Albert Lee07506692005-10-12 15:04:18 +08001011 if ((qc->dev->flags & ATA_DFLAG_LBA48) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 (ata_id_has_flush_ext(qc->dev->id)))
1013 tf->command = ATA_CMD_FLUSH_EXT;
1014 else
1015 tf->command = ATA_CMD_FLUSH;
1016
1017 return 0;
1018}
1019
1020/**
Albert Lee3aef5232005-10-04 08:47:43 -04001021 * scsi_6_lba_len - Get LBA and transfer length
1022 * @scsicmd: SCSI command to translate
1023 *
1024 * Calculate LBA and transfer length for 6-byte commands.
1025 *
1026 * RETURNS:
1027 * @plba: the LBA
1028 * @plen: the transfer length
1029 */
1030
Jeff Garzik057ace52005-10-22 14:27:05 -04001031static void scsi_6_lba_len(const u8 *scsicmd, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001032{
1033 u64 lba = 0;
1034 u32 len = 0;
1035
1036 VPRINTK("six-byte command\n");
1037
1038 lba |= ((u64)scsicmd[2]) << 8;
1039 lba |= ((u64)scsicmd[3]);
1040
1041 len |= ((u32)scsicmd[4]);
1042
1043 *plba = lba;
1044 *plen = len;
1045}
1046
1047/**
1048 * scsi_10_lba_len - Get LBA and transfer length
1049 * @scsicmd: SCSI command to translate
1050 *
1051 * Calculate LBA and transfer length for 10-byte commands.
1052 *
1053 * RETURNS:
1054 * @plba: the LBA
1055 * @plen: the transfer length
1056 */
1057
Jeff Garzik057ace52005-10-22 14:27:05 -04001058static void scsi_10_lba_len(const u8 *scsicmd, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001059{
1060 u64 lba = 0;
1061 u32 len = 0;
1062
1063 VPRINTK("ten-byte command\n");
1064
1065 lba |= ((u64)scsicmd[2]) << 24;
1066 lba |= ((u64)scsicmd[3]) << 16;
1067 lba |= ((u64)scsicmd[4]) << 8;
1068 lba |= ((u64)scsicmd[5]);
1069
1070 len |= ((u32)scsicmd[7]) << 8;
1071 len |= ((u32)scsicmd[8]);
1072
1073 *plba = lba;
1074 *plen = len;
1075}
1076
1077/**
1078 * scsi_16_lba_len - Get LBA and transfer length
1079 * @scsicmd: SCSI command to translate
1080 *
1081 * Calculate LBA and transfer length for 16-byte commands.
1082 *
1083 * RETURNS:
1084 * @plba: the LBA
1085 * @plen: the transfer length
1086 */
1087
Jeff Garzik057ace52005-10-22 14:27:05 -04001088static void scsi_16_lba_len(const u8 *scsicmd, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001089{
1090 u64 lba = 0;
1091 u32 len = 0;
1092
1093 VPRINTK("sixteen-byte command\n");
1094
1095 lba |= ((u64)scsicmd[2]) << 56;
1096 lba |= ((u64)scsicmd[3]) << 48;
1097 lba |= ((u64)scsicmd[4]) << 40;
1098 lba |= ((u64)scsicmd[5]) << 32;
1099 lba |= ((u64)scsicmd[6]) << 24;
1100 lba |= ((u64)scsicmd[7]) << 16;
1101 lba |= ((u64)scsicmd[8]) << 8;
1102 lba |= ((u64)scsicmd[9]);
1103
1104 len |= ((u32)scsicmd[10]) << 24;
1105 len |= ((u32)scsicmd[11]) << 16;
1106 len |= ((u32)scsicmd[12]) << 8;
1107 len |= ((u32)scsicmd[13]);
1108
1109 *plba = lba;
1110 *plen = len;
1111}
1112
1113/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 * ata_scsi_verify_xlat - Translate SCSI VERIFY command into an ATA one
1115 * @qc: Storage for translated ATA taskfile
1116 * @scsicmd: SCSI command to translate
1117 *
1118 * Converts SCSI VERIFY command to an ATA READ VERIFY command.
1119 *
1120 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001121 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 *
1123 * RETURNS:
1124 * Zero on success, non-zero on error.
1125 */
1126
Jeff Garzik057ace52005-10-22 14:27:05 -04001127static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc, const u8 *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 struct ata_taskfile *tf = &qc->tf;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001130 struct ata_device *dev = qc->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 u64 dev_sectors = qc->dev->n_sectors;
Albert Lee3aef5232005-10-04 08:47:43 -04001132 u64 block;
1133 u32 n_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1136 tf->protocol = ATA_PROT_NODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Albert Lee3aef5232005-10-04 08:47:43 -04001138 if (scsicmd[0] == VERIFY)
1139 scsi_10_lba_len(scsicmd, &block, &n_block);
1140 else if (scsicmd[0] == VERIFY_16)
1141 scsi_16_lba_len(scsicmd, &block, &n_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 else
Douglas Gilbertae006512005-10-09 09:09:35 -04001143 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Albert Lee8bf62ec2005-05-12 15:29:42 -04001145 if (!n_block)
Douglas Gilbertae006512005-10-09 09:09:35 -04001146 goto nothing_to_do;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001147 if (block >= dev_sectors)
Douglas Gilbertae006512005-10-09 09:09:35 -04001148 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001149 if ((block + n_block) > dev_sectors)
Douglas Gilbertae006512005-10-09 09:09:35 -04001150 goto out_of_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Albert Lee07506692005-10-12 15:04:18 +08001152 if (dev->flags & ATA_DFLAG_LBA) {
1153 tf->flags |= ATA_TFLAG_LBA;
1154
Albert Leec6a33e22005-10-12 15:12:26 +08001155 if (lba_28_ok(block, n_block)) {
1156 /* use LBA28 */
1157 tf->command = ATA_CMD_VERIFY;
1158 tf->device |= (block >> 24) & 0xf;
1159 } else if (lba_48_ok(block, n_block)) {
1160 if (!(dev->flags & ATA_DFLAG_LBA48))
1161 goto out_of_range;
Albert Lee07506692005-10-12 15:04:18 +08001162
1163 /* use LBA48 */
1164 tf->flags |= ATA_TFLAG_LBA48;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001165 tf->command = ATA_CMD_VERIFY_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Albert Lee8bf62ec2005-05-12 15:29:42 -04001167 tf->hob_nsect = (n_block >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Albert Lee8bf62ec2005-05-12 15:29:42 -04001169 tf->hob_lbah = (block >> 40) & 0xff;
1170 tf->hob_lbam = (block >> 32) & 0xff;
1171 tf->hob_lbal = (block >> 24) & 0xff;
Albert Leec6a33e22005-10-12 15:12:26 +08001172 } else
1173 /* request too large even for LBA48 */
1174 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001175
1176 tf->nsect = n_block & 0xff;
1177
1178 tf->lbah = (block >> 16) & 0xff;
1179 tf->lbam = (block >> 8) & 0xff;
1180 tf->lbal = block & 0xff;
1181
1182 tf->device |= ATA_LBA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001184 /* CHS */
1185 u32 sect, head, cyl, track;
1186
Albert Leec6a33e22005-10-12 15:12:26 +08001187 if (!lba_28_ok(block, n_block))
1188 goto out_of_range;
Albert Lee07506692005-10-12 15:04:18 +08001189
Albert Lee8bf62ec2005-05-12 15:29:42 -04001190 /* Convert LBA to CHS */
1191 track = (u32)block / dev->sectors;
1192 cyl = track / dev->heads;
1193 head = track % dev->heads;
1194 sect = (u32)block % dev->sectors + 1;
1195
Albert Leec187c4b2005-10-04 08:46:51 -04001196 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
1197 (u32)block, track, cyl, head, sect);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001198
1199 /* Check whether the converted CHS can fit.
1200 Cylinder: 0-65535
Albert Lee8bf62ec2005-05-12 15:29:42 -04001201 Head: 0-15
1202 Sector: 1-255*/
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001203 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
Douglas Gilbertae006512005-10-09 09:09:35 -04001204 goto out_of_range;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 tf->command = ATA_CMD_VERIFY;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001207 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
1208 tf->lbal = sect;
1209 tf->lbam = cyl;
1210 tf->lbah = cyl >> 8;
1211 tf->device |= head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001215
1216invalid_fld:
1217 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x24, 0x0);
1218 /* "Invalid field in cbd" */
1219 return 1;
1220
1221out_of_range:
1222 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x21, 0x0);
1223 /* "Logical Block Address out of range" */
1224 return 1;
1225
1226nothing_to_do:
1227 qc->scsicmd->result = SAM_STAT_GOOD;
1228 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
1231/**
1232 * ata_scsi_rw_xlat - Translate SCSI r/w command into an ATA one
1233 * @qc: Storage for translated ATA taskfile
1234 * @scsicmd: SCSI command to translate
1235 *
1236 * Converts any of six SCSI read/write commands into the
1237 * ATA counterpart, including starting sector (LBA),
1238 * sector count, and taking into account the device's LBA48
1239 * support.
1240 *
1241 * Commands %READ_6, %READ_10, %READ_16, %WRITE_6, %WRITE_10, and
1242 * %WRITE_16 are currently supported.
1243 *
1244 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001245 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 *
1247 * RETURNS:
1248 * Zero on success, non-zero on error.
1249 */
1250
Jeff Garzik057ace52005-10-22 14:27:05 -04001251static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc, const u8 *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
1253 struct ata_taskfile *tf = &qc->tf;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001254 struct ata_device *dev = qc->dev;
Albert Lee3aef5232005-10-04 08:47:43 -04001255 u64 block;
1256 u32 n_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Tejun Heo27197362006-04-02 18:51:53 +09001258 qc->flags |= ATA_QCFLAG_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Albert Lee8cbd6df2005-10-12 15:06:27 +08001261 if (scsicmd[0] == WRITE_10 || scsicmd[0] == WRITE_6 ||
1262 scsicmd[0] == WRITE_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 tf->flags |= ATA_TFLAG_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001265 /* Calculate the SCSI LBA, transfer length and FUA. */
Albert Lee3aef5232005-10-04 08:47:43 -04001266 switch (scsicmd[0]) {
1267 case READ_10:
1268 case WRITE_10:
1269 scsi_10_lba_len(scsicmd, &block, &n_block);
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001270 if (unlikely(scsicmd[1] & (1 << 3)))
1271 tf->flags |= ATA_TFLAG_FUA;
Albert Lee3aef5232005-10-04 08:47:43 -04001272 break;
1273 case READ_6:
1274 case WRITE_6:
1275 scsi_6_lba_len(scsicmd, &block, &n_block);
Albert Leec187c4b2005-10-04 08:46:51 -04001276
1277 /* for 6-byte r/w commands, transfer length 0
1278 * means 256 blocks of data, not 0 block.
1279 */
Jeff Garzik76b2bf92005-08-29 19:24:43 -04001280 if (!n_block)
1281 n_block = 256;
Albert Lee3aef5232005-10-04 08:47:43 -04001282 break;
1283 case READ_16:
1284 case WRITE_16:
1285 scsi_16_lba_len(scsicmd, &block, &n_block);
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001286 if (unlikely(scsicmd[1] & (1 << 3)))
1287 tf->flags |= ATA_TFLAG_FUA;
Albert Lee3aef5232005-10-04 08:47:43 -04001288 break;
1289 default:
Albert Lee8bf62ec2005-05-12 15:29:42 -04001290 DPRINTK("no-byte command\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04001291 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293
Albert Lee8bf62ec2005-05-12 15:29:42 -04001294 /* Check and compose ATA command */
1295 if (!n_block)
Albert Leec187c4b2005-10-04 08:46:51 -04001296 /* For 10-byte and 16-byte SCSI R/W commands, transfer
1297 * length 0 means transfer 0 block of data.
1298 * However, for ATA R/W commands, sector count 0 means
1299 * 256 or 65536 sectors, not 0 sectors as in SCSI.
Alan Coxf51750d2005-11-07 17:06:33 +00001300 *
1301 * WARNING: one or two older ATA drives treat 0 as 0...
Albert Leec187c4b2005-10-04 08:46:51 -04001302 */
Douglas Gilbertae006512005-10-09 09:09:35 -04001303 goto nothing_to_do;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001304
Tejun Heo360f6542006-09-30 19:45:00 +09001305 if ((dev->flags & (ATA_DFLAG_PIO | ATA_DFLAG_NCQ_OFF |
1306 ATA_DFLAG_NCQ)) == ATA_DFLAG_NCQ) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09001307 /* yay, NCQ */
1308 if (!lba_48_ok(block, n_block))
1309 goto out_of_range;
1310
1311 tf->protocol = ATA_PROT_NCQ;
1312 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
1313
1314 if (tf->flags & ATA_TFLAG_WRITE)
1315 tf->command = ATA_CMD_FPDMA_WRITE;
1316 else
1317 tf->command = ATA_CMD_FPDMA_READ;
1318
1319 qc->nsect = n_block;
1320
1321 tf->nsect = qc->tag << 3;
1322 tf->hob_feature = (n_block >> 8) & 0xff;
1323 tf->feature = n_block & 0xff;
1324
1325 tf->hob_lbah = (block >> 40) & 0xff;
1326 tf->hob_lbam = (block >> 32) & 0xff;
1327 tf->hob_lbal = (block >> 24) & 0xff;
1328 tf->lbah = (block >> 16) & 0xff;
1329 tf->lbam = (block >> 8) & 0xff;
1330 tf->lbal = block & 0xff;
1331
1332 tf->device = 1 << 6;
1333 if (tf->flags & ATA_TFLAG_FUA)
1334 tf->device |= 1 << 7;
1335 } else if (dev->flags & ATA_DFLAG_LBA) {
Albert Lee07506692005-10-12 15:04:18 +08001336 tf->flags |= ATA_TFLAG_LBA;
1337
Albert Leec6a33e22005-10-12 15:12:26 +08001338 if (lba_28_ok(block, n_block)) {
1339 /* use LBA28 */
1340 tf->device |= (block >> 24) & 0xf;
1341 } else if (lba_48_ok(block, n_block)) {
1342 if (!(dev->flags & ATA_DFLAG_LBA48))
Douglas Gilbertae006512005-10-09 09:09:35 -04001343 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001344
Albert Lee07506692005-10-12 15:04:18 +08001345 /* use LBA48 */
1346 tf->flags |= ATA_TFLAG_LBA48;
1347
Albert Lee8bf62ec2005-05-12 15:29:42 -04001348 tf->hob_nsect = (n_block >> 8) & 0xff;
1349
1350 tf->hob_lbah = (block >> 40) & 0xff;
1351 tf->hob_lbam = (block >> 32) & 0xff;
1352 tf->hob_lbal = (block >> 24) & 0xff;
Albert Leec6a33e22005-10-12 15:12:26 +08001353 } else
1354 /* request too large even for LBA48 */
1355 goto out_of_range;
Albert Leec187c4b2005-10-04 08:46:51 -04001356
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001357 if (unlikely(ata_rwcmd_protocol(qc) < 0))
1358 goto invalid_fld;
Albert Lee8cbd6df2005-10-12 15:06:27 +08001359
Albert Lee8bf62ec2005-05-12 15:29:42 -04001360 qc->nsect = n_block;
1361 tf->nsect = n_block & 0xff;
1362
1363 tf->lbah = (block >> 16) & 0xff;
1364 tf->lbam = (block >> 8) & 0xff;
1365 tf->lbal = block & 0xff;
1366
1367 tf->device |= ATA_LBA;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001368 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001369 /* CHS */
1370 u32 sect, head, cyl, track;
1371
1372 /* The request -may- be too large for CHS addressing. */
Albert Leec6a33e22005-10-12 15:12:26 +08001373 if (!lba_28_ok(block, n_block))
Douglas Gilbertae006512005-10-09 09:09:35 -04001374 goto out_of_range;
Albert Leec187c4b2005-10-04 08:46:51 -04001375
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001376 if (unlikely(ata_rwcmd_protocol(qc) < 0))
1377 goto invalid_fld;
Albert Lee8cbd6df2005-10-12 15:06:27 +08001378
Albert Lee8bf62ec2005-05-12 15:29:42 -04001379 /* Convert LBA to CHS */
1380 track = (u32)block / dev->sectors;
1381 cyl = track / dev->heads;
1382 head = track % dev->heads;
1383 sect = (u32)block % dev->sectors + 1;
1384
Albert Leec187c4b2005-10-04 08:46:51 -04001385 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
Albert Lee8bf62ec2005-05-12 15:29:42 -04001386 (u32)block, track, cyl, head, sect);
Albert Leec187c4b2005-10-04 08:46:51 -04001387
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001388 /* Check whether the converted CHS can fit.
1389 Cylinder: 0-65535
Albert Lee8bf62ec2005-05-12 15:29:42 -04001390 Head: 0-15
1391 Sector: 1-255*/
Albert Leec187c4b2005-10-04 08:46:51 -04001392 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
Douglas Gilbertae006512005-10-09 09:09:35 -04001393 goto out_of_range;
Albert Leec187c4b2005-10-04 08:46:51 -04001394
Albert Lee8bf62ec2005-05-12 15:29:42 -04001395 qc->nsect = n_block;
1396 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
1397 tf->lbal = sect;
1398 tf->lbam = cyl;
1399 tf->lbah = cyl >> 8;
1400 tf->device |= head;
1401 }
1402
1403 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001404
1405invalid_fld:
1406 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x24, 0x0);
1407 /* "Invalid field in cbd" */
1408 return 1;
1409
1410out_of_range:
1411 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x21, 0x0);
1412 /* "Logical Block Address out of range" */
1413 return 1;
1414
1415nothing_to_do:
1416 qc->scsicmd->result = SAM_STAT_GOOD;
1417 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Tejun Heo77853bf2006-01-23 13:09:36 +09001420static void ata_scsi_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
1422 struct scsi_cmnd *cmd = qc->scsicmd;
Jeff Garzika7dac442005-10-30 04:44:42 -05001423 u8 *cdb = cmd->cmnd;
Albert Leea22e2eb2005-12-05 15:38:02 +08001424 int need_sense = (qc->err_mask != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
zhao, forrest3057ac32006-06-12 12:01:34 +08001426 /* We snoop the SET_FEATURES - Write Cache ON/OFF command, and
1427 * schedule EH_REVALIDATE operation to update the IDENTIFY DEVICE
1428 * cache
1429 */
1430 if (!need_sense && (qc->tf.command == ATA_CMD_SET_FEATURES) &&
1431 ((qc->tf.feature == SETFEATURES_WC_ON) ||
1432 (qc->tf.feature == SETFEATURES_WC_OFF))) {
1433 qc->ap->eh_info.action |= ATA_EH_REVALIDATE;
1434 ata_port_schedule_eh(qc->ap);
1435 }
1436
Jeff Garzikb0955182005-05-12 15:45:22 -04001437 /* For ATA pass thru (SAT) commands, generate a sense block if
1438 * user mandated it or if there's an error. Note that if we
1439 * generate because the user forced us to, a check condition
1440 * is generated and the ATA register values are returned
1441 * whether the command completed successfully or not. If there
1442 * was no error, SK, ASC and ASCQ will all be zero.
1443 */
Jeff Garzika7dac442005-10-30 04:44:42 -05001444 if (((cdb[0] == ATA_16) || (cdb[0] == ATA_12)) &&
1445 ((cdb[2] & 0x20) || need_sense)) {
Jeff Garzikb0955182005-05-12 15:45:22 -04001446 ata_gen_ata_desc_sense(qc);
1447 } else {
1448 if (!need_sense) {
1449 cmd->result = SAM_STAT_GOOD;
1450 } else {
1451 /* TODO: decide which descriptor format to use
1452 * for 48b LBA devices and call that here
1453 * instead of the fixed desc, which is only
1454 * good for smaller LBA (and maybe CHS?)
1455 * devices.
1456 */
1457 ata_gen_fixed_sense(qc);
1458 }
1459 }
1460
Tejun Heo246619d2006-05-15 20:58:16 +09001461 if (need_sense && !qc->ap->ops->error_handler)
Tejun Heoe61e0672006-05-15 20:57:40 +09001462 ata_dump_status(qc->ap->id, &qc->result_tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 qc->scsidone(cmd);
1465
Tejun Heo77853bf2006-01-23 13:09:36 +09001466 ata_qc_free(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
1469/**
Tejun Heo3dc1d882006-05-15 21:03:45 +09001470 * ata_scmd_need_defer - Check whether we need to defer scmd
1471 * @dev: ATA device to which the command is addressed
1472 * @is_io: Is the command IO (and thus possibly NCQ)?
1473 *
1474 * NCQ and non-NCQ commands cannot run together. As upper layer
1475 * only knows the queue depth, we are responsible for maintaining
1476 * exclusion. This function checks whether a new command can be
1477 * issued to @dev.
1478 *
1479 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001480 * spin_lock_irqsave(host lock)
Tejun Heo3dc1d882006-05-15 21:03:45 +09001481 *
1482 * RETURNS:
1483 * 1 if deferring is needed, 0 otherwise.
1484 */
1485static int ata_scmd_need_defer(struct ata_device *dev, int is_io)
1486{
1487 struct ata_port *ap = dev->ap;
1488
1489 if (!(dev->flags & ATA_DFLAG_NCQ))
1490 return 0;
1491
1492 if (is_io) {
1493 if (!ata_tag_valid(ap->active_tag))
1494 return 0;
1495 } else {
1496 if (!ata_tag_valid(ap->active_tag) && !ap->sactive)
1497 return 0;
1498 }
1499 return 1;
1500}
1501
1502/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 * ata_scsi_translate - Translate then issue SCSI command to ATA device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 * @dev: ATA device to which the command is addressed
1505 * @cmd: SCSI command to execute
1506 * @done: SCSI command completion function
1507 * @xlat_func: Actor which translates @cmd to an ATA taskfile
1508 *
1509 * Our ->queuecommand() function has decided that the SCSI
1510 * command issued can be directly translated into an ATA
1511 * command, rather than handled internally.
1512 *
1513 * This function sets up an ata_queued_cmd structure for the
1514 * SCSI command, and sends that ata_queued_cmd to the hardware.
1515 *
Douglas Gilbertae006512005-10-09 09:09:35 -04001516 * The xlat_func argument (actor) returns 0 if ready to execute
1517 * ATA command, else 1 to finish translation. If 1 is returned
1518 * then cmd->result (and possibly cmd->sense_buffer) are assumed
1519 * to be set reflecting an error condition or clean (early)
1520 * termination.
1521 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001523 * spin_lock_irqsave(host lock)
Tejun Heo2115ea92006-05-15 21:03:39 +09001524 *
1525 * RETURNS:
1526 * 0 on success, SCSI_ML_QUEUE_DEVICE_BUSY if the command
1527 * needs to be deferred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 */
Tejun Heo2115ea92006-05-15 21:03:39 +09001529static int ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd,
1530 void (*done)(struct scsi_cmnd *),
1531 ata_xlat_func_t xlat_func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
1533 struct ata_queued_cmd *qc;
1534 u8 *scsicmd = cmd->cmnd;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001535 int is_io = xlat_func == ata_scsi_rw_xlat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 VPRINTK("ENTER\n");
1538
Tejun Heo3dc1d882006-05-15 21:03:45 +09001539 if (unlikely(ata_scmd_need_defer(dev, is_io)))
1540 goto defer;
1541
Tejun Heo3373efd2006-05-15 20:57:53 +09001542 qc = ata_scsi_qc_new(dev, cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (!qc)
Douglas Gilbertae006512005-10-09 09:09:35 -04001544 goto err_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /* data is present; dma-map it */
be7db052005-04-17 15:26:13 -05001547 if (cmd->sc_data_direction == DMA_FROM_DEVICE ||
1548 cmd->sc_data_direction == DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (unlikely(cmd->request_bufflen < 1)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001550 ata_dev_printk(dev, KERN_WARNING,
1551 "WARNING: zero len r/w req\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04001552 goto err_did;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554
1555 if (cmd->use_sg)
1556 ata_sg_init(qc, cmd->request_buffer, cmd->use_sg);
1557 else
1558 ata_sg_init_one(qc, cmd->request_buffer,
1559 cmd->request_bufflen);
1560
1561 qc->dma_dir = cmd->sc_data_direction;
1562 }
1563
1564 qc->complete_fn = ata_scsi_qc_complete;
1565
1566 if (xlat_func(qc, scsicmd))
Douglas Gilbertae006512005-10-09 09:09:35 -04001567 goto early_finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 /* select device, send command to hardware */
Tejun Heo8e0e6942006-03-31 20:41:11 +09001570 ata_qc_issue(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 VPRINTK("EXIT\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001573 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Douglas Gilbertae006512005-10-09 09:09:35 -04001575early_finish:
1576 ata_qc_free(qc);
1577 done(cmd);
1578 DPRINTK("EXIT - early finish (good or error)\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001579 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001580
1581err_did:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 ata_qc_free(qc);
Douglas Gilbertae006512005-10-09 09:09:35 -04001583err_mem:
1584 cmd->result = (DID_ERROR << 16);
1585 done(cmd);
1586 DPRINTK("EXIT - internal\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001587 return 0;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001588
1589defer:
1590 DPRINTK("EXIT - defer\n");
1591 return SCSI_MLQUEUE_DEVICE_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
1594/**
1595 * ata_scsi_rbuf_get - Map response buffer.
1596 * @cmd: SCSI command containing buffer to be mapped.
1597 * @buf_out: Pointer to mapped area.
1598 *
1599 * Maps buffer contained within SCSI command @cmd.
1600 *
1601 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001602 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 *
1604 * RETURNS:
1605 * Length of response buffer.
1606 */
1607
1608static unsigned int ata_scsi_rbuf_get(struct scsi_cmnd *cmd, u8 **buf_out)
1609{
1610 u8 *buf;
1611 unsigned int buflen;
1612
1613 if (cmd->use_sg) {
1614 struct scatterlist *sg;
1615
1616 sg = (struct scatterlist *) cmd->request_buffer;
1617 buf = kmap_atomic(sg->page, KM_USER0) + sg->offset;
1618 buflen = sg->length;
1619 } else {
1620 buf = cmd->request_buffer;
1621 buflen = cmd->request_bufflen;
1622 }
1623
1624 *buf_out = buf;
1625 return buflen;
1626}
1627
1628/**
1629 * ata_scsi_rbuf_put - Unmap response buffer.
1630 * @cmd: SCSI command containing buffer to be unmapped.
1631 * @buf: buffer to unmap
1632 *
1633 * Unmaps response buffer contained within @cmd.
1634 *
1635 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001636 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 */
1638
1639static inline void ata_scsi_rbuf_put(struct scsi_cmnd *cmd, u8 *buf)
1640{
1641 if (cmd->use_sg) {
1642 struct scatterlist *sg;
1643
1644 sg = (struct scatterlist *) cmd->request_buffer;
1645 kunmap_atomic(buf - sg->offset, KM_USER0);
1646 }
1647}
1648
1649/**
1650 * ata_scsi_rbuf_fill - wrapper for SCSI command simulators
1651 * @args: device IDENTIFY data / SCSI command of interest.
1652 * @actor: Callback hook for desired SCSI command simulator
1653 *
1654 * Takes care of the hard work of simulating a SCSI command...
1655 * Mapping the response buffer, calling the command's handler,
1656 * and handling the handler's return value. This return value
1657 * indicates whether the handler wishes the SCSI command to be
Douglas Gilbertae006512005-10-09 09:09:35 -04001658 * completed successfully (0), or not (in which case cmd->result
1659 * and sense buffer are assumed to be set).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 *
1661 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001662 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 */
1664
1665void ata_scsi_rbuf_fill(struct ata_scsi_args *args,
1666 unsigned int (*actor) (struct ata_scsi_args *args,
1667 u8 *rbuf, unsigned int buflen))
1668{
1669 u8 *rbuf;
1670 unsigned int buflen, rc;
1671 struct scsi_cmnd *cmd = args->cmd;
1672
1673 buflen = ata_scsi_rbuf_get(cmd, &rbuf);
1674 memset(rbuf, 0, buflen);
1675 rc = actor(args, rbuf, buflen);
1676 ata_scsi_rbuf_put(cmd, rbuf);
1677
Douglas Gilbertae006512005-10-09 09:09:35 -04001678 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 cmd->result = SAM_STAT_GOOD;
Douglas Gilbertae006512005-10-09 09:09:35 -04001680 args->done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
1683/**
1684 * ata_scsiop_inq_std - Simulate INQUIRY command
1685 * @args: device IDENTIFY data / SCSI command of interest.
1686 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1687 * @buflen: Response buffer length.
1688 *
1689 * Returns standard device identification data associated
Jeff Garzikb142eb62006-03-21 20:37:47 -05001690 * with non-VPD INQUIRY command output.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 *
1692 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001693 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 */
1695
1696unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf,
1697 unsigned int buflen)
1698{
1699 u8 hdr[] = {
1700 TYPE_DISK,
1701 0,
1702 0x5, /* claim SPC-3 version compatibility */
1703 2,
1704 95 - 4
1705 };
1706
1707 /* set scsi removeable (RMB) bit per ata bit */
1708 if (ata_id_removeable(args->id))
1709 hdr[1] |= (1 << 7);
1710
1711 VPRINTK("ENTER\n");
1712
1713 memcpy(rbuf, hdr, sizeof(hdr));
1714
1715 if (buflen > 35) {
1716 memcpy(&rbuf[8], "ATA ", 8);
Tejun Heo6a62a042006-02-13 10:02:46 +09001717 ata_id_string(args->id, &rbuf[16], ATA_ID_PROD_OFS, 16);
1718 ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV_OFS, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (rbuf[32] == 0 || rbuf[32] == ' ')
1720 memcpy(&rbuf[32], "n/a ", 4);
1721 }
1722
1723 if (buflen > 63) {
1724 const u8 versions[] = {
1725 0x60, /* SAM-3 (no version claimed) */
1726
1727 0x03,
1728 0x20, /* SBC-2 (no version claimed) */
1729
1730 0x02,
1731 0x60 /* SPC-3 (no version claimed) */
1732 };
1733
1734 memcpy(rbuf + 59, versions, sizeof(versions));
1735 }
1736
1737 return 0;
1738}
1739
1740/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001741 * ata_scsiop_inq_00 - Simulate INQUIRY VPD page 0, list of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 * @args: device IDENTIFY data / SCSI command of interest.
1743 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1744 * @buflen: Response buffer length.
1745 *
Jeff Garzikb142eb62006-03-21 20:37:47 -05001746 * Returns list of inquiry VPD pages available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 *
1748 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001749 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 */
1751
1752unsigned int ata_scsiop_inq_00(struct ata_scsi_args *args, u8 *rbuf,
1753 unsigned int buflen)
1754{
1755 const u8 pages[] = {
1756 0x00, /* page 0x00, this page */
1757 0x80, /* page 0x80, unit serial no page */
1758 0x83 /* page 0x83, device ident page */
1759 };
Jeff Garzikb142eb62006-03-21 20:37:47 -05001760 rbuf[3] = sizeof(pages); /* number of supported VPD pages */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 if (buflen > 6)
1763 memcpy(rbuf + 4, pages, sizeof(pages));
1764
1765 return 0;
1766}
1767
1768/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001769 * ata_scsiop_inq_80 - Simulate INQUIRY VPD page 80, device serial number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 * @args: device IDENTIFY data / SCSI command of interest.
1771 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1772 * @buflen: Response buffer length.
1773 *
1774 * Returns ATA device serial number.
1775 *
1776 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001777 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 */
1779
1780unsigned int ata_scsiop_inq_80(struct ata_scsi_args *args, u8 *rbuf,
1781 unsigned int buflen)
1782{
1783 const u8 hdr[] = {
1784 0,
1785 0x80, /* this page code */
1786 0,
1787 ATA_SERNO_LEN, /* page len */
1788 };
1789 memcpy(rbuf, hdr, sizeof(hdr));
1790
1791 if (buflen > (ATA_SERNO_LEN + 4 - 1))
Tejun Heo6a62a042006-02-13 10:02:46 +09001792 ata_id_string(args->id, (unsigned char *) &rbuf[4],
1793 ATA_ID_SERNO_OFS, ATA_SERNO_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 return 0;
1796}
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001799 * ata_scsiop_inq_83 - Simulate INQUIRY VPD page 83, device identity
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 * @args: device IDENTIFY data / SCSI command of interest.
1801 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1802 * @buflen: Response buffer length.
1803 *
Jeff Garzikb142eb62006-03-21 20:37:47 -05001804 * Yields two logical unit device identification designators:
1805 * - vendor specific ASCII containing the ATA serial number
1806 * - SAT defined "t10 vendor id based" containing ASCII vendor
1807 * name ("ATA "), model and serial numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 *
1809 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001810 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 */
1812
1813unsigned int ata_scsiop_inq_83(struct ata_scsi_args *args, u8 *rbuf,
1814 unsigned int buflen)
1815{
Jeff Garzikb142eb62006-03-21 20:37:47 -05001816 int num;
1817 const int sat_model_serial_desc_len = 68;
1818 const int ata_model_byte_len = 40;
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 rbuf[1] = 0x83; /* this page code */
Jeff Garzikb142eb62006-03-21 20:37:47 -05001821 num = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Jeff Garzikb142eb62006-03-21 20:37:47 -05001823 if (buflen > (ATA_SERNO_LEN + num + 3)) {
1824 /* piv=0, assoc=lu, code_set=ACSII, designator=vendor */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001825 rbuf[num + 0] = 2;
Jeff Garzikb142eb62006-03-21 20:37:47 -05001826 rbuf[num + 3] = ATA_SERNO_LEN;
1827 num += 4;
1828 ata_id_string(args->id, (unsigned char *) rbuf + num,
1829 ATA_ID_SERNO_OFS, ATA_SERNO_LEN);
1830 num += ATA_SERNO_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
Jeff Garzikb142eb62006-03-21 20:37:47 -05001832 if (buflen > (sat_model_serial_desc_len + num + 3)) {
1833 /* SAT defined lu model and serial numbers descriptor */
1834 /* piv=0, assoc=lu, code_set=ACSII, designator=t10 vendor id */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001835 rbuf[num + 0] = 2;
1836 rbuf[num + 1] = 1;
Jeff Garzikb142eb62006-03-21 20:37:47 -05001837 rbuf[num + 3] = sat_model_serial_desc_len;
1838 num += 4;
1839 memcpy(rbuf + num, "ATA ", 8);
1840 num += 8;
1841 ata_id_string(args->id, (unsigned char *) rbuf + num,
1842 ATA_ID_PROD_OFS, ata_model_byte_len);
1843 num += ata_model_byte_len;
1844 ata_id_string(args->id, (unsigned char *) rbuf + num,
1845 ATA_ID_SERNO_OFS, ATA_SERNO_LEN);
1846 num += ATA_SERNO_LEN;
1847 }
1848 rbuf[3] = num - 4; /* page len (assume less than 256 bytes) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return 0;
1850}
1851
1852/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001853 * ata_scsiop_noop - Command handler that simply returns success.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 * @args: device IDENTIFY data / SCSI command of interest.
1855 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1856 * @buflen: Response buffer length.
1857 *
1858 * No operation. Simply returns success to caller, to indicate
1859 * that the caller should successfully complete this SCSI command.
1860 *
1861 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001862 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 */
1864
1865unsigned int ata_scsiop_noop(struct ata_scsi_args *args, u8 *rbuf,
1866 unsigned int buflen)
1867{
1868 VPRINTK("ENTER\n");
1869 return 0;
1870}
1871
1872/**
1873 * ata_msense_push - Push data onto MODE SENSE data output buffer
1874 * @ptr_io: (input/output) Location to store more output data
1875 * @last: End of output data buffer
1876 * @buf: Pointer to BLOB being added to output buffer
1877 * @buflen: Length of BLOB
1878 *
1879 * Store MODE SENSE data on an output buffer.
1880 *
1881 * LOCKING:
1882 * None.
1883 */
1884
1885static void ata_msense_push(u8 **ptr_io, const u8 *last,
1886 const u8 *buf, unsigned int buflen)
1887{
1888 u8 *ptr = *ptr_io;
1889
1890 if ((ptr + buflen - 1) > last)
1891 return;
1892
1893 memcpy(ptr, buf, buflen);
1894
1895 ptr += buflen;
1896
1897 *ptr_io = ptr;
1898}
1899
1900/**
1901 * ata_msense_caching - Simulate MODE SENSE caching info page
1902 * @id: device IDENTIFY data
1903 * @ptr_io: (input/output) Location to store more output data
1904 * @last: End of output data buffer
1905 *
1906 * Generate a caching info page, which conditionally indicates
1907 * write caching to the SCSI layer, depending on device
1908 * capabilities.
1909 *
1910 * LOCKING:
1911 * None.
1912 */
1913
1914static unsigned int ata_msense_caching(u16 *id, u8 **ptr_io,
1915 const u8 *last)
1916{
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001917 u8 page[CACHE_MPAGE_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001919 memcpy(page, def_cache_mpage, sizeof(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (ata_id_wcache_enabled(id))
1921 page[2] |= (1 << 2); /* write cache enable */
1922 if (!ata_id_rahead_enabled(id))
1923 page[12] |= (1 << 5); /* disable read ahead */
1924
1925 ata_msense_push(ptr_io, last, page, sizeof(page));
1926 return sizeof(page);
1927}
1928
1929/**
1930 * ata_msense_ctl_mode - Simulate MODE SENSE control mode page
1931 * @dev: Device associated with this MODE SENSE command
1932 * @ptr_io: (input/output) Location to store more output data
1933 * @last: End of output data buffer
1934 *
1935 * Generate a generic MODE SENSE control mode page.
1936 *
1937 * LOCKING:
1938 * None.
1939 */
1940
1941static unsigned int ata_msense_ctl_mode(u8 **ptr_io, const u8 *last)
1942{
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001943 ata_msense_push(ptr_io, last, def_control_mpage,
1944 sizeof(def_control_mpage));
1945 return sizeof(def_control_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
1948/**
1949 * ata_msense_rw_recovery - Simulate MODE SENSE r/w error recovery page
1950 * @dev: Device associated with this MODE SENSE command
1951 * @ptr_io: (input/output) Location to store more output data
1952 * @last: End of output data buffer
1953 *
1954 * Generate a generic MODE SENSE r/w error recovery page.
1955 *
1956 * LOCKING:
1957 * None.
1958 */
1959
1960static unsigned int ata_msense_rw_recovery(u8 **ptr_io, const u8 *last)
1961{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001963 ata_msense_push(ptr_io, last, def_rw_recovery_mpage,
1964 sizeof(def_rw_recovery_mpage));
1965 return sizeof(def_rw_recovery_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
1967
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001968/*
1969 * We can turn this into a real blacklist if it's needed, for now just
1970 * blacklist any Maxtor BANC1G10 revision firmware
1971 */
1972static int ata_dev_supports_fua(u16 *id)
1973{
1974 unsigned char model[41], fw[9];
1975
Jeff Garzikc3c013a2006-02-27 22:31:19 -05001976 if (!libata_fua)
1977 return 0;
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001978 if (!ata_id_has_fua(id))
1979 return 0;
1980
Tejun Heo6a62a042006-02-13 10:02:46 +09001981 ata_id_c_string(id, model, ATA_ID_PROD_OFS, sizeof(model));
1982 ata_id_c_string(id, fw, ATA_ID_FW_REV_OFS, sizeof(fw));
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001983
Tejun Heo2e026712006-02-12 22:47:04 +09001984 if (strcmp(model, "Maxtor"))
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001985 return 1;
Tejun Heo2e026712006-02-12 22:47:04 +09001986 if (strcmp(fw, "BANC1G10"))
Jens Axboe48bdc8e2006-01-30 16:09:35 +01001987 return 1;
1988
1989 return 0; /* blacklisted */
1990}
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992/**
1993 * ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands
1994 * @args: device IDENTIFY data / SCSI command of interest.
1995 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1996 * @buflen: Response buffer length.
1997 *
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04001998 * Simulate MODE SENSE commands. Assume this is invoked for direct
1999 * access devices (e.g. disks) only. There should be no block
2000 * descriptor for other device types.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 *
2002 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002003 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 */
2005
2006unsigned int ata_scsiop_mode_sense(struct ata_scsi_args *args, u8 *rbuf,
2007 unsigned int buflen)
2008{
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002009 struct ata_device *dev = args->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 u8 *scsicmd = args->cmd->cmnd, *p, *last;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002011 const u8 sat_blk_desc[] = {
2012 0, 0, 0, 0, /* number of blocks: sat unspecified */
2013 0,
2014 0, 0x2, 0x0 /* block length: 512 bytes */
2015 };
2016 u8 pg, spg;
2017 unsigned int ebd, page_control, six_byte, output_len, alloc_len, minlen;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002018 u8 dpofua;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 VPRINTK("ENTER\n");
2021
2022 six_byte = (scsicmd[0] == MODE_SENSE);
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002023 ebd = !(scsicmd[1] & 0x8); /* dbd bit inverted == edb */
2024 /*
2025 * LLBA bit in msense(10) ignored (compliant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 */
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 page_control = scsicmd[2] >> 6;
Douglas Gilbertae006512005-10-09 09:09:35 -04002029 switch (page_control) {
2030 case 0: /* current */
2031 break; /* supported */
2032 case 3: /* saved */
2033 goto saving_not_supp;
2034 case 1: /* changeable */
2035 case 2: /* defaults */
2036 default:
2037 goto invalid_fld;
2038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002040 if (six_byte) {
2041 output_len = 4 + (ebd ? 8 : 0);
2042 alloc_len = scsicmd[4];
2043 } else {
2044 output_len = 8 + (ebd ? 8 : 0);
2045 alloc_len = (scsicmd[7] << 8) + scsicmd[8];
2046 }
2047 minlen = (alloc_len < buflen) ? alloc_len : buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049 p = rbuf + output_len;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002050 last = rbuf + minlen - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002052 pg = scsicmd[2] & 0x3f;
2053 spg = scsicmd[3];
2054 /*
2055 * No mode subpages supported (yet) but asking for _all_
2056 * subpages may be valid
2057 */
2058 if (spg && (spg != ALL_SUB_MPAGES))
2059 goto invalid_fld;
2060
2061 switch(pg) {
2062 case RW_RECOVERY_MPAGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 output_len += ata_msense_rw_recovery(&p, last);
2064 break;
2065
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002066 case CACHE_MPAGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 output_len += ata_msense_caching(args->id, &p, last);
2068 break;
2069
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002070 case CONTROL_MPAGE: {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 output_len += ata_msense_ctl_mode(&p, last);
2072 break;
2073 }
2074
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002075 case ALL_MPAGES:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 output_len += ata_msense_rw_recovery(&p, last);
2077 output_len += ata_msense_caching(args->id, &p, last);
2078 output_len += ata_msense_ctl_mode(&p, last);
2079 break;
2080
2081 default: /* invalid page code */
Douglas Gilbertae006512005-10-09 09:09:35 -04002082 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002085 if (minlen < 1)
2086 return 0;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002087
2088 dpofua = 0;
Alan Coxf79d4092006-05-22 16:55:11 +01002089 if (ata_dev_supports_fua(args->id) && (dev->flags & ATA_DFLAG_LBA48) &&
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002090 (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count))
2091 dpofua = 1 << 4;
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 if (six_byte) {
2094 output_len--;
2095 rbuf[0] = output_len;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002096 if (minlen > 2)
2097 rbuf[2] |= dpofua;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002098 if (ebd) {
2099 if (minlen > 3)
2100 rbuf[3] = sizeof(sat_blk_desc);
2101 if (minlen > 11)
2102 memcpy(rbuf + 4, sat_blk_desc,
2103 sizeof(sat_blk_desc));
2104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 } else {
2106 output_len -= 2;
2107 rbuf[0] = output_len >> 8;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002108 if (minlen > 1)
2109 rbuf[1] = output_len;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002110 if (minlen > 3)
2111 rbuf[3] |= dpofua;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002112 if (ebd) {
2113 if (minlen > 7)
2114 rbuf[7] = sizeof(sat_blk_desc);
2115 if (minlen > 15)
2116 memcpy(rbuf + 8, sat_blk_desc,
2117 sizeof(sat_blk_desc));
2118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04002121
2122invalid_fld:
2123 ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x24, 0x0);
2124 /* "Invalid field in cbd" */
2125 return 1;
2126
2127saving_not_supp:
2128 ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x39, 0x0);
2129 /* "Saving parameters not supported" */
2130 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
2133/**
2134 * ata_scsiop_read_cap - Simulate READ CAPACITY[ 16] commands
2135 * @args: device IDENTIFY data / SCSI command of interest.
2136 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
2137 * @buflen: Response buffer length.
2138 *
2139 * Simulate READ CAPACITY commands.
2140 *
2141 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002142 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 */
2144
2145unsigned int ata_scsiop_read_cap(struct ata_scsi_args *args, u8 *rbuf,
2146 unsigned int buflen)
2147{
2148 u64 n_sectors;
2149 u32 tmp;
2150
2151 VPRINTK("ENTER\n");
2152
Albert Lee8bf62ec2005-05-12 15:29:42 -04002153 if (ata_id_has_lba(args->id)) {
2154 if (ata_id_has_lba48(args->id))
2155 n_sectors = ata_id_u64(args->id, 100);
2156 else
2157 n_sectors = ata_id_u32(args->id, 60);
2158 } else {
2159 /* CHS default translation */
2160 n_sectors = args->id[1] * args->id[3] * args->id[6];
2161
2162 if (ata_id_current_chs_valid(args->id))
2163 /* CHS current translation */
2164 n_sectors = ata_id_u32(args->id, 57);
2165 }
2166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 n_sectors--; /* ATA TotalUserSectors - 1 */
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 if (args->cmd->cmnd[0] == READ_CAPACITY) {
Philip Pokorny0c144d02005-05-28 01:24:47 -07002170 if( n_sectors >= 0xffffffffULL )
2171 tmp = 0xffffffff ; /* Return max count on overflow */
2172 else
2173 tmp = n_sectors ;
2174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 /* sector count, 32-bit */
2176 rbuf[0] = tmp >> (8 * 3);
2177 rbuf[1] = tmp >> (8 * 2);
2178 rbuf[2] = tmp >> (8 * 1);
2179 rbuf[3] = tmp;
2180
2181 /* sector size */
2182 tmp = ATA_SECT_SIZE;
2183 rbuf[6] = tmp >> 8;
2184 rbuf[7] = tmp;
2185
2186 } else {
2187 /* sector count, 64-bit */
Philip Pokorny0c144d02005-05-28 01:24:47 -07002188 tmp = n_sectors >> (8 * 4);
2189 rbuf[2] = tmp >> (8 * 3);
2190 rbuf[3] = tmp >> (8 * 2);
2191 rbuf[4] = tmp >> (8 * 1);
2192 rbuf[5] = tmp;
2193 tmp = n_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 rbuf[6] = tmp >> (8 * 3);
2195 rbuf[7] = tmp >> (8 * 2);
2196 rbuf[8] = tmp >> (8 * 1);
2197 rbuf[9] = tmp;
2198
2199 /* sector size */
2200 tmp = ATA_SECT_SIZE;
2201 rbuf[12] = tmp >> 8;
2202 rbuf[13] = tmp;
2203 }
2204
2205 return 0;
2206}
2207
2208/**
2209 * ata_scsiop_report_luns - Simulate REPORT LUNS command
2210 * @args: device IDENTIFY data / SCSI command of interest.
2211 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
2212 * @buflen: Response buffer length.
2213 *
2214 * Simulate REPORT LUNS command.
2215 *
2216 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002217 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 */
2219
2220unsigned int ata_scsiop_report_luns(struct ata_scsi_args *args, u8 *rbuf,
2221 unsigned int buflen)
2222{
2223 VPRINTK("ENTER\n");
2224 rbuf[3] = 8; /* just one lun, LUN 0, size 8 bytes */
2225
2226 return 0;
2227}
2228
2229/**
Douglas Gilbert845c5832005-10-09 08:55:41 -04002230 * ata_scsi_set_sense - Set SCSI sense data and status
2231 * @cmd: SCSI request to be handled
2232 * @sk: SCSI-defined sense key
2233 * @asc: SCSI-defined additional sense code
2234 * @ascq: SCSI-defined additional sense code qualifier
2235 *
2236 * Helper function that builds a valid fixed format, current
2237 * response code and the given sense key (sk), additional sense
2238 * code (asc) and additional sense code qualifier (ascq) with
2239 * a SCSI command status of %SAM_STAT_CHECK_CONDITION and
2240 * DRIVER_SENSE set in the upper bits of scsi_cmnd::result .
2241 *
2242 * LOCKING:
2243 * Not required
2244 */
2245
2246void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq)
2247{
2248 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
2249
2250 cmd->sense_buffer[0] = 0x70; /* fixed format, current */
2251 cmd->sense_buffer[2] = sk;
2252 cmd->sense_buffer[7] = 18 - 8; /* additional sense length */
2253 cmd->sense_buffer[12] = asc;
2254 cmd->sense_buffer[13] = ascq;
2255}
2256
2257/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 * ata_scsi_badcmd - End a SCSI request with an error
2259 * @cmd: SCSI request to be handled
2260 * @done: SCSI command completion function
2261 * @asc: SCSI-defined additional sense code
2262 * @ascq: SCSI-defined additional sense code qualifier
2263 *
2264 * Helper function that completes a SCSI command with
2265 * %SAM_STAT_CHECK_CONDITION, with a sense key %ILLEGAL_REQUEST
2266 * and the specified additional sense codes.
2267 *
2268 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002269 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 */
2271
2272void ata_scsi_badcmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *), u8 asc, u8 ascq)
2273{
2274 DPRINTK("ENTER\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04002275 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, asc, ascq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 done(cmd);
2278}
2279
Tejun Heo77853bf2006-01-23 13:09:36 +09002280static void atapi_sense_complete(struct ata_queued_cmd *qc)
Jeff Garzika939c962005-10-05 17:09:16 -04002281{
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002282 if (qc->err_mask && ((qc->err_mask & AC_ERR_DEV) == 0)) {
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002283 /* FIXME: not quite right; we don't want the
2284 * translation of taskfile registers into
2285 * a sense descriptors, since that's only
2286 * correct for ATA, not ATAPI
2287 */
2288 ata_gen_ata_desc_sense(qc);
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002289 }
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002290
2291 qc->scsidone(qc->scsicmd);
Tejun Heo77853bf2006-01-23 13:09:36 +09002292 ata_qc_free(qc);
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002293}
2294
2295/* is it pointless to prefer PIO for "safety reasons"? */
2296static inline int ata_pio_use_silly(struct ata_port *ap)
2297{
2298 return (ap->flags & ATA_FLAG_PIO_DMA);
2299}
2300
2301static void atapi_request_sense(struct ata_queued_cmd *qc)
2302{
2303 struct ata_port *ap = qc->ap;
2304 struct scsi_cmnd *cmd = qc->scsicmd;
Jeff Garzika939c962005-10-05 17:09:16 -04002305
2306 DPRINTK("ATAPI request sense\n");
2307
Jeff Garzika939c962005-10-05 17:09:16 -04002308 /* FIXME: is this needed? */
2309 memset(cmd->sense_buffer, 0, sizeof(cmd->sense_buffer));
2310
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002311 ap->ops->tf_read(ap, &qc->tf);
2312
2313 /* fill these in, for the case where they are -not- overwritten */
2314 cmd->sense_buffer[0] = 0x70;
2315 cmd->sense_buffer[2] = qc->tf.feature >> 4;
2316
2317 ata_qc_reinit(qc);
2318
Jeff Garzika939c962005-10-05 17:09:16 -04002319 ata_sg_init_one(qc, cmd->sense_buffer, sizeof(cmd->sense_buffer));
2320 qc->dma_dir = DMA_FROM_DEVICE;
2321
Tejun Heo6e7846e2006-02-12 23:32:58 +09002322 memset(&qc->cdb, 0, qc->dev->cdb_len);
Jeff Garzika939c962005-10-05 17:09:16 -04002323 qc->cdb[0] = REQUEST_SENSE;
2324 qc->cdb[4] = SCSI_SENSE_BUFFERSIZE;
2325
2326 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2327 qc->tf.command = ATA_CMD_PACKET;
2328
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002329 if (ata_pio_use_silly(ap)) {
2330 qc->tf.protocol = ATA_PROT_ATAPI_DMA;
2331 qc->tf.feature |= ATAPI_PKT_DMA;
2332 } else {
2333 qc->tf.protocol = ATA_PROT_ATAPI;
2334 qc->tf.lbam = (8 * 1024) & 0xff;
2335 qc->tf.lbah = (8 * 1024) >> 8;
2336 }
Jeff Garzika939c962005-10-05 17:09:16 -04002337 qc->nbytes = SCSI_SENSE_BUFFERSIZE;
2338
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002339 qc->complete_fn = atapi_sense_complete;
Jeff Garzika939c962005-10-05 17:09:16 -04002340
Tejun Heo8e0e6942006-03-31 20:41:11 +09002341 ata_qc_issue(qc);
Jeff Garzika939c962005-10-05 17:09:16 -04002342
2343 DPRINTK("EXIT\n");
2344}
2345
Tejun Heo77853bf2006-01-23 13:09:36 +09002346static void atapi_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347{
2348 struct scsi_cmnd *cmd = qc->scsicmd;
Albert Leea22e2eb2005-12-05 15:38:02 +08002349 unsigned int err_mask = qc->err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Jeff Garzika7dac442005-10-30 04:44:42 -05002351 VPRINTK("ENTER, err_mask 0x%X\n", err_mask);
Jeff Garzike12669e2005-10-05 18:39:23 -04002352
Tejun Heo246619d2006-05-15 20:58:16 +09002353 /* handle completion from new EH */
2354 if (unlikely(qc->ap->ops->error_handler &&
2355 (err_mask || qc->flags & ATA_QCFLAG_SENSE_VALID))) {
2356
2357 if (!(qc->flags & ATA_QCFLAG_SENSE_VALID)) {
2358 /* FIXME: not quite right; we don't want the
2359 * translation of taskfile registers into a
2360 * sense descriptors, since that's only
2361 * correct for ATA, not ATAPI
2362 */
2363 ata_gen_ata_desc_sense(qc);
2364 }
2365
Tejun Heo22aac082006-08-08 14:08:59 +09002366 /* SCSI EH automatically locks door if sdev->locked is
2367 * set. Sometimes door lock request continues to
2368 * fail, for example, when no media is present. This
2369 * creates a loop - SCSI EH issues door lock which
2370 * fails and gets invoked again to acquire sense data
2371 * for the failed command.
2372 *
2373 * If door lock fails, always clear sdev->locked to
2374 * avoid this infinite loop.
2375 */
2376 if (qc->cdb[0] == ALLOW_MEDIUM_REMOVAL)
2377 qc->dev->sdev->locked = 0;
2378
Tejun Heo246619d2006-05-15 20:58:16 +09002379 qc->scsicmd->result = SAM_STAT_CHECK_CONDITION;
2380 qc->scsidone(cmd);
2381 ata_qc_free(qc);
2382 return;
2383 }
2384
2385 /* successful completion or old EH failure path */
Jeff Garzika7dac442005-10-30 04:44:42 -05002386 if (unlikely(err_mask & AC_ERR_DEV)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 cmd->result = SAM_STAT_CHECK_CONDITION;
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002388 atapi_request_sense(qc);
Tejun Heo77853bf2006-01-23 13:09:36 +09002389 return;
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002390 } else if (unlikely(err_mask)) {
Jeff Garzika7dac442005-10-30 04:44:42 -05002391 /* FIXME: not quite right; we don't want the
2392 * translation of taskfile registers into
2393 * a sense descriptors, since that's only
2394 * correct for ATA, not ATAPI
2395 */
2396 ata_gen_ata_desc_sense(qc);
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002397 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 u8 *scsicmd = cmd->cmnd;
2399
Tony Battersbyfd71da42005-12-21 16:35:44 -05002400 if ((scsicmd[0] == INQUIRY) && ((scsicmd[1] & 0x03) == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 u8 *buf = NULL;
2402 unsigned int buflen;
2403
2404 buflen = ata_scsi_rbuf_get(cmd, &buf);
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002405
2406 /* ATAPI devices typically report zero for their SCSI version,
2407 * and sometimes deviate from the spec WRT response data
2408 * format. If SCSI version is reported as zero like normal,
2409 * then we make the following fixups: 1) Fake MMC-5 version,
2410 * to indicate to the Linux scsi midlayer this is a modern
2411 * device. 2) Ensure response data format / ATAPI information
2412 * are always correct.
2413 */
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002414 if (buf[2] == 0) {
2415 buf[2] = 0x5;
2416 buf[3] = 0x32;
2417 }
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 ata_scsi_rbuf_put(cmd, buf);
2420 }
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 cmd->result = SAM_STAT_GOOD;
2423 }
2424
2425 qc->scsidone(cmd);
Tejun Heo77853bf2006-01-23 13:09:36 +09002426 ata_qc_free(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428/**
2429 * atapi_xlat - Initialize PACKET taskfile
2430 * @qc: command structure to be initialized
2431 * @scsicmd: SCSI CDB associated with this PACKET command
2432 *
2433 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002434 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 *
2436 * RETURNS:
2437 * Zero on success, non-zero on failure.
2438 */
2439
Jeff Garzik057ace52005-10-22 14:27:05 -04002440static unsigned int atapi_xlat(struct ata_queued_cmd *qc, const u8 *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
2442 struct scsi_cmnd *cmd = qc->scsicmd;
2443 struct ata_device *dev = qc->dev;
2444 int using_pio = (dev->flags & ATA_DFLAG_PIO);
be7db052005-04-17 15:26:13 -05002445 int nodata = (cmd->sc_data_direction == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
2447 if (!using_pio)
2448 /* Check whether ATAPI DMA is safe */
2449 if (ata_check_atapi_dma(qc))
2450 using_pio = 1;
2451
Tejun Heo6e7846e2006-02-12 23:32:58 +09002452 memcpy(&qc->cdb, scsicmd, dev->cdb_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
2454 qc->complete_fn = atapi_qc_complete;
2455
2456 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
be7db052005-04-17 15:26:13 -05002457 if (cmd->sc_data_direction == DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 qc->tf.flags |= ATA_TFLAG_WRITE;
2459 DPRINTK("direction: write\n");
2460 }
2461
2462 qc->tf.command = ATA_CMD_PACKET;
2463
2464 /* no data, or PIO data xfer */
2465 if (using_pio || nodata) {
2466 if (nodata)
2467 qc->tf.protocol = ATA_PROT_ATAPI_NODATA;
2468 else
2469 qc->tf.protocol = ATA_PROT_ATAPI;
2470 qc->tf.lbam = (8 * 1024) & 0xff;
2471 qc->tf.lbah = (8 * 1024) >> 8;
2472 }
2473
2474 /* DMA data xfer */
2475 else {
2476 qc->tf.protocol = ATA_PROT_ATAPI_DMA;
2477 qc->tf.feature |= ATAPI_PKT_DMA;
2478
Albert Lee95de7192006-04-04 10:57:18 +08002479 if (atapi_dmadir && (cmd->sc_data_direction != DMA_TO_DEVICE))
2480 /* some SATA bridges need us to indicate data xfer direction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 qc->tf.feature |= ATAPI_DMADIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
2483
Christoph Hellwig5d5ff442006-06-03 13:21:13 +02002484 qc->nbytes = cmd->request_bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486 return 0;
2487}
2488
Tejun Heoab5b3a52006-05-31 18:27:34 +09002489static struct ata_device * ata_find_dev(struct ata_port *ap, int id)
2490{
2491 if (likely(id < ATA_MAX_DEVICES))
2492 return &ap->device[id];
2493 return NULL;
2494}
2495
2496static struct ata_device * __ata_scsi_find_dev(struct ata_port *ap,
2497 const struct scsi_device *scsidev)
2498{
2499 /* skip commands not addressed to targets we simulate */
2500 if (unlikely(scsidev->channel || scsidev->lun))
2501 return NULL;
2502
2503 return ata_find_dev(ap, scsidev->id);
2504}
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506/**
Brian King99ba9e02006-06-12 14:54:17 -05002507 * ata_scsi_dev_enabled - determine if device is enabled
2508 * @dev: ATA device
2509 *
2510 * Determine if commands should be sent to the specified device.
2511 *
2512 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002513 * spin_lock_irqsave(host lock)
Brian King99ba9e02006-06-12 14:54:17 -05002514 *
2515 * RETURNS:
2516 * 0 if commands are not allowed / 1 if commands are allowed
2517 */
2518
2519static int ata_scsi_dev_enabled(struct ata_device *dev)
2520{
2521 if (unlikely(!ata_dev_enabled(dev)))
2522 return 0;
2523
2524 if (!atapi_enabled || (dev->ap->flags & ATA_FLAG_NO_ATAPI)) {
2525 if (unlikely(dev->class == ATA_DEV_ATAPI)) {
2526 ata_dev_printk(dev, KERN_WARNING,
2527 "WARNING: ATAPI is %s, device ignored.\n",
2528 atapi_enabled ? "not supported with this driver" : "disabled");
2529 return 0;
2530 }
2531 }
2532
2533 return 1;
2534}
2535
2536/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 * ata_scsi_find_dev - lookup ata_device from scsi_cmnd
2538 * @ap: ATA port to which the device is attached
2539 * @scsidev: SCSI device from which we derive the ATA device
2540 *
2541 * Given various information provided in struct scsi_cmnd,
2542 * map that onto an ATA bus, and using that mapping
2543 * determine which ata_device is associated with the
2544 * SCSI command to be sent.
2545 *
2546 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002547 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 *
2549 * RETURNS:
2550 * Associated ATA device, or %NULL if not found.
2551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552static struct ata_device *
Jeff Garzik057ace52005-10-22 14:27:05 -04002553ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554{
Tejun Heoab5b3a52006-05-31 18:27:34 +09002555 struct ata_device *dev = __ata_scsi_find_dev(ap, scsidev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Brian King99ba9e02006-06-12 14:54:17 -05002557 if (unlikely(!dev || !ata_scsi_dev_enabled(dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 return NULL;
2559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 return dev;
2561}
2562
Jeff Garzikb0955182005-05-12 15:45:22 -04002563/*
2564 * ata_scsi_map_proto - Map pass-thru protocol value to taskfile value.
2565 * @byte1: Byte 1 from pass-thru CDB.
2566 *
2567 * RETURNS:
2568 * ATA_PROT_UNKNOWN if mapping failed/unimplemented, protocol otherwise.
2569 */
2570static u8
2571ata_scsi_map_proto(u8 byte1)
2572{
2573 switch((byte1 & 0x1e) >> 1) {
2574 case 3: /* Non-data */
2575 return ATA_PROT_NODATA;
2576
2577 case 6: /* DMA */
2578 return ATA_PROT_DMA;
2579
2580 case 4: /* PIO Data-in */
2581 case 5: /* PIO Data-out */
Jeff Garzikb0955182005-05-12 15:45:22 -04002582 return ATA_PROT_PIO;
2583
2584 case 10: /* Device Reset */
2585 case 0: /* Hard Reset */
2586 case 1: /* SRST */
2587 case 2: /* Bus Idle */
2588 case 7: /* Packet */
2589 case 8: /* DMA Queued */
2590 case 9: /* Device Diagnostic */
2591 case 11: /* UDMA Data-in */
2592 case 12: /* UDMA Data-Out */
2593 case 13: /* FPDMA */
2594 default: /* Reserved */
2595 break;
2596 }
2597
2598 return ATA_PROT_UNKNOWN;
2599}
2600
2601/**
2602 * ata_scsi_pass_thru - convert ATA pass-thru CDB to taskfile
2603 * @qc: command structure to be initialized
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08002604 * @scsicmd: SCSI command to convert
Jeff Garzikb0955182005-05-12 15:45:22 -04002605 *
2606 * Handles either 12 or 16-byte versions of the CDB.
2607 *
2608 * RETURNS:
2609 * Zero on success, non-zero on failure.
2610 */
2611static unsigned int
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002612ata_scsi_pass_thru(struct ata_queued_cmd *qc, const u8 *scsicmd)
Jeff Garzikb0955182005-05-12 15:45:22 -04002613{
2614 struct ata_taskfile *tf = &(qc->tf);
2615 struct scsi_cmnd *cmd = qc->scsicmd;
Alan Coxf79d4092006-05-22 16:55:11 +01002616 struct ata_device *dev = qc->dev;
Jeff Garzikb0955182005-05-12 15:45:22 -04002617
2618 if ((tf->protocol = ata_scsi_map_proto(scsicmd[1])) == ATA_PROT_UNKNOWN)
Tejun Heo9a405252005-12-02 11:49:11 +09002619 goto invalid_fld;
Jeff Garzik8190bdb2006-05-24 01:53:39 -04002620
Alan Coxf79d4092006-05-22 16:55:11 +01002621 /* We may not issue DMA commands if no DMA mode is set */
2622 if (tf->protocol == ATA_PROT_DMA && dev->dma_mode == 0)
2623 goto invalid_fld;
Jeff Garzikb0955182005-05-12 15:45:22 -04002624
Albert Leef59b0cf2006-03-16 17:59:22 +08002625 if (scsicmd[1] & 0xe0)
2626 /* PIO multi not supported yet */
2627 goto invalid_fld;
2628
Jeff Garzikb0955182005-05-12 15:45:22 -04002629 /*
2630 * 12 and 16 byte CDBs use different offsets to
2631 * provide the various register values.
2632 */
2633 if (scsicmd[0] == ATA_16) {
2634 /*
2635 * 16-byte CDB - may contain extended commands.
2636 *
2637 * If that is the case, copy the upper byte register values.
2638 */
2639 if (scsicmd[1] & 0x01) {
2640 tf->hob_feature = scsicmd[3];
2641 tf->hob_nsect = scsicmd[5];
2642 tf->hob_lbal = scsicmd[7];
2643 tf->hob_lbam = scsicmd[9];
2644 tf->hob_lbah = scsicmd[11];
2645 tf->flags |= ATA_TFLAG_LBA48;
2646 } else
2647 tf->flags &= ~ATA_TFLAG_LBA48;
2648
2649 /*
2650 * Always copy low byte, device and command registers.
2651 */
2652 tf->feature = scsicmd[4];
2653 tf->nsect = scsicmd[6];
2654 tf->lbal = scsicmd[8];
2655 tf->lbam = scsicmd[10];
2656 tf->lbah = scsicmd[12];
2657 tf->device = scsicmd[13];
2658 tf->command = scsicmd[14];
2659 } else {
2660 /*
2661 * 12-byte CDB - incapable of extended commands.
2662 */
2663 tf->flags &= ~ATA_TFLAG_LBA48;
2664
2665 tf->feature = scsicmd[3];
2666 tf->nsect = scsicmd[4];
2667 tf->lbal = scsicmd[5];
2668 tf->lbam = scsicmd[6];
2669 tf->lbah = scsicmd[7];
2670 tf->device = scsicmd[8];
2671 tf->command = scsicmd[9];
2672 }
Mark Lorddcc2d1e2005-11-13 16:22:06 -05002673 /*
2674 * If slave is possible, enforce correct master/slave bit
2675 */
2676 if (qc->ap->flags & ATA_FLAG_SLAVE_POSS)
2677 tf->device = qc->dev->devno ?
2678 tf->device | ATA_DEV1 : tf->device & ~ATA_DEV1;
Jeff Garzikb0955182005-05-12 15:45:22 -04002679
2680 /*
2681 * Filter SET_FEATURES - XFER MODE command -- otherwise,
2682 * SET_FEATURES - XFER MODE must be preceded/succeeded
2683 * by an update to hardware-specific registers for each
2684 * controller (i.e. the reason for ->set_piomode(),
2685 * ->set_dmamode(), and ->post_set_mode() hooks).
2686 */
2687 if ((tf->command == ATA_CMD_SET_FEATURES)
2688 && (tf->feature == SETFEATURES_XFER))
Tejun Heo9a405252005-12-02 11:49:11 +09002689 goto invalid_fld;
Jeff Garzikb0955182005-05-12 15:45:22 -04002690
2691 /*
2692 * Set flags so that all registers will be written,
2693 * and pass on write indication (used for PIO/DMA
2694 * setup.)
2695 */
2696 tf->flags |= (ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE);
2697
Jeff Garzik0274aa22005-06-22 13:50:56 -04002698 if (cmd->sc_data_direction == DMA_TO_DEVICE)
Jeff Garzikb0955182005-05-12 15:45:22 -04002699 tf->flags |= ATA_TFLAG_WRITE;
2700
2701 /*
2702 * Set transfer length.
2703 *
2704 * TODO: find out if we need to do more here to
2705 * cover scatter/gather case.
2706 */
Christoph Hellwig5d5ff442006-06-03 13:21:13 +02002707 qc->nsect = cmd->request_bufflen / ATA_SECT_SIZE;
Jeff Garzikb0955182005-05-12 15:45:22 -04002708
Tejun Heoe61e0672006-05-15 20:57:40 +09002709 /* request result TF */
2710 qc->flags |= ATA_QCFLAG_RESULT_TF;
2711
Jeff Garzikb0955182005-05-12 15:45:22 -04002712 return 0;
Tejun Heo9a405252005-12-02 11:49:11 +09002713
2714 invalid_fld:
2715 ata_scsi_set_sense(qc->scsicmd, ILLEGAL_REQUEST, 0x24, 0x00);
2716 /* "Invalid field in cdb" */
2717 return 1;
Jeff Garzikb0955182005-05-12 15:45:22 -04002718}
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720/**
2721 * ata_get_xlat_func - check if SCSI to ATA translation is possible
2722 * @dev: ATA device
2723 * @cmd: SCSI command opcode to consider
2724 *
2725 * Look up the SCSI command given, and determine whether the
2726 * SCSI command is to be translated or simulated.
2727 *
2728 * RETURNS:
2729 * Pointer to translation function if possible, %NULL if not.
2730 */
2731
2732static inline ata_xlat_func_t ata_get_xlat_func(struct ata_device *dev, u8 cmd)
2733{
2734 switch (cmd) {
2735 case READ_6:
2736 case READ_10:
2737 case READ_16:
2738
2739 case WRITE_6:
2740 case WRITE_10:
2741 case WRITE_16:
2742 return ata_scsi_rw_xlat;
2743
2744 case SYNCHRONIZE_CACHE:
2745 if (ata_try_flush_cache(dev))
2746 return ata_scsi_flush_xlat;
2747 break;
2748
2749 case VERIFY:
2750 case VERIFY_16:
2751 return ata_scsi_verify_xlat;
Jeff Garzikb0955182005-05-12 15:45:22 -04002752
2753 case ATA_12:
2754 case ATA_16:
2755 return ata_scsi_pass_thru;
Jeff Garzikda613962005-08-29 19:01:43 -04002756
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04002757 case START_STOP:
2758 return ata_scsi_start_stop_xlat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 }
2760
2761 return NULL;
2762}
2763
2764/**
2765 * ata_scsi_dump_cdb - dump SCSI command contents to dmesg
2766 * @ap: ATA port to which the command was being sent
2767 * @cmd: SCSI command to dump
2768 *
2769 * Prints the contents of a SCSI command via printk().
2770 */
2771
2772static inline void ata_scsi_dump_cdb(struct ata_port *ap,
2773 struct scsi_cmnd *cmd)
2774{
2775#ifdef ATA_DEBUG
2776 struct scsi_device *scsidev = cmd->device;
2777 u8 *scsicmd = cmd->cmnd;
2778
2779 DPRINTK("CDB (%u:%d,%d,%d) %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
2780 ap->id,
2781 scsidev->channel, scsidev->id, scsidev->lun,
2782 scsicmd[0], scsicmd[1], scsicmd[2], scsicmd[3],
2783 scsicmd[4], scsicmd[5], scsicmd[6], scsicmd[7],
2784 scsicmd[8]);
2785#endif
2786}
2787
Tejun Heo2115ea92006-05-15 21:03:39 +09002788static inline int __ata_scsi_queuecmd(struct scsi_cmnd *cmd,
2789 void (*done)(struct scsi_cmnd *),
2790 struct ata_device *dev)
Brian Kingeb3f0f92006-03-23 17:30:02 -06002791{
Tejun Heo2115ea92006-05-15 21:03:39 +09002792 int rc = 0;
2793
Brian Kingeb3f0f92006-03-23 17:30:02 -06002794 if (dev->class == ATA_DEV_ATA) {
2795 ata_xlat_func_t xlat_func = ata_get_xlat_func(dev,
2796 cmd->cmnd[0]);
2797
2798 if (xlat_func)
Tejun Heo2115ea92006-05-15 21:03:39 +09002799 rc = ata_scsi_translate(dev, cmd, done, xlat_func);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002800 else
Tejun Heo3373efd2006-05-15 20:57:53 +09002801 ata_scsi_simulate(dev, cmd, done);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002802 } else
Tejun Heo2115ea92006-05-15 21:03:39 +09002803 rc = ata_scsi_translate(dev, cmd, done, atapi_xlat);
2804
2805 return rc;
Brian Kingeb3f0f92006-03-23 17:30:02 -06002806}
2807
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808/**
2809 * ata_scsi_queuecmd - Issue SCSI cdb to libata-managed device
2810 * @cmd: SCSI command to be sent
2811 * @done: Completion function, called when command is complete
2812 *
2813 * In some cases, this function translates SCSI commands into
2814 * ATA taskfiles, and queues the taskfiles to be sent to
2815 * hardware. In other cases, this function simulates a
2816 * SCSI device by evaluating and responding to certain
2817 * SCSI commands. This creates the overall effect of
2818 * ATA and ATAPI devices appearing as SCSI devices.
2819 *
2820 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002821 * Releases scsi-layer-held lock, and obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 *
2823 * RETURNS:
Tejun Heo2115ea92006-05-15 21:03:39 +09002824 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
2825 * 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
2828{
2829 struct ata_port *ap;
2830 struct ata_device *dev;
2831 struct scsi_device *scsidev = cmd->device;
Jeff Garzik005a5a02005-10-30 23:31:48 -05002832 struct Scsi_Host *shost = scsidev->host;
Tejun Heo2115ea92006-05-15 21:03:39 +09002833 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Jeff Garzik35bb94b2006-04-11 13:12:34 -04002835 ap = ata_shost_to_port(shost);
Jeff Garzik005a5a02005-10-30 23:31:48 -05002836
2837 spin_unlock(shost->host_lock);
Jeff Garzikba6a1302006-06-22 23:46:10 -04002838 spin_lock(ap->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 ata_scsi_dump_cdb(ap, cmd);
2841
2842 dev = ata_scsi_find_dev(ap, scsidev);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002843 if (likely(dev))
Tejun Heo2115ea92006-05-15 21:03:39 +09002844 rc = __ata_scsi_queuecmd(cmd, done, dev);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002845 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 cmd->result = (DID_BAD_TARGET << 16);
2847 done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 }
2849
Jeff Garzikba6a1302006-06-22 23:46:10 -04002850 spin_unlock(ap->lock);
Jeff Garzik005a5a02005-10-30 23:31:48 -05002851 spin_lock(shost->host_lock);
Tejun Heo2115ea92006-05-15 21:03:39 +09002852 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853}
2854
2855/**
2856 * ata_scsi_simulate - simulate SCSI command on ATA device
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002857 * @dev: the target device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 * @cmd: SCSI command being sent to device.
2859 * @done: SCSI command completion function.
2860 *
2861 * Interprets and directly executes a select list of SCSI commands
2862 * that can be handled internally.
2863 *
2864 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002865 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 */
2867
Tejun Heo3373efd2006-05-15 20:57:53 +09002868void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 void (*done)(struct scsi_cmnd *))
2870{
2871 struct ata_scsi_args args;
Jeff Garzik057ace52005-10-22 14:27:05 -04002872 const u8 *scsicmd = cmd->cmnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002874 args.dev = dev;
2875 args.id = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 args.cmd = cmd;
2877 args.done = done;
2878
2879 switch(scsicmd[0]) {
2880 /* no-op's, complete with success */
2881 case SYNCHRONIZE_CACHE:
2882 case REZERO_UNIT:
2883 case SEEK_6:
2884 case SEEK_10:
2885 case TEST_UNIT_READY:
2886 case FORMAT_UNIT: /* FIXME: correct? */
2887 case SEND_DIAGNOSTIC: /* FIXME: correct? */
2888 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
2889 break;
2890
2891 case INQUIRY:
2892 if (scsicmd[1] & 2) /* is CmdDt set? */
Douglas Gilbertae006512005-10-09 09:09:35 -04002893 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 else if ((scsicmd[1] & 1) == 0) /* is EVPD clear? */
2895 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_std);
2896 else if (scsicmd[2] == 0x00)
2897 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_00);
2898 else if (scsicmd[2] == 0x80)
2899 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_80);
2900 else if (scsicmd[2] == 0x83)
2901 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_83);
2902 else
Douglas Gilbertae006512005-10-09 09:09:35 -04002903 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 break;
2905
2906 case MODE_SENSE:
2907 case MODE_SENSE_10:
2908 ata_scsi_rbuf_fill(&args, ata_scsiop_mode_sense);
2909 break;
2910
2911 case MODE_SELECT: /* unconditionally return */
2912 case MODE_SELECT_10: /* bad-field-in-cdb */
Douglas Gilbertae006512005-10-09 09:09:35 -04002913 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 break;
2915
2916 case READ_CAPACITY:
2917 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
2918 break;
2919
2920 case SERVICE_ACTION_IN:
2921 if ((scsicmd[1] & 0x1f) == SAI_READ_CAPACITY_16)
2922 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
2923 else
Douglas Gilbertae006512005-10-09 09:09:35 -04002924 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 break;
2926
2927 case REPORT_LUNS:
2928 ata_scsi_rbuf_fill(&args, ata_scsiop_report_luns);
2929 break;
2930
Jeff Garzikb0955182005-05-12 15:45:22 -04002931 /* mandatory commands we haven't implemented yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 case REQUEST_SENSE:
2933
2934 /* all other commands */
2935 default:
Douglas Gilbertae006512005-10-09 09:09:35 -04002936 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x20, 0x0);
2937 /* "Invalid command operation code" */
2938 done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 break;
2940 }
2941}
2942
Jeff Garzik644dd0c2005-10-03 15:55:19 -04002943void ata_scsi_scan_host(struct ata_port *ap)
2944{
2945 unsigned int i;
2946
Tejun Heo198e0fe2006-04-02 18:51:52 +09002947 if (ap->flags & ATA_FLAG_DISABLED)
Jeff Garzik644dd0c2005-10-03 15:55:19 -04002948 return;
2949
Jeff Garzik3f19ee82005-10-03 21:36:41 -04002950 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heo3edebac2006-05-31 18:27:40 +09002951 struct ata_device *dev = &ap->device[i];
2952 struct scsi_device *sdev;
Jeff Garzik3f19ee82005-10-03 21:36:41 -04002953
Tejun Heo3edebac2006-05-31 18:27:40 +09002954 if (!ata_dev_enabled(dev) || dev->sdev)
2955 continue;
2956
Jeff Garzikcca39742006-08-24 03:19:22 -04002957 sdev = __scsi_add_device(ap->scsi_host, 0, i, 0, NULL);
Tejun Heo3edebac2006-05-31 18:27:40 +09002958 if (!IS_ERR(sdev)) {
2959 dev->sdev = sdev;
2960 scsi_device_put(sdev);
2961 }
Jeff Garzik3f19ee82005-10-03 21:36:41 -04002962 }
Jeff Garzik644dd0c2005-10-03 15:55:19 -04002963}
Tejun Heo0ea035a2006-05-31 18:28:01 +09002964
2965/**
2966 * ata_scsi_offline_dev - offline attached SCSI device
2967 * @dev: ATA device to offline attached SCSI device for
2968 *
2969 * This function is called from ata_eh_hotplug() and responsible
2970 * for taking the SCSI device attached to @dev offline. This
Jeff Garzikcca39742006-08-24 03:19:22 -04002971 * function is called with host lock which protects dev->sdev
Tejun Heo0ea035a2006-05-31 18:28:01 +09002972 * against clearing.
2973 *
2974 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002975 * spin_lock_irqsave(host lock)
Tejun Heo0ea035a2006-05-31 18:28:01 +09002976 *
2977 * RETURNS:
2978 * 1 if attached SCSI device exists, 0 otherwise.
2979 */
2980int ata_scsi_offline_dev(struct ata_device *dev)
2981{
2982 if (dev->sdev) {
2983 scsi_device_set_state(dev->sdev, SDEV_OFFLINE);
2984 return 1;
2985 }
2986 return 0;
2987}
Tejun Heo580b2102006-05-31 18:28:05 +09002988
2989/**
2990 * ata_scsi_remove_dev - remove attached SCSI device
2991 * @dev: ATA device to remove attached SCSI device for
2992 *
2993 * This function is called from ata_eh_scsi_hotplug() and
2994 * responsible for removing the SCSI device attached to @dev.
2995 *
2996 * LOCKING:
2997 * Kernel thread context (may sleep).
2998 */
2999static void ata_scsi_remove_dev(struct ata_device *dev)
3000{
3001 struct ata_port *ap = dev->ap;
3002 struct scsi_device *sdev;
3003 unsigned long flags;
3004
3005 /* Alas, we need to grab scan_mutex to ensure SCSI device
3006 * state doesn't change underneath us and thus
3007 * scsi_device_get() always succeeds. The mutex locking can
3008 * be removed if there is __scsi_device_get() interface which
3009 * increments reference counts regardless of device state.
3010 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003011 mutex_lock(&ap->scsi_host->scan_mutex);
Jeff Garzikba6a1302006-06-22 23:46:10 -04003012 spin_lock_irqsave(ap->lock, flags);
Tejun Heo580b2102006-05-31 18:28:05 +09003013
Jeff Garzikcca39742006-08-24 03:19:22 -04003014 /* clearing dev->sdev is protected by host lock */
Tejun Heo580b2102006-05-31 18:28:05 +09003015 sdev = dev->sdev;
3016 dev->sdev = NULL;
3017
3018 if (sdev) {
3019 /* If user initiated unplug races with us, sdev can go
Jeff Garzikcca39742006-08-24 03:19:22 -04003020 * away underneath us after the host lock and
Tejun Heo580b2102006-05-31 18:28:05 +09003021 * scan_mutex are released. Hold onto it.
3022 */
3023 if (scsi_device_get(sdev) == 0) {
3024 /* The following ensures the attached sdev is
3025 * offline on return from ata_scsi_offline_dev()
3026 * regardless it wins or loses the race
3027 * against this function.
3028 */
3029 scsi_device_set_state(sdev, SDEV_OFFLINE);
3030 } else {
3031 WARN_ON(1);
3032 sdev = NULL;
3033 }
3034 }
3035
Jeff Garzikba6a1302006-06-22 23:46:10 -04003036 spin_unlock_irqrestore(ap->lock, flags);
Jeff Garzikcca39742006-08-24 03:19:22 -04003037 mutex_unlock(&ap->scsi_host->scan_mutex);
Tejun Heo580b2102006-05-31 18:28:05 +09003038
3039 if (sdev) {
3040 ata_dev_printk(dev, KERN_INFO, "detaching (SCSI %s)\n",
3041 sdev->sdev_gendev.bus_id);
3042
3043 scsi_remove_device(sdev);
3044 scsi_device_put(sdev);
3045 }
3046}
3047
3048/**
3049 * ata_scsi_hotplug - SCSI part of hotplug
3050 * @data: Pointer to ATA port to perform SCSI hotplug on
3051 *
3052 * Perform SCSI part of hotplug. It's executed from a separate
3053 * workqueue after EH completes. This is necessary because SCSI
3054 * hot plugging requires working EH and hot unplugging is
3055 * synchronized with hot plugging with a mutex.
3056 *
3057 * LOCKING:
3058 * Kernel thread context (may sleep).
3059 */
3060void ata_scsi_hotplug(void *data)
3061{
3062 struct ata_port *ap = data;
3063 int i;
3064
Tejun Heob51e9e52006-06-29 01:29:30 +09003065 if (ap->pflags & ATA_PFLAG_UNLOADING) {
Tejun Heo580b2102006-05-31 18:28:05 +09003066 DPRINTK("ENTER/EXIT - unloading\n");
3067 return;
3068 }
3069
3070 DPRINTK("ENTER\n");
3071
3072 /* unplug detached devices */
3073 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3074 struct ata_device *dev = &ap->device[i];
3075 unsigned long flags;
3076
3077 if (!(dev->flags & ATA_DFLAG_DETACHED))
3078 continue;
3079
Jeff Garzikba6a1302006-06-22 23:46:10 -04003080 spin_lock_irqsave(ap->lock, flags);
Tejun Heo580b2102006-05-31 18:28:05 +09003081 dev->flags &= ~ATA_DFLAG_DETACHED;
Jeff Garzikba6a1302006-06-22 23:46:10 -04003082 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo580b2102006-05-31 18:28:05 +09003083
3084 ata_scsi_remove_dev(dev);
3085 }
3086
3087 /* scan for new ones */
3088 ata_scsi_scan_host(ap);
3089
3090 /* If we scanned while EH was in progress, scan would have
3091 * failed silently. Requeue if there are enabled but
3092 * unattached devices.
3093 */
3094 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3095 struct ata_device *dev = &ap->device[i];
3096 if (ata_dev_enabled(dev) && !dev->sdev) {
3097 queue_delayed_work(ata_aux_wq, &ap->hotplug_task, HZ);
3098 break;
3099 }
3100 }
3101
3102 DPRINTK("EXIT\n");
3103}
Tejun Heo83c47bc2006-05-31 18:28:07 +09003104
3105/**
3106 * ata_scsi_user_scan - indication for user-initiated bus scan
3107 * @shost: SCSI host to scan
3108 * @channel: Channel to scan
3109 * @id: ID to scan
3110 * @lun: LUN to scan
3111 *
3112 * This function is called when user explicitly requests bus
3113 * scan. Set probe pending flag and invoke EH.
3114 *
3115 * LOCKING:
3116 * SCSI layer (we don't care)
3117 *
3118 * RETURNS:
3119 * Zero.
3120 */
3121static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
3122 unsigned int id, unsigned int lun)
3123{
3124 struct ata_port *ap = ata_shost_to_port(shost);
3125 unsigned long flags;
3126 int rc = 0;
3127
3128 if (!ap->ops->error_handler)
3129 return -EOPNOTSUPP;
3130
3131 if ((channel != SCAN_WILD_CARD && channel != 0) ||
3132 (lun != SCAN_WILD_CARD && lun != 0))
3133 return -EINVAL;
3134
Jeff Garzikba6a1302006-06-22 23:46:10 -04003135 spin_lock_irqsave(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +09003136
3137 if (id == SCAN_WILD_CARD) {
3138 ap->eh_info.probe_mask |= (1 << ATA_MAX_DEVICES) - 1;
3139 ap->eh_info.action |= ATA_EH_SOFTRESET;
3140 } else {
3141 struct ata_device *dev = ata_find_dev(ap, id);
3142
3143 if (dev) {
3144 ap->eh_info.probe_mask |= 1 << dev->devno;
3145 ap->eh_info.action |= ATA_EH_SOFTRESET;
Tejun Heo28324302006-07-03 16:07:26 +09003146 ap->eh_info.flags |= ATA_EHI_RESUME_LINK;
Tejun Heo83c47bc2006-05-31 18:28:07 +09003147 } else
3148 rc = -EINVAL;
3149 }
3150
3151 if (rc == 0)
3152 ata_port_schedule_eh(ap);
3153
Jeff Garzikba6a1302006-06-22 23:46:10 -04003154 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +09003155
3156 return rc;
3157}
zhao, forrest3057ac32006-06-12 12:01:34 +08003158
3159/**
Tejun Heod0171262006-06-12 22:51:14 +09003160 * ata_scsi_dev_rescan - initiate scsi_rescan_device()
3161 * @data: Pointer to ATA port to perform scsi_rescan_device()
zhao, forrest3057ac32006-06-12 12:01:34 +08003162 *
Tejun Heod0171262006-06-12 22:51:14 +09003163 * After ATA pass thru (SAT) commands are executed successfully,
3164 * libata need to propagate the changes to SCSI layer. This
3165 * function must be executed from ata_aux_wq such that sdev
3166 * attach/detach don't race with rescan.
zhao, forrest3057ac32006-06-12 12:01:34 +08003167 *
Tejun Heod0171262006-06-12 22:51:14 +09003168 * LOCKING:
3169 * Kernel thread context (may sleep).
zhao, forrest3057ac32006-06-12 12:01:34 +08003170 */
3171void ata_scsi_dev_rescan(void *data)
3172{
3173 struct ata_port *ap = data;
3174 struct ata_device *dev;
3175 unsigned int i;
3176
3177 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3178 dev = &ap->device[i];
3179
Tejun Heod0171262006-06-12 22:51:14 +09003180 if (ata_dev_enabled(dev) && dev->sdev)
zhao, forrest3057ac32006-06-12 12:01:34 +08003181 scsi_rescan_device(&(dev->sdev->sdev_gendev));
3182 }
3183}
Brian King80289162006-08-07 14:27:31 -05003184
3185/**
3186 * ata_sas_port_alloc - Allocate port for a SAS attached SATA device
Jeff Garzik4f931372006-09-29 05:07:25 -04003187 * @host: ATA host container for all SAS ports
Brian King80289162006-08-07 14:27:31 -05003188 * @port_info: Information from low-level host driver
Jeff Garzikcca39742006-08-24 03:19:22 -04003189 * @shost: SCSI host that the scsi device is attached to
Brian King80289162006-08-07 14:27:31 -05003190 *
3191 * LOCKING:
3192 * PCI/etc. bus probe sem.
3193 *
3194 * RETURNS:
3195 * ata_port pointer on success / NULL on failure.
3196 */
3197
Jeff Garzikcca39742006-08-24 03:19:22 -04003198struct ata_port *ata_sas_port_alloc(struct ata_host *host,
Brian King80289162006-08-07 14:27:31 -05003199 struct ata_port_info *port_info,
Jeff Garzikcca39742006-08-24 03:19:22 -04003200 struct Scsi_Host *shost)
Brian King80289162006-08-07 14:27:31 -05003201{
3202 struct ata_port *ap = kzalloc(sizeof(*ap), GFP_KERNEL);
3203 struct ata_probe_ent *ent;
3204
3205 if (!ap)
3206 return NULL;
3207
Jeff Garzikcca39742006-08-24 03:19:22 -04003208 ent = ata_probe_ent_alloc(host->dev, port_info);
Brian King80289162006-08-07 14:27:31 -05003209 if (!ent) {
3210 kfree(ap);
3211 return NULL;
3212 }
3213
Jeff Garzikcca39742006-08-24 03:19:22 -04003214 ata_port_init(ap, host, ent, 0);
3215 ap->lock = shost->host_lock;
Brian King80289162006-08-07 14:27:31 -05003216 kfree(ent);
3217 return ap;
3218}
3219EXPORT_SYMBOL_GPL(ata_sas_port_alloc);
3220
3221/**
3222 * ata_sas_port_start - Set port up for dma.
3223 * @ap: Port to initialize
3224 *
3225 * Called just after data structures for each port are
3226 * initialized. Allocates DMA pad.
3227 *
3228 * May be used as the port_start() entry in ata_port_operations.
3229 *
3230 * LOCKING:
3231 * Inherited from caller.
3232 */
3233int ata_sas_port_start(struct ata_port *ap)
3234{
3235 return ata_pad_alloc(ap, ap->dev);
3236}
3237EXPORT_SYMBOL_GPL(ata_sas_port_start);
3238
3239/**
3240 * ata_port_stop - Undo ata_sas_port_start()
3241 * @ap: Port to shut down
3242 *
3243 * Frees the DMA pad.
3244 *
3245 * May be used as the port_stop() entry in ata_port_operations.
3246 *
3247 * LOCKING:
3248 * Inherited from caller.
3249 */
3250
3251void ata_sas_port_stop(struct ata_port *ap)
3252{
3253 ata_pad_free(ap, ap->dev);
3254}
3255EXPORT_SYMBOL_GPL(ata_sas_port_stop);
3256
3257/**
3258 * ata_sas_port_init - Initialize a SATA device
3259 * @ap: SATA port to initialize
3260 *
3261 * LOCKING:
3262 * PCI/etc. bus probe sem.
3263 *
3264 * RETURNS:
3265 * Zero on success, non-zero on error.
3266 */
3267
3268int ata_sas_port_init(struct ata_port *ap)
3269{
3270 int rc = ap->ops->port_start(ap);
3271
3272 if (!rc)
3273 rc = ata_bus_probe(ap);
3274
3275 return rc;
3276}
3277EXPORT_SYMBOL_GPL(ata_sas_port_init);
3278
3279/**
3280 * ata_sas_port_destroy - Destroy a SATA port allocated by ata_sas_port_alloc
3281 * @ap: SATA port to destroy
3282 *
3283 */
3284
3285void ata_sas_port_destroy(struct ata_port *ap)
3286{
3287 ap->ops->port_stop(ap);
3288 kfree(ap);
3289}
3290EXPORT_SYMBOL_GPL(ata_sas_port_destroy);
3291
3292/**
3293 * ata_sas_slave_configure - Default slave_config routine for libata devices
3294 * @sdev: SCSI device to configure
3295 * @ap: ATA port to which SCSI device is attached
3296 *
3297 * RETURNS:
3298 * Zero.
3299 */
3300
3301int ata_sas_slave_configure(struct scsi_device *sdev, struct ata_port *ap)
3302{
3303 ata_scsi_sdev_config(sdev);
3304 ata_scsi_dev_config(sdev, ap->device);
3305 return 0;
3306}
3307EXPORT_SYMBOL_GPL(ata_sas_slave_configure);
3308
3309/**
3310 * ata_sas_queuecmd - Issue SCSI cdb to libata-managed device
3311 * @cmd: SCSI command to be sent
3312 * @done: Completion function, called when command is complete
3313 * @ap: ATA port to which the command is being sent
3314 *
3315 * RETURNS:
3316 * Zero.
3317 */
3318
3319int ata_sas_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *),
3320 struct ata_port *ap)
3321{
3322 ata_scsi_dump_cdb(ap, cmd);
3323
3324 if (likely(ata_scsi_dev_enabled(ap->device)))
3325 __ata_scsi_queuecmd(cmd, done, ap->device);
3326 else {
3327 cmd->result = (DID_BAD_TARGET << 16);
3328 done(cmd);
3329 }
3330 return 0;
3331}
3332EXPORT_SYMBOL_GPL(ata_sas_queuecmd);