libata: set queue SSD flag for SSD devices
[safe/jmp/linux-2.6] / drivers / ata / libata-scsi.c
1 /*
2  *  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  *
34  */
35
36 #include <linux/kernel.h>
37 #include <linux/blkdev.h>
38 #include <linux/spinlock.h>
39 #include <scsi/scsi.h>
40 #include <scsi/scsi_host.h>
41 #include <scsi/scsi_cmnd.h>
42 #include <scsi/scsi_eh.h>
43 #include <scsi/scsi_device.h>
44 #include <scsi/scsi_tcq.h>
45 #include <scsi/scsi_transport.h>
46 #include <linux/libata.h>
47 #include <linux/hdreg.h>
48 #include <linux/uaccess.h>
49
50 #include "libata.h"
51
52 #define SECTOR_SIZE             512
53 #define ATA_SCSI_RBUF_SIZE      4096
54
55 static DEFINE_SPINLOCK(ata_scsi_rbuf_lock);
56 static u8 ata_scsi_rbuf[ATA_SCSI_RBUF_SIZE];
57
58 typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *qc);
59
60 static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap,
61                                         const struct scsi_device *scsidev);
62 static struct ata_device *ata_scsi_find_dev(struct ata_port *ap,
63                                             const struct scsi_device *scsidev);
64 static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
65                               unsigned int id, unsigned int lun);
66
67
68 #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
78 static const u8 def_rw_recovery_mpage[RW_RECOVERY_MPAGE_LEN] = {
79         RW_RECOVERY_MPAGE,
80         RW_RECOVERY_MPAGE_LEN - 2,
81         (1 << 7),       /* AWRE */
82         0,              /* read retry count */
83         0, 0, 0, 0,
84         0,              /* write retry count */
85         0, 0, 0
86 };
87
88 static 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
97 static 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
106 /*
107  * libata transport template.  libata doesn't do real transport stuff.
108  * It just needs the eh_timed_out hook.
109  */
110 static struct scsi_transport_template ata_scsi_transport_template = {
111         .eh_strategy_handler    = ata_scsi_error,
112         .eh_timed_out           = ata_scsi_timed_out,
113         .user_scan              = ata_scsi_user_scan,
114 };
115
116
117 static 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
127 static const char *ata_scsi_lpm_get(enum link_pm policy)
128 {
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
138 static ssize_t ata_scsi_lpm_put(struct device *dev,
139                                 struct device_attribute *attr,
140                                 const char *buf, size_t count)
141 {
142         struct Scsi_Host *shost = class_to_shost(dev);
143         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
169 static ssize_t
170 ata_scsi_lpm_show(struct device *dev, struct device_attribute *attr, char *buf)
171 {
172         struct Scsi_Host *shost = class_to_shost(dev);
173         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 }
182 DEVICE_ATTR(link_power_management_policy, S_IRUGO | S_IWUSR,
183                 ata_scsi_lpm_show, ata_scsi_lpm_put);
184 EXPORT_SYMBOL_GPL(dev_attr_link_power_management_policy);
185
186 static 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
193 static ssize_t
194 ata_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
204 static ssize_t
205 ata_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 }
215 DEVICE_ATTR(em_message, S_IRUGO | S_IWUGO,
216                 ata_scsi_em_message_show, ata_scsi_em_message_store);
217 EXPORT_SYMBOL_GPL(dev_attr_em_message);
218
219 static ssize_t
220 ata_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 }
228 DEVICE_ATTR(em_message_type, S_IRUGO,
229                   ata_scsi_em_message_type_show, NULL);
230 EXPORT_SYMBOL_GPL(dev_attr_em_message_type);
231
232 static ssize_t
233 ata_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
245 static ssize_t
246 ata_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 }
268 DEVICE_ATTR(sw_activity, S_IWUGO | S_IRUGO, ata_scsi_activity_show,
269                         ata_scsi_activity_store);
270 EXPORT_SYMBOL_GPL(dev_attr_sw_activity);
271
272 static 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
280 /**
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  */
298 int 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
309 /**
310  *      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  */
320 static 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 /**
349  *      ata_cmd_ioctl - Handler for HDIO_DRIVE_CMD ioctl
350  *      @scsidev: Device to which we are issuing command
351  *      @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  */
359 int ata_cmd_ioctl(struct scsi_device *scsidev, void __user *arg)
360 {
361         int rc = 0;
362         u8 scsi_cmd[MAX_COMMAND_SIZE];
363         u8 args[4], *argbuf = NULL, *sensebuf = NULL;
364         int argsize = 0;
365         enum dma_data_direction data_dir;
366         int cmd_result;
367
368         if (arg == NULL)
369                 return -EINVAL;
370
371         if (copy_from_user(args, arg, sizeof(args)))
372                 return -EFAULT;
373
374         sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
375         if (!sensebuf)
376                 return -ENOMEM;
377
378         memset(scsi_cmd, 0, sizeof(scsi_cmd));
379
380         if (args[3]) {
381                 argsize = SECTOR_SIZE * args[3];
382                 argbuf = kmalloc(argsize, GFP_KERNEL);
383                 if (argbuf == NULL) {
384                         rc = -ENOMEM;
385                         goto error;
386                 }
387
388                 scsi_cmd[1]  = (4 << 1); /* PIO Data-in */
389                 scsi_cmd[2]  = 0x0e;     /* no off.line or cc, read from dev,
390                                             block count in sector count field */
391                 data_dir = DMA_FROM_DEVICE;
392         } else {
393                 scsi_cmd[1]  = (3 << 1); /* Non-data */
394                 scsi_cmd[2]  = 0x20;     /* cc but no off.line or data xfer */
395                 data_dir = DMA_NONE;
396         }
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... */
413         cmd_result = scsi_execute(scsidev, scsi_cmd, data_dir, argbuf, argsize,
414                                   sensebuf, (10*HZ), 5, 0);
415
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,
425                                              &sshdr);
426                         if (sshdr.sense_key == 0 &&
427                             sshdr.asc == 0 && sshdr.ascq == 0)
428                                 cmd_result &= ~SAM_STAT_CHECK_CONDITION;
429                 }
430
431                 /* Send userspace a few ATA registers (same as drivers/ide) */
432                 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) */
437                         if (copy_to_user(arg, args, sizeof(args)))
438                                 rc = -EFAULT;
439                 }
440         }
441
442
443         if (cmd_result) {
444                 rc = -EIO;
445                 goto error;
446         }
447
448         if ((argbuf)
449          && copy_to_user(arg + sizeof(args), argbuf, argsize))
450                 rc = -EFAULT;
451 error:
452         kfree(sensebuf);
453         kfree(argbuf);
454         return rc;
455 }
456
457 /**
458  *      ata_task_ioctl - Handler for HDIO_DRIVE_TASK ioctl
459  *      @scsidev: Device to which we are issuing command
460  *      @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  */
468 int ata_task_ioctl(struct scsi_device *scsidev, void __user *arg)
469 {
470         int rc = 0;
471         u8 scsi_cmd[MAX_COMMAND_SIZE];
472         u8 args[7], *sensebuf = NULL;
473         int cmd_result;
474
475         if (arg == NULL)
476                 return -EINVAL;
477
478         if (copy_from_user(args, arg, sizeof(args)))
479                 return -EFAULT;
480
481         sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
482         if (!sensebuf)
483                 return -ENOMEM;
484
485         memset(scsi_cmd, 0, sizeof(scsi_cmd));
486         scsi_cmd[0]  = ATA_16;
487         scsi_cmd[1]  = (3 << 1); /* Non-data */
488         scsi_cmd[2]  = 0x20;     /* cc but no off.line or data xfer */
489         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];
494         scsi_cmd[13] = args[6] & 0x4f;
495         scsi_cmd[14] = args[0];
496
497         /* Good values for timeout and retries?  Values below
498            from scsi_ioctl_send_command() for default case... */
499         cmd_result = scsi_execute(scsidev, scsi_cmd, DMA_NONE, NULL, 0,
500                                 sensebuf, (10*HZ), 5, 0);
501
502         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);
512                         if (sshdr.sense_key == 0 &&
513                                 sshdr.asc == 0 && sshdr.ascq == 0)
514                                 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);
539         return rc;
540 }
541
542 int ata_scsi_ioctl(struct scsi_device *scsidev, int cmd, void __user *arg)
543 {
544         int val = -EINVAL, rc = -EINVAL;
545
546         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
559         case HDIO_GET_IDENTITY:
560                 return ata_get_identity(scsidev, arg);
561
562         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
572         default:
573                 rc = -ENOTTY;
574                 break;
575         }
576
577         return rc;
578 }
579
580 /**
581  *      ata_scsi_qc_new - acquire new ata_queued_cmd reference
582  *      @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:
595  *      spin_lock_irqsave(host lock)
596  *
597  *      RETURNS:
598  *      Command allocated, or %NULL if none available.
599  */
600 static struct ata_queued_cmd *ata_scsi_qc_new(struct ata_device *dev,
601                                               struct scsi_cmnd *cmd,
602                                               void (*done)(struct scsi_cmnd *))
603 {
604         struct ata_queued_cmd *qc;
605
606         qc = ata_qc_new_init(dev);
607         if (qc) {
608                 qc->scsicmd = cmd;
609                 qc->scsidone = done;
610
611                 qc->sg = scsi_sglist(cmd);
612                 qc->n_elem = scsi_sg_count(cmd);
613         } else {
614                 cmd->result = (DID_OK << 16) | (QUEUE_FULL << 1);
615                 done(cmd);
616         }
617
618         return qc;
619 }
620
621 static 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
629 /**
630  *      ata_dump_status - user friendly display of error info
631  *      @id: id of the port in question
632  *      @tf: ptr to filled out taskfile
633  *
634  *      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  */
641 static void ata_dump_status(unsigned id, struct ata_taskfile *tf)
642 {
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
676  *      @id: ATA device number
677  *      @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
682  *      @verbose: be verbose
683  *
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.
687  *
688  *      LOCKING:
689  *      spin_lock_irqsave(host lock)
690  */
691 static void ata_to_sense_error(unsigned id, u8 drv_stat, u8 drv_err, u8 *sk,
692                                u8 *asc, u8 *ascq, int verbose)
693 {
694         int i;
695
696         /* Based on the 3ware driver translation table */
697         static const unsigned char sense_table[][4] = {
698                 /* 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         };
728         static const unsigned char stat_table[][4] = {
729                 /* 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         };
736
737         /*
738          *      Is this an error we can process/parse
739          */
740         if (drv_stat & ATA_BUSY) {
741                 drv_err = 0;    /* Ignore the err bits, they're invalid */
742         }
743
744         if (drv_err) {
745                 /* Look for drv_err */
746                 for (i = 0; sense_table[i][0] != 0xFF; i++) {
747                         /* Look for best matches first */
748                         if ((sense_table[i][0] & drv_err) ==
749                             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                         }
755                 }
756                 /* No immediate match */
757                 if (verbose)
758                         printk(KERN_WARNING "ata%u: no sense translation for "
759                                "error 0x%02x\n", id, drv_err);
760         }
761
762         /* Fall back to interpreting status bits */
763         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;
769                 }
770         }
771         /* No error?  Undecoded? */
772         if (verbose)
773                 printk(KERN_WARNING "ata%u: no sense translation for "
774                        "status: 0x%02x\n", id, drv_stat);
775
776         /* 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;
781
782  translate_done:
783         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);
787         return;
788 }
789
790 /*
791  *      ata_gen_passthru_sense - Generate check condition sense block.
792  *      @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:
801  *      None.
802  */
803 static void ata_gen_passthru_sense(struct ata_queued_cmd *qc)
804 {
805         struct scsi_cmnd *cmd = qc->scsicmd;
806         struct ata_taskfile *tf = &qc->result_tf;
807         unsigned char *sb = cmd->sense_buffer;
808         unsigned char *desc = sb + 8;
809         int verbose = qc->ap->ops->error_handler == NULL;
810
811         memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
812
813         cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
814
815         /*
816          * Use ata_to_sense_error() to map status register bits
817          * onto sense key, asc & ascq.
818          */
819         if (qc->err_mask ||
820             tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
821                 ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature,
822                                    &sb[1], &sb[2], &sb[3], verbose);
823                 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
833         /* set length of additional sense data */
834         sb[7] = 14;
835         desc[1] = 12;
836
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 /**
863  *      ata_gen_ata_sense - generate a SCSI fixed sense block
864  *      @qc: Command that we are erroring out
865  *
866  *      Generate sense block for a failed ATA command @qc.  Descriptor
867  *      format is used to accomodate LBA48 block address.
868  *
869  *      LOCKING:
870  *      None.
871  */
872 static void ata_gen_ata_sense(struct ata_queued_cmd *qc)
873 {
874         struct ata_device *dev = qc->dev;
875         struct scsi_cmnd *cmd = qc->scsicmd;
876         struct ata_taskfile *tf = &qc->result_tf;
877         unsigned char *sb = cmd->sense_buffer;
878         unsigned char *desc = sb + 8;
879         int verbose = qc->ap->ops->error_handler == NULL;
880         u64 block;
881
882         memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
883
884         cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
885
886         /* sense data is current and format is descriptor */
887         sb[0] = 0x72;
888
889         /* Use ata_to_sense_error() to map status register bits
890          * onto sense key, asc & ascq.
891          */
892         if (qc->err_mask ||
893             tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
894                 ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature,
895                                    &sb[1], &sb[2], &sb[3], verbose);
896                 sb[1] &= 0x0f;
897         }
898
899         block = ata_tf_read_block(&qc->result_tf, dev);
900
901         /* information sense data descriptor */
902         sb[7] = 12;
903         desc[0] = 0x00;
904         desc[1] = 10;
905
906         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;
913 }
914
915 static void ata_scsi_sdev_config(struct scsi_device *sdev)
916 {
917         sdev->use_10_for_rw = 1;
918         sdev->use_10_for_ms = 1;
919
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;
926 }
927
928 /**
929  *      atapi_drain_needed - Check whether data transfer may overflow
930  *      @rq: request to be checked
931  *
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  */
943 static 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
954 static int ata_scsi_dev_config(struct scsi_device *sdev,
955                                struct ata_device *dev)
956 {
957         /* configure max sectors */
958         blk_queue_max_sectors(sdev->request_queue, dev->max_sectors);
959
960         if (dev->class == ATA_DEV_ATAPI) {
961                 struct request_queue *q = sdev->request_queue;
962                 void *buf;
963
964                 /* set the min alignment and padding */
965                 blk_queue_update_dma_alignment(sdev->request_queue,
966                                                ATA_DMA_PAD_SZ - 1);
967                 blk_queue_update_dma_pad(sdev->request_queue,
968                                          ATA_DMA_PAD_SZ - 1);
969
970                 /* configure draining */
971                 buf = kmalloc(ATAPI_MAX_DRAIN, q->bounce_gfp | GFP_KERNEL);
972                 if (!buf) {
973                         ata_dev_printk(dev, KERN_ERR,
974                                        "drain buffer allocation failed\n");
975                         return -ENOMEM;
976                 }
977
978                 blk_queue_dma_drain(q, atapi_drain_needed, buf, ATAPI_MAX_DRAIN);
979         } else {
980                 if (ata_id_is_ssd(dev->id))
981                         queue_flag_set_unlocked(QUEUE_FLAG_NONROT,
982                                                 sdev->request_queue);
983
984                 /* ATA devices must be sector aligned */
985                 blk_queue_update_dma_alignment(sdev->request_queue,
986                                                ATA_SECT_SIZE - 1);
987                 sdev->manage_start_stop = 1;
988         }
989
990         if (dev->flags & ATA_DFLAG_AN)
991                 set_bit(SDEV_EVT_MEDIA_CHANGE, sdev->supported_events);
992
993         if (dev->flags & ATA_DFLAG_NCQ) {
994                 int depth;
995
996                 depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id));
997                 depth = min(ATA_MAX_QUEUE - 1, depth);
998                 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, depth);
999         }
1000
1001         return 0;
1002 }
1003
1004 /**
1005  *      ata_scsi_slave_config - Set SCSI device attributes
1006  *      @sdev: SCSI device to examine
1007  *
1008  *      This is called before we actually start reading
1009  *      and writing to the device, to configure certain
1010  *      SCSI mid-layer behaviors.
1011  *
1012  *      LOCKING:
1013  *      Defined by SCSI layer.  We don't really care.
1014  */
1015
1016 int ata_scsi_slave_config(struct scsi_device *sdev)
1017 {
1018         struct ata_port *ap = ata_shost_to_port(sdev->host);
1019         struct ata_device *dev = __ata_scsi_find_dev(ap, sdev);
1020         int rc = 0;
1021
1022         ata_scsi_sdev_config(sdev);
1023
1024         if (dev)
1025                 rc = ata_scsi_dev_config(sdev, dev);
1026
1027         return rc;
1028 }
1029
1030 /**
1031  *      ata_scsi_slave_destroy - SCSI device is about to be destroyed
1032  *      @sdev: SCSI device to be destroyed
1033  *
1034  *      @sdev is about to be destroyed for hot/warm unplugging.  If
1035  *      this unplugging was initiated by libata as indicated by NULL
1036  *      dev->sdev, this function doesn't have to do anything.
1037  *      Otherwise, SCSI layer initiated warm-unplug is in progress.
1038  *      Clear dev->sdev, schedule the device for ATA detach and invoke
1039  *      EH.
1040  *
1041  *      LOCKING:
1042  *      Defined by SCSI layer.  We don't really care.
1043  */
1044 void ata_scsi_slave_destroy(struct scsi_device *sdev)
1045 {
1046         struct ata_port *ap = ata_shost_to_port(sdev->host);
1047         struct request_queue *q = sdev->request_queue;
1048         unsigned long flags;
1049         struct ata_device *dev;
1050
1051         if (!ap->ops->error_handler)
1052                 return;
1053
1054         spin_lock_irqsave(ap->lock, flags);
1055         dev = __ata_scsi_find_dev(ap, sdev);
1056         if (dev && dev->sdev) {
1057                 /* SCSI device already in CANCEL state, no need to offline it */
1058                 dev->sdev = NULL;
1059                 dev->flags |= ATA_DFLAG_DETACH;
1060                 ata_port_schedule_eh(ap);
1061         }
1062         spin_unlock_irqrestore(ap->lock, flags);
1063
1064         kfree(q->dma_drain_buffer);
1065         q->dma_drain_buffer = NULL;
1066         q->dma_drain_size = 0;
1067 }
1068
1069 /**
1070  *      ata_scsi_change_queue_depth - SCSI callback for queue depth config
1071  *      @sdev: SCSI device to configure queue depth for
1072  *      @queue_depth: new queue depth
1073  *
1074  *      This is libata standard hostt->change_queue_depth callback.
1075  *      SCSI will call into this callback when user tries to set queue
1076  *      depth via sysfs.
1077  *
1078  *      LOCKING:
1079  *      SCSI layer (we don't care)
1080  *
1081  *      RETURNS:
1082  *      Newly configured queue depth.
1083  */
1084 int ata_scsi_change_queue_depth(struct scsi_device *sdev, int queue_depth)
1085 {
1086         struct ata_port *ap = ata_shost_to_port(sdev->host);
1087         struct ata_device *dev;
1088         unsigned long flags;
1089
1090         if (queue_depth < 1 || queue_depth == sdev->queue_depth)
1091                 return sdev->queue_depth;
1092
1093         dev = ata_scsi_find_dev(ap, sdev);
1094         if (!dev || !ata_dev_enabled(dev))
1095                 return sdev->queue_depth;
1096
1097         /* NCQ enabled? */
1098         spin_lock_irqsave(ap->lock, flags);
1099         dev->flags &= ~ATA_DFLAG_NCQ_OFF;
1100         if (queue_depth == 1 || !ata_ncq_enabled(dev)) {
1101                 dev->flags |= ATA_DFLAG_NCQ_OFF;
1102                 queue_depth = 1;
1103         }
1104         spin_unlock_irqrestore(ap->lock, flags);
1105
1106         /* limit and apply queue depth */
1107         queue_depth = min(queue_depth, sdev->host->can_queue);
1108         queue_depth = min(queue_depth, ata_id_queue_depth(dev->id));
1109         queue_depth = min(queue_depth, ATA_MAX_QUEUE - 1);
1110
1111         if (sdev->queue_depth == queue_depth)
1112                 return -EINVAL;
1113
1114         scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, queue_depth);
1115         return queue_depth;
1116 }
1117
1118 /* XXX: for spindown warning */
1119 static void ata_delayed_done_timerfn(unsigned long arg)
1120 {
1121         struct scsi_cmnd *scmd = (void *)arg;
1122
1123         scmd->scsi_done(scmd);
1124 }
1125
1126 /* XXX: for spindown warning */
1127 static void ata_delayed_done(struct scsi_cmnd *scmd)
1128 {
1129         static struct timer_list timer;
1130
1131         setup_timer(&timer, ata_delayed_done_timerfn, (unsigned long)scmd);
1132         mod_timer(&timer, jiffies + 5 * HZ);
1133 }
1134
1135 /**
1136  *      ata_scsi_start_stop_xlat - Translate SCSI START STOP UNIT command
1137  *      @qc: Storage for translated ATA taskfile
1138  *
1139  *      Sets up an ATA taskfile to issue STANDBY (to stop) or READ VERIFY
1140  *      (to start). Perhaps these commands should be preceded by
1141  *      CHECK POWER MODE to see what power mode the device is already in.
1142  *      [See SAT revision 5 at www.t10.org]
1143  *
1144  *      LOCKING:
1145  *      spin_lock_irqsave(host lock)
1146  *
1147  *      RETURNS:
1148  *      Zero on success, non-zero on error.
1149  */
1150 static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc)
1151 {
1152         struct scsi_cmnd *scmd = qc->scsicmd;
1153         struct ata_taskfile *tf = &qc->tf;
1154         const u8 *cdb = scmd->cmnd;
1155
1156         if (scmd->cmd_len < 5)
1157                 goto invalid_fld;
1158
1159         tf->flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
1160         tf->protocol = ATA_PROT_NODATA;
1161         if (cdb[1] & 0x1) {
1162                 ;       /* ignore IMMED bit, violates sat-r05 */
1163         }
1164         if (cdb[4] & 0x2)
1165                 goto invalid_fld;       /* LOEJ bit set not supported */
1166         if (((cdb[4] >> 4) & 0xf) != 0)
1167                 goto invalid_fld;       /* power conditions not supported */
1168
1169         if (cdb[4] & 0x1) {
1170                 tf->nsect = 1;  /* 1 sector, lba=0 */
1171
1172                 if (qc->dev->flags & ATA_DFLAG_LBA) {
1173                         tf->flags |= ATA_TFLAG_LBA;
1174
1175                         tf->lbah = 0x0;
1176                         tf->lbam = 0x0;
1177                         tf->lbal = 0x0;
1178                         tf->device |= ATA_LBA;
1179                 } else {
1180                         /* CHS */
1181                         tf->lbal = 0x1; /* sect */
1182                         tf->lbam = 0x0; /* cyl low */
1183                         tf->lbah = 0x0; /* cyl high */
1184                 }
1185
1186                 tf->command = ATA_CMD_VERIFY;   /* READ VERIFY */
1187         } else {
1188                 /* XXX: This is for backward compatibility, will be
1189                  * removed.  Read Documentation/feature-removal-schedule.txt
1190                  * for more info.
1191                  */
1192                 if ((qc->dev->flags & ATA_DFLAG_SPUNDOWN) &&
1193                     (system_state == SYSTEM_HALT ||
1194                      system_state == SYSTEM_POWER_OFF)) {
1195                         static unsigned long warned;
1196
1197                         if (!test_and_set_bit(0, &warned)) {
1198                                 ata_dev_printk(qc->dev, KERN_WARNING,
1199                                         "DISK MIGHT NOT BE SPUN DOWN PROPERLY. "
1200                                         "UPDATE SHUTDOWN UTILITY\n");
1201                                 ata_dev_printk(qc->dev, KERN_WARNING,
1202                                         "For more info, visit "
1203                                         "http://linux-ata.org/shutdown.html\n");
1204
1205                                 /* ->scsi_done is not used, use it for
1206                                  * delayed completion.
1207                                  */
1208                                 scmd->scsi_done = qc->scsidone;
1209                                 qc->scsidone = ata_delayed_done;
1210                         }
1211                         scmd->result = SAM_STAT_GOOD;
1212                         return 1;
1213                 }
1214
1215                 /* Issue ATA STANDBY IMMEDIATE command */
1216                 tf->command = ATA_CMD_STANDBYNOW1;
1217         }
1218
1219         /*
1220          * Standby and Idle condition timers could be implemented but that
1221          * would require libata to implement the Power condition mode page
1222          * and allow the user to change it. Changing mode pages requires
1223          * MODE SELECT to be implemented.
1224          */
1225
1226         return 0;
1227
1228 invalid_fld:
1229         ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
1230         /* "Invalid field in cbd" */
1231         return 1;
1232 }
1233
1234
1235 /**
1236  *      ata_scsi_flush_xlat - Translate SCSI SYNCHRONIZE CACHE command
1237  *      @qc: Storage for translated ATA taskfile
1238  *
1239  *      Sets up an ATA taskfile to issue FLUSH CACHE or
1240  *      FLUSH CACHE EXT.
1241  *
1242  *      LOCKING:
1243  *      spin_lock_irqsave(host lock)
1244  *
1245  *      RETURNS:
1246  *      Zero on success, non-zero on error.
1247  */
1248 static unsigned int ata_scsi_flush_xlat(struct ata_queued_cmd *qc)
1249 {
1250         struct ata_taskfile *tf = &qc->tf;
1251
1252         tf->flags |= ATA_TFLAG_DEVICE;
1253         tf->protocol = ATA_PROT_NODATA;
1254
1255         if (qc->dev->flags & ATA_DFLAG_FLUSH_EXT)
1256                 tf->command = ATA_CMD_FLUSH_EXT;
1257         else
1258                 tf->command = ATA_CMD_FLUSH;
1259
1260         /* flush is critical for IO integrity, consider it an IO command */
1261         qc->flags |= ATA_QCFLAG_IO;
1262
1263         return 0;
1264 }
1265
1266 /**
1267  *      scsi_6_lba_len - Get LBA and transfer length
1268  *      @cdb: SCSI command to translate
1269  *
1270  *      Calculate LBA and transfer length for 6-byte commands.
1271  *
1272  *      RETURNS:
1273  *      @plba: the LBA
1274  *      @plen: the transfer length
1275  */
1276 static void scsi_6_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
1277 {
1278         u64 lba = 0;
1279         u32 len;
1280
1281         VPRINTK("six-byte command\n");
1282
1283         lba |= ((u64)(cdb[1] & 0x1f)) << 16;
1284         lba |= ((u64)cdb[2]) << 8;
1285         lba |= ((u64)cdb[3]);
1286
1287         len = cdb[4];
1288
1289         *plba = lba;
1290         *plen = len;
1291 }
1292
1293 /**
1294  *      scsi_10_lba_len - Get LBA and transfer length
1295  *      @cdb: SCSI command to translate
1296  *
1297  *      Calculate LBA and transfer length for 10-byte commands.
1298  *
1299  *      RETURNS:
1300  *      @plba: the LBA
1301  *      @plen: the transfer length
1302  */
1303 static void scsi_10_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
1304 {
1305         u64 lba = 0;
1306         u32 len = 0;
1307
1308         VPRINTK("ten-byte command\n");
1309
1310         lba |= ((u64)cdb[2]) << 24;
1311         lba |= ((u64)cdb[3]) << 16;
1312         lba |= ((u64)cdb[4]) << 8;
1313         lba |= ((u64)cdb[5]);
1314
1315         len |= ((u32)cdb[7]) << 8;
1316         len |= ((u32)cdb[8]);
1317
1318         *plba = lba;
1319         *plen = len;
1320 }
1321
1322 /**
1323  *      scsi_16_lba_len - Get LBA and transfer length
1324  *      @cdb: SCSI command to translate
1325  *
1326  *      Calculate LBA and transfer length for 16-byte commands.
1327  *
1328  *      RETURNS:
1329  *      @plba: the LBA
1330  *      @plen: the transfer length
1331  */
1332 static void scsi_16_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
1333 {
1334         u64 lba = 0;
1335         u32 len = 0;
1336
1337         VPRINTK("sixteen-byte command\n");
1338
1339         lba |= ((u64)cdb[2]) << 56;
1340         lba |= ((u64)cdb[3]) << 48;
1341         lba |= ((u64)cdb[4]) << 40;
1342         lba |= ((u64)cdb[5]) << 32;
1343         lba |= ((u64)cdb[6]) << 24;
1344         lba |= ((u64)cdb[7]) << 16;
1345         lba |= ((u64)cdb[8]) << 8;
1346         lba |= ((u64)cdb[9]);
1347
1348         len |= ((u32)cdb[10]) << 24;
1349         len |= ((u32)cdb[11]) << 16;
1350         len |= ((u32)cdb[12]) << 8;
1351         len |= ((u32)cdb[13]);
1352
1353         *plba = lba;
1354         *plen = len;
1355 }
1356
1357 /**
1358  *      ata_scsi_verify_xlat - Translate SCSI VERIFY command into an ATA one
1359  *      @qc: Storage for translated ATA taskfile
1360  *
1361  *      Converts SCSI VERIFY command to an ATA READ VERIFY command.
1362  *
1363  *      LOCKING:
1364  *      spin_lock_irqsave(host lock)
1365  *
1366  *      RETURNS:
1367  *      Zero on success, non-zero on error.
1368  */
1369 static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc)
1370 {
1371         struct scsi_cmnd *scmd = qc->scsicmd;
1372         struct ata_taskfile *tf = &qc->tf;
1373         struct ata_device *dev = qc->dev;
1374         u64 dev_sectors = qc->dev->n_sectors;
1375         const u8 *cdb = scmd->cmnd;
1376         u64 block;
1377         u32 n_block;
1378
1379         tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1380         tf->protocol = ATA_PROT_NODATA;
1381
1382         if (cdb[0] == VERIFY) {
1383                 if (scmd->cmd_len < 10)
1384                         goto invalid_fld;
1385                 scsi_10_lba_len(cdb, &block, &n_block);
1386         } else if (cdb[0] == VERIFY_16) {
1387                 if (scmd->cmd_len < 16)
1388                         goto invalid_fld;
1389                 scsi_16_lba_len(cdb, &block, &n_block);
1390         } else
1391                 goto invalid_fld;
1392
1393         if (!n_block)
1394                 goto nothing_to_do;
1395         if (block >= dev_sectors)
1396                 goto out_of_range;
1397         if ((block + n_block) > dev_sectors)
1398                 goto out_of_range;
1399
1400         if (dev->flags & ATA_DFLAG_LBA) {
1401                 tf->flags |= ATA_TFLAG_LBA;
1402
1403                 if (lba_28_ok(block, n_block)) {
1404                         /* use LBA28 */
1405                         tf->command = ATA_CMD_VERIFY;
1406                         tf->device |= (block >> 24) & 0xf;
1407                 } else if (lba_48_ok(block, n_block)) {
1408                         if (!(dev->flags & ATA_DFLAG_LBA48))
1409                                 goto out_of_range;
1410
1411                         /* use LBA48 */
1412                         tf->flags |= ATA_TFLAG_LBA48;
1413                         tf->command = ATA_CMD_VERIFY_EXT;
1414
1415                         tf->hob_nsect = (n_block >> 8) & 0xff;
1416
1417                         tf->hob_lbah = (block >> 40) & 0xff;
1418                         tf->hob_lbam = (block >> 32) & 0xff;
1419                         tf->hob_lbal = (block >> 24) & 0xff;
1420                 } else
1421                         /* request too large even for LBA48 */
1422                         goto out_of_range;
1423
1424                 tf->nsect = n_block & 0xff;
1425
1426                 tf->lbah = (block >> 16) & 0xff;
1427                 tf->lbam = (block >> 8) & 0xff;
1428                 tf->lbal = block & 0xff;
1429
1430                 tf->device |= ATA_LBA;
1431         } else {
1432                 /* CHS */
1433                 u32 sect, head, cyl, track;
1434
1435                 if (!lba_28_ok(block, n_block))
1436                         goto out_of_range;
1437
1438                 /* Convert LBA to CHS */
1439                 track = (u32)block / dev->sectors;
1440                 cyl   = track / dev->heads;
1441                 head  = track % dev->heads;
1442                 sect  = (u32)block % dev->sectors + 1;
1443
1444                 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
1445                         (u32)block, track, cyl, head, sect);
1446
1447                 /* Check whether the converted CHS can fit.
1448                    Cylinder: 0-65535
1449                    Head: 0-15
1450                    Sector: 1-255*/
1451                 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
1452                         goto out_of_range;
1453
1454                 tf->command = ATA_CMD_VERIFY;
1455                 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
1456                 tf->lbal = sect;
1457                 tf->lbam = cyl;
1458                 tf->lbah = cyl >> 8;
1459                 tf->device |= head;
1460         }
1461
1462         return 0;
1463
1464 invalid_fld:
1465         ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
1466         /* "Invalid field in cbd" */
1467         return 1;
1468
1469 out_of_range:
1470         ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x21, 0x0);
1471         /* "Logical Block Address out of range" */
1472         return 1;
1473
1474 nothing_to_do:
1475         scmd->result = SAM_STAT_GOOD;
1476         return 1;
1477 }
1478
1479 /**
1480  *      ata_scsi_rw_xlat - Translate SCSI r/w command into an ATA one
1481  *      @qc: Storage for translated ATA taskfile
1482  *
1483  *      Converts any of six SCSI read/write commands into the
1484  *      ATA counterpart, including starting sector (LBA),
1485  *      sector count, and taking into account the device's LBA48
1486  *      support.
1487  *
1488  *      Commands %READ_6, %READ_10, %READ_16, %WRITE_6, %WRITE_10, and
1489  *      %WRITE_16 are currently supported.
1490  *
1491  *      LOCKING:
1492  *      spin_lock_irqsave(host lock)
1493  *
1494  *      RETURNS:
1495  *      Zero on success, non-zero on error.
1496  */
1497 static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc)
1498 {
1499         struct scsi_cmnd *scmd = qc->scsicmd;
1500         const u8 *cdb = scmd->cmnd;
1501         unsigned int tf_flags = 0;
1502         u64 block;
1503         u32 n_block;
1504         int rc;
1505
1506         if (cdb[0] == WRITE_10 || cdb[0] == WRITE_6 || cdb[0] == WRITE_16)
1507                 tf_flags |= ATA_TFLAG_WRITE;
1508
1509         /* Calculate the SCSI LBA, transfer length and FUA. */
1510         switch (cdb[0]) {
1511         case READ_10:
1512         case WRITE_10:
1513                 if (unlikely(scmd->cmd_len < 10))
1514                         goto invalid_fld;
1515                 scsi_10_lba_len(cdb, &block, &n_block);
1516                 if (unlikely(cdb[1] & (1 << 3)))
1517                         tf_flags |= ATA_TFLAG_FUA;
1518                 break;
1519         case READ_6:
1520         case WRITE_6:
1521                 if (unlikely(scmd->cmd_len < 6))
1522                         goto invalid_fld;
1523                 scsi_6_lba_len(cdb, &block, &n_block);
1524
1525                 /* for 6-byte r/w commands, transfer length 0
1526                  * means 256 blocks of data, not 0 block.
1527                  */
1528                 if (!n_block)
1529                         n_block = 256;
1530                 break;
1531         case READ_16:
1532         case WRITE_16:
1533                 if (unlikely(scmd->cmd_len < 16))
1534                         goto invalid_fld;
1535                 scsi_16_lba_len(cdb, &block, &n_block);
1536                 if (unlikely(cdb[1] & (1 << 3)))
1537                         tf_flags |= ATA_TFLAG_FUA;
1538                 break;
1539         default:
1540                 DPRINTK("no-byte command\n");
1541                 goto invalid_fld;
1542         }
1543
1544         /* Check and compose ATA command */
1545         if (!n_block)
1546                 /* For 10-byte and 16-byte SCSI R/W commands, transfer
1547                  * length 0 means transfer 0 block of data.
1548                  * However, for ATA R/W commands, sector count 0 means
1549                  * 256 or 65536 sectors, not 0 sectors as in SCSI.
1550                  *
1551                  * WARNING: one or two older ATA drives treat 0 as 0...
1552                  */
1553                 goto nothing_to_do;
1554
1555         qc->flags |= ATA_QCFLAG_IO;
1556         qc->nbytes = n_block * ATA_SECT_SIZE;
1557
1558         rc = ata_build_rw_tf(&qc->tf, qc->dev, block, n_block, tf_flags,
1559                              qc->tag);
1560         if (likely(rc == 0))
1561                 return 0;
1562
1563         if (rc == -ERANGE)
1564                 goto out_of_range;
1565         /* treat all other errors as -EINVAL, fall through */
1566 invalid_fld:
1567         ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
1568         /* "Invalid field in cbd" */
1569         return 1;
1570
1571 out_of_range:
1572         ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x21, 0x0);
1573         /* "Logical Block Address out of range" */
1574         return 1;
1575
1576 nothing_to_do:
1577         scmd->result = SAM_STAT_GOOD;
1578         return 1;
1579 }
1580
1581 static void ata_scsi_qc_complete(struct ata_queued_cmd *qc)
1582 {
1583         struct ata_port *ap = qc->ap;
1584         struct scsi_cmnd *cmd = qc->scsicmd;
1585         u8 *cdb = cmd->cmnd;
1586         int need_sense = (qc->err_mask != 0);
1587
1588         /* For ATA pass thru (SAT) commands, generate a sense block if
1589          * user mandated it or if there's an error.  Note that if we
1590          * generate because the user forced us to, a check condition
1591          * is generated and the ATA register values are returned
1592          * whether the command completed successfully or not. If there
1593          * was no error, SK, ASC and ASCQ will all be zero.
1594          */
1595         if (((cdb[0] == ATA_16) || (cdb[0] == ATA_12)) &&
1596             ((cdb[2] & 0x20) || need_sense)) {
1597                 ata_gen_passthru_sense(qc);
1598         } else {
1599                 if (!need_sense) {
1600                         cmd->result = SAM_STAT_GOOD;
1601                 } else {
1602                         /* TODO: decide which descriptor format to use
1603                          * for 48b LBA devices and call that here
1604                          * instead of the fixed desc, which is only
1605                          * good for smaller LBA (and maybe CHS?)
1606                          * devices.
1607                          */
1608                         ata_gen_ata_sense(qc);
1609                 }
1610         }
1611
1612         /* XXX: track spindown state for spindown skipping and warning */
1613         if (unlikely(qc->tf.command == ATA_CMD_STANDBY ||
1614                      qc->tf.command == ATA_CMD_STANDBYNOW1))
1615                 qc->dev->flags |= ATA_DFLAG_SPUNDOWN;
1616         else if (likely(system_state != SYSTEM_HALT &&
1617                         system_state != SYSTEM_POWER_OFF))
1618                 qc->dev->flags &= ~ATA_DFLAG_SPUNDOWN;
1619
1620         if (need_sense && !ap->ops->error_handler)
1621                 ata_dump_status(ap->print_id, &qc->result_tf);
1622
1623         qc->scsidone(cmd);
1624
1625         ata_qc_free(qc);
1626 }
1627
1628 /**
1629  *      ata_scsi_translate - Translate then issue SCSI command to ATA device
1630  *      @dev: ATA device to which the command is addressed
1631  *      @cmd: SCSI command to execute
1632  *      @done: SCSI command completion function
1633  *      @xlat_func: Actor which translates @cmd to an ATA taskfile
1634  *
1635  *      Our ->queuecommand() function has decided that the SCSI
1636  *      command issued can be directly translated into an ATA
1637  *      command, rather than handled internally.
1638  *
1639  *      This function sets up an ata_queued_cmd structure for the
1640  *      SCSI command, and sends that ata_queued_cmd to the hardware.
1641  *
1642  *      The xlat_func argument (actor) returns 0 if ready to execute
1643  *      ATA command, else 1 to finish translation. If 1 is returned
1644  *      then cmd->result (and possibly cmd->sense_buffer) are assumed
1645  *      to be set reflecting an error condition or clean (early)
1646  *      termination.
1647  *
1648  *      LOCKING:
1649  *      spin_lock_irqsave(host lock)
1650  *
1651  *      RETURNS:
1652  *      0 on success, SCSI_ML_QUEUE_DEVICE_BUSY if the command
1653  *      needs to be deferred.
1654  */
1655 static int ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd,
1656                               void (*done)(struct scsi_cmnd *),
1657                               ata_xlat_func_t xlat_func)
1658 {
1659         struct ata_port *ap = dev->link->ap;
1660         struct ata_queued_cmd *qc;
1661         int rc;
1662
1663         VPRINTK("ENTER\n");
1664
1665         qc = ata_scsi_qc_new(dev, cmd, done);
1666         if (!qc)
1667                 goto err_mem;
1668
1669         /* data is present; dma-map it */
1670         if (cmd->sc_data_direction == DMA_FROM_DEVICE ||
1671             cmd->sc_data_direction == DMA_TO_DEVICE) {
1672                 if (unlikely(scsi_bufflen(cmd) < 1)) {
1673                         ata_dev_printk(dev, KERN_WARNING,
1674                                        "WARNING: zero len r/w req\n");
1675                         goto err_did;
1676                 }
1677
1678                 ata_sg_init(qc, scsi_sglist(cmd), scsi_sg_count(cmd));
1679
1680                 qc->dma_dir = cmd->sc_data_direction;
1681         }
1682
1683         qc->complete_fn = ata_scsi_qc_complete;
1684
1685         if (xlat_func(qc))
1686                 goto early_finish;
1687
1688         if (ap->ops->qc_defer) {
1689                 if ((rc = ap->ops->qc_defer(qc)))
1690                         goto defer;
1691         }
1692
1693         /* select device, send command to hardware */
1694         ata_qc_issue(qc);
1695
1696         VPRINTK("EXIT\n");
1697         return 0;
1698
1699 early_finish:
1700         ata_qc_free(qc);
1701         qc->scsidone(cmd);
1702         DPRINTK("EXIT - early finish (good or error)\n");
1703         return 0;
1704
1705 err_did:
1706         ata_qc_free(qc);
1707         cmd->result = (DID_ERROR << 16);
1708         qc->scsidone(cmd);
1709 err_mem:
1710         DPRINTK("EXIT - internal\n");
1711         return 0;
1712
1713 defer:
1714         ata_qc_free(qc);
1715         DPRINTK("EXIT - defer\n");
1716         if (rc == ATA_DEFER_LINK)
1717                 return SCSI_MLQUEUE_DEVICE_BUSY;
1718         else
1719                 return SCSI_MLQUEUE_HOST_BUSY;
1720 }
1721
1722 /**
1723  *      ata_scsi_rbuf_get - Map response buffer.
1724  *      @cmd: SCSI command containing buffer to be mapped.
1725  *      @flags: unsigned long variable to store irq enable status
1726  *      @copy_in: copy in from user buffer
1727  *
1728  *      Prepare buffer for simulated SCSI commands.
1729  *
1730  *      LOCKING:
1731  *      spin_lock_irqsave(ata_scsi_rbuf_lock) on success
1732  *
1733  *      RETURNS:
1734  *      Pointer to response buffer.
1735  */
1736 static void *ata_scsi_rbuf_get(struct scsi_cmnd *cmd, bool copy_in,
1737                                unsigned long *flags)
1738 {
1739         spin_lock_irqsave(&ata_scsi_rbuf_lock, *flags);
1740
1741         memset(ata_scsi_rbuf, 0, ATA_SCSI_RBUF_SIZE);
1742         if (copy_in)
1743                 sg_copy_to_buffer(scsi_sglist(cmd), scsi_sg_count(cmd),
1744                                   ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE);
1745         return ata_scsi_rbuf;
1746 }
1747
1748 /**
1749  *      ata_scsi_rbuf_put - Unmap response buffer.
1750  *      @cmd: SCSI command containing buffer to be unmapped.
1751  *      @copy_out: copy out result
1752  *      @flags: @flags passed to ata_scsi_rbuf_get()
1753  *
1754  *      Returns rbuf buffer.  The result is copied to @cmd's buffer if
1755  *      @copy_back is true.
1756  *
1757  *      LOCKING:
1758  *      Unlocks ata_scsi_rbuf_lock.
1759  */
1760 static inline void ata_scsi_rbuf_put(struct scsi_cmnd *cmd, bool copy_out,
1761                                      unsigned long *flags)
1762 {
1763         if (copy_out)
1764                 sg_copy_from_buffer(scsi_sglist(cmd), scsi_sg_count(cmd),
1765                                     ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE);
1766         spin_unlock_irqrestore(&ata_scsi_rbuf_lock, *flags);
1767 }
1768
1769 /**
1770  *      ata_scsi_rbuf_fill - wrapper for SCSI command simulators
1771  *      @args: device IDENTIFY data / SCSI command of interest.
1772  *      @actor: Callback hook for desired SCSI command simulator
1773  *
1774  *      Takes care of the hard work of simulating a SCSI command...
1775  *      Mapping the response buffer, calling the command's handler,
1776  *      and handling the handler's return value.  This return value
1777  *      indicates whether the handler wishes the SCSI command to be
1778  *      completed successfully (0), or not (in which case cmd->result
1779  *      and sense buffer are assumed to be set).
1780  *
1781  *      LOCKING:
1782  *      spin_lock_irqsave(host lock)
1783  */
1784 static void ata_scsi_rbuf_fill(struct ata_scsi_args *args,
1785                 unsigned int (*actor)(struct ata_scsi_args *args, u8 *rbuf))
1786 {
1787         u8 *rbuf;
1788         unsigned int rc;
1789         struct scsi_cmnd *cmd = args->cmd;
1790         unsigned long flags;
1791
1792         rbuf = ata_scsi_rbuf_get(cmd, false, &flags);
1793         rc = actor(args, rbuf);
1794         ata_scsi_rbuf_put(cmd, rc == 0, &flags);
1795
1796         if (rc == 0)
1797                 cmd->result = SAM_STAT_GOOD;
1798         args->done(cmd);
1799 }
1800
1801 /**
1802  *      ata_scsiop_inq_std - Simulate INQUIRY command
1803  *      @args: device IDENTIFY data / SCSI command of interest.
1804  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1805  *
1806  *      Returns standard device identification data associated
1807  *      with non-VPD INQUIRY command output.
1808  *
1809  *      LOCKING:
1810  *      spin_lock_irqsave(host lock)
1811  */
1812 static unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf)
1813 {
1814         const u8 versions[] = {
1815                 0x60,   /* SAM-3 (no version claimed) */
1816
1817                 0x03,
1818                 0x20,   /* SBC-2 (no version claimed) */
1819
1820                 0x02,
1821                 0x60    /* SPC-3 (no version claimed) */
1822         };
1823         u8 hdr[] = {
1824                 TYPE_DISK,
1825                 0,
1826                 0x5,    /* claim SPC-3 version compatibility */
1827                 2,
1828                 95 - 4
1829         };
1830
1831         VPRINTK("ENTER\n");
1832
1833         /* set scsi removeable (RMB) bit per ata bit */
1834         if (ata_id_removeable(args->id))
1835                 hdr[1] |= (1 << 7);
1836
1837         memcpy(rbuf, hdr, sizeof(hdr));
1838         memcpy(&rbuf[8], "ATA     ", 8);
1839         ata_id_string(args->id, &rbuf[16], ATA_ID_PROD, 16);
1840         ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4);
1841
1842         if (rbuf[32] == 0 || rbuf[32] == ' ')
1843                 memcpy(&rbuf[32], "n/a ", 4);
1844
1845         memcpy(rbuf + 59, versions, sizeof(versions));
1846
1847         return 0;
1848 }
1849
1850 /**
1851  *      ata_scsiop_inq_00 - Simulate INQUIRY VPD page 0, list of pages
1852  *      @args: device IDENTIFY data / SCSI command of interest.
1853  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1854  *
1855  *      Returns list of inquiry VPD pages available.
1856  *
1857  *      LOCKING:
1858  *      spin_lock_irqsave(host lock)
1859  */
1860 static unsigned int ata_scsiop_inq_00(struct ata_scsi_args *args, u8 *rbuf)
1861 {
1862         const u8 pages[] = {
1863                 0x00,   /* page 0x00, this page */
1864                 0x80,   /* page 0x80, unit serial no page */
1865                 0x83,   /* page 0x83, device ident page */
1866                 0x89,   /* page 0x89, ata info page */
1867                 0xb1,   /* page 0xb1, block device characteristics page */
1868         };
1869
1870         rbuf[3] = sizeof(pages);        /* number of supported VPD pages */
1871         memcpy(rbuf + 4, pages, sizeof(pages));
1872         return 0;
1873 }
1874
1875 /**
1876  *      ata_scsiop_inq_80 - Simulate INQUIRY VPD page 80, device serial number
1877  *      @args: device IDENTIFY data / SCSI command of interest.
1878  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1879  *
1880  *      Returns ATA device serial number.
1881  *
1882  *      LOCKING:
1883  *      spin_lock_irqsave(host lock)
1884  */
1885 static unsigned int ata_scsiop_inq_80(struct ata_scsi_args *args, u8 *rbuf)
1886 {
1887         const u8 hdr[] = {
1888                 0,
1889                 0x80,                   /* this page code */
1890                 0,
1891                 ATA_ID_SERNO_LEN,       /* page len */
1892         };
1893
1894         memcpy(rbuf, hdr, sizeof(hdr));
1895         ata_id_string(args->id, (unsigned char *) &rbuf[4],
1896                       ATA_ID_SERNO, ATA_ID_SERNO_LEN);
1897         return 0;
1898 }
1899
1900 /**
1901  *      ata_scsiop_inq_83 - Simulate INQUIRY VPD page 83, device identity
1902  *      @args: device IDENTIFY data / SCSI command of interest.
1903  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1904  *
1905  *      Yields two logical unit device identification designators:
1906  *       - vendor specific ASCII containing the ATA serial number
1907  *       - SAT defined "t10 vendor id based" containing ASCII vendor
1908  *         name ("ATA     "), model and serial numbers.
1909  *
1910  *      LOCKING:
1911  *      spin_lock_irqsave(host lock)
1912  */
1913 static unsigned int ata_scsiop_inq_83(struct ata_scsi_args *args, u8 *rbuf)
1914 {
1915         const int sat_model_serial_desc_len = 68;
1916         int num;
1917
1918         rbuf[1] = 0x83;                 /* this page code */
1919         num = 4;
1920
1921         /* piv=0, assoc=lu, code_set=ACSII, designator=vendor */
1922         rbuf[num + 0] = 2;
1923         rbuf[num + 3] = ATA_ID_SERNO_LEN;
1924         num += 4;
1925         ata_id_string(args->id, (unsigned char *) rbuf + num,
1926                       ATA_ID_SERNO, ATA_ID_SERNO_LEN);
1927         num += ATA_ID_SERNO_LEN;
1928
1929         /* SAT defined lu model and serial numbers descriptor */
1930         /* piv=0, assoc=lu, code_set=ACSII, designator=t10 vendor id */
1931         rbuf[num + 0] = 2;
1932         rbuf[num + 1] = 1;
1933         rbuf[num + 3] = sat_model_serial_desc_len;
1934         num += 4;
1935         memcpy(rbuf + num, "ATA     ", 8);
1936         num += 8;
1937         ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_PROD,
1938                       ATA_ID_PROD_LEN);
1939         num += ATA_ID_PROD_LEN;
1940         ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_SERNO,
1941                       ATA_ID_SERNO_LEN);
1942         num += ATA_ID_SERNO_LEN;
1943
1944         rbuf[3] = num - 4;    /* page len (assume less than 256 bytes) */
1945         return 0;
1946 }
1947
1948 /**
1949  *      ata_scsiop_inq_89 - Simulate INQUIRY VPD page 89, ATA info
1950  *      @args: device IDENTIFY data / SCSI command of interest.
1951  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1952  *
1953  *      Yields SAT-specified ATA VPD page.
1954  *
1955  *      LOCKING:
1956  *      spin_lock_irqsave(host lock)
1957  */
1958 static unsigned int ata_scsiop_inq_89(struct ata_scsi_args *args, u8 *rbuf)
1959 {
1960         struct ata_taskfile tf;
1961
1962         memset(&tf, 0, sizeof(tf));
1963
1964         rbuf[1] = 0x89;                 /* our page code */
1965         rbuf[2] = (0x238 >> 8);         /* page size fixed at 238h */
1966         rbuf[3] = (0x238 & 0xff);
1967
1968         memcpy(&rbuf[8], "linux   ", 8);
1969         memcpy(&rbuf[16], "libata          ", 16);
1970         memcpy(&rbuf[32], DRV_VERSION, 4);
1971         ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4);
1972
1973         /* we don't store the ATA device signature, so we fake it */
1974
1975         tf.command = ATA_DRDY;          /* really, this is Status reg */
1976         tf.lbal = 0x1;
1977         tf.nsect = 0x1;
1978
1979         ata_tf_to_fis(&tf, 0, 1, &rbuf[36]);    /* TODO: PMP? */
1980         rbuf[36] = 0x34;                /* force D2H Reg FIS (34h) */
1981
1982         rbuf[56] = ATA_CMD_ID_ATA;
1983
1984         memcpy(&rbuf[60], &args->id[0], 512);
1985         return 0;
1986 }
1987
1988 static unsigned int ata_scsiop_inq_b1(struct ata_scsi_args *args, u8 *rbuf)
1989 {
1990         rbuf[1] = 0xb1;
1991         rbuf[3] = 0x3c;
1992         if (ata_id_major_version(args->id) > 7) {
1993                 rbuf[4] = args->id[217] >> 8;
1994                 rbuf[5] = args->id[217];
1995                 rbuf[7] = args->id[168] & 0xf;
1996         }
1997
1998         return 0;
1999 }
2000
2001 /**
2002  *      ata_scsiop_noop - Command handler that simply returns success.
2003  *      @args: device IDENTIFY data / SCSI command of interest.
2004  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
2005  *
2006  *      No operation.  Simply returns success to caller, to indicate
2007  *      that the caller should successfully complete this SCSI command.
2008  *
2009  *      LOCKING:
2010  *      spin_lock_irqsave(host lock)
2011  */
2012 static unsigned int ata_scsiop_noop(struct ata_scsi_args *args, u8 *rbuf)
2013 {
2014         VPRINTK("ENTER\n");
2015         return 0;
2016 }
2017
2018 /**
2019  *      ata_msense_caching - Simulate MODE SENSE caching info page
2020  *      @id: device IDENTIFY data
2021  *      @buf: output buffer
2022  *
2023  *      Generate a caching info page, which conditionally indicates
2024  *      write caching to the SCSI layer, depending on device
2025  *      capabilities.
2026  *
2027  *      LOCKING:
2028  *      None.
2029  */
2030 static unsigned int ata_msense_caching(u16 *id, u8 *buf)
2031 {
2032         memcpy(buf, def_cache_mpage, sizeof(def_cache_mpage));
2033         if (ata_id_wcache_enabled(id))
2034                 buf[2] |= (1 << 2);     /* write cache enable */
2035         if (!ata_id_rahead_enabled(id))
2036                 buf[12] |= (1 << 5);    /* disable read ahead */
2037         return sizeof(def_cache_mpage);
2038 }
2039
2040 /**
2041  *      ata_msense_ctl_mode - Simulate MODE SENSE control mode page
2042  *      @buf: output buffer
2043  *
2044  *      Generate a generic MODE SENSE control mode page.
2045  *
2046  *      LOCKING:
2047  *      None.
2048  */
2049 static unsigned int ata_msense_ctl_mode(u8 *buf)
2050 {
2051         memcpy(buf, def_control_mpage, sizeof(def_control_mpage));
2052         return sizeof(def_control_mpage);
2053 }
2054
2055 /**
2056  *      ata_msense_rw_recovery - Simulate MODE SENSE r/w error recovery page
2057  *      @buf: output buffer
2058  *
2059  *      Generate a generic MODE SENSE r/w error recovery page.
2060  *
2061  *      LOCKING:
2062  *      None.
2063  */
2064 static unsigned int ata_msense_rw_recovery(u8 *buf)
2065 {
2066         memcpy(buf, def_rw_recovery_mpage, sizeof(def_rw_recovery_mpage));
2067         return sizeof(def_rw_recovery_mpage);
2068 }
2069
2070 /*
2071  * We can turn this into a real blacklist if it's needed, for now just
2072  * blacklist any Maxtor BANC1G10 revision firmware
2073  */
2074 static int ata_dev_supports_fua(u16 *id)
2075 {
2076         unsigned char model[ATA_ID_PROD_LEN + 1], fw[ATA_ID_FW_REV_LEN + 1];
2077
2078         if (!libata_fua)
2079                 return 0;
2080         if (!ata_id_has_fua(id))
2081                 return 0;
2082
2083         ata_id_c_string(id, model, ATA_ID_PROD, sizeof(model));
2084         ata_id_c_string(id, fw, ATA_ID_FW_REV, sizeof(fw));
2085
2086         if (strcmp(model, "Maxtor"))
2087                 return 1;
2088         if (strcmp(fw, "BANC1G10"))
2089                 return 1;
2090
2091         return 0; /* blacklisted */
2092 }
2093
2094 /**
2095  *      ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands
2096  *      @args: device IDENTIFY data / SCSI command of interest.
2097  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
2098  *
2099  *      Simulate MODE SENSE commands. Assume this is invoked for direct
2100  *      access devices (e.g. disks) only. There should be no block
2101  *      descriptor for other device types.
2102  *
2103  *      LOCKING:
2104  *      spin_lock_irqsave(host lock)
2105  */
2106 static unsigned int ata_scsiop_mode_sense(struct ata_scsi_args *args, u8 *rbuf)
2107 {
2108         struct ata_device *dev = args->dev;
2109         u8 *scsicmd = args->cmd->cmnd, *p = rbuf;
2110         const u8 sat_blk_desc[] = {
2111                 0, 0, 0, 0,     /* number of blocks: sat unspecified */
2112                 0,
2113                 0, 0x2, 0x0     /* block length: 512 bytes */
2114         };
2115         u8 pg, spg;
2116         unsigned int ebd, page_control, six_byte;
2117         u8 dpofua;
2118
2119         VPRINTK("ENTER\n");
2120
2121         six_byte = (scsicmd[0] == MODE_SENSE);
2122         ebd = !(scsicmd[1] & 0x8);      /* dbd bit inverted == edb */
2123         /*
2124          * LLBA bit in msense(10) ignored (compliant)
2125          */
2126
2127         page_control = scsicmd[2] >> 6;
2128         switch (page_control) {
2129         case 0: /* current */
2130                 break;  /* supported */
2131         case 3: /* saved */
2132                 goto saving_not_supp;
2133         case 1: /* changeable */
2134         case 2: /* defaults */
2135         default:
2136                 goto invalid_fld;
2137         }
2138
2139         if (six_byte)
2140                 p += 4 + (ebd ? 8 : 0);
2141         else
2142                 p += 8 + (ebd ? 8 : 0);
2143
2144         pg = scsicmd[2] & 0x3f;
2145         spg = scsicmd[3];
2146         /*
2147          * No mode subpages supported (yet) but asking for _all_
2148          * subpages may be valid
2149          */
2150         if (spg && (spg != ALL_SUB_MPAGES))
2151                 goto invalid_fld;
2152
2153         switch(pg) {
2154         case RW_RECOVERY_MPAGE:
2155                 p += ata_msense_rw_recovery(p);
2156                 break;
2157
2158         case CACHE_MPAGE:
2159                 p += ata_msense_caching(args->id, p);
2160                 break;
2161
2162         case CONTROL_MPAGE:
2163                 p += ata_msense_ctl_mode(p);
2164                 break;
2165
2166         case ALL_MPAGES:
2167                 p += ata_msense_rw_recovery(p);
2168                 p += ata_msense_caching(args->id, p);
2169                 p += ata_msense_ctl_mode(p);
2170                 break;
2171
2172         default:                /* invalid page code */
2173                 goto invalid_fld;
2174         }
2175
2176         dpofua = 0;
2177         if (ata_dev_supports_fua(args->id) && (dev->flags & ATA_DFLAG_LBA48) &&
2178             (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count))
2179                 dpofua = 1 << 4;
2180
2181         if (six_byte) {
2182                 rbuf[0] = p - rbuf - 1;
2183                 rbuf[2] |= dpofua;
2184                 if (ebd) {
2185                         rbuf[3] = sizeof(sat_blk_desc);
2186                         memcpy(rbuf + 4, sat_blk_desc, sizeof(sat_blk_desc));
2187                 }
2188         } else {
2189                 unsigned int output_len = p - rbuf - 2;
2190
2191                 rbuf[0] = output_len >> 8;
2192                 rbuf[1] = output_len;
2193                 rbuf[3] |= dpofua;
2194                 if (ebd) {
2195                         rbuf[7] = sizeof(sat_blk_desc);
2196                         memcpy(rbuf + 8, sat_blk_desc, sizeof(sat_blk_desc));
2197                 }
2198         }
2199         return 0;
2200
2201 invalid_fld:
2202         ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x24, 0x0);
2203         /* "Invalid field in cbd" */
2204         return 1;
2205
2206 saving_not_supp:
2207         ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x39, 0x0);
2208          /* "Saving parameters not supported" */
2209         return 1;
2210 }
2211
2212 /**
2213  *      ata_scsiop_read_cap - Simulate READ CAPACITY[ 16] commands
2214  *      @args: device IDENTIFY data / SCSI command of interest.
2215  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
2216  *
2217  *      Simulate READ CAPACITY commands.
2218  *
2219  *      LOCKING:
2220  *      None.
2221  */
2222 static unsigned int ata_scsiop_read_cap(struct ata_scsi_args *args, u8 *rbuf)
2223 {
2224         u64 last_lba = args->dev->n_sectors - 1; /* LBA of the last block */
2225
2226         VPRINTK("ENTER\n");
2227
2228         if (args->cmd->cmnd[0] == READ_CAPACITY) {
2229                 if (last_lba >= 0xffffffffULL)
2230                         last_lba = 0xffffffff;
2231
2232                 /* sector count, 32-bit */
2233                 rbuf[0] = last_lba >> (8 * 3);
2234                 rbuf[1] = last_lba >> (8 * 2);
2235                 rbuf[2] = last_lba >> (8 * 1);
2236                 rbuf[3] = last_lba;
2237
2238                 /* sector size */
2239                 rbuf[6] = ATA_SECT_SIZE >> 8;
2240                 rbuf[7] = ATA_SECT_SIZE & 0xff;
2241         } else {
2242                 /* sector count, 64-bit */
2243                 rbuf[0] = last_lba >> (8 * 7);
2244                 rbuf[1] = last_lba >> (8 * 6);
2245                 rbuf[2] = last_lba >> (8 * 5);
2246                 rbuf[3] = last_lba >> (8 * 4);
2247                 rbuf[4] = last_lba >> (8 * 3);
2248                 rbuf[5] = last_lba >> (8 * 2);
2249                 rbuf[6] = last_lba >> (8 * 1);
2250                 rbuf[7] = last_lba;
2251
2252                 /* sector size */
2253                 rbuf[10] = ATA_SECT_SIZE >> 8;
2254                 rbuf[11] = ATA_SECT_SIZE & 0xff;
2255         }
2256
2257         return 0;
2258 }
2259
2260 /**
2261  *      ata_scsiop_report_luns - Simulate REPORT LUNS command
2262  *      @args: device IDENTIFY data / SCSI command of interest.
2263  *      @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
2264  *
2265  *      Simulate REPORT LUNS command.
2266  *
2267  *      LOCKING:
2268  *      spin_lock_irqsave(host lock)
2269  */
2270 static unsigned int ata_scsiop_report_luns(struct ata_scsi_args *args, u8 *rbuf)
2271 {
2272         VPRINTK("ENTER\n");
2273         rbuf[3] = 8;    /* just one lun, LUN 0, size 8 bytes */
2274
2275         return 0;
2276 }
2277
2278 static void atapi_sense_complete(struct ata_queued_cmd *qc)
2279 {
2280         if (qc->err_mask && ((qc->err_mask & AC_ERR_DEV) == 0)) {
2281                 /* FIXME: not quite right; we don't want the
2282                  * translation of taskfile registers into
2283                  * a sense descriptors, since that's only
2284                  * correct for ATA, not ATAPI
2285                  */
2286                 ata_gen_passthru_sense(qc);
2287         }
2288
2289         qc->scsidone(qc->scsicmd);
2290         ata_qc_free(qc);
2291 }
2292
2293 /* is it pointless to prefer PIO for "safety reasons"? */
2294 static inline int ata_pio_use_silly(struct ata_port *ap)
2295 {
2296         return (ap->flags & ATA_FLAG_PIO_DMA);
2297 }
2298
2299 static void atapi_request_sense(struct ata_queued_cmd *qc)
2300 {
2301         struct ata_port *ap = qc->ap;
2302         struct scsi_cmnd *cmd = qc->scsicmd;
2303
2304         DPRINTK("ATAPI request sense\n");
2305
2306         /* FIXME: is this needed? */
2307         memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
2308
2309 #ifdef CONFIG_ATA_SFF
2310         if (ap->ops->sff_tf_read)
2311                 ap->ops->sff_tf_read(ap, &qc->tf);
2312 #endif
2313
2314         /* fill these in, for the case where they are -not- overwritten */
2315         cmd->sense_buffer[0] = 0x70;
2316         cmd->sense_buffer[2] = qc->tf.feature >> 4;
2317
2318         ata_qc_reinit(qc);
2319
2320         /* setup sg table and init transfer direction */
2321         sg_init_one(&qc->sgent, cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE);
2322         ata_sg_init(qc, &qc->sgent, 1);
2323         qc->dma_dir = DMA_FROM_DEVICE;
2324
2325         memset(&qc->cdb, 0, qc->dev->cdb_len);
2326         qc->cdb[0] = REQUEST_SENSE;
2327         qc->cdb[4] = SCSI_SENSE_BUFFERSIZE;
2328
2329         qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2330         qc->tf.command = ATA_CMD_PACKET;
2331
2332         if (ata_pio_use_silly(ap)) {
2333                 qc->tf.protocol = ATAPI_PROT_DMA;
2334                 qc->tf.feature |= ATAPI_PKT_DMA;
2335         } else {
2336                 qc->tf.protocol = ATAPI_PROT_PIO;
2337                 qc->tf.lbam = SCSI_SENSE_BUFFERSIZE;
2338                 qc->tf.lbah = 0;
2339         }
2340         qc->nbytes = SCSI_SENSE_BUFFERSIZE;
2341
2342         qc->complete_fn = atapi_sense_complete;
2343
2344         ata_qc_issue(qc);
2345
2346         DPRINTK("EXIT\n");
2347 }
2348
2349 static void atapi_qc_complete(struct ata_queued_cmd *qc)
2350 {
2351         struct scsi_cmnd *cmd = qc->scsicmd;
2352         unsigned int err_mask = qc->err_mask;
2353
2354         VPRINTK("ENTER, err_mask 0x%X\n", err_mask);
2355
2356         /* handle completion from new EH */
2357         if (unlikely(qc->ap->ops->error_handler &&
2358                      (err_mask || qc->flags & ATA_QCFLAG_SENSE_VALID))) {
2359
2360                 if (!(qc->flags & ATA_QCFLAG_SENSE_VALID)) {
2361                         /* FIXME: not quite right; we don't want the
2362                          * translation of taskfile registers into a
2363                          * sense descriptors, since that's only
2364                          * correct for ATA, not ATAPI
2365                          */
2366                         ata_gen_passthru_sense(qc);
2367                 }
2368
2369                 /* SCSI EH automatically locks door if sdev->locked is
2370                  * set.  Sometimes door lock request continues to
2371                  * fail, for example, when no media is present.  This
2372                  * creates a loop - SCSI EH issues door lock which
2373                  * fails and gets invoked again to acquire sense data
2374                  * for the failed command.
2375                  *
2376                  * If door lock fails, always clear sdev->locked to
2377                  * avoid this infinite loop.
2378                  */
2379                 if (qc->cdb[0] == ALLOW_MEDIUM_REMOVAL)
2380                         qc->dev->sdev->locked = 0;
2381
2382                 qc->scsicmd->result = SAM_STAT_CHECK_CONDITION;
2383                 qc->scsidone(cmd);
2384                 ata_qc_free(qc);
2385                 return;
2386         }
2387
2388         /* successful completion or old EH failure path */
2389         if (unlikely(err_mask & AC_ERR_DEV)) {
2390                 cmd->result = SAM_STAT_CHECK_CONDITION;
2391                 atapi_request_sense(qc);
2392                 return;
2393         } else if (unlikely(err_mask)) {
2394                 /* FIXME: not quite right; we don't want the
2395                  * translation of taskfile registers into
2396                  * a sense descriptors, since that's only
2397                  * correct for ATA, not ATAPI
2398                  */
2399                 ata_gen_passthru_sense(qc);
2400         } else {
2401                 u8 *scsicmd = cmd->cmnd;
2402
2403                 if ((scsicmd[0] == INQUIRY) && ((scsicmd[1] & 0x03) == 0)) {
2404                         unsigned long flags;
2405                         u8 *buf;
2406
2407                         buf = ata_scsi_rbuf_get(cmd, true, &flags);
2408
2409         /* ATAPI devices typically report zero for their SCSI version,
2410          * and sometimes deviate from the spec WRT response data
2411          * format.  If SCSI version is reported as zero like normal,
2412          * then we make the following fixups:  1) Fake MMC-5 version,
2413          * to indicate to the Linux scsi midlayer this is a modern
2414          * device.  2) Ensure response data format / ATAPI information
2415          * are always correct.
2416          */
2417                         if (buf[2] == 0) {
2418                                 buf[2] = 0x5;
2419                                 buf[3] = 0x32;
2420                         }
2421
2422                         ata_scsi_rbuf_put(cmd, true, &flags);
2423                 }
2424
2425                 cmd->result = SAM_STAT_GOOD;
2426         }
2427
2428         qc->scsidone(cmd);
2429         ata_qc_free(qc);
2430 }
2431 /**
2432  *      atapi_xlat - Initialize PACKET taskfile
2433  *      @qc: command structure to be initialized
2434  *
2435  *      LOCKING:
2436  *      spin_lock_irqsave(host lock)
2437  *
2438  *      RETURNS:
2439  *      Zero on success, non-zero on failure.
2440  */
2441 static unsigned int atapi_xlat(struct ata_queued_cmd *qc)
2442 {
2443         struct scsi_cmnd *scmd = qc->scsicmd;
2444         struct ata_device *dev = qc->dev;
2445         int nodata = (scmd->sc_data_direction == DMA_NONE);
2446         int using_pio = !nodata && (dev->flags & ATA_DFLAG_PIO);
2447         unsigned int nbytes;
2448
2449         memset(qc->cdb, 0, dev->cdb_len);
2450         memcpy(qc->cdb, scmd->cmnd, scmd->cmd_len);
2451
2452         qc->complete_fn = atapi_qc_complete;
2453
2454         qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2455         if (scmd->sc_data_direction == DMA_TO_DEVICE) {
2456                 qc->tf.flags |= ATA_TFLAG_WRITE;
2457                 DPRINTK("direction: write\n");
2458         }
2459
2460         qc->tf.command = ATA_CMD_PACKET;
2461         ata_qc_set_pc_nbytes(qc);
2462
2463         /* check whether ATAPI DMA is safe */
2464         if (!nodata && !using_pio && atapi_check_dma(qc))
2465                 using_pio = 1;
2466
2467         /* Some controller variants snoop this value for Packet
2468          * transfers to do state machine and FIFO management.  Thus we
2469          * want to set it properly, and for DMA where it is
2470          * effectively meaningless.
2471          */
2472         nbytes = min(ata_qc_raw_nbytes(qc), (unsigned int)63 * 1024);
2473
2474         /* Most ATAPI devices which honor transfer chunk size don't
2475          * behave according to the spec when odd chunk size which
2476          * matches the transfer length is specified.  If the number of
2477          * bytes to transfer is 2n+1.  According to the spec, what
2478          * should happen is to indicate that 2n+1 is going to be
2479          * transferred and transfer 2n+2 bytes where the last byte is
2480          * padding.
2481          *
2482          * In practice, this doesn't happen.  ATAPI devices first
2483          * indicate and transfer 2n bytes and then indicate and
2484          * transfer 2 bytes where the last byte is padding.
2485          *
2486          * This inconsistency confuses several controllers which
2487          * perform PIO using DMA such as Intel AHCIs and sil3124/32.
2488          * These controllers use actual number of transferred bytes to
2489          * update DMA poitner and transfer of 4n+2 bytes make those
2490          * controller push DMA pointer by 4n+4 bytes because SATA data
2491          * FISes are aligned to 4 bytes.  This causes data corruption
2492          * and buffer overrun.
2493          *
2494          * Always setting nbytes to even number solves this problem
2495          * because then ATAPI devices don't have to split data at 2n
2496          * boundaries.
2497          */
2498         if (nbytes & 0x1)
2499                 nbytes++;
2500
2501         qc->tf.lbam = (nbytes & 0xFF);
2502         qc->tf.lbah = (nbytes >> 8);
2503
2504         if (nodata)
2505                 qc->tf.protocol = ATAPI_PROT_NODATA;
2506         else if (using_pio)
2507                 qc->tf.protocol = ATAPI_PROT_PIO;
2508         else {
2509                 /* DMA data xfer */
2510                 qc->tf.protocol = ATAPI_PROT_DMA;
2511                 qc->tf.feature |= ATAPI_PKT_DMA;
2512
2513                 if ((dev->flags & ATA_DFLAG_DMADIR) &&
2514                     (scmd->sc_data_direction != DMA_TO_DEVICE))
2515                         /* some SATA bridges need us to indicate data xfer direction */
2516                         qc->tf.feature |= ATAPI_DMADIR;
2517         }
2518
2519
2520         /* FIXME: We need to translate 0x05 READ_BLOCK_LIMITS to a MODE_SENSE
2521            as ATAPI tape drives don't get this right otherwise */
2522         return 0;
2523 }
2524
2525 static struct ata_device *ata_find_dev(struct ata_port *ap, int devno)
2526 {
2527         if (!sata_pmp_attached(ap)) {
2528                 if (likely(devno < ata_link_max_devices(&ap->link)))
2529                         return &ap->link.device[devno];
2530         } else {
2531                 if (likely(devno < ap->nr_pmp_links))
2532                         return &ap->pmp_link[devno].device[0];
2533         }
2534
2535         return NULL;
2536 }
2537
2538 static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap,
2539                                               const struct scsi_device *scsidev)
2540 {
2541         int devno;
2542
2543         /* skip commands not addressed to targets we simulate */
2544         if (!sata_pmp_attached(ap)) {
2545                 if (unlikely(scsidev->channel || scsidev->lun))
2546                         return NULL;
2547                 devno = scsidev->id;
2548         } else {
2549                 if (unlikely(scsidev->id || scsidev->lun))
2550                         return NULL;
2551                 devno = scsidev->channel;
2552         }
2553
2554         return ata_find_dev(ap, devno);
2555 }
2556
2557 /**
2558  *      ata_scsi_find_dev - lookup ata_device from scsi_cmnd
2559  *      @ap: ATA port to which the device is attached
2560  *      @scsidev: SCSI device from which we derive the ATA device
2561  *
2562  *      Given various information provided in struct scsi_cmnd,
2563  *      map that onto an ATA bus, and using that mapping
2564  *      determine which ata_device is associated with the
2565  *      SCSI command to be sent.
2566  *
2567  *      LOCKING:
2568  *      spin_lock_irqsave(host lock)
2569  *
2570  *      RETURNS:
2571  *      Associated ATA device, or %NULL if not found.
2572  */
2573 static struct ata_device *
2574 ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev)
2575 {
2576         struct ata_device *dev = __ata_scsi_find_dev(ap, scsidev);
2577
2578         if (unlikely(!dev || !ata_dev_enabled(dev)))
2579                 return NULL;
2580
2581         return dev;
2582 }
2583
2584 /*
2585  *      ata_scsi_map_proto - Map pass-thru protocol value to taskfile value.
2586  *      @byte1: Byte 1 from pass-thru CDB.
2587  *
2588  *      RETURNS:
2589  *      ATA_PROT_UNKNOWN if mapping failed/unimplemented, protocol otherwise.
2590  */
2591 static u8
2592 ata_scsi_map_proto(u8 byte1)
2593 {
2594         switch((byte1 & 0x1e) >> 1) {
2595         case 3:         /* Non-data */
2596                 return ATA_PROT_NODATA;
2597
2598         case 6:         /* DMA */
2599         case 10:        /* UDMA Data-in */
2600         case 11:        /* UDMA Data-Out */
2601                 return ATA_PROT_DMA;
2602
2603         case 4:         /* PIO Data-in */
2604         case 5:         /* PIO Data-out */
2605                 return ATA_PROT_PIO;
2606
2607         case 0:         /* Hard Reset */
2608         case 1:         /* SRST */
2609         case 8:         /* Device Diagnostic */
2610         case 9:         /* Device Reset */
2611         case 7:         /* DMA Queued */
2612         case 12:        /* FPDMA */
2613         case 15:        /* Return Response Info */
2614         default:        /* Reserved */
2615                 break;
2616         }
2617
2618         return ATA_PROT_UNKNOWN;
2619 }
2620
2621 /**
2622  *      ata_scsi_pass_thru - convert ATA pass-thru CDB to taskfile
2623  *      @qc: command structure to be initialized
2624  *
2625  *      Handles either 12 or 16-byte versions of the CDB.
2626  *
2627  *      RETURNS:
2628  *      Zero on success, non-zero on failure.
2629  */
2630 static unsigned int ata_scsi_pass_thru(struct ata_queued_cmd *qc)
2631 {
2632         struct ata_taskfile *tf = &(qc->tf);
2633         struct scsi_cmnd *scmd = qc->scsicmd;
2634         struct ata_device *dev = qc->dev;
2635         const u8 *cdb = scmd->cmnd;
2636
2637         if ((tf->protocol = ata_scsi_map_proto(cdb[1])) == ATA_PROT_UNKNOWN)
2638                 goto invalid_fld;
2639
2640         /*
2641          * Filter TPM commands by default. These provide an
2642          * essentially uncontrolled encrypted "back door" between
2643          * applications and the disk. Set libata.allow_tpm=1 if you
2644          * have a real reason for wanting to use them. This ensures
2645          * that installed software cannot easily mess stuff up without
2646          * user intent. DVR type users will probably ship with this enabled
2647          * for movie content management.
2648          *
2649          * Note that for ATA8 we can issue a DCS change and DCS freeze lock
2650          * for this and should do in future but that it is not sufficient as
2651          * DCS is an optional feature set. Thus we also do the software filter
2652          * so that we comply with the TC consortium stated goal that the user
2653          * can turn off TC features of their system.
2654          */
2655         if (tf->command >= 0x5C && tf->command <= 0x5F && !libata_allow_tpm)
2656                 goto invalid_fld;
2657
2658         /* We may not issue DMA commands if no DMA mode is set */
2659         if (tf->protocol == ATA_PROT_DMA && dev->dma_mode == 0)
2660                 goto invalid_fld;
2661
2662         /*
2663          * 12 and 16 byte CDBs use different offsets to
2664          * provide the various register values.
2665          */
2666         if (cdb[0] == ATA_16) {
2667                 /*
2668                  * 16-byte CDB - may contain extended commands.
2669                  *
2670                  * If that is the case, copy the upper byte register values.
2671                  */
2672                 if (cdb[1] & 0x01) {
2673                         tf->hob_feature = cdb[3];
2674                         tf->hob_nsect = cdb[5];
2675                         tf->hob_lbal = cdb[7];
2676                         tf->hob_lbam = cdb[9];
2677                         tf->hob_lbah = cdb[11];
2678                         tf->flags |= ATA_TFLAG_LBA48;
2679                 } else
2680                         tf->flags &= ~ATA_TFLAG_LBA48;
2681
2682                 /*
2683                  * Always copy low byte, device and command registers.
2684                  */
2685                 tf->feature = cdb[4];
2686                 tf->nsect = cdb[6];
2687                 tf->lbal = cdb[8];
2688                 tf->lbam = cdb[10];
2689                 tf->lbah = cdb[12];
2690                 tf->device = cdb[13];
2691                 tf->command = cdb[14];
2692         } else {
2693                 /*
2694                  * 12-byte CDB - incapable of extended commands.
2695                  */
2696                 tf->flags &= ~ATA_TFLAG_LBA48;
2697
2698                 tf->feature = cdb[3];
2699                 tf->nsect = cdb[4];
2700                 tf->lbal = cdb[5];
2701                 tf->lbam = cdb[6];
2702                 tf->lbah = cdb[7];
2703                 tf->device = cdb[8];
2704                 tf->command = cdb[9];
2705         }
2706
2707         /* enforce correct master/slave bit */
2708         tf->device = dev->devno ?
2709                 tf->device | ATA_DEV1 : tf->device & ~ATA_DEV1;
2710
2711         /* sanity check for pio multi commands */
2712         if ((cdb[1] & 0xe0) && !is_multi_taskfile(tf))
2713                 goto invalid_fld;
2714
2715         if (is_multi_taskfile(tf)) {
2716                 unsigned int multi_count = 1 << (cdb[1] >> 5);
2717
2718                 /* compare the passed through multi_count
2719                  * with the cached multi_count of libata
2720                  */
2721                 if (multi_count != dev->multi_count)
2722                         ata_dev_printk(dev, KERN_WARNING,
2723                                        "invalid multi_count %u ignored\n",
2724                                        multi_count);
2725         }
2726
2727         /* READ/WRITE LONG use a non-standard sect_size */
2728         qc->sect_size = ATA_SECT_SIZE;
2729         switch (tf->command) {
2730         case ATA_CMD_READ_LONG:
2731         case ATA_CMD_READ_LONG_ONCE:
2732         case ATA_CMD_WRITE_LONG:
2733         case ATA_CMD_WRITE_LONG_ONCE:
2734                 if (tf->protocol != ATA_PROT_PIO || tf->nsect != 1)
2735                         goto invalid_fld;
2736                 qc->sect_size = scsi_bufflen(scmd);
2737         }
2738
2739         /*
2740          * Filter SET_FEATURES - XFER MODE command -- otherwise,
2741          * SET_FEATURES - XFER MODE must be preceded/succeeded
2742          * by an update to hardware-specific registers for each
2743          * controller (i.e. the reason for ->set_piomode(),
2744          * ->set_dmamode(), and ->post_set_mode() hooks).
2745          */
2746         if ((tf->command == ATA_CMD_SET_FEATURES)
2747          && (tf->feature == SETFEATURES_XFER))
2748                 goto invalid_fld;
2749
2750         /*
2751          * Set flags so that all registers will be written,
2752          * and pass on write indication (used for PIO/DMA
2753          * setup.)
2754          */
2755         tf->flags |= (ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE);
2756
2757         if (scmd->sc_data_direction == DMA_TO_DEVICE)
2758                 tf->flags |= ATA_TFLAG_WRITE;
2759
2760         /*
2761          * Set transfer length.
2762          *
2763          * TODO: find out if we need to do more here to
2764          *       cover scatter/gather case.
2765          */
2766         ata_qc_set_pc_nbytes(qc);
2767
2768         /* request result TF and be quiet about device error */
2769         qc->flags |= ATA_QCFLAG_RESULT_TF | ATA_QCFLAG_QUIET;
2770
2771         return 0;
2772
2773  invalid_fld:
2774         ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x00);
2775         /* "Invalid field in cdb" */
2776         return 1;
2777 }
2778
2779 /**
2780  *      ata_get_xlat_func - check if SCSI to ATA translation is possible
2781  *      @dev: ATA device
2782  *      @cmd: SCSI command opcode to consider
2783  *
2784  *      Look up the SCSI command given, and determine whether the
2785  *      SCSI command is to be translated or simulated.
2786  *
2787  *      RETURNS:
2788  *      Pointer to translation function if possible, %NULL if not.
2789  */
2790
2791 static inline ata_xlat_func_t ata_get_xlat_func(struct ata_device *dev, u8 cmd)
2792 {
2793         switch (cmd) {
2794         case READ_6:
2795         case READ_10:
2796         case READ_16:
2797
2798         case WRITE_6:
2799         case WRITE_10:
2800         case WRITE_16:
2801                 return ata_scsi_rw_xlat;
2802
2803         case SYNCHRONIZE_CACHE:
2804                 if (ata_try_flush_cache(dev))
2805                         return ata_scsi_flush_xlat;
2806                 break;
2807
2808         case VERIFY:
2809         case VERIFY_16:
2810                 return ata_scsi_verify_xlat;
2811
2812         case ATA_12:
2813         case ATA_16:
2814                 return ata_scsi_pass_thru;
2815
2816         case START_STOP:
2817                 return ata_scsi_start_stop_xlat;
2818         }
2819
2820         return NULL;
2821 }
2822
2823 /**
2824  *      ata_scsi_dump_cdb - dump SCSI command contents to dmesg
2825  *      @ap: ATA port to which the command was being sent
2826  *      @cmd: SCSI command to dump
2827  *
2828  *      Prints the contents of a SCSI command via printk().
2829  */
2830
2831 static inline void ata_scsi_dump_cdb(struct ata_port *ap,
2832                                      struct scsi_cmnd *cmd)
2833 {
2834 #ifdef ATA_DEBUG
2835         struct scsi_device *scsidev = cmd->device;
2836         u8 *scsicmd = cmd->cmnd;
2837
2838         DPRINTK("CDB (%u:%d,%d,%d) %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
2839                 ap->print_id,
2840                 scsidev->channel, scsidev->id, scsidev->lun,
2841                 scsicmd[0], scsicmd[1], scsicmd[2], scsicmd[3],
2842                 scsicmd[4], scsicmd[5], scsicmd[6], scsicmd[7],
2843                 scsicmd[8]);
2844 #endif
2845 }
2846
2847 static inline int __ata_scsi_queuecmd(struct scsi_cmnd *scmd,
2848                                       void (*done)(struct scsi_cmnd *),
2849                                       struct ata_device *dev)
2850 {
2851         u8 scsi_op = scmd->cmnd[0];
2852         ata_xlat_func_t xlat_func;
2853         int rc = 0;
2854
2855         if (dev->class == ATA_DEV_ATA) {
2856                 if (unlikely(!scmd->cmd_len || scmd->cmd_len > dev->cdb_len))
2857                         goto bad_cdb_len;
2858
2859                 xlat_func = ata_get_xlat_func(dev, scsi_op);
2860         } else {
2861                 if (unlikely(!scmd->cmd_len))
2862                         goto bad_cdb_len;
2863
2864                 xlat_func = NULL;
2865                 if (likely((scsi_op != ATA_16) || !atapi_passthru16)) {
2866                         /* relay SCSI command to ATAPI device */
2867                         int len = COMMAND_SIZE(scsi_op);
2868                         if (unlikely(len > scmd->cmd_len || len > dev->cdb_len))
2869                                 goto bad_cdb_len;
2870
2871                         xlat_func = atapi_xlat;
2872                 } else {
2873                         /* ATA_16 passthru, treat as an ATA command */
2874                         if (unlikely(scmd->cmd_len > 16))
2875                                 goto bad_cdb_len;
2876
2877                         xlat_func = ata_get_xlat_func(dev, scsi_op);
2878                 }
2879         }
2880
2881         if (xlat_func)
2882                 rc = ata_scsi_translate(dev, scmd, done, xlat_func);
2883         else
2884                 ata_scsi_simulate(dev, scmd, done);
2885
2886         return rc;
2887
2888  bad_cdb_len:
2889         DPRINTK("bad CDB len=%u, scsi_op=0x%02x, max=%u\n",
2890                 scmd->cmd_len, scsi_op, dev->cdb_len);
2891         scmd->result = DID_ERROR << 16;
2892         done(scmd);
2893         return 0;
2894 }
2895
2896 /**
2897  *      ata_scsi_queuecmd - Issue SCSI cdb to libata-managed device
2898  *      @cmd: SCSI command to be sent
2899  *      @done: Completion function, called when command is complete
2900  *
2901  *      In some cases, this function translates SCSI commands into
2902  *      ATA taskfiles, and queues the taskfiles to be sent to
2903  *      hardware.  In other cases, this function simulates a
2904  *      SCSI device by evaluating and responding to certain
2905  *      SCSI commands.  This creates the overall effect of
2906  *      ATA and ATAPI devices appearing as SCSI devices.
2907  *
2908  *      LOCKING:
2909  *      Releases scsi-layer-held lock, and obtains host lock.
2910  *
2911  *      RETURNS:
2912  *      Return value from __ata_scsi_queuecmd() if @cmd can be queued,
2913  *      0 otherwise.
2914  */
2915 int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
2916 {
2917         struct ata_port *ap;
2918         struct ata_device *dev;
2919         struct scsi_device *scsidev = cmd->device;
2920         struct Scsi_Host *shost = scsidev->host;
2921         int rc = 0;
2922
2923         ap = ata_shost_to_port(shost);
2924
2925         spin_unlock(shost->host_lock);
2926         spin_lock(ap->lock);
2927
2928         ata_scsi_dump_cdb(ap, cmd);
2929
2930         dev = ata_scsi_find_dev(ap, scsidev);
2931         if (likely(dev))
2932                 rc = __ata_scsi_queuecmd(cmd, done, dev);
2933         else {
2934                 cmd->result = (DID_BAD_TARGET << 16);
2935                 done(cmd);
2936         }
2937
2938         spin_unlock(ap->lock);
2939         spin_lock(shost->host_lock);
2940         return rc;
2941 }
2942
2943 /**
2944  *      ata_scsi_simulate - simulate SCSI command on ATA device
2945  *      @dev: the target device
2946  *      @cmd: SCSI command being sent to device.
2947  *      @done: SCSI command completion function.
2948  *
2949  *      Interprets and directly executes a select list of SCSI commands
2950  *      that can be handled internally.
2951  *
2952  *      LOCKING:
2953  *      spin_lock_irqsave(host lock)
2954  */
2955
2956 void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd,
2957                       void (*done)(struct scsi_cmnd *))
2958 {
2959         struct ata_scsi_args args;
2960         const u8 *scsicmd = cmd->cmnd;
2961         u8 tmp8;
2962
2963         args.dev = dev;
2964         args.id = dev->id;
2965         args.cmd = cmd;
2966         args.done = done;
2967
2968         switch(scsicmd[0]) {
2969         /* TODO: worth improving? */
2970         case FORMAT_UNIT:
2971                 ata_scsi_invalid_field(cmd, done);
2972                 break;
2973
2974         case INQUIRY:
2975                 if (scsicmd[1] & 2)                /* is CmdDt set?  */
2976                         ata_scsi_invalid_field(cmd, done);
2977                 else if ((scsicmd[1] & 1) == 0)    /* is EVPD clear? */
2978                         ata_scsi_rbuf_fill(&args, ata_scsiop_inq_std);
2979                 else switch (scsicmd[2]) {
2980                 case 0x00:
2981                         ata_scsi_rbuf_fill(&args, ata_scsiop_inq_00);
2982                         break;
2983                 case 0x80:
2984                         ata_scsi_rbuf_fill(&args, ata_scsiop_inq_80);
2985                         break;
2986                 case 0x83:
2987                         ata_scsi_rbuf_fill(&args, ata_scsiop_inq_83);
2988                         break;
2989                 case 0x89:
2990                         ata_scsi_rbuf_fill(&args, ata_scsiop_inq_89);
2991                         break;
2992                 case 0xb1:
2993                         ata_scsi_rbuf_fill(&args, ata_scsiop_inq_b1);
2994                         break;
2995                 default:
2996                         ata_scsi_invalid_field(cmd, done);
2997                         break;
2998                 }
2999                 break;
3000
3001         case MODE_SENSE:
3002         case MODE_SENSE_10:
3003                 ata_scsi_rbuf_fill(&args, ata_scsiop_mode_sense);
3004                 break;
3005
3006         case MODE_SELECT:       /* unconditionally return */
3007         case MODE_SELECT_10:    /* bad-field-in-cdb */
3008                 ata_scsi_invalid_field(cmd, done);
3009                 break;
3010
3011         case READ_CAPACITY:
3012                 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
3013                 break;
3014
3015         case SERVICE_ACTION_IN:
3016                 if ((scsicmd[1] & 0x1f) == SAI_READ_CAPACITY_16)
3017                         ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
3018                 else
3019                         ata_scsi_invalid_field(cmd, done);
3020                 break;
3021
3022         case REPORT_LUNS:
3023                 ata_scsi_rbuf_fill(&args, ata_scsiop_report_luns);
3024                 break;
3025
3026         case REQUEST_SENSE:
3027                 ata_scsi_set_sense(cmd, 0, 0, 0);
3028                 cmd->result = (DRIVER_SENSE << 24);
3029                 done(cmd);
3030                 break;
3031
3032         /* if we reach this, then writeback caching is disabled,
3033          * turning this into a no-op.
3034          */
3035         case SYNCHRONIZE_CACHE:
3036                 /* fall through */
3037
3038         /* no-op's, complete with success */
3039         case REZERO_UNIT:
3040         case SEEK_6:
3041         case SEEK_10:
3042         case TEST_UNIT_READY:
3043                 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
3044                 break;
3045
3046         case SEND_DIAGNOSTIC:
3047                 tmp8 = scsicmd[1] & ~(1 << 3);
3048                 if ((tmp8 == 0x4) && (!scsicmd[3]) && (!scsicmd[4]))
3049                         ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
3050                 else
3051                         ata_scsi_invalid_field(cmd, done);
3052                 break;
3053
3054         /* all other commands */
3055         default:
3056                 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x20, 0x0);
3057                 /* "Invalid command operation code" */
3058                 done(cmd);
3059                 break;
3060         }
3061 }
3062
3063 int ata_scsi_add_hosts(struct ata_host *host, struct scsi_host_template *sht)
3064 {
3065         int i, rc;
3066
3067         for (i = 0; i < host->n_ports; i++) {
3068                 struct ata_port *ap = host->ports[i];
3069                 struct Scsi_Host *shost;
3070
3071                 rc = -ENOMEM;
3072                 shost = scsi_host_alloc(sht, sizeof(struct ata_port *));
3073                 if (!shost)
3074                         goto err_alloc;
3075
3076                 *(struct ata_port **)&shost->hostdata[0] = ap;
3077                 ap->scsi_host = shost;
3078
3079                 shost->transportt = &ata_scsi_transport_template;
3080                 shost->unique_id = ap->print_id;
3081                 shost->max_id = 16;
3082                 shost->max_lun = 1;
3083                 shost->max_channel = 1;
3084                 shost->max_cmd_len = 16;
3085
3086                 /* Schedule policy is determined by ->qc_defer()
3087                  * callback and it needs to see every deferred qc.
3088                  * Set host_blocked to 1 to prevent SCSI midlayer from
3089                  * automatically deferring requests.
3090                  */
3091                 shost->max_host_blocked = 1;
3092
3093                 rc = scsi_add_host(ap->scsi_host, ap->host->dev);
3094                 if (rc)
3095                         goto err_add;
3096         }
3097
3098         return 0;
3099
3100  err_add:
3101         scsi_host_put(host->ports[i]->scsi_host);
3102  err_alloc:
3103         while (--i >= 0) {
3104                 struct Scsi_Host *shost = host->ports[i]->scsi_host;
3105
3106                 scsi_remove_host(shost);
3107                 scsi_host_put(shost);
3108         }
3109         return rc;
3110 }
3111
3112 void ata_scsi_scan_host(struct ata_port *ap, int sync)
3113 {
3114         int tries = 5;
3115         struct ata_device *last_failed_dev = NULL;
3116         struct ata_link *link;
3117         struct ata_device *dev;
3118
3119         if (ap->flags & ATA_FLAG_DISABLED)
3120                 return;
3121
3122  repeat:
3123         ata_port_for_each_link(link, ap) {
3124                 ata_link_for_each_dev(dev, link) {
3125                         struct scsi_device *sdev;
3126                         int channel = 0, id = 0;
3127
3128                         if (!ata_dev_enabled(dev) || dev->sdev)
3129                                 continue;
3130
3131                         if (ata_is_host_link(link))
3132                                 id = dev->devno;
3133                         else
3134                                 channel = link->pmp;
3135
3136                         sdev = __scsi_add_device(ap->scsi_host, channel, id, 0,
3137                                                  NULL);
3138                         if (!IS_ERR(sdev)) {
3139                                 dev->sdev = sdev;
3140                                 scsi_device_put(sdev);
3141                         }
3142                 }
3143         }
3144
3145         /* If we scanned while EH was in progress or allocation
3146          * failure occurred, scan would have failed silently.  Check
3147          * whether all devices are attached.
3148          */
3149         ata_port_for_each_link(link, ap) {
3150                 ata_link_for_each_dev(dev, link) {
3151                         if (ata_dev_enabled(dev) && !dev->sdev)
3152                                 goto exit_loop;
3153                 }
3154         }
3155  exit_loop:
3156         if (!link)
3157                 return;
3158
3159         /* we're missing some SCSI devices */
3160         if (sync) {
3161                 /* If caller requested synchrnous scan && we've made
3162                  * any progress, sleep briefly and repeat.
3163                  */
3164                 if (dev != last_failed_dev) {
3165                         msleep(100);
3166                         last_failed_dev = dev;
3167                         goto repeat;
3168                 }
3169
3170                 /* We might be failing to detect boot device, give it
3171                  * a few more chances.
3172                  */
3173                 if (--tries) {
3174                         msleep(100);
3175                         goto repeat;
3176                 }
3177
3178                 ata_port_printk(ap, KERN_ERR, "WARNING: synchronous SCSI scan "
3179                                 "failed without making any progress,\n"
3180                                 "                  switching to async\n");
3181         }
3182
3183         queue_delayed_work(ata_aux_wq, &ap->hotplug_task,
3184                            round_jiffies_relative(HZ));
3185 }
3186
3187 /**
3188  *      ata_scsi_offline_dev - offline attached SCSI device
3189  *      @dev: ATA device to offline attached SCSI device for
3190  *
3191  *      This function is called from ata_eh_hotplug() and responsible
3192  *      for taking the SCSI device attached to @dev offline.  This
3193  *      function is called with host lock which protects dev->sdev
3194  *      against clearing.
3195  *
3196  *      LOCKING:
3197  *      spin_lock_irqsave(host lock)
3198  *
3199  *      RETURNS:
3200  *      1 if attached SCSI device exists, 0 otherwise.
3201  */
3202 int ata_scsi_offline_dev(struct ata_device *dev)
3203 {
3204         if (dev->sdev) {
3205                 scsi_device_set_state(dev->sdev, SDEV_OFFLINE);
3206                 return 1;
3207         }
3208         return 0;
3209 }
3210
3211 /**
3212  *      ata_scsi_remove_dev - remove attached SCSI device
3213  *      @dev: ATA device to remove attached SCSI device for
3214  *
3215  *      This function is called from ata_eh_scsi_hotplug() and
3216  *      responsible for removing the SCSI device attached to @dev.
3217  *
3218  *      LOCKING:
3219  *      Kernel thread context (may sleep).
3220  */
3221 static void ata_scsi_remove_dev(struct ata_device *dev)
3222 {
3223         struct ata_port *ap = dev->link->ap;
3224         struct scsi_device *sdev;
3225         unsigned long flags;
3226
3227         /* Alas, we need to grab scan_mutex to ensure SCSI device
3228          * state doesn't change underneath us and thus
3229          * scsi_device_get() always succeeds.  The mutex locking can
3230          * be removed if there is __scsi_device_get() interface which
3231          * increments reference counts regardless of device state.
3232          */
3233         mutex_lock(&ap->scsi_host->scan_mutex);
3234         spin_lock_irqsave(ap->lock, flags);
3235
3236         /* clearing dev->sdev is protected by host lock */
3237         sdev = dev->sdev;
3238         dev->sdev = NULL;
3239
3240         if (sdev) {
3241                 /* If user initiated unplug races with us, sdev can go
3242                  * away underneath us after the host lock and
3243                  * scan_mutex are released.  Hold onto it.
3244                  */
3245                 if (scsi_device_get(sdev) == 0) {
3246                         /* The following ensures the attached sdev is
3247                          * offline on return from ata_scsi_offline_dev()
3248                          * regardless it wins or loses the race
3249                          * against this function.
3250                          */
3251                         scsi_device_set_state(sdev, SDEV_OFFLINE);
3252                 } else {
3253                         WARN_ON(1);
3254                         sdev = NULL;
3255                 }
3256         }
3257
3258         spin_unlock_irqrestore(ap->lock, flags);
3259         mutex_unlock(&ap->scsi_host->scan_mutex);
3260
3261         if (sdev) {
3262                 ata_dev_printk(dev, KERN_INFO, "detaching (SCSI %s)\n",
3263                                sdev->sdev_gendev.bus_id);
3264
3265                 scsi_remove_device(sdev);
3266                 scsi_device_put(sdev);
3267         }
3268 }
3269
3270 static void ata_scsi_handle_link_detach(struct ata_link *link)
3271 {
3272         struct ata_port *ap = link->ap;
3273         struct ata_device *dev;
3274
3275         ata_link_for_each_dev(dev, link) {
3276                 unsigned long flags;
3277
3278                 if (!(dev->flags & ATA_DFLAG_DETACHED))
3279                         continue;
3280
3281                 spin_lock_irqsave(ap->lock, flags);
3282                 dev->flags &= ~ATA_DFLAG_DETACHED;
3283                 spin_unlock_irqrestore(ap->lock, flags);
3284
3285                 ata_scsi_remove_dev(dev);
3286         }
3287 }
3288
3289 /**
3290  *      ata_scsi_media_change_notify - send media change event
3291  *      @dev: Pointer to the disk device with media change event
3292  *
3293  *      Tell the block layer to send a media change notification
3294  *      event.
3295  *
3296  *      LOCKING:
3297  *      spin_lock_irqsave(host lock)
3298  */
3299 void ata_scsi_media_change_notify(struct ata_device *dev)
3300 {
3301         if (dev->sdev)
3302                 sdev_evt_send_simple(dev->sdev, SDEV_EVT_MEDIA_CHANGE,
3303                                      GFP_ATOMIC);
3304 }
3305
3306 /**
3307  *      ata_scsi_hotplug - SCSI part of hotplug
3308  *      @work: Pointer to ATA port to perform SCSI hotplug on
3309  *
3310  *      Perform SCSI part of hotplug.  It's executed from a separate
3311  *      workqueue after EH completes.  This is necessary because SCSI
3312  *      hot plugging requires working EH and hot unplugging is
3313  *      synchronized with hot plugging with a mutex.
3314  *
3315  *      LOCKING:
3316  *      Kernel thread context (may sleep).
3317  */
3318 void ata_scsi_hotplug(struct work_struct *work)
3319 {
3320         struct ata_port *ap =
3321                 container_of(work, struct ata_port, hotplug_task.work);
3322         int i;
3323
3324         if (ap->pflags & ATA_PFLAG_UNLOADING) {
3325                 DPRINTK("ENTER/EXIT - unloading\n");
3326                 return;
3327         }
3328
3329         DPRINTK("ENTER\n");
3330
3331         /* Unplug detached devices.  We cannot use link iterator here
3332          * because PMP links have to be scanned even if PMP is
3333          * currently not attached.  Iterate manually.
3334          */
3335         ata_scsi_handle_link_detach(&ap->link);
3336         if (ap->pmp_link)
3337                 for (i = 0; i < SATA_PMP_MAX_PORTS; i++)
3338                         ata_scsi_handle_link_detach(&ap->pmp_link[i]);
3339
3340         /* scan for new ones */
3341         ata_scsi_scan_host(ap, 0);
3342
3343         DPRINTK("EXIT\n");
3344 }
3345
3346 /**
3347  *      ata_scsi_user_scan - indication for user-initiated bus scan
3348  *      @shost: SCSI host to scan
3349  *      @channel: Channel to scan
3350  *      @id: ID to scan
3351  *      @lun: LUN to scan
3352  *
3353  *      This function is called when user explicitly requests bus
3354  *      scan.  Set probe pending flag and invoke EH.
3355  *
3356  *      LOCKING:
3357  *      SCSI layer (we don't care)
3358  *
3359  *      RETURNS:
3360  *      Zero.
3361  */
3362 static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
3363                               unsigned int id, unsigned int lun)
3364 {
3365         struct ata_port *ap = ata_shost_to_port(shost);
3366         unsigned long flags;
3367         int devno, rc = 0;
3368
3369         if (!ap->ops->error_handler)
3370                 return -EOPNOTSUPP;
3371
3372         if (lun != SCAN_WILD_CARD && lun)
3373                 return -EINVAL;
3374
3375         if (!sata_pmp_attached(ap)) {
3376                 if (channel != SCAN_WILD_CARD && channel)
3377                         return -EINVAL;
3378                 devno = id;
3379         } else {
3380                 if (id != SCAN_WILD_CARD && id)
3381                         return -EINVAL;
3382                 devno = channel;
3383         }
3384
3385         spin_lock_irqsave(ap->lock, flags);
3386
3387         if (devno == SCAN_WILD_CARD) {
3388                 struct ata_link *link;
3389
3390                 ata_port_for_each_link(link, ap) {
3391                         struct ata_eh_info *ehi = &link->eh_info;
3392                         ehi->probe_mask |= ATA_ALL_DEVICES;
3393                         ehi->action |= ATA_EH_RESET;
3394                 }
3395         } else {
3396                 struct ata_device *dev = ata_find_dev(ap, devno);
3397
3398                 if (dev) {
3399                         struct ata_eh_info *ehi = &dev->link->eh_info;
3400                         ehi->probe_mask |= 1 << dev->devno;
3401                         ehi->action |= ATA_EH_RESET;
3402                 } else
3403                         rc = -EINVAL;
3404         }
3405
3406         if (rc == 0) {
3407                 ata_port_schedule_eh(ap);
3408                 spin_unlock_irqrestore(ap->lock, flags);
3409                 ata_port_wait_eh(ap);
3410         } else
3411                 spin_unlock_irqrestore(ap->lock, flags);
3412
3413         return rc;
3414 }
3415
3416 /**
3417  *      ata_scsi_dev_rescan - initiate scsi_rescan_device()
3418  *      @work: Pointer to ATA port to perform scsi_rescan_device()
3419  *
3420  *      After ATA pass thru (SAT) commands are executed successfully,
3421  *      libata need to propagate the changes to SCSI layer.  This
3422  *      function must be executed from ata_aux_wq such that sdev
3423  *      attach/detach don't race with rescan.
3424  *
3425  *      LOCKING:
3426  *      Kernel thread context (may sleep).
3427  */
3428 void ata_scsi_dev_rescan(struct work_struct *work)
3429 {
3430         struct ata_port *ap =
3431                 container_of(work, struct ata_port, scsi_rescan_task);
3432         struct ata_link *link;
3433         struct ata_device *dev;
3434         unsigned long flags;
3435
3436         spin_lock_irqsave(ap->lock, flags);
3437
3438         ata_port_for_each_link(link, ap) {
3439                 ata_link_for_each_dev(dev, link) {
3440                         struct scsi_device *sdev = dev->sdev;
3441
3442                         if (!ata_dev_enabled(dev) || !sdev)
3443                                 continue;
3444                         if (scsi_device_get(sdev))
3445                                 continue;
3446
3447                         spin_unlock_irqrestore(ap->lock, flags);
3448                         scsi_rescan_device(&(sdev->sdev_gendev));
3449                         scsi_device_put(sdev);
3450                         spin_lock_irqsave(ap->lock, flags);
3451                 }
3452         }
3453
3454         spin_unlock_irqrestore(ap->lock, flags);
3455 }
3456
3457 /**
3458  *      ata_sas_port_alloc - Allocate port for a SAS attached SATA device
3459  *      @host: ATA host container for all SAS ports
3460  *      @port_info: Information from low-level host driver
3461  *      @shost: SCSI host that the scsi device is attached to
3462  *
3463  *      LOCKING:
3464  *      PCI/etc. bus probe sem.
3465  *
3466  *      RETURNS:
3467  *      ata_port pointer on success / NULL on failure.
3468  */
3469
3470 struct ata_port *ata_sas_port_alloc(struct ata_host *host,
3471                                     struct ata_port_info *port_info,
3472                                     struct Scsi_Host *shost)
3473 {
3474         struct ata_port *ap;
3475
3476         ap = ata_port_alloc(host);
3477         if (!ap)
3478                 return NULL;
3479
3480         ap->port_no = 0;
3481         ap->lock = shost->host_lock;
3482         ap->pio_mask = port_info->pio_mask;
3483         ap->mwdma_mask = port_info->mwdma_mask;
3484         ap->udma_mask = port_info->udma_mask;
3485         ap->flags |= port_info->flags;
3486         ap->ops = port_info->port_ops;
3487         ap->cbl = ATA_CBL_SATA;
3488
3489         return ap;
3490 }
3491 EXPORT_SYMBOL_GPL(ata_sas_port_alloc);
3492
3493 /**
3494  *      ata_sas_port_start - Set port up for dma.
3495  *      @ap: Port to initialize
3496  *
3497  *      Called just after data structures for each port are
3498  *      initialized.
3499  *
3500  *      May be used as the port_start() entry in ata_port_operations.
3501  *
3502  *      LOCKING:
3503  *      Inherited from caller.
3504  */
3505 int ata_sas_port_start(struct ata_port *ap)
3506 {
3507         return 0;
3508 }
3509 EXPORT_SYMBOL_GPL(ata_sas_port_start);
3510
3511 /**
3512  *      ata_port_stop - Undo ata_sas_port_start()
3513  *      @ap: Port to shut down
3514  *
3515  *      May be used as the port_stop() entry in ata_port_operations.
3516  *
3517  *      LOCKING:
3518  *      Inherited from caller.
3519  */
3520
3521 void ata_sas_port_stop(struct ata_port *ap)
3522 {
3523 }
3524 EXPORT_SYMBOL_GPL(ata_sas_port_stop);
3525
3526 /**
3527  *      ata_sas_port_init - Initialize a SATA device
3528  *      @ap: SATA port to initialize
3529  *
3530  *      LOCKING:
3531  *      PCI/etc. bus probe sem.
3532  *
3533  *      RETURNS:
3534  *      Zero on success, non-zero on error.
3535  */
3536
3537 int ata_sas_port_init(struct ata_port *ap)
3538 {
3539         int rc = ap->ops->port_start(ap);
3540
3541         if (!rc) {
3542                 ap->print_id = ata_print_id++;
3543                 rc = ata_bus_probe(ap);
3544         }
3545
3546         return rc;
3547 }
3548 EXPORT_SYMBOL_GPL(ata_sas_port_init);
3549
3550 /**
3551  *      ata_sas_port_destroy - Destroy a SATA port allocated by ata_sas_port_alloc
3552  *      @ap: SATA port to destroy
3553  *
3554  */
3555
3556 void ata_sas_port_destroy(struct ata_port *ap)
3557 {
3558         if (ap->ops->port_stop)
3559                 ap->ops->port_stop(ap);
3560         kfree(ap);
3561 }
3562 EXPORT_SYMBOL_GPL(ata_sas_port_destroy);
3563
3564 /**
3565  *      ata_sas_slave_configure - Default slave_config routine for libata devices
3566  *      @sdev: SCSI device to configure
3567  *      @ap: ATA port to which SCSI device is attached
3568  *
3569  *      RETURNS:
3570  *      Zero.
3571  */
3572
3573 int ata_sas_slave_configure(struct scsi_device *sdev, struct ata_port *ap)
3574 {
3575         ata_scsi_sdev_config(sdev);
3576         ata_scsi_dev_config(sdev, ap->link.device);
3577         return 0;
3578 }
3579 EXPORT_SYMBOL_GPL(ata_sas_slave_configure);
3580
3581 /**
3582  *      ata_sas_queuecmd - Issue SCSI cdb to libata-managed device
3583  *      @cmd: SCSI command to be sent
3584  *      @done: Completion function, called when command is complete
3585  *      @ap:    ATA port to which the command is being sent
3586  *
3587  *      RETURNS:
3588  *      Return value from __ata_scsi_queuecmd() if @cmd can be queued,
3589  *      0 otherwise.
3590  */
3591
3592 int ata_sas_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *),
3593                      struct ata_port *ap)
3594 {
3595         int rc = 0;
3596
3597         ata_scsi_dump_cdb(ap, cmd);
3598
3599         if (likely(ata_dev_enabled(ap->link.device)))
3600                 rc = __ata_scsi_queuecmd(cmd, done, ap->link.device);
3601         else {
3602                 cmd->result = (DID_BAD_TARGET << 16);
3603                 done(cmd);
3604         }
3605         return rc;
3606 }
3607 EXPORT_SYMBOL_GPL(ata_sas_queuecmd);