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