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