[PATCH] libata: kill E.D.D.
[safe/jmp/linux-2.6] / drivers / scsi / 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/config.h>
36 #include <linux/kernel.h>
37 #include <linux/module.h>
38 #include <linux/pci.h>
39 #include <linux/init.h>
40 #include <linux/list.h>
41 #include <linux/mm.h>
42 #include <linux/highmem.h>
43 #include <linux/spinlock.h>
44 #include <linux/blkdev.h>
45 #include <linux/delay.h>
46 #include <linux/timer.h>
47 #include <linux/interrupt.h>
48 #include <linux/completion.h>
49 #include <linux/suspend.h>
50 #include <linux/workqueue.h>
51 #include <linux/jiffies.h>
52 #include <linux/scatterlist.h>
53 #include <scsi/scsi.h>
54 #include "scsi_priv.h"
55 #include <scsi/scsi_cmnd.h>
56 #include <scsi/scsi_host.h>
57 #include <linux/libata.h>
58 #include <asm/io.h>
59 #include <asm/semaphore.h>
60 #include <asm/byteorder.h>
61
62 #include "libata.h"
63
64 static unsigned int ata_dev_init_params(struct ata_port *ap,
65                                         struct ata_device *dev);
66 static void ata_set_mode(struct ata_port *ap);
67 static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
68                                          struct ata_device *dev);
69 static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev);
70
71 static unsigned int ata_unique_id = 1;
72 static struct workqueue_struct *ata_wq;
73
74 int atapi_enabled = 1;
75 module_param(atapi_enabled, int, 0444);
76 MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
77
78 int libata_fua = 0;
79 module_param_named(fua, libata_fua, int, 0444);
80 MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
81
82 MODULE_AUTHOR("Jeff Garzik");
83 MODULE_DESCRIPTION("Library module for ATA devices");
84 MODULE_LICENSE("GPL");
85 MODULE_VERSION(DRV_VERSION);
86
87
88 /**
89  *      ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
90  *      @tf: Taskfile to convert
91  *      @fis: Buffer into which data will output
92  *      @pmp: Port multiplier port
93  *
94  *      Converts a standard ATA taskfile to a Serial ATA
95  *      FIS structure (Register - Host to Device).
96  *
97  *      LOCKING:
98  *      Inherited from caller.
99  */
100
101 void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
102 {
103         fis[0] = 0x27;  /* Register - Host to Device FIS */
104         fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
105                                             bit 7 indicates Command FIS */
106         fis[2] = tf->command;
107         fis[3] = tf->feature;
108
109         fis[4] = tf->lbal;
110         fis[5] = tf->lbam;
111         fis[6] = tf->lbah;
112         fis[7] = tf->device;
113
114         fis[8] = tf->hob_lbal;
115         fis[9] = tf->hob_lbam;
116         fis[10] = tf->hob_lbah;
117         fis[11] = tf->hob_feature;
118
119         fis[12] = tf->nsect;
120         fis[13] = tf->hob_nsect;
121         fis[14] = 0;
122         fis[15] = tf->ctl;
123
124         fis[16] = 0;
125         fis[17] = 0;
126         fis[18] = 0;
127         fis[19] = 0;
128 }
129
130 /**
131  *      ata_tf_from_fis - Convert SATA FIS to ATA taskfile
132  *      @fis: Buffer from which data will be input
133  *      @tf: Taskfile to output
134  *
135  *      Converts a serial ATA FIS structure to a standard ATA taskfile.
136  *
137  *      LOCKING:
138  *      Inherited from caller.
139  */
140
141 void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
142 {
143         tf->command     = fis[2];       /* status */
144         tf->feature     = fis[3];       /* error */
145
146         tf->lbal        = fis[4];
147         tf->lbam        = fis[5];
148         tf->lbah        = fis[6];
149         tf->device      = fis[7];
150
151         tf->hob_lbal    = fis[8];
152         tf->hob_lbam    = fis[9];
153         tf->hob_lbah    = fis[10];
154
155         tf->nsect       = fis[12];
156         tf->hob_nsect   = fis[13];
157 }
158
159 static const u8 ata_rw_cmds[] = {
160         /* pio multi */
161         ATA_CMD_READ_MULTI,
162         ATA_CMD_WRITE_MULTI,
163         ATA_CMD_READ_MULTI_EXT,
164         ATA_CMD_WRITE_MULTI_EXT,
165         0,
166         0,
167         0,
168         ATA_CMD_WRITE_MULTI_FUA_EXT,
169         /* pio */
170         ATA_CMD_PIO_READ,
171         ATA_CMD_PIO_WRITE,
172         ATA_CMD_PIO_READ_EXT,
173         ATA_CMD_PIO_WRITE_EXT,
174         0,
175         0,
176         0,
177         0,
178         /* dma */
179         ATA_CMD_READ,
180         ATA_CMD_WRITE,
181         ATA_CMD_READ_EXT,
182         ATA_CMD_WRITE_EXT,
183         0,
184         0,
185         0,
186         ATA_CMD_WRITE_FUA_EXT
187 };
188
189 /**
190  *      ata_rwcmd_protocol - set taskfile r/w commands and protocol
191  *      @qc: command to examine and configure
192  *
193  *      Examine the device configuration and tf->flags to calculate
194  *      the proper read/write commands and protocol to use.
195  *
196  *      LOCKING:
197  *      caller.
198  */
199 int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
200 {
201         struct ata_taskfile *tf = &qc->tf;
202         struct ata_device *dev = qc->dev;
203         u8 cmd;
204
205         int index, fua, lba48, write;
206
207         fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
208         lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
209         write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
210
211         if (dev->flags & ATA_DFLAG_PIO) {
212                 tf->protocol = ATA_PROT_PIO;
213                 index = dev->multi_count ? 0 : 8;
214         } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
215                 /* Unable to use DMA due to host limitation */
216                 tf->protocol = ATA_PROT_PIO;
217                 index = dev->multi_count ? 0 : 8;
218         } else {
219                 tf->protocol = ATA_PROT_DMA;
220                 index = 16;
221         }
222
223         cmd = ata_rw_cmds[index + fua + lba48 + write];
224         if (cmd) {
225                 tf->command = cmd;
226                 return 0;
227         }
228         return -1;
229 }
230
231 /**
232  *      ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
233  *      @pio_mask: pio_mask
234  *      @mwdma_mask: mwdma_mask
235  *      @udma_mask: udma_mask
236  *
237  *      Pack @pio_mask, @mwdma_mask and @udma_mask into a single
238  *      unsigned int xfer_mask.
239  *
240  *      LOCKING:
241  *      None.
242  *
243  *      RETURNS:
244  *      Packed xfer_mask.
245  */
246 static unsigned int ata_pack_xfermask(unsigned int pio_mask,
247                                       unsigned int mwdma_mask,
248                                       unsigned int udma_mask)
249 {
250         return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
251                 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
252                 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
253 }
254
255 /**
256  *      ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
257  *      @xfer_mask: xfer_mask to unpack
258  *      @pio_mask: resulting pio_mask
259  *      @mwdma_mask: resulting mwdma_mask
260  *      @udma_mask: resulting udma_mask
261  *
262  *      Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
263  *      Any NULL distination masks will be ignored.
264  */
265 static void ata_unpack_xfermask(unsigned int xfer_mask,
266                                 unsigned int *pio_mask,
267                                 unsigned int *mwdma_mask,
268                                 unsigned int *udma_mask)
269 {
270         if (pio_mask)
271                 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
272         if (mwdma_mask)
273                 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
274         if (udma_mask)
275                 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
276 }
277
278 static const struct ata_xfer_ent {
279         unsigned int shift, bits;
280         u8 base;
281 } ata_xfer_tbl[] = {
282         { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
283         { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
284         { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
285         { -1, },
286 };
287
288 /**
289  *      ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
290  *      @xfer_mask: xfer_mask of interest
291  *
292  *      Return matching XFER_* value for @xfer_mask.  Only the highest
293  *      bit of @xfer_mask is considered.
294  *
295  *      LOCKING:
296  *      None.
297  *
298  *      RETURNS:
299  *      Matching XFER_* value, 0 if no match found.
300  */
301 static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
302 {
303         int highbit = fls(xfer_mask) - 1;
304         const struct ata_xfer_ent *ent;
305
306         for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
307                 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
308                         return ent->base + highbit - ent->shift;
309         return 0;
310 }
311
312 /**
313  *      ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
314  *      @xfer_mode: XFER_* of interest
315  *
316  *      Return matching xfer_mask for @xfer_mode.
317  *
318  *      LOCKING:
319  *      None.
320  *
321  *      RETURNS:
322  *      Matching xfer_mask, 0 if no match found.
323  */
324 static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
325 {
326         const struct ata_xfer_ent *ent;
327
328         for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
329                 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
330                         return 1 << (ent->shift + xfer_mode - ent->base);
331         return 0;
332 }
333
334 /**
335  *      ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
336  *      @xfer_mode: XFER_* of interest
337  *
338  *      Return matching xfer_shift for @xfer_mode.
339  *
340  *      LOCKING:
341  *      None.
342  *
343  *      RETURNS:
344  *      Matching xfer_shift, -1 if no match found.
345  */
346 static int ata_xfer_mode2shift(unsigned int xfer_mode)
347 {
348         const struct ata_xfer_ent *ent;
349
350         for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
351                 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
352                         return ent->shift;
353         return -1;
354 }
355
356 /**
357  *      ata_mode_string - convert xfer_mask to string
358  *      @xfer_mask: mask of bits supported; only highest bit counts.
359  *
360  *      Determine string which represents the highest speed
361  *      (highest bit in @modemask).
362  *
363  *      LOCKING:
364  *      None.
365  *
366  *      RETURNS:
367  *      Constant C string representing highest speed listed in
368  *      @mode_mask, or the constant C string "<n/a>".
369  */
370 static const char *ata_mode_string(unsigned int xfer_mask)
371 {
372         static const char * const xfer_mode_str[] = {
373                 "PIO0",
374                 "PIO1",
375                 "PIO2",
376                 "PIO3",
377                 "PIO4",
378                 "MWDMA0",
379                 "MWDMA1",
380                 "MWDMA2",
381                 "UDMA/16",
382                 "UDMA/25",
383                 "UDMA/33",
384                 "UDMA/44",
385                 "UDMA/66",
386                 "UDMA/100",
387                 "UDMA/133",
388                 "UDMA7",
389         };
390         int highbit;
391
392         highbit = fls(xfer_mask) - 1;
393         if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
394                 return xfer_mode_str[highbit];
395         return "<n/a>";
396 }
397
398 static void ata_dev_disable(struct ata_port *ap, struct ata_device *dev)
399 {
400         if (ata_dev_present(dev)) {
401                 printk(KERN_WARNING "ata%u: dev %u disabled\n",
402                        ap->id, dev->devno);
403                 dev->class++;
404         }
405 }
406
407 /**
408  *      ata_pio_devchk - PATA device presence detection
409  *      @ap: ATA channel to examine
410  *      @device: Device to examine (starting at zero)
411  *
412  *      This technique was originally described in
413  *      Hale Landis's ATADRVR (www.ata-atapi.com), and
414  *      later found its way into the ATA/ATAPI spec.
415  *
416  *      Write a pattern to the ATA shadow registers,
417  *      and if a device is present, it will respond by
418  *      correctly storing and echoing back the
419  *      ATA shadow register contents.
420  *
421  *      LOCKING:
422  *      caller.
423  */
424
425 static unsigned int ata_pio_devchk(struct ata_port *ap,
426                                    unsigned int device)
427 {
428         struct ata_ioports *ioaddr = &ap->ioaddr;
429         u8 nsect, lbal;
430
431         ap->ops->dev_select(ap, device);
432
433         outb(0x55, ioaddr->nsect_addr);
434         outb(0xaa, ioaddr->lbal_addr);
435
436         outb(0xaa, ioaddr->nsect_addr);
437         outb(0x55, ioaddr->lbal_addr);
438
439         outb(0x55, ioaddr->nsect_addr);
440         outb(0xaa, ioaddr->lbal_addr);
441
442         nsect = inb(ioaddr->nsect_addr);
443         lbal = inb(ioaddr->lbal_addr);
444
445         if ((nsect == 0x55) && (lbal == 0xaa))
446                 return 1;       /* we found a device */
447
448         return 0;               /* nothing found */
449 }
450
451 /**
452  *      ata_mmio_devchk - PATA device presence detection
453  *      @ap: ATA channel to examine
454  *      @device: Device to examine (starting at zero)
455  *
456  *      This technique was originally described in
457  *      Hale Landis's ATADRVR (www.ata-atapi.com), and
458  *      later found its way into the ATA/ATAPI spec.
459  *
460  *      Write a pattern to the ATA shadow registers,
461  *      and if a device is present, it will respond by
462  *      correctly storing and echoing back the
463  *      ATA shadow register contents.
464  *
465  *      LOCKING:
466  *      caller.
467  */
468
469 static unsigned int ata_mmio_devchk(struct ata_port *ap,
470                                     unsigned int device)
471 {
472         struct ata_ioports *ioaddr = &ap->ioaddr;
473         u8 nsect, lbal;
474
475         ap->ops->dev_select(ap, device);
476
477         writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
478         writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
479
480         writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
481         writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
482
483         writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
484         writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
485
486         nsect = readb((void __iomem *) ioaddr->nsect_addr);
487         lbal = readb((void __iomem *) ioaddr->lbal_addr);
488
489         if ((nsect == 0x55) && (lbal == 0xaa))
490                 return 1;       /* we found a device */
491
492         return 0;               /* nothing found */
493 }
494
495 /**
496  *      ata_devchk - PATA device presence detection
497  *      @ap: ATA channel to examine
498  *      @device: Device to examine (starting at zero)
499  *
500  *      Dispatch ATA device presence detection, depending
501  *      on whether we are using PIO or MMIO to talk to the
502  *      ATA shadow registers.
503  *
504  *      LOCKING:
505  *      caller.
506  */
507
508 static unsigned int ata_devchk(struct ata_port *ap,
509                                     unsigned int device)
510 {
511         if (ap->flags & ATA_FLAG_MMIO)
512                 return ata_mmio_devchk(ap, device);
513         return ata_pio_devchk(ap, device);
514 }
515
516 /**
517  *      ata_dev_classify - determine device type based on ATA-spec signature
518  *      @tf: ATA taskfile register set for device to be identified
519  *
520  *      Determine from taskfile register contents whether a device is
521  *      ATA or ATAPI, as per "Signature and persistence" section
522  *      of ATA/PI spec (volume 1, sect 5.14).
523  *
524  *      LOCKING:
525  *      None.
526  *
527  *      RETURNS:
528  *      Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
529  *      the event of failure.
530  */
531
532 unsigned int ata_dev_classify(const struct ata_taskfile *tf)
533 {
534         /* Apple's open source Darwin code hints that some devices only
535          * put a proper signature into the LBA mid/high registers,
536          * So, we only check those.  It's sufficient for uniqueness.
537          */
538
539         if (((tf->lbam == 0) && (tf->lbah == 0)) ||
540             ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
541                 DPRINTK("found ATA device by sig\n");
542                 return ATA_DEV_ATA;
543         }
544
545         if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
546             ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
547                 DPRINTK("found ATAPI device by sig\n");
548                 return ATA_DEV_ATAPI;
549         }
550
551         DPRINTK("unknown device\n");
552         return ATA_DEV_UNKNOWN;
553 }
554
555 /**
556  *      ata_dev_try_classify - Parse returned ATA device signature
557  *      @ap: ATA channel to examine
558  *      @device: Device to examine (starting at zero)
559  *      @r_err: Value of error register on completion
560  *
561  *      After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
562  *      an ATA/ATAPI-defined set of values is placed in the ATA
563  *      shadow registers, indicating the results of device detection
564  *      and diagnostics.
565  *
566  *      Select the ATA device, and read the values from the ATA shadow
567  *      registers.  Then parse according to the Error register value,
568  *      and the spec-defined values examined by ata_dev_classify().
569  *
570  *      LOCKING:
571  *      caller.
572  *
573  *      RETURNS:
574  *      Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
575  */
576
577 static unsigned int
578 ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
579 {
580         struct ata_taskfile tf;
581         unsigned int class;
582         u8 err;
583
584         ap->ops->dev_select(ap, device);
585
586         memset(&tf, 0, sizeof(tf));
587
588         ap->ops->tf_read(ap, &tf);
589         err = tf.feature;
590         if (r_err)
591                 *r_err = err;
592
593         /* see if device passed diags */
594         if (err == 1)
595                 /* do nothing */ ;
596         else if ((device == 0) && (err == 0x81))
597                 /* do nothing */ ;
598         else
599                 return ATA_DEV_NONE;
600
601         /* determine if device is ATA or ATAPI */
602         class = ata_dev_classify(&tf);
603
604         if (class == ATA_DEV_UNKNOWN)
605                 return ATA_DEV_NONE;
606         if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
607                 return ATA_DEV_NONE;
608         return class;
609 }
610
611 /**
612  *      ata_id_string - Convert IDENTIFY DEVICE page into string
613  *      @id: IDENTIFY DEVICE results we will examine
614  *      @s: string into which data is output
615  *      @ofs: offset into identify device page
616  *      @len: length of string to return. must be an even number.
617  *
618  *      The strings in the IDENTIFY DEVICE page are broken up into
619  *      16-bit chunks.  Run through the string, and output each
620  *      8-bit chunk linearly, regardless of platform.
621  *
622  *      LOCKING:
623  *      caller.
624  */
625
626 void ata_id_string(const u16 *id, unsigned char *s,
627                    unsigned int ofs, unsigned int len)
628 {
629         unsigned int c;
630
631         while (len > 0) {
632                 c = id[ofs] >> 8;
633                 *s = c;
634                 s++;
635
636                 c = id[ofs] & 0xff;
637                 *s = c;
638                 s++;
639
640                 ofs++;
641                 len -= 2;
642         }
643 }
644
645 /**
646  *      ata_id_c_string - Convert IDENTIFY DEVICE page into C string
647  *      @id: IDENTIFY DEVICE results we will examine
648  *      @s: string into which data is output
649  *      @ofs: offset into identify device page
650  *      @len: length of string to return. must be an odd number.
651  *
652  *      This function is identical to ata_id_string except that it
653  *      trims trailing spaces and terminates the resulting string with
654  *      null.  @len must be actual maximum length (even number) + 1.
655  *
656  *      LOCKING:
657  *      caller.
658  */
659 void ata_id_c_string(const u16 *id, unsigned char *s,
660                      unsigned int ofs, unsigned int len)
661 {
662         unsigned char *p;
663
664         WARN_ON(!(len & 1));
665
666         ata_id_string(id, s, ofs, len - 1);
667
668         p = s + strnlen(s, len - 1);
669         while (p > s && p[-1] == ' ')
670                 p--;
671         *p = '\0';
672 }
673
674 static u64 ata_id_n_sectors(const u16 *id)
675 {
676         if (ata_id_has_lba(id)) {
677                 if (ata_id_has_lba48(id))
678                         return ata_id_u64(id, 100);
679                 else
680                         return ata_id_u32(id, 60);
681         } else {
682                 if (ata_id_current_chs_valid(id))
683                         return ata_id_u32(id, 57);
684                 else
685                         return id[1] * id[3] * id[6];
686         }
687 }
688
689 /**
690  *      ata_noop_dev_select - Select device 0/1 on ATA bus
691  *      @ap: ATA channel to manipulate
692  *      @device: ATA device (numbered from zero) to select
693  *
694  *      This function performs no actual function.
695  *
696  *      May be used as the dev_select() entry in ata_port_operations.
697  *
698  *      LOCKING:
699  *      caller.
700  */
701 void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
702 {
703 }
704
705
706 /**
707  *      ata_std_dev_select - Select device 0/1 on ATA bus
708  *      @ap: ATA channel to manipulate
709  *      @device: ATA device (numbered from zero) to select
710  *
711  *      Use the method defined in the ATA specification to
712  *      make either device 0, or device 1, active on the
713  *      ATA channel.  Works with both PIO and MMIO.
714  *
715  *      May be used as the dev_select() entry in ata_port_operations.
716  *
717  *      LOCKING:
718  *      caller.
719  */
720
721 void ata_std_dev_select (struct ata_port *ap, unsigned int device)
722 {
723         u8 tmp;
724
725         if (device == 0)
726                 tmp = ATA_DEVICE_OBS;
727         else
728                 tmp = ATA_DEVICE_OBS | ATA_DEV1;
729
730         if (ap->flags & ATA_FLAG_MMIO) {
731                 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
732         } else {
733                 outb(tmp, ap->ioaddr.device_addr);
734         }
735         ata_pause(ap);          /* needed; also flushes, for mmio */
736 }
737
738 /**
739  *      ata_dev_select - Select device 0/1 on ATA bus
740  *      @ap: ATA channel to manipulate
741  *      @device: ATA device (numbered from zero) to select
742  *      @wait: non-zero to wait for Status register BSY bit to clear
743  *      @can_sleep: non-zero if context allows sleeping
744  *
745  *      Use the method defined in the ATA specification to
746  *      make either device 0, or device 1, active on the
747  *      ATA channel.
748  *
749  *      This is a high-level version of ata_std_dev_select(),
750  *      which additionally provides the services of inserting
751  *      the proper pauses and status polling, where needed.
752  *
753  *      LOCKING:
754  *      caller.
755  */
756
757 void ata_dev_select(struct ata_port *ap, unsigned int device,
758                            unsigned int wait, unsigned int can_sleep)
759 {
760         VPRINTK("ENTER, ata%u: device %u, wait %u\n",
761                 ap->id, device, wait);
762
763         if (wait)
764                 ata_wait_idle(ap);
765
766         ap->ops->dev_select(ap, device);
767
768         if (wait) {
769                 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
770                         msleep(150);
771                 ata_wait_idle(ap);
772         }
773 }
774
775 /**
776  *      ata_dump_id - IDENTIFY DEVICE info debugging output
777  *      @id: IDENTIFY DEVICE page to dump
778  *
779  *      Dump selected 16-bit words from the given IDENTIFY DEVICE
780  *      page.
781  *
782  *      LOCKING:
783  *      caller.
784  */
785
786 static inline void ata_dump_id(const u16 *id)
787 {
788         DPRINTK("49==0x%04x  "
789                 "53==0x%04x  "
790                 "63==0x%04x  "
791                 "64==0x%04x  "
792                 "75==0x%04x  \n",
793                 id[49],
794                 id[53],
795                 id[63],
796                 id[64],
797                 id[75]);
798         DPRINTK("80==0x%04x  "
799                 "81==0x%04x  "
800                 "82==0x%04x  "
801                 "83==0x%04x  "
802                 "84==0x%04x  \n",
803                 id[80],
804                 id[81],
805                 id[82],
806                 id[83],
807                 id[84]);
808         DPRINTK("88==0x%04x  "
809                 "93==0x%04x\n",
810                 id[88],
811                 id[93]);
812 }
813
814 /**
815  *      ata_id_xfermask - Compute xfermask from the given IDENTIFY data
816  *      @id: IDENTIFY data to compute xfer mask from
817  *
818  *      Compute the xfermask for this device. This is not as trivial
819  *      as it seems if we must consider early devices correctly.
820  *
821  *      FIXME: pre IDE drive timing (do we care ?).
822  *
823  *      LOCKING:
824  *      None.
825  *
826  *      RETURNS:
827  *      Computed xfermask
828  */
829 static unsigned int ata_id_xfermask(const u16 *id)
830 {
831         unsigned int pio_mask, mwdma_mask, udma_mask;
832
833         /* Usual case. Word 53 indicates word 64 is valid */
834         if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
835                 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
836                 pio_mask <<= 3;
837                 pio_mask |= 0x7;
838         } else {
839                 /* If word 64 isn't valid then Word 51 high byte holds
840                  * the PIO timing number for the maximum. Turn it into
841                  * a mask.
842                  */
843                 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
844
845                 /* But wait.. there's more. Design your standards by
846                  * committee and you too can get a free iordy field to
847                  * process. However its the speeds not the modes that
848                  * are supported... Note drivers using the timing API
849                  * will get this right anyway
850                  */
851         }
852
853         mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
854
855         udma_mask = 0;
856         if (id[ATA_ID_FIELD_VALID] & (1 << 2))
857                 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
858
859         return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
860 }
861
862 /**
863  *      ata_port_queue_task - Queue port_task
864  *      @ap: The ata_port to queue port_task for
865  *
866  *      Schedule @fn(@data) for execution after @delay jiffies using
867  *      port_task.  There is one port_task per port and it's the
868  *      user(low level driver)'s responsibility to make sure that only
869  *      one task is active at any given time.
870  *
871  *      libata core layer takes care of synchronization between
872  *      port_task and EH.  ata_port_queue_task() may be ignored for EH
873  *      synchronization.
874  *
875  *      LOCKING:
876  *      Inherited from caller.
877  */
878 void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
879                          unsigned long delay)
880 {
881         int rc;
882
883         if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
884                 return;
885
886         PREPARE_WORK(&ap->port_task, fn, data);
887
888         if (!delay)
889                 rc = queue_work(ata_wq, &ap->port_task);
890         else
891                 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
892
893         /* rc == 0 means that another user is using port task */
894         WARN_ON(rc == 0);
895 }
896
897 /**
898  *      ata_port_flush_task - Flush port_task
899  *      @ap: The ata_port to flush port_task for
900  *
901  *      After this function completes, port_task is guranteed not to
902  *      be running or scheduled.
903  *
904  *      LOCKING:
905  *      Kernel thread context (may sleep)
906  */
907 void ata_port_flush_task(struct ata_port *ap)
908 {
909         unsigned long flags;
910
911         DPRINTK("ENTER\n");
912
913         spin_lock_irqsave(&ap->host_set->lock, flags);
914         ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
915         spin_unlock_irqrestore(&ap->host_set->lock, flags);
916
917         DPRINTK("flush #1\n");
918         flush_workqueue(ata_wq);
919
920         /*
921          * At this point, if a task is running, it's guaranteed to see
922          * the FLUSH flag; thus, it will never queue pio tasks again.
923          * Cancel and flush.
924          */
925         if (!cancel_delayed_work(&ap->port_task)) {
926                 DPRINTK("flush #2\n");
927                 flush_workqueue(ata_wq);
928         }
929
930         spin_lock_irqsave(&ap->host_set->lock, flags);
931         ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
932         spin_unlock_irqrestore(&ap->host_set->lock, flags);
933
934         DPRINTK("EXIT\n");
935 }
936
937 void ata_qc_complete_internal(struct ata_queued_cmd *qc)
938 {
939         struct completion *waiting = qc->private_data;
940
941         qc->ap->ops->tf_read(qc->ap, &qc->tf);
942         complete(waiting);
943 }
944
945 /**
946  *      ata_exec_internal - execute libata internal command
947  *      @ap: Port to which the command is sent
948  *      @dev: Device to which the command is sent
949  *      @tf: Taskfile registers for the command and the result
950  *      @dma_dir: Data tranfer direction of the command
951  *      @buf: Data buffer of the command
952  *      @buflen: Length of data buffer
953  *
954  *      Executes libata internal command with timeout.  @tf contains
955  *      command on entry and result on return.  Timeout and error
956  *      conditions are reported via return value.  No recovery action
957  *      is taken after a command times out.  It's caller's duty to
958  *      clean up after timeout.
959  *
960  *      LOCKING:
961  *      None.  Should be called with kernel context, might sleep.
962  */
963
964 static unsigned
965 ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
966                   struct ata_taskfile *tf,
967                   int dma_dir, void *buf, unsigned int buflen)
968 {
969         u8 command = tf->command;
970         struct ata_queued_cmd *qc;
971         DECLARE_COMPLETION(wait);
972         unsigned long flags;
973         unsigned int err_mask;
974
975         spin_lock_irqsave(&ap->host_set->lock, flags);
976
977         qc = ata_qc_new_init(ap, dev);
978         BUG_ON(qc == NULL);
979
980         qc->tf = *tf;
981         qc->dma_dir = dma_dir;
982         if (dma_dir != DMA_NONE) {
983                 ata_sg_init_one(qc, buf, buflen);
984                 qc->nsect = buflen / ATA_SECT_SIZE;
985         }
986
987         qc->private_data = &wait;
988         qc->complete_fn = ata_qc_complete_internal;
989
990         qc->err_mask = ata_qc_issue(qc);
991         if (qc->err_mask)
992                 ata_qc_complete(qc);
993
994         spin_unlock_irqrestore(&ap->host_set->lock, flags);
995
996         if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
997                 ata_port_flush_task(ap);
998
999                 spin_lock_irqsave(&ap->host_set->lock, flags);
1000
1001                 /* We're racing with irq here.  If we lose, the
1002                  * following test prevents us from completing the qc
1003                  * again.  If completion irq occurs after here but
1004                  * before the caller cleans up, it will result in a
1005                  * spurious interrupt.  We can live with that.
1006                  */
1007                 if (qc->flags & ATA_QCFLAG_ACTIVE) {
1008                         qc->err_mask = AC_ERR_TIMEOUT;
1009                         ata_qc_complete(qc);
1010                         printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1011                                ap->id, command);
1012                 }
1013
1014                 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1015         }
1016
1017         *tf = qc->tf;
1018         err_mask = qc->err_mask;
1019
1020         ata_qc_free(qc);
1021
1022         /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1023          * Until those drivers are fixed, we detect the condition
1024          * here, fail the command with AC_ERR_SYSTEM and reenable the
1025          * port.
1026          *
1027          * Note that this doesn't change any behavior as internal
1028          * command failure results in disabling the device in the
1029          * higher layer for LLDDs without new reset/EH callbacks.
1030          *
1031          * Kill the following code as soon as those drivers are fixed.
1032          */
1033         if (ap->flags & ATA_FLAG_PORT_DISABLED) {
1034                 err_mask |= AC_ERR_SYSTEM;
1035                 ata_port_probe(ap);
1036         }
1037
1038         return err_mask;
1039 }
1040
1041 /**
1042  *      ata_pio_need_iordy      -       check if iordy needed
1043  *      @adev: ATA device
1044  *
1045  *      Check if the current speed of the device requires IORDY. Used
1046  *      by various controllers for chip configuration.
1047  */
1048
1049 unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1050 {
1051         int pio;
1052         int speed = adev->pio_mode - XFER_PIO_0;
1053
1054         if (speed < 2)
1055                 return 0;
1056         if (speed > 2)
1057                 return 1;
1058
1059         /* If we have no drive specific rule, then PIO 2 is non IORDY */
1060
1061         if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1062                 pio = adev->id[ATA_ID_EIDE_PIO];
1063                 /* Is the speed faster than the drive allows non IORDY ? */
1064                 if (pio) {
1065                         /* This is cycle times not frequency - watch the logic! */
1066                         if (pio > 240)  /* PIO2 is 240nS per cycle */
1067                                 return 1;
1068                         return 0;
1069                 }
1070         }
1071         return 0;
1072 }
1073
1074 /**
1075  *      ata_dev_read_id - Read ID data from the specified device
1076  *      @ap: port on which target device resides
1077  *      @dev: target device
1078  *      @p_class: pointer to class of the target device (may be changed)
1079  *      @post_reset: is this read ID post-reset?
1080  *      @p_id: read IDENTIFY page (newly allocated)
1081  *
1082  *      Read ID data from the specified device.  ATA_CMD_ID_ATA is
1083  *      performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
1084  *      devices.  This function also issues ATA_CMD_INIT_DEV_PARAMS
1085  *      for pre-ATA4 drives.
1086  *
1087  *      LOCKING:
1088  *      Kernel thread context (may sleep)
1089  *
1090  *      RETURNS:
1091  *      0 on success, -errno otherwise.
1092  */
1093 static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev,
1094                            unsigned int *p_class, int post_reset, u16 **p_id)
1095 {
1096         unsigned int class = *p_class;
1097         struct ata_taskfile tf;
1098         unsigned int err_mask = 0;
1099         u16 *id;
1100         const char *reason;
1101         int rc;
1102
1103         DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1104
1105         ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1106
1107         id = kmalloc(sizeof(id[0]) * ATA_ID_WORDS, GFP_KERNEL);
1108         if (id == NULL) {
1109                 rc = -ENOMEM;
1110                 reason = "out of memory";
1111                 goto err_out;
1112         }
1113
1114  retry:
1115         ata_tf_init(ap, &tf, dev->devno);
1116
1117         switch (class) {
1118         case ATA_DEV_ATA:
1119                 tf.command = ATA_CMD_ID_ATA;
1120                 break;
1121         case ATA_DEV_ATAPI:
1122                 tf.command = ATA_CMD_ID_ATAPI;
1123                 break;
1124         default:
1125                 rc = -ENODEV;
1126                 reason = "unsupported class";
1127                 goto err_out;
1128         }
1129
1130         tf.protocol = ATA_PROT_PIO;
1131
1132         err_mask = ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
1133                                      id, sizeof(id[0]) * ATA_ID_WORDS);
1134         if (err_mask) {
1135                 rc = -EIO;
1136                 reason = "I/O error";
1137                 goto err_out;
1138         }
1139
1140         swap_buf_le16(id, ATA_ID_WORDS);
1141
1142         /* sanity check */
1143         if ((class == ATA_DEV_ATA) != ata_id_is_ata(id)) {
1144                 rc = -EINVAL;
1145                 reason = "device reports illegal type";
1146                 goto err_out;
1147         }
1148
1149         if (post_reset && class == ATA_DEV_ATA) {
1150                 /*
1151                  * The exact sequence expected by certain pre-ATA4 drives is:
1152                  * SRST RESET
1153                  * IDENTIFY
1154                  * INITIALIZE DEVICE PARAMETERS
1155                  * anything else..
1156                  * Some drives were very specific about that exact sequence.
1157                  */
1158                 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
1159                         err_mask = ata_dev_init_params(ap, dev);
1160                         if (err_mask) {
1161                                 rc = -EIO;
1162                                 reason = "INIT_DEV_PARAMS failed";
1163                                 goto err_out;
1164                         }
1165
1166                         /* current CHS translation info (id[53-58]) might be
1167                          * changed. reread the identify device info.
1168                          */
1169                         post_reset = 0;
1170                         goto retry;
1171                 }
1172         }
1173
1174         *p_class = class;
1175         *p_id = id;
1176         return 0;
1177
1178  err_out:
1179         printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1180                ap->id, dev->devno, reason);
1181         kfree(id);
1182         return rc;
1183 }
1184
1185 static inline u8 ata_dev_knobble(const struct ata_port *ap,
1186                                  struct ata_device *dev)
1187 {
1188         return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
1189 }
1190
1191 /**
1192  *      ata_dev_configure - Configure the specified ATA/ATAPI device
1193  *      @ap: Port on which target device resides
1194  *      @dev: Target device to configure
1195  *      @print_info: Enable device info printout
1196  *
1197  *      Configure @dev according to @dev->id.  Generic and low-level
1198  *      driver specific fixups are also applied.
1199  *
1200  *      LOCKING:
1201  *      Kernel thread context (may sleep)
1202  *
1203  *      RETURNS:
1204  *      0 on success, -errno otherwise
1205  */
1206 static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
1207                              int print_info)
1208 {
1209         const u16 *id = dev->id;
1210         unsigned int xfer_mask;
1211         int i, rc;
1212
1213         if (!ata_dev_present(dev)) {
1214                 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
1215                         ap->id, dev->devno);
1216                 return 0;
1217         }
1218
1219         DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1220
1221         /* print device capabilities */
1222         if (print_info)
1223                 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1224                        "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1225                        ap->id, dev->devno, id[49], id[82], id[83],
1226                        id[84], id[85], id[86], id[87], id[88]);
1227
1228         /* initialize to-be-configured parameters */
1229         dev->flags = 0;
1230         dev->max_sectors = 0;
1231         dev->cdb_len = 0;
1232         dev->n_sectors = 0;
1233         dev->cylinders = 0;
1234         dev->heads = 0;
1235         dev->sectors = 0;
1236
1237         /*
1238          * common ATA, ATAPI feature tests
1239          */
1240
1241         /* find max transfer mode; for printk only */
1242         xfer_mask = ata_id_xfermask(id);
1243
1244         ata_dump_id(id);
1245
1246         /* ATA-specific feature tests */
1247         if (dev->class == ATA_DEV_ATA) {
1248                 dev->n_sectors = ata_id_n_sectors(id);
1249
1250                 if (ata_id_has_lba(id)) {
1251                         const char *lba_desc;
1252
1253                         lba_desc = "LBA";
1254                         dev->flags |= ATA_DFLAG_LBA;
1255                         if (ata_id_has_lba48(id)) {
1256                                 dev->flags |= ATA_DFLAG_LBA48;
1257                                 lba_desc = "LBA48";
1258                         }
1259
1260                         /* print device info to dmesg */
1261                         if (print_info)
1262                                 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1263                                        "max %s, %Lu sectors: %s\n",
1264                                        ap->id, dev->devno,
1265                                        ata_id_major_version(id),
1266                                        ata_mode_string(xfer_mask),
1267                                        (unsigned long long)dev->n_sectors,
1268                                        lba_desc);
1269                 } else {
1270                         /* CHS */
1271
1272                         /* Default translation */
1273                         dev->cylinders  = id[1];
1274                         dev->heads      = id[3];
1275                         dev->sectors    = id[6];
1276
1277                         if (ata_id_current_chs_valid(id)) {
1278                                 /* Current CHS translation is valid. */
1279                                 dev->cylinders = id[54];
1280                                 dev->heads     = id[55];
1281                                 dev->sectors   = id[56];
1282                         }
1283
1284                         /* print device info to dmesg */
1285                         if (print_info)
1286                                 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1287                                        "max %s, %Lu sectors: CHS %u/%u/%u\n",
1288                                        ap->id, dev->devno,
1289                                        ata_id_major_version(id),
1290                                        ata_mode_string(xfer_mask),
1291                                        (unsigned long long)dev->n_sectors,
1292                                        dev->cylinders, dev->heads, dev->sectors);
1293                 }
1294
1295                 dev->cdb_len = 16;
1296         }
1297
1298         /* ATAPI-specific feature tests */
1299         else if (dev->class == ATA_DEV_ATAPI) {
1300                 rc = atapi_cdb_len(id);
1301                 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1302                         printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
1303                         rc = -EINVAL;
1304                         goto err_out_nosup;
1305                 }
1306                 dev->cdb_len = (unsigned int) rc;
1307
1308                 /* print device info to dmesg */
1309                 if (print_info)
1310                         printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
1311                                ap->id, dev->devno, ata_mode_string(xfer_mask));
1312         }
1313
1314         ap->host->max_cmd_len = 0;
1315         for (i = 0; i < ATA_MAX_DEVICES; i++)
1316                 ap->host->max_cmd_len = max_t(unsigned int,
1317                                               ap->host->max_cmd_len,
1318                                               ap->device[i].cdb_len);
1319
1320         /* limit bridge transfers to udma5, 200 sectors */
1321         if (ata_dev_knobble(ap, dev)) {
1322                 if (print_info)
1323                         printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1324                                ap->id, dev->devno);
1325                 dev->udma_mask &= ATA_UDMA5;
1326                 dev->max_sectors = ATA_MAX_SECTORS;
1327         }
1328
1329         if (ap->ops->dev_config)
1330                 ap->ops->dev_config(ap, dev);
1331
1332         DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
1333         return 0;
1334
1335 err_out_nosup:
1336         DPRINTK("EXIT, err\n");
1337         return rc;
1338 }
1339
1340 /**
1341  *      ata_bus_probe - Reset and probe ATA bus
1342  *      @ap: Bus to probe
1343  *
1344  *      Master ATA bus probing function.  Initiates a hardware-dependent
1345  *      bus reset, then attempts to identify any devices found on
1346  *      the bus.
1347  *
1348  *      LOCKING:
1349  *      PCI/etc. bus probe sem.
1350  *
1351  *      RETURNS:
1352  *      Zero on success, non-zero on error.
1353  */
1354
1355 static int ata_bus_probe(struct ata_port *ap)
1356 {
1357         unsigned int classes[ATA_MAX_DEVICES];
1358         unsigned int i, rc, found = 0;
1359
1360         ata_port_probe(ap);
1361
1362         /* reset and determine device classes */
1363         for (i = 0; i < ATA_MAX_DEVICES; i++)
1364                 classes[i] = ATA_DEV_UNKNOWN;
1365
1366         if (ap->ops->probe_reset) {
1367                 rc = ap->ops->probe_reset(ap, classes);
1368                 if (rc) {
1369                         printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1370                         return rc;
1371                 }
1372         } else {
1373                 ap->ops->phy_reset(ap);
1374
1375                 if (!(ap->flags & ATA_FLAG_PORT_DISABLED))
1376                         for (i = 0; i < ATA_MAX_DEVICES; i++)
1377                                 classes[i] = ap->device[i].class;
1378
1379                 ata_port_probe(ap);
1380         }
1381
1382         for (i = 0; i < ATA_MAX_DEVICES; i++)
1383                 if (classes[i] == ATA_DEV_UNKNOWN)
1384                         classes[i] = ATA_DEV_NONE;
1385
1386         /* read IDENTIFY page and configure devices */
1387         for (i = 0; i < ATA_MAX_DEVICES; i++) {
1388                 struct ata_device *dev = &ap->device[i];
1389
1390                 dev->class = classes[i];
1391
1392                 if (!ata_dev_present(dev))
1393                         continue;
1394
1395                 WARN_ON(dev->id != NULL);
1396                 if (ata_dev_read_id(ap, dev, &dev->class, 1, &dev->id)) {
1397                         dev->class = ATA_DEV_NONE;
1398                         continue;
1399                 }
1400
1401                 if (ata_dev_configure(ap, dev, 1)) {
1402                         ata_dev_disable(ap, dev);
1403                         continue;
1404                 }
1405
1406                 found = 1;
1407         }
1408
1409         if (!found)
1410                 goto err_out_disable;
1411
1412         ata_set_mode(ap);
1413         if (ap->flags & ATA_FLAG_PORT_DISABLED)
1414                 goto err_out_disable;
1415
1416         return 0;
1417
1418 err_out_disable:
1419         ap->ops->port_disable(ap);
1420         return -1;
1421 }
1422
1423 /**
1424  *      ata_port_probe - Mark port as enabled
1425  *      @ap: Port for which we indicate enablement
1426  *
1427  *      Modify @ap data structure such that the system
1428  *      thinks that the entire port is enabled.
1429  *
1430  *      LOCKING: host_set lock, or some other form of
1431  *      serialization.
1432  */
1433
1434 void ata_port_probe(struct ata_port *ap)
1435 {
1436         ap->flags &= ~ATA_FLAG_PORT_DISABLED;
1437 }
1438
1439 /**
1440  *      sata_print_link_status - Print SATA link status
1441  *      @ap: SATA port to printk link status about
1442  *
1443  *      This function prints link speed and status of a SATA link.
1444  *
1445  *      LOCKING:
1446  *      None.
1447  */
1448 static void sata_print_link_status(struct ata_port *ap)
1449 {
1450         u32 sstatus, tmp;
1451         const char *speed;
1452
1453         if (!ap->ops->scr_read)
1454                 return;
1455
1456         sstatus = scr_read(ap, SCR_STATUS);
1457
1458         if (sata_dev_present(ap)) {
1459                 tmp = (sstatus >> 4) & 0xf;
1460                 if (tmp & (1 << 0))
1461                         speed = "1.5";
1462                 else if (tmp & (1 << 1))
1463                         speed = "3.0";
1464                 else
1465                         speed = "<unknown>";
1466                 printk(KERN_INFO "ata%u: SATA link up %s Gbps (SStatus %X)\n",
1467                        ap->id, speed, sstatus);
1468         } else {
1469                 printk(KERN_INFO "ata%u: SATA link down (SStatus %X)\n",
1470                        ap->id, sstatus);
1471         }
1472 }
1473
1474 /**
1475  *      __sata_phy_reset - Wake/reset a low-level SATA PHY
1476  *      @ap: SATA port associated with target SATA PHY.
1477  *
1478  *      This function issues commands to standard SATA Sxxx
1479  *      PHY registers, to wake up the phy (and device), and
1480  *      clear any reset condition.
1481  *
1482  *      LOCKING:
1483  *      PCI/etc. bus probe sem.
1484  *
1485  */
1486 void __sata_phy_reset(struct ata_port *ap)
1487 {
1488         u32 sstatus;
1489         unsigned long timeout = jiffies + (HZ * 5);
1490
1491         if (ap->flags & ATA_FLAG_SATA_RESET) {
1492                 /* issue phy wake/reset */
1493                 scr_write_flush(ap, SCR_CONTROL, 0x301);
1494                 /* Couldn't find anything in SATA I/II specs, but
1495                  * AHCI-1.1 10.4.2 says at least 1 ms. */
1496                 mdelay(1);
1497         }
1498         scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
1499
1500         /* wait for phy to become ready, if necessary */
1501         do {
1502                 msleep(200);
1503                 sstatus = scr_read(ap, SCR_STATUS);
1504                 if ((sstatus & 0xf) != 1)
1505                         break;
1506         } while (time_before(jiffies, timeout));
1507
1508         /* print link status */
1509         sata_print_link_status(ap);
1510
1511         /* TODO: phy layer with polling, timeouts, etc. */
1512         if (sata_dev_present(ap))
1513                 ata_port_probe(ap);
1514         else
1515                 ata_port_disable(ap);
1516
1517         if (ap->flags & ATA_FLAG_PORT_DISABLED)
1518                 return;
1519
1520         if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1521                 ata_port_disable(ap);
1522                 return;
1523         }
1524
1525         ap->cbl = ATA_CBL_SATA;
1526 }
1527
1528 /**
1529  *      sata_phy_reset - Reset SATA bus.
1530  *      @ap: SATA port associated with target SATA PHY.
1531  *
1532  *      This function resets the SATA bus, and then probes
1533  *      the bus for devices.
1534  *
1535  *      LOCKING:
1536  *      PCI/etc. bus probe sem.
1537  *
1538  */
1539 void sata_phy_reset(struct ata_port *ap)
1540 {
1541         __sata_phy_reset(ap);
1542         if (ap->flags & ATA_FLAG_PORT_DISABLED)
1543                 return;
1544         ata_bus_reset(ap);
1545 }
1546
1547 /**
1548  *      ata_dev_pair            -       return other device on cable
1549  *      @ap: port
1550  *      @adev: device
1551  *
1552  *      Obtain the other device on the same cable, or if none is
1553  *      present NULL is returned
1554  */
1555
1556 struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev)
1557 {
1558         struct ata_device *pair = &ap->device[1 - adev->devno];
1559         if (!ata_dev_present(pair))
1560                 return NULL;
1561         return pair;
1562 }
1563
1564 /**
1565  *      ata_port_disable - Disable port.
1566  *      @ap: Port to be disabled.
1567  *
1568  *      Modify @ap data structure such that the system
1569  *      thinks that the entire port is disabled, and should
1570  *      never attempt to probe or communicate with devices
1571  *      on this port.
1572  *
1573  *      LOCKING: host_set lock, or some other form of
1574  *      serialization.
1575  */
1576
1577 void ata_port_disable(struct ata_port *ap)
1578 {
1579         ap->device[0].class = ATA_DEV_NONE;
1580         ap->device[1].class = ATA_DEV_NONE;
1581         ap->flags |= ATA_FLAG_PORT_DISABLED;
1582 }
1583
1584 /*
1585  * This mode timing computation functionality is ported over from
1586  * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1587  */
1588 /*
1589  * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1590  * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1591  * for PIO 5, which is a nonstandard extension and UDMA6, which
1592  * is currently supported only by Maxtor drives.
1593  */
1594
1595 static const struct ata_timing ata_timing[] = {
1596
1597         { XFER_UDMA_6,     0,   0,   0,   0,   0,   0,   0,  15 },
1598         { XFER_UDMA_5,     0,   0,   0,   0,   0,   0,   0,  20 },
1599         { XFER_UDMA_4,     0,   0,   0,   0,   0,   0,   0,  30 },
1600         { XFER_UDMA_3,     0,   0,   0,   0,   0,   0,   0,  45 },
1601
1602         { XFER_UDMA_2,     0,   0,   0,   0,   0,   0,   0,  60 },
1603         { XFER_UDMA_1,     0,   0,   0,   0,   0,   0,   0,  80 },
1604         { XFER_UDMA_0,     0,   0,   0,   0,   0,   0,   0, 120 },
1605
1606 /*      { XFER_UDMA_SLOW,  0,   0,   0,   0,   0,   0,   0, 150 }, */
1607
1608         { XFER_MW_DMA_2,  25,   0,   0,   0,  70,  25, 120,   0 },
1609         { XFER_MW_DMA_1,  45,   0,   0,   0,  80,  50, 150,   0 },
1610         { XFER_MW_DMA_0,  60,   0,   0,   0, 215, 215, 480,   0 },
1611
1612         { XFER_SW_DMA_2,  60,   0,   0,   0, 120, 120, 240,   0 },
1613         { XFER_SW_DMA_1,  90,   0,   0,   0, 240, 240, 480,   0 },
1614         { XFER_SW_DMA_0, 120,   0,   0,   0, 480, 480, 960,   0 },
1615
1616 /*      { XFER_PIO_5,     20,  50,  30, 100,  50,  30, 100,   0 }, */
1617         { XFER_PIO_4,     25,  70,  25, 120,  70,  25, 120,   0 },
1618         { XFER_PIO_3,     30,  80,  70, 180,  80,  70, 180,   0 },
1619
1620         { XFER_PIO_2,     30, 290,  40, 330, 100,  90, 240,   0 },
1621         { XFER_PIO_1,     50, 290,  93, 383, 125, 100, 383,   0 },
1622         { XFER_PIO_0,     70, 290, 240, 600, 165, 150, 600,   0 },
1623
1624 /*      { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960,   0 }, */
1625
1626         { 0xFF }
1627 };
1628
1629 #define ENOUGH(v,unit)          (((v)-1)/(unit)+1)
1630 #define EZ(v,unit)              ((v)?ENOUGH(v,unit):0)
1631
1632 static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1633 {
1634         q->setup   = EZ(t->setup   * 1000,  T);
1635         q->act8b   = EZ(t->act8b   * 1000,  T);
1636         q->rec8b   = EZ(t->rec8b   * 1000,  T);
1637         q->cyc8b   = EZ(t->cyc8b   * 1000,  T);
1638         q->active  = EZ(t->active  * 1000,  T);
1639         q->recover = EZ(t->recover * 1000,  T);
1640         q->cycle   = EZ(t->cycle   * 1000,  T);
1641         q->udma    = EZ(t->udma    * 1000, UT);
1642 }
1643
1644 void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1645                       struct ata_timing *m, unsigned int what)
1646 {
1647         if (what & ATA_TIMING_SETUP  ) m->setup   = max(a->setup,   b->setup);
1648         if (what & ATA_TIMING_ACT8B  ) m->act8b   = max(a->act8b,   b->act8b);
1649         if (what & ATA_TIMING_REC8B  ) m->rec8b   = max(a->rec8b,   b->rec8b);
1650         if (what & ATA_TIMING_CYC8B  ) m->cyc8b   = max(a->cyc8b,   b->cyc8b);
1651         if (what & ATA_TIMING_ACTIVE ) m->active  = max(a->active,  b->active);
1652         if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1653         if (what & ATA_TIMING_CYCLE  ) m->cycle   = max(a->cycle,   b->cycle);
1654         if (what & ATA_TIMING_UDMA   ) m->udma    = max(a->udma,    b->udma);
1655 }
1656
1657 static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1658 {
1659         const struct ata_timing *t;
1660
1661         for (t = ata_timing; t->mode != speed; t++)
1662                 if (t->mode == 0xFF)
1663                         return NULL;
1664         return t;
1665 }
1666
1667 int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1668                        struct ata_timing *t, int T, int UT)
1669 {
1670         const struct ata_timing *s;
1671         struct ata_timing p;
1672
1673         /*
1674          * Find the mode.
1675          */
1676
1677         if (!(s = ata_timing_find_mode(speed)))
1678                 return -EINVAL;
1679
1680         memcpy(t, s, sizeof(*s));
1681
1682         /*
1683          * If the drive is an EIDE drive, it can tell us it needs extended
1684          * PIO/MW_DMA cycle timing.
1685          */
1686
1687         if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1688                 memset(&p, 0, sizeof(p));
1689                 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1690                         if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1691                                             else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1692                 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1693                         p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1694                 }
1695                 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1696         }
1697
1698         /*
1699          * Convert the timing to bus clock counts.
1700          */
1701
1702         ata_timing_quantize(t, t, T, UT);
1703
1704         /*
1705          * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1706          * S.M.A.R.T * and some other commands. We have to ensure that the
1707          * DMA cycle timing is slower/equal than the fastest PIO timing.
1708          */
1709
1710         if (speed > XFER_PIO_4) {
1711                 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1712                 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1713         }
1714
1715         /*
1716          * Lengthen active & recovery time so that cycle time is correct.
1717          */
1718
1719         if (t->act8b + t->rec8b < t->cyc8b) {
1720                 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1721                 t->rec8b = t->cyc8b - t->act8b;
1722         }
1723
1724         if (t->active + t->recover < t->cycle) {
1725                 t->active += (t->cycle - (t->active + t->recover)) / 2;
1726                 t->recover = t->cycle - t->active;
1727         }
1728
1729         return 0;
1730 }
1731
1732 static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
1733 {
1734         unsigned int err_mask;
1735         int rc;
1736
1737         if (dev->xfer_shift == ATA_SHIFT_PIO)
1738                 dev->flags |= ATA_DFLAG_PIO;
1739
1740         err_mask = ata_dev_set_xfermode(ap, dev);
1741         if (err_mask) {
1742                 printk(KERN_ERR
1743                        "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1744                        ap->id, err_mask);
1745                 return -EIO;
1746         }
1747
1748         rc = ata_dev_revalidate(ap, dev, 0);
1749         if (rc) {
1750                 printk(KERN_ERR
1751                        "ata%u: failed to revalidate after set xfermode\n",
1752                        ap->id);
1753                 return rc;
1754         }
1755
1756         DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1757                 dev->xfer_shift, (int)dev->xfer_mode);
1758
1759         printk(KERN_INFO "ata%u: dev %u configured for %s\n",
1760                ap->id, dev->devno,
1761                ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
1762         return 0;
1763 }
1764
1765 static int ata_host_set_pio(struct ata_port *ap)
1766 {
1767         int i;
1768
1769         for (i = 0; i < ATA_MAX_DEVICES; i++) {
1770                 struct ata_device *dev = &ap->device[i];
1771
1772                 if (!ata_dev_present(dev))
1773                         continue;
1774
1775                 if (!dev->pio_mode) {
1776                         printk(KERN_WARNING "ata%u: no PIO support for device %d.\n", ap->id, i);
1777                         return -1;
1778                 }
1779
1780                 dev->xfer_mode = dev->pio_mode;
1781                 dev->xfer_shift = ATA_SHIFT_PIO;
1782                 if (ap->ops->set_piomode)
1783                         ap->ops->set_piomode(ap, dev);
1784         }
1785
1786         return 0;
1787 }
1788
1789 static void ata_host_set_dma(struct ata_port *ap)
1790 {
1791         int i;
1792
1793         for (i = 0; i < ATA_MAX_DEVICES; i++) {
1794                 struct ata_device *dev = &ap->device[i];
1795
1796                 if (!ata_dev_present(dev) || !dev->dma_mode)
1797                         continue;
1798
1799                 dev->xfer_mode = dev->dma_mode;
1800                 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
1801                 if (ap->ops->set_dmamode)
1802                         ap->ops->set_dmamode(ap, dev);
1803         }
1804 }
1805
1806 /**
1807  *      ata_set_mode - Program timings and issue SET FEATURES - XFER
1808  *      @ap: port on which timings will be programmed
1809  *
1810  *      Set ATA device disk transfer mode (PIO3, UDMA6, etc.).
1811  *
1812  *      LOCKING:
1813  *      PCI/etc. bus probe sem.
1814  */
1815 static void ata_set_mode(struct ata_port *ap)
1816 {
1817         int i, rc;
1818
1819         /* step 1: calculate xfer_mask */
1820         for (i = 0; i < ATA_MAX_DEVICES; i++) {
1821                 struct ata_device *dev = &ap->device[i];
1822                 unsigned int pio_mask, dma_mask;
1823
1824                 if (!ata_dev_present(dev))
1825                         continue;
1826
1827                 ata_dev_xfermask(ap, dev);
1828
1829                 /* TODO: let LLDD filter dev->*_mask here */
1830
1831                 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
1832                 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
1833                 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
1834                 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
1835         }
1836
1837         /* step 2: always set host PIO timings */
1838         rc = ata_host_set_pio(ap);
1839         if (rc)
1840                 goto err_out;
1841
1842         /* step 3: set host DMA timings */
1843         ata_host_set_dma(ap);
1844
1845         /* step 4: update devices' xfer mode */
1846         for (i = 0; i < ATA_MAX_DEVICES; i++) {
1847                 struct ata_device *dev = &ap->device[i];
1848
1849                 if (!ata_dev_present(dev))
1850                         continue;
1851
1852                 if (ata_dev_set_mode(ap, dev))
1853                         goto err_out;
1854         }
1855
1856         if (ap->ops->post_set_mode)
1857                 ap->ops->post_set_mode(ap);
1858
1859         return;
1860
1861 err_out:
1862         ata_port_disable(ap);
1863 }
1864
1865 /**
1866  *      ata_tf_to_host - issue ATA taskfile to host controller
1867  *      @ap: port to which command is being issued
1868  *      @tf: ATA taskfile register set
1869  *
1870  *      Issues ATA taskfile register set to ATA host controller,
1871  *      with proper synchronization with interrupt handler and
1872  *      other threads.
1873  *
1874  *      LOCKING:
1875  *      spin_lock_irqsave(host_set lock)
1876  */
1877
1878 static inline void ata_tf_to_host(struct ata_port *ap,
1879                                   const struct ata_taskfile *tf)
1880 {
1881         ap->ops->tf_load(ap, tf);
1882         ap->ops->exec_command(ap, tf);
1883 }
1884
1885 /**
1886  *      ata_busy_sleep - sleep until BSY clears, or timeout
1887  *      @ap: port containing status register to be polled
1888  *      @tmout_pat: impatience timeout
1889  *      @tmout: overall timeout
1890  *
1891  *      Sleep until ATA Status register bit BSY clears,
1892  *      or a timeout occurs.
1893  *
1894  *      LOCKING: None.
1895  */
1896
1897 unsigned int ata_busy_sleep (struct ata_port *ap,
1898                              unsigned long tmout_pat, unsigned long tmout)
1899 {
1900         unsigned long timer_start, timeout;
1901         u8 status;
1902
1903         status = ata_busy_wait(ap, ATA_BUSY, 300);
1904         timer_start = jiffies;
1905         timeout = timer_start + tmout_pat;
1906         while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1907                 msleep(50);
1908                 status = ata_busy_wait(ap, ATA_BUSY, 3);
1909         }
1910
1911         if (status & ATA_BUSY)
1912                 printk(KERN_WARNING "ata%u is slow to respond, "
1913                        "please be patient\n", ap->id);
1914
1915         timeout = timer_start + tmout;
1916         while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1917                 msleep(50);
1918                 status = ata_chk_status(ap);
1919         }
1920
1921         if (status & ATA_BUSY) {
1922                 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
1923                        ap->id, tmout / HZ);
1924                 return 1;
1925         }
1926
1927         return 0;
1928 }
1929
1930 static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
1931 {
1932         struct ata_ioports *ioaddr = &ap->ioaddr;
1933         unsigned int dev0 = devmask & (1 << 0);
1934         unsigned int dev1 = devmask & (1 << 1);
1935         unsigned long timeout;
1936
1937         /* if device 0 was found in ata_devchk, wait for its
1938          * BSY bit to clear
1939          */
1940         if (dev0)
1941                 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1942
1943         /* if device 1 was found in ata_devchk, wait for
1944          * register access, then wait for BSY to clear
1945          */
1946         timeout = jiffies + ATA_TMOUT_BOOT;
1947         while (dev1) {
1948                 u8 nsect, lbal;
1949
1950                 ap->ops->dev_select(ap, 1);
1951                 if (ap->flags & ATA_FLAG_MMIO) {
1952                         nsect = readb((void __iomem *) ioaddr->nsect_addr);
1953                         lbal = readb((void __iomem *) ioaddr->lbal_addr);
1954                 } else {
1955                         nsect = inb(ioaddr->nsect_addr);
1956                         lbal = inb(ioaddr->lbal_addr);
1957                 }
1958                 if ((nsect == 1) && (lbal == 1))
1959                         break;
1960                 if (time_after(jiffies, timeout)) {
1961                         dev1 = 0;
1962                         break;
1963                 }
1964                 msleep(50);     /* give drive a breather */
1965         }
1966         if (dev1)
1967                 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1968
1969         /* is all this really necessary? */
1970         ap->ops->dev_select(ap, 0);
1971         if (dev1)
1972                 ap->ops->dev_select(ap, 1);
1973         if (dev0)
1974                 ap->ops->dev_select(ap, 0);
1975 }
1976
1977 static unsigned int ata_bus_softreset(struct ata_port *ap,
1978                                       unsigned int devmask)
1979 {
1980         struct ata_ioports *ioaddr = &ap->ioaddr;
1981
1982         DPRINTK("ata%u: bus reset via SRST\n", ap->id);
1983
1984         /* software reset.  causes dev0 to be selected */
1985         if (ap->flags & ATA_FLAG_MMIO) {
1986                 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
1987                 udelay(20);     /* FIXME: flush */
1988                 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
1989                 udelay(20);     /* FIXME: flush */
1990                 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
1991         } else {
1992                 outb(ap->ctl, ioaddr->ctl_addr);
1993                 udelay(10);
1994                 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
1995                 udelay(10);
1996                 outb(ap->ctl, ioaddr->ctl_addr);
1997         }
1998
1999         /* spec mandates ">= 2ms" before checking status.
2000          * We wait 150ms, because that was the magic delay used for
2001          * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2002          * between when the ATA command register is written, and then
2003          * status is checked.  Because waiting for "a while" before
2004          * checking status is fine, post SRST, we perform this magic
2005          * delay here as well.
2006          *
2007          * Old drivers/ide uses the 2mS rule and then waits for ready
2008          */
2009         msleep(150);
2010
2011
2012         /* Before we perform post reset processing we want to see if
2013            the bus shows 0xFF because the odd clown forgets the D7 pulldown
2014            resistor */
2015
2016         if (ata_check_status(ap) == 0xFF)
2017                 return 1;       /* Positive is failure for some reason */
2018
2019         ata_bus_post_reset(ap, devmask);
2020
2021         return 0;
2022 }
2023
2024 /**
2025  *      ata_bus_reset - reset host port and associated ATA channel
2026  *      @ap: port to reset
2027  *
2028  *      This is typically the first time we actually start issuing
2029  *      commands to the ATA channel.  We wait for BSY to clear, then
2030  *      issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2031  *      result.  Determine what devices, if any, are on the channel
2032  *      by looking at the device 0/1 error register.  Look at the signature
2033  *      stored in each device's taskfile registers, to determine if
2034  *      the device is ATA or ATAPI.
2035  *
2036  *      LOCKING:
2037  *      PCI/etc. bus probe sem.
2038  *      Obtains host_set lock.
2039  *
2040  *      SIDE EFFECTS:
2041  *      Sets ATA_FLAG_PORT_DISABLED if bus reset fails.
2042  */
2043
2044 void ata_bus_reset(struct ata_port *ap)
2045 {
2046         struct ata_ioports *ioaddr = &ap->ioaddr;
2047         unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2048         u8 err;
2049         unsigned int dev0, dev1 = 0, devmask = 0;
2050
2051         DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2052
2053         /* determine if device 0/1 are present */
2054         if (ap->flags & ATA_FLAG_SATA_RESET)
2055                 dev0 = 1;
2056         else {
2057                 dev0 = ata_devchk(ap, 0);
2058                 if (slave_possible)
2059                         dev1 = ata_devchk(ap, 1);
2060         }
2061
2062         if (dev0)
2063                 devmask |= (1 << 0);
2064         if (dev1)
2065                 devmask |= (1 << 1);
2066
2067         /* select device 0 again */
2068         ap->ops->dev_select(ap, 0);
2069
2070         /* issue bus reset */
2071         if (ap->flags & ATA_FLAG_SRST)
2072                 if (ata_bus_softreset(ap, devmask))
2073                         goto err_out;
2074
2075         /*
2076          * determine by signature whether we have ATA or ATAPI devices
2077          */
2078         ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
2079         if ((slave_possible) && (err != 0x81))
2080                 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
2081
2082         /* re-enable interrupts */
2083         if (ap->ioaddr.ctl_addr)        /* FIXME: hack. create a hook instead */
2084                 ata_irq_on(ap);
2085
2086         /* is double-select really necessary? */
2087         if (ap->device[1].class != ATA_DEV_NONE)
2088                 ap->ops->dev_select(ap, 1);
2089         if (ap->device[0].class != ATA_DEV_NONE)
2090                 ap->ops->dev_select(ap, 0);
2091
2092         /* if no devices were detected, disable this port */
2093         if ((ap->device[0].class == ATA_DEV_NONE) &&
2094             (ap->device[1].class == ATA_DEV_NONE))
2095                 goto err_out;
2096
2097         if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2098                 /* set up device control for ATA_FLAG_SATA_RESET */
2099                 if (ap->flags & ATA_FLAG_MMIO)
2100                         writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2101                 else
2102                         outb(ap->ctl, ioaddr->ctl_addr);
2103         }
2104
2105         DPRINTK("EXIT\n");
2106         return;
2107
2108 err_out:
2109         printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2110         ap->ops->port_disable(ap);
2111
2112         DPRINTK("EXIT\n");
2113 }
2114
2115 static int sata_phy_resume(struct ata_port *ap)
2116 {
2117         unsigned long timeout = jiffies + (HZ * 5);
2118         u32 sstatus;
2119
2120         scr_write_flush(ap, SCR_CONTROL, 0x300);
2121
2122         /* Wait for phy to become ready, if necessary. */
2123         do {
2124                 msleep(200);
2125                 sstatus = scr_read(ap, SCR_STATUS);
2126                 if ((sstatus & 0xf) != 1)
2127                         return 0;
2128         } while (time_before(jiffies, timeout));
2129
2130         return -1;
2131 }
2132
2133 /**
2134  *      ata_std_probeinit - initialize probing
2135  *      @ap: port to be probed
2136  *
2137  *      @ap is about to be probed.  Initialize it.  This function is
2138  *      to be used as standard callback for ata_drive_probe_reset().
2139  *
2140  *      NOTE!!! Do not use this function as probeinit if a low level
2141  *      driver implements only hardreset.  Just pass NULL as probeinit
2142  *      in that case.  Using this function is probably okay but doing
2143  *      so makes reset sequence different from the original
2144  *      ->phy_reset implementation and Jeff nervous.  :-P
2145  */
2146 extern void ata_std_probeinit(struct ata_port *ap)
2147 {
2148         if (ap->flags & ATA_FLAG_SATA && ap->ops->scr_read) {
2149                 sata_phy_resume(ap);
2150                 if (sata_dev_present(ap))
2151                         ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2152         }
2153 }
2154
2155 /**
2156  *      ata_std_softreset - reset host port via ATA SRST
2157  *      @ap: port to reset
2158  *      @verbose: fail verbosely
2159  *      @classes: resulting classes of attached devices
2160  *
2161  *      Reset host port using ATA SRST.  This function is to be used
2162  *      as standard callback for ata_drive_*_reset() functions.
2163  *
2164  *      LOCKING:
2165  *      Kernel thread context (may sleep)
2166  *
2167  *      RETURNS:
2168  *      0 on success, -errno otherwise.
2169  */
2170 int ata_std_softreset(struct ata_port *ap, int verbose, unsigned int *classes)
2171 {
2172         unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2173         unsigned int devmask = 0, err_mask;
2174         u8 err;
2175
2176         DPRINTK("ENTER\n");
2177
2178         if (ap->ops->scr_read && !sata_dev_present(ap)) {
2179                 classes[0] = ATA_DEV_NONE;
2180                 goto out;
2181         }
2182
2183         /* determine if device 0/1 are present */
2184         if (ata_devchk(ap, 0))
2185                 devmask |= (1 << 0);
2186         if (slave_possible && ata_devchk(ap, 1))
2187                 devmask |= (1 << 1);
2188
2189         /* select device 0 again */
2190         ap->ops->dev_select(ap, 0);
2191
2192         /* issue bus reset */
2193         DPRINTK("about to softreset, devmask=%x\n", devmask);
2194         err_mask = ata_bus_softreset(ap, devmask);
2195         if (err_mask) {
2196                 if (verbose)
2197                         printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2198                                ap->id, err_mask);
2199                 else
2200                         DPRINTK("EXIT, softreset failed (err_mask=0x%x)\n",
2201                                 err_mask);
2202                 return -EIO;
2203         }
2204
2205         /* determine by signature whether we have ATA or ATAPI devices */
2206         classes[0] = ata_dev_try_classify(ap, 0, &err);
2207         if (slave_possible && err != 0x81)
2208                 classes[1] = ata_dev_try_classify(ap, 1, &err);
2209
2210  out:
2211         DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2212         return 0;
2213 }
2214
2215 /**
2216  *      sata_std_hardreset - reset host port via SATA phy reset
2217  *      @ap: port to reset
2218  *      @verbose: fail verbosely
2219  *      @class: resulting class of attached device
2220  *
2221  *      SATA phy-reset host port using DET bits of SControl register.
2222  *      This function is to be used as standard callback for
2223  *      ata_drive_*_reset().
2224  *
2225  *      LOCKING:
2226  *      Kernel thread context (may sleep)
2227  *
2228  *      RETURNS:
2229  *      0 on success, -errno otherwise.
2230  */
2231 int sata_std_hardreset(struct ata_port *ap, int verbose, unsigned int *class)
2232 {
2233         DPRINTK("ENTER\n");
2234
2235         /* Issue phy wake/reset */
2236         scr_write_flush(ap, SCR_CONTROL, 0x301);
2237
2238         /*
2239          * Couldn't find anything in SATA I/II specs, but AHCI-1.1
2240          * 10.4.2 says at least 1 ms.
2241          */
2242         msleep(1);
2243
2244         /* Bring phy back */
2245         sata_phy_resume(ap);
2246
2247         /* TODO: phy layer with polling, timeouts, etc. */
2248         if (!sata_dev_present(ap)) {
2249                 *class = ATA_DEV_NONE;
2250                 DPRINTK("EXIT, link offline\n");
2251                 return 0;
2252         }
2253
2254         if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2255                 if (verbose)
2256                         printk(KERN_ERR "ata%u: COMRESET failed "
2257                                "(device not ready)\n", ap->id);
2258                 else
2259                         DPRINTK("EXIT, device not ready\n");
2260                 return -EIO;
2261         }
2262
2263         ap->ops->dev_select(ap, 0);     /* probably unnecessary */
2264
2265         *class = ata_dev_try_classify(ap, 0, NULL);
2266
2267         DPRINTK("EXIT, class=%u\n", *class);
2268         return 0;
2269 }
2270
2271 /**
2272  *      ata_std_postreset - standard postreset callback
2273  *      @ap: the target ata_port
2274  *      @classes: classes of attached devices
2275  *
2276  *      This function is invoked after a successful reset.  Note that
2277  *      the device might have been reset more than once using
2278  *      different reset methods before postreset is invoked.
2279  *
2280  *      This function is to be used as standard callback for
2281  *      ata_drive_*_reset().
2282  *
2283  *      LOCKING:
2284  *      Kernel thread context (may sleep)
2285  */
2286 void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2287 {
2288         DPRINTK("ENTER\n");
2289
2290         /* set cable type if it isn't already set */
2291         if (ap->cbl == ATA_CBL_NONE && ap->flags & ATA_FLAG_SATA)
2292                 ap->cbl = ATA_CBL_SATA;
2293
2294         /* print link status */
2295         if (ap->cbl == ATA_CBL_SATA)
2296                 sata_print_link_status(ap);
2297
2298         /* re-enable interrupts */
2299         if (ap->ioaddr.ctl_addr)        /* FIXME: hack. create a hook instead */
2300                 ata_irq_on(ap);
2301
2302         /* is double-select really necessary? */
2303         if (classes[0] != ATA_DEV_NONE)
2304                 ap->ops->dev_select(ap, 1);
2305         if (classes[1] != ATA_DEV_NONE)
2306                 ap->ops->dev_select(ap, 0);
2307
2308         /* bail out if no device is present */
2309         if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2310                 DPRINTK("EXIT, no device\n");
2311                 return;
2312         }
2313
2314         /* set up device control */
2315         if (ap->ioaddr.ctl_addr) {
2316                 if (ap->flags & ATA_FLAG_MMIO)
2317                         writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2318                 else
2319                         outb(ap->ctl, ap->ioaddr.ctl_addr);
2320         }
2321
2322         DPRINTK("EXIT\n");
2323 }
2324
2325 /**
2326  *      ata_std_probe_reset - standard probe reset method
2327  *      @ap: prot to perform probe-reset
2328  *      @classes: resulting classes of attached devices
2329  *
2330  *      The stock off-the-shelf ->probe_reset method.
2331  *
2332  *      LOCKING:
2333  *      Kernel thread context (may sleep)
2334  *
2335  *      RETURNS:
2336  *      0 on success, -errno otherwise.
2337  */
2338 int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2339 {
2340         ata_reset_fn_t hardreset;
2341
2342         hardreset = NULL;
2343         if (ap->flags & ATA_FLAG_SATA && ap->ops->scr_read)
2344                 hardreset = sata_std_hardreset;
2345
2346         return ata_drive_probe_reset(ap, ata_std_probeinit,
2347                                      ata_std_softreset, hardreset,
2348                                      ata_std_postreset, classes);
2349 }
2350
2351 static int do_probe_reset(struct ata_port *ap, ata_reset_fn_t reset,
2352                           ata_postreset_fn_t postreset,
2353                           unsigned int *classes)
2354 {
2355         int i, rc;
2356
2357         for (i = 0; i < ATA_MAX_DEVICES; i++)
2358                 classes[i] = ATA_DEV_UNKNOWN;
2359
2360         rc = reset(ap, 0, classes);
2361         if (rc)
2362                 return rc;
2363
2364         /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2365          * is complete and convert all ATA_DEV_UNKNOWN to
2366          * ATA_DEV_NONE.
2367          */
2368         for (i = 0; i < ATA_MAX_DEVICES; i++)
2369                 if (classes[i] != ATA_DEV_UNKNOWN)
2370                         break;
2371
2372         if (i < ATA_MAX_DEVICES)
2373                 for (i = 0; i < ATA_MAX_DEVICES; i++)
2374                         if (classes[i] == ATA_DEV_UNKNOWN)
2375                                 classes[i] = ATA_DEV_NONE;
2376
2377         if (postreset)
2378                 postreset(ap, classes);
2379
2380         return classes[0] != ATA_DEV_UNKNOWN ? 0 : -ENODEV;
2381 }
2382
2383 /**
2384  *      ata_drive_probe_reset - Perform probe reset with given methods
2385  *      @ap: port to reset
2386  *      @probeinit: probeinit method (can be NULL)
2387  *      @softreset: softreset method (can be NULL)
2388  *      @hardreset: hardreset method (can be NULL)
2389  *      @postreset: postreset method (can be NULL)
2390  *      @classes: resulting classes of attached devices
2391  *
2392  *      Reset the specified port and classify attached devices using
2393  *      given methods.  This function prefers softreset but tries all
2394  *      possible reset sequences to reset and classify devices.  This
2395  *      function is intended to be used for constructing ->probe_reset
2396  *      callback by low level drivers.
2397  *
2398  *      Reset methods should follow the following rules.
2399  *
2400  *      - Return 0 on sucess, -errno on failure.
2401  *      - If classification is supported, fill classes[] with
2402  *        recognized class codes.
2403  *      - If classification is not supported, leave classes[] alone.
2404  *      - If verbose is non-zero, print error message on failure;
2405  *        otherwise, shut up.
2406  *
2407  *      LOCKING:
2408  *      Kernel thread context (may sleep)
2409  *
2410  *      RETURNS:
2411  *      0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2412  *      if classification fails, and any error code from reset
2413  *      methods.
2414  */
2415 int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
2416                           ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2417                           ata_postreset_fn_t postreset, unsigned int *classes)
2418 {
2419         int rc = -EINVAL;
2420
2421         if (probeinit)
2422                 probeinit(ap);
2423
2424         if (softreset) {
2425                 rc = do_probe_reset(ap, softreset, postreset, classes);
2426                 if (rc == 0)
2427                         return 0;
2428         }
2429
2430         if (!hardreset)
2431                 return rc;
2432
2433         rc = do_probe_reset(ap, hardreset, postreset, classes);
2434         if (rc == 0 || rc != -ENODEV)
2435                 return rc;
2436
2437         if (softreset)
2438                 rc = do_probe_reset(ap, softreset, postreset, classes);
2439
2440         return rc;
2441 }
2442
2443 /**
2444  *      ata_dev_same_device - Determine whether new ID matches configured device
2445  *      @ap: port on which the device to compare against resides
2446  *      @dev: device to compare against
2447  *      @new_class: class of the new device
2448  *      @new_id: IDENTIFY page of the new device
2449  *
2450  *      Compare @new_class and @new_id against @dev and determine
2451  *      whether @dev is the device indicated by @new_class and
2452  *      @new_id.
2453  *
2454  *      LOCKING:
2455  *      None.
2456  *
2457  *      RETURNS:
2458  *      1 if @dev matches @new_class and @new_id, 0 otherwise.
2459  */
2460 static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2461                                unsigned int new_class, const u16 *new_id)
2462 {
2463         const u16 *old_id = dev->id;
2464         unsigned char model[2][41], serial[2][21];
2465         u64 new_n_sectors;
2466
2467         if (dev->class != new_class) {
2468                 printk(KERN_INFO
2469                        "ata%u: dev %u class mismatch %d != %d\n",
2470                        ap->id, dev->devno, dev->class, new_class);
2471                 return 0;
2472         }
2473
2474         ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2475         ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2476         ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2477         ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2478         new_n_sectors = ata_id_n_sectors(new_id);
2479
2480         if (strcmp(model[0], model[1])) {
2481                 printk(KERN_INFO
2482                        "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2483                        ap->id, dev->devno, model[0], model[1]);
2484                 return 0;
2485         }
2486
2487         if (strcmp(serial[0], serial[1])) {
2488                 printk(KERN_INFO
2489                        "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2490                        ap->id, dev->devno, serial[0], serial[1]);
2491                 return 0;
2492         }
2493
2494         if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2495                 printk(KERN_INFO
2496                        "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2497                        ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2498                        (unsigned long long)new_n_sectors);
2499                 return 0;
2500         }
2501
2502         return 1;
2503 }
2504
2505 /**
2506  *      ata_dev_revalidate - Revalidate ATA device
2507  *      @ap: port on which the device to revalidate resides
2508  *      @dev: device to revalidate
2509  *      @post_reset: is this revalidation after reset?
2510  *
2511  *      Re-read IDENTIFY page and make sure @dev is still attached to
2512  *      the port.
2513  *
2514  *      LOCKING:
2515  *      Kernel thread context (may sleep)
2516  *
2517  *      RETURNS:
2518  *      0 on success, negative errno otherwise
2519  */
2520 int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2521                        int post_reset)
2522 {
2523         unsigned int class;
2524         u16 *id;
2525         int rc;
2526
2527         if (!ata_dev_present(dev))
2528                 return -ENODEV;
2529
2530         class = dev->class;
2531         id = NULL;
2532
2533         /* allocate & read ID data */
2534         rc = ata_dev_read_id(ap, dev, &class, post_reset, &id);
2535         if (rc)
2536                 goto fail;
2537
2538         /* is the device still there? */
2539         if (!ata_dev_same_device(ap, dev, class, id)) {
2540                 rc = -ENODEV;
2541                 goto fail;
2542         }
2543
2544         kfree(dev->id);
2545         dev->id = id;
2546
2547         /* configure device according to the new ID */
2548         return ata_dev_configure(ap, dev, 0);
2549
2550  fail:
2551         printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2552                ap->id, dev->devno, rc);
2553         kfree(id);
2554         return rc;
2555 }
2556
2557 static const char * const ata_dma_blacklist [] = {
2558         "WDC AC11000H", NULL,
2559         "WDC AC22100H", NULL,
2560         "WDC AC32500H", NULL,
2561         "WDC AC33100H", NULL,
2562         "WDC AC31600H", NULL,
2563         "WDC AC32100H", "24.09P07",
2564         "WDC AC23200L", "21.10N21",
2565         "Compaq CRD-8241B",  NULL,
2566         "CRD-8400B", NULL,
2567         "CRD-8480B", NULL,
2568         "CRD-8482B", NULL,
2569         "CRD-84", NULL,
2570         "SanDisk SDP3B", NULL,
2571         "SanDisk SDP3B-64", NULL,
2572         "SANYO CD-ROM CRD", NULL,
2573         "HITACHI CDR-8", NULL,
2574         "HITACHI CDR-8335", NULL,
2575         "HITACHI CDR-8435", NULL,
2576         "Toshiba CD-ROM XM-6202B", NULL,
2577         "TOSHIBA CD-ROM XM-1702BC", NULL,
2578         "CD-532E-A", NULL,
2579         "E-IDE CD-ROM CR-840", NULL,
2580         "CD-ROM Drive/F5A", NULL,
2581         "WPI CDD-820", NULL,
2582         "SAMSUNG CD-ROM SC-148C", NULL,
2583         "SAMSUNG CD-ROM SC", NULL,
2584         "SanDisk SDP3B-64", NULL,
2585         "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2586         "_NEC DV5800A", NULL,
2587         "SAMSUNG CD-ROM SN-124", "N001"
2588 };
2589
2590 static int ata_strim(char *s, size_t len)
2591 {
2592         len = strnlen(s, len);
2593
2594         /* ATAPI specifies that empty space is blank-filled; remove blanks */
2595         while ((len > 0) && (s[len - 1] == ' ')) {
2596                 len--;
2597                 s[len] = 0;
2598         }
2599         return len;
2600 }
2601
2602 static int ata_dma_blacklisted(const struct ata_device *dev)
2603 {
2604         unsigned char model_num[40];
2605         unsigned char model_rev[16];
2606         unsigned int nlen, rlen;
2607         int i;
2608
2609         ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2610                           sizeof(model_num));
2611         ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2612                           sizeof(model_rev));
2613         nlen = ata_strim(model_num, sizeof(model_num));
2614         rlen = ata_strim(model_rev, sizeof(model_rev));
2615
2616         for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2617                 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2618                         if (ata_dma_blacklist[i+1] == NULL)
2619                                 return 1;
2620                         if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2621                                 return 1;
2622                 }
2623         }
2624         return 0;
2625 }
2626
2627 /**
2628  *      ata_dev_xfermask - Compute supported xfermask of the given device
2629  *      @ap: Port on which the device to compute xfermask for resides
2630  *      @dev: Device to compute xfermask for
2631  *
2632  *      Compute supported xfermask of @dev and store it in
2633  *      dev->*_mask.  This function is responsible for applying all
2634  *      known limits including host controller limits, device
2635  *      blacklist, etc...
2636  *
2637  *      LOCKING:
2638  *      None.
2639  */
2640 static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
2641 {
2642         unsigned long xfer_mask;
2643         int i;
2644
2645         xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
2646                                       ap->udma_mask);
2647
2648         /* use port-wide xfermask for now */
2649         for (i = 0; i < ATA_MAX_DEVICES; i++) {
2650                 struct ata_device *d = &ap->device[i];
2651                 if (!ata_dev_present(d))
2652                         continue;
2653                 xfer_mask &= ata_pack_xfermask(d->pio_mask, d->mwdma_mask,
2654                                                d->udma_mask);
2655                 xfer_mask &= ata_id_xfermask(d->id);
2656                 if (ata_dma_blacklisted(d))
2657                         xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2658         }
2659
2660         if (ata_dma_blacklisted(dev))
2661                 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2662                        "disabling DMA\n", ap->id, dev->devno);
2663
2664         ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2665                             &dev->udma_mask);
2666 }
2667
2668 /**
2669  *      ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2670  *      @ap: Port associated with device @dev
2671  *      @dev: Device to which command will be sent
2672  *
2673  *      Issue SET FEATURES - XFER MODE command to device @dev
2674  *      on port @ap.
2675  *
2676  *      LOCKING:
2677  *      PCI/etc. bus probe sem.
2678  *
2679  *      RETURNS:
2680  *      0 on success, AC_ERR_* mask otherwise.
2681  */
2682
2683 static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2684                                          struct ata_device *dev)
2685 {
2686         struct ata_taskfile tf;
2687         unsigned int err_mask;
2688
2689         /* set up set-features taskfile */
2690         DPRINTK("set features - xfer mode\n");
2691
2692         ata_tf_init(ap, &tf, dev->devno);
2693         tf.command = ATA_CMD_SET_FEATURES;
2694         tf.feature = SETFEATURES_XFER;
2695         tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2696         tf.protocol = ATA_PROT_NODATA;
2697         tf.nsect = dev->xfer_mode;
2698
2699         err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
2700
2701         DPRINTK("EXIT, err_mask=%x\n", err_mask);
2702         return err_mask;
2703 }
2704
2705 /**
2706  *      ata_dev_init_params - Issue INIT DEV PARAMS command
2707  *      @ap: Port associated with device @dev
2708  *      @dev: Device to which command will be sent
2709  *
2710  *      LOCKING:
2711  *      Kernel thread context (may sleep)
2712  *
2713  *      RETURNS:
2714  *      0 on success, AC_ERR_* mask otherwise.
2715  */
2716
2717 static unsigned int ata_dev_init_params(struct ata_port *ap,
2718                                         struct ata_device *dev)
2719 {
2720         struct ata_taskfile tf;
2721         unsigned int err_mask;
2722         u16 sectors = dev->id[6];
2723         u16 heads   = dev->id[3];
2724
2725         /* Number of sectors per track 1-255. Number of heads 1-16 */
2726         if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
2727                 return 0;
2728
2729         /* set up init dev params taskfile */
2730         DPRINTK("init dev params \n");
2731
2732         ata_tf_init(ap, &tf, dev->devno);
2733         tf.command = ATA_CMD_INIT_DEV_PARAMS;
2734         tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2735         tf.protocol = ATA_PROT_NODATA;
2736         tf.nsect = sectors;
2737         tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
2738
2739         err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
2740
2741         DPRINTK("EXIT, err_mask=%x\n", err_mask);
2742         return err_mask;
2743 }
2744
2745 /**
2746  *      ata_sg_clean - Unmap DMA memory associated with command
2747  *      @qc: Command containing DMA memory to be released
2748  *
2749  *      Unmap all mapped DMA memory associated with this command.
2750  *
2751  *      LOCKING:
2752  *      spin_lock_irqsave(host_set lock)
2753  */
2754
2755 static void ata_sg_clean(struct ata_queued_cmd *qc)
2756 {
2757         struct ata_port *ap = qc->ap;
2758         struct scatterlist *sg = qc->__sg;
2759         int dir = qc->dma_dir;
2760         void *pad_buf = NULL;
2761
2762         WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
2763         WARN_ON(sg == NULL);
2764
2765         if (qc->flags & ATA_QCFLAG_SINGLE)
2766                 WARN_ON(qc->n_elem > 1);
2767
2768         VPRINTK("unmapping %u sg elements\n", qc->n_elem);
2769
2770         /* if we padded the buffer out to 32-bit bound, and data
2771          * xfer direction is from-device, we must copy from the
2772          * pad buffer back into the supplied buffer
2773          */
2774         if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
2775                 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2776
2777         if (qc->flags & ATA_QCFLAG_SG) {
2778                 if (qc->n_elem)
2779                         dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
2780                 /* restore last sg */
2781                 sg[qc->orig_n_elem - 1].length += qc->pad_len;
2782                 if (pad_buf) {
2783                         struct scatterlist *psg = &qc->pad_sgent;
2784                         void *addr = kmap_atomic(psg->page, KM_IRQ0);
2785                         memcpy(addr + psg->offset, pad_buf, qc->pad_len);
2786                         kunmap_atomic(addr, KM_IRQ0);
2787                 }
2788         } else {
2789                 if (qc->n_elem)
2790                         dma_unmap_single(ap->dev,
2791                                 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
2792                                 dir);
2793                 /* restore sg */
2794                 sg->length += qc->pad_len;
2795                 if (pad_buf)
2796                         memcpy(qc->buf_virt + sg->length - qc->pad_len,
2797                                pad_buf, qc->pad_len);
2798         }
2799
2800         qc->flags &= ~ATA_QCFLAG_DMAMAP;
2801         qc->__sg = NULL;
2802 }
2803
2804 /**
2805  *      ata_fill_sg - Fill PCI IDE PRD table
2806  *      @qc: Metadata associated with taskfile to be transferred
2807  *
2808  *      Fill PCI IDE PRD (scatter-gather) table with segments
2809  *      associated with the current disk command.
2810  *
2811  *      LOCKING:
2812  *      spin_lock_irqsave(host_set lock)
2813  *
2814  */
2815 static void ata_fill_sg(struct ata_queued_cmd *qc)
2816 {
2817         struct ata_port *ap = qc->ap;
2818         struct scatterlist *sg;
2819         unsigned int idx;
2820
2821         WARN_ON(qc->__sg == NULL);
2822         WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
2823
2824         idx = 0;
2825         ata_for_each_sg(sg, qc) {
2826                 u32 addr, offset;
2827                 u32 sg_len, len;
2828
2829                 /* determine if physical DMA addr spans 64K boundary.
2830                  * Note h/w doesn't support 64-bit, so we unconditionally
2831                  * truncate dma_addr_t to u32.
2832                  */
2833                 addr = (u32) sg_dma_address(sg);
2834                 sg_len = sg_dma_len(sg);
2835
2836                 while (sg_len) {
2837                         offset = addr & 0xffff;
2838                         len = sg_len;
2839                         if ((offset + sg_len) > 0x10000)
2840                                 len = 0x10000 - offset;
2841
2842                         ap->prd[idx].addr = cpu_to_le32(addr);
2843                         ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
2844                         VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
2845
2846                         idx++;
2847                         sg_len -= len;
2848                         addr += len;
2849                 }
2850         }
2851
2852         if (idx)
2853                 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
2854 }
2855 /**
2856  *      ata_check_atapi_dma - Check whether ATAPI DMA can be supported
2857  *      @qc: Metadata associated with taskfile to check
2858  *
2859  *      Allow low-level driver to filter ATA PACKET commands, returning
2860  *      a status indicating whether or not it is OK to use DMA for the
2861  *      supplied PACKET command.
2862  *
2863  *      LOCKING:
2864  *      spin_lock_irqsave(host_set lock)
2865  *
2866  *      RETURNS: 0 when ATAPI DMA can be used
2867  *               nonzero otherwise
2868  */
2869 int ata_check_atapi_dma(struct ata_queued_cmd *qc)
2870 {
2871         struct ata_port *ap = qc->ap;
2872         int rc = 0; /* Assume ATAPI DMA is OK by default */
2873
2874         if (ap->ops->check_atapi_dma)
2875                 rc = ap->ops->check_atapi_dma(qc);
2876
2877         return rc;
2878 }
2879 /**
2880  *      ata_qc_prep - Prepare taskfile for submission
2881  *      @qc: Metadata associated with taskfile to be prepared
2882  *
2883  *      Prepare ATA taskfile for submission.
2884  *
2885  *      LOCKING:
2886  *      spin_lock_irqsave(host_set lock)
2887  */
2888 void ata_qc_prep(struct ata_queued_cmd *qc)
2889 {
2890         if (!(qc->flags & ATA_QCFLAG_DMAMAP))
2891                 return;
2892
2893         ata_fill_sg(qc);
2894 }
2895
2896 void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
2897
2898 /**
2899  *      ata_sg_init_one - Associate command with memory buffer
2900  *      @qc: Command to be associated
2901  *      @buf: Memory buffer
2902  *      @buflen: Length of memory buffer, in bytes.
2903  *
2904  *      Initialize the data-related elements of queued_cmd @qc
2905  *      to point to a single memory buffer, @buf of byte length @buflen.
2906  *
2907  *      LOCKING:
2908  *      spin_lock_irqsave(host_set lock)
2909  */
2910
2911 void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
2912 {
2913         struct scatterlist *sg;
2914
2915         qc->flags |= ATA_QCFLAG_SINGLE;
2916
2917         memset(&qc->sgent, 0, sizeof(qc->sgent));
2918         qc->__sg = &qc->sgent;
2919         qc->n_elem = 1;
2920         qc->orig_n_elem = 1;
2921         qc->buf_virt = buf;
2922
2923         sg = qc->__sg;
2924         sg_init_one(sg, buf, buflen);
2925 }
2926
2927 /**
2928  *      ata_sg_init - Associate command with scatter-gather table.
2929  *      @qc: Command to be associated
2930  *      @sg: Scatter-gather table.
2931  *      @n_elem: Number of elements in s/g table.
2932  *
2933  *      Initialize the data-related elements of queued_cmd @qc
2934  *      to point to a scatter-gather table @sg, containing @n_elem
2935  *      elements.
2936  *
2937  *      LOCKING:
2938  *      spin_lock_irqsave(host_set lock)
2939  */
2940
2941 void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
2942                  unsigned int n_elem)
2943 {
2944         qc->flags |= ATA_QCFLAG_SG;
2945         qc->__sg = sg;
2946         qc->n_elem = n_elem;
2947         qc->orig_n_elem = n_elem;
2948 }
2949
2950 /**
2951  *      ata_sg_setup_one - DMA-map the memory buffer associated with a command.
2952  *      @qc: Command with memory buffer to be mapped.
2953  *
2954  *      DMA-map the memory buffer associated with queued_cmd @qc.
2955  *
2956  *      LOCKING:
2957  *      spin_lock_irqsave(host_set lock)
2958  *
2959  *      RETURNS:
2960  *      Zero on success, negative on error.
2961  */
2962
2963 static int ata_sg_setup_one(struct ata_queued_cmd *qc)
2964 {
2965         struct ata_port *ap = qc->ap;
2966         int dir = qc->dma_dir;
2967         struct scatterlist *sg = qc->__sg;
2968         dma_addr_t dma_address;
2969         int trim_sg = 0;
2970
2971         /* we must lengthen transfers to end on a 32-bit boundary */
2972         qc->pad_len = sg->length & 3;
2973         if (qc->pad_len) {
2974                 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2975                 struct scatterlist *psg = &qc->pad_sgent;
2976
2977                 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
2978
2979                 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
2980
2981                 if (qc->tf.flags & ATA_TFLAG_WRITE)
2982                         memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
2983                                qc->pad_len);
2984
2985                 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
2986                 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
2987                 /* trim sg */
2988                 sg->length -= qc->pad_len;
2989                 if (sg->length == 0)
2990                         trim_sg = 1;
2991
2992                 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
2993                         sg->length, qc->pad_len);
2994         }
2995
2996         if (trim_sg) {
2997                 qc->n_elem--;
2998                 goto skip_map;
2999         }
3000
3001         dma_address = dma_map_single(ap->dev, qc->buf_virt,
3002                                      sg->length, dir);
3003         if (dma_mapping_error(dma_address)) {
3004                 /* restore sg */
3005                 sg->length += qc->pad_len;
3006                 return -1;
3007         }
3008
3009         sg_dma_address(sg) = dma_address;
3010         sg_dma_len(sg) = sg->length;
3011
3012 skip_map:
3013         DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3014                 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3015
3016         return 0;
3017 }
3018
3019 /**
3020  *      ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3021  *      @qc: Command with scatter-gather table to be mapped.
3022  *
3023  *      DMA-map the scatter-gather table associated with queued_cmd @qc.
3024  *
3025  *      LOCKING:
3026  *      spin_lock_irqsave(host_set lock)
3027  *
3028  *      RETURNS:
3029  *      Zero on success, negative on error.
3030  *
3031  */
3032
3033 static int ata_sg_setup(struct ata_queued_cmd *qc)
3034 {
3035         struct ata_port *ap = qc->ap;
3036         struct scatterlist *sg = qc->__sg;
3037         struct scatterlist *lsg = &sg[qc->n_elem - 1];
3038         int n_elem, pre_n_elem, dir, trim_sg = 0;
3039
3040         VPRINTK("ENTER, ata%u\n", ap->id);
3041         WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
3042
3043         /* we must lengthen transfers to end on a 32-bit boundary */
3044         qc->pad_len = lsg->length & 3;
3045         if (qc->pad_len) {
3046                 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3047                 struct scatterlist *psg = &qc->pad_sgent;
3048                 unsigned int offset;
3049
3050                 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
3051
3052                 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3053
3054                 /*
3055                  * psg->page/offset are used to copy to-be-written
3056                  * data in this function or read data in ata_sg_clean.
3057                  */
3058                 offset = lsg->offset + lsg->length - qc->pad_len;
3059                 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3060                 psg->offset = offset_in_page(offset);
3061
3062                 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3063                         void *addr = kmap_atomic(psg->page, KM_IRQ0);
3064                         memcpy(pad_buf, addr + psg->offset, qc->pad_len);
3065                         kunmap_atomic(addr, KM_IRQ0);
3066                 }
3067
3068                 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3069                 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3070                 /* trim last sg */
3071                 lsg->length -= qc->pad_len;
3072                 if (lsg->length == 0)
3073                         trim_sg = 1;
3074
3075                 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3076                         qc->n_elem - 1, lsg->length, qc->pad_len);
3077         }
3078
3079         pre_n_elem = qc->n_elem;
3080         if (trim_sg && pre_n_elem)
3081                 pre_n_elem--;
3082
3083         if (!pre_n_elem) {
3084                 n_elem = 0;
3085                 goto skip_map;
3086         }
3087
3088         dir = qc->dma_dir;
3089         n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
3090         if (n_elem < 1) {
3091                 /* restore last sg */
3092                 lsg->length += qc->pad_len;
3093                 return -1;
3094         }
3095
3096         DPRINTK("%d sg elements mapped\n", n_elem);
3097
3098 skip_map:
3099         qc->n_elem = n_elem;
3100
3101         return 0;
3102 }
3103
3104 /**
3105  *      ata_poll_qc_complete - turn irq back on and finish qc
3106  *      @qc: Command to complete
3107  *      @err_mask: ATA status register content
3108  *
3109  *      LOCKING:
3110  *      None.  (grabs host lock)
3111  */
3112
3113 void ata_poll_qc_complete(struct ata_queued_cmd *qc)
3114 {
3115         struct ata_port *ap = qc->ap;
3116         unsigned long flags;
3117
3118         spin_lock_irqsave(&ap->host_set->lock, flags);
3119         ap->flags &= ~ATA_FLAG_NOINTR;
3120         ata_irq_on(ap);
3121         ata_qc_complete(qc);
3122         spin_unlock_irqrestore(&ap->host_set->lock, flags);
3123 }
3124
3125 /**
3126  *      ata_pio_poll - poll using PIO, depending on current state
3127  *      @ap: the target ata_port
3128  *
3129  *      LOCKING:
3130  *      None.  (executing in kernel thread context)
3131  *
3132  *      RETURNS:
3133  *      timeout value to use
3134  */
3135
3136 static unsigned long ata_pio_poll(struct ata_port *ap)
3137 {
3138         struct ata_queued_cmd *qc;
3139         u8 status;
3140         unsigned int poll_state = HSM_ST_UNKNOWN;
3141         unsigned int reg_state = HSM_ST_UNKNOWN;
3142
3143         qc = ata_qc_from_tag(ap, ap->active_tag);
3144         WARN_ON(qc == NULL);
3145
3146         switch (ap->hsm_task_state) {
3147         case HSM_ST:
3148         case HSM_ST_POLL:
3149                 poll_state = HSM_ST_POLL;
3150                 reg_state = HSM_ST;
3151                 break;
3152         case HSM_ST_LAST:
3153         case HSM_ST_LAST_POLL:
3154                 poll_state = HSM_ST_LAST_POLL;
3155                 reg_state = HSM_ST_LAST;
3156                 break;
3157         default:
3158                 BUG();
3159                 break;
3160         }
3161
3162         status = ata_chk_status(ap);
3163         if (status & ATA_BUSY) {
3164                 if (time_after(jiffies, ap->pio_task_timeout)) {
3165                         qc->err_mask |= AC_ERR_TIMEOUT;
3166                         ap->hsm_task_state = HSM_ST_TMOUT;
3167                         return 0;
3168                 }
3169                 ap->hsm_task_state = poll_state;
3170                 return ATA_SHORT_PAUSE;
3171         }
3172
3173         ap->hsm_task_state = reg_state;
3174         return 0;
3175 }
3176
3177 /**
3178  *      ata_pio_complete - check if drive is busy or idle
3179  *      @ap: the target ata_port
3180  *
3181  *      LOCKING:
3182  *      None.  (executing in kernel thread context)
3183  *
3184  *      RETURNS:
3185  *      Non-zero if qc completed, zero otherwise.
3186  */
3187
3188 static int ata_pio_complete (struct ata_port *ap)
3189 {
3190         struct ata_queued_cmd *qc;
3191         u8 drv_stat;
3192
3193         /*
3194          * This is purely heuristic.  This is a fast path.  Sometimes when
3195          * we enter, BSY will be cleared in a chk-status or two.  If not,
3196          * the drive is probably seeking or something.  Snooze for a couple
3197          * msecs, then chk-status again.  If still busy, fall back to
3198          * HSM_ST_POLL state.
3199          */
3200         drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3201         if (drv_stat & ATA_BUSY) {
3202                 msleep(2);
3203                 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3204                 if (drv_stat & ATA_BUSY) {
3205                         ap->hsm_task_state = HSM_ST_LAST_POLL;
3206                         ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3207                         return 0;
3208                 }
3209         }
3210
3211         qc = ata_qc_from_tag(ap, ap->active_tag);
3212         WARN_ON(qc == NULL);
3213
3214         drv_stat = ata_wait_idle(ap);
3215         if (!ata_ok(drv_stat)) {
3216                 qc->err_mask |= __ac_err_mask(drv_stat);
3217                 ap->hsm_task_state = HSM_ST_ERR;
3218                 return 0;
3219         }
3220
3221         ap->hsm_task_state = HSM_ST_IDLE;
3222
3223         WARN_ON(qc->err_mask);
3224         ata_poll_qc_complete(qc);
3225
3226         /* another command may start at this point */
3227
3228         return 1;
3229 }
3230
3231
3232 /**
3233  *      swap_buf_le16 - swap halves of 16-bit words in place
3234  *      @buf:  Buffer to swap
3235  *      @buf_words:  Number of 16-bit words in buffer.
3236  *
3237  *      Swap halves of 16-bit words if needed to convert from
3238  *      little-endian byte order to native cpu byte order, or
3239  *      vice-versa.
3240  *
3241  *      LOCKING:
3242  *      Inherited from caller.
3243  */
3244 void swap_buf_le16(u16 *buf, unsigned int buf_words)
3245 {
3246 #ifdef __BIG_ENDIAN
3247         unsigned int i;
3248
3249         for (i = 0; i < buf_words; i++)
3250                 buf[i] = le16_to_cpu(buf[i]);
3251 #endif /* __BIG_ENDIAN */
3252 }
3253
3254 /**
3255  *      ata_mmio_data_xfer - Transfer data by MMIO
3256  *      @ap: port to read/write
3257  *      @buf: data buffer
3258  *      @buflen: buffer length
3259  *      @write_data: read/write
3260  *
3261  *      Transfer data from/to the device data register by MMIO.
3262  *
3263  *      LOCKING:
3264  *      Inherited from caller.
3265  */
3266
3267 static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3268                                unsigned int buflen, int write_data)
3269 {
3270         unsigned int i;
3271         unsigned int words = buflen >> 1;
3272         u16 *buf16 = (u16 *) buf;
3273         void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3274
3275         /* Transfer multiple of 2 bytes */
3276         if (write_data) {
3277                 for (i = 0; i < words; i++)
3278                         writew(le16_to_cpu(buf16[i]), mmio);
3279         } else {
3280                 for (i = 0; i < words; i++)
3281                         buf16[i] = cpu_to_le16(readw(mmio));
3282         }
3283
3284         /* Transfer trailing 1 byte, if any. */
3285         if (unlikely(buflen & 0x01)) {
3286                 u16 align_buf[1] = { 0 };
3287                 unsigned char *trailing_buf = buf + buflen - 1;
3288
3289                 if (write_data) {
3290                         memcpy(align_buf, trailing_buf, 1);
3291                         writew(le16_to_cpu(align_buf[0]), mmio);
3292                 } else {
3293                         align_buf[0] = cpu_to_le16(readw(mmio));
3294                         memcpy(trailing_buf, align_buf, 1);
3295                 }
3296         }
3297 }
3298
3299 /**
3300  *      ata_pio_data_xfer - Transfer data by PIO
3301  *      @ap: port to read/write
3302  *      @buf: data buffer
3303  *      @buflen: buffer length
3304  *      @write_data: read/write
3305  *
3306  *      Transfer data from/to the device data register by PIO.
3307  *
3308  *      LOCKING:
3309  *      Inherited from caller.
3310  */
3311
3312 static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3313                               unsigned int buflen, int write_data)
3314 {
3315         unsigned int words = buflen >> 1;
3316
3317         /* Transfer multiple of 2 bytes */
3318         if (write_data)
3319                 outsw(ap->ioaddr.data_addr, buf, words);
3320         else
3321                 insw(ap->ioaddr.data_addr, buf, words);
3322
3323         /* Transfer trailing 1 byte, if any. */
3324         if (unlikely(buflen & 0x01)) {
3325                 u16 align_buf[1] = { 0 };
3326                 unsigned char *trailing_buf = buf + buflen - 1;
3327
3328                 if (write_data) {
3329                         memcpy(align_buf, trailing_buf, 1);
3330                         outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3331                 } else {
3332                         align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3333                         memcpy(trailing_buf, align_buf, 1);
3334                 }
3335         }
3336 }
3337
3338 /**
3339  *      ata_data_xfer - Transfer data from/to the data register.
3340  *      @ap: port to read/write
3341  *      @buf: data buffer
3342  *      @buflen: buffer length
3343  *      @do_write: read/write
3344  *
3345  *      Transfer data from/to the device data register.
3346  *
3347  *      LOCKING:
3348  *      Inherited from caller.
3349  */
3350
3351 static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3352                           unsigned int buflen, int do_write)
3353 {
3354         /* Make the crap hardware pay the costs not the good stuff */
3355         if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3356                 unsigned long flags;
3357                 local_irq_save(flags);
3358                 if (ap->flags & ATA_FLAG_MMIO)
3359                         ata_mmio_data_xfer(ap, buf, buflen, do_write);
3360                 else
3361                         ata_pio_data_xfer(ap, buf, buflen, do_write);
3362                 local_irq_restore(flags);
3363         } else {
3364                 if (ap->flags & ATA_FLAG_MMIO)
3365                         ata_mmio_data_xfer(ap, buf, buflen, do_write);
3366                 else
3367                         ata_pio_data_xfer(ap, buf, buflen, do_write);
3368         }
3369 }
3370
3371 /**
3372  *      ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3373  *      @qc: Command on going
3374  *
3375  *      Transfer ATA_SECT_SIZE of data from/to the ATA device.
3376  *
3377  *      LOCKING:
3378  *      Inherited from caller.
3379  */
3380
3381 static void ata_pio_sector(struct ata_queued_cmd *qc)
3382 {
3383         int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3384         struct scatterlist *sg = qc->__sg;
3385         struct ata_port *ap = qc->ap;
3386         struct page *page;
3387         unsigned int offset;
3388         unsigned char *buf;
3389
3390         if (qc->cursect == (qc->nsect - 1))
3391                 ap->hsm_task_state = HSM_ST_LAST;
3392
3393         page = sg[qc->cursg].page;
3394         offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3395
3396         /* get the current page and offset */
3397         page = nth_page(page, (offset >> PAGE_SHIFT));
3398         offset %= PAGE_SIZE;
3399
3400         buf = kmap(page) + offset;
3401
3402         qc->cursect++;
3403         qc->cursg_ofs++;
3404
3405         if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
3406                 qc->cursg++;
3407                 qc->cursg_ofs = 0;
3408         }
3409
3410         DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3411
3412         /* do the actual data transfer */
3413         do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3414         ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3415
3416         kunmap(page);
3417 }
3418
3419 /**
3420  *      __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3421  *      @qc: Command on going
3422  *      @bytes: number of bytes
3423  *
3424  *      Transfer Transfer data from/to the ATAPI device.
3425  *
3426  *      LOCKING:
3427  *      Inherited from caller.
3428  *
3429  */
3430
3431 static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3432 {
3433         int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3434         struct scatterlist *sg = qc->__sg;
3435         struct ata_port *ap = qc->ap;
3436         struct page *page;
3437         unsigned char *buf;
3438         unsigned int offset, count;
3439
3440         if (qc->curbytes + bytes >= qc->nbytes)
3441                 ap->hsm_task_state = HSM_ST_LAST;
3442
3443 next_sg:
3444         if (unlikely(qc->cursg >= qc->n_elem)) {
3445                 /*
3446                  * The end of qc->sg is reached and the device expects
3447                  * more data to transfer. In order not to overrun qc->sg
3448                  * and fulfill length specified in the byte count register,
3449                  *    - for read case, discard trailing data from the device
3450                  *    - for write case, padding zero data to the device
3451                  */
3452                 u16 pad_buf[1] = { 0 };
3453                 unsigned int words = bytes >> 1;
3454                 unsigned int i;
3455
3456                 if (words) /* warning if bytes > 1 */
3457                         printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
3458                                ap->id, bytes);
3459
3460                 for (i = 0; i < words; i++)
3461                         ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3462
3463                 ap->hsm_task_state = HSM_ST_LAST;
3464                 return;
3465         }
3466
3467         sg = &qc->__sg[qc->cursg];
3468
3469         page = sg->page;
3470         offset = sg->offset + qc->cursg_ofs;
3471
3472         /* get the current page and offset */
3473         page = nth_page(page, (offset >> PAGE_SHIFT));
3474         offset %= PAGE_SIZE;
3475
3476         /* don't overrun current sg */
3477         count = min(sg->length - qc->cursg_ofs, bytes);
3478
3479         /* don't cross page boundaries */
3480         count = min(count, (unsigned int)PAGE_SIZE - offset);
3481
3482         buf = kmap(page) + offset;
3483
3484         bytes -= count;
3485         qc->curbytes += count;
3486         qc->cursg_ofs += count;
3487
3488         if (qc->cursg_ofs == sg->length) {
3489                 qc->cursg++;
3490                 qc->cursg_ofs = 0;
3491         }
3492
3493         DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3494
3495         /* do the actual data transfer */
3496         ata_data_xfer(ap, buf, count, do_write);
3497
3498         kunmap(page);
3499
3500         if (bytes)
3501                 goto next_sg;
3502 }
3503
3504 /**
3505  *      atapi_pio_bytes - Transfer data from/to the ATAPI device.
3506  *      @qc: Command on going
3507  *
3508  *      Transfer Transfer data from/to the ATAPI device.
3509  *
3510  *      LOCKING:
3511  *      Inherited from caller.
3512  */
3513
3514 static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3515 {
3516         struct ata_port *ap = qc->ap;
3517         struct ata_device *dev = qc->dev;
3518         unsigned int ireason, bc_lo, bc_hi, bytes;
3519         int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3520
3521         ap->ops->tf_read(ap, &qc->tf);
3522         ireason = qc->tf.nsect;
3523         bc_lo = qc->tf.lbam;
3524         bc_hi = qc->tf.lbah;
3525         bytes = (bc_hi << 8) | bc_lo;
3526
3527         /* shall be cleared to zero, indicating xfer of data */
3528         if (ireason & (1 << 0))
3529                 goto err_out;
3530
3531         /* make sure transfer direction matches expected */
3532         i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3533         if (do_write != i_write)
3534                 goto err_out;
3535
3536         __atapi_pio_bytes(qc, bytes);
3537
3538         return;
3539
3540 err_out:
3541         printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3542               ap->id, dev->devno);
3543         qc->err_mask |= AC_ERR_HSM;
3544         ap->hsm_task_state = HSM_ST_ERR;
3545 }
3546
3547 /**
3548  *      ata_pio_block - start PIO on a block
3549  *      @ap: the target ata_port
3550  *
3551  *      LOCKING:
3552  *      None.  (executing in kernel thread context)
3553  */
3554
3555 static void ata_pio_block(struct ata_port *ap)
3556 {
3557         struct ata_queued_cmd *qc;
3558         u8 status;
3559
3560         /*
3561          * This is purely heuristic.  This is a fast path.
3562          * Sometimes when we enter, BSY will be cleared in
3563          * a chk-status or two.  If not, the drive is probably seeking
3564          * or something.  Snooze for a couple msecs, then
3565          * chk-status again.  If still busy, fall back to
3566          * HSM_ST_POLL state.
3567          */
3568         status = ata_busy_wait(ap, ATA_BUSY, 5);
3569         if (status & ATA_BUSY) {
3570                 msleep(2);
3571                 status = ata_busy_wait(ap, ATA_BUSY, 10);
3572                 if (status & ATA_BUSY) {
3573                         ap->hsm_task_state = HSM_ST_POLL;
3574                         ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3575                         return;
3576                 }
3577         }
3578
3579         qc = ata_qc_from_tag(ap, ap->active_tag);
3580         WARN_ON(qc == NULL);
3581
3582         /* check error */
3583         if (status & (ATA_ERR | ATA_DF)) {
3584                 qc->err_mask |= AC_ERR_DEV;
3585                 ap->hsm_task_state = HSM_ST_ERR;
3586                 return;
3587         }
3588
3589         /* transfer data if any */
3590         if (is_atapi_taskfile(&qc->tf)) {
3591                 /* DRQ=0 means no more data to transfer */
3592                 if ((status & ATA_DRQ) == 0) {
3593                         ap->hsm_task_state = HSM_ST_LAST;
3594                         return;
3595                 }
3596
3597                 atapi_pio_bytes(qc);
3598         } else {
3599                 /* handle BSY=0, DRQ=0 as error */
3600                 if ((status & ATA_DRQ) == 0) {
3601                         qc->err_mask |= AC_ERR_HSM;
3602                         ap->hsm_task_state = HSM_ST_ERR;
3603                         return;
3604                 }
3605
3606                 ata_pio_sector(qc);
3607         }
3608 }
3609
3610 static void ata_pio_error(struct ata_port *ap)
3611 {
3612         struct ata_queued_cmd *qc;
3613
3614         qc = ata_qc_from_tag(ap, ap->active_tag);
3615         WARN_ON(qc == NULL);
3616
3617         if (qc->tf.command != ATA_CMD_PACKET)
3618                 printk(KERN_WARNING "ata%u: PIO error\n", ap->id);
3619
3620         /* make sure qc->err_mask is available to
3621          * know what's wrong and recover
3622          */
3623         WARN_ON(qc->err_mask == 0);
3624
3625         ap->hsm_task_state = HSM_ST_IDLE;
3626
3627         ata_poll_qc_complete(qc);
3628 }
3629
3630 static void ata_pio_task(void *_data)
3631 {
3632         struct ata_port *ap = _data;
3633         unsigned long timeout;
3634         int qc_completed;
3635
3636 fsm_start:
3637         timeout = 0;
3638         qc_completed = 0;
3639
3640         switch (ap->hsm_task_state) {
3641         case HSM_ST_IDLE:
3642                 return;
3643
3644         case HSM_ST:
3645                 ata_pio_block(ap);
3646                 break;
3647
3648         case HSM_ST_LAST:
3649                 qc_completed = ata_pio_complete(ap);
3650                 break;
3651
3652         case HSM_ST_POLL:
3653         case HSM_ST_LAST_POLL:
3654                 timeout = ata_pio_poll(ap);
3655                 break;
3656
3657         case HSM_ST_TMOUT:
3658         case HSM_ST_ERR:
3659                 ata_pio_error(ap);
3660                 return;
3661         }
3662
3663         if (timeout)
3664                 ata_port_queue_task(ap, ata_pio_task, ap, timeout);
3665         else if (!qc_completed)
3666                 goto fsm_start;
3667 }
3668
3669 /**
3670  *      atapi_packet_task - Write CDB bytes to hardware
3671  *      @_data: Port to which ATAPI device is attached.
3672  *
3673  *      When device has indicated its readiness to accept
3674  *      a CDB, this function is called.  Send the CDB.
3675  *      If DMA is to be performed, exit immediately.
3676  *      Otherwise, we are in polling mode, so poll
3677  *      status under operation succeeds or fails.
3678  *
3679  *      LOCKING:
3680  *      Kernel thread context (may sleep)
3681  */
3682
3683 static void atapi_packet_task(void *_data)
3684 {
3685         struct ata_port *ap = _data;
3686         struct ata_queued_cmd *qc;
3687         u8 status;
3688
3689         qc = ata_qc_from_tag(ap, ap->active_tag);
3690         WARN_ON(qc == NULL);
3691         WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
3692
3693         /* sleep-wait for BSY to clear */
3694         DPRINTK("busy wait\n");
3695         if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
3696                 qc->err_mask |= AC_ERR_TIMEOUT;
3697                 goto err_out;
3698         }
3699
3700         /* make sure DRQ is set */
3701         status = ata_chk_status(ap);
3702         if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
3703                 qc->err_mask |= AC_ERR_HSM;
3704                 goto err_out;
3705         }
3706
3707         /* send SCSI cdb */
3708         DPRINTK("send cdb\n");
3709         WARN_ON(qc->dev->cdb_len < 12);
3710
3711         if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3712             qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
3713                 unsigned long flags;
3714
3715                 /* Once we're done issuing command and kicking bmdma,
3716                  * irq handler takes over.  To not lose irq, we need
3717                  * to clear NOINTR flag before sending cdb, but
3718                  * interrupt handler shouldn't be invoked before we're
3719                  * finished.  Hence, the following locking.
3720                  */
3721                 spin_lock_irqsave(&ap->host_set->lock, flags);
3722                 ap->flags &= ~ATA_FLAG_NOINTR;
3723                 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3724                 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
3725                         ap->ops->bmdma_start(qc);       /* initiate bmdma */
3726                 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3727         } else {
3728                 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3729
3730                 /* PIO commands are handled by polling */
3731                 ap->hsm_task_state = HSM_ST;
3732                 ata_port_queue_task(ap, ata_pio_task, ap, 0);
3733         }
3734
3735         return;
3736
3737 err_out:
3738         ata_poll_qc_complete(qc);
3739 }
3740
3741 /**
3742  *      ata_qc_timeout - Handle timeout of queued command
3743  *      @qc: Command that timed out
3744  *
3745  *      Some part of the kernel (currently, only the SCSI layer)
3746  *      has noticed that the active command on port @ap has not
3747  *      completed after a specified length of time.  Handle this
3748  *      condition by disabling DMA (if necessary) and completing
3749  *      transactions, with error if necessary.
3750  *
3751  *      This also handles the case of the "lost interrupt", where
3752  *      for some reason (possibly hardware bug, possibly driver bug)
3753  *      an interrupt was not delivered to the driver, even though the
3754  *      transaction completed successfully.
3755  *
3756  *      LOCKING:
3757  *      Inherited from SCSI layer (none, can sleep)
3758  */
3759
3760 static void ata_qc_timeout(struct ata_queued_cmd *qc)
3761 {
3762         struct ata_port *ap = qc->ap;
3763         struct ata_host_set *host_set = ap->host_set;
3764         u8 host_stat = 0, drv_stat;
3765         unsigned long flags;
3766
3767         DPRINTK("ENTER\n");
3768
3769         ap->hsm_task_state = HSM_ST_IDLE;
3770
3771         spin_lock_irqsave(&host_set->lock, flags);
3772
3773         switch (qc->tf.protocol) {
3774
3775         case ATA_PROT_DMA:
3776         case ATA_PROT_ATAPI_DMA:
3777                 host_stat = ap->ops->bmdma_status(ap);
3778
3779                 /* before we do anything else, clear DMA-Start bit */
3780                 ap->ops->bmdma_stop(qc);
3781
3782                 /* fall through */
3783
3784         default:
3785                 ata_altstatus(ap);
3786                 drv_stat = ata_chk_status(ap);
3787
3788                 /* ack bmdma irq events */
3789                 ap->ops->irq_clear(ap);
3790
3791                 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
3792                        ap->id, qc->tf.command, drv_stat, host_stat);
3793
3794                 /* complete taskfile transaction */
3795                 qc->err_mask |= ac_err_mask(drv_stat);
3796                 break;
3797         }
3798
3799         spin_unlock_irqrestore(&host_set->lock, flags);
3800
3801         ata_eh_qc_complete(qc);
3802
3803         DPRINTK("EXIT\n");
3804 }
3805
3806 /**
3807  *      ata_eng_timeout - Handle timeout of queued command
3808  *      @ap: Port on which timed-out command is active
3809  *
3810  *      Some part of the kernel (currently, only the SCSI layer)
3811  *      has noticed that the active command on port @ap has not
3812  *      completed after a specified length of time.  Handle this
3813  *      condition by disabling DMA (if necessary) and completing
3814  *      transactions, with error if necessary.
3815  *
3816  *      This also handles the case of the "lost interrupt", where
3817  *      for some reason (possibly hardware bug, possibly driver bug)
3818  *      an interrupt was not delivered to the driver, even though the
3819  *      transaction completed successfully.
3820  *
3821  *      LOCKING:
3822  *      Inherited from SCSI layer (none, can sleep)
3823  */
3824
3825 void ata_eng_timeout(struct ata_port *ap)
3826 {
3827         DPRINTK("ENTER\n");
3828
3829         ata_qc_timeout(ata_qc_from_tag(ap, ap->active_tag));
3830
3831         DPRINTK("EXIT\n");
3832 }
3833
3834 /**
3835  *      ata_qc_new - Request an available ATA command, for queueing
3836  *      @ap: Port associated with device @dev
3837  *      @dev: Device from whom we request an available command structure
3838  *
3839  *      LOCKING:
3840  *      None.
3841  */
3842
3843 static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
3844 {
3845         struct ata_queued_cmd *qc = NULL;
3846         unsigned int i;
3847
3848         for (i = 0; i < ATA_MAX_QUEUE; i++)
3849                 if (!test_and_set_bit(i, &ap->qactive)) {
3850                         qc = ata_qc_from_tag(ap, i);
3851                         break;
3852                 }
3853
3854         if (qc)
3855                 qc->tag = i;
3856
3857         return qc;
3858 }
3859
3860 /**
3861  *      ata_qc_new_init - Request an available ATA command, and initialize it
3862  *      @ap: Port associated with device @dev
3863  *      @dev: Device from whom we request an available command structure
3864  *
3865  *      LOCKING:
3866  *      None.
3867  */
3868
3869 struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
3870                                       struct ata_device *dev)
3871 {
3872         struct ata_queued_cmd *qc;
3873
3874         qc = ata_qc_new(ap);
3875         if (qc) {
3876                 qc->scsicmd = NULL;
3877                 qc->ap = ap;
3878                 qc->dev = dev;
3879
3880                 ata_qc_reinit(qc);
3881         }
3882
3883         return qc;
3884 }
3885
3886 /**
3887  *      ata_qc_free - free unused ata_queued_cmd
3888  *      @qc: Command to complete
3889  *
3890  *      Designed to free unused ata_queued_cmd object
3891  *      in case something prevents using it.
3892  *
3893  *      LOCKING:
3894  *      spin_lock_irqsave(host_set lock)
3895  */
3896 void ata_qc_free(struct ata_queued_cmd *qc)
3897 {
3898         struct ata_port *ap = qc->ap;
3899         unsigned int tag;
3900
3901         WARN_ON(qc == NULL);    /* ata_qc_from_tag _might_ return NULL */
3902
3903         qc->flags = 0;
3904         tag = qc->tag;
3905         if (likely(ata_tag_valid(tag))) {
3906                 if (tag == ap->active_tag)
3907                         ap->active_tag = ATA_TAG_POISON;
3908                 qc->tag = ATA_TAG_POISON;
3909                 clear_bit(tag, &ap->qactive);
3910         }
3911 }
3912
3913 void __ata_qc_complete(struct ata_queued_cmd *qc)
3914 {
3915         WARN_ON(qc == NULL);    /* ata_qc_from_tag _might_ return NULL */
3916         WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
3917
3918         if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
3919                 ata_sg_clean(qc);
3920
3921         /* atapi: mark qc as inactive to prevent the interrupt handler
3922          * from completing the command twice later, before the error handler
3923          * is called. (when rc != 0 and atapi request sense is needed)
3924          */
3925         qc->flags &= ~ATA_QCFLAG_ACTIVE;
3926
3927         /* call completion callback */
3928         qc->complete_fn(qc);
3929 }
3930
3931 static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
3932 {
3933         struct ata_port *ap = qc->ap;
3934
3935         switch (qc->tf.protocol) {
3936         case ATA_PROT_DMA:
3937         case ATA_PROT_ATAPI_DMA:
3938                 return 1;
3939
3940         case ATA_PROT_ATAPI:
3941         case ATA_PROT_PIO:
3942                 if (ap->flags & ATA_FLAG_PIO_DMA)
3943                         return 1;
3944
3945                 /* fall through */
3946
3947         default:
3948                 return 0;
3949         }
3950
3951         /* never reached */
3952 }
3953
3954 /**
3955  *      ata_qc_issue - issue taskfile to device
3956  *      @qc: command to issue to device
3957  *
3958  *      Prepare an ATA command to submission to device.
3959  *      This includes mapping the data into a DMA-able
3960  *      area, filling in the S/G table, and finally
3961  *      writing the taskfile to hardware, starting the command.
3962  *
3963  *      LOCKING:
3964  *      spin_lock_irqsave(host_set lock)
3965  *
3966  *      RETURNS:
3967  *      Zero on success, AC_ERR_* mask on failure
3968  */
3969
3970 unsigned int ata_qc_issue(struct ata_queued_cmd *qc)
3971 {
3972         struct ata_port *ap = qc->ap;
3973
3974         if (ata_should_dma_map(qc)) {
3975                 if (qc->flags & ATA_QCFLAG_SG) {
3976                         if (ata_sg_setup(qc))
3977                                 goto sg_err;
3978                 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
3979                         if (ata_sg_setup_one(qc))
3980                                 goto sg_err;
3981                 }
3982         } else {
3983                 qc->flags &= ~ATA_QCFLAG_DMAMAP;
3984         }
3985
3986         ap->ops->qc_prep(qc);
3987
3988         qc->ap->active_tag = qc->tag;
3989         qc->flags |= ATA_QCFLAG_ACTIVE;
3990
3991         return ap->ops->qc_issue(qc);
3992
3993 sg_err:
3994         qc->flags &= ~ATA_QCFLAG_DMAMAP;
3995         return AC_ERR_SYSTEM;
3996 }
3997
3998
3999 /**
4000  *      ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4001  *      @qc: command to issue to device
4002  *
4003  *      Using various libata functions and hooks, this function
4004  *      starts an ATA command.  ATA commands are grouped into
4005  *      classes called "protocols", and issuing each type of protocol
4006  *      is slightly different.
4007  *
4008  *      May be used as the qc_issue() entry in ata_port_operations.
4009  *
4010  *      LOCKING:
4011  *      spin_lock_irqsave(host_set lock)
4012  *
4013  *      RETURNS:
4014  *      Zero on success, AC_ERR_* mask on failure
4015  */
4016
4017 unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
4018 {
4019         struct ata_port *ap = qc->ap;
4020
4021         ata_dev_select(ap, qc->dev->devno, 1, 0);
4022
4023         switch (qc->tf.protocol) {
4024         case ATA_PROT_NODATA:
4025                 ata_tf_to_host(ap, &qc->tf);
4026                 break;
4027
4028         case ATA_PROT_DMA:
4029                 ap->ops->tf_load(ap, &qc->tf);   /* load tf registers */
4030                 ap->ops->bmdma_setup(qc);           /* set up bmdma */
4031                 ap->ops->bmdma_start(qc);           /* initiate bmdma */
4032                 break;
4033
4034         case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4035                 ata_qc_set_polling(qc);
4036                 ata_tf_to_host(ap, &qc->tf);
4037                 ap->hsm_task_state = HSM_ST;
4038                 ata_port_queue_task(ap, ata_pio_task, ap, 0);
4039                 break;
4040
4041         case ATA_PROT_ATAPI:
4042                 ata_qc_set_polling(qc);
4043                 ata_tf_to_host(ap, &qc->tf);
4044                 ata_port_queue_task(ap, atapi_packet_task, ap, 0);
4045                 break;
4046
4047         case ATA_PROT_ATAPI_NODATA:
4048                 ap->flags |= ATA_FLAG_NOINTR;
4049                 ata_tf_to_host(ap, &qc->tf);
4050                 ata_port_queue_task(ap, atapi_packet_task, ap, 0);
4051                 break;
4052
4053         case ATA_PROT_ATAPI_DMA:
4054                 ap->flags |= ATA_FLAG_NOINTR;
4055                 ap->ops->tf_load(ap, &qc->tf);   /* load tf registers */
4056                 ap->ops->bmdma_setup(qc);           /* set up bmdma */
4057                 ata_port_queue_task(ap, atapi_packet_task, ap, 0);
4058                 break;
4059
4060         default:
4061                 WARN_ON(1);
4062                 return AC_ERR_SYSTEM;
4063         }
4064
4065         return 0;
4066 }
4067
4068 /**
4069  *      ata_host_intr - Handle host interrupt for given (port, task)
4070  *      @ap: Port on which interrupt arrived (possibly...)
4071  *      @qc: Taskfile currently active in engine
4072  *
4073  *      Handle host interrupt for given queued command.  Currently,
4074  *      only DMA interrupts are handled.  All other commands are
4075  *      handled via polling with interrupts disabled (nIEN bit).
4076  *
4077  *      LOCKING:
4078  *      spin_lock_irqsave(host_set lock)
4079  *
4080  *      RETURNS:
4081  *      One if interrupt was handled, zero if not (shared irq).
4082  */
4083
4084 inline unsigned int ata_host_intr (struct ata_port *ap,
4085                                    struct ata_queued_cmd *qc)
4086 {
4087         u8 status, host_stat;
4088
4089         switch (qc->tf.protocol) {
4090
4091         case ATA_PROT_DMA:
4092         case ATA_PROT_ATAPI_DMA:
4093         case ATA_PROT_ATAPI:
4094                 /* check status of DMA engine */
4095                 host_stat = ap->ops->bmdma_status(ap);
4096                 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4097
4098                 /* if it's not our irq... */
4099                 if (!(host_stat & ATA_DMA_INTR))
4100                         goto idle_irq;
4101
4102                 /* before we do anything else, clear DMA-Start bit */
4103                 ap->ops->bmdma_stop(qc);
4104
4105                 /* fall through */
4106
4107         case ATA_PROT_ATAPI_NODATA:
4108         case ATA_PROT_NODATA:
4109                 /* check altstatus */
4110                 status = ata_altstatus(ap);
4111                 if (status & ATA_BUSY)
4112                         goto idle_irq;
4113
4114                 /* check main status, clearing INTRQ */
4115                 status = ata_chk_status(ap);
4116                 if (unlikely(status & ATA_BUSY))
4117                         goto idle_irq;
4118                 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4119                         ap->id, qc->tf.protocol, status);
4120
4121                 /* ack bmdma irq events */
4122                 ap->ops->irq_clear(ap);
4123
4124                 /* complete taskfile transaction */
4125                 qc->err_mask |= ac_err_mask(status);
4126                 ata_qc_complete(qc);
4127                 break;
4128
4129         default:
4130                 goto idle_irq;
4131         }
4132
4133         return 1;       /* irq handled */
4134
4135 idle_irq:
4136         ap->stats.idle_irq++;
4137
4138 #ifdef ATA_IRQ_TRAP
4139         if ((ap->stats.idle_irq % 1000) == 0) {
4140                 ata_irq_ack(ap, 0); /* debug trap */
4141                 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
4142                 return 1;
4143         }
4144 #endif
4145         return 0;       /* irq not handled */
4146 }
4147
4148 /**
4149  *      ata_interrupt - Default ATA host interrupt handler
4150  *      @irq: irq line (unused)
4151  *      @dev_instance: pointer to our ata_host_set information structure
4152  *      @regs: unused
4153  *
4154  *      Default interrupt handler for PCI IDE devices.  Calls
4155  *      ata_host_intr() for each port that is not disabled.
4156  *
4157  *      LOCKING:
4158  *      Obtains host_set lock during operation.
4159  *
4160  *      RETURNS:
4161  *      IRQ_NONE or IRQ_HANDLED.
4162  */
4163
4164 irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4165 {
4166         struct ata_host_set *host_set = dev_instance;
4167         unsigned int i;
4168         unsigned int handled = 0;
4169         unsigned long flags;
4170
4171         /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4172         spin_lock_irqsave(&host_set->lock, flags);
4173
4174         for (i = 0; i < host_set->n_ports; i++) {
4175                 struct ata_port *ap;
4176
4177                 ap = host_set->ports[i];
4178                 if (ap &&
4179                     !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
4180                         struct ata_queued_cmd *qc;
4181
4182                         qc = ata_qc_from_tag(ap, ap->active_tag);
4183                         if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4184                             (qc->flags & ATA_QCFLAG_ACTIVE))
4185                                 handled |= ata_host_intr(ap, qc);
4186                 }
4187         }
4188
4189         spin_unlock_irqrestore(&host_set->lock, flags);
4190
4191         return IRQ_RETVAL(handled);
4192 }
4193
4194
4195 /*
4196  * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4197  * without filling any other registers
4198  */
4199 static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4200                              u8 cmd)
4201 {
4202         struct ata_taskfile tf;
4203         int err;
4204
4205         ata_tf_init(ap, &tf, dev->devno);
4206
4207         tf.command = cmd;
4208         tf.flags |= ATA_TFLAG_DEVICE;
4209         tf.protocol = ATA_PROT_NODATA;
4210
4211         err = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
4212         if (err)
4213                 printk(KERN_ERR "%s: ata command failed: %d\n",
4214                                 __FUNCTION__, err);
4215
4216         return err;
4217 }
4218
4219 static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4220 {
4221         u8 cmd;
4222
4223         if (!ata_try_flush_cache(dev))
4224                 return 0;
4225
4226         if (ata_id_has_flush_ext(dev->id))
4227                 cmd = ATA_CMD_FLUSH_EXT;
4228         else
4229                 cmd = ATA_CMD_FLUSH;
4230
4231         return ata_do_simple_cmd(ap, dev, cmd);
4232 }
4233
4234 static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4235 {
4236         return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4237 }
4238
4239 static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4240 {
4241         return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4242 }
4243
4244 /**
4245  *      ata_device_resume - wakeup a previously suspended devices
4246  *      @ap: port the device is connected to
4247  *      @dev: the device to resume
4248  *
4249  *      Kick the drive back into action, by sending it an idle immediate
4250  *      command and making sure its transfer mode matches between drive
4251  *      and host.
4252  *
4253  */
4254 int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4255 {
4256         if (ap->flags & ATA_FLAG_SUSPENDED) {
4257                 ap->flags &= ~ATA_FLAG_SUSPENDED;
4258                 ata_set_mode(ap);
4259         }
4260         if (!ata_dev_present(dev))
4261                 return 0;
4262         if (dev->class == ATA_DEV_ATA)
4263                 ata_start_drive(ap, dev);
4264
4265         return 0;
4266 }
4267
4268 /**
4269  *      ata_device_suspend - prepare a device for suspend
4270  *      @ap: port the device is connected to
4271  *      @dev: the device to suspend
4272  *
4273  *      Flush the cache on the drive, if appropriate, then issue a
4274  *      standbynow command.
4275  */
4276 int ata_device_suspend(struct ata_port *ap, struct ata_device *dev, pm_message_t state)
4277 {
4278         if (!ata_dev_present(dev))
4279                 return 0;
4280         if (dev->class == ATA_DEV_ATA)
4281                 ata_flush_cache(ap, dev);
4282
4283         if (state.event != PM_EVENT_FREEZE)
4284                 ata_standby_drive(ap, dev);
4285         ap->flags |= ATA_FLAG_SUSPENDED;
4286         return 0;
4287 }
4288
4289 /**
4290  *      ata_port_start - Set port up for dma.
4291  *      @ap: Port to initialize
4292  *
4293  *      Called just after data structures for each port are
4294  *      initialized.  Allocates space for PRD table.
4295  *
4296  *      May be used as the port_start() entry in ata_port_operations.
4297  *
4298  *      LOCKING:
4299  *      Inherited from caller.
4300  */
4301
4302 int ata_port_start (struct ata_port *ap)
4303 {
4304         struct device *dev = ap->dev;
4305         int rc;
4306
4307         ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4308         if (!ap->prd)
4309                 return -ENOMEM;
4310
4311         rc = ata_pad_alloc(ap, dev);
4312         if (rc) {
4313                 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
4314                 return rc;
4315         }
4316
4317         DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4318
4319         return 0;
4320 }
4321
4322
4323 /**
4324  *      ata_port_stop - Undo ata_port_start()
4325  *      @ap: Port to shut down
4326  *
4327  *      Frees the PRD table.
4328  *
4329  *      May be used as the port_stop() entry in ata_port_operations.
4330  *
4331  *      LOCKING:
4332  *      Inherited from caller.
4333  */
4334
4335 void ata_port_stop (struct ata_port *ap)
4336 {
4337         struct device *dev = ap->dev;
4338
4339         dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
4340         ata_pad_free(ap, dev);
4341 }
4342
4343 void ata_host_stop (struct ata_host_set *host_set)
4344 {
4345         if (host_set->mmio_base)
4346                 iounmap(host_set->mmio_base);
4347 }
4348
4349
4350 /**
4351  *      ata_host_remove - Unregister SCSI host structure with upper layers
4352  *      @ap: Port to unregister
4353  *      @do_unregister: 1 if we fully unregister, 0 to just stop the port
4354  *
4355  *      LOCKING:
4356  *      Inherited from caller.
4357  */
4358
4359 static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4360 {
4361         struct Scsi_Host *sh = ap->host;
4362
4363         DPRINTK("ENTER\n");
4364
4365         if (do_unregister)
4366                 scsi_remove_host(sh);
4367
4368         ap->ops->port_stop(ap);
4369 }
4370
4371 /**
4372  *      ata_host_init - Initialize an ata_port structure
4373  *      @ap: Structure to initialize
4374  *      @host: associated SCSI mid-layer structure
4375  *      @host_set: Collection of hosts to which @ap belongs
4376  *      @ent: Probe information provided by low-level driver
4377  *      @port_no: Port number associated with this ata_port
4378  *
4379  *      Initialize a new ata_port structure, and its associated
4380  *      scsi_host.
4381  *
4382  *      LOCKING:
4383  *      Inherited from caller.
4384  */
4385
4386 static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4387                           struct ata_host_set *host_set,
4388                           const struct ata_probe_ent *ent, unsigned int port_no)
4389 {
4390         unsigned int i;
4391
4392         host->max_id = 16;
4393         host->max_lun = 1;
4394         host->max_channel = 1;
4395         host->unique_id = ata_unique_id++;
4396         host->max_cmd_len = 12;
4397
4398         ap->flags = ATA_FLAG_PORT_DISABLED;
4399         ap->id = host->unique_id;
4400         ap->host = host;
4401         ap->ctl = ATA_DEVCTL_OBS;
4402         ap->host_set = host_set;
4403         ap->dev = ent->dev;
4404         ap->port_no = port_no;
4405         ap->hard_port_no =
4406                 ent->legacy_mode ? ent->hard_port_no : port_no;
4407         ap->pio_mask = ent->pio_mask;
4408         ap->mwdma_mask = ent->mwdma_mask;
4409         ap->udma_mask = ent->udma_mask;
4410         ap->flags |= ent->host_flags;
4411         ap->ops = ent->port_ops;
4412         ap->cbl = ATA_CBL_NONE;
4413         ap->active_tag = ATA_TAG_POISON;
4414         ap->last_ctl = 0xFF;
4415
4416         INIT_WORK(&ap->port_task, NULL, NULL);
4417         INIT_LIST_HEAD(&ap->eh_done_q);
4418
4419         for (i = 0; i < ATA_MAX_DEVICES; i++) {
4420                 struct ata_device *dev = &ap->device[i];
4421                 dev->devno = i;
4422                 dev->pio_mask = UINT_MAX;
4423                 dev->mwdma_mask = UINT_MAX;
4424                 dev->udma_mask = UINT_MAX;
4425         }
4426
4427 #ifdef ATA_IRQ_TRAP
4428         ap->stats.unhandled_irq = 1;
4429         ap->stats.idle_irq = 1;
4430 #endif
4431
4432         memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4433 }
4434
4435 /**
4436  *      ata_host_add - Attach low-level ATA driver to system
4437  *      @ent: Information provided by low-level driver
4438  *      @host_set: Collections of ports to which we add
4439  *      @port_no: Port number associated with this host
4440  *
4441  *      Attach low-level ATA driver to system.
4442  *
4443  *      LOCKING:
4444  *      PCI/etc. bus probe sem.
4445  *
4446  *      RETURNS:
4447  *      New ata_port on success, for NULL on error.
4448  */
4449
4450 static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
4451                                       struct ata_host_set *host_set,
4452                                       unsigned int port_no)
4453 {
4454         struct Scsi_Host *host;
4455         struct ata_port *ap;
4456         int rc;
4457
4458         DPRINTK("ENTER\n");
4459
4460         if (!ent->port_ops->probe_reset &&
4461             !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4462                 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4463                        port_no);
4464                 return NULL;
4465         }
4466
4467         host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4468         if (!host)
4469                 return NULL;
4470
4471         host->transportt = &ata_scsi_transport_template;
4472
4473         ap = (struct ata_port *) &host->hostdata[0];
4474
4475         ata_host_init(ap, host, host_set, ent, port_no);
4476
4477         rc = ap->ops->port_start(ap);
4478         if (rc)
4479                 goto err_out;
4480
4481         return ap;
4482
4483 err_out:
4484         scsi_host_put(host);
4485         return NULL;
4486 }
4487
4488 /**
4489  *      ata_device_add - Register hardware device with ATA and SCSI layers
4490  *      @ent: Probe information describing hardware device to be registered
4491  *
4492  *      This function processes the information provided in the probe
4493  *      information struct @ent, allocates the necessary ATA and SCSI
4494  *      host information structures, initializes them, and registers
4495  *      everything with requisite kernel subsystems.
4496  *
4497  *      This function requests irqs, probes the ATA bus, and probes
4498  *      the SCSI bus.
4499  *
4500  *      LOCKING:
4501  *      PCI/etc. bus probe sem.
4502  *
4503  *      RETURNS:
4504  *      Number of ports registered.  Zero on error (no ports registered).
4505  */
4506
4507 int ata_device_add(const struct ata_probe_ent *ent)
4508 {
4509         unsigned int count = 0, i;
4510         struct device *dev = ent->dev;
4511         struct ata_host_set *host_set;
4512
4513         DPRINTK("ENTER\n");
4514         /* alloc a container for our list of ATA ports (buses) */
4515         host_set = kzalloc(sizeof(struct ata_host_set) +
4516                            (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4517         if (!host_set)
4518                 return 0;
4519         spin_lock_init(&host_set->lock);
4520
4521         host_set->dev = dev;
4522         host_set->n_ports = ent->n_ports;
4523         host_set->irq = ent->irq;
4524         host_set->mmio_base = ent->mmio_base;
4525         host_set->private_data = ent->private_data;
4526         host_set->ops = ent->port_ops;
4527
4528         /* register each port bound to this device */
4529         for (i = 0; i < ent->n_ports; i++) {
4530                 struct ata_port *ap;
4531                 unsigned long xfer_mode_mask;
4532
4533                 ap = ata_host_add(ent, host_set, i);
4534                 if (!ap)
4535                         goto err_out;
4536
4537                 host_set->ports[i] = ap;
4538                 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4539                                 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4540                                 (ap->pio_mask << ATA_SHIFT_PIO);
4541
4542                 /* print per-port info to dmesg */
4543                 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4544                                  "bmdma 0x%lX irq %lu\n",
4545                         ap->id,
4546                         ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4547                         ata_mode_string(xfer_mode_mask),
4548                         ap->ioaddr.cmd_addr,
4549                         ap->ioaddr.ctl_addr,
4550                         ap->ioaddr.bmdma_addr,
4551                         ent->irq);
4552
4553                 ata_chk_status(ap);
4554                 host_set->ops->irq_clear(ap);
4555                 count++;
4556         }
4557
4558         if (!count)
4559                 goto err_free_ret;
4560
4561         /* obtain irq, that is shared between channels */
4562         if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4563                         DRV_NAME, host_set))
4564                 goto err_out;
4565
4566         /* perform each probe synchronously */
4567         DPRINTK("probe begin\n");
4568         for (i = 0; i < count; i++) {
4569                 struct ata_port *ap;
4570                 int rc;
4571
4572                 ap = host_set->ports[i];
4573
4574                 DPRINTK("ata%u: bus probe begin\n", ap->id);
4575                 rc = ata_bus_probe(ap);
4576                 DPRINTK("ata%u: bus probe end\n", ap->id);
4577
4578                 if (rc) {
4579                         /* FIXME: do something useful here?
4580                          * Current libata behavior will
4581                          * tear down everything when
4582                          * the module is removed
4583                          * or the h/w is unplugged.
4584                          */
4585                 }
4586
4587                 rc = scsi_add_host(ap->host, dev);
4588                 if (rc) {
4589                         printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4590                                ap->id);
4591                         /* FIXME: do something useful here */
4592                         /* FIXME: handle unconditional calls to
4593                          * scsi_scan_host and ata_host_remove, below,
4594                          * at the very least
4595                          */
4596                 }
4597         }
4598
4599         /* probes are done, now scan each port's disk(s) */
4600         DPRINTK("host probe begin\n");
4601         for (i = 0; i < count; i++) {
4602                 struct ata_port *ap = host_set->ports[i];
4603
4604                 ata_scsi_scan_host(ap);
4605         }
4606
4607         dev_set_drvdata(dev, host_set);
4608
4609         VPRINTK("EXIT, returning %u\n", ent->n_ports);
4610         return ent->n_ports; /* success */
4611
4612 err_out:
4613         for (i = 0; i < count; i++) {
4614                 ata_host_remove(host_set->ports[i], 1);
4615                 scsi_host_put(host_set->ports[i]->host);
4616         }
4617 err_free_ret:
4618         kfree(host_set);
4619         VPRINTK("EXIT, returning 0\n");
4620         return 0;
4621 }
4622
4623 /**
4624  *      ata_host_set_remove - PCI layer callback for device removal
4625  *      @host_set: ATA host set that was removed
4626  *
4627  *      Unregister all objects associated with this host set. Free those
4628  *      objects.
4629  *
4630  *      LOCKING:
4631  *      Inherited from calling layer (may sleep).
4632  */
4633
4634 void ata_host_set_remove(struct ata_host_set *host_set)
4635 {
4636         struct ata_port *ap;
4637         unsigned int i;
4638
4639         for (i = 0; i < host_set->n_ports; i++) {
4640                 ap = host_set->ports[i];
4641                 scsi_remove_host(ap->host);
4642         }
4643
4644         free_irq(host_set->irq, host_set);
4645
4646         for (i = 0; i < host_set->n_ports; i++) {
4647                 ap = host_set->ports[i];
4648
4649                 ata_scsi_release(ap->host);
4650
4651                 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4652                         struct ata_ioports *ioaddr = &ap->ioaddr;
4653
4654                         if (ioaddr->cmd_addr == 0x1f0)
4655                                 release_region(0x1f0, 8);
4656                         else if (ioaddr->cmd_addr == 0x170)
4657                                 release_region(0x170, 8);
4658                 }
4659
4660                 scsi_host_put(ap->host);
4661         }
4662
4663         if (host_set->ops->host_stop)
4664                 host_set->ops->host_stop(host_set);
4665
4666         kfree(host_set);
4667 }
4668
4669 /**
4670  *      ata_scsi_release - SCSI layer callback hook for host unload
4671  *      @host: libata host to be unloaded
4672  *
4673  *      Performs all duties necessary to shut down a libata port...
4674  *      Kill port kthread, disable port, and release resources.
4675  *
4676  *      LOCKING:
4677  *      Inherited from SCSI layer.
4678  *
4679  *      RETURNS:
4680  *      One.
4681  */
4682
4683 int ata_scsi_release(struct Scsi_Host *host)
4684 {
4685         struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
4686         int i;
4687
4688         DPRINTK("ENTER\n");
4689
4690         ap->ops->port_disable(ap);
4691         ata_host_remove(ap, 0);
4692         for (i = 0; i < ATA_MAX_DEVICES; i++)
4693                 kfree(ap->device[i].id);
4694
4695         DPRINTK("EXIT\n");
4696         return 1;
4697 }
4698
4699 /**
4700  *      ata_std_ports - initialize ioaddr with standard port offsets.
4701  *      @ioaddr: IO address structure to be initialized
4702  *
4703  *      Utility function which initializes data_addr, error_addr,
4704  *      feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4705  *      device_addr, status_addr, and command_addr to standard offsets
4706  *      relative to cmd_addr.
4707  *
4708  *      Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
4709  */
4710
4711 void ata_std_ports(struct ata_ioports *ioaddr)
4712 {
4713         ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4714         ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4715         ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4716         ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4717         ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4718         ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4719         ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4720         ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4721         ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4722         ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4723 }
4724
4725
4726 #ifdef CONFIG_PCI
4727
4728 void ata_pci_host_stop (struct ata_host_set *host_set)
4729 {
4730         struct pci_dev *pdev = to_pci_dev(host_set->dev);
4731
4732         pci_iounmap(pdev, host_set->mmio_base);
4733 }
4734
4735 /**
4736  *      ata_pci_remove_one - PCI layer callback for device removal
4737  *      @pdev: PCI device that was removed
4738  *
4739  *      PCI layer indicates to libata via this hook that
4740  *      hot-unplug or module unload event has occurred.
4741  *      Handle this by unregistering all objects associated
4742  *      with this PCI device.  Free those objects.  Then finally
4743  *      release PCI resources and disable device.
4744  *
4745  *      LOCKING:
4746  *      Inherited from PCI layer (may sleep).
4747  */
4748
4749 void ata_pci_remove_one (struct pci_dev *pdev)
4750 {
4751         struct device *dev = pci_dev_to_dev(pdev);
4752         struct ata_host_set *host_set = dev_get_drvdata(dev);
4753
4754         ata_host_set_remove(host_set);
4755         pci_release_regions(pdev);
4756         pci_disable_device(pdev);
4757         dev_set_drvdata(dev, NULL);
4758 }
4759
4760 /* move to PCI subsystem */
4761 int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
4762 {
4763         unsigned long tmp = 0;
4764
4765         switch (bits->width) {
4766         case 1: {
4767                 u8 tmp8 = 0;
4768                 pci_read_config_byte(pdev, bits->reg, &tmp8);
4769                 tmp = tmp8;
4770                 break;
4771         }
4772         case 2: {
4773                 u16 tmp16 = 0;
4774                 pci_read_config_word(pdev, bits->reg, &tmp16);
4775                 tmp = tmp16;
4776                 break;
4777         }
4778         case 4: {
4779                 u32 tmp32 = 0;
4780                 pci_read_config_dword(pdev, bits->reg, &tmp32);
4781                 tmp = tmp32;
4782                 break;
4783         }
4784
4785         default:
4786                 return -EINVAL;
4787         }
4788
4789         tmp &= bits->mask;
4790
4791         return (tmp == bits->val) ? 1 : 0;
4792 }
4793
4794 int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
4795 {
4796         pci_save_state(pdev);
4797         pci_disable_device(pdev);
4798         pci_set_power_state(pdev, PCI_D3hot);
4799         return 0;
4800 }
4801
4802 int ata_pci_device_resume(struct pci_dev *pdev)
4803 {
4804         pci_set_power_state(pdev, PCI_D0);
4805         pci_restore_state(pdev);
4806         pci_enable_device(pdev);
4807         pci_set_master(pdev);
4808         return 0;
4809 }
4810 #endif /* CONFIG_PCI */
4811
4812
4813 static int __init ata_init(void)
4814 {
4815         ata_wq = create_workqueue("ata");
4816         if (!ata_wq)
4817                 return -ENOMEM;
4818
4819         printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
4820         return 0;
4821 }
4822
4823 static void __exit ata_exit(void)
4824 {
4825         destroy_workqueue(ata_wq);
4826 }
4827
4828 module_init(ata_init);
4829 module_exit(ata_exit);
4830
4831 static unsigned long ratelimit_time;
4832 static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
4833
4834 int ata_ratelimit(void)
4835 {
4836         int rc;
4837         unsigned long flags;
4838
4839         spin_lock_irqsave(&ata_ratelimit_lock, flags);
4840
4841         if (time_after(jiffies, ratelimit_time)) {
4842                 rc = 1;
4843                 ratelimit_time = jiffies + (HZ/5);
4844         } else
4845                 rc = 0;
4846
4847         spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
4848
4849         return rc;
4850 }
4851
4852 /*
4853  * libata is essentially a library of internal helper functions for
4854  * low-level ATA host controller drivers.  As such, the API/ABI is
4855  * likely to change as new drivers are added and updated.
4856  * Do not depend on ABI/API stability.
4857  */
4858
4859 EXPORT_SYMBOL_GPL(ata_std_bios_param);
4860 EXPORT_SYMBOL_GPL(ata_std_ports);
4861 EXPORT_SYMBOL_GPL(ata_device_add);
4862 EXPORT_SYMBOL_GPL(ata_host_set_remove);
4863 EXPORT_SYMBOL_GPL(ata_sg_init);
4864 EXPORT_SYMBOL_GPL(ata_sg_init_one);
4865 EXPORT_SYMBOL_GPL(__ata_qc_complete);
4866 EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
4867 EXPORT_SYMBOL_GPL(ata_eng_timeout);
4868 EXPORT_SYMBOL_GPL(ata_tf_load);
4869 EXPORT_SYMBOL_GPL(ata_tf_read);
4870 EXPORT_SYMBOL_GPL(ata_noop_dev_select);
4871 EXPORT_SYMBOL_GPL(ata_std_dev_select);
4872 EXPORT_SYMBOL_GPL(ata_tf_to_fis);
4873 EXPORT_SYMBOL_GPL(ata_tf_from_fis);
4874 EXPORT_SYMBOL_GPL(ata_check_status);
4875 EXPORT_SYMBOL_GPL(ata_altstatus);
4876 EXPORT_SYMBOL_GPL(ata_exec_command);
4877 EXPORT_SYMBOL_GPL(ata_port_start);
4878 EXPORT_SYMBOL_GPL(ata_port_stop);
4879 EXPORT_SYMBOL_GPL(ata_host_stop);
4880 EXPORT_SYMBOL_GPL(ata_interrupt);
4881 EXPORT_SYMBOL_GPL(ata_qc_prep);
4882 EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
4883 EXPORT_SYMBOL_GPL(ata_bmdma_setup);
4884 EXPORT_SYMBOL_GPL(ata_bmdma_start);
4885 EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
4886 EXPORT_SYMBOL_GPL(ata_bmdma_status);
4887 EXPORT_SYMBOL_GPL(ata_bmdma_stop);
4888 EXPORT_SYMBOL_GPL(ata_port_probe);
4889 EXPORT_SYMBOL_GPL(sata_phy_reset);
4890 EXPORT_SYMBOL_GPL(__sata_phy_reset);
4891 EXPORT_SYMBOL_GPL(ata_bus_reset);
4892 EXPORT_SYMBOL_GPL(ata_std_probeinit);
4893 EXPORT_SYMBOL_GPL(ata_std_softreset);
4894 EXPORT_SYMBOL_GPL(sata_std_hardreset);
4895 EXPORT_SYMBOL_GPL(ata_std_postreset);
4896 EXPORT_SYMBOL_GPL(ata_std_probe_reset);
4897 EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
4898 EXPORT_SYMBOL_GPL(ata_dev_revalidate);
4899 EXPORT_SYMBOL_GPL(ata_dev_classify);
4900 EXPORT_SYMBOL_GPL(ata_dev_pair);
4901 EXPORT_SYMBOL_GPL(ata_port_disable);
4902 EXPORT_SYMBOL_GPL(ata_ratelimit);
4903 EXPORT_SYMBOL_GPL(ata_busy_sleep);
4904 EXPORT_SYMBOL_GPL(ata_port_queue_task);
4905 EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
4906 EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
4907 EXPORT_SYMBOL_GPL(ata_scsi_error);
4908 EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
4909 EXPORT_SYMBOL_GPL(ata_scsi_release);
4910 EXPORT_SYMBOL_GPL(ata_host_intr);
4911 EXPORT_SYMBOL_GPL(ata_id_string);
4912 EXPORT_SYMBOL_GPL(ata_id_c_string);
4913 EXPORT_SYMBOL_GPL(ata_scsi_simulate);
4914 EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
4915 EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
4916
4917 EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
4918 EXPORT_SYMBOL_GPL(ata_timing_compute);
4919 EXPORT_SYMBOL_GPL(ata_timing_merge);
4920
4921 #ifdef CONFIG_PCI
4922 EXPORT_SYMBOL_GPL(pci_test_config_bits);
4923 EXPORT_SYMBOL_GPL(ata_pci_host_stop);
4924 EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
4925 EXPORT_SYMBOL_GPL(ata_pci_init_one);
4926 EXPORT_SYMBOL_GPL(ata_pci_remove_one);
4927 EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
4928 EXPORT_SYMBOL_GPL(ata_pci_device_resume);
4929 EXPORT_SYMBOL_GPL(ata_pci_default_filter);
4930 EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
4931 #endif /* CONFIG_PCI */
4932
4933 EXPORT_SYMBOL_GPL(ata_device_suspend);
4934 EXPORT_SYMBOL_GPL(ata_device_resume);
4935 EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
4936 EXPORT_SYMBOL_GPL(ata_scsi_device_resume);