GNU Linux-libre 4.4.284-gnu1
[releases.git] / drivers / ata / libata-core.c
1 /*
2  *  libata-core.c - helper library for ATA
3  *
4  *  Maintained by:  Tejun Heo <tj@kernel.org>
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 http://www.t13.org/ and
31  *  http://www.sata-io.org/
32  *
33  *  Standards documents from:
34  *      http://www.t13.org (ATA standards, PCI DMA IDE spec)
35  *      http://www.t10.org (SCSI MMC - for ATAPI MMC)
36  *      http://www.sata-io.org (SATA)
37  *      http://www.compactflash.org (CF)
38  *      http://www.qic.org (QIC157 - Tape and DSC)
39  *      http://www.ce-ata.org (CE-ATA: not supported)
40  *
41  */
42
43 #include <linux/kernel.h>
44 #include <linux/module.h>
45 #include <linux/pci.h>
46 #include <linux/init.h>
47 #include <linux/list.h>
48 #include <linux/mm.h>
49 #include <linux/spinlock.h>
50 #include <linux/blkdev.h>
51 #include <linux/delay.h>
52 #include <linux/timer.h>
53 #include <linux/interrupt.h>
54 #include <linux/completion.h>
55 #include <linux/suspend.h>
56 #include <linux/workqueue.h>
57 #include <linux/scatterlist.h>
58 #include <linux/io.h>
59 #include <linux/log2.h>
60 #include <linux/slab.h>
61 #include <linux/glob.h>
62 #include <scsi/scsi.h>
63 #include <scsi/scsi_cmnd.h>
64 #include <scsi/scsi_host.h>
65 #include <linux/libata.h>
66 #include <asm/byteorder.h>
67 #include <linux/cdrom.h>
68 #include <linux/ratelimit.h>
69 #include <linux/pm_runtime.h>
70 #include <linux/platform_device.h>
71
72 #define CREATE_TRACE_POINTS
73 #include <trace/events/libata.h>
74
75 #include "libata.h"
76 #include "libata-transport.h"
77
78 /* debounce timing parameters in msecs { interval, duration, timeout } */
79 const unsigned long sata_deb_timing_normal[]            = {   5,  100, 2000 };
80 const unsigned long sata_deb_timing_hotplug[]           = {  25,  500, 2000 };
81 const unsigned long sata_deb_timing_long[]              = { 100, 2000, 5000 };
82
83 const struct ata_port_operations ata_base_port_ops = {
84         .prereset               = ata_std_prereset,
85         .postreset              = ata_std_postreset,
86         .error_handler          = ata_std_error_handler,
87         .sched_eh               = ata_std_sched_eh,
88         .end_eh                 = ata_std_end_eh,
89 };
90
91 const struct ata_port_operations sata_port_ops = {
92         .inherits               = &ata_base_port_ops,
93
94         .qc_defer               = ata_std_qc_defer,
95         .hardreset              = sata_std_hardreset,
96 };
97
98 static unsigned int ata_dev_init_params(struct ata_device *dev,
99                                         u16 heads, u16 sectors);
100 static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
101 static void ata_dev_xfermask(struct ata_device *dev);
102 static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
103
104 atomic_t ata_print_id = ATOMIC_INIT(0);
105
106 struct ata_force_param {
107         const char      *name;
108         unsigned int    cbl;
109         int             spd_limit;
110         unsigned long   xfer_mask;
111         unsigned int    horkage_on;
112         unsigned int    horkage_off;
113         unsigned int    lflags;
114 };
115
116 struct ata_force_ent {
117         int                     port;
118         int                     device;
119         struct ata_force_param  param;
120 };
121
122 static struct ata_force_ent *ata_force_tbl;
123 static int ata_force_tbl_size;
124
125 static char ata_force_param_buf[PAGE_SIZE] __initdata;
126 /* param_buf is thrown away after initialization, disallow read */
127 module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
128 MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
129
130 static int atapi_enabled = 1;
131 module_param(atapi_enabled, int, 0444);
132 MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on [default])");
133
134 static int atapi_dmadir = 0;
135 module_param(atapi_dmadir, int, 0444);
136 MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off [default], 1=on)");
137
138 int atapi_passthru16 = 1;
139 module_param(atapi_passthru16, int, 0444);
140 MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices (0=off, 1=on [default])");
141
142 int libata_fua = 0;
143 module_param_named(fua, libata_fua, int, 0444);
144 MODULE_PARM_DESC(fua, "FUA support (0=off [default], 1=on)");
145
146 static int ata_ignore_hpa;
147 module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
148 MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
149
150 static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
151 module_param_named(dma, libata_dma_mask, int, 0444);
152 MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
153
154 static int ata_probe_timeout;
155 module_param(ata_probe_timeout, int, 0444);
156 MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
157
158 int libata_noacpi = 0;
159 module_param_named(noacpi, libata_noacpi, int, 0444);
160 MODULE_PARM_DESC(noacpi, "Disable the use of ACPI in probe/suspend/resume (0=off [default], 1=on)");
161
162 int libata_allow_tpm = 0;
163 module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
164 MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands (0=off [default], 1=on)");
165
166 static int atapi_an;
167 module_param(atapi_an, int, 0444);
168 MODULE_PARM_DESC(atapi_an, "Enable ATAPI AN media presence notification (0=0ff [default], 1=on)");
169
170 MODULE_AUTHOR("Jeff Garzik");
171 MODULE_DESCRIPTION("Library module for ATA devices");
172 MODULE_LICENSE("GPL");
173 MODULE_VERSION(DRV_VERSION);
174
175
176 static bool ata_sstatus_online(u32 sstatus)
177 {
178         return (sstatus & 0xf) == 0x3;
179 }
180
181 /**
182  *      ata_link_next - link iteration helper
183  *      @link: the previous link, NULL to start
184  *      @ap: ATA port containing links to iterate
185  *      @mode: iteration mode, one of ATA_LITER_*
186  *
187  *      LOCKING:
188  *      Host lock or EH context.
189  *
190  *      RETURNS:
191  *      Pointer to the next link.
192  */
193 struct ata_link *ata_link_next(struct ata_link *link, struct ata_port *ap,
194                                enum ata_link_iter_mode mode)
195 {
196         BUG_ON(mode != ATA_LITER_EDGE &&
197                mode != ATA_LITER_PMP_FIRST && mode != ATA_LITER_HOST_FIRST);
198
199         /* NULL link indicates start of iteration */
200         if (!link)
201                 switch (mode) {
202                 case ATA_LITER_EDGE:
203                 case ATA_LITER_PMP_FIRST:
204                         if (sata_pmp_attached(ap))
205                                 return ap->pmp_link;
206                         /* fall through */
207                 case ATA_LITER_HOST_FIRST:
208                         return &ap->link;
209                 }
210
211         /* we just iterated over the host link, what's next? */
212         if (link == &ap->link)
213                 switch (mode) {
214                 case ATA_LITER_HOST_FIRST:
215                         if (sata_pmp_attached(ap))
216                                 return ap->pmp_link;
217                         /* fall through */
218                 case ATA_LITER_PMP_FIRST:
219                         if (unlikely(ap->slave_link))
220                                 return ap->slave_link;
221                         /* fall through */
222                 case ATA_LITER_EDGE:
223                         return NULL;
224                 }
225
226         /* slave_link excludes PMP */
227         if (unlikely(link == ap->slave_link))
228                 return NULL;
229
230         /* we were over a PMP link */
231         if (++link < ap->pmp_link + ap->nr_pmp_links)
232                 return link;
233
234         if (mode == ATA_LITER_PMP_FIRST)
235                 return &ap->link;
236
237         return NULL;
238 }
239
240 /**
241  *      ata_dev_next - device iteration helper
242  *      @dev: the previous device, NULL to start
243  *      @link: ATA link containing devices to iterate
244  *      @mode: iteration mode, one of ATA_DITER_*
245  *
246  *      LOCKING:
247  *      Host lock or EH context.
248  *
249  *      RETURNS:
250  *      Pointer to the next device.
251  */
252 struct ata_device *ata_dev_next(struct ata_device *dev, struct ata_link *link,
253                                 enum ata_dev_iter_mode mode)
254 {
255         BUG_ON(mode != ATA_DITER_ENABLED && mode != ATA_DITER_ENABLED_REVERSE &&
256                mode != ATA_DITER_ALL && mode != ATA_DITER_ALL_REVERSE);
257
258         /* NULL dev indicates start of iteration */
259         if (!dev)
260                 switch (mode) {
261                 case ATA_DITER_ENABLED:
262                 case ATA_DITER_ALL:
263                         dev = link->device;
264                         goto check;
265                 case ATA_DITER_ENABLED_REVERSE:
266                 case ATA_DITER_ALL_REVERSE:
267                         dev = link->device + ata_link_max_devices(link) - 1;
268                         goto check;
269                 }
270
271  next:
272         /* move to the next one */
273         switch (mode) {
274         case ATA_DITER_ENABLED:
275         case ATA_DITER_ALL:
276                 if (++dev < link->device + ata_link_max_devices(link))
277                         goto check;
278                 return NULL;
279         case ATA_DITER_ENABLED_REVERSE:
280         case ATA_DITER_ALL_REVERSE:
281                 if (--dev >= link->device)
282                         goto check;
283                 return NULL;
284         }
285
286  check:
287         if ((mode == ATA_DITER_ENABLED || mode == ATA_DITER_ENABLED_REVERSE) &&
288             !ata_dev_enabled(dev))
289                 goto next;
290         return dev;
291 }
292
293 /**
294  *      ata_dev_phys_link - find physical link for a device
295  *      @dev: ATA device to look up physical link for
296  *
297  *      Look up physical link which @dev is attached to.  Note that
298  *      this is different from @dev->link only when @dev is on slave
299  *      link.  For all other cases, it's the same as @dev->link.
300  *
301  *      LOCKING:
302  *      Don't care.
303  *
304  *      RETURNS:
305  *      Pointer to the found physical link.
306  */
307 struct ata_link *ata_dev_phys_link(struct ata_device *dev)
308 {
309         struct ata_port *ap = dev->link->ap;
310
311         if (!ap->slave_link)
312                 return dev->link;
313         if (!dev->devno)
314                 return &ap->link;
315         return ap->slave_link;
316 }
317
318 /**
319  *      ata_force_cbl - force cable type according to libata.force
320  *      @ap: ATA port of interest
321  *
322  *      Force cable type according to libata.force and whine about it.
323  *      The last entry which has matching port number is used, so it
324  *      can be specified as part of device force parameters.  For
325  *      example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
326  *      same effect.
327  *
328  *      LOCKING:
329  *      EH context.
330  */
331 void ata_force_cbl(struct ata_port *ap)
332 {
333         int i;
334
335         for (i = ata_force_tbl_size - 1; i >= 0; i--) {
336                 const struct ata_force_ent *fe = &ata_force_tbl[i];
337
338                 if (fe->port != -1 && fe->port != ap->print_id)
339                         continue;
340
341                 if (fe->param.cbl == ATA_CBL_NONE)
342                         continue;
343
344                 ap->cbl = fe->param.cbl;
345                 ata_port_notice(ap, "FORCE: cable set to %s\n", fe->param.name);
346                 return;
347         }
348 }
349
350 /**
351  *      ata_force_link_limits - force link limits according to libata.force
352  *      @link: ATA link of interest
353  *
354  *      Force link flags and SATA spd limit according to libata.force
355  *      and whine about it.  When only the port part is specified
356  *      (e.g. 1:), the limit applies to all links connected to both
357  *      the host link and all fan-out ports connected via PMP.  If the
358  *      device part is specified as 0 (e.g. 1.00:), it specifies the
359  *      first fan-out link not the host link.  Device number 15 always
360  *      points to the host link whether PMP is attached or not.  If the
361  *      controller has slave link, device number 16 points to it.
362  *
363  *      LOCKING:
364  *      EH context.
365  */
366 static void ata_force_link_limits(struct ata_link *link)
367 {
368         bool did_spd = false;
369         int linkno = link->pmp;
370         int i;
371
372         if (ata_is_host_link(link))
373                 linkno += 15;
374
375         for (i = ata_force_tbl_size - 1; i >= 0; i--) {
376                 const struct ata_force_ent *fe = &ata_force_tbl[i];
377
378                 if (fe->port != -1 && fe->port != link->ap->print_id)
379                         continue;
380
381                 if (fe->device != -1 && fe->device != linkno)
382                         continue;
383
384                 /* only honor the first spd limit */
385                 if (!did_spd && fe->param.spd_limit) {
386                         link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
387                         ata_link_notice(link, "FORCE: PHY spd limit set to %s\n",
388                                         fe->param.name);
389                         did_spd = true;
390                 }
391
392                 /* let lflags stack */
393                 if (fe->param.lflags) {
394                         link->flags |= fe->param.lflags;
395                         ata_link_notice(link,
396                                         "FORCE: link flag 0x%x forced -> 0x%x\n",
397                                         fe->param.lflags, link->flags);
398                 }
399         }
400 }
401
402 /**
403  *      ata_force_xfermask - force xfermask according to libata.force
404  *      @dev: ATA device of interest
405  *
406  *      Force xfer_mask according to libata.force and whine about it.
407  *      For consistency with link selection, device number 15 selects
408  *      the first device connected to the host link.
409  *
410  *      LOCKING:
411  *      EH context.
412  */
413 static void ata_force_xfermask(struct ata_device *dev)
414 {
415         int devno = dev->link->pmp + dev->devno;
416         int alt_devno = devno;
417         int i;
418
419         /* allow n.15/16 for devices attached to host port */
420         if (ata_is_host_link(dev->link))
421                 alt_devno += 15;
422
423         for (i = ata_force_tbl_size - 1; i >= 0; i--) {
424                 const struct ata_force_ent *fe = &ata_force_tbl[i];
425                 unsigned long pio_mask, mwdma_mask, udma_mask;
426
427                 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
428                         continue;
429
430                 if (fe->device != -1 && fe->device != devno &&
431                     fe->device != alt_devno)
432                         continue;
433
434                 if (!fe->param.xfer_mask)
435                         continue;
436
437                 ata_unpack_xfermask(fe->param.xfer_mask,
438                                     &pio_mask, &mwdma_mask, &udma_mask);
439                 if (udma_mask)
440                         dev->udma_mask = udma_mask;
441                 else if (mwdma_mask) {
442                         dev->udma_mask = 0;
443                         dev->mwdma_mask = mwdma_mask;
444                 } else {
445                         dev->udma_mask = 0;
446                         dev->mwdma_mask = 0;
447                         dev->pio_mask = pio_mask;
448                 }
449
450                 ata_dev_notice(dev, "FORCE: xfer_mask set to %s\n",
451                                fe->param.name);
452                 return;
453         }
454 }
455
456 /**
457  *      ata_force_horkage - force horkage according to libata.force
458  *      @dev: ATA device of interest
459  *
460  *      Force horkage according to libata.force and whine about it.
461  *      For consistency with link selection, device number 15 selects
462  *      the first device connected to the host link.
463  *
464  *      LOCKING:
465  *      EH context.
466  */
467 static void ata_force_horkage(struct ata_device *dev)
468 {
469         int devno = dev->link->pmp + dev->devno;
470         int alt_devno = devno;
471         int i;
472
473         /* allow n.15/16 for devices attached to host port */
474         if (ata_is_host_link(dev->link))
475                 alt_devno += 15;
476
477         for (i = 0; i < ata_force_tbl_size; i++) {
478                 const struct ata_force_ent *fe = &ata_force_tbl[i];
479
480                 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
481                         continue;
482
483                 if (fe->device != -1 && fe->device != devno &&
484                     fe->device != alt_devno)
485                         continue;
486
487                 if (!(~dev->horkage & fe->param.horkage_on) &&
488                     !(dev->horkage & fe->param.horkage_off))
489                         continue;
490
491                 dev->horkage |= fe->param.horkage_on;
492                 dev->horkage &= ~fe->param.horkage_off;
493
494                 ata_dev_notice(dev, "FORCE: horkage modified (%s)\n",
495                                fe->param.name);
496         }
497 }
498
499 /**
500  *      atapi_cmd_type - Determine ATAPI command type from SCSI opcode
501  *      @opcode: SCSI opcode
502  *
503  *      Determine ATAPI command type from @opcode.
504  *
505  *      LOCKING:
506  *      None.
507  *
508  *      RETURNS:
509  *      ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
510  */
511 int atapi_cmd_type(u8 opcode)
512 {
513         switch (opcode) {
514         case GPCMD_READ_10:
515         case GPCMD_READ_12:
516                 return ATAPI_READ;
517
518         case GPCMD_WRITE_10:
519         case GPCMD_WRITE_12:
520         case GPCMD_WRITE_AND_VERIFY_10:
521                 return ATAPI_WRITE;
522
523         case GPCMD_READ_CD:
524         case GPCMD_READ_CD_MSF:
525                 return ATAPI_READ_CD;
526
527         case ATA_16:
528         case ATA_12:
529                 if (atapi_passthru16)
530                         return ATAPI_PASS_THRU;
531                 /* fall thru */
532         default:
533                 return ATAPI_MISC;
534         }
535 }
536
537 /**
538  *      ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
539  *      @tf: Taskfile to convert
540  *      @pmp: Port multiplier port
541  *      @is_cmd: This FIS is for command
542  *      @fis: Buffer into which data will output
543  *
544  *      Converts a standard ATA taskfile to a Serial ATA
545  *      FIS structure (Register - Host to Device).
546  *
547  *      LOCKING:
548  *      Inherited from caller.
549  */
550 void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
551 {
552         fis[0] = 0x27;                  /* Register - Host to Device FIS */
553         fis[1] = pmp & 0xf;             /* Port multiplier number*/
554         if (is_cmd)
555                 fis[1] |= (1 << 7);     /* bit 7 indicates Command FIS */
556
557         fis[2] = tf->command;
558         fis[3] = tf->feature;
559
560         fis[4] = tf->lbal;
561         fis[5] = tf->lbam;
562         fis[6] = tf->lbah;
563         fis[7] = tf->device;
564
565         fis[8] = tf->hob_lbal;
566         fis[9] = tf->hob_lbam;
567         fis[10] = tf->hob_lbah;
568         fis[11] = tf->hob_feature;
569
570         fis[12] = tf->nsect;
571         fis[13] = tf->hob_nsect;
572         fis[14] = 0;
573         fis[15] = tf->ctl;
574
575         fis[16] = tf->auxiliary & 0xff;
576         fis[17] = (tf->auxiliary >> 8) & 0xff;
577         fis[18] = (tf->auxiliary >> 16) & 0xff;
578         fis[19] = (tf->auxiliary >> 24) & 0xff;
579 }
580
581 /**
582  *      ata_tf_from_fis - Convert SATA FIS to ATA taskfile
583  *      @fis: Buffer from which data will be input
584  *      @tf: Taskfile to output
585  *
586  *      Converts a serial ATA FIS structure to a standard ATA taskfile.
587  *
588  *      LOCKING:
589  *      Inherited from caller.
590  */
591
592 void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
593 {
594         tf->command     = fis[2];       /* status */
595         tf->feature     = fis[3];       /* error */
596
597         tf->lbal        = fis[4];
598         tf->lbam        = fis[5];
599         tf->lbah        = fis[6];
600         tf->device      = fis[7];
601
602         tf->hob_lbal    = fis[8];
603         tf->hob_lbam    = fis[9];
604         tf->hob_lbah    = fis[10];
605
606         tf->nsect       = fis[12];
607         tf->hob_nsect   = fis[13];
608 }
609
610 static const u8 ata_rw_cmds[] = {
611         /* pio multi */
612         ATA_CMD_READ_MULTI,
613         ATA_CMD_WRITE_MULTI,
614         ATA_CMD_READ_MULTI_EXT,
615         ATA_CMD_WRITE_MULTI_EXT,
616         0,
617         0,
618         0,
619         ATA_CMD_WRITE_MULTI_FUA_EXT,
620         /* pio */
621         ATA_CMD_PIO_READ,
622         ATA_CMD_PIO_WRITE,
623         ATA_CMD_PIO_READ_EXT,
624         ATA_CMD_PIO_WRITE_EXT,
625         0,
626         0,
627         0,
628         0,
629         /* dma */
630         ATA_CMD_READ,
631         ATA_CMD_WRITE,
632         ATA_CMD_READ_EXT,
633         ATA_CMD_WRITE_EXT,
634         0,
635         0,
636         0,
637         ATA_CMD_WRITE_FUA_EXT
638 };
639
640 /**
641  *      ata_rwcmd_protocol - set taskfile r/w commands and protocol
642  *      @tf: command to examine and configure
643  *      @dev: device tf belongs to
644  *
645  *      Examine the device configuration and tf->flags to calculate
646  *      the proper read/write commands and protocol to use.
647  *
648  *      LOCKING:
649  *      caller.
650  */
651 static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
652 {
653         u8 cmd;
654
655         int index, fua, lba48, write;
656
657         fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
658         lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
659         write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
660
661         if (dev->flags & ATA_DFLAG_PIO) {
662                 tf->protocol = ATA_PROT_PIO;
663                 index = dev->multi_count ? 0 : 8;
664         } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
665                 /* Unable to use DMA due to host limitation */
666                 tf->protocol = ATA_PROT_PIO;
667                 index = dev->multi_count ? 0 : 8;
668         } else {
669                 tf->protocol = ATA_PROT_DMA;
670                 index = 16;
671         }
672
673         cmd = ata_rw_cmds[index + fua + lba48 + write];
674         if (cmd) {
675                 tf->command = cmd;
676                 return 0;
677         }
678         return -1;
679 }
680
681 /**
682  *      ata_tf_read_block - Read block address from ATA taskfile
683  *      @tf: ATA taskfile of interest
684  *      @dev: ATA device @tf belongs to
685  *
686  *      LOCKING:
687  *      None.
688  *
689  *      Read block address from @tf.  This function can handle all
690  *      three address formats - LBA, LBA48 and CHS.  tf->protocol and
691  *      flags select the address format to use.
692  *
693  *      RETURNS:
694  *      Block address read from @tf.
695  */
696 u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
697 {
698         u64 block = 0;
699
700         if (tf->flags & ATA_TFLAG_LBA) {
701                 if (tf->flags & ATA_TFLAG_LBA48) {
702                         block |= (u64)tf->hob_lbah << 40;
703                         block |= (u64)tf->hob_lbam << 32;
704                         block |= (u64)tf->hob_lbal << 24;
705                 } else
706                         block |= (tf->device & 0xf) << 24;
707
708                 block |= tf->lbah << 16;
709                 block |= tf->lbam << 8;
710                 block |= tf->lbal;
711         } else {
712                 u32 cyl, head, sect;
713
714                 cyl = tf->lbam | (tf->lbah << 8);
715                 head = tf->device & 0xf;
716                 sect = tf->lbal;
717
718                 if (!sect) {
719                         ata_dev_warn(dev,
720                                      "device reported invalid CHS sector 0\n");
721                         sect = 1; /* oh well */
722                 }
723
724                 block = (cyl * dev->heads + head) * dev->sectors + sect - 1;
725         }
726
727         return block;
728 }
729
730 /**
731  *      ata_build_rw_tf - Build ATA taskfile for given read/write request
732  *      @tf: Target ATA taskfile
733  *      @dev: ATA device @tf belongs to
734  *      @block: Block address
735  *      @n_block: Number of blocks
736  *      @tf_flags: RW/FUA etc...
737  *      @tag: tag
738  *
739  *      LOCKING:
740  *      None.
741  *
742  *      Build ATA taskfile @tf for read/write request described by
743  *      @block, @n_block, @tf_flags and @tag on @dev.
744  *
745  *      RETURNS:
746  *
747  *      0 on success, -ERANGE if the request is too large for @dev,
748  *      -EINVAL if the request is invalid.
749  */
750 int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
751                     u64 block, u32 n_block, unsigned int tf_flags,
752                     unsigned int tag)
753 {
754         tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
755         tf->flags |= tf_flags;
756
757         if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
758                 /* yay, NCQ */
759                 if (!lba_48_ok(block, n_block))
760                         return -ERANGE;
761
762                 tf->protocol = ATA_PROT_NCQ;
763                 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
764
765                 if (tf->flags & ATA_TFLAG_WRITE)
766                         tf->command = ATA_CMD_FPDMA_WRITE;
767                 else
768                         tf->command = ATA_CMD_FPDMA_READ;
769
770                 tf->nsect = tag << 3;
771                 tf->hob_feature = (n_block >> 8) & 0xff;
772                 tf->feature = n_block & 0xff;
773
774                 tf->hob_lbah = (block >> 40) & 0xff;
775                 tf->hob_lbam = (block >> 32) & 0xff;
776                 tf->hob_lbal = (block >> 24) & 0xff;
777                 tf->lbah = (block >> 16) & 0xff;
778                 tf->lbam = (block >> 8) & 0xff;
779                 tf->lbal = block & 0xff;
780
781                 tf->device = ATA_LBA;
782                 if (tf->flags & ATA_TFLAG_FUA)
783                         tf->device |= 1 << 7;
784         } else if (dev->flags & ATA_DFLAG_LBA) {
785                 tf->flags |= ATA_TFLAG_LBA;
786
787                 if (lba_28_ok(block, n_block)) {
788                         /* use LBA28 */
789                         tf->device |= (block >> 24) & 0xf;
790                 } else if (lba_48_ok(block, n_block)) {
791                         if (!(dev->flags & ATA_DFLAG_LBA48))
792                                 return -ERANGE;
793
794                         /* use LBA48 */
795                         tf->flags |= ATA_TFLAG_LBA48;
796
797                         tf->hob_nsect = (n_block >> 8) & 0xff;
798
799                         tf->hob_lbah = (block >> 40) & 0xff;
800                         tf->hob_lbam = (block >> 32) & 0xff;
801                         tf->hob_lbal = (block >> 24) & 0xff;
802                 } else
803                         /* request too large even for LBA48 */
804                         return -ERANGE;
805
806                 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
807                         return -EINVAL;
808
809                 tf->nsect = n_block & 0xff;
810
811                 tf->lbah = (block >> 16) & 0xff;
812                 tf->lbam = (block >> 8) & 0xff;
813                 tf->lbal = block & 0xff;
814
815                 tf->device |= ATA_LBA;
816         } else {
817                 /* CHS */
818                 u32 sect, head, cyl, track;
819
820                 /* The request -may- be too large for CHS addressing. */
821                 if (!lba_28_ok(block, n_block))
822                         return -ERANGE;
823
824                 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
825                         return -EINVAL;
826
827                 /* Convert LBA to CHS */
828                 track = (u32)block / dev->sectors;
829                 cyl   = track / dev->heads;
830                 head  = track % dev->heads;
831                 sect  = (u32)block % dev->sectors + 1;
832
833                 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
834                         (u32)block, track, cyl, head, sect);
835
836                 /* Check whether the converted CHS can fit.
837                    Cylinder: 0-65535
838                    Head: 0-15
839                    Sector: 1-255*/
840                 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
841                         return -ERANGE;
842
843                 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
844                 tf->lbal = sect;
845                 tf->lbam = cyl;
846                 tf->lbah = cyl >> 8;
847                 tf->device |= head;
848         }
849
850         return 0;
851 }
852
853 /**
854  *      ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
855  *      @pio_mask: pio_mask
856  *      @mwdma_mask: mwdma_mask
857  *      @udma_mask: udma_mask
858  *
859  *      Pack @pio_mask, @mwdma_mask and @udma_mask into a single
860  *      unsigned int xfer_mask.
861  *
862  *      LOCKING:
863  *      None.
864  *
865  *      RETURNS:
866  *      Packed xfer_mask.
867  */
868 unsigned long ata_pack_xfermask(unsigned long pio_mask,
869                                 unsigned long mwdma_mask,
870                                 unsigned long udma_mask)
871 {
872         return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
873                 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
874                 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
875 }
876
877 /**
878  *      ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
879  *      @xfer_mask: xfer_mask to unpack
880  *      @pio_mask: resulting pio_mask
881  *      @mwdma_mask: resulting mwdma_mask
882  *      @udma_mask: resulting udma_mask
883  *
884  *      Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
885  *      Any NULL distination masks will be ignored.
886  */
887 void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
888                          unsigned long *mwdma_mask, unsigned long *udma_mask)
889 {
890         if (pio_mask)
891                 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
892         if (mwdma_mask)
893                 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
894         if (udma_mask)
895                 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
896 }
897
898 static const struct ata_xfer_ent {
899         int shift, bits;
900         u8 base;
901 } ata_xfer_tbl[] = {
902         { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
903         { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
904         { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
905         { -1, },
906 };
907
908 /**
909  *      ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
910  *      @xfer_mask: xfer_mask of interest
911  *
912  *      Return matching XFER_* value for @xfer_mask.  Only the highest
913  *      bit of @xfer_mask is considered.
914  *
915  *      LOCKING:
916  *      None.
917  *
918  *      RETURNS:
919  *      Matching XFER_* value, 0xff if no match found.
920  */
921 u8 ata_xfer_mask2mode(unsigned long xfer_mask)
922 {
923         int highbit = fls(xfer_mask) - 1;
924         const struct ata_xfer_ent *ent;
925
926         for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
927                 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
928                         return ent->base + highbit - ent->shift;
929         return 0xff;
930 }
931
932 /**
933  *      ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
934  *      @xfer_mode: XFER_* of interest
935  *
936  *      Return matching xfer_mask for @xfer_mode.
937  *
938  *      LOCKING:
939  *      None.
940  *
941  *      RETURNS:
942  *      Matching xfer_mask, 0 if no match found.
943  */
944 unsigned long ata_xfer_mode2mask(u8 xfer_mode)
945 {
946         const struct ata_xfer_ent *ent;
947
948         for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
949                 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
950                         return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
951                                 & ~((1 << ent->shift) - 1);
952         return 0;
953 }
954
955 /**
956  *      ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
957  *      @xfer_mode: XFER_* of interest
958  *
959  *      Return matching xfer_shift for @xfer_mode.
960  *
961  *      LOCKING:
962  *      None.
963  *
964  *      RETURNS:
965  *      Matching xfer_shift, -1 if no match found.
966  */
967 int ata_xfer_mode2shift(unsigned long xfer_mode)
968 {
969         const struct ata_xfer_ent *ent;
970
971         for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
972                 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
973                         return ent->shift;
974         return -1;
975 }
976
977 /**
978  *      ata_mode_string - convert xfer_mask to string
979  *      @xfer_mask: mask of bits supported; only highest bit counts.
980  *
981  *      Determine string which represents the highest speed
982  *      (highest bit in @modemask).
983  *
984  *      LOCKING:
985  *      None.
986  *
987  *      RETURNS:
988  *      Constant C string representing highest speed listed in
989  *      @mode_mask, or the constant C string "<n/a>".
990  */
991 const char *ata_mode_string(unsigned long xfer_mask)
992 {
993         static const char * const xfer_mode_str[] = {
994                 "PIO0",
995                 "PIO1",
996                 "PIO2",
997                 "PIO3",
998                 "PIO4",
999                 "PIO5",
1000                 "PIO6",
1001                 "MWDMA0",
1002                 "MWDMA1",
1003                 "MWDMA2",
1004                 "MWDMA3",
1005                 "MWDMA4",
1006                 "UDMA/16",
1007                 "UDMA/25",
1008                 "UDMA/33",
1009                 "UDMA/44",
1010                 "UDMA/66",
1011                 "UDMA/100",
1012                 "UDMA/133",
1013                 "UDMA7",
1014         };
1015         int highbit;
1016
1017         highbit = fls(xfer_mask) - 1;
1018         if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
1019                 return xfer_mode_str[highbit];
1020         return "<n/a>";
1021 }
1022
1023 const char *sata_spd_string(unsigned int spd)
1024 {
1025         static const char * const spd_str[] = {
1026                 "1.5 Gbps",
1027                 "3.0 Gbps",
1028                 "6.0 Gbps",
1029         };
1030
1031         if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
1032                 return "<unknown>";
1033         return spd_str[spd - 1];
1034 }
1035
1036 /**
1037  *      ata_dev_classify - determine device type based on ATA-spec signature
1038  *      @tf: ATA taskfile register set for device to be identified
1039  *
1040  *      Determine from taskfile register contents whether a device is
1041  *      ATA or ATAPI, as per "Signature and persistence" section
1042  *      of ATA/PI spec (volume 1, sect 5.14).
1043  *
1044  *      LOCKING:
1045  *      None.
1046  *
1047  *      RETURNS:
1048  *      Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP,
1049  *      %ATA_DEV_ZAC, or %ATA_DEV_UNKNOWN the event of failure.
1050  */
1051 unsigned int ata_dev_classify(const struct ata_taskfile *tf)
1052 {
1053         /* Apple's open source Darwin code hints that some devices only
1054          * put a proper signature into the LBA mid/high registers,
1055          * So, we only check those.  It's sufficient for uniqueness.
1056          *
1057          * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1058          * signatures for ATA and ATAPI devices attached on SerialATA,
1059          * 0x3c/0xc3 and 0x69/0x96 respectively.  However, SerialATA
1060          * spec has never mentioned about using different signatures
1061          * for ATA/ATAPI devices.  Then, Serial ATA II: Port
1062          * Multiplier specification began to use 0x69/0x96 to identify
1063          * port multpliers and 0x3c/0xc3 to identify SEMB device.
1064          * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1065          * 0x69/0x96 shortly and described them as reserved for
1066          * SerialATA.
1067          *
1068          * We follow the current spec and consider that 0x69/0x96
1069          * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
1070          * Unfortunately, WDC WD1600JS-62MHB5 (a hard drive) reports
1071          * SEMB signature.  This is worked around in
1072          * ata_dev_read_id().
1073          */
1074         if ((tf->lbam == 0) && (tf->lbah == 0)) {
1075                 DPRINTK("found ATA device by sig\n");
1076                 return ATA_DEV_ATA;
1077         }
1078
1079         if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
1080                 DPRINTK("found ATAPI device by sig\n");
1081                 return ATA_DEV_ATAPI;
1082         }
1083
1084         if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1085                 DPRINTK("found PMP device by sig\n");
1086                 return ATA_DEV_PMP;
1087         }
1088
1089         if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
1090                 DPRINTK("found SEMB device by sig (could be ATA device)\n");
1091                 return ATA_DEV_SEMB;
1092         }
1093
1094         if ((tf->lbam == 0xcd) && (tf->lbah == 0xab)) {
1095                 DPRINTK("found ZAC device by sig\n");
1096                 return ATA_DEV_ZAC;
1097         }
1098
1099         DPRINTK("unknown device\n");
1100         return ATA_DEV_UNKNOWN;
1101 }
1102
1103 /**
1104  *      ata_id_string - Convert IDENTIFY DEVICE page into string
1105  *      @id: IDENTIFY DEVICE results we will examine
1106  *      @s: string into which data is output
1107  *      @ofs: offset into identify device page
1108  *      @len: length of string to return. must be an even number.
1109  *
1110  *      The strings in the IDENTIFY DEVICE page are broken up into
1111  *      16-bit chunks.  Run through the string, and output each
1112  *      8-bit chunk linearly, regardless of platform.
1113  *
1114  *      LOCKING:
1115  *      caller.
1116  */
1117
1118 void ata_id_string(const u16 *id, unsigned char *s,
1119                    unsigned int ofs, unsigned int len)
1120 {
1121         unsigned int c;
1122
1123         BUG_ON(len & 1);
1124
1125         while (len > 0) {
1126                 c = id[ofs] >> 8;
1127                 *s = c;
1128                 s++;
1129
1130                 c = id[ofs] & 0xff;
1131                 *s = c;
1132                 s++;
1133
1134                 ofs++;
1135                 len -= 2;
1136         }
1137 }
1138
1139 /**
1140  *      ata_id_c_string - Convert IDENTIFY DEVICE page into C string
1141  *      @id: IDENTIFY DEVICE results we will examine
1142  *      @s: string into which data is output
1143  *      @ofs: offset into identify device page
1144  *      @len: length of string to return. must be an odd number.
1145  *
1146  *      This function is identical to ata_id_string except that it
1147  *      trims trailing spaces and terminates the resulting string with
1148  *      null.  @len must be actual maximum length (even number) + 1.
1149  *
1150  *      LOCKING:
1151  *      caller.
1152  */
1153 void ata_id_c_string(const u16 *id, unsigned char *s,
1154                      unsigned int ofs, unsigned int len)
1155 {
1156         unsigned char *p;
1157
1158         ata_id_string(id, s, ofs, len - 1);
1159
1160         p = s + strnlen(s, len - 1);
1161         while (p > s && p[-1] == ' ')
1162                 p--;
1163         *p = '\0';
1164 }
1165
1166 static u64 ata_id_n_sectors(const u16 *id)
1167 {
1168         if (ata_id_has_lba(id)) {
1169                 if (ata_id_has_lba48(id))
1170                         return ata_id_u64(id, ATA_ID_LBA_CAPACITY_2);
1171                 else
1172                         return ata_id_u32(id, ATA_ID_LBA_CAPACITY);
1173         } else {
1174                 if (ata_id_current_chs_valid(id))
1175                         return id[ATA_ID_CUR_CYLS] * id[ATA_ID_CUR_HEADS] *
1176                                id[ATA_ID_CUR_SECTORS];
1177                 else
1178                         return id[ATA_ID_CYLS] * id[ATA_ID_HEADS] *
1179                                id[ATA_ID_SECTORS];
1180         }
1181 }
1182
1183 u64 ata_tf_to_lba48(const struct ata_taskfile *tf)
1184 {
1185         u64 sectors = 0;
1186
1187         sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1188         sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
1189         sectors |= ((u64)(tf->hob_lbal & 0xff)) << 24;
1190         sectors |= (tf->lbah & 0xff) << 16;
1191         sectors |= (tf->lbam & 0xff) << 8;
1192         sectors |= (tf->lbal & 0xff);
1193
1194         return sectors;
1195 }
1196
1197 u64 ata_tf_to_lba(const struct ata_taskfile *tf)
1198 {
1199         u64 sectors = 0;
1200
1201         sectors |= (tf->device & 0x0f) << 24;
1202         sectors |= (tf->lbah & 0xff) << 16;
1203         sectors |= (tf->lbam & 0xff) << 8;
1204         sectors |= (tf->lbal & 0xff);
1205
1206         return sectors;
1207 }
1208
1209 /**
1210  *      ata_read_native_max_address - Read native max address
1211  *      @dev: target device
1212  *      @max_sectors: out parameter for the result native max address
1213  *
1214  *      Perform an LBA48 or LBA28 native size query upon the device in
1215  *      question.
1216  *
1217  *      RETURNS:
1218  *      0 on success, -EACCES if command is aborted by the drive.
1219  *      -EIO on other errors.
1220  */
1221 static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
1222 {
1223         unsigned int err_mask;
1224         struct ata_taskfile tf;
1225         int lba48 = ata_id_has_lba48(dev->id);
1226
1227         ata_tf_init(dev, &tf);
1228
1229         /* always clear all address registers */
1230         tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
1231
1232         if (lba48) {
1233                 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1234                 tf.flags |= ATA_TFLAG_LBA48;
1235         } else
1236                 tf.command = ATA_CMD_READ_NATIVE_MAX;
1237
1238         tf.protocol |= ATA_PROT_NODATA;
1239         tf.device |= ATA_LBA;
1240
1241         err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
1242         if (err_mask) {
1243                 ata_dev_warn(dev,
1244                              "failed to read native max address (err_mask=0x%x)\n",
1245                              err_mask);
1246                 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1247                         return -EACCES;
1248                 return -EIO;
1249         }
1250
1251         if (lba48)
1252                 *max_sectors = ata_tf_to_lba48(&tf) + 1;
1253         else
1254                 *max_sectors = ata_tf_to_lba(&tf) + 1;
1255         if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
1256                 (*max_sectors)--;
1257         return 0;
1258 }
1259
1260 /**
1261  *      ata_set_max_sectors - Set max sectors
1262  *      @dev: target device
1263  *      @new_sectors: new max sectors value to set for the device
1264  *
1265  *      Set max sectors of @dev to @new_sectors.
1266  *
1267  *      RETURNS:
1268  *      0 on success, -EACCES if command is aborted or denied (due to
1269  *      previous non-volatile SET_MAX) by the drive.  -EIO on other
1270  *      errors.
1271  */
1272 static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
1273 {
1274         unsigned int err_mask;
1275         struct ata_taskfile tf;
1276         int lba48 = ata_id_has_lba48(dev->id);
1277
1278         new_sectors--;
1279
1280         ata_tf_init(dev, &tf);
1281
1282         tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
1283
1284         if (lba48) {
1285                 tf.command = ATA_CMD_SET_MAX_EXT;
1286                 tf.flags |= ATA_TFLAG_LBA48;
1287
1288                 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1289                 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1290                 tf.hob_lbah = (new_sectors >> 40) & 0xff;
1291         } else {
1292                 tf.command = ATA_CMD_SET_MAX;
1293
1294                 tf.device |= (new_sectors >> 24) & 0xf;
1295         }
1296
1297         tf.protocol |= ATA_PROT_NODATA;
1298         tf.device |= ATA_LBA;
1299
1300         tf.lbal = (new_sectors >> 0) & 0xff;
1301         tf.lbam = (new_sectors >> 8) & 0xff;
1302         tf.lbah = (new_sectors >> 16) & 0xff;
1303
1304         err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
1305         if (err_mask) {
1306                 ata_dev_warn(dev,
1307                              "failed to set max address (err_mask=0x%x)\n",
1308                              err_mask);
1309                 if (err_mask == AC_ERR_DEV &&
1310                     (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1311                         return -EACCES;
1312                 return -EIO;
1313         }
1314
1315         return 0;
1316 }
1317
1318 /**
1319  *      ata_hpa_resize          -       Resize a device with an HPA set
1320  *      @dev: Device to resize
1321  *
1322  *      Read the size of an LBA28 or LBA48 disk with HPA features and resize
1323  *      it if required to the full size of the media. The caller must check
1324  *      the drive has the HPA feature set enabled.
1325  *
1326  *      RETURNS:
1327  *      0 on success, -errno on failure.
1328  */
1329 static int ata_hpa_resize(struct ata_device *dev)
1330 {
1331         struct ata_eh_context *ehc = &dev->link->eh_context;
1332         int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1333         bool unlock_hpa = ata_ignore_hpa || dev->flags & ATA_DFLAG_UNLOCK_HPA;
1334         u64 sectors = ata_id_n_sectors(dev->id);
1335         u64 native_sectors;
1336         int rc;
1337
1338         /* do we need to do it? */
1339         if ((dev->class != ATA_DEV_ATA && dev->class != ATA_DEV_ZAC) ||
1340             !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1341             (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
1342                 return 0;
1343
1344         /* read native max address */
1345         rc = ata_read_native_max_address(dev, &native_sectors);
1346         if (rc) {
1347                 /* If device aborted the command or HPA isn't going to
1348                  * be unlocked, skip HPA resizing.
1349                  */
1350                 if (rc == -EACCES || !unlock_hpa) {
1351                         ata_dev_warn(dev,
1352                                      "HPA support seems broken, skipping HPA handling\n");
1353                         dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1354
1355                         /* we can continue if device aborted the command */
1356                         if (rc == -EACCES)
1357                                 rc = 0;
1358                 }
1359
1360                 return rc;
1361         }
1362         dev->n_native_sectors = native_sectors;
1363
1364         /* nothing to do? */
1365         if (native_sectors <= sectors || !unlock_hpa) {
1366                 if (!print_info || native_sectors == sectors)
1367                         return 0;
1368
1369                 if (native_sectors > sectors)
1370                         ata_dev_info(dev,
1371                                 "HPA detected: current %llu, native %llu\n",
1372                                 (unsigned long long)sectors,
1373                                 (unsigned long long)native_sectors);
1374                 else if (native_sectors < sectors)
1375                         ata_dev_warn(dev,
1376                                 "native sectors (%llu) is smaller than sectors (%llu)\n",
1377                                 (unsigned long long)native_sectors,
1378                                 (unsigned long long)sectors);
1379                 return 0;
1380         }
1381
1382         /* let's unlock HPA */
1383         rc = ata_set_max_sectors(dev, native_sectors);
1384         if (rc == -EACCES) {
1385                 /* if device aborted the command, skip HPA resizing */
1386                 ata_dev_warn(dev,
1387                              "device aborted resize (%llu -> %llu), skipping HPA handling\n",
1388                              (unsigned long long)sectors,
1389                              (unsigned long long)native_sectors);
1390                 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1391                 return 0;
1392         } else if (rc)
1393                 return rc;
1394
1395         /* re-read IDENTIFY data */
1396         rc = ata_dev_reread_id(dev, 0);
1397         if (rc) {
1398                 ata_dev_err(dev,
1399                             "failed to re-read IDENTIFY data after HPA resizing\n");
1400                 return rc;
1401         }
1402
1403         if (print_info) {
1404                 u64 new_sectors = ata_id_n_sectors(dev->id);
1405                 ata_dev_info(dev,
1406                         "HPA unlocked: %llu -> %llu, native %llu\n",
1407                         (unsigned long long)sectors,
1408                         (unsigned long long)new_sectors,
1409                         (unsigned long long)native_sectors);
1410         }
1411
1412         return 0;
1413 }
1414
1415 /**
1416  *      ata_dump_id - IDENTIFY DEVICE info debugging output
1417  *      @id: IDENTIFY DEVICE page to dump
1418  *
1419  *      Dump selected 16-bit words from the given IDENTIFY DEVICE
1420  *      page.
1421  *
1422  *      LOCKING:
1423  *      caller.
1424  */
1425
1426 static inline void ata_dump_id(const u16 *id)
1427 {
1428         DPRINTK("49==0x%04x  "
1429                 "53==0x%04x  "
1430                 "63==0x%04x  "
1431                 "64==0x%04x  "
1432                 "75==0x%04x  \n",
1433                 id[49],
1434                 id[53],
1435                 id[63],
1436                 id[64],
1437                 id[75]);
1438         DPRINTK("80==0x%04x  "
1439                 "81==0x%04x  "
1440                 "82==0x%04x  "
1441                 "83==0x%04x  "
1442                 "84==0x%04x  \n",
1443                 id[80],
1444                 id[81],
1445                 id[82],
1446                 id[83],
1447                 id[84]);
1448         DPRINTK("88==0x%04x  "
1449                 "93==0x%04x\n",
1450                 id[88],
1451                 id[93]);
1452 }
1453
1454 /**
1455  *      ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1456  *      @id: IDENTIFY data to compute xfer mask from
1457  *
1458  *      Compute the xfermask for this device. This is not as trivial
1459  *      as it seems if we must consider early devices correctly.
1460  *
1461  *      FIXME: pre IDE drive timing (do we care ?).
1462  *
1463  *      LOCKING:
1464  *      None.
1465  *
1466  *      RETURNS:
1467  *      Computed xfermask
1468  */
1469 unsigned long ata_id_xfermask(const u16 *id)
1470 {
1471         unsigned long pio_mask, mwdma_mask, udma_mask;
1472
1473         /* Usual case. Word 53 indicates word 64 is valid */
1474         if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1475                 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1476                 pio_mask <<= 3;
1477                 pio_mask |= 0x7;
1478         } else {
1479                 /* If word 64 isn't valid then Word 51 high byte holds
1480                  * the PIO timing number for the maximum. Turn it into
1481                  * a mask.
1482                  */
1483                 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
1484                 if (mode < 5)   /* Valid PIO range */
1485                         pio_mask = (2 << mode) - 1;
1486                 else
1487                         pio_mask = 1;
1488
1489                 /* But wait.. there's more. Design your standards by
1490                  * committee and you too can get a free iordy field to
1491                  * process. However its the speeds not the modes that
1492                  * are supported... Note drivers using the timing API
1493                  * will get this right anyway
1494                  */
1495         }
1496
1497         mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
1498
1499         if (ata_id_is_cfa(id)) {
1500                 /*
1501                  *      Process compact flash extended modes
1502                  */
1503                 int pio = (id[ATA_ID_CFA_MODES] >> 0) & 0x7;
1504                 int dma = (id[ATA_ID_CFA_MODES] >> 3) & 0x7;
1505
1506                 if (pio)
1507                         pio_mask |= (1 << 5);
1508                 if (pio > 1)
1509                         pio_mask |= (1 << 6);
1510                 if (dma)
1511                         mwdma_mask |= (1 << 3);
1512                 if (dma > 1)
1513                         mwdma_mask |= (1 << 4);
1514         }
1515
1516         udma_mask = 0;
1517         if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1518                 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
1519
1520         return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1521 }
1522
1523 static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
1524 {
1525         struct completion *waiting = qc->private_data;
1526
1527         complete(waiting);
1528 }
1529
1530 /**
1531  *      ata_exec_internal_sg - execute libata internal command
1532  *      @dev: Device to which the command is sent
1533  *      @tf: Taskfile registers for the command and the result
1534  *      @cdb: CDB for packet command
1535  *      @dma_dir: Data transfer direction of the command
1536  *      @sgl: sg list for the data buffer of the command
1537  *      @n_elem: Number of sg entries
1538  *      @timeout: Timeout in msecs (0 for default)
1539  *
1540  *      Executes libata internal command with timeout.  @tf contains
1541  *      command on entry and result on return.  Timeout and error
1542  *      conditions are reported via return value.  No recovery action
1543  *      is taken after a command times out.  It's caller's duty to
1544  *      clean up after timeout.
1545  *
1546  *      LOCKING:
1547  *      None.  Should be called with kernel context, might sleep.
1548  *
1549  *      RETURNS:
1550  *      Zero on success, AC_ERR_* mask on failure
1551  */
1552 unsigned ata_exec_internal_sg(struct ata_device *dev,
1553                               struct ata_taskfile *tf, const u8 *cdb,
1554                               int dma_dir, struct scatterlist *sgl,
1555                               unsigned int n_elem, unsigned long timeout)
1556 {
1557         struct ata_link *link = dev->link;
1558         struct ata_port *ap = link->ap;
1559         u8 command = tf->command;
1560         int auto_timeout = 0;
1561         struct ata_queued_cmd *qc;
1562         unsigned int tag, preempted_tag;
1563         u32 preempted_sactive, preempted_qc_active;
1564         int preempted_nr_active_links;
1565         DECLARE_COMPLETION_ONSTACK(wait);
1566         unsigned long flags;
1567         unsigned int err_mask;
1568         int rc;
1569
1570         spin_lock_irqsave(ap->lock, flags);
1571
1572         /* no internal command while frozen */
1573         if (ap->pflags & ATA_PFLAG_FROZEN) {
1574                 spin_unlock_irqrestore(ap->lock, flags);
1575                 return AC_ERR_SYSTEM;
1576         }
1577
1578         /* initialize internal qc */
1579
1580         /* XXX: Tag 0 is used for drivers with legacy EH as some
1581          * drivers choke if any other tag is given.  This breaks
1582          * ata_tag_internal() test for those drivers.  Don't use new
1583          * EH stuff without converting to it.
1584          */
1585         if (ap->ops->error_handler)
1586                 tag = ATA_TAG_INTERNAL;
1587         else
1588                 tag = 0;
1589
1590         qc = __ata_qc_from_tag(ap, tag);
1591
1592         qc->tag = tag;
1593         qc->scsicmd = NULL;
1594         qc->ap = ap;
1595         qc->dev = dev;
1596         ata_qc_reinit(qc);
1597
1598         preempted_tag = link->active_tag;
1599         preempted_sactive = link->sactive;
1600         preempted_qc_active = ap->qc_active;
1601         preempted_nr_active_links = ap->nr_active_links;
1602         link->active_tag = ATA_TAG_POISON;
1603         link->sactive = 0;
1604         ap->qc_active = 0;
1605         ap->nr_active_links = 0;
1606
1607         /* prepare & issue qc */
1608         qc->tf = *tf;
1609         if (cdb)
1610                 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
1611
1612         /* some SATA bridges need us to indicate data xfer direction */
1613         if (tf->protocol == ATAPI_PROT_DMA && (dev->flags & ATA_DFLAG_DMADIR) &&
1614             dma_dir == DMA_FROM_DEVICE)
1615                 qc->tf.feature |= ATAPI_DMADIR;
1616
1617         qc->flags |= ATA_QCFLAG_RESULT_TF;
1618         qc->dma_dir = dma_dir;
1619         if (dma_dir != DMA_NONE) {
1620                 unsigned int i, buflen = 0;
1621                 struct scatterlist *sg;
1622
1623                 for_each_sg(sgl, sg, n_elem, i)
1624                         buflen += sg->length;
1625
1626                 ata_sg_init(qc, sgl, n_elem);
1627                 qc->nbytes = buflen;
1628         }
1629
1630         qc->private_data = &wait;
1631         qc->complete_fn = ata_qc_complete_internal;
1632
1633         ata_qc_issue(qc);
1634
1635         spin_unlock_irqrestore(ap->lock, flags);
1636
1637         if (!timeout) {
1638                 if (ata_probe_timeout)
1639                         timeout = ata_probe_timeout * 1000;
1640                 else {
1641                         timeout = ata_internal_cmd_timeout(dev, command);
1642                         auto_timeout = 1;
1643                 }
1644         }
1645
1646         if (ap->ops->error_handler)
1647                 ata_eh_release(ap);
1648
1649         rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
1650
1651         if (ap->ops->error_handler)
1652                 ata_eh_acquire(ap);
1653
1654         ata_sff_flush_pio_task(ap);
1655
1656         if (!rc) {
1657                 spin_lock_irqsave(ap->lock, flags);
1658
1659                 /* We're racing with irq here.  If we lose, the
1660                  * following test prevents us from completing the qc
1661                  * twice.  If we win, the port is frozen and will be
1662                  * cleaned up by ->post_internal_cmd().
1663                  */
1664                 if (qc->flags & ATA_QCFLAG_ACTIVE) {
1665                         qc->err_mask |= AC_ERR_TIMEOUT;
1666
1667                         if (ap->ops->error_handler)
1668                                 ata_port_freeze(ap);
1669                         else
1670                                 ata_qc_complete(qc);
1671
1672                         if (ata_msg_warn(ap))
1673                                 ata_dev_warn(dev, "qc timeout (cmd 0x%x)\n",
1674                                              command);
1675                 }
1676
1677                 spin_unlock_irqrestore(ap->lock, flags);
1678         }
1679
1680         /* do post_internal_cmd */
1681         if (ap->ops->post_internal_cmd)
1682                 ap->ops->post_internal_cmd(qc);
1683
1684         /* perform minimal error analysis */
1685         if (qc->flags & ATA_QCFLAG_FAILED) {
1686                 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1687                         qc->err_mask |= AC_ERR_DEV;
1688
1689                 if (!qc->err_mask)
1690                         qc->err_mask |= AC_ERR_OTHER;
1691
1692                 if (qc->err_mask & ~AC_ERR_OTHER)
1693                         qc->err_mask &= ~AC_ERR_OTHER;
1694         }
1695
1696         /* finish up */
1697         spin_lock_irqsave(ap->lock, flags);
1698
1699         *tf = qc->result_tf;
1700         err_mask = qc->err_mask;
1701
1702         ata_qc_free(qc);
1703         link->active_tag = preempted_tag;
1704         link->sactive = preempted_sactive;
1705         ap->qc_active = preempted_qc_active;
1706         ap->nr_active_links = preempted_nr_active_links;
1707
1708         spin_unlock_irqrestore(ap->lock, flags);
1709
1710         if ((err_mask & AC_ERR_TIMEOUT) && auto_timeout)
1711                 ata_internal_cmd_timed_out(dev, command);
1712
1713         return err_mask;
1714 }
1715
1716 /**
1717  *      ata_exec_internal - execute libata internal command
1718  *      @dev: Device to which the command is sent
1719  *      @tf: Taskfile registers for the command and the result
1720  *      @cdb: CDB for packet command
1721  *      @dma_dir: Data transfer direction of the command
1722  *      @buf: Data buffer of the command
1723  *      @buflen: Length of data buffer
1724  *      @timeout: Timeout in msecs (0 for default)
1725  *
1726  *      Wrapper around ata_exec_internal_sg() which takes simple
1727  *      buffer instead of sg list.
1728  *
1729  *      LOCKING:
1730  *      None.  Should be called with kernel context, might sleep.
1731  *
1732  *      RETURNS:
1733  *      Zero on success, AC_ERR_* mask on failure
1734  */
1735 unsigned ata_exec_internal(struct ata_device *dev,
1736                            struct ata_taskfile *tf, const u8 *cdb,
1737                            int dma_dir, void *buf, unsigned int buflen,
1738                            unsigned long timeout)
1739 {
1740         struct scatterlist *psg = NULL, sg;
1741         unsigned int n_elem = 0;
1742
1743         if (dma_dir != DMA_NONE) {
1744                 WARN_ON(!buf);
1745                 sg_init_one(&sg, buf, buflen);
1746                 psg = &sg;
1747                 n_elem++;
1748         }
1749
1750         return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1751                                     timeout);
1752 }
1753
1754 /**
1755  *      ata_pio_need_iordy      -       check if iordy needed
1756  *      @adev: ATA device
1757  *
1758  *      Check if the current speed of the device requires IORDY. Used
1759  *      by various controllers for chip configuration.
1760  */
1761 unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1762 {
1763         /* Don't set IORDY if we're preparing for reset.  IORDY may
1764          * lead to controller lock up on certain controllers if the
1765          * port is not occupied.  See bko#11703 for details.
1766          */
1767         if (adev->link->ap->pflags & ATA_PFLAG_RESETTING)
1768                 return 0;
1769         /* Controller doesn't support IORDY.  Probably a pointless
1770          * check as the caller should know this.
1771          */
1772         if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
1773                 return 0;
1774         /* CF spec. r4.1 Table 22 says no iordy on PIO5 and PIO6.  */
1775         if (ata_id_is_cfa(adev->id)
1776             && (adev->pio_mode == XFER_PIO_5 || adev->pio_mode == XFER_PIO_6))
1777                 return 0;
1778         /* PIO3 and higher it is mandatory */
1779         if (adev->pio_mode > XFER_PIO_2)
1780                 return 1;
1781         /* We turn it on when possible */
1782         if (ata_id_has_iordy(adev->id))
1783                 return 1;
1784         return 0;
1785 }
1786
1787 /**
1788  *      ata_pio_mask_no_iordy   -       Return the non IORDY mask
1789  *      @adev: ATA device
1790  *
1791  *      Compute the highest mode possible if we are not using iordy. Return
1792  *      -1 if no iordy mode is available.
1793  */
1794 static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1795 {
1796         /* If we have no drive specific rule, then PIO 2 is non IORDY */
1797         if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1798                 u16 pio = adev->id[ATA_ID_EIDE_PIO];
1799                 /* Is the speed faster than the drive allows non IORDY ? */
1800                 if (pio) {
1801                         /* This is cycle times not frequency - watch the logic! */
1802                         if (pio > 240)  /* PIO2 is 240nS per cycle */
1803                                 return 3 << ATA_SHIFT_PIO;
1804                         return 7 << ATA_SHIFT_PIO;
1805                 }
1806         }
1807         return 3 << ATA_SHIFT_PIO;
1808 }
1809
1810 /**
1811  *      ata_do_dev_read_id              -       default ID read method
1812  *      @dev: device
1813  *      @tf: proposed taskfile
1814  *      @id: data buffer
1815  *
1816  *      Issue the identify taskfile and hand back the buffer containing
1817  *      identify data. For some RAID controllers and for pre ATA devices
1818  *      this function is wrapped or replaced by the driver
1819  */
1820 unsigned int ata_do_dev_read_id(struct ata_device *dev,
1821                                         struct ata_taskfile *tf, u16 *id)
1822 {
1823         return ata_exec_internal(dev, tf, NULL, DMA_FROM_DEVICE,
1824                                      id, sizeof(id[0]) * ATA_ID_WORDS, 0);
1825 }
1826
1827 /**
1828  *      ata_dev_read_id - Read ID data from the specified device
1829  *      @dev: target device
1830  *      @p_class: pointer to class of the target device (may be changed)
1831  *      @flags: ATA_READID_* flags
1832  *      @id: buffer to read IDENTIFY data into
1833  *
1834  *      Read ID data from the specified device.  ATA_CMD_ID_ATA is
1835  *      performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
1836  *      devices.  This function also issues ATA_CMD_INIT_DEV_PARAMS
1837  *      for pre-ATA4 drives.
1838  *
1839  *      FIXME: ATA_CMD_ID_ATA is optional for early drives and right
1840  *      now we abort if we hit that case.
1841  *
1842  *      LOCKING:
1843  *      Kernel thread context (may sleep)
1844  *
1845  *      RETURNS:
1846  *      0 on success, -errno otherwise.
1847  */
1848 int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1849                     unsigned int flags, u16 *id)
1850 {
1851         struct ata_port *ap = dev->link->ap;
1852         unsigned int class = *p_class;
1853         struct ata_taskfile tf;
1854         unsigned int err_mask = 0;
1855         const char *reason;
1856         bool is_semb = class == ATA_DEV_SEMB;
1857         int may_fallback = 1, tried_spinup = 0;
1858         int rc;
1859
1860         if (ata_msg_ctl(ap))
1861                 ata_dev_dbg(dev, "%s: ENTER\n", __func__);
1862
1863 retry:
1864         ata_tf_init(dev, &tf);
1865
1866         switch (class) {
1867         case ATA_DEV_SEMB:
1868                 class = ATA_DEV_ATA;    /* some hard drives report SEMB sig */
1869         case ATA_DEV_ATA:
1870         case ATA_DEV_ZAC:
1871                 tf.command = ATA_CMD_ID_ATA;
1872                 break;
1873         case ATA_DEV_ATAPI:
1874                 tf.command = ATA_CMD_ID_ATAPI;
1875                 break;
1876         default:
1877                 rc = -ENODEV;
1878                 reason = "unsupported class";
1879                 goto err_out;
1880         }
1881
1882         tf.protocol = ATA_PROT_PIO;
1883
1884         /* Some devices choke if TF registers contain garbage.  Make
1885          * sure those are properly initialized.
1886          */
1887         tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1888
1889         /* Device presence detection is unreliable on some
1890          * controllers.  Always poll IDENTIFY if available.
1891          */
1892         tf.flags |= ATA_TFLAG_POLLING;
1893
1894         if (ap->ops->read_id)
1895                 err_mask = ap->ops->read_id(dev, &tf, id);
1896         else
1897                 err_mask = ata_do_dev_read_id(dev, &tf, id);
1898
1899         if (err_mask) {
1900                 if (err_mask & AC_ERR_NODEV_HINT) {
1901                         ata_dev_dbg(dev, "NODEV after polling detection\n");
1902                         return -ENOENT;
1903                 }
1904
1905                 if (is_semb) {
1906                         ata_dev_info(dev,
1907                      "IDENTIFY failed on device w/ SEMB sig, disabled\n");
1908                         /* SEMB is not supported yet */
1909                         *p_class = ATA_DEV_SEMB_UNSUP;
1910                         return 0;
1911                 }
1912
1913                 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1914                         /* Device or controller might have reported
1915                          * the wrong device class.  Give a shot at the
1916                          * other IDENTIFY if the current one is
1917                          * aborted by the device.
1918                          */
1919                         if (may_fallback) {
1920                                 may_fallback = 0;
1921
1922                                 if (class == ATA_DEV_ATA)
1923                                         class = ATA_DEV_ATAPI;
1924                                 else
1925                                         class = ATA_DEV_ATA;
1926                                 goto retry;
1927                         }
1928
1929                         /* Control reaches here iff the device aborted
1930                          * both flavors of IDENTIFYs which happens
1931                          * sometimes with phantom devices.
1932                          */
1933                         ata_dev_dbg(dev,
1934                                     "both IDENTIFYs aborted, assuming NODEV\n");
1935                         return -ENOENT;
1936                 }
1937
1938                 rc = -EIO;
1939                 reason = "I/O error";
1940                 goto err_out;
1941         }
1942
1943         if (dev->horkage & ATA_HORKAGE_DUMP_ID) {
1944                 ata_dev_dbg(dev, "dumping IDENTIFY data, "
1945                             "class=%d may_fallback=%d tried_spinup=%d\n",
1946                             class, may_fallback, tried_spinup);
1947                 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET,
1948                                16, 2, id, ATA_ID_WORDS * sizeof(*id), true);
1949         }
1950
1951         /* Falling back doesn't make sense if ID data was read
1952          * successfully at least once.
1953          */
1954         may_fallback = 0;
1955
1956         swap_buf_le16(id, ATA_ID_WORDS);
1957
1958         /* sanity check */
1959         rc = -EINVAL;
1960         reason = "device reports invalid type";
1961
1962         if (class == ATA_DEV_ATA || class == ATA_DEV_ZAC) {
1963                 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1964                         goto err_out;
1965                 if (ap->host->flags & ATA_HOST_IGNORE_ATA &&
1966                                                         ata_id_is_ata(id)) {
1967                         ata_dev_dbg(dev,
1968                                 "host indicates ignore ATA devices, ignored\n");
1969                         return -ENOENT;
1970                 }
1971         } else {
1972                 if (ata_id_is_ata(id))
1973                         goto err_out;
1974         }
1975
1976         if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
1977                 tried_spinup = 1;
1978                 /*
1979                  * Drive powered-up in standby mode, and requires a specific
1980                  * SET_FEATURES spin-up subcommand before it will accept
1981                  * anything other than the original IDENTIFY command.
1982                  */
1983                 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
1984                 if (err_mask && id[2] != 0x738c) {
1985                         rc = -EIO;
1986                         reason = "SPINUP failed";
1987                         goto err_out;
1988                 }
1989                 /*
1990                  * If the drive initially returned incomplete IDENTIFY info,
1991                  * we now must reissue the IDENTIFY command.
1992                  */
1993                 if (id[2] == 0x37c8)
1994                         goto retry;
1995         }
1996
1997         if ((flags & ATA_READID_POSTRESET) &&
1998             (class == ATA_DEV_ATA || class == ATA_DEV_ZAC)) {
1999                 /*
2000                  * The exact sequence expected by certain pre-ATA4 drives is:
2001                  * SRST RESET
2002                  * IDENTIFY (optional in early ATA)
2003                  * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
2004                  * anything else..
2005                  * Some drives were very specific about that exact sequence.
2006                  *
2007                  * Note that ATA4 says lba is mandatory so the second check
2008                  * should never trigger.
2009                  */
2010                 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
2011                         err_mask = ata_dev_init_params(dev, id[3], id[6]);
2012                         if (err_mask) {
2013                                 rc = -EIO;
2014                                 reason = "INIT_DEV_PARAMS failed";
2015                                 goto err_out;
2016                         }
2017
2018                         /* current CHS translation info (id[53-58]) might be
2019                          * changed. reread the identify device info.
2020                          */
2021                         flags &= ~ATA_READID_POSTRESET;
2022                         goto retry;
2023                 }
2024         }
2025
2026         *p_class = class;
2027
2028         return 0;
2029
2030  err_out:
2031         if (ata_msg_warn(ap))
2032                 ata_dev_warn(dev, "failed to IDENTIFY (%s, err_mask=0x%x)\n",
2033                              reason, err_mask);
2034         return rc;
2035 }
2036
2037 static int ata_do_link_spd_horkage(struct ata_device *dev)
2038 {
2039         struct ata_link *plink = ata_dev_phys_link(dev);
2040         u32 target, target_limit;
2041
2042         if (!sata_scr_valid(plink))
2043                 return 0;
2044
2045         if (dev->horkage & ATA_HORKAGE_1_5_GBPS)
2046                 target = 1;
2047         else
2048                 return 0;
2049
2050         target_limit = (1 << target) - 1;
2051
2052         /* if already on stricter limit, no need to push further */
2053         if (plink->sata_spd_limit <= target_limit)
2054                 return 0;
2055
2056         plink->sata_spd_limit = target_limit;
2057
2058         /* Request another EH round by returning -EAGAIN if link is
2059          * going faster than the target speed.  Forward progress is
2060          * guaranteed by setting sata_spd_limit to target_limit above.
2061          */
2062         if (plink->sata_spd > target) {
2063                 ata_dev_info(dev, "applying link speed limit horkage to %s\n",
2064                              sata_spd_string(target));
2065                 return -EAGAIN;
2066         }
2067         return 0;
2068 }
2069
2070 static inline u8 ata_dev_knobble(struct ata_device *dev)
2071 {
2072         struct ata_port *ap = dev->link->ap;
2073
2074         if (ata_dev_blacklisted(dev) & ATA_HORKAGE_BRIDGE_OK)
2075                 return 0;
2076
2077         return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
2078 }
2079
2080 static int ata_dev_config_ncq(struct ata_device *dev,
2081                                char *desc, size_t desc_sz)
2082 {
2083         struct ata_port *ap = dev->link->ap;
2084         int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2085         unsigned int err_mask;
2086         char *aa_desc = "";
2087
2088         if (!ata_id_has_ncq(dev->id)) {
2089                 desc[0] = '\0';
2090                 return 0;
2091         }
2092         if (dev->horkage & ATA_HORKAGE_NONCQ) {
2093                 snprintf(desc, desc_sz, "NCQ (not used)");
2094                 return 0;
2095         }
2096         if (ap->flags & ATA_FLAG_NCQ) {
2097                 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
2098                 dev->flags |= ATA_DFLAG_NCQ;
2099         }
2100
2101         if (!(dev->horkage & ATA_HORKAGE_BROKEN_FPDMA_AA) &&
2102                 (ap->flags & ATA_FLAG_FPDMA_AA) &&
2103                 ata_id_has_fpdma_aa(dev->id)) {
2104                 err_mask = ata_dev_set_feature(dev, SETFEATURES_SATA_ENABLE,
2105                         SATA_FPDMA_AA);
2106                 if (err_mask) {
2107                         ata_dev_err(dev,
2108                                     "failed to enable AA (error_mask=0x%x)\n",
2109                                     err_mask);
2110                         if (err_mask != AC_ERR_DEV) {
2111                                 dev->horkage |= ATA_HORKAGE_BROKEN_FPDMA_AA;
2112                                 return -EIO;
2113                         }
2114                 } else
2115                         aa_desc = ", AA";
2116         }
2117
2118         if (hdepth >= ddepth)
2119                 snprintf(desc, desc_sz, "NCQ (depth %d)%s", ddepth, aa_desc);
2120         else
2121                 snprintf(desc, desc_sz, "NCQ (depth %d/%d)%s", hdepth,
2122                         ddepth, aa_desc);
2123
2124         if ((ap->flags & ATA_FLAG_FPDMA_AUX) &&
2125             ata_id_has_ncq_send_and_recv(dev->id)) {
2126                 err_mask = ata_read_log_page(dev, ATA_LOG_NCQ_SEND_RECV,
2127                                              0, ap->sector_buf, 1);
2128                 if (err_mask) {
2129                         ata_dev_dbg(dev,
2130                                     "failed to get NCQ Send/Recv Log Emask 0x%x\n",
2131                                     err_mask);
2132                 } else {
2133                         u8 *cmds = dev->ncq_send_recv_cmds;
2134
2135                         dev->flags |= ATA_DFLAG_NCQ_SEND_RECV;
2136                         memcpy(cmds, ap->sector_buf, ATA_LOG_NCQ_SEND_RECV_SIZE);
2137
2138                         if (dev->horkage & ATA_HORKAGE_NO_NCQ_TRIM) {
2139                                 ata_dev_dbg(dev, "disabling queued TRIM support\n");
2140                                 cmds[ATA_LOG_NCQ_SEND_RECV_DSM_OFFSET] &=
2141                                         ~ATA_LOG_NCQ_SEND_RECV_DSM_TRIM;
2142                         }
2143                 }
2144         }
2145
2146         return 0;
2147 }
2148
2149 /**
2150  *      ata_dev_configure - Configure the specified ATA/ATAPI device
2151  *      @dev: Target device to configure
2152  *
2153  *      Configure @dev according to @dev->id.  Generic and low-level
2154  *      driver specific fixups are also applied.
2155  *
2156  *      LOCKING:
2157  *      Kernel thread context (may sleep)
2158  *
2159  *      RETURNS:
2160  *      0 on success, -errno otherwise
2161  */
2162 int ata_dev_configure(struct ata_device *dev)
2163 {
2164         struct ata_port *ap = dev->link->ap;
2165         struct ata_eh_context *ehc = &dev->link->eh_context;
2166         int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
2167         const u16 *id = dev->id;
2168         unsigned long xfer_mask;
2169         unsigned int err_mask;
2170         char revbuf[7];         /* XYZ-99\0 */
2171         char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2172         char modelbuf[ATA_ID_PROD_LEN+1];
2173         int rc;
2174
2175         if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
2176                 ata_dev_info(dev, "%s: ENTER/EXIT -- nodev\n", __func__);
2177                 return 0;
2178         }
2179
2180         if (ata_msg_probe(ap))
2181                 ata_dev_dbg(dev, "%s: ENTER\n", __func__);
2182
2183         /* set horkage */
2184         dev->horkage |= ata_dev_blacklisted(dev);
2185         ata_force_horkage(dev);
2186
2187         if (dev->horkage & ATA_HORKAGE_DISABLE) {
2188                 ata_dev_info(dev, "unsupported device, disabling\n");
2189                 ata_dev_disable(dev);
2190                 return 0;
2191         }
2192
2193         if ((!atapi_enabled || (ap->flags & ATA_FLAG_NO_ATAPI)) &&
2194             dev->class == ATA_DEV_ATAPI) {
2195                 ata_dev_warn(dev, "WARNING: ATAPI is %s, device ignored\n",
2196                              atapi_enabled ? "not supported with this driver"
2197                              : "disabled");
2198                 ata_dev_disable(dev);
2199                 return 0;
2200         }
2201
2202         rc = ata_do_link_spd_horkage(dev);
2203         if (rc)
2204                 return rc;
2205
2206         /* some WD SATA-1 drives have issues with LPM, turn on NOLPM for them */
2207         if ((dev->horkage & ATA_HORKAGE_WD_BROKEN_LPM) &&
2208             (id[ATA_ID_SATA_CAPABILITY] & 0xe) == 0x2)
2209                 dev->horkage |= ATA_HORKAGE_NOLPM;
2210
2211         if (ap->flags & ATA_FLAG_NO_LPM)
2212                 dev->horkage |= ATA_HORKAGE_NOLPM;
2213
2214         if (dev->horkage & ATA_HORKAGE_NOLPM) {
2215                 ata_dev_warn(dev, "LPM support broken, forcing max_power\n");
2216                 dev->link->ap->target_lpm_policy = ATA_LPM_MAX_POWER;
2217         }
2218
2219         /* let ACPI work its magic */
2220         rc = ata_acpi_on_devcfg(dev);
2221         if (rc)
2222                 return rc;
2223
2224         /* massage HPA, do it early as it might change IDENTIFY data */
2225         rc = ata_hpa_resize(dev);
2226         if (rc)
2227                 return rc;
2228
2229         /* print device capabilities */
2230         if (ata_msg_probe(ap))
2231                 ata_dev_dbg(dev,
2232                             "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2233                             "85:%04x 86:%04x 87:%04x 88:%04x\n",
2234                             __func__,
2235                             id[49], id[82], id[83], id[84],
2236                             id[85], id[86], id[87], id[88]);
2237
2238         /* initialize to-be-configured parameters */
2239         dev->flags &= ~ATA_DFLAG_CFG_MASK;
2240         dev->max_sectors = 0;
2241         dev->cdb_len = 0;
2242         dev->n_sectors = 0;
2243         dev->cylinders = 0;
2244         dev->heads = 0;
2245         dev->sectors = 0;
2246         dev->multi_count = 0;
2247
2248         /*
2249          * common ATA, ATAPI feature tests
2250          */
2251
2252         /* find max transfer mode; for printk only */
2253         xfer_mask = ata_id_xfermask(id);
2254
2255         if (ata_msg_probe(ap))
2256                 ata_dump_id(id);
2257
2258         /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2259         ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2260                         sizeof(fwrevbuf));
2261
2262         ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2263                         sizeof(modelbuf));
2264
2265         /* ATA-specific feature tests */
2266         if (dev->class == ATA_DEV_ATA || dev->class == ATA_DEV_ZAC) {
2267                 if (ata_id_is_cfa(id)) {
2268                         /* CPRM may make this media unusable */
2269                         if (id[ATA_ID_CFA_KEY_MGMT] & 1)
2270                                 ata_dev_warn(dev,
2271         "supports DRM functions and may not be fully accessible\n");
2272                         snprintf(revbuf, 7, "CFA");
2273                 } else {
2274                         snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
2275                         /* Warn the user if the device has TPM extensions */
2276                         if (ata_id_has_tpm(id))
2277                                 ata_dev_warn(dev,
2278         "supports DRM functions and may not be fully accessible\n");
2279                 }
2280
2281                 dev->n_sectors = ata_id_n_sectors(id);
2282
2283                 /* get current R/W Multiple count setting */
2284                 if ((dev->id[47] >> 8) == 0x80 && (dev->id[59] & 0x100)) {
2285                         unsigned int max = dev->id[47] & 0xff;
2286                         unsigned int cnt = dev->id[59] & 0xff;
2287                         /* only recognize/allow powers of two here */
2288                         if (is_power_of_2(max) && is_power_of_2(cnt))
2289                                 if (cnt <= max)
2290                                         dev->multi_count = cnt;
2291                 }
2292
2293                 if (ata_id_has_lba(id)) {
2294                         const char *lba_desc;
2295                         char ncq_desc[24];
2296
2297                         lba_desc = "LBA";
2298                         dev->flags |= ATA_DFLAG_LBA;
2299                         if (ata_id_has_lba48(id)) {
2300                                 dev->flags |= ATA_DFLAG_LBA48;
2301                                 lba_desc = "LBA48";
2302
2303                                 if (dev->n_sectors >= (1UL << 28) &&
2304                                     ata_id_has_flush_ext(id))
2305                                         dev->flags |= ATA_DFLAG_FLUSH_EXT;
2306                         }
2307
2308                         /* config NCQ */
2309                         rc = ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2310                         if (rc)
2311                                 return rc;
2312
2313                         /* print device info to dmesg */
2314                         if (ata_msg_drv(ap) && print_info) {
2315                                 ata_dev_info(dev, "%s: %s, %s, max %s\n",
2316                                              revbuf, modelbuf, fwrevbuf,
2317                                              ata_mode_string(xfer_mask));
2318                                 ata_dev_info(dev,
2319                                              "%llu sectors, multi %u: %s %s\n",
2320                                         (unsigned long long)dev->n_sectors,
2321                                         dev->multi_count, lba_desc, ncq_desc);
2322                         }
2323                 } else {
2324                         /* CHS */
2325
2326                         /* Default translation */
2327                         dev->cylinders  = id[1];
2328                         dev->heads      = id[3];
2329                         dev->sectors    = id[6];
2330
2331                         if (ata_id_current_chs_valid(id)) {
2332                                 /* Current CHS translation is valid. */
2333                                 dev->cylinders = id[54];
2334                                 dev->heads     = id[55];
2335                                 dev->sectors   = id[56];
2336                         }
2337
2338                         /* print device info to dmesg */
2339                         if (ata_msg_drv(ap) && print_info) {
2340                                 ata_dev_info(dev, "%s: %s, %s, max %s\n",
2341                                              revbuf,    modelbuf, fwrevbuf,
2342                                              ata_mode_string(xfer_mask));
2343                                 ata_dev_info(dev,
2344                                              "%llu sectors, multi %u, CHS %u/%u/%u\n",
2345                                              (unsigned long long)dev->n_sectors,
2346                                              dev->multi_count, dev->cylinders,
2347                                              dev->heads, dev->sectors);
2348                         }
2349                 }
2350
2351                 /* Check and mark DevSlp capability. Get DevSlp timing variables
2352                  * from SATA Settings page of Identify Device Data Log.
2353                  */
2354                 if (ata_id_has_devslp(dev->id)) {
2355                         u8 *sata_setting = ap->sector_buf;
2356                         int i, j;
2357
2358                         dev->flags |= ATA_DFLAG_DEVSLP;
2359                         err_mask = ata_read_log_page(dev,
2360                                                      ATA_LOG_SATA_ID_DEV_DATA,
2361                                                      ATA_LOG_SATA_SETTINGS,
2362                                                      sata_setting,
2363                                                      1);
2364                         if (err_mask)
2365                                 ata_dev_dbg(dev,
2366                                             "failed to get Identify Device Data, Emask 0x%x\n",
2367                                             err_mask);
2368                         else
2369                                 for (i = 0; i < ATA_LOG_DEVSLP_SIZE; i++) {
2370                                         j = ATA_LOG_DEVSLP_OFFSET + i;
2371                                         dev->devslp_timing[i] = sata_setting[j];
2372                                 }
2373                 }
2374
2375                 dev->cdb_len = 16;
2376         }
2377
2378         /* ATAPI-specific feature tests */
2379         else if (dev->class == ATA_DEV_ATAPI) {
2380                 const char *cdb_intr_string = "";
2381                 const char *atapi_an_string = "";
2382                 const char *dma_dir_string = "";
2383                 u32 sntf;
2384
2385                 rc = atapi_cdb_len(id);
2386                 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
2387                         if (ata_msg_warn(ap))
2388                                 ata_dev_warn(dev, "unsupported CDB len\n");
2389                         rc = -EINVAL;
2390                         goto err_out_nosup;
2391                 }
2392                 dev->cdb_len = (unsigned int) rc;
2393
2394                 /* Enable ATAPI AN if both the host and device have
2395                  * the support.  If PMP is attached, SNTF is required
2396                  * to enable ATAPI AN to discern between PHY status
2397                  * changed notifications and ATAPI ANs.
2398                  */
2399                 if (atapi_an &&
2400                     (ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
2401                     (!sata_pmp_attached(ap) ||
2402                      sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
2403                         /* issue SET feature command to turn this on */
2404                         err_mask = ata_dev_set_feature(dev,
2405                                         SETFEATURES_SATA_ENABLE, SATA_AN);
2406                         if (err_mask)
2407                                 ata_dev_err(dev,
2408                                             "failed to enable ATAPI AN (err_mask=0x%x)\n",
2409                                             err_mask);
2410                         else {
2411                                 dev->flags |= ATA_DFLAG_AN;
2412                                 atapi_an_string = ", ATAPI AN";
2413                         }
2414                 }
2415
2416                 if (ata_id_cdb_intr(dev->id)) {
2417                         dev->flags |= ATA_DFLAG_CDB_INTR;
2418                         cdb_intr_string = ", CDB intr";
2419                 }
2420
2421                 if (atapi_dmadir || (dev->horkage & ATA_HORKAGE_ATAPI_DMADIR) || atapi_id_dmadir(dev->id)) {
2422                         dev->flags |= ATA_DFLAG_DMADIR;
2423                         dma_dir_string = ", DMADIR";
2424                 }
2425
2426                 if (ata_id_has_da(dev->id)) {
2427                         dev->flags |= ATA_DFLAG_DA;
2428                         zpodd_init(dev);
2429                 }
2430
2431                 /* print device info to dmesg */
2432                 if (ata_msg_drv(ap) && print_info)
2433                         ata_dev_info(dev,
2434                                      "ATAPI: %s, %s, max %s%s%s%s\n",
2435                                      modelbuf, fwrevbuf,
2436                                      ata_mode_string(xfer_mask),
2437                                      cdb_intr_string, atapi_an_string,
2438                                      dma_dir_string);
2439         }
2440
2441         /* determine max_sectors */
2442         dev->max_sectors = ATA_MAX_SECTORS;
2443         if (dev->flags & ATA_DFLAG_LBA48)
2444                 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2445
2446         /* Limit PATA drive on SATA cable bridge transfers to udma5,
2447            200 sectors */
2448         if (ata_dev_knobble(dev)) {
2449                 if (ata_msg_drv(ap) && print_info)
2450                         ata_dev_info(dev, "applying bridge limits\n");
2451                 dev->udma_mask &= ATA_UDMA5;
2452                 dev->max_sectors = ATA_MAX_SECTORS;
2453         }
2454
2455         if ((dev->class == ATA_DEV_ATAPI) &&
2456             (atapi_command_packet_set(id) == TYPE_TAPE)) {
2457                 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
2458                 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2459         }
2460
2461         if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
2462                 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2463                                          dev->max_sectors);
2464
2465         if (dev->horkage & ATA_HORKAGE_MAX_SEC_1024)
2466                 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_1024,
2467                                          dev->max_sectors);
2468
2469         if (dev->horkage & ATA_HORKAGE_MAX_SEC_LBA48)
2470                 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2471
2472         if (ap->ops->dev_config)
2473                 ap->ops->dev_config(dev);
2474
2475         if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2476                 /* Let the user know. We don't want to disallow opens for
2477                    rescue purposes, or in case the vendor is just a blithering
2478                    idiot. Do this after the dev_config call as some controllers
2479                    with buggy firmware may want to avoid reporting false device
2480                    bugs */
2481
2482                 if (print_info) {
2483                         ata_dev_warn(dev,
2484 "Drive reports diagnostics failure. This may indicate a drive\n");
2485                         ata_dev_warn(dev,
2486 "fault or invalid emulation. Contact drive vendor for information.\n");
2487                 }
2488         }
2489
2490         if ((dev->horkage & ATA_HORKAGE_FIRMWARE_WARN) && print_info) {
2491                 ata_dev_warn(dev, "WARNING: device requires firmware update to be fully functional\n");
2492                 ata_dev_warn(dev, "         contact the vendor or visit http://ata.wiki.kernel.org\n");
2493         }
2494
2495         return 0;
2496
2497 err_out_nosup:
2498         if (ata_msg_probe(ap))
2499                 ata_dev_dbg(dev, "%s: EXIT, err\n", __func__);
2500         return rc;
2501 }
2502
2503 /**
2504  *      ata_cable_40wire        -       return 40 wire cable type
2505  *      @ap: port
2506  *
2507  *      Helper method for drivers which want to hardwire 40 wire cable
2508  *      detection.
2509  */
2510
2511 int ata_cable_40wire(struct ata_port *ap)
2512 {
2513         return ATA_CBL_PATA40;
2514 }
2515
2516 /**
2517  *      ata_cable_80wire        -       return 80 wire cable type
2518  *      @ap: port
2519  *
2520  *      Helper method for drivers which want to hardwire 80 wire cable
2521  *      detection.
2522  */
2523
2524 int ata_cable_80wire(struct ata_port *ap)
2525 {
2526         return ATA_CBL_PATA80;
2527 }
2528
2529 /**
2530  *      ata_cable_unknown       -       return unknown PATA cable.
2531  *      @ap: port
2532  *
2533  *      Helper method for drivers which have no PATA cable detection.
2534  */
2535
2536 int ata_cable_unknown(struct ata_port *ap)
2537 {
2538         return ATA_CBL_PATA_UNK;
2539 }
2540
2541 /**
2542  *      ata_cable_ignore        -       return ignored PATA cable.
2543  *      @ap: port
2544  *
2545  *      Helper method for drivers which don't use cable type to limit
2546  *      transfer mode.
2547  */
2548 int ata_cable_ignore(struct ata_port *ap)
2549 {
2550         return ATA_CBL_PATA_IGN;
2551 }
2552
2553 /**
2554  *      ata_cable_sata  -       return SATA cable type
2555  *      @ap: port
2556  *
2557  *      Helper method for drivers which have SATA cables
2558  */
2559
2560 int ata_cable_sata(struct ata_port *ap)
2561 {
2562         return ATA_CBL_SATA;
2563 }
2564
2565 /**
2566  *      ata_bus_probe - Reset and probe ATA bus
2567  *      @ap: Bus to probe
2568  *
2569  *      Master ATA bus probing function.  Initiates a hardware-dependent
2570  *      bus reset, then attempts to identify any devices found on
2571  *      the bus.
2572  *
2573  *      LOCKING:
2574  *      PCI/etc. bus probe sem.
2575  *
2576  *      RETURNS:
2577  *      Zero on success, negative errno otherwise.
2578  */
2579
2580 int ata_bus_probe(struct ata_port *ap)
2581 {
2582         unsigned int classes[ATA_MAX_DEVICES];
2583         int tries[ATA_MAX_DEVICES];
2584         int rc;
2585         struct ata_device *dev;
2586
2587         ata_for_each_dev(dev, &ap->link, ALL)
2588                 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
2589
2590  retry:
2591         ata_for_each_dev(dev, &ap->link, ALL) {
2592                 /* If we issue an SRST then an ATA drive (not ATAPI)
2593                  * may change configuration and be in PIO0 timing. If
2594                  * we do a hard reset (or are coming from power on)
2595                  * this is true for ATA or ATAPI. Until we've set a
2596                  * suitable controller mode we should not touch the
2597                  * bus as we may be talking too fast.
2598                  */
2599                 dev->pio_mode = XFER_PIO_0;
2600                 dev->dma_mode = 0xff;
2601
2602                 /* If the controller has a pio mode setup function
2603                  * then use it to set the chipset to rights. Don't
2604                  * touch the DMA setup as that will be dealt with when
2605                  * configuring devices.
2606                  */
2607                 if (ap->ops->set_piomode)
2608                         ap->ops->set_piomode(ap, dev);
2609         }
2610
2611         /* reset and determine device classes */
2612         ap->ops->phy_reset(ap);
2613
2614         ata_for_each_dev(dev, &ap->link, ALL) {
2615                 if (dev->class != ATA_DEV_UNKNOWN)
2616                         classes[dev->devno] = dev->class;
2617                 else
2618                         classes[dev->devno] = ATA_DEV_NONE;
2619
2620                 dev->class = ATA_DEV_UNKNOWN;
2621         }
2622
2623         /* read IDENTIFY page and configure devices. We have to do the identify
2624            specific sequence bass-ackwards so that PDIAG- is released by
2625            the slave device */
2626
2627         ata_for_each_dev(dev, &ap->link, ALL_REVERSE) {
2628                 if (tries[dev->devno])
2629                         dev->class = classes[dev->devno];
2630
2631                 if (!ata_dev_enabled(dev))
2632                         continue;
2633
2634                 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2635                                      dev->id);
2636                 if (rc)
2637                         goto fail;
2638         }
2639
2640         /* Now ask for the cable type as PDIAG- should have been released */
2641         if (ap->ops->cable_detect)
2642                 ap->cbl = ap->ops->cable_detect(ap);
2643
2644         /* We may have SATA bridge glue hiding here irrespective of
2645          * the reported cable types and sensed types.  When SATA
2646          * drives indicate we have a bridge, we don't know which end
2647          * of the link the bridge is which is a problem.
2648          */
2649         ata_for_each_dev(dev, &ap->link, ENABLED)
2650                 if (ata_id_is_sata(dev->id))
2651                         ap->cbl = ATA_CBL_SATA;
2652
2653         /* After the identify sequence we can now set up the devices. We do
2654            this in the normal order so that the user doesn't get confused */
2655
2656         ata_for_each_dev(dev, &ap->link, ENABLED) {
2657                 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
2658                 rc = ata_dev_configure(dev);
2659                 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
2660                 if (rc)
2661                         goto fail;
2662         }
2663
2664         /* configure transfer mode */
2665         rc = ata_set_mode(&ap->link, &dev);
2666         if (rc)
2667                 goto fail;
2668
2669         ata_for_each_dev(dev, &ap->link, ENABLED)
2670                 return 0;
2671
2672         return -ENODEV;
2673
2674  fail:
2675         tries[dev->devno]--;
2676
2677         switch (rc) {
2678         case -EINVAL:
2679                 /* eeek, something went very wrong, give up */
2680                 tries[dev->devno] = 0;
2681                 break;
2682
2683         case -ENODEV:
2684                 /* give it just one more chance */
2685                 tries[dev->devno] = min(tries[dev->devno], 1);
2686         case -EIO:
2687                 if (tries[dev->devno] == 1) {
2688                         /* This is the last chance, better to slow
2689                          * down than lose it.
2690                          */
2691                         sata_down_spd_limit(&ap->link, 0);
2692                         ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2693                 }
2694         }
2695
2696         if (!tries[dev->devno])
2697                 ata_dev_disable(dev);
2698
2699         goto retry;
2700 }
2701
2702 /**
2703  *      sata_print_link_status - Print SATA link status
2704  *      @link: SATA link to printk link status about
2705  *
2706  *      This function prints link speed and status of a SATA link.
2707  *
2708  *      LOCKING:
2709  *      None.
2710  */
2711 static void sata_print_link_status(struct ata_link *link)
2712 {
2713         u32 sstatus, scontrol, tmp;
2714
2715         if (sata_scr_read(link, SCR_STATUS, &sstatus))
2716                 return;
2717         sata_scr_read(link, SCR_CONTROL, &scontrol);
2718
2719         if (ata_phys_link_online(link)) {
2720                 tmp = (sstatus >> 4) & 0xf;
2721                 ata_link_info(link, "SATA link up %s (SStatus %X SControl %X)\n",
2722                               sata_spd_string(tmp), sstatus, scontrol);
2723         } else {
2724                 ata_link_info(link, "SATA link down (SStatus %X SControl %X)\n",
2725                               sstatus, scontrol);
2726         }
2727 }
2728
2729 /**
2730  *      ata_dev_pair            -       return other device on cable
2731  *      @adev: device
2732  *
2733  *      Obtain the other device on the same cable, or if none is
2734  *      present NULL is returned
2735  */
2736
2737 struct ata_device *ata_dev_pair(struct ata_device *adev)
2738 {
2739         struct ata_link *link = adev->link;
2740         struct ata_device *pair = &link->device[1 - adev->devno];
2741         if (!ata_dev_enabled(pair))
2742                 return NULL;
2743         return pair;
2744 }
2745
2746 /**
2747  *      sata_down_spd_limit - adjust SATA spd limit downward
2748  *      @link: Link to adjust SATA spd limit for
2749  *      @spd_limit: Additional limit
2750  *
2751  *      Adjust SATA spd limit of @link downward.  Note that this
2752  *      function only adjusts the limit.  The change must be applied
2753  *      using sata_set_spd().
2754  *
2755  *      If @spd_limit is non-zero, the speed is limited to equal to or
2756  *      lower than @spd_limit if such speed is supported.  If
2757  *      @spd_limit is slower than any supported speed, only the lowest
2758  *      supported speed is allowed.
2759  *
2760  *      LOCKING:
2761  *      Inherited from caller.
2762  *
2763  *      RETURNS:
2764  *      0 on success, negative errno on failure
2765  */
2766 int sata_down_spd_limit(struct ata_link *link, u32 spd_limit)
2767 {
2768         u32 sstatus, spd, mask;
2769         int rc, bit;
2770
2771         if (!sata_scr_valid(link))
2772                 return -EOPNOTSUPP;
2773
2774         /* If SCR can be read, use it to determine the current SPD.
2775          * If not, use cached value in link->sata_spd.
2776          */
2777         rc = sata_scr_read(link, SCR_STATUS, &sstatus);
2778         if (rc == 0 && ata_sstatus_online(sstatus))
2779                 spd = (sstatus >> 4) & 0xf;
2780         else
2781                 spd = link->sata_spd;
2782
2783         mask = link->sata_spd_limit;
2784         if (mask <= 1)
2785                 return -EINVAL;
2786
2787         /* unconditionally mask off the highest bit */
2788         bit = fls(mask) - 1;
2789         mask &= ~(1 << bit);
2790
2791         /* Mask off all speeds higher than or equal to the current
2792          * one.  Force 1.5Gbps if current SPD is not available.
2793          */
2794         if (spd > 1)
2795                 mask &= (1 << (spd - 1)) - 1;
2796         else
2797                 mask &= 1;
2798
2799         /* were we already at the bottom? */
2800         if (!mask)
2801                 return -EINVAL;
2802
2803         if (spd_limit) {
2804                 if (mask & ((1 << spd_limit) - 1))
2805                         mask &= (1 << spd_limit) - 1;
2806                 else {
2807                         bit = ffs(mask) - 1;
2808                         mask = 1 << bit;
2809                 }
2810         }
2811
2812         link->sata_spd_limit = mask;
2813
2814         ata_link_warn(link, "limiting SATA link speed to %s\n",
2815                       sata_spd_string(fls(mask)));
2816
2817         return 0;
2818 }
2819
2820 static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
2821 {
2822         struct ata_link *host_link = &link->ap->link;
2823         u32 limit, target, spd;
2824
2825         limit = link->sata_spd_limit;
2826
2827         /* Don't configure downstream link faster than upstream link.
2828          * It doesn't speed up anything and some PMPs choke on such
2829          * configuration.
2830          */
2831         if (!ata_is_host_link(link) && host_link->sata_spd)
2832                 limit &= (1 << host_link->sata_spd) - 1;
2833
2834         if (limit == UINT_MAX)
2835                 target = 0;
2836         else
2837                 target = fls(limit);
2838
2839         spd = (*scontrol >> 4) & 0xf;
2840         *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
2841
2842         return spd != target;
2843 }
2844
2845 /**
2846  *      sata_set_spd_needed - is SATA spd configuration needed
2847  *      @link: Link in question
2848  *
2849  *      Test whether the spd limit in SControl matches
2850  *      @link->sata_spd_limit.  This function is used to determine
2851  *      whether hardreset is necessary to apply SATA spd
2852  *      configuration.
2853  *
2854  *      LOCKING:
2855  *      Inherited from caller.
2856  *
2857  *      RETURNS:
2858  *      1 if SATA spd configuration is needed, 0 otherwise.
2859  */
2860 static int sata_set_spd_needed(struct ata_link *link)
2861 {
2862         u32 scontrol;
2863
2864         if (sata_scr_read(link, SCR_CONTROL, &scontrol))
2865                 return 1;
2866
2867         return __sata_set_spd_needed(link, &scontrol);
2868 }
2869
2870 /**
2871  *      sata_set_spd - set SATA spd according to spd limit
2872  *      @link: Link to set SATA spd for
2873  *
2874  *      Set SATA spd of @link according to sata_spd_limit.
2875  *
2876  *      LOCKING:
2877  *      Inherited from caller.
2878  *
2879  *      RETURNS:
2880  *      0 if spd doesn't need to be changed, 1 if spd has been
2881  *      changed.  Negative errno if SCR registers are inaccessible.
2882  */
2883 int sata_set_spd(struct ata_link *link)
2884 {
2885         u32 scontrol;
2886         int rc;
2887
2888         if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
2889                 return rc;
2890
2891         if (!__sata_set_spd_needed(link, &scontrol))
2892                 return 0;
2893
2894         if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
2895                 return rc;
2896
2897         return 1;
2898 }
2899
2900 /*
2901  * This mode timing computation functionality is ported over from
2902  * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2903  */
2904 /*
2905  * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
2906  * These were taken from ATA/ATAPI-6 standard, rev 0a, except
2907  * for UDMA6, which is currently supported only by Maxtor drives.
2908  *
2909  * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
2910  */
2911
2912 static const struct ata_timing ata_timing[] = {
2913 /*      { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 0,  960,   0 }, */
2914         { XFER_PIO_0,     70, 290, 240, 600, 165, 150, 0,  600,   0 },
2915         { XFER_PIO_1,     50, 290,  93, 383, 125, 100, 0,  383,   0 },
2916         { XFER_PIO_2,     30, 290,  40, 330, 100,  90, 0,  240,   0 },
2917         { XFER_PIO_3,     30,  80,  70, 180,  80,  70, 0,  180,   0 },
2918         { XFER_PIO_4,     25,  70,  25, 120,  70,  25, 0,  120,   0 },
2919         { XFER_PIO_5,     15,  65,  25, 100,  65,  25, 0,  100,   0 },
2920         { XFER_PIO_6,     10,  55,  20,  80,  55,  20, 0,   80,   0 },
2921
2922         { XFER_SW_DMA_0, 120,   0,   0,   0, 480, 480, 50, 960,   0 },
2923         { XFER_SW_DMA_1,  90,   0,   0,   0, 240, 240, 30, 480,   0 },
2924         { XFER_SW_DMA_2,  60,   0,   0,   0, 120, 120, 20, 240,   0 },
2925
2926         { XFER_MW_DMA_0,  60,   0,   0,   0, 215, 215, 20, 480,   0 },
2927         { XFER_MW_DMA_1,  45,   0,   0,   0,  80,  50, 5,  150,   0 },
2928         { XFER_MW_DMA_2,  25,   0,   0,   0,  70,  25, 5,  120,   0 },
2929         { XFER_MW_DMA_3,  25,   0,   0,   0,  65,  25, 5,  100,   0 },
2930         { XFER_MW_DMA_4,  25,   0,   0,   0,  55,  20, 5,   80,   0 },
2931
2932 /*      { XFER_UDMA_SLOW,  0,   0,   0,   0,   0,   0, 0,    0, 150 }, */
2933         { XFER_UDMA_0,     0,   0,   0,   0,   0,   0, 0,    0, 120 },
2934         { XFER_UDMA_1,     0,   0,   0,   0,   0,   0, 0,    0,  80 },
2935         { XFER_UDMA_2,     0,   0,   0,   0,   0,   0, 0,    0,  60 },
2936         { XFER_UDMA_3,     0,   0,   0,   0,   0,   0, 0,    0,  45 },
2937         { XFER_UDMA_4,     0,   0,   0,   0,   0,   0, 0,    0,  30 },
2938         { XFER_UDMA_5,     0,   0,   0,   0,   0,   0, 0,    0,  20 },
2939         { XFER_UDMA_6,     0,   0,   0,   0,   0,   0, 0,    0,  15 },
2940
2941         { 0xFF }
2942 };
2943
2944 #define ENOUGH(v, unit)         (((v)-1)/(unit)+1)
2945 #define EZ(v, unit)             ((v)?ENOUGH(v, unit):0)
2946
2947 static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2948 {
2949         q->setup        = EZ(t->setup      * 1000,  T);
2950         q->act8b        = EZ(t->act8b      * 1000,  T);
2951         q->rec8b        = EZ(t->rec8b      * 1000,  T);
2952         q->cyc8b        = EZ(t->cyc8b      * 1000,  T);
2953         q->active       = EZ(t->active     * 1000,  T);
2954         q->recover      = EZ(t->recover    * 1000,  T);
2955         q->dmack_hold   = EZ(t->dmack_hold * 1000,  T);
2956         q->cycle        = EZ(t->cycle      * 1000,  T);
2957         q->udma         = EZ(t->udma       * 1000, UT);
2958 }
2959
2960 void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2961                       struct ata_timing *m, unsigned int what)
2962 {
2963         if (what & ATA_TIMING_SETUP  ) m->setup   = max(a->setup,   b->setup);
2964         if (what & ATA_TIMING_ACT8B  ) m->act8b   = max(a->act8b,   b->act8b);
2965         if (what & ATA_TIMING_REC8B  ) m->rec8b   = max(a->rec8b,   b->rec8b);
2966         if (what & ATA_TIMING_CYC8B  ) m->cyc8b   = max(a->cyc8b,   b->cyc8b);
2967         if (what & ATA_TIMING_ACTIVE ) m->active  = max(a->active,  b->active);
2968         if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2969         if (what & ATA_TIMING_DMACK_HOLD) m->dmack_hold = max(a->dmack_hold, b->dmack_hold);
2970         if (what & ATA_TIMING_CYCLE  ) m->cycle   = max(a->cycle,   b->cycle);
2971         if (what & ATA_TIMING_UDMA   ) m->udma    = max(a->udma,    b->udma);
2972 }
2973
2974 const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
2975 {
2976         const struct ata_timing *t = ata_timing;
2977
2978         while (xfer_mode > t->mode)
2979                 t++;
2980
2981         if (xfer_mode == t->mode)
2982                 return t;
2983
2984         WARN_ONCE(true, "%s: unable to find timing for xfer_mode 0x%x\n",
2985                         __func__, xfer_mode);
2986
2987         return NULL;
2988 }
2989
2990 int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2991                        struct ata_timing *t, int T, int UT)
2992 {
2993         const u16 *id = adev->id;
2994         const struct ata_timing *s;
2995         struct ata_timing p;
2996
2997         /*
2998          * Find the mode.
2999          */
3000
3001         if (!(s = ata_timing_find_mode(speed)))
3002                 return -EINVAL;
3003
3004         memcpy(t, s, sizeof(*s));
3005
3006         /*
3007          * If the drive is an EIDE drive, it can tell us it needs extended
3008          * PIO/MW_DMA cycle timing.
3009          */
3010
3011         if (id[ATA_ID_FIELD_VALID] & 2) {       /* EIDE drive */
3012                 memset(&p, 0, sizeof(p));
3013
3014                 if (speed >= XFER_PIO_0 && speed < XFER_SW_DMA_0) {
3015                         if (speed <= XFER_PIO_2)
3016                                 p.cycle = p.cyc8b = id[ATA_ID_EIDE_PIO];
3017                         else if ((speed <= XFER_PIO_4) ||
3018                                  (speed == XFER_PIO_5 && !ata_id_is_cfa(id)))
3019                                 p.cycle = p.cyc8b = id[ATA_ID_EIDE_PIO_IORDY];
3020                 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2)
3021                         p.cycle = id[ATA_ID_EIDE_DMA_MIN];
3022
3023                 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
3024         }
3025
3026         /*
3027          * Convert the timing to bus clock counts.
3028          */
3029
3030         ata_timing_quantize(t, t, T, UT);
3031
3032         /*
3033          * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
3034          * S.M.A.R.T * and some other commands. We have to ensure that the
3035          * DMA cycle timing is slower/equal than the fastest PIO timing.
3036          */
3037
3038         if (speed > XFER_PIO_6) {
3039                 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
3040                 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
3041         }
3042
3043         /*
3044          * Lengthen active & recovery time so that cycle time is correct.
3045          */
3046
3047         if (t->act8b + t->rec8b < t->cyc8b) {
3048                 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
3049                 t->rec8b = t->cyc8b - t->act8b;
3050         }
3051
3052         if (t->active + t->recover < t->cycle) {
3053                 t->active += (t->cycle - (t->active + t->recover)) / 2;
3054                 t->recover = t->cycle - t->active;
3055         }
3056
3057         /* In a few cases quantisation may produce enough errors to
3058            leave t->cycle too low for the sum of active and recovery
3059            if so we must correct this */
3060         if (t->active + t->recover > t->cycle)
3061                 t->cycle = t->active + t->recover;
3062
3063         return 0;
3064 }
3065
3066 /**
3067  *      ata_timing_cycle2mode - find xfer mode for the specified cycle duration
3068  *      @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
3069  *      @cycle: cycle duration in ns
3070  *
3071  *      Return matching xfer mode for @cycle.  The returned mode is of
3072  *      the transfer type specified by @xfer_shift.  If @cycle is too
3073  *      slow for @xfer_shift, 0xff is returned.  If @cycle is faster
3074  *      than the fastest known mode, the fasted mode is returned.
3075  *
3076  *      LOCKING:
3077  *      None.
3078  *
3079  *      RETURNS:
3080  *      Matching xfer_mode, 0xff if no match found.
3081  */
3082 u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
3083 {
3084         u8 base_mode = 0xff, last_mode = 0xff;
3085         const struct ata_xfer_ent *ent;
3086         const struct ata_timing *t;
3087
3088         for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
3089                 if (ent->shift == xfer_shift)
3090                         base_mode = ent->base;
3091
3092         for (t = ata_timing_find_mode(base_mode);
3093              t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
3094                 unsigned short this_cycle;
3095
3096                 switch (xfer_shift) {
3097                 case ATA_SHIFT_PIO:
3098                 case ATA_SHIFT_MWDMA:
3099                         this_cycle = t->cycle;
3100                         break;
3101                 case ATA_SHIFT_UDMA:
3102                         this_cycle = t->udma;
3103                         break;
3104                 default:
3105                         return 0xff;
3106                 }
3107
3108                 if (cycle > this_cycle)
3109                         break;
3110
3111                 last_mode = t->mode;
3112         }
3113
3114         return last_mode;
3115 }
3116
3117 /**
3118  *      ata_down_xfermask_limit - adjust dev xfer masks downward
3119  *      @dev: Device to adjust xfer masks
3120  *      @sel: ATA_DNXFER_* selector
3121  *
3122  *      Adjust xfer masks of @dev downward.  Note that this function
3123  *      does not apply the change.  Invoking ata_set_mode() afterwards
3124  *      will apply the limit.
3125  *
3126  *      LOCKING:
3127  *      Inherited from caller.
3128  *
3129  *      RETURNS:
3130  *      0 on success, negative errno on failure
3131  */
3132 int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
3133 {
3134         char buf[32];
3135         unsigned long orig_mask, xfer_mask;
3136         unsigned long pio_mask, mwdma_mask, udma_mask;
3137         int quiet, highbit;
3138
3139         quiet = !!(sel & ATA_DNXFER_QUIET);
3140         sel &= ~ATA_DNXFER_QUIET;
3141
3142         xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3143                                                   dev->mwdma_mask,
3144                                                   dev->udma_mask);
3145         ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
3146
3147         switch (sel) {
3148         case ATA_DNXFER_PIO:
3149                 highbit = fls(pio_mask) - 1;
3150                 pio_mask &= ~(1 << highbit);
3151                 break;
3152
3153         case ATA_DNXFER_DMA:
3154                 if (udma_mask) {
3155                         highbit = fls(udma_mask) - 1;
3156                         udma_mask &= ~(1 << highbit);
3157                         if (!udma_mask)
3158                                 return -ENOENT;
3159                 } else if (mwdma_mask) {
3160                         highbit = fls(mwdma_mask) - 1;
3161                         mwdma_mask &= ~(1 << highbit);
3162                         if (!mwdma_mask)
3163                                 return -ENOENT;
3164                 }
3165                 break;
3166
3167         case ATA_DNXFER_40C:
3168                 udma_mask &= ATA_UDMA_MASK_40C;
3169                 break;
3170
3171         case ATA_DNXFER_FORCE_PIO0:
3172                 pio_mask &= 1;
3173         case ATA_DNXFER_FORCE_PIO:
3174                 mwdma_mask = 0;
3175                 udma_mask = 0;
3176                 break;
3177
3178         default:
3179                 BUG();
3180         }
3181
3182         xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3183
3184         if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3185                 return -ENOENT;
3186
3187         if (!quiet) {
3188                 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3189                         snprintf(buf, sizeof(buf), "%s:%s",
3190                                  ata_mode_string(xfer_mask),
3191                                  ata_mode_string(xfer_mask & ATA_MASK_PIO));
3192                 else
3193                         snprintf(buf, sizeof(buf), "%s",
3194                                  ata_mode_string(xfer_mask));
3195
3196                 ata_dev_warn(dev, "limiting speed to %s\n", buf);
3197         }
3198
3199         ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3200                             &dev->udma_mask);
3201
3202         return 0;
3203 }
3204
3205 static int ata_dev_set_mode(struct ata_device *dev)
3206 {
3207         struct ata_port *ap = dev->link->ap;
3208         struct ata_eh_context *ehc = &dev->link->eh_context;
3209         const bool nosetxfer = dev->horkage & ATA_HORKAGE_NOSETXFER;
3210         const char *dev_err_whine = "";
3211         int ign_dev_err = 0;
3212         unsigned int err_mask = 0;
3213         int rc;
3214
3215         dev->flags &= ~ATA_DFLAG_PIO;
3216         if (dev->xfer_shift == ATA_SHIFT_PIO)
3217                 dev->flags |= ATA_DFLAG_PIO;
3218
3219         if (nosetxfer && ap->flags & ATA_FLAG_SATA && ata_id_is_sata(dev->id))
3220                 dev_err_whine = " (SET_XFERMODE skipped)";
3221         else {
3222                 if (nosetxfer)
3223                         ata_dev_warn(dev,
3224                                      "NOSETXFER but PATA detected - can't "
3225                                      "skip SETXFER, might malfunction\n");
3226                 err_mask = ata_dev_set_xfermode(dev);
3227         }
3228
3229         if (err_mask & ~AC_ERR_DEV)
3230                 goto fail;
3231
3232         /* revalidate */
3233         ehc->i.flags |= ATA_EHI_POST_SETMODE;
3234         rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
3235         ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
3236         if (rc)
3237                 return rc;
3238
3239         if (dev->xfer_shift == ATA_SHIFT_PIO) {
3240                 /* Old CFA may refuse this command, which is just fine */
3241                 if (ata_id_is_cfa(dev->id))
3242                         ign_dev_err = 1;
3243                 /* Catch several broken garbage emulations plus some pre
3244                    ATA devices */
3245                 if (ata_id_major_version(dev->id) == 0 &&
3246                                         dev->pio_mode <= XFER_PIO_2)
3247                         ign_dev_err = 1;
3248                 /* Some very old devices and some bad newer ones fail
3249                    any kind of SET_XFERMODE request but support PIO0-2
3250                    timings and no IORDY */
3251                 if (!ata_id_has_iordy(dev->id) && dev->pio_mode <= XFER_PIO_2)
3252                         ign_dev_err = 1;
3253         }
3254         /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3255            Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3256         if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3257             dev->dma_mode == XFER_MW_DMA_0 &&
3258             (dev->id[63] >> 8) & 1)
3259                 ign_dev_err = 1;
3260
3261         /* if the device is actually configured correctly, ignore dev err */
3262         if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3263                 ign_dev_err = 1;
3264
3265         if (err_mask & AC_ERR_DEV) {
3266                 if (!ign_dev_err)
3267                         goto fail;
3268                 else
3269                         dev_err_whine = " (device error ignored)";
3270         }
3271
3272         DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3273                 dev->xfer_shift, (int)dev->xfer_mode);
3274
3275         ata_dev_info(dev, "configured for %s%s\n",
3276                      ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3277                      dev_err_whine);
3278
3279         return 0;
3280
3281  fail:
3282         ata_dev_err(dev, "failed to set xfermode (err_mask=0x%x)\n", err_mask);
3283         return -EIO;
3284 }
3285
3286 /**
3287  *      ata_do_set_mode - Program timings and issue SET FEATURES - XFER
3288  *      @link: link on which timings will be programmed
3289  *      @r_failed_dev: out parameter for failed device
3290  *
3291  *      Standard implementation of the function used to tune and set
3292  *      ATA device disk transfer mode (PIO3, UDMA6, etc.).  If
3293  *      ata_dev_set_mode() fails, pointer to the failing device is
3294  *      returned in @r_failed_dev.
3295  *
3296  *      LOCKING:
3297  *      PCI/etc. bus probe sem.
3298  *
3299  *      RETURNS:
3300  *      0 on success, negative errno otherwise
3301  */
3302
3303 int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
3304 {
3305         struct ata_port *ap = link->ap;
3306         struct ata_device *dev;
3307         int rc = 0, used_dma = 0, found = 0;
3308
3309         /* step 1: calculate xfer_mask */
3310         ata_for_each_dev(dev, link, ENABLED) {
3311                 unsigned long pio_mask, dma_mask;
3312                 unsigned int mode_mask;
3313
3314                 mode_mask = ATA_DMA_MASK_ATA;
3315                 if (dev->class == ATA_DEV_ATAPI)
3316                         mode_mask = ATA_DMA_MASK_ATAPI;
3317                 else if (ata_id_is_cfa(dev->id))
3318                         mode_mask = ATA_DMA_MASK_CFA;
3319
3320                 ata_dev_xfermask(dev);
3321                 ata_force_xfermask(dev);
3322
3323                 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3324
3325                 if (libata_dma_mask & mode_mask)
3326                         dma_mask = ata_pack_xfermask(0, dev->mwdma_mask,
3327                                                      dev->udma_mask);
3328                 else
3329                         dma_mask = 0;
3330
3331                 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3332                 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
3333
3334                 found = 1;
3335                 if (ata_dma_enabled(dev))
3336                         used_dma = 1;
3337         }
3338         if (!found)
3339                 goto out;
3340
3341         /* step 2: always set host PIO timings */
3342         ata_for_each_dev(dev, link, ENABLED) {
3343                 if (dev->pio_mode == 0xff) {
3344                         ata_dev_warn(dev, "no PIO support\n");
3345                         rc = -EINVAL;
3346                         goto out;
3347                 }
3348
3349                 dev->xfer_mode = dev->pio_mode;
3350                 dev->xfer_shift = ATA_SHIFT_PIO;
3351                 if (ap->ops->set_piomode)
3352                         ap->ops->set_piomode(ap, dev);
3353         }
3354
3355         /* step 3: set host DMA timings */
3356         ata_for_each_dev(dev, link, ENABLED) {
3357                 if (!ata_dma_enabled(dev))
3358                         continue;
3359
3360                 dev->xfer_mode = dev->dma_mode;
3361                 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3362                 if (ap->ops->set_dmamode)
3363                         ap->ops->set_dmamode(ap, dev);
3364         }
3365
3366         /* step 4: update devices' xfer mode */
3367         ata_for_each_dev(dev, link, ENABLED) {
3368                 rc = ata_dev_set_mode(dev);
3369                 if (rc)
3370                         goto out;
3371         }
3372
3373         /* Record simplex status. If we selected DMA then the other
3374          * host channels are not permitted to do so.
3375          */
3376         if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
3377                 ap->host->simplex_claimed = ap;
3378
3379  out:
3380         if (rc)
3381                 *r_failed_dev = dev;
3382         return rc;
3383 }
3384
3385 /**
3386  *      ata_wait_ready - wait for link to become ready
3387  *      @link: link to be waited on
3388  *      @deadline: deadline jiffies for the operation
3389  *      @check_ready: callback to check link readiness
3390  *
3391  *      Wait for @link to become ready.  @check_ready should return
3392  *      positive number if @link is ready, 0 if it isn't, -ENODEV if
3393  *      link doesn't seem to be occupied, other errno for other error
3394  *      conditions.
3395  *
3396  *      Transient -ENODEV conditions are allowed for
3397  *      ATA_TMOUT_FF_WAIT.
3398  *
3399  *      LOCKING:
3400  *      EH context.
3401  *
3402  *      RETURNS:
3403  *      0 if @linke is ready before @deadline; otherwise, -errno.
3404  */
3405 int ata_wait_ready(struct ata_link *link, unsigned long deadline,
3406                    int (*check_ready)(struct ata_link *link))
3407 {
3408         unsigned long start = jiffies;
3409         unsigned long nodev_deadline;
3410         int warned = 0;
3411
3412         /* choose which 0xff timeout to use, read comment in libata.h */
3413         if (link->ap->host->flags & ATA_HOST_PARALLEL_SCAN)
3414                 nodev_deadline = ata_deadline(start, ATA_TMOUT_FF_WAIT_LONG);
3415         else
3416                 nodev_deadline = ata_deadline(start, ATA_TMOUT_FF_WAIT);
3417
3418         /* Slave readiness can't be tested separately from master.  On
3419          * M/S emulation configuration, this function should be called
3420          * only on the master and it will handle both master and slave.
3421          */
3422         WARN_ON(link == link->ap->slave_link);
3423
3424         if (time_after(nodev_deadline, deadline))
3425                 nodev_deadline = deadline;
3426
3427         while (1) {
3428                 unsigned long now = jiffies;
3429                 int ready, tmp;
3430
3431                 ready = tmp = check_ready(link);
3432                 if (ready > 0)
3433                         return 0;
3434
3435                 /*
3436                  * -ENODEV could be transient.  Ignore -ENODEV if link
3437                  * is online.  Also, some SATA devices take a long
3438                  * time to clear 0xff after reset.  Wait for
3439                  * ATA_TMOUT_FF_WAIT[_LONG] on -ENODEV if link isn't
3440                  * offline.
3441                  *
3442                  * Note that some PATA controllers (pata_ali) explode
3443                  * if status register is read more than once when
3444                  * there's no device attached.
3445                  */
3446                 if (ready == -ENODEV) {
3447                         if (ata_link_online(link))
3448                                 ready = 0;
3449                         else if ((link->ap->flags & ATA_FLAG_SATA) &&
3450                                  !ata_link_offline(link) &&
3451                                  time_before(now, nodev_deadline))
3452                                 ready = 0;
3453                 }
3454
3455                 if (ready)
3456                         return ready;
3457                 if (time_after(now, deadline))
3458                         return -EBUSY;
3459
3460                 if (!warned && time_after(now, start + 5 * HZ) &&
3461                     (deadline - now > 3 * HZ)) {
3462                         ata_link_warn(link,
3463                                 "link is slow to respond, please be patient "
3464                                 "(ready=%d)\n", tmp);
3465                         warned = 1;
3466                 }
3467
3468                 ata_msleep(link->ap, 50);
3469         }
3470 }
3471
3472 /**
3473  *      ata_wait_after_reset - wait for link to become ready after reset
3474  *      @link: link to be waited on
3475  *      @deadline: deadline jiffies for the operation
3476  *      @check_ready: callback to check link readiness
3477  *
3478  *      Wait for @link to become ready after reset.
3479  *
3480  *      LOCKING:
3481  *      EH context.
3482  *
3483  *      RETURNS:
3484  *      0 if @linke is ready before @deadline; otherwise, -errno.
3485  */
3486 int ata_wait_after_reset(struct ata_link *link, unsigned long deadline,
3487                                 int (*check_ready)(struct ata_link *link))
3488 {
3489         ata_msleep(link->ap, ATA_WAIT_AFTER_RESET);
3490
3491         return ata_wait_ready(link, deadline, check_ready);
3492 }
3493
3494 /**
3495  *      sata_link_debounce - debounce SATA phy status
3496  *      @link: ATA link to debounce SATA phy status for
3497  *      @params: timing parameters { interval, duratinon, timeout } in msec
3498  *      @deadline: deadline jiffies for the operation
3499  *
3500  *      Make sure SStatus of @link reaches stable state, determined by
3501  *      holding the same value where DET is not 1 for @duration polled
3502  *      every @interval, before @timeout.  Timeout constraints the
3503  *      beginning of the stable state.  Because DET gets stuck at 1 on
3504  *      some controllers after hot unplugging, this functions waits
3505  *      until timeout then returns 0 if DET is stable at 1.
3506  *
3507  *      @timeout is further limited by @deadline.  The sooner of the
3508  *      two is used.
3509  *
3510  *      LOCKING:
3511  *      Kernel thread context (may sleep)
3512  *
3513  *      RETURNS:
3514  *      0 on success, -errno on failure.
3515  */
3516 int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3517                        unsigned long deadline)
3518 {
3519         unsigned long interval = params[0];
3520         unsigned long duration = params[1];
3521         unsigned long last_jiffies, t;
3522         u32 last, cur;
3523         int rc;
3524
3525         t = ata_deadline(jiffies, params[2]);
3526         if (time_before(t, deadline))
3527                 deadline = t;
3528
3529         if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
3530                 return rc;
3531         cur &= 0xf;
3532
3533         last = cur;
3534         last_jiffies = jiffies;
3535
3536         while (1) {
3537                 ata_msleep(link->ap, interval);
3538                 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
3539                         return rc;
3540                 cur &= 0xf;
3541
3542                 /* DET stable? */
3543                 if (cur == last) {
3544                         if (cur == 1 && time_before(jiffies, deadline))
3545                                 continue;
3546                         if (time_after(jiffies,
3547                                        ata_deadline(last_jiffies, duration)))
3548                                 return 0;
3549                         continue;
3550                 }
3551
3552                 /* unstable, start over */
3553                 last = cur;
3554                 last_jiffies = jiffies;
3555
3556                 /* Check deadline.  If debouncing failed, return
3557                  * -EPIPE to tell upper layer to lower link speed.
3558                  */
3559                 if (time_after(jiffies, deadline))
3560                         return -EPIPE;
3561         }
3562 }
3563
3564 /**
3565  *      sata_link_resume - resume SATA link
3566  *      @link: ATA link to resume SATA
3567  *      @params: timing parameters { interval, duratinon, timeout } in msec
3568  *      @deadline: deadline jiffies for the operation
3569  *
3570  *      Resume SATA phy @link and debounce it.
3571  *
3572  *      LOCKING:
3573  *      Kernel thread context (may sleep)
3574  *
3575  *      RETURNS:
3576  *      0 on success, -errno on failure.
3577  */
3578 int sata_link_resume(struct ata_link *link, const unsigned long *params,
3579                      unsigned long deadline)
3580 {
3581         int tries = ATA_LINK_RESUME_TRIES;
3582         u32 scontrol, serror;
3583         int rc;
3584
3585         if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
3586                 return rc;
3587
3588         /*
3589          * Writes to SControl sometimes get ignored under certain
3590          * controllers (ata_piix SIDPR).  Make sure DET actually is
3591          * cleared.
3592          */
3593         do {
3594                 scontrol = (scontrol & 0x0f0) | 0x300;
3595                 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
3596                         return rc;
3597                 /*
3598                  * Some PHYs react badly if SStatus is pounded
3599                  * immediately after resuming.  Delay 200ms before
3600                  * debouncing.
3601                  */
3602                 ata_msleep(link->ap, 200);
3603
3604                 /* is SControl restored correctly? */
3605                 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
3606                         return rc;
3607         } while ((scontrol & 0xf0f) != 0x300 && --tries);
3608
3609         if ((scontrol & 0xf0f) != 0x300) {
3610                 ata_link_warn(link, "failed to resume link (SControl %X)\n",
3611                              scontrol);
3612                 return 0;
3613         }
3614
3615         if (tries < ATA_LINK_RESUME_TRIES)
3616                 ata_link_warn(link, "link resume succeeded after %d retries\n",
3617                               ATA_LINK_RESUME_TRIES - tries);
3618
3619         if ((rc = sata_link_debounce(link, params, deadline)))
3620                 return rc;
3621
3622         /* clear SError, some PHYs require this even for SRST to work */
3623         if (!(rc = sata_scr_read(link, SCR_ERROR, &serror)))
3624                 rc = sata_scr_write(link, SCR_ERROR, serror);
3625
3626         return rc != -EINVAL ? rc : 0;
3627 }
3628
3629 /**
3630  *      sata_link_scr_lpm - manipulate SControl IPM and SPM fields
3631  *      @link: ATA link to manipulate SControl for
3632  *      @policy: LPM policy to configure
3633  *      @spm_wakeup: initiate LPM transition to active state
3634  *
3635  *      Manipulate the IPM field of the SControl register of @link
3636  *      according to @policy.  If @policy is ATA_LPM_MAX_POWER and
3637  *      @spm_wakeup is %true, the SPM field is manipulated to wake up
3638  *      the link.  This function also clears PHYRDY_CHG before
3639  *      returning.
3640  *
3641  *      LOCKING:
3642  *      EH context.
3643  *
3644  *      RETURNS:
3645  *      0 on success, -errno otherwise.
3646  */
3647 int sata_link_scr_lpm(struct ata_link *link, enum ata_lpm_policy policy,
3648                       bool spm_wakeup)
3649 {
3650         struct ata_eh_context *ehc = &link->eh_context;
3651         bool woken_up = false;
3652         u32 scontrol;
3653         int rc;
3654
3655         rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
3656         if (rc)
3657                 return rc;
3658
3659         switch (policy) {
3660         case ATA_LPM_MAX_POWER:
3661                 /* disable all LPM transitions */
3662                 scontrol |= (0x7 << 8);
3663                 /* initiate transition to active state */
3664                 if (spm_wakeup) {
3665                         scontrol |= (0x4 << 12);
3666                         woken_up = true;
3667                 }
3668                 break;
3669         case ATA_LPM_MED_POWER:
3670                 /* allow LPM to PARTIAL */
3671                 scontrol &= ~(0x1 << 8);
3672                 scontrol |= (0x6 << 8);
3673                 break;
3674         case ATA_LPM_MIN_POWER:
3675                 if (ata_link_nr_enabled(link) > 0)
3676                         /* no restrictions on LPM transitions */
3677                         scontrol &= ~(0x7 << 8);
3678                 else {
3679                         /* empty port, power off */
3680                         scontrol &= ~0xf;
3681                         scontrol |= (0x1 << 2);
3682                 }
3683                 break;
3684         default:
3685                 WARN_ON(1);
3686         }
3687
3688         rc = sata_scr_write(link, SCR_CONTROL, scontrol);
3689         if (rc)
3690                 return rc;
3691
3692         /* give the link time to transit out of LPM state */
3693         if (woken_up)
3694                 msleep(10);
3695
3696         /* clear PHYRDY_CHG from SError */
3697         ehc->i.serror &= ~SERR_PHYRDY_CHG;
3698         return sata_scr_write(link, SCR_ERROR, SERR_PHYRDY_CHG);
3699 }
3700
3701 /**
3702  *      ata_std_prereset - prepare for reset
3703  *      @link: ATA link to be reset
3704  *      @deadline: deadline jiffies for the operation
3705  *
3706  *      @link is about to be reset.  Initialize it.  Failure from
3707  *      prereset makes libata abort whole reset sequence and give up
3708  *      that port, so prereset should be best-effort.  It does its
3709  *      best to prepare for reset sequence but if things go wrong, it
3710  *      should just whine, not fail.
3711  *
3712  *      LOCKING:
3713  *      Kernel thread context (may sleep)
3714  *
3715  *      RETURNS:
3716  *      0 on success, -errno otherwise.
3717  */
3718 int ata_std_prereset(struct ata_link *link, unsigned long deadline)
3719 {
3720         struct ata_port *ap = link->ap;
3721         struct ata_eh_context *ehc = &link->eh_context;
3722         const unsigned long *timing = sata_ehc_deb_timing(ehc);
3723         int rc;
3724
3725         /* if we're about to do hardreset, nothing more to do */
3726         if (ehc->i.action & ATA_EH_HARDRESET)
3727                 return 0;
3728
3729         /* if SATA, resume link */
3730         if (ap->flags & ATA_FLAG_SATA) {
3731                 rc = sata_link_resume(link, timing, deadline);
3732                 /* whine about phy resume failure but proceed */
3733                 if (rc && rc != -EOPNOTSUPP)
3734                         ata_link_warn(link,
3735                                       "failed to resume link for reset (errno=%d)\n",
3736                                       rc);
3737         }
3738
3739         /* no point in trying softreset on offline link */
3740         if (ata_phys_link_offline(link))
3741                 ehc->i.action &= ~ATA_EH_SOFTRESET;
3742
3743         return 0;
3744 }
3745
3746 /**
3747  *      sata_link_hardreset - reset link via SATA phy reset
3748  *      @link: link to reset
3749  *      @timing: timing parameters { interval, duratinon, timeout } in msec
3750  *      @deadline: deadline jiffies for the operation
3751  *      @online: optional out parameter indicating link onlineness
3752  *      @check_ready: optional callback to check link readiness
3753  *
3754  *      SATA phy-reset @link using DET bits of SControl register.
3755  *      After hardreset, link readiness is waited upon using
3756  *      ata_wait_ready() if @check_ready is specified.  LLDs are
3757  *      allowed to not specify @check_ready and wait itself after this
3758  *      function returns.  Device classification is LLD's
3759  *      responsibility.
3760  *
3761  *      *@online is set to one iff reset succeeded and @link is online
3762  *      after reset.
3763  *
3764  *      LOCKING:
3765  *      Kernel thread context (may sleep)
3766  *
3767  *      RETURNS:
3768  *      0 on success, -errno otherwise.
3769  */
3770 int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
3771                         unsigned long deadline,
3772                         bool *online, int (*check_ready)(struct ata_link *))
3773 {
3774         u32 scontrol;
3775         int rc;
3776
3777         DPRINTK("ENTER\n");
3778
3779         if (online)
3780                 *online = false;
3781
3782         if (sata_set_spd_needed(link)) {
3783                 /* SATA spec says nothing about how to reconfigure
3784                  * spd.  To be on the safe side, turn off phy during
3785                  * reconfiguration.  This works for at least ICH7 AHCI
3786                  * and Sil3124.
3787                  */
3788                 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
3789                         goto out;
3790
3791                 scontrol = (scontrol & 0x0f0) | 0x304;
3792
3793                 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
3794                         goto out;
3795
3796                 sata_set_spd(link);
3797         }
3798
3799         /* issue phy wake/reset */
3800         if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
3801                 goto out;
3802
3803         scontrol = (scontrol & 0x0f0) | 0x301;
3804
3805         if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
3806                 goto out;
3807
3808         /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
3809          * 10.4.2 says at least 1 ms.
3810          */
3811         ata_msleep(link->ap, 1);
3812
3813         /* bring link back */
3814         rc = sata_link_resume(link, timing, deadline);
3815         if (rc)
3816                 goto out;
3817         /* if link is offline nothing more to do */
3818         if (ata_phys_link_offline(link))
3819                 goto out;
3820
3821         /* Link is online.  From this point, -ENODEV too is an error. */
3822         if (online)
3823                 *online = true;
3824
3825         if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) {
3826                 /* If PMP is supported, we have to do follow-up SRST.
3827                  * Some PMPs don't send D2H Reg FIS after hardreset if
3828                  * the first port is empty.  Wait only for
3829                  * ATA_TMOUT_PMP_SRST_WAIT.
3830                  */
3831                 if (check_ready) {
3832                         unsigned long pmp_deadline;
3833
3834                         pmp_deadline = ata_deadline(jiffies,
3835                                                     ATA_TMOUT_PMP_SRST_WAIT);
3836                         if (time_after(pmp_deadline, deadline))
3837                                 pmp_deadline = deadline;
3838                         ata_wait_ready(link, pmp_deadline, check_ready);
3839                 }
3840                 rc = -EAGAIN;
3841                 goto out;
3842         }
3843
3844         rc = 0;
3845         if (check_ready)
3846                 rc = ata_wait_ready(link, deadline, check_ready);
3847  out:
3848         if (rc && rc != -EAGAIN) {
3849                 /* online is set iff link is online && reset succeeded */
3850                 if (online)
3851                         *online = false;
3852                 ata_link_err(link, "COMRESET failed (errno=%d)\n", rc);
3853         }
3854         DPRINTK("EXIT, rc=%d\n", rc);
3855         return rc;
3856 }
3857
3858 /**
3859  *      sata_std_hardreset - COMRESET w/o waiting or classification
3860  *      @link: link to reset
3861  *      @class: resulting class of attached device
3862  *      @deadline: deadline jiffies for the operation
3863  *
3864  *      Standard SATA COMRESET w/o waiting or classification.
3865  *
3866  *      LOCKING:
3867  *      Kernel thread context (may sleep)
3868  *
3869  *      RETURNS:
3870  *      0 if link offline, -EAGAIN if link online, -errno on errors.
3871  */
3872 int sata_std_hardreset(struct ata_link *link, unsigned int *class,
3873                        unsigned long deadline)
3874 {
3875         const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
3876         bool online;
3877         int rc;
3878
3879         /* do hardreset */
3880         rc = sata_link_hardreset(link, timing, deadline, &online, NULL);
3881         return online ? -EAGAIN : rc;
3882 }
3883
3884 /**
3885  *      ata_std_postreset - standard postreset callback
3886  *      @link: the target ata_link
3887  *      @classes: classes of attached devices
3888  *
3889  *      This function is invoked after a successful reset.  Note that
3890  *      the device might have been reset more than once using
3891  *      different reset methods before postreset is invoked.
3892  *
3893  *      LOCKING:
3894  *      Kernel thread context (may sleep)
3895  */
3896 void ata_std_postreset(struct ata_link *link, unsigned int *classes)
3897 {
3898         u32 serror;
3899
3900         DPRINTK("ENTER\n");
3901
3902         /* reset complete, clear SError */
3903         if (!sata_scr_read(link, SCR_ERROR, &serror))
3904                 sata_scr_write(link, SCR_ERROR, serror);
3905
3906         /* print link status */
3907         sata_print_link_status(link);
3908
3909         DPRINTK("EXIT\n");
3910 }
3911
3912 /**
3913  *      ata_dev_same_device - Determine whether new ID matches configured device
3914  *      @dev: device to compare against
3915  *      @new_class: class of the new device
3916  *      @new_id: IDENTIFY page of the new device
3917  *
3918  *      Compare @new_class and @new_id against @dev and determine
3919  *      whether @dev is the device indicated by @new_class and
3920  *      @new_id.
3921  *
3922  *      LOCKING:
3923  *      None.
3924  *
3925  *      RETURNS:
3926  *      1 if @dev matches @new_class and @new_id, 0 otherwise.
3927  */
3928 static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3929                                const u16 *new_id)
3930 {
3931         const u16 *old_id = dev->id;
3932         unsigned char model[2][ATA_ID_PROD_LEN + 1];
3933         unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
3934
3935         if (dev->class != new_class) {
3936                 ata_dev_info(dev, "class mismatch %d != %d\n",
3937                              dev->class, new_class);
3938                 return 0;
3939         }
3940
3941         ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3942         ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3943         ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3944         ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
3945
3946         if (strcmp(model[0], model[1])) {
3947                 ata_dev_info(dev, "model number mismatch '%s' != '%s'\n",
3948                              model[0], model[1]);
3949                 return 0;
3950         }
3951
3952         if (strcmp(serial[0], serial[1])) {
3953                 ata_dev_info(dev, "serial number mismatch '%s' != '%s'\n",
3954                              serial[0], serial[1]);
3955                 return 0;
3956         }
3957
3958         return 1;
3959 }
3960
3961 /**
3962  *      ata_dev_reread_id - Re-read IDENTIFY data
3963  *      @dev: target ATA device
3964  *      @readid_flags: read ID flags
3965  *
3966  *      Re-read IDENTIFY page and make sure @dev is still attached to
3967  *      the port.
3968  *
3969  *      LOCKING:
3970  *      Kernel thread context (may sleep)
3971  *
3972  *      RETURNS:
3973  *      0 on success, negative errno otherwise
3974  */
3975 int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
3976 {
3977         unsigned int class = dev->class;
3978         u16 *id = (void *)dev->link->ap->sector_buf;
3979         int rc;
3980
3981         /* read ID data */
3982         rc = ata_dev_read_id(dev, &class, readid_flags, id);
3983         if (rc)
3984                 return rc;
3985
3986         /* is the device still there? */
3987         if (!ata_dev_same_device(dev, class, id))
3988                 return -ENODEV;
3989
3990         memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
3991         return 0;
3992 }
3993
3994 /**
3995  *      ata_dev_revalidate - Revalidate ATA device
3996  *      @dev: device to revalidate
3997  *      @new_class: new class code
3998  *      @readid_flags: read ID flags
3999  *
4000  *      Re-read IDENTIFY page, make sure @dev is still attached to the
4001  *      port and reconfigure it according to the new IDENTIFY page.
4002  *
4003  *      LOCKING:
4004  *      Kernel thread context (may sleep)
4005  *
4006  *      RETURNS:
4007  *      0 on success, negative errno otherwise
4008  */
4009 int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
4010                        unsigned int readid_flags)
4011 {
4012         u64 n_sectors = dev->n_sectors;
4013         u64 n_native_sectors = dev->n_native_sectors;
4014         int rc;
4015
4016         if (!ata_dev_enabled(dev))
4017                 return -ENODEV;
4018
4019         /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
4020         if (ata_class_enabled(new_class) &&
4021             new_class != ATA_DEV_ATA &&
4022             new_class != ATA_DEV_ATAPI &&
4023             new_class != ATA_DEV_ZAC &&
4024             new_class != ATA_DEV_SEMB) {
4025                 ata_dev_info(dev, "class mismatch %u != %u\n",
4026                              dev->class, new_class);
4027                 rc = -ENODEV;
4028                 goto fail;
4029         }
4030
4031         /* re-read ID */
4032         rc = ata_dev_reread_id(dev, readid_flags);
4033         if (rc)
4034                 goto fail;
4035
4036         /* configure device according to the new ID */
4037         rc = ata_dev_configure(dev);
4038         if (rc)
4039                 goto fail;
4040
4041         /* verify n_sectors hasn't changed */
4042         if (dev->class != ATA_DEV_ATA || !n_sectors ||
4043             dev->n_sectors == n_sectors)
4044                 return 0;
4045
4046         /* n_sectors has changed */
4047         ata_dev_warn(dev, "n_sectors mismatch %llu != %llu\n",
4048                      (unsigned long long)n_sectors,
4049                      (unsigned long long)dev->n_sectors);
4050
4051         /*
4052          * Something could have caused HPA to be unlocked
4053          * involuntarily.  If n_native_sectors hasn't changed and the
4054          * new size matches it, keep the device.
4055          */
4056         if (dev->n_native_sectors == n_native_sectors &&
4057             dev->n_sectors > n_sectors && dev->n_sectors == n_native_sectors) {
4058                 ata_dev_warn(dev,
4059                              "new n_sectors matches native, probably "
4060                              "late HPA unlock, n_sectors updated\n");
4061                 /* use the larger n_sectors */
4062                 return 0;
4063         }
4064
4065         /*
4066          * Some BIOSes boot w/o HPA but resume w/ HPA locked.  Try
4067          * unlocking HPA in those cases.
4068          *
4069          * https://bugzilla.kernel.org/show_bug.cgi?id=15396
4070          */
4071         if (dev->n_native_sectors == n_native_sectors &&
4072             dev->n_sectors < n_sectors && n_sectors == n_native_sectors &&
4073             !(dev->horkage & ATA_HORKAGE_BROKEN_HPA)) {
4074                 ata_dev_warn(dev,
4075                              "old n_sectors matches native, probably "
4076                              "late HPA lock, will try to unlock HPA\n");
4077                 /* try unlocking HPA */
4078                 dev->flags |= ATA_DFLAG_UNLOCK_HPA;
4079                 rc = -EIO;
4080         } else
4081                 rc = -ENODEV;
4082
4083         /* restore original n_[native_]sectors and fail */
4084         dev->n_native_sectors = n_native_sectors;
4085         dev->n_sectors = n_sectors;
4086  fail:
4087         ata_dev_err(dev, "revalidation failed (errno=%d)\n", rc);
4088         return rc;
4089 }
4090
4091 struct ata_blacklist_entry {
4092         const char *model_num;
4093         const char *model_rev;
4094         unsigned long horkage;
4095 };
4096
4097 static const struct ata_blacklist_entry ata_device_blacklist [] = {
4098         /* Devices with DMA related problems under Linux */
4099         { "WDC AC11000H",       NULL,           ATA_HORKAGE_NODMA },
4100         { "WDC AC22100H",       NULL,           ATA_HORKAGE_NODMA },
4101         { "WDC AC32500H",       NULL,           ATA_HORKAGE_NODMA },
4102         { "WDC AC33100H",       NULL,           ATA_HORKAGE_NODMA },
4103         { "WDC AC31600H",       NULL,           ATA_HORKAGE_NODMA },
4104         { "WDC AC32100H",       "24.09P07",     ATA_HORKAGE_NODMA },
4105         { "WDC AC23200L",       "21.10N21",     ATA_HORKAGE_NODMA },
4106         { "Compaq CRD-8241B",   NULL,           ATA_HORKAGE_NODMA },
4107         { "CRD-8400B",          NULL,           ATA_HORKAGE_NODMA },
4108         { "CRD-848[02]B",       NULL,           ATA_HORKAGE_NODMA },
4109         { "CRD-84",             NULL,           ATA_HORKAGE_NODMA },
4110         { "SanDisk SDP3B",      NULL,           ATA_HORKAGE_NODMA },
4111         { "SanDisk SDP3B-64",   NULL,           ATA_HORKAGE_NODMA },
4112         { "SANYO CD-ROM CRD",   NULL,           ATA_HORKAGE_NODMA },
4113         { "HITACHI CDR-8",      NULL,           ATA_HORKAGE_NODMA },
4114         { "HITACHI CDR-8[34]35",NULL,           ATA_HORKAGE_NODMA },
4115         { "Toshiba CD-ROM XM-6202B", NULL,      ATA_HORKAGE_NODMA },
4116         { "TOSHIBA CD-ROM XM-1702BC", NULL,     ATA_HORKAGE_NODMA },
4117         { "CD-532E-A",          NULL,           ATA_HORKAGE_NODMA },
4118         { "E-IDE CD-ROM CR-840",NULL,           ATA_HORKAGE_NODMA },
4119         { "CD-ROM Drive/F5A",   NULL,           ATA_HORKAGE_NODMA },
4120         { "WPI CDD-820",        NULL,           ATA_HORKAGE_NODMA },
4121         { "SAMSUNG CD-ROM SC-148C", NULL,       ATA_HORKAGE_NODMA },
4122         { "SAMSUNG CD-ROM SC",  NULL,           ATA_HORKAGE_NODMA },
4123         { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
4124         { "_NEC DV5800A",       NULL,           ATA_HORKAGE_NODMA },
4125         { "SAMSUNG CD-ROM SN-124", "N001",      ATA_HORKAGE_NODMA },
4126         { "Seagate STT20000A", NULL,            ATA_HORKAGE_NODMA },
4127         { " 2GB ATA Flash Disk", "ADMA428M",    ATA_HORKAGE_NODMA },
4128         /* Odd clown on sil3726/4726 PMPs */
4129         { "Config  Disk",       NULL,           ATA_HORKAGE_DISABLE },
4130
4131         /* Weird ATAPI devices */
4132         { "TORiSAN DVD-ROM DRD-N216", NULL,     ATA_HORKAGE_MAX_SEC_128 },
4133         { "QUANTUM DAT    DAT72-000", NULL,     ATA_HORKAGE_ATAPI_MOD16_DMA },
4134         { "Slimtype DVD A  DS8A8SH", NULL,      ATA_HORKAGE_MAX_SEC_LBA48 },
4135         { "Slimtype DVD A  DS8A9SH", NULL,      ATA_HORKAGE_MAX_SEC_LBA48 },
4136
4137         /*
4138          * Causes silent data corruption with higher max sects.
4139          * http://lkml.kernel.org/g/x49wpy40ysk.fsf@segfault.boston.devel.redhat.com
4140          */
4141         { "ST380013AS",         "3.20",         ATA_HORKAGE_MAX_SEC_1024 },
4142
4143         /*
4144          * These devices time out with higher max sects.
4145          * https://bugzilla.kernel.org/show_bug.cgi?id=121671
4146          */
4147         { "LITEON CX1-JB*-HP",  NULL,           ATA_HORKAGE_MAX_SEC_1024 },
4148         { "LITEON EP1-*",       NULL,           ATA_HORKAGE_MAX_SEC_1024 },
4149
4150         /* Devices we expect to fail diagnostics */
4151
4152         /* Devices where NCQ should be avoided */
4153         /* NCQ is slow */
4154         { "WDC WD740ADFD-00",   NULL,           ATA_HORKAGE_NONCQ },
4155         { "WDC WD740ADFD-00NLR1", NULL,         ATA_HORKAGE_NONCQ, },
4156         /* http://thread.gmane.org/gmane.linux.ide/14907 */
4157         { "FUJITSU MHT2060BH",  NULL,           ATA_HORKAGE_NONCQ },
4158         /* NCQ is broken */
4159         { "Maxtor *",           "BANC*",        ATA_HORKAGE_NONCQ },
4160         { "Maxtor 7V300F0",     "VA111630",     ATA_HORKAGE_NONCQ },
4161         { "ST380817AS",         "3.42",         ATA_HORKAGE_NONCQ },
4162         { "ST3160023AS",        "3.42",         ATA_HORKAGE_NONCQ },
4163         { "OCZ CORE_SSD",       "02.10104",     ATA_HORKAGE_NONCQ },
4164
4165         /* Seagate NCQ + FLUSH CACHE firmware bug */
4166         { "ST31500341AS",       "SD1[5-9]",     ATA_HORKAGE_NONCQ |
4167                                                 ATA_HORKAGE_FIRMWARE_WARN },
4168
4169         { "ST31000333AS",       "SD1[5-9]",     ATA_HORKAGE_NONCQ |
4170                                                 ATA_HORKAGE_FIRMWARE_WARN },
4171
4172         { "ST3640[36]23AS",     "SD1[5-9]",     ATA_HORKAGE_NONCQ |
4173                                                 ATA_HORKAGE_FIRMWARE_WARN },
4174
4175         { "ST3320[68]13AS",     "SD1[5-9]",     ATA_HORKAGE_NONCQ |
4176                                                 ATA_HORKAGE_FIRMWARE_WARN },
4177
4178         /* drives which fail FPDMA_AA activation (some may freeze afterwards)
4179            the ST disks also have LPM issues */
4180         { "ST1000LM024 HN-M101MBB", "2AR10001", ATA_HORKAGE_BROKEN_FPDMA_AA |
4181                                                 ATA_HORKAGE_NOLPM, },
4182         { "ST1000LM024 HN-M101MBB", "2BA30001", ATA_HORKAGE_BROKEN_FPDMA_AA |
4183                                                 ATA_HORKAGE_NOLPM, },
4184         { "VB0250EAVER",        "HPG7",         ATA_HORKAGE_BROKEN_FPDMA_AA },
4185
4186         /* Blacklist entries taken from Silicon Image 3124/3132
4187            Windows driver .inf file - also several Linux problem reports */
4188         { "HTS541060G9SA00",    "MB3OC60D",     ATA_HORKAGE_NONCQ, },
4189         { "HTS541080G9SA00",    "MB4OC60D",     ATA_HORKAGE_NONCQ, },
4190         { "HTS541010G9SA00",    "MBZOC60D",     ATA_HORKAGE_NONCQ, },
4191
4192         /* https://bugzilla.kernel.org/show_bug.cgi?id=15573 */
4193         { "C300-CTFDDAC128MAG", "0001",         ATA_HORKAGE_NONCQ, },
4194
4195         /* Some Sandisk SSDs lock up hard with NCQ enabled.  Reported on
4196            SD7SN6S256G and SD8SN8U256G */
4197         { "SanDisk SD[78]SN*G", NULL,           ATA_HORKAGE_NONCQ, },
4198
4199         /* devices which puke on READ_NATIVE_MAX */
4200         { "HDS724040KLSA80",    "KFAOA20N",     ATA_HORKAGE_BROKEN_HPA, },
4201         { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
4202         { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
4203         { "MAXTOR 6L080L4",     "A93.0500",     ATA_HORKAGE_BROKEN_HPA },
4204
4205         /* this one allows HPA unlocking but fails IOs on the area */
4206         { "OCZ-VERTEX",             "1.30",     ATA_HORKAGE_BROKEN_HPA },
4207
4208         /* Devices which report 1 sector over size HPA */
4209         { "ST340823A",          NULL,           ATA_HORKAGE_HPA_SIZE, },
4210         { "ST320413A",          NULL,           ATA_HORKAGE_HPA_SIZE, },
4211         { "ST310211A",          NULL,           ATA_HORKAGE_HPA_SIZE, },
4212
4213         /* Devices which get the IVB wrong */
4214         { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
4215         /* Maybe we should just blacklist TSSTcorp... */
4216         { "TSSTcorp CDDVDW SH-S202[HJN]", "SB0[01]",  ATA_HORKAGE_IVB, },
4217
4218         /* Devices that do not need bridging limits applied */
4219         { "MTRON MSP-SATA*",            NULL,   ATA_HORKAGE_BRIDGE_OK, },
4220         { "BUFFALO HD-QSU2/R5",         NULL,   ATA_HORKAGE_BRIDGE_OK, },
4221
4222         /* Devices which aren't very happy with higher link speeds */
4223         { "WD My Book",                 NULL,   ATA_HORKAGE_1_5_GBPS, },
4224         { "Seagate FreeAgent GoFlex",   NULL,   ATA_HORKAGE_1_5_GBPS, },
4225
4226         /*
4227          * Devices which choke on SETXFER.  Applies only if both the
4228          * device and controller are SATA.
4229          */
4230         { "PIONEER DVD-RW  DVRTD08",    NULL,   ATA_HORKAGE_NOSETXFER },
4231         { "PIONEER DVD-RW  DVRTD08A",   NULL,   ATA_HORKAGE_NOSETXFER },
4232         { "PIONEER DVD-RW  DVR-215",    NULL,   ATA_HORKAGE_NOSETXFER },
4233         { "PIONEER DVD-RW  DVR-212D",   NULL,   ATA_HORKAGE_NOSETXFER },
4234         { "PIONEER DVD-RW  DVR-216D",   NULL,   ATA_HORKAGE_NOSETXFER },
4235
4236         /* Crucial BX100 SSD 500GB has broken LPM support */
4237         { "CT500BX100SSD1",             NULL,   ATA_HORKAGE_NOLPM },
4238
4239         /* 512GB MX100 with MU01 firmware has both queued TRIM and LPM issues */
4240         { "Crucial_CT512MX100*",        "MU01", ATA_HORKAGE_NO_NCQ_TRIM |
4241                                                 ATA_HORKAGE_ZERO_AFTER_TRIM |
4242                                                 ATA_HORKAGE_NOLPM, },
4243         /* 512GB MX100 with newer firmware has only LPM issues */
4244         { "Crucial_CT512MX100*",        NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM |
4245                                                 ATA_HORKAGE_NOLPM, },
4246
4247         /* 480GB+ M500 SSDs have both queued TRIM and LPM issues */
4248         { "Crucial_CT480M500*",         NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4249                                                 ATA_HORKAGE_ZERO_AFTER_TRIM |
4250                                                 ATA_HORKAGE_NOLPM, },
4251         { "Crucial_CT960M500*",         NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4252                                                 ATA_HORKAGE_ZERO_AFTER_TRIM |
4253                                                 ATA_HORKAGE_NOLPM, },
4254
4255         /* devices that don't properly handle queued TRIM commands */
4256         { "Micron_M500IT_*",            "MU01", ATA_HORKAGE_NO_NCQ_TRIM |
4257                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4258         { "Micron_M500_*",              NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4259                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4260         { "Crucial_CT*M500*",           NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4261                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4262         { "Micron_M5[15]0_*",           "MU01", ATA_HORKAGE_NO_NCQ_TRIM |
4263                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4264         { "Crucial_CT*M550*",           "MU01", ATA_HORKAGE_NO_NCQ_TRIM |
4265                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4266         { "Crucial_CT*MX100*",          "MU01", ATA_HORKAGE_NO_NCQ_TRIM |
4267                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4268         { "Samsung SSD 840*",           NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4269                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4270         { "Samsung SSD 850*",           NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4271                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4272         { "Samsung SSD 860*",           NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4273                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4274         { "Samsung SSD 870*",           NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4275                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4276         { "FCCT*M500*",                 NULL,   ATA_HORKAGE_NO_NCQ_TRIM |
4277                                                 ATA_HORKAGE_ZERO_AFTER_TRIM, },
4278
4279         /* devices that don't properly handle TRIM commands */
4280         { "SuperSSpeed S238*",          NULL,   ATA_HORKAGE_NOTRIM, },
4281
4282         /*
4283          * As defined, the DRAT (Deterministic Read After Trim) and RZAT
4284          * (Return Zero After Trim) flags in the ATA Command Set are
4285          * unreliable in the sense that they only define what happens if
4286          * the device successfully executed the DSM TRIM command. TRIM
4287          * is only advisory, however, and the device is free to silently
4288          * ignore all or parts of the request.
4289          *
4290          * Whitelist drives that are known to reliably return zeroes
4291          * after TRIM.
4292          */
4293
4294         /*
4295          * The intel 510 drive has buggy DRAT/RZAT. Explicitly exclude
4296          * that model before whitelisting all other intel SSDs.
4297          */
4298         { "INTEL*SSDSC2MH*",            NULL,   0, },
4299
4300         { "Micron*",                    NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM, },
4301         { "Crucial*",                   NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM, },
4302         { "INTEL*SSD*",                 NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM, },
4303         { "SSD*INTEL*",                 NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM, },
4304         { "Samsung*SSD*",               NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM, },
4305         { "SAMSUNG*SSD*",               NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM, },
4306         { "SAMSUNG*MZ7KM*",             NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM, },
4307         { "ST[1248][0248]0[FH]*",       NULL,   ATA_HORKAGE_ZERO_AFTER_TRIM, },
4308
4309         /*
4310          * Some WD SATA-I drives spin up and down erratically when the link
4311          * is put into the slumber mode.  We don't have full list of the
4312          * affected devices.  Disable LPM if the device matches one of the
4313          * known prefixes and is SATA-1.  As a side effect LPM partial is
4314          * lost too.
4315          *
4316          * https://bugzilla.kernel.org/show_bug.cgi?id=57211
4317          */
4318         { "WDC WD800JD-*",              NULL,   ATA_HORKAGE_WD_BROKEN_LPM },
4319         { "WDC WD1200JD-*",             NULL,   ATA_HORKAGE_WD_BROKEN_LPM },
4320         { "WDC WD1600JD-*",             NULL,   ATA_HORKAGE_WD_BROKEN_LPM },
4321         { "WDC WD2000JD-*",             NULL,   ATA_HORKAGE_WD_BROKEN_LPM },
4322         { "WDC WD2500JD-*",             NULL,   ATA_HORKAGE_WD_BROKEN_LPM },
4323         { "WDC WD3000JD-*",             NULL,   ATA_HORKAGE_WD_BROKEN_LPM },
4324         { "WDC WD3200JD-*",             NULL,   ATA_HORKAGE_WD_BROKEN_LPM },
4325
4326         /* End Marker */
4327         { }
4328 };
4329
4330 static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
4331 {
4332         unsigned char model_num[ATA_ID_PROD_LEN + 1];
4333         unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
4334         const struct ata_blacklist_entry *ad = ata_device_blacklist;
4335
4336         ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
4337         ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
4338
4339         while (ad->model_num) {
4340                 if (glob_match(ad->model_num, model_num)) {
4341                         if (ad->model_rev == NULL)
4342                                 return ad->horkage;
4343                         if (glob_match(ad->model_rev, model_rev))
4344                                 return ad->horkage;
4345                 }
4346                 ad++;
4347         }
4348         return 0;
4349 }
4350
4351 static int ata_dma_blacklisted(const struct ata_device *dev)
4352 {
4353         /* We don't support polling DMA.
4354          * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
4355          * if the LLDD handles only interrupts in the HSM_ST_LAST state.
4356          */
4357         if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
4358             (dev->flags & ATA_DFLAG_CDB_INTR))
4359                 return 1;
4360         return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
4361 }
4362
4363 /**
4364  *      ata_is_40wire           -       check drive side detection
4365  *      @dev: device
4366  *
4367  *      Perform drive side detection decoding, allowing for device vendors
4368  *      who can't follow the documentation.
4369  */
4370
4371 static int ata_is_40wire(struct ata_device *dev)
4372 {
4373         if (dev->horkage & ATA_HORKAGE_IVB)
4374                 return ata_drive_40wire_relaxed(dev->id);
4375         return ata_drive_40wire(dev->id);
4376 }
4377
4378 /**
4379  *      cable_is_40wire         -       40/80/SATA decider
4380  *      @ap: port to consider
4381  *
4382  *      This function encapsulates the policy for speed management
4383  *      in one place. At the moment we don't cache the result but
4384  *      there is a good case for setting ap->cbl to the result when
4385  *      we are called with unknown cables (and figuring out if it
4386  *      impacts hotplug at all).
4387  *
4388  *      Return 1 if the cable appears to be 40 wire.
4389  */
4390
4391 static int cable_is_40wire(struct ata_port *ap)
4392 {
4393         struct ata_link *link;
4394         struct ata_device *dev;
4395
4396         /* If the controller thinks we are 40 wire, we are. */
4397         if (ap->cbl == ATA_CBL_PATA40)
4398                 return 1;
4399
4400         /* If the controller thinks we are 80 wire, we are. */
4401         if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA)
4402                 return 0;
4403
4404         /* If the system is known to be 40 wire short cable (eg
4405          * laptop), then we allow 80 wire modes even if the drive
4406          * isn't sure.
4407          */
4408         if (ap->cbl == ATA_CBL_PATA40_SHORT)
4409                 return 0;
4410
4411         /* If the controller doesn't know, we scan.
4412          *
4413          * Note: We look for all 40 wire detects at this point.  Any
4414          *       80 wire detect is taken to be 80 wire cable because
4415          * - in many setups only the one drive (slave if present) will
4416          *   give a valid detect
4417          * - if you have a non detect capable drive you don't want it
4418          *   to colour the choice
4419          */
4420         ata_for_each_link(link, ap, EDGE) {
4421                 ata_for_each_dev(dev, link, ENABLED) {
4422                         if (!ata_is_40wire(dev))
4423                                 return 0;
4424                 }
4425         }
4426         return 1;
4427 }
4428
4429 /**
4430  *      ata_dev_xfermask - Compute supported xfermask of the given device
4431  *      @dev: Device to compute xfermask for
4432  *
4433  *      Compute supported xfermask of @dev and store it in
4434  *      dev->*_mask.  This function is responsible for applying all
4435  *      known limits including host controller limits, device
4436  *      blacklist, etc...
4437  *
4438  *      LOCKING:
4439  *      None.
4440  */
4441 static void ata_dev_xfermask(struct ata_device *dev)
4442 {
4443         struct ata_link *link = dev->link;
4444         struct ata_port *ap = link->ap;
4445         struct ata_host *host = ap->host;
4446         unsigned long xfer_mask;
4447
4448         /* controller modes available */
4449         xfer_mask = ata_pack_xfermask(ap->pio_mask,
4450                                       ap->mwdma_mask, ap->udma_mask);
4451
4452         /* drive modes available */
4453         xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4454                                        dev->mwdma_mask, dev->udma_mask);
4455         xfer_mask &= ata_id_xfermask(dev->id);
4456
4457         /*
4458          *      CFA Advanced TrueIDE timings are not allowed on a shared
4459          *      cable
4460          */
4461         if (ata_dev_pair(dev)) {
4462                 /* No PIO5 or PIO6 */
4463                 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4464                 /* No MWDMA3 or MWDMA 4 */
4465                 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4466         }
4467
4468         if (ata_dma_blacklisted(dev)) {
4469                 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4470                 ata_dev_warn(dev,
4471                              "device is on DMA blacklist, disabling DMA\n");
4472         }
4473
4474         if ((host->flags & ATA_HOST_SIMPLEX) &&
4475             host->simplex_claimed && host->simplex_claimed != ap) {
4476                 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4477                 ata_dev_warn(dev,
4478                              "simplex DMA is claimed by other device, disabling DMA\n");
4479         }
4480
4481         if (ap->flags & ATA_FLAG_NO_IORDY)
4482                 xfer_mask &= ata_pio_mask_no_iordy(dev);
4483
4484         if (ap->ops->mode_filter)
4485                 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
4486
4487         /* Apply cable rule here.  Don't apply it early because when
4488          * we handle hot plug the cable type can itself change.
4489          * Check this last so that we know if the transfer rate was
4490          * solely limited by the cable.
4491          * Unknown or 80 wire cables reported host side are checked
4492          * drive side as well. Cases where we know a 40wire cable
4493          * is used safely for 80 are not checked here.
4494          */
4495         if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4496                 /* UDMA/44 or higher would be available */
4497                 if (cable_is_40wire(ap)) {
4498                         ata_dev_warn(dev,
4499                                      "limited to UDMA/33 due to 40-wire cable\n");
4500                         xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4501                 }
4502
4503         ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4504                             &dev->mwdma_mask, &dev->udma_mask);
4505 }
4506
4507 /**
4508  *      ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
4509  *      @dev: Device to which command will be sent
4510  *
4511  *      Issue SET FEATURES - XFER MODE command to device @dev
4512  *      on port @ap.
4513  *
4514  *      LOCKING:
4515  *      PCI/etc. bus probe sem.
4516  *
4517  *      RETURNS:
4518  *      0 on success, AC_ERR_* mask otherwise.
4519  */
4520
4521 static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
4522 {
4523         struct ata_taskfile tf;
4524         unsigned int err_mask;
4525
4526         /* set up set-features taskfile */
4527         DPRINTK("set features - xfer mode\n");
4528
4529         /* Some controllers and ATAPI devices show flaky interrupt
4530          * behavior after setting xfer mode.  Use polling instead.
4531          */
4532         ata_tf_init(dev, &tf);
4533         tf.command = ATA_CMD_SET_FEATURES;
4534         tf.feature = SETFEATURES_XFER;
4535         tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
4536         tf.protocol = ATA_PROT_NODATA;
4537         /* If we are using IORDY we must send the mode setting command */
4538         if (ata_pio_need_iordy(dev))
4539                 tf.nsect = dev->xfer_mode;
4540         /* If the device has IORDY and the controller does not - turn it off */
4541         else if (ata_id_has_iordy(dev->id))
4542                 tf.nsect = 0x01;
4543         else /* In the ancient relic department - skip all of this */
4544                 return 0;
4545
4546         /* On some disks, this command causes spin-up, so we need longer timeout */
4547         err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 15000);
4548
4549         DPRINTK("EXIT, err_mask=%x\n", err_mask);
4550         return err_mask;
4551 }
4552
4553 /**
4554  *      ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
4555  *      @dev: Device to which command will be sent
4556  *      @enable: Whether to enable or disable the feature
4557  *      @feature: The sector count represents the feature to set
4558  *
4559  *      Issue SET FEATURES - SATA FEATURES command to device @dev
4560  *      on port @ap with sector count
4561  *
4562  *      LOCKING:
4563  *      PCI/etc. bus probe sem.
4564  *
4565  *      RETURNS:
4566  *      0 on success, AC_ERR_* mask otherwise.
4567  */
4568 unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable, u8 feature)
4569 {
4570         struct ata_taskfile tf;
4571         unsigned int err_mask;
4572
4573         /* set up set-features taskfile */
4574         DPRINTK("set features - SATA features\n");
4575
4576         ata_tf_init(dev, &tf);
4577         tf.command = ATA_CMD_SET_FEATURES;
4578         tf.feature = enable;
4579         tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4580         tf.protocol = ATA_PROT_NODATA;
4581         tf.nsect = feature;
4582
4583         err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
4584
4585         DPRINTK("EXIT, err_mask=%x\n", err_mask);
4586         return err_mask;
4587 }
4588 EXPORT_SYMBOL_GPL(ata_dev_set_feature);
4589
4590 /**
4591  *      ata_dev_init_params - Issue INIT DEV PARAMS command
4592  *      @dev: Device to which command will be sent
4593  *      @heads: Number of heads (taskfile parameter)
4594  *      @sectors: Number of sectors (taskfile parameter)
4595  *
4596  *      LOCKING:
4597  *      Kernel thread context (may sleep)
4598  *
4599  *      RETURNS:
4600  *      0 on success, AC_ERR_* mask otherwise.
4601  */
4602 static unsigned int ata_dev_init_params(struct ata_device *dev,
4603                                         u16 heads, u16 sectors)
4604 {
4605         struct ata_taskfile tf;
4606         unsigned int err_mask;
4607
4608         /* Number of sectors per track 1-255. Number of heads 1-16 */
4609         if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
4610                 return AC_ERR_INVALID;
4611
4612         /* set up init dev params taskfile */
4613         DPRINTK("init dev params \n");
4614
4615         ata_tf_init(dev, &tf);
4616         tf.command = ATA_CMD_INIT_DEV_PARAMS;
4617         tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4618         tf.protocol = ATA_PROT_NODATA;
4619         tf.nsect = sectors;
4620         tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
4621
4622         err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
4623         /* A clean abort indicates an original or just out of spec drive
4624            and we should continue as we issue the setup based on the
4625            drive reported working geometry */
4626         if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4627                 err_mask = 0;
4628
4629         DPRINTK("EXIT, err_mask=%x\n", err_mask);
4630         return err_mask;
4631 }
4632
4633 /**
4634  *      ata_sg_clean - Unmap DMA memory associated with command
4635  *      @qc: Command containing DMA memory to be released
4636  *
4637  *      Unmap all mapped DMA memory associated with this command.
4638  *
4639  *      LOCKING:
4640  *      spin_lock_irqsave(host lock)
4641  */
4642 void ata_sg_clean(struct ata_queued_cmd *qc)
4643 {
4644         struct ata_port *ap = qc->ap;
4645         struct scatterlist *sg = qc->sg;
4646         int dir = qc->dma_dir;
4647
4648         WARN_ON_ONCE(sg == NULL);
4649
4650         VPRINTK("unmapping %u sg elements\n", qc->n_elem);
4651
4652         if (qc->n_elem)
4653                 dma_unmap_sg(ap->dev, sg, qc->orig_n_elem, dir);
4654
4655         qc->flags &= ~ATA_QCFLAG_DMAMAP;
4656         qc->sg = NULL;
4657 }
4658
4659 /**
4660  *      atapi_check_dma - Check whether ATAPI DMA can be supported
4661  *      @qc: Metadata associated with taskfile to check
4662  *
4663  *      Allow low-level driver to filter ATA PACKET commands, returning
4664  *      a status indicating whether or not it is OK to use DMA for the
4665  *      supplied PACKET command.
4666  *
4667  *      LOCKING:
4668  *      spin_lock_irqsave(host lock)
4669  *
4670  *      RETURNS: 0 when ATAPI DMA can be used
4671  *               nonzero otherwise
4672  */
4673 int atapi_check_dma(struct ata_queued_cmd *qc)
4674 {
4675         struct ata_port *ap = qc->ap;
4676
4677         /* Don't allow DMA if it isn't multiple of 16 bytes.  Quite a
4678          * few ATAPI devices choke on such DMA requests.
4679          */
4680         if (!(qc->dev->horkage & ATA_HORKAGE_ATAPI_MOD16_DMA) &&
4681             unlikely(qc->nbytes & 15))
4682                 return 1;
4683
4684         if (ap->ops->check_atapi_dma)
4685                 return ap->ops->check_atapi_dma(qc);
4686
4687         return 0;
4688 }
4689
4690 /**
4691  *      ata_std_qc_defer - Check whether a qc needs to be deferred
4692  *      @qc: ATA command in question
4693  *
4694  *      Non-NCQ commands cannot run with any other command, NCQ or
4695  *      not.  As upper layer only knows the queue depth, we are
4696  *      responsible for maintaining exclusion.  This function checks
4697  *      whether a new command @qc can be issued.
4698  *
4699  *      LOCKING:
4700  *      spin_lock_irqsave(host lock)
4701  *
4702  *      RETURNS:
4703  *      ATA_DEFER_* if deferring is needed, 0 otherwise.
4704  */
4705 int ata_std_qc_defer(struct ata_queued_cmd *qc)
4706 {
4707         struct ata_link *link = qc->dev->link;
4708
4709         if (qc->tf.protocol == ATA_PROT_NCQ) {
4710                 if (!ata_tag_valid(link->active_tag))
4711                         return 0;
4712         } else {
4713                 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4714                         return 0;
4715         }
4716
4717         return ATA_DEFER_LINK;
4718 }
4719
4720 enum ata_completion_errors ata_noop_qc_prep(struct ata_queued_cmd *qc)
4721 {
4722         return AC_ERR_OK;
4723 }
4724
4725 /**
4726  *      ata_sg_init - Associate command with scatter-gather table.
4727  *      @qc: Command to be associated
4728  *      @sg: Scatter-gather table.
4729  *      @n_elem: Number of elements in s/g table.
4730  *
4731  *      Initialize the data-related elements of queued_cmd @qc
4732  *      to point to a scatter-gather table @sg, containing @n_elem
4733  *      elements.
4734  *
4735  *      LOCKING:
4736  *      spin_lock_irqsave(host lock)
4737  */
4738 void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4739                  unsigned int n_elem)
4740 {
4741         qc->sg = sg;
4742         qc->n_elem = n_elem;
4743         qc->cursg = qc->sg;
4744 }
4745
4746 /**
4747  *      ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4748  *      @qc: Command with scatter-gather table to be mapped.
4749  *
4750  *      DMA-map the scatter-gather table associated with queued_cmd @qc.
4751  *
4752  *      LOCKING:
4753  *      spin_lock_irqsave(host lock)
4754  *
4755  *      RETURNS:
4756  *      Zero on success, negative on error.
4757  *
4758  */
4759 static int ata_sg_setup(struct ata_queued_cmd *qc)
4760 {
4761         struct ata_port *ap = qc->ap;
4762         unsigned int n_elem;
4763
4764         VPRINTK("ENTER, ata%u\n", ap->print_id);
4765
4766         n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4767         if (n_elem < 1)
4768                 return -1;
4769
4770         DPRINTK("%d sg elements mapped\n", n_elem);
4771         qc->orig_n_elem = qc->n_elem;
4772         qc->n_elem = n_elem;
4773         qc->flags |= ATA_QCFLAG_DMAMAP;
4774
4775         return 0;
4776 }
4777
4778 /**
4779  *      swap_buf_le16 - swap halves of 16-bit words in place
4780  *      @buf:  Buffer to swap
4781  *      @buf_words:  Number of 16-bit words in buffer.
4782  *
4783  *      Swap halves of 16-bit words if needed to convert from
4784  *      little-endian byte order to native cpu byte order, or
4785  *      vice-versa.
4786  *
4787  *      LOCKING:
4788  *      Inherited from caller.
4789  */
4790 void swap_buf_le16(u16 *buf, unsigned int buf_words)
4791 {
4792 #ifdef __BIG_ENDIAN
4793         unsigned int i;
4794
4795         for (i = 0; i < buf_words; i++)
4796                 buf[i] = le16_to_cpu(buf[i]);
4797 #endif /* __BIG_ENDIAN */
4798 }
4799
4800 /**
4801  *      ata_qc_new_init - Request an available ATA command, and initialize it
4802  *      @dev: Device from whom we request an available command structure
4803  *      @tag: tag
4804  *
4805  *      LOCKING:
4806  *      None.
4807  */
4808
4809 struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev, int tag)
4810 {
4811         struct ata_port *ap = dev->link->ap;
4812         struct ata_queued_cmd *qc;
4813
4814         /* no command while frozen */
4815         if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
4816                 return NULL;
4817
4818         /* libsas case */
4819         if (ap->flags & ATA_FLAG_SAS_HOST) {
4820                 tag = ata_sas_allocate_tag(ap);
4821                 if (tag < 0)
4822                         return NULL;
4823         }
4824
4825         qc = __ata_qc_from_tag(ap, tag);
4826         qc->tag = tag;
4827         qc->scsicmd = NULL;
4828         qc->ap = ap;
4829         qc->dev = dev;
4830
4831         ata_qc_reinit(qc);
4832
4833         return qc;
4834 }
4835
4836 /**
4837  *      ata_qc_free - free unused ata_queued_cmd
4838  *      @qc: Command to complete
4839  *
4840  *      Designed to free unused ata_queued_cmd object
4841  *      in case something prevents using it.
4842  *
4843  *      LOCKING:
4844  *      spin_lock_irqsave(host lock)
4845  */
4846 void ata_qc_free(struct ata_queued_cmd *qc)
4847 {
4848         struct ata_port *ap;
4849         unsigned int tag;
4850
4851         WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4852         ap = qc->ap;
4853
4854         qc->flags = 0;
4855         tag = qc->tag;
4856         if (likely(ata_tag_valid(tag))) {
4857                 qc->tag = ATA_TAG_POISON;
4858                 if (ap->flags & ATA_FLAG_SAS_HOST)
4859                         ata_sas_free_tag(tag, ap);
4860         }
4861 }
4862
4863 void __ata_qc_complete(struct ata_queued_cmd *qc)
4864 {
4865         struct ata_port *ap;
4866         struct ata_link *link;
4867
4868         WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4869         WARN_ON_ONCE(!(qc->flags & ATA_QCFLAG_ACTIVE));
4870         ap = qc->ap;
4871         link = qc->dev->link;
4872
4873         if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4874                 ata_sg_clean(qc);
4875
4876         /* command should be marked inactive atomically with qc completion */
4877         if (qc->tf.protocol == ATA_PROT_NCQ) {
4878                 link->sactive &= ~(1 << qc->tag);
4879                 if (!link->sactive)
4880                         ap->nr_active_links--;
4881         } else {
4882                 link->active_tag = ATA_TAG_POISON;
4883                 ap->nr_active_links--;
4884         }
4885
4886         /* clear exclusive status */
4887         if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4888                      ap->excl_link == link))
4889                 ap->excl_link = NULL;
4890
4891         /* atapi: mark qc as inactive to prevent the interrupt handler
4892          * from completing the command twice later, before the error handler
4893          * is called. (when rc != 0 and atapi request sense is needed)
4894          */
4895         qc->flags &= ~ATA_QCFLAG_ACTIVE;
4896         ap->qc_active &= ~(1 << qc->tag);
4897
4898         /* call completion callback */
4899         qc->complete_fn(qc);
4900 }
4901
4902 static void fill_result_tf(struct ata_queued_cmd *qc)
4903 {
4904         struct ata_port *ap = qc->ap;
4905
4906         qc->result_tf.flags = qc->tf.flags;
4907         ap->ops->qc_fill_rtf(qc);
4908 }
4909
4910 static void ata_verify_xfer(struct ata_queued_cmd *qc)
4911 {
4912         struct ata_device *dev = qc->dev;
4913
4914         if (ata_is_nodata(qc->tf.protocol))
4915                 return;
4916
4917         if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4918                 return;
4919
4920         dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4921 }
4922
4923 /**
4924  *      ata_qc_complete - Complete an active ATA command
4925  *      @qc: Command to complete
4926  *
4927  *      Indicate to the mid and upper layers that an ATA command has
4928  *      completed, with either an ok or not-ok status.
4929  *
4930  *      Refrain from calling this function multiple times when
4931  *      successfully completing multiple NCQ commands.
4932  *      ata_qc_complete_multiple() should be used instead, which will
4933  *      properly update IRQ expect state.
4934  *
4935  *      LOCKING:
4936  *      spin_lock_irqsave(host lock)
4937  */
4938 void ata_qc_complete(struct ata_queued_cmd *qc)
4939 {
4940         struct ata_port *ap = qc->ap;
4941
4942         /* XXX: New EH and old EH use different mechanisms to
4943          * synchronize EH with regular execution path.
4944          *
4945          * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4946          * Normal execution path is responsible for not accessing a
4947          * failed qc.  libata core enforces the rule by returning NULL
4948          * from ata_qc_from_tag() for failed qcs.
4949          *
4950          * Old EH depends on ata_qc_complete() nullifying completion
4951          * requests if ATA_QCFLAG_EH_SCHEDULED is set.  Old EH does
4952          * not synchronize with interrupt handler.  Only PIO task is
4953          * taken care of.
4954          */
4955         if (ap->ops->error_handler) {
4956                 struct ata_device *dev = qc->dev;
4957                 struct ata_eh_info *ehi = &dev->link->eh_info;
4958
4959                 if (unlikely(qc->err_mask))
4960                         qc->flags |= ATA_QCFLAG_FAILED;
4961
4962                 /*
4963                  * Finish internal commands without any further processing
4964                  * and always with the result TF filled.
4965                  */
4966                 if (unlikely(ata_tag_internal(qc->tag))) {
4967                         fill_result_tf(qc);
4968                         trace_ata_qc_complete_internal(qc);
4969                         __ata_qc_complete(qc);
4970                         return;
4971                 }
4972
4973                 /*
4974                  * Non-internal qc has failed.  Fill the result TF and
4975                  * summon EH.
4976                  */
4977                 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4978                         fill_result_tf(qc);
4979                         trace_ata_qc_complete_failed(qc);
4980                         ata_qc_schedule_eh(qc);
4981                         return;
4982                 }
4983
4984                 WARN_ON_ONCE(ap->pflags & ATA_PFLAG_FROZEN);
4985
4986                 /* read result TF if requested */
4987                 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4988                         fill_result_tf(qc);
4989
4990                 trace_ata_qc_complete_done(qc);
4991                 /* Some commands need post-processing after successful
4992                  * completion.
4993                  */
4994                 switch (qc->tf.command) {
4995                 case ATA_CMD_SET_FEATURES:
4996                         if (qc->tf.feature != SETFEATURES_WC_ON &&
4997                             qc->tf.feature != SETFEATURES_WC_OFF)
4998                                 break;
4999                         /* fall through */
5000                 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
5001                 case ATA_CMD_SET_MULTI: /* multi_count changed */
5002                         /* revalidate device */
5003                         ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
5004                         ata_port_schedule_eh(ap);
5005                         break;
5006
5007                 case ATA_CMD_SLEEP:
5008                         dev->flags |= ATA_DFLAG_SLEEPING;
5009                         break;
5010                 }
5011
5012                 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
5013                         ata_verify_xfer(qc);
5014
5015                 __ata_qc_complete(qc);
5016         } else {
5017                 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5018                         return;
5019
5020                 /* read result TF if failed or requested */
5021                 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
5022                         fill_result_tf(qc);
5023
5024                 __ata_qc_complete(qc);
5025         }
5026 }
5027
5028 /**
5029  *      ata_qc_complete_multiple - Complete multiple qcs successfully
5030  *      @ap: port in question
5031  *      @qc_active: new qc_active mask
5032  *
5033  *      Complete in-flight commands.  This functions is meant to be
5034  *      called from low-level driver's interrupt routine to complete
5035  *      requests normally.  ap->qc_active and @qc_active is compared
5036  *      and commands are completed accordingly.
5037  *
5038  *      Always use this function when completing multiple NCQ commands
5039  *      from IRQ handlers instead of calling ata_qc_complete()
5040  *      multiple times to keep IRQ expect status properly in sync.
5041  *
5042  *      LOCKING:
5043  *      spin_lock_irqsave(host lock)
5044  *
5045  *      RETURNS:
5046  *      Number of completed commands on success, -errno otherwise.
5047  */
5048 int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active)
5049 {
5050         int nr_done = 0;
5051         u32 done_mask;
5052
5053         done_mask = ap->qc_active ^ qc_active;
5054
5055         if (unlikely(done_mask & qc_active)) {
5056                 ata_port_err(ap, "illegal qc_active transition (%08x->%08x)\n",
5057                              ap->qc_active, qc_active);
5058                 return -EINVAL;
5059         }
5060
5061         while (done_mask) {
5062                 struct ata_queued_cmd *qc;
5063                 unsigned int tag = __ffs(done_mask);
5064
5065                 qc = ata_qc_from_tag(ap, tag);
5066                 if (qc) {
5067                         ata_qc_complete(qc);
5068                         nr_done++;
5069                 }
5070                 done_mask &= ~(1 << tag);
5071         }
5072
5073         return nr_done;
5074 }
5075
5076 /**
5077  *      ata_qc_issue - issue taskfile to device
5078  *      @qc: command to issue to device
5079  *
5080  *      Prepare an ATA command to submission to device.
5081  *      This includes mapping the data into a DMA-able
5082  *      area, filling in the S/G table, and finally
5083  *      writing the taskfile to hardware, starting the command.
5084  *
5085  *      LOCKING:
5086  *      spin_lock_irqsave(host lock)
5087  */
5088 void ata_qc_issue(struct ata_queued_cmd *qc)
5089 {
5090         struct ata_port *ap = qc->ap;
5091         struct ata_link *link = qc->dev->link;
5092         u8 prot = qc->tf.protocol;
5093
5094         /* Make sure only one non-NCQ command is outstanding.  The
5095          * check is skipped for old EH because it reuses active qc to
5096          * request ATAPI sense.
5097          */
5098         WARN_ON_ONCE(ap->ops->error_handler && ata_tag_valid(link->active_tag));
5099
5100         if (ata_is_ncq(prot)) {
5101                 WARN_ON_ONCE(link->sactive & (1 << qc->tag));
5102
5103                 if (!link->sactive)
5104                         ap->nr_active_links++;
5105                 link->sactive |= 1 << qc->tag;
5106         } else {
5107                 WARN_ON_ONCE(link->sactive);
5108
5109                 ap->nr_active_links++;
5110                 link->active_tag = qc->tag;
5111         }
5112
5113         qc->flags |= ATA_QCFLAG_ACTIVE;
5114         ap->qc_active |= 1 << qc->tag;
5115
5116         /*
5117          * We guarantee to LLDs that they will have at least one
5118          * non-zero sg if the command is a data command.
5119          */
5120         if (ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes))
5121                 goto sys_err;
5122
5123         if (ata_is_dma(prot) || (ata_is_pio(prot) &&
5124                                  (ap->flags & ATA_FLAG_PIO_DMA)))
5125                 if (ata_sg_setup(qc))
5126                         goto sys_err;
5127
5128         /* if device is sleeping, schedule reset and abort the link */
5129         if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
5130                 link->eh_info.action |= ATA_EH_RESET;
5131                 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
5132                 ata_link_abort(link);
5133                 return;
5134         }
5135
5136         qc->err_mask |= ap->ops->qc_prep(qc);
5137         if (unlikely(qc->err_mask))
5138                 goto err;
5139         trace_ata_qc_issue(qc);
5140         qc->err_mask |= ap->ops->qc_issue(qc);
5141         if (unlikely(qc->err_mask))
5142                 goto err;
5143         return;
5144
5145 sys_err:
5146         qc->err_mask |= AC_ERR_SYSTEM;
5147 err:
5148         ata_qc_complete(qc);
5149 }
5150
5151 /**
5152  *      sata_scr_valid - test whether SCRs are accessible
5153  *      @link: ATA link to test SCR accessibility for
5154  *
5155  *      Test whether SCRs are accessible for @link.
5156  *
5157  *      LOCKING:
5158  *      None.
5159  *
5160  *      RETURNS:
5161  *      1 if SCRs are accessible, 0 otherwise.
5162  */
5163 int sata_scr_valid(struct ata_link *link)
5164 {
5165         struct ata_port *ap = link->ap;
5166
5167         return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
5168 }
5169
5170 /**
5171  *      sata_scr_read - read SCR register of the specified port
5172  *      @link: ATA link to read SCR for
5173  *      @reg: SCR to read
5174  *      @val: Place to store read value
5175  *
5176  *      Read SCR register @reg of @link into *@val.  This function is
5177  *      guaranteed to succeed if @link is ap->link, the cable type of
5178  *      the port is SATA and the port implements ->scr_read.
5179  *
5180  *      LOCKING:
5181  *      None if @link is ap->link.  Kernel thread context otherwise.
5182  *
5183  *      RETURNS:
5184  *      0 on success, negative errno on failure.
5185  */
5186 int sata_scr_read(struct ata_link *link, int reg, u32 *val)
5187 {
5188         if (ata_is_host_link(link)) {
5189                 if (sata_scr_valid(link))
5190                         return link->ap->ops->scr_read(link, reg, val);
5191                 return -EOPNOTSUPP;
5192         }
5193
5194         return sata_pmp_scr_read(link, reg, val);
5195 }
5196
5197 /**
5198  *      sata_scr_write - write SCR register of the specified port
5199  *      @link: ATA link to write SCR for
5200  *      @reg: SCR to write
5201  *      @val: value to write
5202  *
5203  *      Write @val to SCR register @reg of @link.  This function is
5204  *      guaranteed to succeed if @link is ap->link, the cable type of
5205  *      the port is SATA and the port implements ->scr_read.
5206  *
5207  *      LOCKING:
5208  *      None if @link is ap->link.  Kernel thread context otherwise.
5209  *
5210  *      RETURNS:
5211  *      0 on success, negative errno on failure.
5212  */
5213 int sata_scr_write(struct ata_link *link, int reg, u32 val)
5214 {
5215         if (ata_is_host_link(link)) {
5216                 if (sata_scr_valid(link))
5217                         return link->ap->ops->scr_write(link, reg, val);
5218                 return -EOPNOTSUPP;
5219         }
5220
5221         return sata_pmp_scr_write(link, reg, val);
5222 }
5223
5224 /**
5225  *      sata_scr_write_flush - write SCR register of the specified port and flush
5226  *      @link: ATA link to write SCR for
5227  *      @reg: SCR to write
5228  *      @val: value to write
5229  *
5230  *      This function is identical to sata_scr_write() except that this
5231  *      function performs flush after writing to the register.
5232  *
5233  *      LOCKING:
5234  *      None if @link is ap->link.  Kernel thread context otherwise.
5235  *
5236  *      RETURNS:
5237  *      0 on success, negative errno on failure.
5238  */
5239 int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
5240 {
5241         if (ata_is_host_link(link)) {
5242                 int rc;
5243
5244                 if (sata_scr_valid(link)) {
5245                         rc = link->ap->ops->scr_write(link, reg, val);
5246                         if (rc == 0)
5247                                 rc = link->ap->ops->scr_read(link, reg, &val);
5248                         return rc;
5249                 }
5250                 return -EOPNOTSUPP;
5251         }
5252
5253         return sata_pmp_scr_write(link, reg, val);
5254 }
5255
5256 /**
5257  *      ata_phys_link_online - test whether the given link is online
5258  *      @link: ATA link to test
5259  *
5260  *      Test whether @link is online.  Note that this function returns
5261  *      0 if online status of @link cannot be obtained, so
5262  *      ata_link_online(link) != !ata_link_offline(link).
5263  *
5264  *      LOCKING:
5265  *      None.
5266  *
5267  *      RETURNS:
5268  *      True if the port online status is available and online.
5269  */
5270 bool ata_phys_link_online(struct ata_link *link)
5271 {
5272         u32 sstatus;
5273
5274         if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5275             ata_sstatus_online(sstatus))
5276                 return true;
5277         return false;
5278 }
5279
5280 /**
5281  *      ata_phys_link_offline - test whether the given link is offline
5282  *      @link: ATA link to test
5283  *
5284  *      Test whether @link is offline.  Note that this function
5285  *      returns 0 if offline status of @link cannot be obtained, so
5286  *      ata_link_online(link) != !ata_link_offline(link).
5287  *
5288  *      LOCKING:
5289  *      None.
5290  *
5291  *      RETURNS:
5292  *      True if the port offline status is available and offline.
5293  */
5294 bool ata_phys_link_offline(struct ata_link *link)
5295 {
5296         u32 sstatus;
5297
5298         if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5299             !ata_sstatus_online(sstatus))
5300                 return true;
5301         return false;
5302 }
5303
5304 /**
5305  *      ata_link_online - test whether the given link is online
5306  *      @link: ATA link to test
5307  *
5308  *      Test whether @link is online.  This is identical to
5309  *      ata_phys_link_online() when there's no slave link.  When
5310  *      there's a slave link, this function should only be called on
5311  *      the master link and will return true if any of M/S links is
5312  *      online.
5313  *
5314  *      LOCKING:
5315  *      None.
5316  *
5317  *      RETURNS:
5318  *      True if the port online status is available and online.
5319  */
5320 bool ata_link_online(struct ata_link *link)
5321 {
5322         struct ata_link *slave = link->ap->slave_link;
5323
5324         WARN_ON(link == slave); /* shouldn't be called on slave link */
5325
5326         return ata_phys_link_online(link) ||
5327                 (slave && ata_phys_link_online(slave));
5328 }
5329
5330 /**
5331  *      ata_link_offline - test whether the given link is offline
5332  *      @link: ATA link to test
5333  *
5334  *      Test whether @link is offline.  This is identical to
5335  *      ata_phys_link_offline() when there's no slave link.  When
5336  *      there's a slave link, this function should only be called on
5337  *      the master link and will return true if both M/S links are
5338  *      offline.
5339  *
5340  *      LOCKING:
5341  *      None.
5342  *
5343  *      RETURNS:
5344  *      True if the port offline status is available and offline.
5345  */
5346 bool ata_link_offline(struct ata_link *link)
5347 {
5348         struct ata_link *slave = link->ap->slave_link;
5349
5350         WARN_ON(link == slave); /* shouldn't be called on slave link */
5351
5352         return ata_phys_link_offline(link) &&
5353                 (!slave || ata_phys_link_offline(slave));
5354 }
5355
5356 #ifdef CONFIG_PM
5357 static void ata_port_request_pm(struct ata_port *ap, pm_message_t mesg,
5358                                 unsigned int action, unsigned int ehi_flags,
5359                                 bool async)
5360 {
5361         struct ata_link *link;
5362         unsigned long flags;
5363
5364         /* Previous resume operation might still be in
5365          * progress.  Wait for PM_PENDING to clear.
5366          */
5367         if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5368                 ata_port_wait_eh(ap);
5369                 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5370         }
5371
5372         /* request PM ops to EH */
5373         spin_lock_irqsave(ap->lock, flags);
5374
5375         ap->pm_mesg = mesg;
5376         ap->pflags |= ATA_PFLAG_PM_PENDING;
5377         ata_for_each_link(link, ap, HOST_FIRST) {
5378                 link->eh_info.action |= action;
5379                 link->eh_info.flags |= ehi_flags;
5380         }
5381
5382         ata_port_schedule_eh(ap);
5383
5384         spin_unlock_irqrestore(ap->lock, flags);
5385
5386         if (!async) {
5387                 ata_port_wait_eh(ap);
5388                 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5389         }
5390 }
5391
5392 /*
5393  * On some hardware, device fails to respond after spun down for suspend.  As
5394  * the device won't be used before being resumed, we don't need to touch the
5395  * device.  Ask EH to skip the usual stuff and proceed directly to suspend.
5396  *
5397  * http://thread.gmane.org/gmane.linux.ide/46764
5398  */
5399 static const unsigned int ata_port_suspend_ehi = ATA_EHI_QUIET
5400                                                  | ATA_EHI_NO_AUTOPSY
5401                                                  | ATA_EHI_NO_RECOVERY;
5402
5403 static void ata_port_suspend(struct ata_port *ap, pm_message_t mesg)
5404 {
5405         ata_port_request_pm(ap, mesg, 0, ata_port_suspend_ehi, false);
5406 }
5407
5408 static void ata_port_suspend_async(struct ata_port *ap, pm_message_t mesg)
5409 {
5410         ata_port_request_pm(ap, mesg, 0, ata_port_suspend_ehi, true);
5411 }
5412
5413 static int ata_port_pm_suspend(struct device *dev)
5414 {
5415         struct ata_port *ap = to_ata_port(dev);
5416
5417         if (pm_runtime_suspended(dev))
5418                 return 0;
5419
5420         ata_port_suspend(ap, PMSG_SUSPEND);
5421         return 0;
5422 }
5423
5424 static int ata_port_pm_freeze(struct device *dev)
5425 {
5426         struct ata_port *ap = to_ata_port(dev);
5427
5428         if (pm_runtime_suspended(dev))
5429                 return 0;
5430
5431         ata_port_suspend(ap, PMSG_FREEZE);
5432         return 0;
5433 }
5434
5435 static int ata_port_pm_poweroff(struct device *dev)
5436 {
5437         ata_port_suspend(to_ata_port(dev), PMSG_HIBERNATE);
5438         return 0;
5439 }
5440
5441 static const unsigned int ata_port_resume_ehi = ATA_EHI_NO_AUTOPSY
5442                                                 | ATA_EHI_QUIET;
5443
5444 static void ata_port_resume(struct ata_port *ap, pm_message_t mesg)
5445 {
5446         ata_port_request_pm(ap, mesg, ATA_EH_RESET, ata_port_resume_ehi, false);
5447 }
5448
5449 static void ata_port_resume_async(struct ata_port *ap, pm_message_t mesg)
5450 {
5451         ata_port_request_pm(ap, mesg, ATA_EH_RESET, ata_port_resume_ehi, true);
5452 }
5453
5454 static int ata_port_pm_resume(struct device *dev)
5455 {
5456         ata_port_resume_async(to_ata_port(dev), PMSG_RESUME);
5457         pm_runtime_disable(dev);
5458         pm_runtime_set_active(dev);
5459         pm_runtime_enable(dev);
5460         return 0;
5461 }
5462
5463 /*
5464  * For ODDs, the upper layer will poll for media change every few seconds,
5465  * which will make it enter and leave suspend state every few seconds. And
5466  * as each suspend will cause a hard/soft reset, the gain of runtime suspend
5467  * is very little and the ODD may malfunction after constantly being reset.
5468  * So the idle callback here will not proceed to suspend if a non-ZPODD capable
5469  * ODD is attached to the port.
5470  */
5471 static int ata_port_runtime_idle(struct device *dev)
5472 {
5473         struct ata_port *ap = to_ata_port(dev);
5474         struct ata_link *link;
5475         struct ata_device *adev;
5476
5477         ata_for_each_link(link, ap, HOST_FIRST) {
5478                 ata_for_each_dev(adev, link, ENABLED)
5479                         if (adev->class == ATA_DEV_ATAPI &&
5480                             !zpodd_dev_enabled(adev))
5481                                 return -EBUSY;
5482         }
5483
5484         return 0;
5485 }
5486
5487 static int ata_port_runtime_suspend(struct device *dev)
5488 {
5489         ata_port_suspend(to_ata_port(dev), PMSG_AUTO_SUSPEND);
5490         return 0;
5491 }
5492
5493 static int ata_port_runtime_resume(struct device *dev)
5494 {
5495         ata_port_resume(to_ata_port(dev), PMSG_AUTO_RESUME);
5496         return 0;
5497 }
5498
5499 static const struct dev_pm_ops ata_port_pm_ops = {
5500         .suspend = ata_port_pm_suspend,
5501         .resume = ata_port_pm_resume,
5502         .freeze = ata_port_pm_freeze,
5503         .thaw = ata_port_pm_resume,
5504         .poweroff = ata_port_pm_poweroff,
5505         .restore = ata_port_pm_resume,
5506
5507         .runtime_suspend = ata_port_runtime_suspend,
5508         .runtime_resume = ata_port_runtime_resume,
5509         .runtime_idle = ata_port_runtime_idle,
5510 };
5511
5512 /* sas ports don't participate in pm runtime management of ata_ports,
5513  * and need to resume ata devices at the domain level, not the per-port
5514  * level. sas suspend/resume is async to allow parallel port recovery
5515  * since sas has multiple ata_port instances per Scsi_Host.
5516  */
5517 void ata_sas_port_suspend(struct ata_port *ap)
5518 {
5519         ata_port_suspend_async(ap, PMSG_SUSPEND);
5520 }
5521 EXPORT_SYMBOL_GPL(ata_sas_port_suspend);
5522
5523 void ata_sas_port_resume(struct ata_port *ap)
5524 {
5525         ata_port_resume_async(ap, PMSG_RESUME);
5526 }
5527 EXPORT_SYMBOL_GPL(ata_sas_port_resume);
5528
5529 /**
5530  *      ata_host_suspend - suspend host
5531  *      @host: host to suspend
5532  *      @mesg: PM message
5533  *
5534  *      Suspend @host.  Actual operation is performed by port suspend.
5535  */
5536 int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
5537 {
5538         host->dev->power.power_state = mesg;
5539         return 0;
5540 }
5541
5542 /**
5543  *      ata_host_resume - resume host
5544  *      @host: host to resume
5545  *
5546  *      Resume @host.  Actual operation is performed by port resume.
5547  */
5548 void ata_host_resume(struct ata_host *host)
5549 {
5550         host->dev->power.power_state = PMSG_ON;
5551 }
5552 #endif
5553
5554 struct device_type ata_port_type = {
5555         .name = "ata_port",
5556 #ifdef CONFIG_PM
5557         .pm = &ata_port_pm_ops,
5558 #endif
5559 };
5560
5561 /**
5562  *      ata_dev_init - Initialize an ata_device structure
5563  *      @dev: Device structure to initialize
5564  *
5565  *      Initialize @dev in preparation for probing.
5566  *
5567  *      LOCKING:
5568  *      Inherited from caller.
5569  */
5570 void ata_dev_init(struct ata_device *dev)
5571 {
5572         struct ata_link *link = ata_dev_phys_link(dev);
5573         struct ata_port *ap = link->ap;
5574         unsigned long flags;
5575
5576         /* SATA spd limit is bound to the attached device, reset together */
5577         link->sata_spd_limit = link->hw_sata_spd_limit;
5578         link->sata_spd = 0;
5579
5580         /* High bits of dev->flags are used to record warm plug
5581          * requests which occur asynchronously.  Synchronize using
5582          * host lock.
5583          */
5584         spin_lock_irqsave(ap->lock, flags);
5585         dev->flags &= ~ATA_DFLAG_INIT_MASK;
5586         dev->horkage = 0;
5587         spin_unlock_irqrestore(ap->lock, flags);
5588
5589         memset((void *)dev + ATA_DEVICE_CLEAR_BEGIN, 0,
5590                ATA_DEVICE_CLEAR_END - ATA_DEVICE_CLEAR_BEGIN);
5591         dev->pio_mask = UINT_MAX;
5592         dev->mwdma_mask = UINT_MAX;
5593         dev->udma_mask = UINT_MAX;
5594 }
5595
5596 /**
5597  *      ata_link_init - Initialize an ata_link structure
5598  *      @ap: ATA port link is attached to
5599  *      @link: Link structure to initialize
5600  *      @pmp: Port multiplier port number
5601  *
5602  *      Initialize @link.
5603  *
5604  *      LOCKING:
5605  *      Kernel thread context (may sleep)
5606  */
5607 void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
5608 {
5609         int i;
5610
5611         /* clear everything except for devices */
5612         memset((void *)link + ATA_LINK_CLEAR_BEGIN, 0,
5613                ATA_LINK_CLEAR_END - ATA_LINK_CLEAR_BEGIN);
5614
5615         link->ap = ap;
5616         link->pmp = pmp;
5617         link->active_tag = ATA_TAG_POISON;
5618         link->hw_sata_spd_limit = UINT_MAX;
5619
5620         /* can't use iterator, ap isn't initialized yet */
5621         for (i = 0; i < ATA_MAX_DEVICES; i++) {
5622                 struct ata_device *dev = &link->device[i];
5623
5624                 dev->link = link;
5625                 dev->devno = dev - link->device;
5626 #ifdef CONFIG_ATA_ACPI
5627                 dev->gtf_filter = ata_acpi_gtf_filter;
5628 #endif
5629                 ata_dev_init(dev);
5630         }
5631 }
5632
5633 /**
5634  *      sata_link_init_spd - Initialize link->sata_spd_limit
5635  *      @link: Link to configure sata_spd_limit for
5636  *
5637  *      Initialize @link->[hw_]sata_spd_limit to the currently
5638  *      configured value.
5639  *
5640  *      LOCKING:
5641  *      Kernel thread context (may sleep).
5642  *
5643  *      RETURNS:
5644  *      0 on success, -errno on failure.
5645  */
5646 int sata_link_init_spd(struct ata_link *link)
5647 {
5648         u8 spd;
5649         int rc;
5650
5651         rc = sata_scr_read(link, SCR_CONTROL, &link->saved_scontrol);
5652         if (rc)
5653                 return rc;
5654
5655         spd = (link->saved_scontrol >> 4) & 0xf;
5656         if (spd)
5657                 link->hw_sata_spd_limit &= (1 << spd) - 1;
5658
5659         ata_force_link_limits(link);
5660
5661         link->sata_spd_limit = link->hw_sata_spd_limit;
5662
5663         return 0;
5664 }
5665
5666 /**
5667  *      ata_port_alloc - allocate and initialize basic ATA port resources
5668  *      @host: ATA host this allocated port belongs to
5669  *
5670  *      Allocate and initialize basic ATA port resources.
5671  *
5672  *      RETURNS:
5673  *      Allocate ATA port on success, NULL on failure.
5674  *
5675  *      LOCKING:
5676  *      Inherited from calling layer (may sleep).
5677  */
5678 struct ata_port *ata_port_alloc(struct ata_host *host)
5679 {
5680         struct ata_port *ap;
5681
5682         DPRINTK("ENTER\n");
5683
5684         ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5685         if (!ap)
5686                 return NULL;
5687
5688         ap->pflags |= ATA_PFLAG_INITIALIZING | ATA_PFLAG_FROZEN;
5689         ap->lock = &host->lock;
5690         ap->print_id = -1;
5691         ap->local_port_no = -1;
5692         ap->host = host;
5693         ap->dev = host->dev;
5694
5695 #if defined(ATA_VERBOSE_DEBUG)
5696         /* turn on all debugging levels */
5697         ap->msg_enable = 0x00FF;
5698 #elif defined(ATA_DEBUG)
5699         ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
5700 #else
5701         ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
5702 #endif
5703
5704         mutex_init(&ap->scsi_scan_mutex);
5705         INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5706         INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
5707         INIT_LIST_HEAD(&ap->eh_done_q);
5708         init_waitqueue_head(&ap->eh_wait_q);
5709         init_completion(&ap->park_req_pending);
5710         init_timer_deferrable(&ap->fastdrain_timer);
5711         ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5712         ap->fastdrain_timer.data = (unsigned long)ap;
5713
5714         ap->cbl = ATA_CBL_NONE;
5715
5716         ata_link_init(ap, &ap->link, 0);
5717
5718 #ifdef ATA_IRQ_TRAP
5719         ap->stats.unhandled_irq = 1;
5720         ap->stats.idle_irq = 1;
5721 #endif
5722         ata_sff_port_init(ap);
5723
5724         return ap;
5725 }
5726
5727 static void ata_host_release(struct device *gendev, void *res)
5728 {
5729         struct ata_host *host = dev_get_drvdata(gendev);
5730         int i;
5731
5732         for (i = 0; i < host->n_ports; i++) {
5733                 struct ata_port *ap = host->ports[i];
5734
5735                 if (!ap)
5736                         continue;
5737
5738                 if (ap->scsi_host)
5739                         scsi_host_put(ap->scsi_host);
5740
5741                 kfree(ap->pmp_link);
5742                 kfree(ap->slave_link);
5743                 kfree(ap);
5744                 host->ports[i] = NULL;
5745         }
5746
5747         dev_set_drvdata(gendev, NULL);
5748 }
5749
5750 /**
5751  *      ata_host_alloc - allocate and init basic ATA host resources
5752  *      @dev: generic device this host is associated with
5753  *      @max_ports: maximum number of ATA ports associated with this host
5754  *
5755  *      Allocate and initialize basic ATA host resources.  LLD calls
5756  *      this function to allocate a host, initializes it fully and
5757  *      attaches it using ata_host_register().
5758  *
5759  *      @max_ports ports are allocated and host->n_ports is
5760  *      initialized to @max_ports.  The caller is allowed to decrease
5761  *      host->n_ports before calling ata_host_register().  The unused
5762  *      ports will be automatically freed on registration.
5763  *
5764  *      RETURNS:
5765  *      Allocate ATA host on success, NULL on failure.
5766  *
5767  *      LOCKING:
5768  *      Inherited from calling layer (may sleep).
5769  */
5770 struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5771 {
5772         struct ata_host *host;
5773         size_t sz;
5774         int i;
5775
5776         DPRINTK("ENTER\n");
5777
5778         if (!devres_open_group(dev, NULL, GFP_KERNEL))
5779                 return NULL;
5780
5781         /* alloc a container for our list of ATA ports (buses) */
5782         sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5783         /* alloc a container for our list of ATA ports (buses) */
5784         host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5785         if (!host)
5786                 goto err_out;
5787
5788         devres_add(dev, host);
5789         dev_set_drvdata(dev, host);
5790
5791         spin_lock_init(&host->lock);
5792         mutex_init(&host->eh_mutex);
5793         host->dev = dev;
5794         host->n_ports = max_ports;
5795
5796         /* allocate ports bound to this host */
5797         for (i = 0; i < max_ports; i++) {
5798                 struct ata_port *ap;
5799
5800                 ap = ata_port_alloc(host);
5801                 if (!ap)
5802                         goto err_out;
5803
5804                 ap->port_no = i;
5805                 host->ports[i] = ap;
5806         }
5807
5808         devres_remove_group(dev, NULL);
5809         return host;
5810
5811  err_out:
5812         devres_release_group(dev, NULL);
5813         return NULL;
5814 }
5815
5816 /**
5817  *      ata_host_alloc_pinfo - alloc host and init with port_info array
5818  *      @dev: generic device this host is associated with
5819  *      @ppi: array of ATA port_info to initialize host with
5820  *      @n_ports: number of ATA ports attached to this host
5821  *
5822  *      Allocate ATA host and initialize with info from @ppi.  If NULL
5823  *      terminated, @ppi may contain fewer entries than @n_ports.  The
5824  *      last entry will be used for the remaining ports.
5825  *
5826  *      RETURNS:
5827  *      Allocate ATA host on success, NULL on failure.
5828  *
5829  *      LOCKING:
5830  *      Inherited from calling layer (may sleep).
5831  */
5832 struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5833                                       const struct ata_port_info * const * ppi,
5834                                       int n_ports)
5835 {
5836         const struct ata_port_info *pi;
5837         struct ata_host *host;
5838         int i, j;
5839
5840         host = ata_host_alloc(dev, n_ports);
5841         if (!host)
5842                 return NULL;
5843
5844         for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5845                 struct ata_port *ap = host->ports[i];
5846
5847                 if (ppi[j])
5848                         pi = ppi[j++];
5849
5850                 ap->pio_mask = pi->pio_mask;
5851                 ap->mwdma_mask = pi->mwdma_mask;
5852                 ap->udma_mask = pi->udma_mask;
5853                 ap->flags |= pi->flags;
5854                 ap->link.flags |= pi->link_flags;
5855                 ap->ops = pi->port_ops;
5856
5857                 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5858                         host->ops = pi->port_ops;
5859         }
5860
5861         return host;
5862 }
5863
5864 /**
5865  *      ata_slave_link_init - initialize slave link
5866  *      @ap: port to initialize slave link for
5867  *
5868  *      Create and initialize slave link for @ap.  This enables slave
5869  *      link handling on the port.
5870  *
5871  *      In libata, a port contains links and a link contains devices.
5872  *      There is single host link but if a PMP is attached to it,
5873  *      there can be multiple fan-out links.  On SATA, there's usually
5874  *      a single device connected to a link but PATA and SATA
5875  *      controllers emulating TF based interface can have two - master
5876  *      and slave.
5877  *
5878  *      However, there are a few controllers which don't fit into this
5879  *      abstraction too well - SATA controllers which emulate TF
5880  *      interface with both master and slave devices but also have
5881  *      separate SCR register sets for each device.  These controllers
5882  *      need separate links for physical link handling
5883  *      (e.g. onlineness, link speed) but should be treated like a
5884  *      traditional M/S controller for everything else (e.g. command
5885  *      issue, softreset).
5886  *
5887  *      slave_link is libata's way of handling this class of
5888  *      controllers without impacting core layer too much.  For
5889  *      anything other than physical link handling, the default host
5890  *      link is used for both master and slave.  For physical link
5891  *      handling, separate @ap->slave_link is used.  All dirty details
5892  *      are implemented inside libata core layer.  From LLD's POV, the
5893  *      only difference is that prereset, hardreset and postreset are
5894  *      called once more for the slave link, so the reset sequence
5895  *      looks like the following.
5896  *
5897  *      prereset(M) -> prereset(S) -> hardreset(M) -> hardreset(S) ->
5898  *      softreset(M) -> postreset(M) -> postreset(S)
5899  *
5900  *      Note that softreset is called only for the master.  Softreset
5901  *      resets both M/S by definition, so SRST on master should handle
5902  *      both (the standard method will work just fine).
5903  *
5904  *      LOCKING:
5905  *      Should be called before host is registered.
5906  *
5907  *      RETURNS:
5908  *      0 on success, -errno on failure.
5909  */
5910 int ata_slave_link_init(struct ata_port *ap)
5911 {
5912         struct ata_link *link;
5913
5914         WARN_ON(ap->slave_link);
5915         WARN_ON(ap->flags & ATA_FLAG_PMP);
5916
5917         link = kzalloc(sizeof(*link), GFP_KERNEL);
5918         if (!link)
5919                 return -ENOMEM;
5920
5921         ata_link_init(ap, link, 1);
5922         ap->slave_link = link;
5923         return 0;
5924 }
5925
5926 static void ata_host_stop(struct device *gendev, void *res)
5927 {
5928         struct ata_host *host = dev_get_drvdata(gendev);
5929         int i;
5930
5931         WARN_ON(!(host->flags & ATA_HOST_STARTED));
5932
5933         for (i = 0; i < host->n_ports; i++) {
5934                 struct ata_port *ap = host->ports[i];
5935
5936                 if (ap->ops->port_stop)
5937                         ap->ops->port_stop(ap);
5938         }
5939
5940         if (host->ops->host_stop)
5941                 host->ops->host_stop(host);
5942 }
5943
5944 /**
5945  *      ata_finalize_port_ops - finalize ata_port_operations
5946  *      @ops: ata_port_operations to finalize
5947  *
5948  *      An ata_port_operations can inherit from another ops and that
5949  *      ops can again inherit from another.  This can go on as many
5950  *      times as necessary as long as there is no loop in the
5951  *      inheritance chain.
5952  *
5953  *      Ops tables are finalized when the host is started.  NULL or
5954  *      unspecified entries are inherited from the closet ancestor
5955  *      which has the method and the entry is populated with it.
5956  *      After finalization, the ops table directly points to all the
5957  *      methods and ->inherits is no longer necessary and cleared.
5958  *
5959  *      Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5960  *
5961  *      LOCKING:
5962  *      None.
5963  */
5964 static void ata_finalize_port_ops(struct ata_port_operations *ops)
5965 {
5966         static DEFINE_SPINLOCK(lock);
5967         const struct ata_port_operations *cur;
5968         void **begin = (void **)ops;
5969         void **end = (void **)&ops->inherits;
5970         void **pp;
5971
5972         if (!ops || !ops->inherits)
5973                 return;
5974
5975         spin_lock(&lock);
5976
5977         for (cur = ops->inherits; cur; cur = cur->inherits) {
5978                 void **inherit = (void **)cur;
5979
5980                 for (pp = begin; pp < end; pp++, inherit++)
5981                         if (!*pp)
5982                                 *pp = *inherit;
5983         }
5984
5985         for (pp = begin; pp < end; pp++)
5986                 if (IS_ERR(*pp))
5987                         *pp = NULL;
5988
5989         ops->inherits = NULL;
5990
5991         spin_unlock(&lock);
5992 }
5993
5994 /**
5995  *      ata_host_start - start and freeze ports of an ATA host
5996  *      @host: ATA host to start ports for
5997  *
5998  *      Start and then freeze ports of @host.  Started status is
5999  *      recorded in host->flags, so this function can be called
6000  *      multiple times.  Ports are guaranteed to get started only
6001  *      once.  If host->ops isn't initialized yet, its set to the
6002  *      first non-dummy port ops.
6003  *
6004  *      LOCKING:
6005  *      Inherited from calling layer (may sleep).
6006  *
6007  *      RETURNS:
6008  *      0 if all ports are started successfully, -errno otherwise.
6009  */
6010 int ata_host_start(struct ata_host *host)
6011 {
6012         int have_stop = 0;
6013         void *start_dr = NULL;
6014         int i, rc;
6015
6016         if (host->flags & ATA_HOST_STARTED)
6017                 return 0;
6018
6019         ata_finalize_port_ops(host->ops);
6020
6021         for (i = 0; i < host->n_ports; i++) {
6022                 struct ata_port *ap = host->ports[i];
6023
6024                 ata_finalize_port_ops(ap->ops);
6025
6026                 if (!host->ops && !ata_port_is_dummy(ap))
6027                         host->ops = ap->ops;
6028
6029                 if (ap->ops->port_stop)
6030                         have_stop = 1;
6031         }
6032
6033         if (host->ops && host->ops->host_stop)
6034                 have_stop = 1;
6035
6036         if (have_stop) {
6037                 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
6038                 if (!start_dr)
6039                         return -ENOMEM;
6040         }
6041
6042         for (i = 0; i < host->n_ports; i++) {
6043                 struct ata_port *ap = host->ports[i];
6044
6045                 if (ap->ops->port_start) {
6046                         rc = ap->ops->port_start(ap);
6047                         if (rc) {
6048                                 if (rc != -ENODEV)
6049                                         dev_err(host->dev,
6050                                                 "failed to start port %d (errno=%d)\n",
6051                                                 i, rc);
6052                                 goto err_out;
6053                         }
6054                 }
6055                 ata_eh_freeze_port(ap);
6056         }
6057
6058         if (start_dr)
6059                 devres_add(host->dev, start_dr);
6060         host->flags |= ATA_HOST_STARTED;
6061         return 0;
6062
6063  err_out:
6064         while (--i >= 0) {
6065                 struct ata_port *ap = host->ports[i];
6066
6067                 if (ap->ops->port_stop)
6068                         ap->ops->port_stop(ap);
6069         }
6070         devres_free(start_dr);
6071         return rc;
6072 }
6073
6074 /**
6075  *      ata_sas_host_init - Initialize a host struct for sas (ipr, libsas)
6076  *      @host:  host to initialize
6077  *      @dev:   device host is attached to
6078  *      @ops:   port_ops
6079  *
6080  */
6081 void ata_host_init(struct ata_host *host, struct device *dev,
6082                    struct ata_port_operations *ops)
6083 {
6084         spin_lock_init(&host->lock);
6085         mutex_init(&host->eh_mutex);
6086         host->n_tags = ATA_MAX_QUEUE - 1;
6087         host->dev = dev;
6088         host->ops = ops;
6089 }
6090
6091 void __ata_port_probe(struct ata_port *ap)
6092 {
6093         struct ata_eh_info *ehi = &ap->link.eh_info;
6094         unsigned long flags;
6095
6096         /* kick EH for boot probing */
6097         spin_lock_irqsave(ap->lock, flags);
6098
6099         ehi->probe_mask |= ATA_ALL_DEVICES;
6100         ehi->action |= ATA_EH_RESET;
6101         ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
6102
6103         ap->pflags &= ~ATA_PFLAG_INITIALIZING;
6104         ap->pflags |= ATA_PFLAG_LOADING;
6105         ata_port_schedule_eh(ap);
6106
6107         spin_unlock_irqrestore(ap->lock, flags);
6108 }
6109
6110 int ata_port_probe(struct ata_port *ap)
6111 {
6112         int rc = 0;
6113
6114         if (ap->ops->error_handler) {
6115                 __ata_port_probe(ap);
6116                 ata_port_wait_eh(ap);
6117         } else {
6118                 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
6119                 rc = ata_bus_probe(ap);
6120                 DPRINTK("ata%u: bus probe end\n", ap->print_id);
6121         }
6122         return rc;
6123 }
6124
6125
6126 static void async_port_probe(void *data, async_cookie_t cookie)
6127 {
6128         struct ata_port *ap = data;
6129
6130         /*
6131          * If we're not allowed to scan this host in parallel,
6132          * we need to wait until all previous scans have completed
6133          * before going further.
6134          * Jeff Garzik says this is only within a controller, so we
6135          * don't need to wait for port 0, only for later ports.
6136          */
6137         if (!(ap->host->flags & ATA_HOST_PARALLEL_SCAN) && ap->port_no != 0)
6138                 async_synchronize_cookie(cookie);
6139
6140         (void)ata_port_probe(ap);
6141
6142         /* in order to keep device order, we need to synchronize at this point */
6143         async_synchronize_cookie(cookie);
6144
6145         ata_scsi_scan_host(ap, 1);
6146 }
6147
6148 /**
6149  *      ata_host_register - register initialized ATA host
6150  *      @host: ATA host to register
6151  *      @sht: template for SCSI host
6152  *
6153  *      Register initialized ATA host.  @host is allocated using
6154  *      ata_host_alloc() and fully initialized by LLD.  This function
6155  *      starts ports, registers @host with ATA and SCSI layers and
6156  *      probe registered devices.
6157  *
6158  *      LOCKING:
6159  *      Inherited from calling layer (may sleep).
6160  *
6161  *      RETURNS:
6162  *      0 on success, -errno otherwise.
6163  */
6164 int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
6165 {
6166         int i, rc;
6167
6168         host->n_tags = clamp(sht->can_queue, 1, ATA_MAX_QUEUE - 1);
6169
6170         /* host must have been started */
6171         if (!(host->flags & ATA_HOST_STARTED)) {
6172                 dev_err(host->dev, "BUG: trying to register unstarted host\n");
6173                 WARN_ON(1);
6174                 return -EINVAL;
6175         }
6176
6177         /* Blow away unused ports.  This happens when LLD can't
6178          * determine the exact number of ports to allocate at
6179          * allocation time.
6180          */
6181         for (i = host->n_ports; host->ports[i]; i++)
6182                 kfree(host->ports[i]);
6183
6184         /* give ports names and add SCSI hosts */
6185         for (i = 0; i < host->n_ports; i++) {
6186                 host->ports[i]->print_id = atomic_inc_return(&ata_print_id);
6187                 host->ports[i]->local_port_no = i + 1;
6188         }
6189
6190         /* Create associated sysfs transport objects  */
6191         for (i = 0; i < host->n_ports; i++) {
6192                 rc = ata_tport_add(host->dev,host->ports[i]);
6193                 if (rc) {
6194                         goto err_tadd;
6195                 }
6196         }
6197
6198         rc = ata_scsi_add_hosts(host, sht);
6199         if (rc)
6200                 goto err_tadd;
6201
6202         /* set cable, sata_spd_limit and report */
6203         for (i = 0; i < host->n_ports; i++) {
6204                 struct ata_port *ap = host->ports[i];
6205                 unsigned long xfer_mask;
6206
6207                 /* set SATA cable type if still unset */
6208                 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6209                         ap->cbl = ATA_CBL_SATA;
6210
6211                 /* init sata_spd_limit to the current value */
6212                 sata_link_init_spd(&ap->link);
6213                 if (ap->slave_link)
6214                         sata_link_init_spd(ap->slave_link);
6215
6216                 /* print per-port info to dmesg */
6217                 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6218                                               ap->udma_mask);
6219
6220                 if (!ata_port_is_dummy(ap)) {
6221                         ata_port_info(ap, "%cATA max %s %s\n",
6222                                       (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
6223                                       ata_mode_string(xfer_mask),
6224                                       ap->link.eh_info.desc);
6225                         ata_ehi_clear_desc(&ap->link.eh_info);
6226                 } else
6227                         ata_port_info(ap, "DUMMY\n");
6228         }
6229
6230         /* perform each probe asynchronously */
6231         for (i = 0; i < host->n_ports; i++) {
6232                 struct ata_port *ap = host->ports[i];
6233                 ap->cookie = async_schedule(async_port_probe, ap);
6234         }
6235
6236         return 0;
6237
6238  err_tadd:
6239         while (--i >= 0) {
6240                 ata_tport_delete(host->ports[i]);
6241         }
6242         return rc;
6243
6244 }
6245
6246 /**
6247  *      ata_host_activate - start host, request IRQ and register it
6248  *      @host: target ATA host
6249  *      @irq: IRQ to request
6250  *      @irq_handler: irq_handler used when requesting IRQ
6251  *      @irq_flags: irq_flags used when requesting IRQ
6252  *      @sht: scsi_host_template to use when registering the host
6253  *
6254  *      After allocating an ATA host and initializing it, most libata
6255  *      LLDs perform three steps to activate the host - start host,
6256  *      request IRQ and register it.  This helper takes necessasry
6257  *      arguments and performs the three steps in one go.
6258  *
6259  *      An invalid IRQ skips the IRQ registration and expects the host to
6260  *      have set polling mode on the port. In this case, @irq_handler
6261  *      should be NULL.
6262  *
6263  *      LOCKING:
6264  *      Inherited from calling layer (may sleep).
6265  *
6266  *      RETURNS:
6267  *      0 on success, -errno otherwise.
6268  */
6269 int ata_host_activate(struct ata_host *host, int irq,
6270                       irq_handler_t irq_handler, unsigned long irq_flags,
6271                       struct scsi_host_template *sht)
6272 {
6273         int i, rc;
6274
6275         rc = ata_host_start(host);
6276         if (rc)
6277                 return rc;
6278
6279         /* Special case for polling mode */
6280         if (!irq) {
6281                 WARN_ON(irq_handler);
6282                 return ata_host_register(host, sht);
6283         }
6284
6285         rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6286                               dev_name(host->dev), host);
6287         if (rc)
6288                 return rc;
6289
6290         for (i = 0; i < host->n_ports; i++)
6291                 ata_port_desc(host->ports[i], "irq %d", irq);
6292
6293         rc = ata_host_register(host, sht);
6294         /* if failed, just free the IRQ and leave ports alone */
6295         if (rc)
6296                 devm_free_irq(host->dev, irq, host);
6297
6298         return rc;
6299 }
6300
6301 /**
6302  *      ata_port_detach - Detach ATA port in prepration of device removal
6303  *      @ap: ATA port to be detached
6304  *
6305  *      Detach all ATA devices and the associated SCSI devices of @ap;
6306  *      then, remove the associated SCSI host.  @ap is guaranteed to
6307  *      be quiescent on return from this function.
6308  *
6309  *      LOCKING:
6310  *      Kernel thread context (may sleep).
6311  */
6312 static void ata_port_detach(struct ata_port *ap)
6313 {
6314         unsigned long flags;
6315         struct ata_link *link;
6316         struct ata_device *dev;
6317
6318         if (!ap->ops->error_handler)
6319                 goto skip_eh;
6320
6321         /* tell EH we're leaving & flush EH */
6322         spin_lock_irqsave(ap->lock, flags);
6323         ap->pflags |= ATA_PFLAG_UNLOADING;
6324         ata_port_schedule_eh(ap);
6325         spin_unlock_irqrestore(ap->lock, flags);
6326
6327         /* wait till EH commits suicide */
6328         ata_port_wait_eh(ap);
6329
6330         /* it better be dead now */
6331         WARN_ON(!(ap->pflags & ATA_PFLAG_UNLOADED));
6332
6333         cancel_delayed_work_sync(&ap->hotplug_task);
6334
6335  skip_eh:
6336         /* clean up zpodd on port removal */
6337         ata_for_each_link(link, ap, HOST_FIRST) {
6338                 ata_for_each_dev(dev, link, ALL) {
6339                         if (zpodd_dev_enabled(dev))
6340                                 zpodd_exit(dev);
6341                 }
6342         }
6343         if (ap->pmp_link) {
6344                 int i;
6345                 for (i = 0; i < SATA_PMP_MAX_PORTS; i++)
6346                         ata_tlink_delete(&ap->pmp_link[i]);
6347         }
6348         /* remove the associated SCSI host */
6349         scsi_remove_host(ap->scsi_host);
6350         ata_tport_delete(ap);
6351 }
6352
6353 /**
6354  *      ata_host_detach - Detach all ports of an ATA host
6355  *      @host: Host to detach
6356  *
6357  *      Detach all ports of @host.
6358  *
6359  *      LOCKING:
6360  *      Kernel thread context (may sleep).
6361  */
6362 void ata_host_detach(struct ata_host *host)
6363 {
6364         int i;
6365
6366         for (i = 0; i < host->n_ports; i++) {
6367                 /* Ensure ata_port probe has completed */
6368                 async_synchronize_cookie(host->ports[i]->cookie + 1);
6369                 ata_port_detach(host->ports[i]);
6370         }
6371
6372         /* the host is dead now, dissociate ACPI */
6373         ata_acpi_dissociate(host);
6374 }
6375
6376 #ifdef CONFIG_PCI
6377
6378 /**
6379  *      ata_pci_remove_one - PCI layer callback for device removal
6380  *      @pdev: PCI device that was removed
6381  *
6382  *      PCI layer indicates to libata via this hook that hot-unplug or
6383  *      module unload event has occurred.  Detach all ports.  Resource
6384  *      release is handled via devres.
6385  *
6386  *      LOCKING:
6387  *      Inherited from PCI layer (may sleep).
6388  */
6389 void ata_pci_remove_one(struct pci_dev *pdev)
6390 {
6391         struct ata_host *host = pci_get_drvdata(pdev);
6392
6393         ata_host_detach(host);
6394 }
6395
6396 /* move to PCI subsystem */
6397 int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
6398 {
6399         unsigned long tmp = 0;
6400
6401         switch (bits->width) {
6402         case 1: {
6403                 u8 tmp8 = 0;
6404                 pci_read_config_byte(pdev, bits->reg, &tmp8);
6405                 tmp = tmp8;
6406                 break;
6407         }
6408         case 2: {
6409                 u16 tmp16 = 0;
6410                 pci_read_config_word(pdev, bits->reg, &tmp16);
6411                 tmp = tmp16;
6412                 break;
6413         }
6414         case 4: {
6415                 u32 tmp32 = 0;
6416                 pci_read_config_dword(pdev, bits->reg, &tmp32);
6417                 tmp = tmp32;
6418                 break;
6419         }
6420
6421         default:
6422                 return -EINVAL;
6423         }
6424
6425         tmp &= bits->mask;
6426
6427         return (tmp == bits->val) ? 1 : 0;
6428 }
6429
6430 #ifdef CONFIG_PM
6431 void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
6432 {
6433         pci_save_state(pdev);
6434         pci_disable_device(pdev);
6435
6436         if (mesg.event & PM_EVENT_SLEEP)
6437                 pci_set_power_state(pdev, PCI_D3hot);
6438 }
6439
6440 int ata_pci_device_do_resume(struct pci_dev *pdev)
6441 {
6442         int rc;
6443
6444         pci_set_power_state(pdev, PCI_D0);
6445         pci_restore_state(pdev);
6446
6447         rc = pcim_enable_device(pdev);
6448         if (rc) {
6449                 dev_err(&pdev->dev,
6450                         "failed to enable device after resume (%d)\n", rc);
6451                 return rc;
6452         }
6453
6454         pci_set_master(pdev);
6455         return 0;
6456 }
6457
6458 int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
6459 {
6460         struct ata_host *host = pci_get_drvdata(pdev);
6461         int rc = 0;
6462
6463         rc = ata_host_suspend(host, mesg);
6464         if (rc)
6465                 return rc;
6466
6467         ata_pci_device_do_suspend(pdev, mesg);
6468
6469         return 0;
6470 }
6471
6472 int ata_pci_device_resume(struct pci_dev *pdev)
6473 {
6474         struct ata_host *host = pci_get_drvdata(pdev);
6475         int rc;
6476
6477         rc = ata_pci_device_do_resume(pdev);
6478         if (rc == 0)
6479                 ata_host_resume(host);
6480         return rc;
6481 }
6482 #endif /* CONFIG_PM */
6483
6484 #endif /* CONFIG_PCI */
6485
6486 /**
6487  *      ata_platform_remove_one - Platform layer callback for device removal
6488  *      @pdev: Platform device that was removed
6489  *
6490  *      Platform layer indicates to libata via this hook that hot-unplug or
6491  *      module unload event has occurred.  Detach all ports.  Resource
6492  *      release is handled via devres.
6493  *
6494  *      LOCKING:
6495  *      Inherited from platform layer (may sleep).
6496  */
6497 int ata_platform_remove_one(struct platform_device *pdev)
6498 {
6499         struct ata_host *host = platform_get_drvdata(pdev);
6500
6501         ata_host_detach(host);
6502
6503         return 0;
6504 }
6505
6506 static int __init ata_parse_force_one(char **cur,
6507                                       struct ata_force_ent *force_ent,
6508                                       const char **reason)
6509 {
6510         static const struct ata_force_param force_tbl[] __initconst = {
6511                 { "40c",        .cbl            = ATA_CBL_PATA40 },
6512                 { "80c",        .cbl            = ATA_CBL_PATA80 },
6513                 { "short40c",   .cbl            = ATA_CBL_PATA40_SHORT },
6514                 { "unk",        .cbl            = ATA_CBL_PATA_UNK },
6515                 { "ign",        .cbl            = ATA_CBL_PATA_IGN },
6516                 { "sata",       .cbl            = ATA_CBL_SATA },
6517                 { "1.5Gbps",    .spd_limit      = 1 },
6518                 { "3.0Gbps",    .spd_limit      = 2 },
6519                 { "noncq",      .horkage_on     = ATA_HORKAGE_NONCQ },
6520                 { "ncq",        .horkage_off    = ATA_HORKAGE_NONCQ },
6521                 { "noncqtrim",  .horkage_on     = ATA_HORKAGE_NO_NCQ_TRIM },
6522                 { "ncqtrim",    .horkage_off    = ATA_HORKAGE_NO_NCQ_TRIM },
6523                 { "dump_id",    .horkage_on     = ATA_HORKAGE_DUMP_ID },
6524                 { "pio0",       .xfer_mask      = 1 << (ATA_SHIFT_PIO + 0) },
6525                 { "pio1",       .xfer_mask      = 1 << (ATA_SHIFT_PIO + 1) },
6526                 { "pio2",       .xfer_mask      = 1 << (ATA_SHIFT_PIO + 2) },
6527                 { "pio3",       .xfer_mask      = 1 << (ATA_SHIFT_PIO + 3) },
6528                 { "pio4",       .xfer_mask      = 1 << (ATA_SHIFT_PIO + 4) },
6529                 { "pio5",       .xfer_mask      = 1 << (ATA_SHIFT_PIO + 5) },
6530                 { "pio6",       .xfer_mask      = 1 << (ATA_SHIFT_PIO + 6) },
6531                 { "mwdma0",     .xfer_mask      = 1 << (ATA_SHIFT_MWDMA + 0) },
6532                 { "mwdma1",     .xfer_mask      = 1 << (ATA_SHIFT_MWDMA + 1) },
6533                 { "mwdma2",     .xfer_mask      = 1 << (ATA_SHIFT_MWDMA + 2) },
6534                 { "mwdma3",     .xfer_mask      = 1 << (ATA_SHIFT_MWDMA + 3) },
6535                 { "mwdma4",     .xfer_mask      = 1 << (ATA_SHIFT_MWDMA + 4) },
6536                 { "udma0",      .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 0) },
6537                 { "udma16",     .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 0) },
6538                 { "udma/16",    .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 0) },
6539                 { "udma1",      .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 1) },
6540                 { "udma25",     .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 1) },
6541                 { "udma/25",    .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 1) },
6542                 { "udma2",      .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 2) },
6543                 { "udma33",     .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 2) },
6544                 { "udma/33",    .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 2) },
6545                 { "udma3",      .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 3) },
6546                 { "udma44",     .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 3) },
6547                 { "udma/44",    .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 3) },
6548                 { "udma4",      .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 4) },
6549                 { "udma66",     .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 4) },
6550                 { "udma/66",    .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 4) },
6551                 { "udma5",      .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 5) },
6552                 { "udma100",    .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 5) },
6553                 { "udma/100",   .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 5) },
6554                 { "udma6",      .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 6) },
6555                 { "udma133",    .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 6) },
6556                 { "udma/133",   .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 6) },
6557                 { "udma7",      .xfer_mask      = 1 << (ATA_SHIFT_UDMA + 7) },
6558                 { "nohrst",     .lflags         = ATA_LFLAG_NO_HRST },
6559                 { "nosrst",     .lflags         = ATA_LFLAG_NO_SRST },
6560                 { "norst",      .lflags         = ATA_LFLAG_NO_HRST | ATA_LFLAG_NO_SRST },
6561                 { "rstonce",    .lflags         = ATA_LFLAG_RST_ONCE },
6562                 { "atapi_dmadir", .horkage_on   = ATA_HORKAGE_ATAPI_DMADIR },
6563                 { "disable",    .horkage_on     = ATA_HORKAGE_DISABLE },
6564         };
6565         char *start = *cur, *p = *cur;
6566         char *id, *val, *endp;
6567         const struct ata_force_param *match_fp = NULL;
6568         int nr_matches = 0, i;
6569
6570         /* find where this param ends and update *cur */
6571         while (*p != '\0' && *p != ',')
6572                 p++;
6573
6574         if (*p == '\0')
6575                 *cur = p;
6576         else
6577                 *cur = p + 1;
6578
6579         *p = '\0';
6580
6581         /* parse */
6582         p = strchr(start, ':');
6583         if (!p) {
6584                 val = strstrip(start);
6585                 goto parse_val;
6586         }
6587         *p = '\0';
6588
6589         id = strstrip(start);
6590         val = strstrip(p + 1);
6591
6592         /* parse id */
6593         p = strchr(id, '.');
6594         if (p) {
6595                 *p++ = '\0';
6596                 force_ent->device = simple_strtoul(p, &endp, 10);
6597                 if (p == endp || *endp != '\0') {
6598                         *reason = "invalid device";
6599                         return -EINVAL;
6600                 }
6601         }
6602
6603         force_ent->port = simple_strtoul(id, &endp, 10);
6604         if (p == endp || *endp != '\0') {
6605                 *reason = "invalid port/link";
6606                 return -EINVAL;
6607         }
6608
6609  parse_val:
6610         /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
6611         for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
6612                 const struct ata_force_param *fp = &force_tbl[i];
6613
6614                 if (strncasecmp(val, fp->name, strlen(val)))
6615                         continue;
6616
6617                 nr_matches++;
6618                 match_fp = fp;
6619
6620                 if (strcasecmp(val, fp->name) == 0) {
6621                         nr_matches = 1;
6622                         break;
6623                 }
6624         }
6625
6626         if (!nr_matches) {
6627                 *reason = "unknown value";
6628                 return -EINVAL;
6629         }
6630         if (nr_matches > 1) {
6631                 *reason = "ambigious value";
6632                 return -EINVAL;
6633         }
6634
6635         force_ent->param = *match_fp;
6636
6637         return 0;
6638 }
6639
6640 static void __init ata_parse_force_param(void)
6641 {
6642         int idx = 0, size = 1;
6643         int last_port = -1, last_device = -1;
6644         char *p, *cur, *next;
6645
6646         /* calculate maximum number of params and allocate force_tbl */
6647         for (p = ata_force_param_buf; *p; p++)
6648                 if (*p == ',')
6649                         size++;
6650
6651         ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
6652         if (!ata_force_tbl) {
6653                 printk(KERN_WARNING "ata: failed to extend force table, "
6654                        "libata.force ignored\n");
6655                 return;
6656         }
6657
6658         /* parse and populate the table */
6659         for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
6660                 const char *reason = "";
6661                 struct ata_force_ent te = { .port = -1, .device = -1 };
6662
6663                 next = cur;
6664                 if (ata_parse_force_one(&next, &te, &reason)) {
6665                         printk(KERN_WARNING "ata: failed to parse force "
6666                                "parameter \"%s\" (%s)\n",
6667                                cur, reason);
6668                         continue;
6669                 }
6670
6671                 if (te.port == -1) {
6672                         te.port = last_port;
6673                         te.device = last_device;
6674                 }
6675
6676                 ata_force_tbl[idx++] = te;
6677
6678                 last_port = te.port;
6679                 last_device = te.device;
6680         }
6681
6682         ata_force_tbl_size = idx;
6683 }
6684
6685 static int __init ata_init(void)
6686 {
6687         int rc;
6688
6689         ata_parse_force_param();
6690
6691         rc = ata_sff_init();
6692         if (rc) {
6693                 kfree(ata_force_tbl);
6694                 return rc;
6695         }
6696
6697         libata_transport_init();
6698         ata_scsi_transport_template = ata_attach_transport();
6699         if (!ata_scsi_transport_template) {
6700                 ata_sff_exit();
6701                 rc = -ENOMEM;
6702                 goto err_out;
6703         }
6704
6705         printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6706         return 0;
6707
6708 err_out:
6709         return rc;
6710 }
6711
6712 static void __exit ata_exit(void)
6713 {
6714         ata_release_transport(ata_scsi_transport_template);
6715         libata_transport_exit();
6716         ata_sff_exit();
6717         kfree(ata_force_tbl);
6718 }
6719
6720 subsys_initcall(ata_init);
6721 module_exit(ata_exit);
6722
6723 static DEFINE_RATELIMIT_STATE(ratelimit, HZ / 5, 1);
6724
6725 int ata_ratelimit(void)
6726 {
6727         return __ratelimit(&ratelimit);
6728 }
6729
6730 /**
6731  *      ata_msleep - ATA EH owner aware msleep
6732  *      @ap: ATA port to attribute the sleep to
6733  *      @msecs: duration to sleep in milliseconds
6734  *
6735  *      Sleeps @msecs.  If the current task is owner of @ap's EH, the
6736  *      ownership is released before going to sleep and reacquired
6737  *      after the sleep is complete.  IOW, other ports sharing the
6738  *      @ap->host will be allowed to own the EH while this task is
6739  *      sleeping.
6740  *
6741  *      LOCKING:
6742  *      Might sleep.
6743  */
6744 void ata_msleep(struct ata_port *ap, unsigned int msecs)
6745 {
6746         bool owns_eh = ap && ap->host->eh_owner == current;
6747
6748         if (owns_eh)
6749                 ata_eh_release(ap);
6750
6751         msleep(msecs);
6752
6753         if (owns_eh)
6754                 ata_eh_acquire(ap);
6755 }
6756
6757 /**
6758  *      ata_wait_register - wait until register value changes
6759  *      @ap: ATA port to wait register for, can be NULL
6760  *      @reg: IO-mapped register
6761  *      @mask: Mask to apply to read register value
6762  *      @val: Wait condition
6763  *      @interval: polling interval in milliseconds
6764  *      @timeout: timeout in milliseconds
6765  *
6766  *      Waiting for some bits of register to change is a common
6767  *      operation for ATA controllers.  This function reads 32bit LE
6768  *      IO-mapped register @reg and tests for the following condition.
6769  *
6770  *      (*@reg & mask) != val
6771  *
6772  *      If the condition is met, it returns; otherwise, the process is
6773  *      repeated after @interval_msec until timeout.
6774  *
6775  *      LOCKING:
6776  *      Kernel thread context (may sleep)
6777  *
6778  *      RETURNS:
6779  *      The final register value.
6780  */
6781 u32 ata_wait_register(struct ata_port *ap, void __iomem *reg, u32 mask, u32 val,
6782                       unsigned long interval, unsigned long timeout)
6783 {
6784         unsigned long deadline;
6785         u32 tmp;
6786
6787         tmp = ioread32(reg);
6788
6789         /* Calculate timeout _after_ the first read to make sure
6790          * preceding writes reach the controller before starting to
6791          * eat away the timeout.
6792          */
6793         deadline = ata_deadline(jiffies, timeout);
6794
6795         while ((tmp & mask) == val && time_before(jiffies, deadline)) {
6796                 ata_msleep(ap, interval);
6797                 tmp = ioread32(reg);
6798         }
6799
6800         return tmp;
6801 }
6802
6803 /**
6804  *      sata_lpm_ignore_phy_events - test if PHY event should be ignored
6805  *      @link: Link receiving the event
6806  *
6807  *      Test whether the received PHY event has to be ignored or not.
6808  *
6809  *      LOCKING:
6810  *      None:
6811  *
6812  *      RETURNS:
6813  *      True if the event has to be ignored.
6814  */
6815 bool sata_lpm_ignore_phy_events(struct ata_link *link)
6816 {
6817         unsigned long lpm_timeout = link->last_lpm_change +
6818                                     msecs_to_jiffies(ATA_TMOUT_SPURIOUS_PHY);
6819
6820         /* if LPM is enabled, PHYRDY doesn't mean anything */
6821         if (link->lpm_policy > ATA_LPM_MAX_POWER)
6822                 return true;
6823
6824         /* ignore the first PHY event after the LPM policy changed
6825          * as it is might be spurious
6826          */
6827         if ((link->flags & ATA_LFLAG_CHANGED) &&
6828             time_before(jiffies, lpm_timeout))
6829                 return true;
6830
6831         return false;
6832 }
6833 EXPORT_SYMBOL_GPL(sata_lpm_ignore_phy_events);
6834
6835 /*
6836  * Dummy port_ops
6837  */
6838 static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6839 {
6840         return AC_ERR_SYSTEM;
6841 }
6842
6843 static void ata_dummy_error_handler(struct ata_port *ap)
6844 {
6845         /* truly dummy */
6846 }
6847
6848 struct ata_port_operations ata_dummy_port_ops = {
6849         .qc_prep                = ata_noop_qc_prep,
6850         .qc_issue               = ata_dummy_qc_issue,
6851         .error_handler          = ata_dummy_error_handler,
6852         .sched_eh               = ata_std_sched_eh,
6853         .end_eh                 = ata_std_end_eh,
6854 };
6855
6856 const struct ata_port_info ata_dummy_port_info = {
6857         .port_ops               = &ata_dummy_port_ops,
6858 };
6859
6860 /*
6861  * Utility print functions
6862  */
6863 void ata_port_printk(const struct ata_port *ap, const char *level,
6864                      const char *fmt, ...)
6865 {
6866         struct va_format vaf;
6867         va_list args;
6868
6869         va_start(args, fmt);
6870
6871         vaf.fmt = fmt;
6872         vaf.va = &args;
6873
6874         printk("%sata%u: %pV", level, ap->print_id, &vaf);
6875
6876         va_end(args);
6877 }
6878 EXPORT_SYMBOL(ata_port_printk);
6879
6880 void ata_link_printk(const struct ata_link *link, const char *level,
6881                      const char *fmt, ...)
6882 {
6883         struct va_format vaf;
6884         va_list args;
6885
6886         va_start(args, fmt);
6887
6888         vaf.fmt = fmt;
6889         vaf.va = &args;
6890
6891         if (sata_pmp_attached(link->ap) || link->ap->slave_link)
6892                 printk("%sata%u.%02u: %pV",
6893                        level, link->ap->print_id, link->pmp, &vaf);
6894         else
6895                 printk("%sata%u: %pV",
6896                        level, link->ap->print_id, &vaf);
6897
6898         va_end(args);
6899 }
6900 EXPORT_SYMBOL(ata_link_printk);
6901
6902 void ata_dev_printk(const struct ata_device *dev, const char *level,
6903                     const char *fmt, ...)
6904 {
6905         struct va_format vaf;
6906         va_list args;
6907
6908         va_start(args, fmt);
6909
6910         vaf.fmt = fmt;
6911         vaf.va = &args;
6912
6913         printk("%sata%u.%02u: %pV",
6914                level, dev->link->ap->print_id, dev->link->pmp + dev->devno,
6915                &vaf);
6916
6917         va_end(args);
6918 }
6919 EXPORT_SYMBOL(ata_dev_printk);
6920
6921 void ata_print_version(const struct device *dev, const char *version)
6922 {
6923         dev_printk(KERN_DEBUG, dev, "version %s\n", version);
6924 }
6925 EXPORT_SYMBOL(ata_print_version);
6926
6927 /*
6928  * libata is essentially a library of internal helper functions for
6929  * low-level ATA host controller drivers.  As such, the API/ABI is
6930  * likely to change as new drivers are added and updated.
6931  * Do not depend on ABI/API stability.
6932  */
6933 EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6934 EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6935 EXPORT_SYMBOL_GPL(sata_deb_timing_long);
6936 EXPORT_SYMBOL_GPL(ata_base_port_ops);
6937 EXPORT_SYMBOL_GPL(sata_port_ops);
6938 EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
6939 EXPORT_SYMBOL_GPL(ata_dummy_port_info);
6940 EXPORT_SYMBOL_GPL(ata_link_next);
6941 EXPORT_SYMBOL_GPL(ata_dev_next);
6942 EXPORT_SYMBOL_GPL(ata_std_bios_param);
6943 EXPORT_SYMBOL_GPL(ata_scsi_unlock_native_capacity);
6944 EXPORT_SYMBOL_GPL(ata_host_init);
6945 EXPORT_SYMBOL_GPL(ata_host_alloc);
6946 EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
6947 EXPORT_SYMBOL_GPL(ata_slave_link_init);
6948 EXPORT_SYMBOL_GPL(ata_host_start);
6949 EXPORT_SYMBOL_GPL(ata_host_register);
6950 EXPORT_SYMBOL_GPL(ata_host_activate);
6951 EXPORT_SYMBOL_GPL(ata_host_detach);
6952 EXPORT_SYMBOL_GPL(ata_sg_init);
6953 EXPORT_SYMBOL_GPL(ata_qc_complete);
6954 EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
6955 EXPORT_SYMBOL_GPL(atapi_cmd_type);
6956 EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6957 EXPORT_SYMBOL_GPL(ata_tf_from_fis);
6958 EXPORT_SYMBOL_GPL(ata_pack_xfermask);
6959 EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
6960 EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
6961 EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
6962 EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
6963 EXPORT_SYMBOL_GPL(ata_mode_string);
6964 EXPORT_SYMBOL_GPL(ata_id_xfermask);
6965 EXPORT_SYMBOL_GPL(ata_do_set_mode);
6966 EXPORT_SYMBOL_GPL(ata_std_qc_defer);
6967 EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
6968 EXPORT_SYMBOL_GPL(ata_dev_disable);
6969 EXPORT_SYMBOL_GPL(sata_set_spd);
6970 EXPORT_SYMBOL_GPL(ata_wait_after_reset);
6971 EXPORT_SYMBOL_GPL(sata_link_debounce);
6972 EXPORT_SYMBOL_GPL(sata_link_resume);
6973 EXPORT_SYMBOL_GPL(sata_link_scr_lpm);
6974 EXPORT_SYMBOL_GPL(ata_std_prereset);
6975 EXPORT_SYMBOL_GPL(sata_link_hardreset);
6976 EXPORT_SYMBOL_GPL(sata_std_hardreset);
6977 EXPORT_SYMBOL_GPL(ata_std_postreset);
6978 EXPORT_SYMBOL_GPL(ata_dev_classify);
6979 EXPORT_SYMBOL_GPL(ata_dev_pair);
6980 EXPORT_SYMBOL_GPL(ata_ratelimit);
6981 EXPORT_SYMBOL_GPL(ata_msleep);
6982 EXPORT_SYMBOL_GPL(ata_wait_register);
6983 EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
6984 EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
6985 EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
6986 EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
6987 EXPORT_SYMBOL_GPL(__ata_change_queue_depth);
6988 EXPORT_SYMBOL_GPL(sata_scr_valid);
6989 EXPORT_SYMBOL_GPL(sata_scr_read);
6990 EXPORT_SYMBOL_GPL(sata_scr_write);
6991 EXPORT_SYMBOL_GPL(sata_scr_write_flush);
6992 EXPORT_SYMBOL_GPL(ata_link_online);
6993 EXPORT_SYMBOL_GPL(ata_link_offline);
6994 #ifdef CONFIG_PM
6995 EXPORT_SYMBOL_GPL(ata_host_suspend);
6996 EXPORT_SYMBOL_GPL(ata_host_resume);
6997 #endif /* CONFIG_PM */
6998 EXPORT_SYMBOL_GPL(ata_id_string);
6999 EXPORT_SYMBOL_GPL(ata_id_c_string);
7000 EXPORT_SYMBOL_GPL(ata_do_dev_read_id);
7001 EXPORT_SYMBOL_GPL(ata_scsi_simulate);
7002
7003 EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
7004 EXPORT_SYMBOL_GPL(ata_timing_find_mode);
7005 EXPORT_SYMBOL_GPL(ata_timing_compute);
7006 EXPORT_SYMBOL_GPL(ata_timing_merge);
7007 EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
7008
7009 #ifdef CONFIG_PCI
7010 EXPORT_SYMBOL_GPL(pci_test_config_bits);
7011 EXPORT_SYMBOL_GPL(ata_pci_remove_one);
7012 #ifdef CONFIG_PM
7013 EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
7014 EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
7015 EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
7016 EXPORT_SYMBOL_GPL(ata_pci_device_resume);
7017 #endif /* CONFIG_PM */
7018 #endif /* CONFIG_PCI */
7019
7020 EXPORT_SYMBOL_GPL(ata_platform_remove_one);
7021
7022 EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
7023 EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
7024 EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
7025 EXPORT_SYMBOL_GPL(ata_port_desc);
7026 #ifdef CONFIG_PCI
7027 EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
7028 #endif /* CONFIG_PCI */
7029 EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
7030 EXPORT_SYMBOL_GPL(ata_link_abort);
7031 EXPORT_SYMBOL_GPL(ata_port_abort);
7032 EXPORT_SYMBOL_GPL(ata_port_freeze);
7033 EXPORT_SYMBOL_GPL(sata_async_notification);
7034 EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
7035 EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
7036 EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
7037 EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
7038 EXPORT_SYMBOL_GPL(ata_eh_analyze_ncq_error);
7039 EXPORT_SYMBOL_GPL(ata_do_eh);
7040 EXPORT_SYMBOL_GPL(ata_std_error_handler);
7041
7042 EXPORT_SYMBOL_GPL(ata_cable_40wire);
7043 EXPORT_SYMBOL_GPL(ata_cable_80wire);
7044 EXPORT_SYMBOL_GPL(ata_cable_unknown);
7045 EXPORT_SYMBOL_GPL(ata_cable_ignore);
7046 EXPORT_SYMBOL_GPL(ata_cable_sata);