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