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