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