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