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