blob: 479c29e2e25cf7fbe21ad6dd691c51f2f2e3cede [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>
Jeff Garzik2dcb4072007-10-19 06:42:56 -040048#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include "libata.h"
51
Tejun Heo87340e92008-04-28 17:48:51 +090052#define SECTOR_SIZE 512
53#define ATA_SCSI_RBUF_SIZE 4096
54
55static DEFINE_SPINLOCK(ata_scsi_rbuf_lock);
56static u8 ata_scsi_rbuf[ATA_SCSI_RBUF_SIZE];
Jeff Garzikb0955182005-05-12 15:45:22 -040057
Tejun Heoad706992006-12-17 10:45:57 +090058typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *qc);
Tejun Heoab5b3a52006-05-31 18:27:34 +090059
Jeff Garzik2dcb4072007-10-19 06:42:56 -040060static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap,
Tejun Heoab5b3a52006-05-31 18:27:34 +090061 const struct scsi_device *scsidev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -040062static struct ata_device *ata_scsi_find_dev(struct ata_port *ap,
Tejun Heoab5b3a52006-05-31 18:27:34 +090063 const struct scsi_device *scsidev);
Tejun Heo83c47bc2006-05-31 18:28:07 +090064static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
65 unsigned int id, unsigned int lun);
Tejun Heoab5b3a52006-05-31 18:27:34 +090066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Douglas Gilbert00ac37f2005-10-28 15:58:28 -040068#define RW_RECOVERY_MPAGE 0x1
69#define RW_RECOVERY_MPAGE_LEN 12
70#define CACHE_MPAGE 0x8
71#define CACHE_MPAGE_LEN 20
72#define CONTROL_MPAGE 0xa
73#define CONTROL_MPAGE_LEN 12
74#define ALL_MPAGES 0x3f
75#define ALL_SUB_MPAGES 0xff
76
77
Jeff Garzik24f75682007-09-21 07:54:49 -040078static const u8 def_rw_recovery_mpage[RW_RECOVERY_MPAGE_LEN] = {
Douglas Gilbert00ac37f2005-10-28 15:58:28 -040079 RW_RECOVERY_MPAGE,
80 RW_RECOVERY_MPAGE_LEN - 2,
Jeff Garzik24f75682007-09-21 07:54:49 -040081 (1 << 7), /* AWRE */
Douglas Gilbert00ac37f2005-10-28 15:58:28 -040082 0, /* read retry count */
83 0, 0, 0, 0,
84 0, /* write retry count */
85 0, 0, 0
86};
87
88static const u8 def_cache_mpage[CACHE_MPAGE_LEN] = {
89 CACHE_MPAGE,
90 CACHE_MPAGE_LEN - 2,
91 0, /* contains WCE, needs to be 0 for logic */
92 0, 0, 0, 0, 0, 0, 0, 0, 0,
93 0, /* contains DRA, needs to be 0 for logic */
94 0, 0, 0, 0, 0, 0, 0
95};
96
97static const u8 def_control_mpage[CONTROL_MPAGE_LEN] = {
98 CONTROL_MPAGE,
99 CONTROL_MPAGE_LEN - 2,
100 2, /* DSENSE=0, GLTSD=1 */
101 0, /* [QAM+QERR may be 1, see 05-359r1] */
102 0, 0, 0, 0, 0xff, 0xff,
103 0, 30 /* extended self test time, see 05-359r1 */
104};
105
Tejun Heo30afc842006-03-18 18:40:14 +0900106/*
107 * libata transport template. libata doesn't do real transport stuff.
108 * It just needs the eh_timed_out hook.
109 */
Tejun Heof3187192007-04-17 23:44:07 +0900110static struct scsi_transport_template ata_scsi_transport_template = {
Christoph Hellwig9227c332006-04-01 19:21:04 +0200111 .eh_strategy_handler = ata_scsi_error,
Tejun Heo30afc842006-03-18 18:40:14 +0900112 .eh_timed_out = ata_scsi_timed_out,
Tejun Heoccf68c32006-05-31 18:28:09 +0900113 .user_scan = ata_scsi_user_scan,
Tejun Heo30afc842006-03-18 18:40:14 +0900114};
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400117static const struct {
118 enum link_pm value;
119 const char *name;
120} link_pm_policy[] = {
121 { NOT_AVAILABLE, "max_performance" },
122 { MIN_POWER, "min_power" },
123 { MAX_PERFORMANCE, "max_performance" },
124 { MEDIUM_POWER, "medium_power" },
125};
126
Adrian Bunka2d6ed12007-10-31 00:50:23 +0100127static const char *ata_scsi_lpm_get(enum link_pm policy)
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400128{
129 int i;
130
131 for (i = 0; i < ARRAY_SIZE(link_pm_policy); i++)
132 if (link_pm_policy[i].value == policy)
133 return link_pm_policy[i].name;
134
135 return NULL;
136}
137
Tony Jonesee959b02008-02-22 00:13:36 +0100138static ssize_t ata_scsi_lpm_put(struct device *dev,
139 struct device_attribute *attr,
140 const char *buf, size_t count)
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400141{
Tony Jonesee959b02008-02-22 00:13:36 +0100142 struct Scsi_Host *shost = class_to_shost(dev);
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400143 struct ata_port *ap = ata_shost_to_port(shost);
144 enum link_pm policy = 0;
145 int i;
146
147 /*
148 * we are skipping array location 0 on purpose - this
149 * is because a value of NOT_AVAILABLE is displayed
150 * to the user as max_performance, but when the user
151 * writes "max_performance", they actually want the
152 * value to match MAX_PERFORMANCE.
153 */
154 for (i = 1; i < ARRAY_SIZE(link_pm_policy); i++) {
155 const int len = strlen(link_pm_policy[i].name);
156 if (strncmp(link_pm_policy[i].name, buf, len) == 0 &&
157 buf[len] == '\n') {
158 policy = link_pm_policy[i].value;
159 break;
160 }
161 }
162 if (!policy)
163 return -EINVAL;
164
165 ata_lpm_schedule(ap, policy);
166 return count;
167}
168
169static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100170ata_scsi_lpm_show(struct device *dev, struct device_attribute *attr, char *buf)
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400171{
Tony Jonesee959b02008-02-22 00:13:36 +0100172 struct Scsi_Host *shost = class_to_shost(dev);
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400173 struct ata_port *ap = ata_shost_to_port(shost);
174 const char *policy =
175 ata_scsi_lpm_get(ap->pm_policy);
176
177 if (!policy)
178 return -EINVAL;
179
180 return snprintf(buf, 23, "%s\n", policy);
181}
Tony Jonesee959b02008-02-22 00:13:36 +0100182DEVICE_ATTR(link_power_management_policy, S_IRUGO | S_IWUSR,
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400183 ata_scsi_lpm_show, ata_scsi_lpm_put);
Tony Jonesee959b02008-02-22 00:13:36 +0100184EXPORT_SYMBOL_GPL(dev_attr_link_power_management_policy);
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400185
Tejun Heof0761be2008-04-28 17:16:52 +0900186static void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq)
187{
188 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
189
190 scsi_build_sense_buffer(0, cmd->sense_buffer, sk, asc, ascq);
191}
192
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700193static ssize_t
194ata_scsi_em_message_store(struct device *dev, struct device_attribute *attr,
195 const char *buf, size_t count)
196{
197 struct Scsi_Host *shost = class_to_shost(dev);
198 struct ata_port *ap = ata_shost_to_port(shost);
199 if (ap->ops->em_store && (ap->flags & ATA_FLAG_EM))
200 return ap->ops->em_store(ap, buf, count);
201 return -EINVAL;
202}
203
204static ssize_t
205ata_scsi_em_message_show(struct device *dev, struct device_attribute *attr,
206 char *buf)
207{
208 struct Scsi_Host *shost = class_to_shost(dev);
209 struct ata_port *ap = ata_shost_to_port(shost);
210
211 if (ap->ops->em_show && (ap->flags & ATA_FLAG_EM))
212 return ap->ops->em_show(ap, buf);
213 return -EINVAL;
214}
215DEVICE_ATTR(em_message, S_IRUGO | S_IWUGO,
216 ata_scsi_em_message_show, ata_scsi_em_message_store);
217EXPORT_SYMBOL_GPL(dev_attr_em_message);
218
219static ssize_t
220ata_scsi_em_message_type_show(struct device *dev, struct device_attribute *attr,
221 char *buf)
222{
223 struct Scsi_Host *shost = class_to_shost(dev);
224 struct ata_port *ap = ata_shost_to_port(shost);
225
226 return snprintf(buf, 23, "%d\n", ap->em_message_type);
227}
228DEVICE_ATTR(em_message_type, S_IRUGO,
229 ata_scsi_em_message_type_show, NULL);
230EXPORT_SYMBOL_GPL(dev_attr_em_message_type);
231
232static ssize_t
233ata_scsi_activity_show(struct device *dev, struct device_attribute *attr,
234 char *buf)
235{
236 struct scsi_device *sdev = to_scsi_device(dev);
237 struct ata_port *ap = ata_shost_to_port(sdev->host);
238 struct ata_device *atadev = ata_scsi_find_dev(ap, sdev);
239
240 if (ap->ops->sw_activity_show && (ap->flags & ATA_FLAG_SW_ACTIVITY))
241 return ap->ops->sw_activity_show(atadev, buf);
242 return -EINVAL;
243}
244
245static ssize_t
246ata_scsi_activity_store(struct device *dev, struct device_attribute *attr,
247 const char *buf, size_t count)
248{
249 struct scsi_device *sdev = to_scsi_device(dev);
250 struct ata_port *ap = ata_shost_to_port(sdev->host);
251 struct ata_device *atadev = ata_scsi_find_dev(ap, sdev);
252 enum sw_activity val;
253 int rc;
254
255 if (ap->ops->sw_activity_store && (ap->flags & ATA_FLAG_SW_ACTIVITY)) {
256 val = simple_strtoul(buf, NULL, 0);
257 switch (val) {
258 case OFF: case BLINK_ON: case BLINK_OFF:
259 rc = ap->ops->sw_activity_store(atadev, val);
260 if (!rc)
261 return count;
262 else
263 return rc;
264 }
265 }
266 return -EINVAL;
267}
268DEVICE_ATTR(sw_activity, S_IWUGO | S_IRUGO, ata_scsi_activity_show,
269 ata_scsi_activity_store);
270EXPORT_SYMBOL_GPL(dev_attr_sw_activity);
271
Douglas Gilbertae006512005-10-09 09:09:35 -0400272static void ata_scsi_invalid_field(struct scsi_cmnd *cmd,
273 void (*done)(struct scsi_cmnd *))
274{
275 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x24, 0x0);
276 /* "Invalid field in cbd" */
277 done(cmd);
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/**
281 * ata_std_bios_param - generic bios head/sector/cylinder calculator used by sd.
282 * @sdev: SCSI device for which BIOS geometry is to be determined
283 * @bdev: block device associated with @sdev
284 * @capacity: capacity of SCSI device
285 * @geom: location to which geometry will be output
286 *
287 * Generic bios head/sector/cylinder calculator
288 * used by sd. Most BIOSes nowadays expect a XXX/255/16 (CHS)
289 * mapping. Some situations may arise where the disk is not
290 * bootable if this is not used.
291 *
292 * LOCKING:
293 * Defined by the SCSI layer. We don't really care.
294 *
295 * RETURNS:
296 * Zero.
297 */
298int ata_std_bios_param(struct scsi_device *sdev, struct block_device *bdev,
299 sector_t capacity, int geom[])
300{
301 geom[0] = 255;
302 geom[1] = 63;
303 sector_div(capacity, 255*63);
304 geom[2] = capacity;
305
306 return 0;
307}
308
Jeff Garzikb0955182005-05-12 15:45:22 -0400309/**
Tejun Heo5924b742007-01-02 20:20:07 +0900310 * ata_get_identity - Handler for HDIO_GET_IDENTITY ioctl
311 * @sdev: SCSI device to get identify data for
312 * @arg: User buffer area for identify data
313 *
314 * LOCKING:
315 * Defined by the SCSI layer. We don't really care.
316 *
317 * RETURNS:
318 * Zero on success, negative errno on error.
319 */
320static int ata_get_identity(struct scsi_device *sdev, void __user *arg)
321{
322 struct ata_port *ap = ata_shost_to_port(sdev->host);
323 struct ata_device *dev = ata_scsi_find_dev(ap, sdev);
324 u16 __user *dst = arg;
325 char buf[40];
326
327 if (!dev)
328 return -ENOMSG;
329
330 if (copy_to_user(dst, dev->id, ATA_ID_WORDS * sizeof(u16)))
331 return -EFAULT;
332
333 ata_id_string(dev->id, buf, ATA_ID_PROD, ATA_ID_PROD_LEN);
334 if (copy_to_user(dst + ATA_ID_PROD, buf, ATA_ID_PROD_LEN))
335 return -EFAULT;
336
337 ata_id_string(dev->id, buf, ATA_ID_FW_REV, ATA_ID_FW_REV_LEN);
338 if (copy_to_user(dst + ATA_ID_FW_REV, buf, ATA_ID_FW_REV_LEN))
339 return -EFAULT;
340
341 ata_id_string(dev->id, buf, ATA_ID_SERNO, ATA_ID_SERNO_LEN);
342 if (copy_to_user(dst + ATA_ID_SERNO, buf, ATA_ID_SERNO_LEN))
343 return -EFAULT;
344
345 return 0;
346}
347
348/**
Jeff Garzikb0955182005-05-12 15:45:22 -0400349 * ata_cmd_ioctl - Handler for HDIO_DRIVE_CMD ioctl
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800350 * @scsidev: Device to which we are issuing command
Jeff Garzikb0955182005-05-12 15:45:22 -0400351 * @arg: User provided data for issuing command
352 *
353 * LOCKING:
354 * Defined by the SCSI layer. We don't really care.
355 *
356 * RETURNS:
357 * Zero on success, negative errno on error.
358 */
Jeff Garzikb0955182005-05-12 15:45:22 -0400359int ata_cmd_ioctl(struct scsi_device *scsidev, void __user *arg)
360{
361 int rc = 0;
362 u8 scsi_cmd[MAX_COMMAND_SIZE];
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700363 u8 args[4], *argbuf = NULL, *sensebuf = NULL;
Jeff Garzikb0955182005-05-12 15:45:22 -0400364 int argsize = 0;
Mike Christie85837eb2005-11-11 16:38:53 -0600365 enum dma_data_direction data_dir;
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700366 int cmd_result;
Jeff Garzikb0955182005-05-12 15:45:22 -0400367
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500368 if (arg == NULL)
Jeff Garzikb0955182005-05-12 15:45:22 -0400369 return -EINVAL;
370
371 if (copy_from_user(args, arg, sizeof(args)))
372 return -EFAULT;
373
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700374 sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
375 if (!sensebuf)
376 return -ENOMEM;
377
Jeff Garzikb0955182005-05-12 15:45:22 -0400378 memset(scsi_cmd, 0, sizeof(scsi_cmd));
379
380 if (args[3]) {
381 argsize = SECTOR_SIZE * args[3];
382 argbuf = kmalloc(argsize, GFP_KERNEL);
Jeff Raubitschek54dac832005-10-04 10:21:19 -0400383 if (argbuf == NULL) {
384 rc = -ENOMEM;
385 goto error;
386 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400387
388 scsi_cmd[1] = (4 << 1); /* PIO Data-in */
389 scsi_cmd[2] = 0x0e; /* no off.line or cc, read from dev,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400390 block count in sector count field */
Mike Christie85837eb2005-11-11 16:38:53 -0600391 data_dir = DMA_FROM_DEVICE;
Jeff Garzikb0955182005-05-12 15:45:22 -0400392 } else {
393 scsi_cmd[1] = (3 << 1); /* Non-data */
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700394 scsi_cmd[2] = 0x20; /* cc but no off.line or data xfer */
Mike Christie85837eb2005-11-11 16:38:53 -0600395 data_dir = DMA_NONE;
Jeff Garzikb0955182005-05-12 15:45:22 -0400396 }
397
398 scsi_cmd[0] = ATA_16;
399
400 scsi_cmd[4] = args[2];
401 if (args[0] == WIN_SMART) { /* hack -- ide driver does this too... */
402 scsi_cmd[6] = args[3];
403 scsi_cmd[8] = args[1];
404 scsi_cmd[10] = 0x4f;
405 scsi_cmd[12] = 0xc2;
406 } else {
407 scsi_cmd[6] = args[1];
408 }
409 scsi_cmd[14] = args[0];
410
411 /* Good values for timeout and retries? Values below
412 from scsi_ioctl_send_command() for default case... */
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700413 cmd_result = scsi_execute(scsidev, scsi_cmd, data_dir, argbuf, argsize,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400414 sensebuf, (10*HZ), 5, 0);
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700415
416 if (driver_byte(cmd_result) == DRIVER_SENSE) {/* sense data available */
417 u8 *desc = sensebuf + 8;
418 cmd_result &= ~(0xFF<<24); /* DRIVER_SENSE is not an error */
419
420 /* If we set cc then ATA pass-through will cause a
421 * check condition even if no error. Filter that. */
422 if (cmd_result & SAM_STAT_CHECK_CONDITION) {
423 struct scsi_sense_hdr sshdr;
424 scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400425 &sshdr);
426 if (sshdr.sense_key == 0 &&
427 sshdr.asc == 0 && sshdr.ascq == 0)
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700428 cmd_result &= ~SAM_STAT_CHECK_CONDITION;
429 }
430
431 /* Send userspace a few ATA registers (same as drivers/ide) */
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400432 if (sensebuf[0] == 0x72 && /* format is "descriptor" */
433 desc[0] == 0x09) { /* code is "ATA Descriptor" */
434 args[0] = desc[13]; /* status */
435 args[1] = desc[3]; /* error */
436 args[2] = desc[5]; /* sector count (0:7) */
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700437 if (copy_to_user(arg, args, sizeof(args)))
438 rc = -EFAULT;
439 }
440 }
441
442
443 if (cmd_result) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400444 rc = -EIO;
445 goto error;
446 }
447
Jeff Garzikb0955182005-05-12 15:45:22 -0400448 if ((argbuf)
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500449 && copy_to_user(arg + sizeof(args), argbuf, argsize))
Jeff Garzikb0955182005-05-12 15:45:22 -0400450 rc = -EFAULT;
451error:
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700452 kfree(sensebuf);
Jesper Juhl8f760782006-06-27 02:55:06 -0700453 kfree(argbuf);
Jeff Garzikb0955182005-05-12 15:45:22 -0400454 return rc;
455}
456
457/**
458 * ata_task_ioctl - Handler for HDIO_DRIVE_TASK ioctl
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800459 * @scsidev: Device to which we are issuing command
Jeff Garzikb0955182005-05-12 15:45:22 -0400460 * @arg: User provided data for issuing command
461 *
462 * LOCKING:
463 * Defined by the SCSI layer. We don't really care.
464 *
465 * RETURNS:
466 * Zero on success, negative errno on error.
467 */
468int ata_task_ioctl(struct scsi_device *scsidev, void __user *arg)
469{
470 int rc = 0;
471 u8 scsi_cmd[MAX_COMMAND_SIZE];
David Milburnaf068bd2007-01-30 00:59:15 -0800472 u8 args[7], *sensebuf = NULL;
473 int cmd_result;
Jeff Garzikb0955182005-05-12 15:45:22 -0400474
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500475 if (arg == NULL)
Jeff Garzikb0955182005-05-12 15:45:22 -0400476 return -EINVAL;
477
478 if (copy_from_user(args, arg, sizeof(args)))
479 return -EFAULT;
480
David Milburnaf068bd2007-01-30 00:59:15 -0800481 sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
482 if (!sensebuf)
483 return -ENOMEM;
484
Jeff Garzikb0955182005-05-12 15:45:22 -0400485 memset(scsi_cmd, 0, sizeof(scsi_cmd));
486 scsi_cmd[0] = ATA_16;
487 scsi_cmd[1] = (3 << 1); /* Non-data */
David Milburnaf068bd2007-01-30 00:59:15 -0800488 scsi_cmd[2] = 0x20; /* cc but no off.line or data xfer */
Jeff Garzikb0955182005-05-12 15:45:22 -0400489 scsi_cmd[4] = args[1];
490 scsi_cmd[6] = args[2];
491 scsi_cmd[8] = args[3];
492 scsi_cmd[10] = args[4];
493 scsi_cmd[12] = args[5];
Mark Lord277239f2007-03-30 17:45:52 -0400494 scsi_cmd[13] = args[6] & 0x4f;
Jeff Garzikb0955182005-05-12 15:45:22 -0400495 scsi_cmd[14] = args[0];
496
Jeff Garzikb0955182005-05-12 15:45:22 -0400497 /* Good values for timeout and retries? Values below
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500498 from scsi_ioctl_send_command() for default case... */
David Milburnaf068bd2007-01-30 00:59:15 -0800499 cmd_result = scsi_execute(scsidev, scsi_cmd, DMA_NONE, NULL, 0,
500 sensebuf, (10*HZ), 5, 0);
Jeff Garzikb0955182005-05-12 15:45:22 -0400501
David Milburnaf068bd2007-01-30 00:59:15 -0800502 if (driver_byte(cmd_result) == DRIVER_SENSE) {/* sense data available */
503 u8 *desc = sensebuf + 8;
504 cmd_result &= ~(0xFF<<24); /* DRIVER_SENSE is not an error */
505
506 /* If we set cc then ATA pass-through will cause a
507 * check condition even if no error. Filter that. */
508 if (cmd_result & SAM_STAT_CHECK_CONDITION) {
509 struct scsi_sense_hdr sshdr;
510 scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE,
511 &sshdr);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400512 if (sshdr.sense_key == 0 &&
513 sshdr.asc == 0 && sshdr.ascq == 0)
David Milburnaf068bd2007-01-30 00:59:15 -0800514 cmd_result &= ~SAM_STAT_CHECK_CONDITION;
515 }
516
517 /* Send userspace ATA registers */
518 if (sensebuf[0] == 0x72 && /* format is "descriptor" */
519 desc[0] == 0x09) {/* code is "ATA Descriptor" */
520 args[0] = desc[13]; /* status */
521 args[1] = desc[3]; /* error */
522 args[2] = desc[5]; /* sector count (0:7) */
523 args[3] = desc[7]; /* lbal */
524 args[4] = desc[9]; /* lbam */
525 args[5] = desc[11]; /* lbah */
526 args[6] = desc[12]; /* select */
527 if (copy_to_user(arg, args, sizeof(args)))
528 rc = -EFAULT;
529 }
530 }
531
532 if (cmd_result) {
533 rc = -EIO;
534 goto error;
535 }
536
537 error:
538 kfree(sensebuf);
Jeff Garzikb0955182005-05-12 15:45:22 -0400539 return rc;
540}
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542int ata_scsi_ioctl(struct scsi_device *scsidev, int cmd, void __user *arg)
543{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int val = -EINVAL, rc = -EINVAL;
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 switch (cmd) {
547 case ATA_IOC_GET_IO32:
548 val = 0;
549 if (copy_to_user(arg, &val, 1))
550 return -EFAULT;
551 return 0;
552
553 case ATA_IOC_SET_IO32:
554 val = (unsigned long) arg;
555 if (val != 0)
556 return -EINVAL;
557 return 0;
558
Tejun Heo5924b742007-01-02 20:20:07 +0900559 case HDIO_GET_IDENTITY:
560 return ata_get_identity(scsidev, arg);
561
Jeff Garzikb0955182005-05-12 15:45:22 -0400562 case HDIO_DRIVE_CMD:
563 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
564 return -EACCES;
565 return ata_cmd_ioctl(scsidev, arg);
566
567 case HDIO_DRIVE_TASK:
568 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
569 return -EACCES;
570 return ata_task_ioctl(scsidev, arg);
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 default:
573 rc = -ENOTTY;
574 break;
575 }
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return rc;
578}
579
580/**
581 * ata_scsi_qc_new - acquire new ata_queued_cmd reference
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 * @dev: ATA device to which the new command is attached
583 * @cmd: SCSI command that originated this ATA command
584 * @done: SCSI command completion function
585 *
586 * Obtain a reference to an unused ata_queued_cmd structure,
587 * which is the basic libata structure representing a single
588 * ATA command sent to the hardware.
589 *
590 * If a command was available, fill in the SCSI-specific
591 * portions of the structure with information on the
592 * current command.
593 *
594 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400595 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 *
597 * RETURNS:
598 * Command allocated, or %NULL if none available.
599 */
Adrian Bunk7102d232007-01-04 00:09:36 +0100600static struct ata_queued_cmd *ata_scsi_qc_new(struct ata_device *dev,
601 struct scsi_cmnd *cmd,
602 void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct ata_queued_cmd *qc;
605
Tejun Heo3373efd2006-05-15 20:57:53 +0900606 qc = ata_qc_new_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (qc) {
608 qc->scsicmd = cmd;
609 qc->scsidone = done;
610
Tejun Heoff2aeb12007-12-05 16:43:11 +0900611 qc->sg = scsi_sglist(cmd);
Boaz Harrosh71201652007-09-18 17:48:50 +0200612 qc->n_elem = scsi_sg_count(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 } else {
614 cmd->result = (DID_OK << 16) | (QUEUE_FULL << 1);
615 done(cmd);
616 }
617
618 return qc;
619}
620
Tejun Heoaacda372008-03-18 17:47:43 +0900621static void ata_qc_set_pc_nbytes(struct ata_queued_cmd *qc)
622{
623 struct scsi_cmnd *scmd = qc->scsicmd;
624
625 qc->extrabytes = scmd->request->extra_len;
626 qc->nbytes = scsi_bufflen(scmd) + qc->extrabytes;
627}
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629/**
Jeff Garzikb0955182005-05-12 15:45:22 -0400630 * ata_dump_status - user friendly display of error info
631 * @id: id of the port in question
632 * @tf: ptr to filled out taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 *
Jeff Garzikb0955182005-05-12 15:45:22 -0400634 * Decode and dump the ATA error/status registers for the user so
635 * that they have some idea what really happened at the non
636 * make-believe layer.
637 *
638 * LOCKING:
639 * inherited from caller
640 */
Adrian Bunk7102d232007-01-04 00:09:36 +0100641static void ata_dump_status(unsigned id, struct ata_taskfile *tf)
Jeff Garzikb0955182005-05-12 15:45:22 -0400642{
643 u8 stat = tf->command, err = tf->feature;
644
645 printk(KERN_WARNING "ata%u: status=0x%02x { ", id, stat);
646 if (stat & ATA_BUSY) {
647 printk("Busy }\n"); /* Data is not valid in this case */
648 } else {
649 if (stat & 0x40) printk("DriveReady ");
650 if (stat & 0x20) printk("DeviceFault ");
651 if (stat & 0x10) printk("SeekComplete ");
652 if (stat & 0x08) printk("DataRequest ");
653 if (stat & 0x04) printk("CorrectedError ");
654 if (stat & 0x02) printk("Index ");
655 if (stat & 0x01) printk("Error ");
656 printk("}\n");
657
658 if (err) {
659 printk(KERN_WARNING "ata%u: error=0x%02x { ", id, err);
660 if (err & 0x04) printk("DriveStatusError ");
661 if (err & 0x80) {
662 if (err & 0x04) printk("BadCRC ");
663 else printk("Sector ");
664 }
665 if (err & 0x40) printk("UncorrectableError ");
666 if (err & 0x10) printk("SectorIdNotFound ");
667 if (err & 0x02) printk("TrackZeroNotFound ");
668 if (err & 0x01) printk("AddrMarkNotFound ");
669 printk("}\n");
670 }
671 }
672}
673
674/**
675 * ata_to_sense_error - convert ATA error to SCSI error
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800676 * @id: ATA device number
Jeff Garzikb0955182005-05-12 15:45:22 -0400677 * @drv_stat: value contained in ATA status register
678 * @drv_err: value contained in ATA error register
679 * @sk: the sense key we'll fill out
680 * @asc: the additional sense code we'll fill out
681 * @ascq: the additional sense code qualifier we'll fill out
Tejun Heo246619d2006-05-15 20:58:16 +0900682 * @verbose: be verbose
Jeff Garzikb0955182005-05-12 15:45:22 -0400683 *
684 * Converts an ATA error into a SCSI error. Fill out pointers to
685 * SK, ASC, and ASCQ bytes for later use in fixed or descriptor
686 * format sense blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 *
688 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400689 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
Adrian Bunk7102d232007-01-04 00:09:36 +0100691static void ata_to_sense_error(unsigned id, u8 drv_stat, u8 drv_err, u8 *sk,
692 u8 *asc, u8 *ascq, int verbose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Jeff Garzikb0955182005-05-12 15:45:22 -0400694 int i;
Jeff Garzikffe75ef2005-10-09 10:40:44 -0400695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /* Based on the 3ware driver translation table */
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100697 static const unsigned char sense_table[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* BBD|ECC|ID|MAR */
699 {0xd1, ABORTED_COMMAND, 0x00, 0x00}, // Device busy Aborted command
700 /* BBD|ECC|ID */
701 {0xd0, ABORTED_COMMAND, 0x00, 0x00}, // Device busy Aborted command
702 /* ECC|MC|MARK */
703 {0x61, HARDWARE_ERROR, 0x00, 0x00}, // Device fault Hardware error
704 /* ICRC|ABRT */ /* NB: ICRC & !ABRT is BBD */
705 {0x84, ABORTED_COMMAND, 0x47, 0x00}, // Data CRC error SCSI parity error
706 /* MC|ID|ABRT|TRK0|MARK */
707 {0x37, NOT_READY, 0x04, 0x00}, // Unit offline Not ready
708 /* MCR|MARK */
709 {0x09, NOT_READY, 0x04, 0x00}, // Unrecovered disk error Not ready
710 /* Bad address mark */
711 {0x01, MEDIUM_ERROR, 0x13, 0x00}, // Address mark not found Address mark not found for data field
712 /* TRK0 */
713 {0x02, HARDWARE_ERROR, 0x00, 0x00}, // Track 0 not found Hardware error
714 /* Abort & !ICRC */
715 {0x04, ABORTED_COMMAND, 0x00, 0x00}, // Aborted command Aborted command
716 /* Media change request */
717 {0x08, NOT_READY, 0x04, 0x00}, // Media change request FIXME: faking offline
718 /* SRV */
719 {0x10, ABORTED_COMMAND, 0x14, 0x00}, // ID not found Recorded entity not found
720 /* Media change */
721 {0x08, NOT_READY, 0x04, 0x00}, // Media change FIXME: faking offline
722 /* ECC */
723 {0x40, MEDIUM_ERROR, 0x11, 0x04}, // Uncorrectable ECC error Unrecovered read error
724 /* BBD - block marked bad */
725 {0x80, MEDIUM_ERROR, 0x11, 0x04}, // Block marked bad Medium error, unrecovered read error
726 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
727 };
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100728 static const unsigned char stat_table[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 /* Must be first because BUSY means no other bits valid */
730 {0x80, ABORTED_COMMAND, 0x47, 0x00}, // Busy, fake parity for now
731 {0x20, HARDWARE_ERROR, 0x00, 0x00}, // Device fault
732 {0x08, ABORTED_COMMAND, 0x47, 0x00}, // Timed out in xfer, fake parity for now
733 {0x04, RECOVERED_ERROR, 0x11, 0x00}, // Recovered ECC error Medium error, recovered
734 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
735 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 /*
738 * Is this an error we can process/parse
739 */
Jeff Garzikb0955182005-05-12 15:45:22 -0400740 if (drv_stat & ATA_BUSY) {
741 drv_err = 0; /* Ignore the err bits, they're invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Jeff Garzikb0955182005-05-12 15:45:22 -0400744 if (drv_err) {
745 /* Look for drv_err */
746 for (i = 0; sense_table[i][0] != 0xFF; i++) {
747 /* Look for best matches first */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500748 if ((sense_table[i][0] & drv_err) ==
Jeff Garzikb0955182005-05-12 15:45:22 -0400749 sense_table[i][0]) {
750 *sk = sense_table[i][1];
751 *asc = sense_table[i][2];
752 *ascq = sense_table[i][3];
753 goto translate_done;
754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400756 /* No immediate match */
Tejun Heo246619d2006-05-15 20:58:16 +0900757 if (verbose)
758 printk(KERN_WARNING "ata%u: no sense translation for "
759 "error 0x%02x\n", id, drv_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 /* Fall back to interpreting status bits */
Jeff Garzikb0955182005-05-12 15:45:22 -0400763 for (i = 0; stat_table[i][0] != 0xFF; i++) {
764 if (stat_table[i][0] & drv_stat) {
765 *sk = stat_table[i][1];
766 *asc = stat_table[i][2];
767 *ascq = stat_table[i][3];
768 goto translate_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400771 /* No error? Undecoded? */
Tejun Heo246619d2006-05-15 20:58:16 +0900772 if (verbose)
773 printk(KERN_WARNING "ata%u: no sense translation for "
774 "status: 0x%02x\n", id, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Alan Cox2d202022006-03-21 15:53:46 +0000776 /* We need a sensible error return here, which is tricky, and one
777 that won't cause people to do things like return a disk wrongly */
778 *sk = ABORTED_COMMAND;
779 *asc = 0x00;
780 *ascq = 0x00;
Jeff Garzikb0955182005-05-12 15:45:22 -0400781
782 translate_done:
Tejun Heo246619d2006-05-15 20:58:16 +0900783 if (verbose)
784 printk(KERN_ERR "ata%u: translated ATA stat/err 0x%02x/%02x "
785 "to SCSI SK/ASC/ASCQ 0x%x/%02x/%02x\n",
786 id, drv_stat, drv_err, *sk, *asc, *ascq);
Jeff Garzikb0955182005-05-12 15:45:22 -0400787 return;
788}
789
790/*
Tejun Heo750426a2006-11-14 22:37:35 +0900791 * ata_gen_passthru_sense - Generate check condition sense block.
Jeff Garzikb0955182005-05-12 15:45:22 -0400792 * @qc: Command that completed.
793 *
794 * This function is specific to the ATA descriptor format sense
795 * block specified for the ATA pass through commands. Regardless
796 * of whether the command errored or not, return a sense
797 * block. Copy all controller registers into the sense
798 * block. Clear sense key, ASC & ASCQ if there is no error.
799 *
800 * LOCKING:
Tejun Heo750426a2006-11-14 22:37:35 +0900801 * None.
Jeff Garzikb0955182005-05-12 15:45:22 -0400802 */
Tejun Heo750426a2006-11-14 22:37:35 +0900803static void ata_gen_passthru_sense(struct ata_queued_cmd *qc)
Jeff Garzikb0955182005-05-12 15:45:22 -0400804{
805 struct scsi_cmnd *cmd = qc->scsicmd;
Tejun Heoe61e0672006-05-15 20:57:40 +0900806 struct ata_taskfile *tf = &qc->result_tf;
Jeff Garzikb0955182005-05-12 15:45:22 -0400807 unsigned char *sb = cmd->sense_buffer;
808 unsigned char *desc = sb + 8;
Tejun Heo246619d2006-05-15 20:58:16 +0900809 int verbose = qc->ap->ops->error_handler == NULL;
Jeff Garzikb0955182005-05-12 15:45:22 -0400810
811 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
812
Jeff Garzik0e5dec42005-10-06 09:40:20 -0400813 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
Jeff Garzikb0955182005-05-12 15:45:22 -0400814
815 /*
Jeff Garzikb0955182005-05-12 15:45:22 -0400816 * Use ata_to_sense_error() to map status register bits
817 * onto sense key, asc & ascq.
818 */
Tejun Heo058e55e2006-04-02 18:51:53 +0900819 if (qc->err_mask ||
820 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
Tejun Heo44877b42007-02-21 01:06:51 +0900821 ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature,
Tejun Heo246619d2006-05-15 20:58:16 +0900822 &sb[1], &sb[2], &sb[3], verbose);
Jeff Garzikb0955182005-05-12 15:45:22 -0400823 sb[1] &= 0x0f;
824 }
825
826 /*
827 * Sense data is current and format is descriptor.
828 */
829 sb[0] = 0x72;
830
831 desc[0] = 0x09;
832
Tejun Heof38621b2006-11-14 22:37:35 +0900833 /* set length of additional sense data */
834 sb[7] = 14;
835 desc[1] = 12;
Jeff Garzikb0955182005-05-12 15:45:22 -0400836
837 /*
838 * Copy registers into sense buffer.
839 */
840 desc[2] = 0x00;
841 desc[3] = tf->feature; /* == error reg */
842 desc[5] = tf->nsect;
843 desc[7] = tf->lbal;
844 desc[9] = tf->lbam;
845 desc[11] = tf->lbah;
846 desc[12] = tf->device;
847 desc[13] = tf->command; /* == status reg */
848
849 /*
850 * Fill in Extend bit, and the high order bytes
851 * if applicable.
852 */
853 if (tf->flags & ATA_TFLAG_LBA48) {
854 desc[2] |= 0x01;
855 desc[4] = tf->hob_nsect;
856 desc[6] = tf->hob_lbal;
857 desc[8] = tf->hob_lbam;
858 desc[10] = tf->hob_lbah;
859 }
860}
861
862/**
Tejun Heo750426a2006-11-14 22:37:35 +0900863 * ata_gen_ata_sense - generate a SCSI fixed sense block
Jeff Garzikb0955182005-05-12 15:45:22 -0400864 * @qc: Command that we are erroring out
865 *
Tejun Heod25614b2006-11-14 22:37:35 +0900866 * Generate sense block for a failed ATA command @qc. Descriptor
867 * format is used to accomodate LBA48 block address.
Jeff Garzikb0955182005-05-12 15:45:22 -0400868 *
869 * LOCKING:
Tejun Heo750426a2006-11-14 22:37:35 +0900870 * None.
Jeff Garzikb0955182005-05-12 15:45:22 -0400871 */
Tejun Heo750426a2006-11-14 22:37:35 +0900872static void ata_gen_ata_sense(struct ata_queued_cmd *qc)
Jeff Garzikb0955182005-05-12 15:45:22 -0400873{
Tejun Heod25614b2006-11-14 22:37:35 +0900874 struct ata_device *dev = qc->dev;
Jeff Garzikb0955182005-05-12 15:45:22 -0400875 struct scsi_cmnd *cmd = qc->scsicmd;
Tejun Heoe61e0672006-05-15 20:57:40 +0900876 struct ata_taskfile *tf = &qc->result_tf;
Jeff Garzikb0955182005-05-12 15:45:22 -0400877 unsigned char *sb = cmd->sense_buffer;
Tejun Heod25614b2006-11-14 22:37:35 +0900878 unsigned char *desc = sb + 8;
Tejun Heo246619d2006-05-15 20:58:16 +0900879 int verbose = qc->ap->ops->error_handler == NULL;
Tejun Heod25614b2006-11-14 22:37:35 +0900880 u64 block;
Jeff Garzikb0955182005-05-12 15:45:22 -0400881
882 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
883
Jeff Garzik0e5dec42005-10-06 09:40:20 -0400884 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
Jeff Garzikb0955182005-05-12 15:45:22 -0400885
Tejun Heod25614b2006-11-14 22:37:35 +0900886 /* sense data is current and format is descriptor */
887 sb[0] = 0x72;
888
889 /* Use ata_to_sense_error() to map status register bits
Jeff Garzikb0955182005-05-12 15:45:22 -0400890 * onto sense key, asc & ascq.
891 */
Tejun Heo058e55e2006-04-02 18:51:53 +0900892 if (qc->err_mask ||
893 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
Tejun Heo44877b42007-02-21 01:06:51 +0900894 ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature,
Tejun Heod25614b2006-11-14 22:37:35 +0900895 &sb[1], &sb[2], &sb[3], verbose);
896 sb[1] &= 0x0f;
Jeff Garzikb0955182005-05-12 15:45:22 -0400897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Tejun Heod25614b2006-11-14 22:37:35 +0900899 block = ata_tf_read_block(&qc->result_tf, dev);
Jeff Garzik0274aa22005-06-22 13:50:56 -0400900
Tejun Heod25614b2006-11-14 22:37:35 +0900901 /* information sense data descriptor */
902 sb[7] = 12;
903 desc[0] = 0x00;
904 desc[1] = 10;
Jeff Garzika7dac442005-10-30 04:44:42 -0500905
Tejun Heod25614b2006-11-14 22:37:35 +0900906 desc[2] |= 0x80; /* valid */
907 desc[6] = block >> 40;
908 desc[7] = block >> 32;
909 desc[8] = block >> 24;
910 desc[9] = block >> 16;
911 desc[10] = block >> 8;
912 desc[11] = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Brian Kinga6cce2a2006-03-17 17:04:15 -0600915static void ata_scsi_sdev_config(struct scsi_device *sdev)
916{
917 sdev->use_10_for_rw = 1;
918 sdev->use_10_for_ms = 1;
Tejun Heo31cc23b2007-09-23 13:14:12 +0900919
920 /* Schedule policy is determined by ->qc_defer() callback and
921 * it needs to see every deferred qc. Set dev_blocked to 1 to
922 * prevent SCSI midlayer from automatically deferring
923 * requests.
924 */
925 sdev->max_device_blocked = 1;
Brian Kinga6cce2a2006-03-17 17:04:15 -0600926}
927
James Bottomleyfa2fc7f2008-02-19 11:36:57 +0100928/**
929 * atapi_drain_needed - Check whether data transfer may overflow
Randy Dunlap73fd8b62008-02-19 13:43:21 -0800930 * @rq: request to be checked
James Bottomleyfa2fc7f2008-02-19 11:36:57 +0100931 *
932 * ATAPI commands which transfer variable length data to host
933 * might overflow due to application error or hardare bug. This
934 * function checks whether overflow should be drained and ignored
935 * for @request.
936 *
937 * LOCKING:
938 * None.
939 *
940 * RETURNS:
941 * 1 if ; otherwise, 0.
942 */
943static int atapi_drain_needed(struct request *rq)
944{
945 if (likely(!blk_pc_request(rq)))
946 return 0;
947
948 if (!rq->data_len || (rq->cmd_flags & REQ_RW))
949 return 0;
950
951 return atapi_cmd_type(rq->cmd[0]) == ATAPI_MISC;
952}
953
954static int ata_scsi_dev_config(struct scsi_device *sdev,
955 struct ata_device *dev)
Brian Kinga6cce2a2006-03-17 17:04:15 -0600956{
Tejun Heo914ed352006-11-01 18:39:55 +0900957 /* configure max sectors */
958 blk_queue_max_sectors(sdev->request_queue, dev->max_sectors);
Brian Kinga6cce2a2006-03-17 17:04:15 -0600959
James Bottomleyfa2fc7f2008-02-19 11:36:57 +0100960 if (dev->class == ATA_DEV_ATAPI) {
961 struct request_queue *q = sdev->request_queue;
962 void *buf;
963
Tejun Heoe3790c72008-03-04 11:18:17 +0100964 /* set the min alignment and padding */
James Bottomleyd0ad3bc2008-01-22 13:43:48 -0600965 blk_queue_update_dma_alignment(sdev->request_queue,
966 ATA_DMA_PAD_SZ - 1);
Tejun Heoe3790c72008-03-04 11:18:17 +0100967 blk_queue_dma_pad(sdev->request_queue, ATA_DMA_PAD_SZ - 1);
James Bottomleyfa2fc7f2008-02-19 11:36:57 +0100968
969 /* configure draining */
970 buf = kmalloc(ATAPI_MAX_DRAIN, q->bounce_gfp | GFP_KERNEL);
971 if (!buf) {
972 ata_dev_printk(dev, KERN_ERR,
973 "drain buffer allocation failed\n");
974 return -ENOMEM;
975 }
976
977 blk_queue_dma_drain(q, atapi_drain_needed, buf, ATAPI_MAX_DRAIN);
978 } else {
James Bottomleyd0ad3bc2008-01-22 13:43:48 -0600979 /* ATA devices must be sector aligned */
980 blk_queue_update_dma_alignment(sdev->request_queue,
981 ATA_SECT_SIZE - 1);
Tejun Heod8cf5382008-01-15 08:46:59 +0900982 sdev->manage_start_stop = 1;
James Bottomleydde20202008-02-19 11:36:56 +0100983 }
Tejun Heod8cf5382008-01-15 08:46:59 +0900984
Jeff Garzikf26792d2007-10-29 17:18:39 -0400985 if (dev->flags & ATA_DFLAG_AN)
986 set_bit(SDEV_EVT_MEDIA_CHANGE, sdev->supported_events);
987
Tejun Heoa6e6ce82006-05-15 21:03:48 +0900988 if (dev->flags & ATA_DFLAG_NCQ) {
989 int depth;
990
991 depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id));
992 depth = min(ATA_MAX_QUEUE - 1, depth);
993 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, depth);
994 }
James Bottomleyfa2fc7f2008-02-19 11:36:57 +0100995
996 return 0;
Brian Kinga6cce2a2006-03-17 17:04:15 -0600997}
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999/**
1000 * ata_scsi_slave_config - Set SCSI device attributes
1001 * @sdev: SCSI device to examine
1002 *
1003 * This is called before we actually start reading
1004 * and writing to the device, to configure certain
1005 * SCSI mid-layer behaviors.
1006 *
1007 * LOCKING:
1008 * Defined by SCSI layer. We don't really care.
1009 */
1010
1011int ata_scsi_slave_config(struct scsi_device *sdev)
1012{
Tejun Heo31534362006-05-31 18:27:36 +09001013 struct ata_port *ap = ata_shost_to_port(sdev->host);
1014 struct ata_device *dev = __ata_scsi_find_dev(ap, sdev);
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001015 int rc = 0;
Tejun Heo31534362006-05-31 18:27:36 +09001016
Brian Kinga6cce2a2006-03-17 17:04:15 -06001017 ata_scsi_sdev_config(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Tejun Heo31534362006-05-31 18:27:36 +09001019 if (dev)
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001020 rc = ata_scsi_dev_config(sdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001022 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
1025/**
Tejun Heo83c47bc2006-05-31 18:28:07 +09001026 * ata_scsi_slave_destroy - SCSI device is about to be destroyed
1027 * @sdev: SCSI device to be destroyed
1028 *
1029 * @sdev is about to be destroyed for hot/warm unplugging. If
1030 * this unplugging was initiated by libata as indicated by NULL
1031 * dev->sdev, this function doesn't have to do anything.
1032 * Otherwise, SCSI layer initiated warm-unplug is in progress.
1033 * Clear dev->sdev, schedule the device for ATA detach and invoke
1034 * EH.
1035 *
1036 * LOCKING:
1037 * Defined by SCSI layer. We don't really care.
1038 */
1039void ata_scsi_slave_destroy(struct scsi_device *sdev)
1040{
1041 struct ata_port *ap = ata_shost_to_port(sdev->host);
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001042 struct request_queue *q = sdev->request_queue;
Tejun Heo83c47bc2006-05-31 18:28:07 +09001043 unsigned long flags;
1044 struct ata_device *dev;
1045
1046 if (!ap->ops->error_handler)
1047 return;
1048
Jeff Garzikba6a1302006-06-22 23:46:10 -04001049 spin_lock_irqsave(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +09001050 dev = __ata_scsi_find_dev(ap, sdev);
1051 if (dev && dev->sdev) {
1052 /* SCSI device already in CANCEL state, no need to offline it */
1053 dev->sdev = NULL;
1054 dev->flags |= ATA_DFLAG_DETACH;
1055 ata_port_schedule_eh(ap);
1056 }
Jeff Garzikba6a1302006-06-22 23:46:10 -04001057 spin_unlock_irqrestore(ap->lock, flags);
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001058
1059 kfree(q->dma_drain_buffer);
1060 q->dma_drain_buffer = NULL;
1061 q->dma_drain_size = 0;
Tejun Heo83c47bc2006-05-31 18:28:07 +09001062}
1063
1064/**
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001065 * ata_scsi_change_queue_depth - SCSI callback for queue depth config
1066 * @sdev: SCSI device to configure queue depth for
1067 * @queue_depth: new queue depth
1068 *
1069 * This is libata standard hostt->change_queue_depth callback.
1070 * SCSI will call into this callback when user tries to set queue
1071 * depth via sysfs.
1072 *
1073 * LOCKING:
1074 * SCSI layer (we don't care)
1075 *
1076 * RETURNS:
1077 * Newly configured queue depth.
1078 */
1079int ata_scsi_change_queue_depth(struct scsi_device *sdev, int queue_depth)
1080{
1081 struct ata_port *ap = ata_shost_to_port(sdev->host);
1082 struct ata_device *dev;
Tejun Heo360f6542006-09-30 19:45:00 +09001083 unsigned long flags;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001084
Tejun Heoc3c70c42007-02-20 23:31:22 +09001085 if (queue_depth < 1 || queue_depth == sdev->queue_depth)
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001086 return sdev->queue_depth;
1087
1088 dev = ata_scsi_find_dev(ap, sdev);
1089 if (!dev || !ata_dev_enabled(dev))
1090 return sdev->queue_depth;
1091
Tejun Heoc3c70c42007-02-20 23:31:22 +09001092 /* NCQ enabled? */
Tejun Heo360f6542006-09-30 19:45:00 +09001093 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc3c70c42007-02-20 23:31:22 +09001094 dev->flags &= ~ATA_DFLAG_NCQ_OFF;
1095 if (queue_depth == 1 || !ata_ncq_enabled(dev)) {
Tejun Heo360f6542006-09-30 19:45:00 +09001096 dev->flags |= ATA_DFLAG_NCQ_OFF;
Tejun Heoc3c70c42007-02-20 23:31:22 +09001097 queue_depth = 1;
1098 }
Tejun Heo360f6542006-09-30 19:45:00 +09001099 spin_unlock_irqrestore(ap->lock, flags);
1100
Tejun Heoc3c70c42007-02-20 23:31:22 +09001101 /* limit and apply queue depth */
1102 queue_depth = min(queue_depth, sdev->host->can_queue);
1103 queue_depth = min(queue_depth, ata_id_queue_depth(dev->id));
1104 queue_depth = min(queue_depth, ATA_MAX_QUEUE - 1);
1105
1106 if (sdev->queue_depth == queue_depth)
1107 return -EINVAL;
1108
1109 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, queue_depth);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001110 return queue_depth;
1111}
1112
Tejun Heod9aca222007-05-17 16:43:26 +02001113/* XXX: for spindown warning */
Tejun Heoda071b42007-05-14 17:26:18 +02001114static void ata_delayed_done_timerfn(unsigned long arg)
1115{
1116 struct scsi_cmnd *scmd = (void *)arg;
1117
1118 scmd->scsi_done(scmd);
1119}
1120
Tejun Heod9aca222007-05-17 16:43:26 +02001121/* XXX: for spindown warning */
Tejun Heoda071b42007-05-14 17:26:18 +02001122static void ata_delayed_done(struct scsi_cmnd *scmd)
1123{
1124 static struct timer_list timer;
1125
1126 setup_timer(&timer, ata_delayed_done_timerfn, (unsigned long)scmd);
1127 mod_timer(&timer, jiffies + 5 * HZ);
1128}
1129
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001130/**
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001131 * ata_scsi_start_stop_xlat - Translate SCSI START STOP UNIT command
1132 * @qc: Storage for translated ATA taskfile
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001133 *
1134 * Sets up an ATA taskfile to issue STANDBY (to stop) or READ VERIFY
1135 * (to start). Perhaps these commands should be preceded by
1136 * CHECK POWER MODE to see what power mode the device is already in.
1137 * [See SAT revision 5 at www.t10.org]
1138 *
1139 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001140 * spin_lock_irqsave(host lock)
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001141 *
1142 * RETURNS:
1143 * Zero on success, non-zero on error.
1144 */
Tejun Heoad706992006-12-17 10:45:57 +09001145static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc)
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001146{
Tejun Heo542b1442006-12-17 10:45:08 +09001147 struct scsi_cmnd *scmd = qc->scsicmd;
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001148 struct ata_taskfile *tf = &qc->tf;
Tejun Heoad706992006-12-17 10:45:57 +09001149 const u8 *cdb = scmd->cmnd;
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001150
Tejun Heo2e5704f2006-12-17 10:46:33 +09001151 if (scmd->cmd_len < 5)
1152 goto invalid_fld;
1153
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001154 tf->flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
1155 tf->protocol = ATA_PROT_NODATA;
Tejun Heo542b1442006-12-17 10:45:08 +09001156 if (cdb[1] & 0x1) {
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001157 ; /* ignore IMMED bit, violates sat-r05 */
1158 }
Tejun Heo542b1442006-12-17 10:45:08 +09001159 if (cdb[4] & 0x2)
Douglas Gilbertae006512005-10-09 09:09:35 -04001160 goto invalid_fld; /* LOEJ bit set not supported */
Tejun Heo542b1442006-12-17 10:45:08 +09001161 if (((cdb[4] >> 4) & 0xf) != 0)
Douglas Gilbertae006512005-10-09 09:09:35 -04001162 goto invalid_fld; /* power conditions not supported */
Tejun Heoe31e8532007-09-23 13:14:13 +09001163
Tejun Heo542b1442006-12-17 10:45:08 +09001164 if (cdb[4] & 0x1) {
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001165 tf->nsect = 1; /* 1 sector, lba=0 */
Albert Lee9d5b1302005-10-04 08:48:17 -04001166
1167 if (qc->dev->flags & ATA_DFLAG_LBA) {
Tejun Heoc44078c2006-05-15 20:57:21 +09001168 tf->flags |= ATA_TFLAG_LBA;
Albert Lee9d5b1302005-10-04 08:48:17 -04001169
1170 tf->lbah = 0x0;
1171 tf->lbam = 0x0;
1172 tf->lbal = 0x0;
1173 tf->device |= ATA_LBA;
1174 } else {
1175 /* CHS */
1176 tf->lbal = 0x1; /* sect */
1177 tf->lbam = 0x0; /* cyl low */
1178 tf->lbah = 0x0; /* cyl high */
1179 }
1180
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001181 tf->command = ATA_CMD_VERIFY; /* READ VERIFY */
Tejun Heo920a4b12007-05-04 21:28:48 +02001182 } else {
1183 /* XXX: This is for backward compatibility, will be
1184 * removed. Read Documentation/feature-removal-schedule.txt
1185 * for more info.
1186 */
Tejun Heod9aca222007-05-17 16:43:26 +02001187 if ((qc->dev->flags & ATA_DFLAG_SPUNDOWN) &&
Tejun Heo920a4b12007-05-04 21:28:48 +02001188 (system_state == SYSTEM_HALT ||
1189 system_state == SYSTEM_POWER_OFF)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001190 static unsigned long warned;
Tejun Heo920a4b12007-05-04 21:28:48 +02001191
Tejun Heoda071b42007-05-14 17:26:18 +02001192 if (!test_and_set_bit(0, &warned)) {
Tejun Heo920a4b12007-05-04 21:28:48 +02001193 ata_dev_printk(qc->dev, KERN_WARNING,
1194 "DISK MIGHT NOT BE SPUN DOWN PROPERLY. "
1195 "UPDATE SHUTDOWN UTILITY\n");
1196 ata_dev_printk(qc->dev, KERN_WARNING,
1197 "For more info, visit "
1198 "http://linux-ata.org/shutdown.html\n");
Tejun Heoda071b42007-05-14 17:26:18 +02001199
1200 /* ->scsi_done is not used, use it for
1201 * delayed completion.
1202 */
1203 scmd->scsi_done = qc->scsidone;
1204 qc->scsidone = ata_delayed_done;
Tejun Heo920a4b12007-05-04 21:28:48 +02001205 }
1206 scmd->result = SAM_STAT_GOOD;
1207 return 1;
1208 }
1209
Robert Hancock78981a72007-01-30 00:59:18 -08001210 /* Issue ATA STANDBY IMMEDIATE command */
1211 tf->command = ATA_CMD_STANDBYNOW1;
Tejun Heo920a4b12007-05-04 21:28:48 +02001212 }
Robert Hancock78981a72007-01-30 00:59:18 -08001213
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001214 /*
1215 * Standby and Idle condition timers could be implemented but that
1216 * would require libata to implement the Power condition mode page
1217 * and allow the user to change it. Changing mode pages requires
1218 * MODE SELECT to be implemented.
1219 */
1220
1221 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001222
1223invalid_fld:
Tejun Heo542b1442006-12-17 10:45:08 +09001224 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001225 /* "Invalid field in cbd" */
1226 return 1;
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001227}
1228
1229
1230/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 * ata_scsi_flush_xlat - Translate SCSI SYNCHRONIZE CACHE command
1232 * @qc: Storage for translated ATA taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 *
1234 * Sets up an ATA taskfile to issue FLUSH CACHE or
1235 * FLUSH CACHE EXT.
1236 *
1237 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001238 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 *
1240 * RETURNS:
1241 * Zero on success, non-zero on error.
1242 */
Tejun Heoad706992006-12-17 10:45:57 +09001243static unsigned int ata_scsi_flush_xlat(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 struct ata_taskfile *tf = &qc->tf;
1246
1247 tf->flags |= ATA_TFLAG_DEVICE;
1248 tf->protocol = ATA_PROT_NODATA;
1249
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001250 if (qc->dev->flags & ATA_DFLAG_FLUSH_EXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 tf->command = ATA_CMD_FLUSH_EXT;
1252 else
1253 tf->command = ATA_CMD_FLUSH;
1254
Tejun Heob666da32007-10-26 15:53:59 +09001255 /* flush is critical for IO integrity, consider it an IO command */
1256 qc->flags |= ATA_QCFLAG_IO;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 return 0;
1259}
1260
1261/**
Albert Lee3aef5232005-10-04 08:47:43 -04001262 * scsi_6_lba_len - Get LBA and transfer length
Tejun Heo542b1442006-12-17 10:45:08 +09001263 * @cdb: SCSI command to translate
Albert Lee3aef5232005-10-04 08:47:43 -04001264 *
1265 * Calculate LBA and transfer length for 6-byte commands.
1266 *
1267 * RETURNS:
1268 * @plba: the LBA
1269 * @plen: the transfer length
1270 */
Tejun Heo542b1442006-12-17 10:45:08 +09001271static void scsi_6_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001272{
1273 u64 lba = 0;
Jeff Garzik6c7b7d22007-05-25 04:39:39 -04001274 u32 len;
Albert Lee3aef5232005-10-04 08:47:43 -04001275
1276 VPRINTK("six-byte command\n");
1277
Jeff Garzik6c7b7d22007-05-25 04:39:39 -04001278 lba |= ((u64)(cdb[1] & 0x1f)) << 16;
Tejun Heo542b1442006-12-17 10:45:08 +09001279 lba |= ((u64)cdb[2]) << 8;
1280 lba |= ((u64)cdb[3]);
Albert Lee3aef5232005-10-04 08:47:43 -04001281
Jeff Garzik6c7b7d22007-05-25 04:39:39 -04001282 len = cdb[4];
Albert Lee3aef5232005-10-04 08:47:43 -04001283
1284 *plba = lba;
1285 *plen = len;
1286}
1287
1288/**
1289 * scsi_10_lba_len - Get LBA and transfer length
Tejun Heo542b1442006-12-17 10:45:08 +09001290 * @cdb: SCSI command to translate
Albert Lee3aef5232005-10-04 08:47:43 -04001291 *
1292 * Calculate LBA and transfer length for 10-byte commands.
1293 *
1294 * RETURNS:
1295 * @plba: the LBA
1296 * @plen: the transfer length
1297 */
Tejun Heo542b1442006-12-17 10:45:08 +09001298static void scsi_10_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001299{
1300 u64 lba = 0;
1301 u32 len = 0;
1302
1303 VPRINTK("ten-byte command\n");
1304
Tejun Heo542b1442006-12-17 10:45:08 +09001305 lba |= ((u64)cdb[2]) << 24;
1306 lba |= ((u64)cdb[3]) << 16;
1307 lba |= ((u64)cdb[4]) << 8;
1308 lba |= ((u64)cdb[5]);
Albert Lee3aef5232005-10-04 08:47:43 -04001309
Tejun Heo542b1442006-12-17 10:45:08 +09001310 len |= ((u32)cdb[7]) << 8;
1311 len |= ((u32)cdb[8]);
Albert Lee3aef5232005-10-04 08:47:43 -04001312
1313 *plba = lba;
1314 *plen = len;
1315}
1316
1317/**
1318 * scsi_16_lba_len - Get LBA and transfer length
Tejun Heo542b1442006-12-17 10:45:08 +09001319 * @cdb: SCSI command to translate
Albert Lee3aef5232005-10-04 08:47:43 -04001320 *
1321 * Calculate LBA and transfer length for 16-byte commands.
1322 *
1323 * RETURNS:
1324 * @plba: the LBA
1325 * @plen: the transfer length
1326 */
Tejun Heo542b1442006-12-17 10:45:08 +09001327static void scsi_16_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001328{
1329 u64 lba = 0;
1330 u32 len = 0;
1331
1332 VPRINTK("sixteen-byte command\n");
1333
Tejun Heo542b1442006-12-17 10:45:08 +09001334 lba |= ((u64)cdb[2]) << 56;
1335 lba |= ((u64)cdb[3]) << 48;
1336 lba |= ((u64)cdb[4]) << 40;
1337 lba |= ((u64)cdb[5]) << 32;
1338 lba |= ((u64)cdb[6]) << 24;
1339 lba |= ((u64)cdb[7]) << 16;
1340 lba |= ((u64)cdb[8]) << 8;
1341 lba |= ((u64)cdb[9]);
Albert Lee3aef5232005-10-04 08:47:43 -04001342
Tejun Heo542b1442006-12-17 10:45:08 +09001343 len |= ((u32)cdb[10]) << 24;
1344 len |= ((u32)cdb[11]) << 16;
1345 len |= ((u32)cdb[12]) << 8;
1346 len |= ((u32)cdb[13]);
Albert Lee3aef5232005-10-04 08:47:43 -04001347
1348 *plba = lba;
1349 *plen = len;
1350}
1351
1352/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 * ata_scsi_verify_xlat - Translate SCSI VERIFY command into an ATA one
1354 * @qc: Storage for translated ATA taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 *
1356 * Converts SCSI VERIFY command to an ATA READ VERIFY command.
1357 *
1358 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001359 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 *
1361 * RETURNS:
1362 * Zero on success, non-zero on error.
1363 */
Tejun Heoad706992006-12-17 10:45:57 +09001364static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Tejun Heo542b1442006-12-17 10:45:08 +09001366 struct scsi_cmnd *scmd = qc->scsicmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 struct ata_taskfile *tf = &qc->tf;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001368 struct ata_device *dev = qc->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 u64 dev_sectors = qc->dev->n_sectors;
Tejun Heoad706992006-12-17 10:45:57 +09001370 const u8 *cdb = scmd->cmnd;
Albert Lee3aef5232005-10-04 08:47:43 -04001371 u64 block;
1372 u32 n_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1375 tf->protocol = ATA_PROT_NODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Tejun Heo2e5704f2006-12-17 10:46:33 +09001377 if (cdb[0] == VERIFY) {
1378 if (scmd->cmd_len < 10)
1379 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001380 scsi_10_lba_len(cdb, &block, &n_block);
Tejun Heo2e5704f2006-12-17 10:46:33 +09001381 } else if (cdb[0] == VERIFY_16) {
1382 if (scmd->cmd_len < 16)
1383 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001384 scsi_16_lba_len(cdb, &block, &n_block);
Tejun Heo2e5704f2006-12-17 10:46:33 +09001385 } else
Douglas Gilbertae006512005-10-09 09:09:35 -04001386 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Albert Lee8bf62ec2005-05-12 15:29:42 -04001388 if (!n_block)
Douglas Gilbertae006512005-10-09 09:09:35 -04001389 goto nothing_to_do;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001390 if (block >= dev_sectors)
Douglas Gilbertae006512005-10-09 09:09:35 -04001391 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001392 if ((block + n_block) > dev_sectors)
Douglas Gilbertae006512005-10-09 09:09:35 -04001393 goto out_of_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Albert Lee07506692005-10-12 15:04:18 +08001395 if (dev->flags & ATA_DFLAG_LBA) {
1396 tf->flags |= ATA_TFLAG_LBA;
1397
Albert Leec6a33e22005-10-12 15:12:26 +08001398 if (lba_28_ok(block, n_block)) {
1399 /* use LBA28 */
1400 tf->command = ATA_CMD_VERIFY;
1401 tf->device |= (block >> 24) & 0xf;
1402 } else if (lba_48_ok(block, n_block)) {
1403 if (!(dev->flags & ATA_DFLAG_LBA48))
1404 goto out_of_range;
Albert Lee07506692005-10-12 15:04:18 +08001405
1406 /* use LBA48 */
1407 tf->flags |= ATA_TFLAG_LBA48;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001408 tf->command = ATA_CMD_VERIFY_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Albert Lee8bf62ec2005-05-12 15:29:42 -04001410 tf->hob_nsect = (n_block >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Albert Lee8bf62ec2005-05-12 15:29:42 -04001412 tf->hob_lbah = (block >> 40) & 0xff;
1413 tf->hob_lbam = (block >> 32) & 0xff;
1414 tf->hob_lbal = (block >> 24) & 0xff;
Albert Leec6a33e22005-10-12 15:12:26 +08001415 } else
1416 /* request too large even for LBA48 */
1417 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001418
1419 tf->nsect = n_block & 0xff;
1420
1421 tf->lbah = (block >> 16) & 0xff;
1422 tf->lbam = (block >> 8) & 0xff;
1423 tf->lbal = block & 0xff;
1424
1425 tf->device |= ATA_LBA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001427 /* CHS */
1428 u32 sect, head, cyl, track;
1429
Albert Leec6a33e22005-10-12 15:12:26 +08001430 if (!lba_28_ok(block, n_block))
1431 goto out_of_range;
Albert Lee07506692005-10-12 15:04:18 +08001432
Albert Lee8bf62ec2005-05-12 15:29:42 -04001433 /* Convert LBA to CHS */
1434 track = (u32)block / dev->sectors;
1435 cyl = track / dev->heads;
1436 head = track % dev->heads;
1437 sect = (u32)block % dev->sectors + 1;
1438
Albert Leec187c4b2005-10-04 08:46:51 -04001439 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
1440 (u32)block, track, cyl, head, sect);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001441
1442 /* Check whether the converted CHS can fit.
1443 Cylinder: 0-65535
Albert Lee8bf62ec2005-05-12 15:29:42 -04001444 Head: 0-15
1445 Sector: 1-255*/
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001446 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
Douglas Gilbertae006512005-10-09 09:09:35 -04001447 goto out_of_range;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 tf->command = ATA_CMD_VERIFY;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001450 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
1451 tf->lbal = sect;
1452 tf->lbam = cyl;
1453 tf->lbah = cyl >> 8;
1454 tf->device |= head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001458
1459invalid_fld:
Tejun Heo542b1442006-12-17 10:45:08 +09001460 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001461 /* "Invalid field in cbd" */
1462 return 1;
1463
1464out_of_range:
Tejun Heo542b1442006-12-17 10:45:08 +09001465 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x21, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001466 /* "Logical Block Address out of range" */
1467 return 1;
1468
1469nothing_to_do:
Tejun Heo542b1442006-12-17 10:45:08 +09001470 scmd->result = SAM_STAT_GOOD;
Douglas Gilbertae006512005-10-09 09:09:35 -04001471 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
1474/**
1475 * ata_scsi_rw_xlat - Translate SCSI r/w command into an ATA one
1476 * @qc: Storage for translated ATA taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 *
1478 * Converts any of six SCSI read/write commands into the
1479 * ATA counterpart, including starting sector (LBA),
1480 * sector count, and taking into account the device's LBA48
1481 * support.
1482 *
1483 * Commands %READ_6, %READ_10, %READ_16, %WRITE_6, %WRITE_10, and
1484 * %WRITE_16 are currently supported.
1485 *
1486 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001487 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 *
1489 * RETURNS:
1490 * Zero on success, non-zero on error.
1491 */
Tejun Heoad706992006-12-17 10:45:57 +09001492static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Tejun Heo542b1442006-12-17 10:45:08 +09001494 struct scsi_cmnd *scmd = qc->scsicmd;
Tejun Heoad706992006-12-17 10:45:57 +09001495 const u8 *cdb = scmd->cmnd;
Tejun Heobd056d72006-11-14 22:47:10 +09001496 unsigned int tf_flags = 0;
Albert Lee3aef5232005-10-04 08:47:43 -04001497 u64 block;
1498 u32 n_block;
Tejun Heobd056d72006-11-14 22:47:10 +09001499 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Tejun Heo542b1442006-12-17 10:45:08 +09001501 if (cdb[0] == WRITE_10 || cdb[0] == WRITE_6 || cdb[0] == WRITE_16)
Tejun Heobd056d72006-11-14 22:47:10 +09001502 tf_flags |= ATA_TFLAG_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001504 /* Calculate the SCSI LBA, transfer length and FUA. */
Tejun Heo542b1442006-12-17 10:45:08 +09001505 switch (cdb[0]) {
Albert Lee3aef5232005-10-04 08:47:43 -04001506 case READ_10:
1507 case WRITE_10:
Tejun Heo2e5704f2006-12-17 10:46:33 +09001508 if (unlikely(scmd->cmd_len < 10))
1509 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001510 scsi_10_lba_len(cdb, &block, &n_block);
1511 if (unlikely(cdb[1] & (1 << 3)))
Tejun Heobd056d72006-11-14 22:47:10 +09001512 tf_flags |= ATA_TFLAG_FUA;
Albert Lee3aef5232005-10-04 08:47:43 -04001513 break;
1514 case READ_6:
1515 case WRITE_6:
Tejun Heo2e5704f2006-12-17 10:46:33 +09001516 if (unlikely(scmd->cmd_len < 6))
1517 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001518 scsi_6_lba_len(cdb, &block, &n_block);
Albert Leec187c4b2005-10-04 08:46:51 -04001519
1520 /* for 6-byte r/w commands, transfer length 0
1521 * means 256 blocks of data, not 0 block.
1522 */
Jeff Garzik76b2bf92005-08-29 19:24:43 -04001523 if (!n_block)
1524 n_block = 256;
Albert Lee3aef5232005-10-04 08:47:43 -04001525 break;
1526 case READ_16:
1527 case WRITE_16:
Tejun Heo2e5704f2006-12-17 10:46:33 +09001528 if (unlikely(scmd->cmd_len < 16))
1529 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001530 scsi_16_lba_len(cdb, &block, &n_block);
1531 if (unlikely(cdb[1] & (1 << 3)))
Tejun Heobd056d72006-11-14 22:47:10 +09001532 tf_flags |= ATA_TFLAG_FUA;
Albert Lee3aef5232005-10-04 08:47:43 -04001533 break;
1534 default:
Albert Lee8bf62ec2005-05-12 15:29:42 -04001535 DPRINTK("no-byte command\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04001536 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
1538
Albert Lee8bf62ec2005-05-12 15:29:42 -04001539 /* Check and compose ATA command */
1540 if (!n_block)
Albert Leec187c4b2005-10-04 08:46:51 -04001541 /* For 10-byte and 16-byte SCSI R/W commands, transfer
1542 * length 0 means transfer 0 block of data.
1543 * However, for ATA R/W commands, sector count 0 means
1544 * 256 or 65536 sectors, not 0 sectors as in SCSI.
Alan Coxf51750d2005-11-07 17:06:33 +00001545 *
1546 * WARNING: one or two older ATA drives treat 0 as 0...
Albert Leec187c4b2005-10-04 08:46:51 -04001547 */
Douglas Gilbertae006512005-10-09 09:09:35 -04001548 goto nothing_to_do;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001549
Tejun Heobd056d72006-11-14 22:47:10 +09001550 qc->flags |= ATA_QCFLAG_IO;
Tejun Heo726f0782007-01-03 17:30:39 +09001551 qc->nbytes = n_block * ATA_SECT_SIZE;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001552
Tejun Heobd056d72006-11-14 22:47:10 +09001553 rc = ata_build_rw_tf(&qc->tf, qc->dev, block, n_block, tf_flags,
1554 qc->tag);
1555 if (likely(rc == 0))
1556 return 0;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001557
Tejun Heobd056d72006-11-14 22:47:10 +09001558 if (rc == -ERANGE)
1559 goto out_of_range;
1560 /* treat all other errors as -EINVAL, fall through */
Douglas Gilbertae006512005-10-09 09:09:35 -04001561invalid_fld:
Tejun Heo542b1442006-12-17 10:45:08 +09001562 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001563 /* "Invalid field in cbd" */
1564 return 1;
1565
1566out_of_range:
Tejun Heo542b1442006-12-17 10:45:08 +09001567 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x21, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001568 /* "Logical Block Address out of range" */
1569 return 1;
1570
1571nothing_to_do:
Tejun Heo542b1442006-12-17 10:45:08 +09001572 scmd->result = SAM_STAT_GOOD;
Douglas Gilbertae006512005-10-09 09:09:35 -04001573 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
Tejun Heo77853bf2006-01-23 13:09:36 +09001576static void ata_scsi_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Tejun Heoc31f5712006-11-22 12:39:43 +09001578 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 struct scsi_cmnd *cmd = qc->scsicmd;
Jeff Garzika7dac442005-10-30 04:44:42 -05001580 u8 *cdb = cmd->cmnd;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001581 int need_sense = (qc->err_mask != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Jeff Garzikb0955182005-05-12 15:45:22 -04001583 /* For ATA pass thru (SAT) commands, generate a sense block if
1584 * user mandated it or if there's an error. Note that if we
1585 * generate because the user forced us to, a check condition
1586 * is generated and the ATA register values are returned
1587 * whether the command completed successfully or not. If there
1588 * was no error, SK, ASC and ASCQ will all be zero.
1589 */
Jeff Garzika7dac442005-10-30 04:44:42 -05001590 if (((cdb[0] == ATA_16) || (cdb[0] == ATA_12)) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001591 ((cdb[2] & 0x20) || need_sense)) {
Tejun Heo750426a2006-11-14 22:37:35 +09001592 ata_gen_passthru_sense(qc);
Jeff Garzikb0955182005-05-12 15:45:22 -04001593 } else {
1594 if (!need_sense) {
1595 cmd->result = SAM_STAT_GOOD;
1596 } else {
1597 /* TODO: decide which descriptor format to use
1598 * for 48b LBA devices and call that here
1599 * instead of the fixed desc, which is only
1600 * good for smaller LBA (and maybe CHS?)
1601 * devices.
1602 */
Tejun Heo750426a2006-11-14 22:37:35 +09001603 ata_gen_ata_sense(qc);
Jeff Garzikb0955182005-05-12 15:45:22 -04001604 }
1605 }
1606
Tejun Heod9aca222007-05-17 16:43:26 +02001607 /* XXX: track spindown state for spindown skipping and warning */
Tejun Heo13b8d092007-05-15 12:29:22 +02001608 if (unlikely(qc->tf.command == ATA_CMD_STANDBY ||
1609 qc->tf.command == ATA_CMD_STANDBYNOW1))
1610 qc->dev->flags |= ATA_DFLAG_SPUNDOWN;
1611 else if (likely(system_state != SYSTEM_HALT &&
1612 system_state != SYSTEM_POWER_OFF))
1613 qc->dev->flags &= ~ATA_DFLAG_SPUNDOWN;
1614
Tejun Heoc31f5712006-11-22 12:39:43 +09001615 if (need_sense && !ap->ops->error_handler)
Tejun Heo44877b42007-02-21 01:06:51 +09001616 ata_dump_status(ap->print_id, &qc->result_tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 qc->scsidone(cmd);
1619
Tejun Heo77853bf2006-01-23 13:09:36 +09001620 ata_qc_free(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
1622
1623/**
1624 * ata_scsi_translate - Translate then issue SCSI command to ATA device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 * @dev: ATA device to which the command is addressed
1626 * @cmd: SCSI command to execute
1627 * @done: SCSI command completion function
1628 * @xlat_func: Actor which translates @cmd to an ATA taskfile
1629 *
1630 * Our ->queuecommand() function has decided that the SCSI
1631 * command issued can be directly translated into an ATA
1632 * command, rather than handled internally.
1633 *
1634 * This function sets up an ata_queued_cmd structure for the
1635 * SCSI command, and sends that ata_queued_cmd to the hardware.
1636 *
Douglas Gilbertae006512005-10-09 09:09:35 -04001637 * The xlat_func argument (actor) returns 0 if ready to execute
1638 * ATA command, else 1 to finish translation. If 1 is returned
1639 * then cmd->result (and possibly cmd->sense_buffer) are assumed
1640 * to be set reflecting an error condition or clean (early)
1641 * termination.
1642 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001644 * spin_lock_irqsave(host lock)
Tejun Heo2115ea92006-05-15 21:03:39 +09001645 *
1646 * RETURNS:
1647 * 0 on success, SCSI_ML_QUEUE_DEVICE_BUSY if the command
1648 * needs to be deferred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 */
Tejun Heo2115ea92006-05-15 21:03:39 +09001650static int ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd,
1651 void (*done)(struct scsi_cmnd *),
1652 ata_xlat_func_t xlat_func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Tejun Heo31cc23b2007-09-23 13:14:12 +09001654 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 struct ata_queued_cmd *qc;
Tejun Heo31cc23b2007-09-23 13:14:12 +09001656 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 VPRINTK("ENTER\n");
1659
Tejun Heo3373efd2006-05-15 20:57:53 +09001660 qc = ata_scsi_qc_new(dev, cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (!qc)
Douglas Gilbertae006512005-10-09 09:09:35 -04001662 goto err_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 /* data is present; dma-map it */
be7db052005-04-17 15:26:13 -05001665 if (cmd->sc_data_direction == DMA_FROM_DEVICE ||
1666 cmd->sc_data_direction == DMA_TO_DEVICE) {
Boaz Harrosh71201652007-09-18 17:48:50 +02001667 if (unlikely(scsi_bufflen(cmd) < 1)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001668 ata_dev_printk(dev, KERN_WARNING,
1669 "WARNING: zero len r/w req\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04001670 goto err_did;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672
Boaz Harrosh71201652007-09-18 17:48:50 +02001673 ata_sg_init(qc, scsi_sglist(cmd), scsi_sg_count(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 qc->dma_dir = cmd->sc_data_direction;
1676 }
1677
1678 qc->complete_fn = ata_scsi_qc_complete;
1679
Tejun Heoad706992006-12-17 10:45:57 +09001680 if (xlat_func(qc))
Douglas Gilbertae006512005-10-09 09:09:35 -04001681 goto early_finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Tejun Heo31cc23b2007-09-23 13:14:12 +09001683 if (ap->ops->qc_defer) {
1684 if ((rc = ap->ops->qc_defer(qc)))
1685 goto defer;
1686 }
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 /* select device, send command to hardware */
Tejun Heo8e0e6942006-03-31 20:41:11 +09001689 ata_qc_issue(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 VPRINTK("EXIT\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Douglas Gilbertae006512005-10-09 09:09:35 -04001694early_finish:
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001695 ata_qc_free(qc);
Tejun Heoda071b42007-05-14 17:26:18 +02001696 qc->scsidone(cmd);
Douglas Gilbertae006512005-10-09 09:09:35 -04001697 DPRINTK("EXIT - early finish (good or error)\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001698 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001699
1700err_did:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 ata_qc_free(qc);
Douglas Gilbertae006512005-10-09 09:09:35 -04001702 cmd->result = (DID_ERROR << 16);
Tejun Heoda071b42007-05-14 17:26:18 +02001703 qc->scsidone(cmd);
Darrick J. Wong253b92e2006-11-14 09:55:41 -05001704err_mem:
Douglas Gilbertae006512005-10-09 09:09:35 -04001705 DPRINTK("EXIT - internal\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001706 return 0;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001707
1708defer:
Tejun Heo31cc23b2007-09-23 13:14:12 +09001709 ata_qc_free(qc);
Tejun Heo3dc1d882006-05-15 21:03:45 +09001710 DPRINTK("EXIT - defer\n");
Tejun Heo31cc23b2007-09-23 13:14:12 +09001711 if (rc == ATA_DEFER_LINK)
1712 return SCSI_MLQUEUE_DEVICE_BUSY;
1713 else
1714 return SCSI_MLQUEUE_HOST_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717/**
1718 * ata_scsi_rbuf_get - Map response buffer.
Randy Dunlapec2a20e2008-04-30 12:57:00 -07001719 * @cmd: SCSI command containing buffer to be mapped.
Tejun Heo87340e92008-04-28 17:48:51 +09001720 * @flags: unsigned long variable to store irq enable status
1721 * @copy_in: copy in from user buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 *
Tejun Heo87340e92008-04-28 17:48:51 +09001723 * Prepare buffer for simulated SCSI commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 *
1725 * LOCKING:
Tejun Heo87340e92008-04-28 17:48:51 +09001726 * spin_lock_irqsave(ata_scsi_rbuf_lock) on success
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 *
1728 * RETURNS:
Tejun Heo87340e92008-04-28 17:48:51 +09001729 * Pointer to response buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 */
Tejun Heo87340e92008-04-28 17:48:51 +09001731static void *ata_scsi_rbuf_get(struct scsi_cmnd *cmd, bool copy_in,
1732 unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
Tejun Heo87340e92008-04-28 17:48:51 +09001734 spin_lock_irqsave(&ata_scsi_rbuf_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Tejun Heo87340e92008-04-28 17:48:51 +09001736 memset(ata_scsi_rbuf, 0, ATA_SCSI_RBUF_SIZE);
1737 if (copy_in)
1738 sg_copy_to_buffer(scsi_sglist(cmd), scsi_sg_count(cmd),
1739 ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE);
1740 return ata_scsi_rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
1743/**
1744 * ata_scsi_rbuf_put - Unmap response buffer.
1745 * @cmd: SCSI command containing buffer to be unmapped.
Tejun Heo87340e92008-04-28 17:48:51 +09001746 * @copy_out: copy out result
1747 * @flags: @flags passed to ata_scsi_rbuf_get()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 *
Tejun Heo87340e92008-04-28 17:48:51 +09001749 * Returns rbuf buffer. The result is copied to @cmd's buffer if
1750 * @copy_back is true.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 *
1752 * LOCKING:
Tejun Heo87340e92008-04-28 17:48:51 +09001753 * Unlocks ata_scsi_rbuf_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 */
Tejun Heo87340e92008-04-28 17:48:51 +09001755static inline void ata_scsi_rbuf_put(struct scsi_cmnd *cmd, bool copy_out,
1756 unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Tejun Heo87340e92008-04-28 17:48:51 +09001758 if (copy_out)
1759 sg_copy_from_buffer(scsi_sglist(cmd), scsi_sg_count(cmd),
1760 ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE);
1761 spin_unlock_irqrestore(&ata_scsi_rbuf_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
1764/**
1765 * ata_scsi_rbuf_fill - wrapper for SCSI command simulators
1766 * @args: device IDENTIFY data / SCSI command of interest.
1767 * @actor: Callback hook for desired SCSI command simulator
1768 *
1769 * Takes care of the hard work of simulating a SCSI command...
1770 * Mapping the response buffer, calling the command's handler,
1771 * and handling the handler's return value. This return value
1772 * indicates whether the handler wishes the SCSI command to be
Douglas Gilbertae006512005-10-09 09:09:35 -04001773 * completed successfully (0), or not (in which case cmd->result
1774 * and sense buffer are assumed to be set).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 *
1776 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001777 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 */
Tejun Heof0761be2008-04-28 17:16:52 +09001779static void ata_scsi_rbuf_fill(struct ata_scsi_args *args,
Tejun Heo87340e92008-04-28 17:48:51 +09001780 unsigned int (*actor)(struct ata_scsi_args *args, u8 *rbuf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
1782 u8 *rbuf;
Tejun Heo87340e92008-04-28 17:48:51 +09001783 unsigned int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 struct scsi_cmnd *cmd = args->cmd;
Jeff Garzikb445c562008-02-29 19:10:51 -05001785 unsigned long flags;
1786
Tejun Heo87340e92008-04-28 17:48:51 +09001787 rbuf = ata_scsi_rbuf_get(cmd, false, &flags);
1788 rc = actor(args, rbuf);
1789 ata_scsi_rbuf_put(cmd, rc == 0, &flags);
Jeff Garzikb445c562008-02-29 19:10:51 -05001790
Douglas Gilbertae006512005-10-09 09:09:35 -04001791 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 cmd->result = SAM_STAT_GOOD;
Douglas Gilbertae006512005-10-09 09:09:35 -04001793 args->done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
1796/**
1797 * ata_scsiop_inq_std - Simulate INQUIRY command
1798 * @args: device IDENTIFY data / SCSI command of interest.
1799 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 *
1801 * Returns standard device identification data associated
Jeff Garzikb142eb62006-03-21 20:37:47 -05001802 * with non-VPD INQUIRY command output.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 *
1804 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001805 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 */
Tejun Heo87340e92008-04-28 17:48:51 +09001807static unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Tejun Heo87340e92008-04-28 17:48:51 +09001809 const u8 versions[] = {
1810 0x60, /* SAM-3 (no version claimed) */
1811
1812 0x03,
1813 0x20, /* SBC-2 (no version claimed) */
1814
1815 0x02,
1816 0x60 /* SPC-3 (no version claimed) */
1817 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 u8 hdr[] = {
1819 TYPE_DISK,
1820 0,
1821 0x5, /* claim SPC-3 version compatibility */
1822 2,
1823 95 - 4
1824 };
1825
Tejun Heo87340e92008-04-28 17:48:51 +09001826 VPRINTK("ENTER\n");
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 /* set scsi removeable (RMB) bit per ata bit */
1829 if (ata_id_removeable(args->id))
1830 hdr[1] |= (1 << 7);
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 memcpy(rbuf, hdr, sizeof(hdr));
Tejun Heo87340e92008-04-28 17:48:51 +09001833 memcpy(&rbuf[8], "ATA ", 8);
1834 ata_id_string(args->id, &rbuf[16], ATA_ID_PROD, 16);
1835 ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Tejun Heo87340e92008-04-28 17:48:51 +09001837 if (rbuf[32] == 0 || rbuf[32] == ' ')
1838 memcpy(&rbuf[32], "n/a ", 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Tejun Heo87340e92008-04-28 17:48:51 +09001840 memcpy(rbuf + 59, versions, sizeof(versions));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 return 0;
1843}
1844
1845/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001846 * ata_scsiop_inq_00 - Simulate INQUIRY VPD page 0, list of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 * @args: device IDENTIFY data / SCSI command of interest.
1848 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 *
Jeff Garzikb142eb62006-03-21 20:37:47 -05001850 * Returns list of inquiry VPD pages available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 *
1852 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001853 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 */
Tejun Heo87340e92008-04-28 17:48:51 +09001855static unsigned int ata_scsiop_inq_00(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
1857 const u8 pages[] = {
1858 0x00, /* page 0x00, this page */
1859 0x80, /* page 0x80, unit serial no page */
Matthew Wilcox1e9dbc92008-06-19 13:13:38 -06001860 0x83, /* page 0x83, device ident page */
1861 0x89, /* page 0x89, ata info page */
1862 0xb1, /* page 0xb1, block device characteristics page */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 };
Tejun Heo87340e92008-04-28 17:48:51 +09001864
Jeff Garzikb142eb62006-03-21 20:37:47 -05001865 rbuf[3] = sizeof(pages); /* number of supported VPD pages */
Tejun Heo87340e92008-04-28 17:48:51 +09001866 memcpy(rbuf + 4, pages, sizeof(pages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 return 0;
1868}
1869
1870/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001871 * ata_scsiop_inq_80 - Simulate INQUIRY VPD page 80, device serial number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 * @args: device IDENTIFY data / SCSI command of interest.
1873 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 *
1875 * Returns ATA device serial number.
1876 *
1877 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001878 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 */
Tejun Heo87340e92008-04-28 17:48:51 +09001880static unsigned int ata_scsiop_inq_80(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
1882 const u8 hdr[] = {
1883 0,
1884 0x80, /* this page code */
1885 0,
Tejun Heoa0cf7332007-01-02 20:18:49 +09001886 ATA_ID_SERNO_LEN, /* page len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 };
Tejun Heo87340e92008-04-28 17:48:51 +09001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 memcpy(rbuf, hdr, sizeof(hdr));
Tejun Heo87340e92008-04-28 17:48:51 +09001890 ata_id_string(args->id, (unsigned char *) &rbuf[4],
1891 ATA_ID_SERNO, ATA_ID_SERNO_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return 0;
1893}
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001896 * ata_scsiop_inq_83 - Simulate INQUIRY VPD page 83, device identity
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 * @args: device IDENTIFY data / SCSI command of interest.
1898 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 *
Jeff Garzikb142eb62006-03-21 20:37:47 -05001900 * Yields two logical unit device identification designators:
1901 * - vendor specific ASCII containing the ATA serial number
1902 * - SAT defined "t10 vendor id based" containing ASCII vendor
1903 * name ("ATA "), model and serial numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 *
1905 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001906 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 */
Tejun Heo87340e92008-04-28 17:48:51 +09001908static unsigned int ata_scsiop_inq_83(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Jeff Garzikb142eb62006-03-21 20:37:47 -05001910 const int sat_model_serial_desc_len = 68;
Tejun Heo87340e92008-04-28 17:48:51 +09001911 int num;
Jeff Garzikb142eb62006-03-21 20:37:47 -05001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 rbuf[1] = 0x83; /* this page code */
Jeff Garzikb142eb62006-03-21 20:37:47 -05001914 num = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Tejun Heo87340e92008-04-28 17:48:51 +09001916 /* piv=0, assoc=lu, code_set=ACSII, designator=vendor */
1917 rbuf[num + 0] = 2;
1918 rbuf[num + 3] = ATA_ID_SERNO_LEN;
1919 num += 4;
1920 ata_id_string(args->id, (unsigned char *) rbuf + num,
1921 ATA_ID_SERNO, ATA_ID_SERNO_LEN);
1922 num += ATA_ID_SERNO_LEN;
1923
1924 /* SAT defined lu model and serial numbers descriptor */
1925 /* piv=0, assoc=lu, code_set=ACSII, designator=t10 vendor id */
1926 rbuf[num + 0] = 2;
1927 rbuf[num + 1] = 1;
1928 rbuf[num + 3] = sat_model_serial_desc_len;
1929 num += 4;
1930 memcpy(rbuf + num, "ATA ", 8);
1931 num += 8;
1932 ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_PROD,
1933 ATA_ID_PROD_LEN);
1934 num += ATA_ID_PROD_LEN;
1935 ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_SERNO,
1936 ATA_ID_SERNO_LEN);
1937 num += ATA_ID_SERNO_LEN;
1938
Jeff Garzikb142eb62006-03-21 20:37:47 -05001939 rbuf[3] = num - 4; /* page len (assume less than 256 bytes) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return 0;
1941}
1942
1943/**
Jeff Garzikad355b42007-09-21 20:38:03 -04001944 * ata_scsiop_inq_89 - Simulate INQUIRY VPD page 89, ATA info
1945 * @args: device IDENTIFY data / SCSI command of interest.
1946 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Jeff Garzikad355b42007-09-21 20:38:03 -04001947 *
1948 * Yields SAT-specified ATA VPD page.
1949 *
1950 * LOCKING:
1951 * spin_lock_irqsave(host lock)
1952 */
Tejun Heo87340e92008-04-28 17:48:51 +09001953static unsigned int ata_scsiop_inq_89(struct ata_scsi_args *args, u8 *rbuf)
Jeff Garzikad355b42007-09-21 20:38:03 -04001954{
Jeff Garzikad355b42007-09-21 20:38:03 -04001955 struct ata_taskfile tf;
Jeff Garzikad355b42007-09-21 20:38:03 -04001956
Jeff Garzikad355b42007-09-21 20:38:03 -04001957 memset(&tf, 0, sizeof(tf));
1958
Tejun Heo87340e92008-04-28 17:48:51 +09001959 rbuf[1] = 0x89; /* our page code */
1960 rbuf[2] = (0x238 >> 8); /* page size fixed at 238h */
1961 rbuf[3] = (0x238 & 0xff);
Jeff Garzikad355b42007-09-21 20:38:03 -04001962
Tejun Heo87340e92008-04-28 17:48:51 +09001963 memcpy(&rbuf[8], "linux ", 8);
1964 memcpy(&rbuf[16], "libata ", 16);
1965 memcpy(&rbuf[32], DRV_VERSION, 4);
1966 ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4);
Jeff Garzikad355b42007-09-21 20:38:03 -04001967
1968 /* we don't store the ATA device signature, so we fake it */
1969
1970 tf.command = ATA_DRDY; /* really, this is Status reg */
1971 tf.lbal = 0x1;
1972 tf.nsect = 0x1;
1973
Tejun Heo87340e92008-04-28 17:48:51 +09001974 ata_tf_to_fis(&tf, 0, 1, &rbuf[36]); /* TODO: PMP? */
1975 rbuf[36] = 0x34; /* force D2H Reg FIS (34h) */
Jeff Garzikad355b42007-09-21 20:38:03 -04001976
Tejun Heo87340e92008-04-28 17:48:51 +09001977 rbuf[56] = ATA_CMD_ID_ATA;
Jeff Garzikad355b42007-09-21 20:38:03 -04001978
Tejun Heo87340e92008-04-28 17:48:51 +09001979 memcpy(&rbuf[60], &args->id[0], 512);
Jeff Garzikad355b42007-09-21 20:38:03 -04001980 return 0;
1981}
1982
Matthew Wilcox1e9dbc92008-06-19 13:13:38 -06001983static unsigned int ata_scsiop_inq_b1(struct ata_scsi_args *args, u8 *rbuf)
1984{
1985 rbuf[1] = 0xb1;
1986 rbuf[3] = 0x3c;
1987 if (ata_id_major_version(args->id) > 7) {
1988 rbuf[4] = args->id[217] >> 8;
1989 rbuf[5] = args->id[217];
1990 rbuf[7] = args->id[168] & 0xf;
1991 }
1992
1993 return 0;
1994}
1995
Jeff Garzikad355b42007-09-21 20:38:03 -04001996/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001997 * ata_scsiop_noop - Command handler that simply returns success.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 * @args: device IDENTIFY data / SCSI command of interest.
1999 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 *
2001 * No operation. Simply returns success to caller, to indicate
2002 * that the caller should successfully complete this SCSI command.
2003 *
2004 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002005 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 */
Tejun Heo87340e92008-04-28 17:48:51 +09002007static unsigned int ata_scsiop_noop(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 VPRINTK("ENTER\n");
2010 return 0;
2011}
2012
2013/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 * ata_msense_caching - Simulate MODE SENSE caching info page
2015 * @id: device IDENTIFY data
Tejun Heo87340e92008-04-28 17:48:51 +09002016 * @buf: output buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 *
2018 * Generate a caching info page, which conditionally indicates
2019 * write caching to the SCSI layer, depending on device
2020 * capabilities.
2021 *
2022 * LOCKING:
2023 * None.
2024 */
Tejun Heo87340e92008-04-28 17:48:51 +09002025static unsigned int ata_msense_caching(u16 *id, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Tejun Heo87340e92008-04-28 17:48:51 +09002027 memcpy(buf, def_cache_mpage, sizeof(def_cache_mpage));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 if (ata_id_wcache_enabled(id))
Tejun Heo87340e92008-04-28 17:48:51 +09002029 buf[2] |= (1 << 2); /* write cache enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (!ata_id_rahead_enabled(id))
Tejun Heo87340e92008-04-28 17:48:51 +09002031 buf[12] |= (1 << 5); /* disable read ahead */
2032 return sizeof(def_cache_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033}
2034
2035/**
2036 * ata_msense_ctl_mode - Simulate MODE SENSE control mode page
Tejun Heo87340e92008-04-28 17:48:51 +09002037 * @buf: output buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 *
2039 * Generate a generic MODE SENSE control mode page.
2040 *
2041 * LOCKING:
2042 * None.
2043 */
Tejun Heo87340e92008-04-28 17:48:51 +09002044static unsigned int ata_msense_ctl_mode(u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Tejun Heo87340e92008-04-28 17:48:51 +09002046 memcpy(buf, def_control_mpage, sizeof(def_control_mpage));
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002047 return sizeof(def_control_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
2050/**
2051 * ata_msense_rw_recovery - Simulate MODE SENSE r/w error recovery page
Randy Dunlapec2a20e2008-04-30 12:57:00 -07002052 * @buf: output buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 *
2054 * Generate a generic MODE SENSE r/w error recovery page.
2055 *
2056 * LOCKING:
2057 * None.
2058 */
Tejun Heo87340e92008-04-28 17:48:51 +09002059static unsigned int ata_msense_rw_recovery(u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Tejun Heo87340e92008-04-28 17:48:51 +09002061 memcpy(buf, def_rw_recovery_mpage, sizeof(def_rw_recovery_mpage));
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002062 return sizeof(def_rw_recovery_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002065/*
2066 * We can turn this into a real blacklist if it's needed, for now just
2067 * blacklist any Maxtor BANC1G10 revision firmware
2068 */
2069static int ata_dev_supports_fua(u16 *id)
2070{
Tejun Heoa0cf7332007-01-02 20:18:49 +09002071 unsigned char model[ATA_ID_PROD_LEN + 1], fw[ATA_ID_FW_REV_LEN + 1];
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002072
Jeff Garzikc3c013a2006-02-27 22:31:19 -05002073 if (!libata_fua)
2074 return 0;
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002075 if (!ata_id_has_fua(id))
2076 return 0;
2077
Tejun Heoa0cf7332007-01-02 20:18:49 +09002078 ata_id_c_string(id, model, ATA_ID_PROD, sizeof(model));
2079 ata_id_c_string(id, fw, ATA_ID_FW_REV, sizeof(fw));
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002080
Tejun Heo2e026712006-02-12 22:47:04 +09002081 if (strcmp(model, "Maxtor"))
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002082 return 1;
Tejun Heo2e026712006-02-12 22:47:04 +09002083 if (strcmp(fw, "BANC1G10"))
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002084 return 1;
2085
2086 return 0; /* blacklisted */
2087}
2088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089/**
2090 * ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands
2091 * @args: device IDENTIFY data / SCSI command of interest.
2092 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 *
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002094 * Simulate MODE SENSE commands. Assume this is invoked for direct
2095 * access devices (e.g. disks) only. There should be no block
2096 * descriptor for other device types.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 *
2098 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002099 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 */
Tejun Heo87340e92008-04-28 17:48:51 +09002101static unsigned int ata_scsiop_mode_sense(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002103 struct ata_device *dev = args->dev;
Tejun Heo87340e92008-04-28 17:48:51 +09002104 u8 *scsicmd = args->cmd->cmnd, *p = rbuf;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002105 const u8 sat_blk_desc[] = {
2106 0, 0, 0, 0, /* number of blocks: sat unspecified */
2107 0,
2108 0, 0x2, 0x0 /* block length: 512 bytes */
2109 };
2110 u8 pg, spg;
Tejun Heo87340e92008-04-28 17:48:51 +09002111 unsigned int ebd, page_control, six_byte;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002112 u8 dpofua;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 VPRINTK("ENTER\n");
2115
2116 six_byte = (scsicmd[0] == MODE_SENSE);
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002117 ebd = !(scsicmd[1] & 0x8); /* dbd bit inverted == edb */
2118 /*
2119 * LLBA bit in msense(10) ignored (compliant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 */
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 page_control = scsicmd[2] >> 6;
Douglas Gilbertae006512005-10-09 09:09:35 -04002123 switch (page_control) {
2124 case 0: /* current */
2125 break; /* supported */
2126 case 3: /* saved */
2127 goto saving_not_supp;
2128 case 1: /* changeable */
2129 case 2: /* defaults */
2130 default:
2131 goto invalid_fld;
2132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Tejun Heo87340e92008-04-28 17:48:51 +09002134 if (six_byte)
2135 p += 4 + (ebd ? 8 : 0);
2136 else
2137 p += 8 + (ebd ? 8 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002139 pg = scsicmd[2] & 0x3f;
2140 spg = scsicmd[3];
2141 /*
2142 * No mode subpages supported (yet) but asking for _all_
2143 * subpages may be valid
2144 */
2145 if (spg && (spg != ALL_SUB_MPAGES))
2146 goto invalid_fld;
2147
2148 switch(pg) {
2149 case RW_RECOVERY_MPAGE:
Tejun Heo87340e92008-04-28 17:48:51 +09002150 p += ata_msense_rw_recovery(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 break;
2152
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002153 case CACHE_MPAGE:
Tejun Heo87340e92008-04-28 17:48:51 +09002154 p += ata_msense_caching(args->id, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 break;
2156
Tejun Heo87340e92008-04-28 17:48:51 +09002157 case CONTROL_MPAGE:
2158 p += ata_msense_ctl_mode(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002161 case ALL_MPAGES:
Tejun Heo87340e92008-04-28 17:48:51 +09002162 p += ata_msense_rw_recovery(p);
2163 p += ata_msense_caching(args->id, p);
2164 p += ata_msense_ctl_mode(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 break;
2166
2167 default: /* invalid page code */
Douglas Gilbertae006512005-10-09 09:09:35 -04002168 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002171 dpofua = 0;
Alan Coxf79d4092006-05-22 16:55:11 +01002172 if (ata_dev_supports_fua(args->id) && (dev->flags & ATA_DFLAG_LBA48) &&
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002173 (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count))
2174 dpofua = 1 << 4;
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if (six_byte) {
Tejun Heo87340e92008-04-28 17:48:51 +09002177 rbuf[0] = p - rbuf - 1;
2178 rbuf[2] |= dpofua;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002179 if (ebd) {
Tejun Heo87340e92008-04-28 17:48:51 +09002180 rbuf[3] = sizeof(sat_blk_desc);
2181 memcpy(rbuf + 4, sat_blk_desc, sizeof(sat_blk_desc));
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 } else {
Tejun Heo87340e92008-04-28 17:48:51 +09002184 unsigned int output_len = p - rbuf - 2;
2185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 rbuf[0] = output_len >> 8;
Tejun Heo87340e92008-04-28 17:48:51 +09002187 rbuf[1] = output_len;
2188 rbuf[3] |= dpofua;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002189 if (ebd) {
Tejun Heo87340e92008-04-28 17:48:51 +09002190 rbuf[7] = sizeof(sat_blk_desc);
2191 memcpy(rbuf + 8, sat_blk_desc, sizeof(sat_blk_desc));
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04002195
2196invalid_fld:
2197 ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x24, 0x0);
2198 /* "Invalid field in cbd" */
2199 return 1;
2200
2201saving_not_supp:
2202 ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x39, 0x0);
2203 /* "Saving parameters not supported" */
2204 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205}
2206
2207/**
2208 * ata_scsiop_read_cap - Simulate READ CAPACITY[ 16] commands
2209 * @args: device IDENTIFY data / SCSI command of interest.
2210 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 *
2212 * Simulate READ CAPACITY commands.
2213 *
2214 * LOCKING:
Tejun Heo6a362612006-11-20 11:15:47 +09002215 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 */
Tejun Heo87340e92008-04-28 17:48:51 +09002217static unsigned int ata_scsiop_read_cap(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
Tejun Heo6a362612006-11-20 11:15:47 +09002219 u64 last_lba = args->dev->n_sectors - 1; /* LBA of the last block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 VPRINTK("ENTER\n");
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (args->cmd->cmnd[0] == READ_CAPACITY) {
Tejun Heo6a362612006-11-20 11:15:47 +09002224 if (last_lba >= 0xffffffffULL)
2225 last_lba = 0xffffffff;
Philip Pokorny0c144d02005-05-28 01:24:47 -07002226
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 /* sector count, 32-bit */
Tejun Heo87340e92008-04-28 17:48:51 +09002228 rbuf[0] = last_lba >> (8 * 3);
2229 rbuf[1] = last_lba >> (8 * 2);
2230 rbuf[2] = last_lba >> (8 * 1);
2231 rbuf[3] = last_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233 /* sector size */
Tejun Heo87340e92008-04-28 17:48:51 +09002234 rbuf[6] = ATA_SECT_SIZE >> 8;
2235 rbuf[7] = ATA_SECT_SIZE & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 } else {
2237 /* sector count, 64-bit */
Tejun Heo87340e92008-04-28 17:48:51 +09002238 rbuf[0] = last_lba >> (8 * 7);
2239 rbuf[1] = last_lba >> (8 * 6);
2240 rbuf[2] = last_lba >> (8 * 5);
2241 rbuf[3] = last_lba >> (8 * 4);
2242 rbuf[4] = last_lba >> (8 * 3);
2243 rbuf[5] = last_lba >> (8 * 2);
2244 rbuf[6] = last_lba >> (8 * 1);
2245 rbuf[7] = last_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 /* sector size */
Tejun Heo87340e92008-04-28 17:48:51 +09002248 rbuf[10] = ATA_SECT_SIZE >> 8;
2249 rbuf[11] = ATA_SECT_SIZE & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251
2252 return 0;
2253}
2254
2255/**
2256 * ata_scsiop_report_luns - Simulate REPORT LUNS command
2257 * @args: device IDENTIFY data / SCSI command of interest.
2258 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 *
2260 * Simulate REPORT LUNS command.
2261 *
2262 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002263 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 */
Tejun Heo87340e92008-04-28 17:48:51 +09002265static unsigned int ata_scsiop_report_luns(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
2267 VPRINTK("ENTER\n");
2268 rbuf[3] = 8; /* just one lun, LUN 0, size 8 bytes */
2269
2270 return 0;
2271}
2272
Tejun Heo77853bf2006-01-23 13:09:36 +09002273static void atapi_sense_complete(struct ata_queued_cmd *qc)
Jeff Garzika939c962005-10-05 17:09:16 -04002274{
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002275 if (qc->err_mask && ((qc->err_mask & AC_ERR_DEV) == 0)) {
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002276 /* FIXME: not quite right; we don't want the
2277 * translation of taskfile registers into
2278 * a sense descriptors, since that's only
2279 * correct for ATA, not ATAPI
2280 */
Tejun Heo750426a2006-11-14 22:37:35 +09002281 ata_gen_passthru_sense(qc);
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002282 }
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002283
2284 qc->scsidone(qc->scsicmd);
Tejun Heo77853bf2006-01-23 13:09:36 +09002285 ata_qc_free(qc);
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002286}
2287
2288/* is it pointless to prefer PIO for "safety reasons"? */
2289static inline int ata_pio_use_silly(struct ata_port *ap)
2290{
2291 return (ap->flags & ATA_FLAG_PIO_DMA);
2292}
2293
2294static void atapi_request_sense(struct ata_queued_cmd *qc)
2295{
2296 struct ata_port *ap = qc->ap;
2297 struct scsi_cmnd *cmd = qc->scsicmd;
Jeff Garzika939c962005-10-05 17:09:16 -04002298
2299 DPRINTK("ATAPI request sense\n");
2300
Jeff Garzika939c962005-10-05 17:09:16 -04002301 /* FIXME: is this needed? */
James Bottomley7ccd7202008-01-17 11:56:24 -06002302 memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Jeff Garzika939c962005-10-05 17:09:16 -04002303
Tejun Heo127102a2008-04-07 22:47:21 +09002304#ifdef CONFIG_ATA_SFF
James Bottomley855d8542008-04-18 13:18:48 -05002305 if (ap->ops->sff_tf_read)
2306 ap->ops->sff_tf_read(ap, &qc->tf);
Tejun Heo127102a2008-04-07 22:47:21 +09002307#endif
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002308
2309 /* fill these in, for the case where they are -not- overwritten */
2310 cmd->sense_buffer[0] = 0x70;
2311 cmd->sense_buffer[2] = qc->tf.feature >> 4;
2312
2313 ata_qc_reinit(qc);
2314
Tejun Heo93f8fec2007-12-05 16:43:01 +09002315 /* setup sg table and init transfer direction */
akpm@linux-foundation.orgcadb7342008-01-15 16:01:52 -08002316 sg_init_one(&qc->sgent, cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE);
Tejun Heo93f8fec2007-12-05 16:43:01 +09002317 ata_sg_init(qc, &qc->sgent, 1);
Jeff Garzika939c962005-10-05 17:09:16 -04002318 qc->dma_dir = DMA_FROM_DEVICE;
2319
Tejun Heo6e7846e2006-02-12 23:32:58 +09002320 memset(&qc->cdb, 0, qc->dev->cdb_len);
Jeff Garzika939c962005-10-05 17:09:16 -04002321 qc->cdb[0] = REQUEST_SENSE;
2322 qc->cdb[4] = SCSI_SENSE_BUFFERSIZE;
2323
2324 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2325 qc->tf.command = ATA_CMD_PACKET;
2326
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002327 if (ata_pio_use_silly(ap)) {
Tejun Heo0dc36882007-12-18 16:34:43 -05002328 qc->tf.protocol = ATAPI_PROT_DMA;
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002329 qc->tf.feature |= ATAPI_PKT_DMA;
2330 } else {
Tejun Heo0dc36882007-12-18 16:34:43 -05002331 qc->tf.protocol = ATAPI_PROT_PIO;
Alan Cox2db78dd2007-10-02 13:53:04 -07002332 qc->tf.lbam = SCSI_SENSE_BUFFERSIZE;
2333 qc->tf.lbah = 0;
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002334 }
Jeff Garzika939c962005-10-05 17:09:16 -04002335 qc->nbytes = SCSI_SENSE_BUFFERSIZE;
2336
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002337 qc->complete_fn = atapi_sense_complete;
Jeff Garzika939c962005-10-05 17:09:16 -04002338
Tejun Heo8e0e6942006-03-31 20:41:11 +09002339 ata_qc_issue(qc);
Jeff Garzika939c962005-10-05 17:09:16 -04002340
2341 DPRINTK("EXIT\n");
2342}
2343
Tejun Heo77853bf2006-01-23 13:09:36 +09002344static void atapi_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345{
2346 struct scsi_cmnd *cmd = qc->scsicmd;
Albert Leea22e2eb2005-12-05 15:38:02 +08002347 unsigned int err_mask = qc->err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Jeff Garzika7dac442005-10-30 04:44:42 -05002349 VPRINTK("ENTER, err_mask 0x%X\n", err_mask);
Jeff Garzike12669e2005-10-05 18:39:23 -04002350
Tejun Heo246619d2006-05-15 20:58:16 +09002351 /* handle completion from new EH */
2352 if (unlikely(qc->ap->ops->error_handler &&
2353 (err_mask || qc->flags & ATA_QCFLAG_SENSE_VALID))) {
2354
2355 if (!(qc->flags & ATA_QCFLAG_SENSE_VALID)) {
2356 /* FIXME: not quite right; we don't want the
2357 * translation of taskfile registers into a
2358 * sense descriptors, since that's only
2359 * correct for ATA, not ATAPI
2360 */
Tejun Heo750426a2006-11-14 22:37:35 +09002361 ata_gen_passthru_sense(qc);
Tejun Heo246619d2006-05-15 20:58:16 +09002362 }
2363
Tejun Heo22aac082006-08-08 14:08:59 +09002364 /* SCSI EH automatically locks door if sdev->locked is
2365 * set. Sometimes door lock request continues to
2366 * fail, for example, when no media is present. This
2367 * creates a loop - SCSI EH issues door lock which
2368 * fails and gets invoked again to acquire sense data
2369 * for the failed command.
2370 *
2371 * If door lock fails, always clear sdev->locked to
2372 * avoid this infinite loop.
2373 */
2374 if (qc->cdb[0] == ALLOW_MEDIUM_REMOVAL)
2375 qc->dev->sdev->locked = 0;
2376
Tejun Heo246619d2006-05-15 20:58:16 +09002377 qc->scsicmd->result = SAM_STAT_CHECK_CONDITION;
2378 qc->scsidone(cmd);
2379 ata_qc_free(qc);
2380 return;
2381 }
2382
2383 /* successful completion or old EH failure path */
Jeff Garzika7dac442005-10-30 04:44:42 -05002384 if (unlikely(err_mask & AC_ERR_DEV)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 cmd->result = SAM_STAT_CHECK_CONDITION;
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002386 atapi_request_sense(qc);
Tejun Heo77853bf2006-01-23 13:09:36 +09002387 return;
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002388 } else if (unlikely(err_mask)) {
Jeff Garzika7dac442005-10-30 04:44:42 -05002389 /* FIXME: not quite right; we don't want the
2390 * translation of taskfile registers into
2391 * a sense descriptors, since that's only
2392 * correct for ATA, not ATAPI
2393 */
Tejun Heo750426a2006-11-14 22:37:35 +09002394 ata_gen_passthru_sense(qc);
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002395 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 u8 *scsicmd = cmd->cmnd;
2397
Tony Battersbyfd71da42005-12-21 16:35:44 -05002398 if ((scsicmd[0] == INQUIRY) && ((scsicmd[1] & 0x03) == 0)) {
Jeff Garzikb445c562008-02-29 19:10:51 -05002399 unsigned long flags;
Tejun Heo87340e92008-04-28 17:48:51 +09002400 u8 *buf;
Jeff Garzikb445c562008-02-29 19:10:51 -05002401
Tejun Heo87340e92008-04-28 17:48:51 +09002402 buf = ata_scsi_rbuf_get(cmd, true, &flags);
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002403
2404 /* ATAPI devices typically report zero for their SCSI version,
2405 * and sometimes deviate from the spec WRT response data
2406 * format. If SCSI version is reported as zero like normal,
2407 * then we make the following fixups: 1) Fake MMC-5 version,
2408 * to indicate to the Linux scsi midlayer this is a modern
2409 * device. 2) Ensure response data format / ATAPI information
2410 * are always correct.
2411 */
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002412 if (buf[2] == 0) {
2413 buf[2] = 0x5;
2414 buf[3] = 0x32;
2415 }
2416
Tejun Heo87340e92008-04-28 17:48:51 +09002417 ata_scsi_rbuf_put(cmd, true, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 }
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 cmd->result = SAM_STAT_GOOD;
2421 }
2422
2423 qc->scsidone(cmd);
Tejun Heo77853bf2006-01-23 13:09:36 +09002424 ata_qc_free(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425}
2426/**
2427 * atapi_xlat - Initialize PACKET taskfile
2428 * @qc: command structure to be initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 *
2430 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002431 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 *
2433 * RETURNS:
2434 * Zero on success, non-zero on failure.
2435 */
Tejun Heoad706992006-12-17 10:45:57 +09002436static unsigned int atapi_xlat(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
Tejun Heo542b1442006-12-17 10:45:08 +09002438 struct scsi_cmnd *scmd = qc->scsicmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 struct ata_device *dev = qc->dev;
Tejun Heo542b1442006-12-17 10:45:08 +09002440 int nodata = (scmd->sc_data_direction == DMA_NONE);
Tejun Heo5895ef92008-06-17 12:36:26 +09002441 int using_pio = !nodata && (dev->flags & ATA_DFLAG_PIO);
Alan Cox2db78dd2007-10-02 13:53:04 -07002442 unsigned int nbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Tejun Heo2e5704f2006-12-17 10:46:33 +09002444 memset(qc->cdb, 0, dev->cdb_len);
2445 memcpy(qc->cdb, scmd->cmnd, scmd->cmd_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
2447 qc->complete_fn = atapi_qc_complete;
2448
2449 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
Tejun Heo542b1442006-12-17 10:45:08 +09002450 if (scmd->sc_data_direction == DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 qc->tf.flags |= ATA_TFLAG_WRITE;
2452 DPRINTK("direction: write\n");
2453 }
2454
2455 qc->tf.command = ATA_CMD_PACKET;
Tejun Heoaacda372008-03-18 17:47:43 +09002456 ata_qc_set_pc_nbytes(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Tejun Heoe00f1ff2007-06-27 02:47:35 +09002458 /* check whether ATAPI DMA is safe */
Tejun Heo5895ef92008-06-17 12:36:26 +09002459 if (!nodata && !using_pio && atapi_check_dma(qc))
Tejun Heoe00f1ff2007-06-27 02:47:35 +09002460 using_pio = 1;
2461
Tejun Heoe1902222007-11-26 20:58:02 +09002462 /* Some controller variants snoop this value for Packet
2463 * transfers to do state machine and FIFO management. Thus we
2464 * want to set it properly, and for DMA where it is
2465 * effectively meaningless.
2466 */
Tejun Heoaacda372008-03-18 17:47:43 +09002467 nbytes = min(ata_qc_raw_nbytes(qc), (unsigned int)63 * 1024);
Alan Cox2db78dd2007-10-02 13:53:04 -07002468
Tejun Heoe1902222007-11-26 20:58:02 +09002469 /* Most ATAPI devices which honor transfer chunk size don't
2470 * behave according to the spec when odd chunk size which
2471 * matches the transfer length is specified. If the number of
2472 * bytes to transfer is 2n+1. According to the spec, what
2473 * should happen is to indicate that 2n+1 is going to be
2474 * transferred and transfer 2n+2 bytes where the last byte is
2475 * padding.
2476 *
2477 * In practice, this doesn't happen. ATAPI devices first
2478 * indicate and transfer 2n bytes and then indicate and
2479 * transfer 2 bytes where the last byte is padding.
2480 *
2481 * This inconsistency confuses several controllers which
2482 * perform PIO using DMA such as Intel AHCIs and sil3124/32.
2483 * These controllers use actual number of transferred bytes to
2484 * update DMA poitner and transfer of 4n+2 bytes make those
2485 * controller push DMA pointer by 4n+4 bytes because SATA data
2486 * FISes are aligned to 4 bytes. This causes data corruption
2487 * and buffer overrun.
2488 *
2489 * Always setting nbytes to even number solves this problem
2490 * because then ATAPI devices don't have to split data at 2n
2491 * boundaries.
2492 */
2493 if (nbytes & 0x1)
2494 nbytes++;
2495
Alan Cox2db78dd2007-10-02 13:53:04 -07002496 qc->tf.lbam = (nbytes & 0xFF);
2497 qc->tf.lbah = (nbytes >> 8);
2498
Tejun Heo5895ef92008-06-17 12:36:26 +09002499 if (nodata)
2500 qc->tf.protocol = ATAPI_PROT_NODATA;
2501 else if (using_pio)
2502 qc->tf.protocol = ATAPI_PROT_PIO;
2503 else {
Tejun Heoe00f1ff2007-06-27 02:47:35 +09002504 /* DMA data xfer */
Tejun Heo0dc36882007-12-18 16:34:43 -05002505 qc->tf.protocol = ATAPI_PROT_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 qc->tf.feature |= ATAPI_PKT_DMA;
2507
Tejun Heo91163002008-02-21 13:25:50 +09002508 if ((dev->flags & ATA_DFLAG_DMADIR) &&
2509 (scmd->sc_data_direction != DMA_TO_DEVICE))
Albert Lee95de7192006-04-04 10:57:18 +08002510 /* some SATA bridges need us to indicate data xfer direction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 qc->tf.feature |= ATAPI_DMADIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 }
2513
Alan Cox2db78dd2007-10-02 13:53:04 -07002514
2515 /* FIXME: We need to translate 0x05 READ_BLOCK_LIMITS to a MODE_SENSE
2516 as ATAPI tape drives don't get this right otherwise */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 return 0;
2518}
2519
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002520static struct ata_device *ata_find_dev(struct ata_port *ap, int devno)
Tejun Heoab5b3a52006-05-31 18:27:34 +09002521{
Tejun Heo071f44b2008-04-07 22:47:22 +09002522 if (!sata_pmp_attached(ap)) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09002523 if (likely(devno < ata_link_max_devices(&ap->link)))
2524 return &ap->link.device[devno];
2525 } else {
2526 if (likely(devno < ap->nr_pmp_links))
2527 return &ap->pmp_link[devno].device[0];
2528 }
2529
Tejun Heoab5b3a52006-05-31 18:27:34 +09002530 return NULL;
2531}
2532
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002533static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap,
2534 const struct scsi_device *scsidev)
Tejun Heoab5b3a52006-05-31 18:27:34 +09002535{
Tejun Heo41bda9c2007-08-06 18:36:24 +09002536 int devno;
Tejun Heoab5b3a52006-05-31 18:27:34 +09002537
Tejun Heo41bda9c2007-08-06 18:36:24 +09002538 /* skip commands not addressed to targets we simulate */
Tejun Heo071f44b2008-04-07 22:47:22 +09002539 if (!sata_pmp_attached(ap)) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09002540 if (unlikely(scsidev->channel || scsidev->lun))
2541 return NULL;
2542 devno = scsidev->id;
2543 } else {
2544 if (unlikely(scsidev->id || scsidev->lun))
2545 return NULL;
2546 devno = scsidev->channel;
2547 }
2548
2549 return ata_find_dev(ap, devno);
Tejun Heoab5b3a52006-05-31 18:27:34 +09002550}
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552/**
Brian King99ba9e02006-06-12 14:54:17 -05002553 * ata_scsi_dev_enabled - determine if device is enabled
2554 * @dev: ATA device
2555 *
2556 * Determine if commands should be sent to the specified device.
2557 *
2558 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002559 * spin_lock_irqsave(host lock)
Brian King99ba9e02006-06-12 14:54:17 -05002560 *
2561 * RETURNS:
2562 * 0 if commands are not allowed / 1 if commands are allowed
2563 */
2564
2565static int ata_scsi_dev_enabled(struct ata_device *dev)
2566{
2567 if (unlikely(!ata_dev_enabled(dev)))
2568 return 0;
2569
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002570 if (!atapi_enabled || (dev->link->ap->flags & ATA_FLAG_NO_ATAPI)) {
Brian King99ba9e02006-06-12 14:54:17 -05002571 if (unlikely(dev->class == ATA_DEV_ATAPI)) {
2572 ata_dev_printk(dev, KERN_WARNING,
2573 "WARNING: ATAPI is %s, device ignored.\n",
2574 atapi_enabled ? "not supported with this driver" : "disabled");
2575 return 0;
2576 }
2577 }
2578
2579 return 1;
2580}
2581
2582/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 * ata_scsi_find_dev - lookup ata_device from scsi_cmnd
2584 * @ap: ATA port to which the device is attached
2585 * @scsidev: SCSI device from which we derive the ATA device
2586 *
2587 * Given various information provided in struct scsi_cmnd,
2588 * map that onto an ATA bus, and using that mapping
2589 * determine which ata_device is associated with the
2590 * SCSI command to be sent.
2591 *
2592 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002593 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 *
2595 * RETURNS:
2596 * Associated ATA device, or %NULL if not found.
2597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598static struct ata_device *
Jeff Garzik057ace52005-10-22 14:27:05 -04002599ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
Tejun Heoab5b3a52006-05-31 18:27:34 +09002601 struct ata_device *dev = __ata_scsi_find_dev(ap, scsidev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Brian King99ba9e02006-06-12 14:54:17 -05002603 if (unlikely(!dev || !ata_scsi_dev_enabled(dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 return NULL;
2605
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 return dev;
2607}
2608
Jeff Garzikb0955182005-05-12 15:45:22 -04002609/*
2610 * ata_scsi_map_proto - Map pass-thru protocol value to taskfile value.
2611 * @byte1: Byte 1 from pass-thru CDB.
2612 *
2613 * RETURNS:
2614 * ATA_PROT_UNKNOWN if mapping failed/unimplemented, protocol otherwise.
2615 */
2616static u8
2617ata_scsi_map_proto(u8 byte1)
2618{
2619 switch((byte1 & 0x1e) >> 1) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002620 case 3: /* Non-data */
2621 return ATA_PROT_NODATA;
Jeff Garzikb0955182005-05-12 15:45:22 -04002622
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002623 case 6: /* DMA */
2624 case 10: /* UDMA Data-in */
2625 case 11: /* UDMA Data-Out */
2626 return ATA_PROT_DMA;
Jeff Garzikb0955182005-05-12 15:45:22 -04002627
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002628 case 4: /* PIO Data-in */
2629 case 5: /* PIO Data-out */
2630 return ATA_PROT_PIO;
Jeff Garzikb0955182005-05-12 15:45:22 -04002631
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002632 case 0: /* Hard Reset */
2633 case 1: /* SRST */
2634 case 8: /* Device Diagnostic */
2635 case 9: /* Device Reset */
2636 case 7: /* DMA Queued */
2637 case 12: /* FPDMA */
2638 case 15: /* Return Response Info */
2639 default: /* Reserved */
2640 break;
Jeff Garzikb0955182005-05-12 15:45:22 -04002641 }
2642
2643 return ATA_PROT_UNKNOWN;
2644}
2645
2646/**
2647 * ata_scsi_pass_thru - convert ATA pass-thru CDB to taskfile
2648 * @qc: command structure to be initialized
Jeff Garzikb0955182005-05-12 15:45:22 -04002649 *
2650 * Handles either 12 or 16-byte versions of the CDB.
2651 *
2652 * RETURNS:
2653 * Zero on success, non-zero on failure.
2654 */
Tejun Heoad706992006-12-17 10:45:57 +09002655static unsigned int ata_scsi_pass_thru(struct ata_queued_cmd *qc)
Jeff Garzikb0955182005-05-12 15:45:22 -04002656{
2657 struct ata_taskfile *tf = &(qc->tf);
Tejun Heo542b1442006-12-17 10:45:08 +09002658 struct scsi_cmnd *scmd = qc->scsicmd;
Alan Coxf79d4092006-05-22 16:55:11 +01002659 struct ata_device *dev = qc->dev;
Tejun Heoad706992006-12-17 10:45:57 +09002660 const u8 *cdb = scmd->cmnd;
Jeff Garzikb0955182005-05-12 15:45:22 -04002661
Tejun Heo542b1442006-12-17 10:45:08 +09002662 if ((tf->protocol = ata_scsi_map_proto(cdb[1])) == ATA_PROT_UNKNOWN)
Tejun Heo9a405252005-12-02 11:49:11 +09002663 goto invalid_fld;
Jeff Garzik8190bdb2006-05-24 01:53:39 -04002664
Alan Coxae8d4ee2007-11-04 22:05:49 -05002665 /*
2666 * Filter TPM commands by default. These provide an
2667 * essentially uncontrolled encrypted "back door" between
2668 * applications and the disk. Set libata.allow_tpm=1 if you
2669 * have a real reason for wanting to use them. This ensures
2670 * that installed software cannot easily mess stuff up without
2671 * user intent. DVR type users will probably ship with this enabled
2672 * for movie content management.
2673 *
2674 * Note that for ATA8 we can issue a DCS change and DCS freeze lock
2675 * for this and should do in future but that it is not sufficient as
2676 * DCS is an optional feature set. Thus we also do the software filter
2677 * so that we comply with the TC consortium stated goal that the user
2678 * can turn off TC features of their system.
2679 */
2680 if (tf->command >= 0x5C && tf->command <= 0x5F && !libata_allow_tpm)
2681 goto invalid_fld;
2682
Alan Coxf79d4092006-05-22 16:55:11 +01002683 /* We may not issue DMA commands if no DMA mode is set */
2684 if (tf->protocol == ATA_PROT_DMA && dev->dma_mode == 0)
2685 goto invalid_fld;
Jeff Garzikb0955182005-05-12 15:45:22 -04002686
2687 /*
2688 * 12 and 16 byte CDBs use different offsets to
2689 * provide the various register values.
2690 */
Tejun Heo542b1442006-12-17 10:45:08 +09002691 if (cdb[0] == ATA_16) {
Jeff Garzikb0955182005-05-12 15:45:22 -04002692 /*
2693 * 16-byte CDB - may contain extended commands.
2694 *
2695 * If that is the case, copy the upper byte register values.
2696 */
Tejun Heo542b1442006-12-17 10:45:08 +09002697 if (cdb[1] & 0x01) {
2698 tf->hob_feature = cdb[3];
2699 tf->hob_nsect = cdb[5];
2700 tf->hob_lbal = cdb[7];
2701 tf->hob_lbam = cdb[9];
2702 tf->hob_lbah = cdb[11];
Jeff Garzikb0955182005-05-12 15:45:22 -04002703 tf->flags |= ATA_TFLAG_LBA48;
2704 } else
2705 tf->flags &= ~ATA_TFLAG_LBA48;
2706
2707 /*
2708 * Always copy low byte, device and command registers.
2709 */
Tejun Heo542b1442006-12-17 10:45:08 +09002710 tf->feature = cdb[4];
2711 tf->nsect = cdb[6];
2712 tf->lbal = cdb[8];
2713 tf->lbam = cdb[10];
2714 tf->lbah = cdb[12];
2715 tf->device = cdb[13];
2716 tf->command = cdb[14];
Jeff Garzikb0955182005-05-12 15:45:22 -04002717 } else {
2718 /*
2719 * 12-byte CDB - incapable of extended commands.
2720 */
2721 tf->flags &= ~ATA_TFLAG_LBA48;
2722
Tejun Heo542b1442006-12-17 10:45:08 +09002723 tf->feature = cdb[3];
2724 tf->nsect = cdb[4];
2725 tf->lbal = cdb[5];
2726 tf->lbam = cdb[6];
2727 tf->lbah = cdb[7];
2728 tf->device = cdb[8];
2729 tf->command = cdb[9];
Jeff Garzikb0955182005-05-12 15:45:22 -04002730 }
Albert Leefa4453c2007-06-07 15:52:07 +08002731
2732 /* enforce correct master/slave bit */
2733 tf->device = dev->devno ?
2734 tf->device | ATA_DEV1 : tf->device & ~ATA_DEV1;
Jeff Garzikb0955182005-05-12 15:45:22 -04002735
Albert Lee1dce5892007-06-07 15:49:22 +08002736 /* sanity check for pio multi commands */
2737 if ((cdb[1] & 0xe0) && !is_multi_taskfile(tf))
2738 goto invalid_fld;
2739
2740 if (is_multi_taskfile(tf)) {
2741 unsigned int multi_count = 1 << (cdb[1] >> 5);
2742
2743 /* compare the passed through multi_count
2744 * with the cached multi_count of libata
2745 */
2746 if (multi_count != dev->multi_count)
2747 ata_dev_printk(dev, KERN_WARNING,
2748 "invalid multi_count %u ignored\n",
2749 multi_count);
Alan Coxd26fc952007-07-06 19:13:52 -04002750 }
Albert Lee1dce5892007-06-07 15:49:22 +08002751
Mark Lord5a5dbd12007-03-16 10:22:26 -04002752 /* READ/WRITE LONG use a non-standard sect_size */
2753 qc->sect_size = ATA_SECT_SIZE;
2754 switch (tf->command) {
2755 case ATA_CMD_READ_LONG:
2756 case ATA_CMD_READ_LONG_ONCE:
2757 case ATA_CMD_WRITE_LONG:
2758 case ATA_CMD_WRITE_LONG_ONCE:
2759 if (tf->protocol != ATA_PROT_PIO || tf->nsect != 1)
2760 goto invalid_fld;
Boaz Harrosh71201652007-09-18 17:48:50 +02002761 qc->sect_size = scsi_bufflen(scmd);
Mark Lord5a5dbd12007-03-16 10:22:26 -04002762 }
2763
Jeff Garzikb0955182005-05-12 15:45:22 -04002764 /*
2765 * Filter SET_FEATURES - XFER MODE command -- otherwise,
2766 * SET_FEATURES - XFER MODE must be preceded/succeeded
2767 * by an update to hardware-specific registers for each
2768 * controller (i.e. the reason for ->set_piomode(),
2769 * ->set_dmamode(), and ->post_set_mode() hooks).
2770 */
2771 if ((tf->command == ATA_CMD_SET_FEATURES)
2772 && (tf->feature == SETFEATURES_XFER))
Tejun Heo9a405252005-12-02 11:49:11 +09002773 goto invalid_fld;
Jeff Garzikb0955182005-05-12 15:45:22 -04002774
2775 /*
2776 * Set flags so that all registers will be written,
2777 * and pass on write indication (used for PIO/DMA
2778 * setup.)
2779 */
2780 tf->flags |= (ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE);
2781
Tejun Heo542b1442006-12-17 10:45:08 +09002782 if (scmd->sc_data_direction == DMA_TO_DEVICE)
Jeff Garzikb0955182005-05-12 15:45:22 -04002783 tf->flags |= ATA_TFLAG_WRITE;
2784
2785 /*
2786 * Set transfer length.
2787 *
2788 * TODO: find out if we need to do more here to
2789 * cover scatter/gather case.
2790 */
Tejun Heoaacda372008-03-18 17:47:43 +09002791 ata_qc_set_pc_nbytes(qc);
Jeff Garzikb0955182005-05-12 15:45:22 -04002792
Tejun Heoe027bd32007-10-26 16:19:26 +09002793 /* request result TF and be quiet about device error */
2794 qc->flags |= ATA_QCFLAG_RESULT_TF | ATA_QCFLAG_QUIET;
Tejun Heoe61e0672006-05-15 20:57:40 +09002795
Jeff Garzikb0955182005-05-12 15:45:22 -04002796 return 0;
Tejun Heo9a405252005-12-02 11:49:11 +09002797
2798 invalid_fld:
Tejun Heo542b1442006-12-17 10:45:08 +09002799 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x00);
Tejun Heo9a405252005-12-02 11:49:11 +09002800 /* "Invalid field in cdb" */
2801 return 1;
Jeff Garzikb0955182005-05-12 15:45:22 -04002802}
2803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804/**
2805 * ata_get_xlat_func - check if SCSI to ATA translation is possible
2806 * @dev: ATA device
2807 * @cmd: SCSI command opcode to consider
2808 *
2809 * Look up the SCSI command given, and determine whether the
2810 * SCSI command is to be translated or simulated.
2811 *
2812 * RETURNS:
2813 * Pointer to translation function if possible, %NULL if not.
2814 */
2815
2816static inline ata_xlat_func_t ata_get_xlat_func(struct ata_device *dev, u8 cmd)
2817{
2818 switch (cmd) {
2819 case READ_6:
2820 case READ_10:
2821 case READ_16:
2822
2823 case WRITE_6:
2824 case WRITE_10:
2825 case WRITE_16:
2826 return ata_scsi_rw_xlat;
2827
2828 case SYNCHRONIZE_CACHE:
2829 if (ata_try_flush_cache(dev))
2830 return ata_scsi_flush_xlat;
2831 break;
2832
2833 case VERIFY:
2834 case VERIFY_16:
2835 return ata_scsi_verify_xlat;
Jeff Garzikb0955182005-05-12 15:45:22 -04002836
2837 case ATA_12:
2838 case ATA_16:
2839 return ata_scsi_pass_thru;
Jeff Garzikda613962005-08-29 19:01:43 -04002840
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04002841 case START_STOP:
2842 return ata_scsi_start_stop_xlat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
2844
2845 return NULL;
2846}
2847
2848/**
2849 * ata_scsi_dump_cdb - dump SCSI command contents to dmesg
2850 * @ap: ATA port to which the command was being sent
2851 * @cmd: SCSI command to dump
2852 *
2853 * Prints the contents of a SCSI command via printk().
2854 */
2855
2856static inline void ata_scsi_dump_cdb(struct ata_port *ap,
2857 struct scsi_cmnd *cmd)
2858{
2859#ifdef ATA_DEBUG
2860 struct scsi_device *scsidev = cmd->device;
2861 u8 *scsicmd = cmd->cmnd;
2862
2863 DPRINTK("CDB (%u:%d,%d,%d) %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09002864 ap->print_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 scsidev->channel, scsidev->id, scsidev->lun,
2866 scsicmd[0], scsicmd[1], scsicmd[2], scsicmd[3],
2867 scsicmd[4], scsicmd[5], scsicmd[6], scsicmd[7],
2868 scsicmd[8]);
2869#endif
2870}
2871
Tejun Heo542b1442006-12-17 10:45:08 +09002872static inline int __ata_scsi_queuecmd(struct scsi_cmnd *scmd,
Tejun Heo2115ea92006-05-15 21:03:39 +09002873 void (*done)(struct scsi_cmnd *),
2874 struct ata_device *dev)
Brian Kingeb3f0f92006-03-23 17:30:02 -06002875{
Mark Lordbaf4fdf2007-08-08 01:08:45 +09002876 u8 scsi_op = scmd->cmnd[0];
2877 ata_xlat_func_t xlat_func;
Tejun Heo2115ea92006-05-15 21:03:39 +09002878 int rc = 0;
2879
Mark Lordbaf4fdf2007-08-08 01:08:45 +09002880 if (dev->class == ATA_DEV_ATA) {
2881 if (unlikely(!scmd->cmd_len || scmd->cmd_len > dev->cdb_len))
2882 goto bad_cdb_len;
2883
2884 xlat_func = ata_get_xlat_func(dev, scsi_op);
2885 } else {
2886 if (unlikely(!scmd->cmd_len))
2887 goto bad_cdb_len;
2888
2889 xlat_func = NULL;
2890 if (likely((scsi_op != ATA_16) || !atapi_passthru16)) {
2891 /* relay SCSI command to ATAPI device */
Mark Lord607126c2007-11-15 13:13:59 +09002892 int len = COMMAND_SIZE(scsi_op);
2893 if (unlikely(len > scmd->cmd_len || len > dev->cdb_len))
Mark Lordbaf4fdf2007-08-08 01:08:45 +09002894 goto bad_cdb_len;
2895
2896 xlat_func = atapi_xlat;
2897 } else {
2898 /* ATA_16 passthru, treat as an ATA command */
2899 if (unlikely(scmd->cmd_len > 16))
2900 goto bad_cdb_len;
2901
2902 xlat_func = ata_get_xlat_func(dev, scsi_op);
2903 }
Tejun Heo2e5704f2006-12-17 10:46:33 +09002904 }
2905
Mark Lordbaf4fdf2007-08-08 01:08:45 +09002906 if (xlat_func)
2907 rc = ata_scsi_translate(dev, scmd, done, xlat_func);
2908 else
2909 ata_scsi_simulate(dev, scmd, done);
Tejun Heo2115ea92006-05-15 21:03:39 +09002910
2911 return rc;
Mark Lordbaf4fdf2007-08-08 01:08:45 +09002912
2913 bad_cdb_len:
2914 DPRINTK("bad CDB len=%u, scsi_op=0x%02x, max=%u\n",
2915 scmd->cmd_len, scsi_op, dev->cdb_len);
2916 scmd->result = DID_ERROR << 16;
2917 done(scmd);
2918 return 0;
Brian Kingeb3f0f92006-03-23 17:30:02 -06002919}
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921/**
2922 * ata_scsi_queuecmd - Issue SCSI cdb to libata-managed device
2923 * @cmd: SCSI command to be sent
2924 * @done: Completion function, called when command is complete
2925 *
2926 * In some cases, this function translates SCSI commands into
2927 * ATA taskfiles, and queues the taskfiles to be sent to
2928 * hardware. In other cases, this function simulates a
2929 * SCSI device by evaluating and responding to certain
2930 * SCSI commands. This creates the overall effect of
2931 * ATA and ATAPI devices appearing as SCSI devices.
2932 *
2933 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002934 * Releases scsi-layer-held lock, and obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 *
2936 * RETURNS:
Tejun Heo2115ea92006-05-15 21:03:39 +09002937 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
2938 * 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
2941{
2942 struct ata_port *ap;
2943 struct ata_device *dev;
2944 struct scsi_device *scsidev = cmd->device;
Jeff Garzik005a5a02005-10-30 23:31:48 -05002945 struct Scsi_Host *shost = scsidev->host;
Tejun Heo2115ea92006-05-15 21:03:39 +09002946 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Jeff Garzik35bb94b2006-04-11 13:12:34 -04002948 ap = ata_shost_to_port(shost);
Jeff Garzik005a5a02005-10-30 23:31:48 -05002949
2950 spin_unlock(shost->host_lock);
Jeff Garzikba6a1302006-06-22 23:46:10 -04002951 spin_lock(ap->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 ata_scsi_dump_cdb(ap, cmd);
2954
2955 dev = ata_scsi_find_dev(ap, scsidev);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002956 if (likely(dev))
Tejun Heo2115ea92006-05-15 21:03:39 +09002957 rc = __ata_scsi_queuecmd(cmd, done, dev);
Brian Kingeb3f0f92006-03-23 17:30:02 -06002958 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 cmd->result = (DID_BAD_TARGET << 16);
2960 done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 }
2962
Jeff Garzikba6a1302006-06-22 23:46:10 -04002963 spin_unlock(ap->lock);
Jeff Garzik005a5a02005-10-30 23:31:48 -05002964 spin_lock(shost->host_lock);
Tejun Heo2115ea92006-05-15 21:03:39 +09002965 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966}
2967
2968/**
2969 * ata_scsi_simulate - simulate SCSI command on ATA device
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002970 * @dev: the target device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 * @cmd: SCSI command being sent to device.
2972 * @done: SCSI command completion function.
2973 *
2974 * Interprets and directly executes a select list of SCSI commands
2975 * that can be handled internally.
2976 *
2977 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002978 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 */
2980
Tejun Heo3373efd2006-05-15 20:57:53 +09002981void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 void (*done)(struct scsi_cmnd *))
2983{
2984 struct ata_scsi_args args;
Jeff Garzik057ace52005-10-22 14:27:05 -04002985 const u8 *scsicmd = cmd->cmnd;
Jeff Garzik45394142007-09-21 06:23:42 -04002986 u8 tmp8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002988 args.dev = dev;
2989 args.id = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 args.cmd = cmd;
2991 args.done = done;
2992
2993 switch(scsicmd[0]) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002994 /* TODO: worth improving? */
2995 case FORMAT_UNIT:
2996 ata_scsi_invalid_field(cmd, done);
2997 break;
2998
2999 case INQUIRY:
3000 if (scsicmd[1] & 2) /* is CmdDt set? */
Jeff Garzik00bd0202007-09-21 07:26:08 -04003001 ata_scsi_invalid_field(cmd, done);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003002 else if ((scsicmd[1] & 1) == 0) /* is EVPD clear? */
3003 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_std);
3004 else switch (scsicmd[2]) {
3005 case 0x00:
3006 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 break;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003008 case 0x80:
3009 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 break;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003011 case 0x83:
3012 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_83);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 break;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003014 case 0x89:
3015 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_89);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 break;
Matthew Wilcox1e9dbc92008-06-19 13:13:38 -06003017 case 0xb1:
3018 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_b1);
3019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 default:
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003021 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 break;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003023 }
3024 break;
3025
3026 case MODE_SENSE:
3027 case MODE_SENSE_10:
3028 ata_scsi_rbuf_fill(&args, ata_scsiop_mode_sense);
3029 break;
3030
3031 case MODE_SELECT: /* unconditionally return */
3032 case MODE_SELECT_10: /* bad-field-in-cdb */
3033 ata_scsi_invalid_field(cmd, done);
3034 break;
3035
3036 case READ_CAPACITY:
3037 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
3038 break;
3039
3040 case SERVICE_ACTION_IN:
3041 if ((scsicmd[1] & 0x1f) == SAI_READ_CAPACITY_16)
3042 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
3043 else
3044 ata_scsi_invalid_field(cmd, done);
3045 break;
3046
3047 case REPORT_LUNS:
3048 ata_scsi_rbuf_fill(&args, ata_scsiop_report_luns);
3049 break;
3050
3051 case REQUEST_SENSE:
3052 ata_scsi_set_sense(cmd, 0, 0, 0);
3053 cmd->result = (DRIVER_SENSE << 24);
3054 done(cmd);
3055 break;
3056
3057 /* if we reach this, then writeback caching is disabled,
3058 * turning this into a no-op.
3059 */
3060 case SYNCHRONIZE_CACHE:
3061 /* fall through */
3062
3063 /* no-op's, complete with success */
3064 case REZERO_UNIT:
3065 case SEEK_6:
3066 case SEEK_10:
3067 case TEST_UNIT_READY:
3068 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
3069 break;
3070
3071 case SEND_DIAGNOSTIC:
3072 tmp8 = scsicmd[1] & ~(1 << 3);
3073 if ((tmp8 == 0x4) && (!scsicmd[3]) && (!scsicmd[4]))
3074 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
3075 else
3076 ata_scsi_invalid_field(cmd, done);
3077 break;
3078
3079 /* all other commands */
3080 default:
3081 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x20, 0x0);
3082 /* "Invalid command operation code" */
3083 done(cmd);
3084 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 }
3086}
3087
Tejun Heof3187192007-04-17 23:44:07 +09003088int ata_scsi_add_hosts(struct ata_host *host, struct scsi_host_template *sht)
3089{
3090 int i, rc;
3091
3092 for (i = 0; i < host->n_ports; i++) {
3093 struct ata_port *ap = host->ports[i];
3094 struct Scsi_Host *shost;
3095
3096 rc = -ENOMEM;
3097 shost = scsi_host_alloc(sht, sizeof(struct ata_port *));
3098 if (!shost)
3099 goto err_alloc;
3100
3101 *(struct ata_port **)&shost->hostdata[0] = ap;
3102 ap->scsi_host = shost;
3103
3104 shost->transportt = &ata_scsi_transport_template;
3105 shost->unique_id = ap->print_id;
3106 shost->max_id = 16;
3107 shost->max_lun = 1;
3108 shost->max_channel = 1;
3109 shost->max_cmd_len = 16;
3110
Tejun Heo31cc23b2007-09-23 13:14:12 +09003111 /* Schedule policy is determined by ->qc_defer()
3112 * callback and it needs to see every deferred qc.
3113 * Set host_blocked to 1 to prevent SCSI midlayer from
3114 * automatically deferring requests.
3115 */
3116 shost->max_host_blocked = 1;
3117
Tejun Heof3187192007-04-17 23:44:07 +09003118 rc = scsi_add_host(ap->scsi_host, ap->host->dev);
3119 if (rc)
3120 goto err_add;
3121 }
3122
3123 return 0;
3124
3125 err_add:
3126 scsi_host_put(host->ports[i]->scsi_host);
3127 err_alloc:
3128 while (--i >= 0) {
3129 struct Scsi_Host *shost = host->ports[i]->scsi_host;
3130
3131 scsi_remove_host(shost);
3132 scsi_host_put(shost);
3133 }
3134 return rc;
3135}
3136
Tejun Heo1ae46312007-07-16 14:29:40 +09003137void ata_scsi_scan_host(struct ata_port *ap, int sync)
Jeff Garzik644dd0c2005-10-03 15:55:19 -04003138{
Tejun Heo1ae46312007-07-16 14:29:40 +09003139 int tries = 5;
3140 struct ata_device *last_failed_dev = NULL;
Tejun Heo41bda9c2007-08-06 18:36:24 +09003141 struct ata_link *link;
Tejun Heo1ae46312007-07-16 14:29:40 +09003142 struct ata_device *dev;
Jeff Garzik644dd0c2005-10-03 15:55:19 -04003143
Tejun Heo198e0fe2006-04-02 18:51:52 +09003144 if (ap->flags & ATA_FLAG_DISABLED)
Jeff Garzik644dd0c2005-10-03 15:55:19 -04003145 return;
3146
Tejun Heo1ae46312007-07-16 14:29:40 +09003147 repeat:
Tejun Heo41bda9c2007-08-06 18:36:24 +09003148 ata_port_for_each_link(link, ap) {
3149 ata_link_for_each_dev(dev, link) {
3150 struct scsi_device *sdev;
3151 int channel = 0, id = 0;
Jeff Garzik3f19ee82005-10-03 21:36:41 -04003152
Tejun Heo41bda9c2007-08-06 18:36:24 +09003153 if (!ata_dev_enabled(dev) || dev->sdev)
3154 continue;
Tejun Heo3edebac2006-05-31 18:27:40 +09003155
Tejun Heo41bda9c2007-08-06 18:36:24 +09003156 if (ata_is_host_link(link))
3157 id = dev->devno;
3158 else
3159 channel = link->pmp;
3160
3161 sdev = __scsi_add_device(ap->scsi_host, channel, id, 0,
3162 NULL);
3163 if (!IS_ERR(sdev)) {
3164 dev->sdev = sdev;
3165 scsi_device_put(sdev);
3166 }
Tejun Heo3edebac2006-05-31 18:27:40 +09003167 }
Jeff Garzik3f19ee82005-10-03 21:36:41 -04003168 }
Tejun Heo1ae46312007-07-16 14:29:40 +09003169
3170 /* If we scanned while EH was in progress or allocation
3171 * failure occurred, scan would have failed silently. Check
3172 * whether all devices are attached.
3173 */
Tejun Heo41bda9c2007-08-06 18:36:24 +09003174 ata_port_for_each_link(link, ap) {
3175 ata_link_for_each_dev(dev, link) {
3176 if (ata_dev_enabled(dev) && !dev->sdev)
3177 goto exit_loop;
3178 }
Tejun Heo1ae46312007-07-16 14:29:40 +09003179 }
Tejun Heo41bda9c2007-08-06 18:36:24 +09003180 exit_loop:
3181 if (!link)
Tejun Heo1ae46312007-07-16 14:29:40 +09003182 return;
3183
3184 /* we're missing some SCSI devices */
3185 if (sync) {
3186 /* If caller requested synchrnous scan && we've made
3187 * any progress, sleep briefly and repeat.
3188 */
3189 if (dev != last_failed_dev) {
3190 msleep(100);
3191 last_failed_dev = dev;
3192 goto repeat;
3193 }
3194
3195 /* We might be failing to detect boot device, give it
3196 * a few more chances.
3197 */
3198 if (--tries) {
3199 msleep(100);
3200 goto repeat;
3201 }
3202
3203 ata_port_printk(ap, KERN_ERR, "WARNING: synchronous SCSI scan "
3204 "failed without making any progress,\n"
3205 " switching to async\n");
3206 }
3207
3208 queue_delayed_work(ata_aux_wq, &ap->hotplug_task,
3209 round_jiffies_relative(HZ));
Jeff Garzik644dd0c2005-10-03 15:55:19 -04003210}
Tejun Heo0ea035a2006-05-31 18:28:01 +09003211
3212/**
3213 * ata_scsi_offline_dev - offline attached SCSI device
3214 * @dev: ATA device to offline attached SCSI device for
3215 *
3216 * This function is called from ata_eh_hotplug() and responsible
3217 * for taking the SCSI device attached to @dev offline. This
Jeff Garzikcca39742006-08-24 03:19:22 -04003218 * function is called with host lock which protects dev->sdev
Tejun Heo0ea035a2006-05-31 18:28:01 +09003219 * against clearing.
3220 *
3221 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003222 * spin_lock_irqsave(host lock)
Tejun Heo0ea035a2006-05-31 18:28:01 +09003223 *
3224 * RETURNS:
3225 * 1 if attached SCSI device exists, 0 otherwise.
3226 */
3227int ata_scsi_offline_dev(struct ata_device *dev)
3228{
3229 if (dev->sdev) {
3230 scsi_device_set_state(dev->sdev, SDEV_OFFLINE);
3231 return 1;
3232 }
3233 return 0;
3234}
Tejun Heo580b2102006-05-31 18:28:05 +09003235
3236/**
3237 * ata_scsi_remove_dev - remove attached SCSI device
3238 * @dev: ATA device to remove attached SCSI device for
3239 *
3240 * This function is called from ata_eh_scsi_hotplug() and
3241 * responsible for removing the SCSI device attached to @dev.
3242 *
3243 * LOCKING:
3244 * Kernel thread context (may sleep).
3245 */
3246static void ata_scsi_remove_dev(struct ata_device *dev)
3247{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003248 struct ata_port *ap = dev->link->ap;
Tejun Heo580b2102006-05-31 18:28:05 +09003249 struct scsi_device *sdev;
3250 unsigned long flags;
3251
3252 /* Alas, we need to grab scan_mutex to ensure SCSI device
3253 * state doesn't change underneath us and thus
3254 * scsi_device_get() always succeeds. The mutex locking can
3255 * be removed if there is __scsi_device_get() interface which
3256 * increments reference counts regardless of device state.
3257 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003258 mutex_lock(&ap->scsi_host->scan_mutex);
Jeff Garzikba6a1302006-06-22 23:46:10 -04003259 spin_lock_irqsave(ap->lock, flags);
Tejun Heo580b2102006-05-31 18:28:05 +09003260
Jeff Garzikcca39742006-08-24 03:19:22 -04003261 /* clearing dev->sdev is protected by host lock */
Tejun Heo580b2102006-05-31 18:28:05 +09003262 sdev = dev->sdev;
3263 dev->sdev = NULL;
3264
3265 if (sdev) {
3266 /* If user initiated unplug races with us, sdev can go
Jeff Garzikcca39742006-08-24 03:19:22 -04003267 * away underneath us after the host lock and
Tejun Heo580b2102006-05-31 18:28:05 +09003268 * scan_mutex are released. Hold onto it.
3269 */
3270 if (scsi_device_get(sdev) == 0) {
3271 /* The following ensures the attached sdev is
3272 * offline on return from ata_scsi_offline_dev()
3273 * regardless it wins or loses the race
3274 * against this function.
3275 */
3276 scsi_device_set_state(sdev, SDEV_OFFLINE);
3277 } else {
3278 WARN_ON(1);
3279 sdev = NULL;
3280 }
3281 }
3282
Jeff Garzikba6a1302006-06-22 23:46:10 -04003283 spin_unlock_irqrestore(ap->lock, flags);
Jeff Garzikcca39742006-08-24 03:19:22 -04003284 mutex_unlock(&ap->scsi_host->scan_mutex);
Tejun Heo580b2102006-05-31 18:28:05 +09003285
3286 if (sdev) {
3287 ata_dev_printk(dev, KERN_INFO, "detaching (SCSI %s)\n",
3288 sdev->sdev_gendev.bus_id);
3289
3290 scsi_remove_device(sdev);
3291 scsi_device_put(sdev);
3292 }
3293}
3294
Tejun Heo41bda9c2007-08-06 18:36:24 +09003295static void ata_scsi_handle_link_detach(struct ata_link *link)
3296{
3297 struct ata_port *ap = link->ap;
3298 struct ata_device *dev;
3299
3300 ata_link_for_each_dev(dev, link) {
3301 unsigned long flags;
3302
3303 if (!(dev->flags & ATA_DFLAG_DETACHED))
3304 continue;
3305
3306 spin_lock_irqsave(ap->lock, flags);
3307 dev->flags &= ~ATA_DFLAG_DETACHED;
3308 spin_unlock_irqrestore(ap->lock, flags);
3309
3310 ata_scsi_remove_dev(dev);
3311 }
3312}
3313
Tejun Heo580b2102006-05-31 18:28:05 +09003314/**
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003315 * ata_scsi_media_change_notify - send media change event
Randy Dunlapc5d0e6a2007-10-15 17:29:46 -07003316 * @dev: Pointer to the disk device with media change event
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003317 *
3318 * Tell the block layer to send a media change notification
3319 * event.
3320 *
3321 * LOCKING:
Tejun Heo854c73a2007-09-23 13:14:11 +09003322 * spin_lock_irqsave(host lock)
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003323 */
Tejun Heo854c73a2007-09-23 13:14:11 +09003324void ata_scsi_media_change_notify(struct ata_device *dev)
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003325{
Tejun Heo854c73a2007-09-23 13:14:11 +09003326 if (dev->sdev)
Jeff Garzikf26792d2007-10-29 17:18:39 -04003327 sdev_evt_send_simple(dev->sdev, SDEV_EVT_MEDIA_CHANGE,
3328 GFP_ATOMIC);
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003329}
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003330
3331/**
Tejun Heo580b2102006-05-31 18:28:05 +09003332 * ata_scsi_hotplug - SCSI part of hotplug
David Howells65f27f32006-11-22 14:55:48 +00003333 * @work: Pointer to ATA port to perform SCSI hotplug on
Tejun Heo580b2102006-05-31 18:28:05 +09003334 *
3335 * Perform SCSI part of hotplug. It's executed from a separate
3336 * workqueue after EH completes. This is necessary because SCSI
3337 * hot plugging requires working EH and hot unplugging is
3338 * synchronized with hot plugging with a mutex.
3339 *
3340 * LOCKING:
3341 * Kernel thread context (may sleep).
3342 */
David Howells65f27f32006-11-22 14:55:48 +00003343void ata_scsi_hotplug(struct work_struct *work)
Tejun Heo580b2102006-05-31 18:28:05 +09003344{
David Howells65f27f32006-11-22 14:55:48 +00003345 struct ata_port *ap =
3346 container_of(work, struct ata_port, hotplug_task.work);
Tejun Heo41bda9c2007-08-06 18:36:24 +09003347 int i;
Tejun Heo580b2102006-05-31 18:28:05 +09003348
Tejun Heob51e9e52006-06-29 01:29:30 +09003349 if (ap->pflags & ATA_PFLAG_UNLOADING) {
Tejun Heo580b2102006-05-31 18:28:05 +09003350 DPRINTK("ENTER/EXIT - unloading\n");
3351 return;
3352 }
3353
3354 DPRINTK("ENTER\n");
3355
Tejun Heo41bda9c2007-08-06 18:36:24 +09003356 /* Unplug detached devices. We cannot use link iterator here
3357 * because PMP links have to be scanned even if PMP is
3358 * currently not attached. Iterate manually.
3359 */
3360 ata_scsi_handle_link_detach(&ap->link);
3361 if (ap->pmp_link)
3362 for (i = 0; i < SATA_PMP_MAX_PORTS; i++)
3363 ata_scsi_handle_link_detach(&ap->pmp_link[i]);
Tejun Heo580b2102006-05-31 18:28:05 +09003364
3365 /* scan for new ones */
Tejun Heo1ae46312007-07-16 14:29:40 +09003366 ata_scsi_scan_host(ap, 0);
Tejun Heo580b2102006-05-31 18:28:05 +09003367
3368 DPRINTK("EXIT\n");
3369}
Tejun Heo83c47bc2006-05-31 18:28:07 +09003370
3371/**
3372 * ata_scsi_user_scan - indication for user-initiated bus scan
3373 * @shost: SCSI host to scan
3374 * @channel: Channel to scan
3375 * @id: ID to scan
3376 * @lun: LUN to scan
3377 *
3378 * This function is called when user explicitly requests bus
3379 * scan. Set probe pending flag and invoke EH.
3380 *
3381 * LOCKING:
3382 * SCSI layer (we don't care)
3383 *
3384 * RETURNS:
3385 * Zero.
3386 */
3387static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
3388 unsigned int id, unsigned int lun)
3389{
3390 struct ata_port *ap = ata_shost_to_port(shost);
3391 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09003392 int devno, rc = 0;
Tejun Heo83c47bc2006-05-31 18:28:07 +09003393
3394 if (!ap->ops->error_handler)
3395 return -EOPNOTSUPP;
3396
Tejun Heo41bda9c2007-08-06 18:36:24 +09003397 if (lun != SCAN_WILD_CARD && lun)
Tejun Heo83c47bc2006-05-31 18:28:07 +09003398 return -EINVAL;
3399
Tejun Heo071f44b2008-04-07 22:47:22 +09003400 if (!sata_pmp_attached(ap)) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003401 if (channel != SCAN_WILD_CARD && channel)
3402 return -EINVAL;
3403 devno = id;
3404 } else {
3405 if (id != SCAN_WILD_CARD && id)
3406 return -EINVAL;
3407 devno = channel;
3408 }
3409
Jeff Garzikba6a1302006-06-22 23:46:10 -04003410 spin_lock_irqsave(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +09003411
Tejun Heo41bda9c2007-08-06 18:36:24 +09003412 if (devno == SCAN_WILD_CARD) {
3413 struct ata_link *link;
3414
3415 ata_port_for_each_link(link, ap) {
3416 struct ata_eh_info *ehi = &link->eh_info;
Tejun Heob558edd2008-01-24 00:05:14 +09003417 ehi->probe_mask |= ATA_ALL_DEVICES;
Tejun Heocf480622008-01-24 00:05:14 +09003418 ehi->action |= ATA_EH_RESET;
Tejun Heo41bda9c2007-08-06 18:36:24 +09003419 }
Tejun Heo83c47bc2006-05-31 18:28:07 +09003420 } else {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003421 struct ata_device *dev = ata_find_dev(ap, devno);
Tejun Heo83c47bc2006-05-31 18:28:07 +09003422
3423 if (dev) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003424 struct ata_eh_info *ehi = &dev->link->eh_info;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003425 ehi->probe_mask |= 1 << dev->devno;
Tejun Heocf480622008-01-24 00:05:14 +09003426 ehi->action |= ATA_EH_RESET;
Tejun Heo83c47bc2006-05-31 18:28:07 +09003427 } else
3428 rc = -EINVAL;
3429 }
3430
Tejun Heo309afcb2006-09-30 18:07:17 +09003431 if (rc == 0) {
Tejun Heo83c47bc2006-05-31 18:28:07 +09003432 ata_port_schedule_eh(ap);
Tejun Heo309afcb2006-09-30 18:07:17 +09003433 spin_unlock_irqrestore(ap->lock, flags);
3434 ata_port_wait_eh(ap);
3435 } else
3436 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +09003437
3438 return rc;
3439}
zhao, forrest3057ac32006-06-12 12:01:34 +08003440
3441/**
Tejun Heod0171262006-06-12 22:51:14 +09003442 * ata_scsi_dev_rescan - initiate scsi_rescan_device()
David Howells65f27f32006-11-22 14:55:48 +00003443 * @work: Pointer to ATA port to perform scsi_rescan_device()
zhao, forrest3057ac32006-06-12 12:01:34 +08003444 *
Tejun Heod0171262006-06-12 22:51:14 +09003445 * After ATA pass thru (SAT) commands are executed successfully,
3446 * libata need to propagate the changes to SCSI layer. This
3447 * function must be executed from ata_aux_wq such that sdev
3448 * attach/detach don't race with rescan.
zhao, forrest3057ac32006-06-12 12:01:34 +08003449 *
Tejun Heod0171262006-06-12 22:51:14 +09003450 * LOCKING:
3451 * Kernel thread context (may sleep).
zhao, forrest3057ac32006-06-12 12:01:34 +08003452 */
David Howells65f27f32006-11-22 14:55:48 +00003453void ata_scsi_dev_rescan(struct work_struct *work)
zhao, forrest3057ac32006-06-12 12:01:34 +08003454{
David Howells65f27f32006-11-22 14:55:48 +00003455 struct ata_port *ap =
3456 container_of(work, struct ata_port, scsi_rescan_task);
Tejun Heo41bda9c2007-08-06 18:36:24 +09003457 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09003458 struct ata_device *dev;
Tejun Heof84e7e42006-11-22 11:21:31 +09003459 unsigned long flags;
zhao, forrest3057ac32006-06-12 12:01:34 +08003460
Tejun Heof84e7e42006-11-22 11:21:31 +09003461 spin_lock_irqsave(ap->lock, flags);
zhao, forrest3057ac32006-06-12 12:01:34 +08003462
Tejun Heo41bda9c2007-08-06 18:36:24 +09003463 ata_port_for_each_link(link, ap) {
3464 ata_link_for_each_dev(dev, link) {
3465 struct scsi_device *sdev = dev->sdev;
Tejun Heof84e7e42006-11-22 11:21:31 +09003466
Tejun Heo41bda9c2007-08-06 18:36:24 +09003467 if (!ata_dev_enabled(dev) || !sdev)
3468 continue;
3469 if (scsi_device_get(sdev))
3470 continue;
Tejun Heof84e7e42006-11-22 11:21:31 +09003471
Tejun Heo41bda9c2007-08-06 18:36:24 +09003472 spin_unlock_irqrestore(ap->lock, flags);
3473 scsi_rescan_device(&(sdev->sdev_gendev));
3474 scsi_device_put(sdev);
3475 spin_lock_irqsave(ap->lock, flags);
3476 }
zhao, forrest3057ac32006-06-12 12:01:34 +08003477 }
Tejun Heof84e7e42006-11-22 11:21:31 +09003478
3479 spin_unlock_irqrestore(ap->lock, flags);
zhao, forrest3057ac32006-06-12 12:01:34 +08003480}
Brian King80289162006-08-07 14:27:31 -05003481
3482/**
3483 * ata_sas_port_alloc - Allocate port for a SAS attached SATA device
Jeff Garzik4f931372006-09-29 05:07:25 -04003484 * @host: ATA host container for all SAS ports
Brian King80289162006-08-07 14:27:31 -05003485 * @port_info: Information from low-level host driver
Jeff Garzikcca39742006-08-24 03:19:22 -04003486 * @shost: SCSI host that the scsi device is attached to
Brian King80289162006-08-07 14:27:31 -05003487 *
3488 * LOCKING:
3489 * PCI/etc. bus probe sem.
3490 *
3491 * RETURNS:
3492 * ata_port pointer on success / NULL on failure.
3493 */
3494
Jeff Garzikcca39742006-08-24 03:19:22 -04003495struct ata_port *ata_sas_port_alloc(struct ata_host *host,
Brian King80289162006-08-07 14:27:31 -05003496 struct ata_port_info *port_info,
Jeff Garzikcca39742006-08-24 03:19:22 -04003497 struct Scsi_Host *shost)
Brian King80289162006-08-07 14:27:31 -05003498{
Tejun Heof3187192007-04-17 23:44:07 +09003499 struct ata_port *ap;
Brian King80289162006-08-07 14:27:31 -05003500
Tejun Heof3187192007-04-17 23:44:07 +09003501 ap = ata_port_alloc(host);
Brian King80289162006-08-07 14:27:31 -05003502 if (!ap)
3503 return NULL;
3504
Tejun Heof3187192007-04-17 23:44:07 +09003505 ap->port_no = 0;
Jeff Garzikcca39742006-08-24 03:19:22 -04003506 ap->lock = shost->host_lock;
Tejun Heof3187192007-04-17 23:44:07 +09003507 ap->pio_mask = port_info->pio_mask;
3508 ap->mwdma_mask = port_info->mwdma_mask;
3509 ap->udma_mask = port_info->udma_mask;
3510 ap->flags |= port_info->flags;
3511 ap->ops = port_info->port_ops;
3512 ap->cbl = ATA_CBL_SATA;
3513
Brian King80289162006-08-07 14:27:31 -05003514 return ap;
3515}
3516EXPORT_SYMBOL_GPL(ata_sas_port_alloc);
3517
3518/**
3519 * ata_sas_port_start - Set port up for dma.
3520 * @ap: Port to initialize
3521 *
3522 * Called just after data structures for each port are
James Bottomleydde20202008-02-19 11:36:56 +01003523 * initialized.
Brian King80289162006-08-07 14:27:31 -05003524 *
3525 * May be used as the port_start() entry in ata_port_operations.
3526 *
3527 * LOCKING:
3528 * Inherited from caller.
3529 */
3530int ata_sas_port_start(struct ata_port *ap)
3531{
James Bottomleydde20202008-02-19 11:36:56 +01003532 return 0;
Brian King80289162006-08-07 14:27:31 -05003533}
3534EXPORT_SYMBOL_GPL(ata_sas_port_start);
3535
3536/**
3537 * ata_port_stop - Undo ata_sas_port_start()
3538 * @ap: Port to shut down
3539 *
Brian King80289162006-08-07 14:27:31 -05003540 * May be used as the port_stop() entry in ata_port_operations.
3541 *
3542 * LOCKING:
3543 * Inherited from caller.
3544 */
3545
3546void ata_sas_port_stop(struct ata_port *ap)
3547{
Brian King80289162006-08-07 14:27:31 -05003548}
3549EXPORT_SYMBOL_GPL(ata_sas_port_stop);
3550
3551/**
3552 * ata_sas_port_init - Initialize a SATA device
3553 * @ap: SATA port to initialize
3554 *
3555 * LOCKING:
3556 * PCI/etc. bus probe sem.
3557 *
3558 * RETURNS:
3559 * Zero on success, non-zero on error.
3560 */
3561
3562int ata_sas_port_init(struct ata_port *ap)
3563{
3564 int rc = ap->ops->port_start(ap);
3565
Tejun Heof3187192007-04-17 23:44:07 +09003566 if (!rc) {
3567 ap->print_id = ata_print_id++;
Brian King80289162006-08-07 14:27:31 -05003568 rc = ata_bus_probe(ap);
Tejun Heof3187192007-04-17 23:44:07 +09003569 }
Brian King80289162006-08-07 14:27:31 -05003570
3571 return rc;
3572}
3573EXPORT_SYMBOL_GPL(ata_sas_port_init);
3574
3575/**
3576 * ata_sas_port_destroy - Destroy a SATA port allocated by ata_sas_port_alloc
3577 * @ap: SATA port to destroy
3578 *
3579 */
3580
3581void ata_sas_port_destroy(struct ata_port *ap)
3582{
Tejun Heof0d36ef2007-01-20 16:00:28 +09003583 if (ap->ops->port_stop)
3584 ap->ops->port_stop(ap);
Brian King80289162006-08-07 14:27:31 -05003585 kfree(ap);
3586}
3587EXPORT_SYMBOL_GPL(ata_sas_port_destroy);
3588
3589/**
3590 * ata_sas_slave_configure - Default slave_config routine for libata devices
3591 * @sdev: SCSI device to configure
3592 * @ap: ATA port to which SCSI device is attached
3593 *
3594 * RETURNS:
3595 * Zero.
3596 */
3597
3598int ata_sas_slave_configure(struct scsi_device *sdev, struct ata_port *ap)
3599{
3600 ata_scsi_sdev_config(sdev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003601 ata_scsi_dev_config(sdev, ap->link.device);
Brian King80289162006-08-07 14:27:31 -05003602 return 0;
3603}
3604EXPORT_SYMBOL_GPL(ata_sas_slave_configure);
3605
3606/**
3607 * ata_sas_queuecmd - Issue SCSI cdb to libata-managed device
3608 * @cmd: SCSI command to be sent
3609 * @done: Completion function, called when command is complete
3610 * @ap: ATA port to which the command is being sent
3611 *
3612 * RETURNS:
Brian King08475a12006-11-20 13:51:56 -06003613 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
3614 * 0 otherwise.
Brian King80289162006-08-07 14:27:31 -05003615 */
3616
3617int ata_sas_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *),
3618 struct ata_port *ap)
3619{
Brian King08475a12006-11-20 13:51:56 -06003620 int rc = 0;
3621
Brian King80289162006-08-07 14:27:31 -05003622 ata_scsi_dump_cdb(ap, cmd);
3623
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003624 if (likely(ata_scsi_dev_enabled(ap->link.device)))
3625 rc = __ata_scsi_queuecmd(cmd, done, ap->link.device);
Brian King80289162006-08-07 14:27:31 -05003626 else {
3627 cmd->result = (DID_BAD_TARGET << 16);
3628 done(cmd);
3629 }
Brian King08475a12006-11-20 13:51:56 -06003630 return rc;
Brian King80289162006-08-07 14:27:31 -05003631}
3632EXPORT_SYMBOL_GPL(ata_sas_queuecmd);