blob: 6970f6867334db710a2dd3dbe3e00d323ef5bd89 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * 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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
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>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#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
Tejun Heo6aff8f12006-02-15 18:24:09 +090064static unsigned int ata_dev_init_params(struct ata_port *ap,
65 struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void ata_set_mode(struct ata_port *ap);
Tejun Heo83206a22006-03-24 15:25:31 +090067static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
68 struct ata_device *dev);
Tejun Heoacf356b2006-03-24 14:07:50 +090069static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71static unsigned int ata_unique_id = 1;
72static struct workqueue_struct *ata_wq;
73
Jeff Garzik418dc1f2006-03-11 20:50:08 -050074int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040075module_param(atapi_enabled, int, 0444);
76MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
77
Jeff Garzikc3c013a2006-02-27 22:31:19 -050078int libata_fua = 0;
79module_param_named(fua, libata_fua, int, 0444);
80MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082MODULE_AUTHOR("Jeff Garzik");
83MODULE_DESCRIPTION("Library module for ATA devices");
84MODULE_LICENSE("GPL");
85MODULE_VERSION(DRV_VERSION);
86
Edward Falk0baab862005-06-02 18:17:13 -040087
88/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
90 * @tf: Taskfile to convert
91 * @fis: Buffer into which data will output
92 * @pmp: Port multiplier port
93 *
94 * Converts a standard ATA taskfile to a Serial ATA
95 * FIS structure (Register - Host to Device).
96 *
97 * LOCKING:
98 * Inherited from caller.
99 */
100
Jeff Garzik057ace52005-10-22 14:27:05 -0400101void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 fis[0] = 0x27; /* Register - Host to Device FIS */
104 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
105 bit 7 indicates Command FIS */
106 fis[2] = tf->command;
107 fis[3] = tf->feature;
108
109 fis[4] = tf->lbal;
110 fis[5] = tf->lbam;
111 fis[6] = tf->lbah;
112 fis[7] = tf->device;
113
114 fis[8] = tf->hob_lbal;
115 fis[9] = tf->hob_lbam;
116 fis[10] = tf->hob_lbah;
117 fis[11] = tf->hob_feature;
118
119 fis[12] = tf->nsect;
120 fis[13] = tf->hob_nsect;
121 fis[14] = 0;
122 fis[15] = tf->ctl;
123
124 fis[16] = 0;
125 fis[17] = 0;
126 fis[18] = 0;
127 fis[19] = 0;
128}
129
130/**
131 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
132 * @fis: Buffer from which data will be input
133 * @tf: Taskfile to output
134 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500135 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 *
137 * LOCKING:
138 * Inherited from caller.
139 */
140
Jeff Garzik057ace52005-10-22 14:27:05 -0400141void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 tf->command = fis[2]; /* status */
144 tf->feature = fis[3]; /* error */
145
146 tf->lbal = fis[4];
147 tf->lbam = fis[5];
148 tf->lbah = fis[6];
149 tf->device = fis[7];
150
151 tf->hob_lbal = fis[8];
152 tf->hob_lbam = fis[9];
153 tf->hob_lbah = fis[10];
154
155 tf->nsect = fis[12];
156 tf->hob_nsect = fis[13];
157}
158
Albert Lee8cbd6df2005-10-12 15:06:27 +0800159static const u8 ata_rw_cmds[] = {
160 /* pio multi */
161 ATA_CMD_READ_MULTI,
162 ATA_CMD_WRITE_MULTI,
163 ATA_CMD_READ_MULTI_EXT,
164 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100165 0,
166 0,
167 0,
168 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800169 /* pio */
170 ATA_CMD_PIO_READ,
171 ATA_CMD_PIO_WRITE,
172 ATA_CMD_PIO_READ_EXT,
173 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100174 0,
175 0,
176 0,
177 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800178 /* dma */
179 ATA_CMD_READ,
180 ATA_CMD_WRITE,
181 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100182 ATA_CMD_WRITE_EXT,
183 0,
184 0,
185 0,
186 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800187};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800190 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
191 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *
Albert Lee8cbd6df2005-10-12 15:06:27 +0800193 * Examine the device configuration and tf->flags to calculate
194 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 *
196 * LOCKING:
197 * caller.
198 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100199int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800201 struct ata_taskfile *tf = &qc->tf;
202 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100203 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100205 int index, fua, lba48, write;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800206
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100207 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800208 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
209 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Albert Lee8cbd6df2005-10-12 15:06:27 +0800211 if (dev->flags & ATA_DFLAG_PIO) {
212 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100213 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000214 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
215 /* Unable to use DMA due to host limitation */
216 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800217 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800218 } else {
219 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100220 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100223 cmd = ata_rw_cmds[index + fua + lba48 + write];
224 if (cmd) {
225 tf->command = cmd;
226 return 0;
227 }
228 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Tejun Heocb95d562006-03-06 04:31:56 +0900231/**
232 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
233 * @pio_mask: pio_mask
234 * @mwdma_mask: mwdma_mask
235 * @udma_mask: udma_mask
236 *
237 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
238 * unsigned int xfer_mask.
239 *
240 * LOCKING:
241 * None.
242 *
243 * RETURNS:
244 * Packed xfer_mask.
245 */
246static unsigned int ata_pack_xfermask(unsigned int pio_mask,
247 unsigned int mwdma_mask,
248 unsigned int udma_mask)
249{
250 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
251 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
252 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
253}
254
Tejun Heoc0489e42006-03-24 14:07:49 +0900255/**
256 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
257 * @xfer_mask: xfer_mask to unpack
258 * @pio_mask: resulting pio_mask
259 * @mwdma_mask: resulting mwdma_mask
260 * @udma_mask: resulting udma_mask
261 *
262 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
263 * Any NULL distination masks will be ignored.
264 */
265static void ata_unpack_xfermask(unsigned int xfer_mask,
266 unsigned int *pio_mask,
267 unsigned int *mwdma_mask,
268 unsigned int *udma_mask)
269{
270 if (pio_mask)
271 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
272 if (mwdma_mask)
273 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
274 if (udma_mask)
275 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
276}
277
Tejun Heocb95d562006-03-06 04:31:56 +0900278static const struct ata_xfer_ent {
279 unsigned int shift, bits;
280 u8 base;
281} ata_xfer_tbl[] = {
282 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
283 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
284 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
285 { -1, },
286};
287
288/**
289 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
290 * @xfer_mask: xfer_mask of interest
291 *
292 * Return matching XFER_* value for @xfer_mask. Only the highest
293 * bit of @xfer_mask is considered.
294 *
295 * LOCKING:
296 * None.
297 *
298 * RETURNS:
299 * Matching XFER_* value, 0 if no match found.
300 */
301static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
302{
303 int highbit = fls(xfer_mask) - 1;
304 const struct ata_xfer_ent *ent;
305
306 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
307 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
308 return ent->base + highbit - ent->shift;
309 return 0;
310}
311
312/**
313 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
314 * @xfer_mode: XFER_* of interest
315 *
316 * Return matching xfer_mask for @xfer_mode.
317 *
318 * LOCKING:
319 * None.
320 *
321 * RETURNS:
322 * Matching xfer_mask, 0 if no match found.
323 */
324static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
325{
326 const struct ata_xfer_ent *ent;
327
328 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
329 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
330 return 1 << (ent->shift + xfer_mode - ent->base);
331 return 0;
332}
333
334/**
335 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
336 * @xfer_mode: XFER_* of interest
337 *
338 * Return matching xfer_shift for @xfer_mode.
339 *
340 * LOCKING:
341 * None.
342 *
343 * RETURNS:
344 * Matching xfer_shift, -1 if no match found.
345 */
346static int ata_xfer_mode2shift(unsigned int xfer_mode)
347{
348 const struct ata_xfer_ent *ent;
349
350 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
351 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
352 return ent->shift;
353 return -1;
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900357 * ata_mode_string - convert xfer_mask to string
358 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
360 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900361 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 *
363 * LOCKING:
364 * None.
365 *
366 * RETURNS:
367 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900368 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900370static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Tejun Heo75f554b2006-03-06 04:31:57 +0900372 static const char * const xfer_mode_str[] = {
373 "PIO0",
374 "PIO1",
375 "PIO2",
376 "PIO3",
377 "PIO4",
378 "MWDMA0",
379 "MWDMA1",
380 "MWDMA2",
381 "UDMA/16",
382 "UDMA/25",
383 "UDMA/33",
384 "UDMA/44",
385 "UDMA/66",
386 "UDMA/100",
387 "UDMA/133",
388 "UDMA7",
389 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900390 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900392 highbit = fls(xfer_mask) - 1;
393 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
394 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Tejun Heo0b8efb02006-03-24 15:25:31 +0900398static void ata_dev_disable(struct ata_port *ap, struct ata_device *dev)
399{
400 if (ata_dev_present(dev)) {
401 printk(KERN_WARNING "ata%u: dev %u disabled\n",
402 ap->id, dev->devno);
403 dev->class++;
404 }
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/**
408 * ata_pio_devchk - PATA device presence detection
409 * @ap: ATA channel to examine
410 * @device: Device to examine (starting at zero)
411 *
412 * This technique was originally described in
413 * Hale Landis's ATADRVR (www.ata-atapi.com), and
414 * later found its way into the ATA/ATAPI spec.
415 *
416 * Write a pattern to the ATA shadow registers,
417 * and if a device is present, it will respond by
418 * correctly storing and echoing back the
419 * ATA shadow register contents.
420 *
421 * LOCKING:
422 * caller.
423 */
424
425static unsigned int ata_pio_devchk(struct ata_port *ap,
426 unsigned int device)
427{
428 struct ata_ioports *ioaddr = &ap->ioaddr;
429 u8 nsect, lbal;
430
431 ap->ops->dev_select(ap, device);
432
433 outb(0x55, ioaddr->nsect_addr);
434 outb(0xaa, ioaddr->lbal_addr);
435
436 outb(0xaa, ioaddr->nsect_addr);
437 outb(0x55, ioaddr->lbal_addr);
438
439 outb(0x55, ioaddr->nsect_addr);
440 outb(0xaa, ioaddr->lbal_addr);
441
442 nsect = inb(ioaddr->nsect_addr);
443 lbal = inb(ioaddr->lbal_addr);
444
445 if ((nsect == 0x55) && (lbal == 0xaa))
446 return 1; /* we found a device */
447
448 return 0; /* nothing found */
449}
450
451/**
452 * ata_mmio_devchk - PATA device presence detection
453 * @ap: ATA channel to examine
454 * @device: Device to examine (starting at zero)
455 *
456 * This technique was originally described in
457 * Hale Landis's ATADRVR (www.ata-atapi.com), and
458 * later found its way into the ATA/ATAPI spec.
459 *
460 * Write a pattern to the ATA shadow registers,
461 * and if a device is present, it will respond by
462 * correctly storing and echoing back the
463 * ATA shadow register contents.
464 *
465 * LOCKING:
466 * caller.
467 */
468
469static unsigned int ata_mmio_devchk(struct ata_port *ap,
470 unsigned int device)
471{
472 struct ata_ioports *ioaddr = &ap->ioaddr;
473 u8 nsect, lbal;
474
475 ap->ops->dev_select(ap, device);
476
477 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
478 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
479
480 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
481 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
482
483 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
484 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
485
486 nsect = readb((void __iomem *) ioaddr->nsect_addr);
487 lbal = readb((void __iomem *) ioaddr->lbal_addr);
488
489 if ((nsect == 0x55) && (lbal == 0xaa))
490 return 1; /* we found a device */
491
492 return 0; /* nothing found */
493}
494
495/**
496 * ata_devchk - PATA device presence detection
497 * @ap: ATA channel to examine
498 * @device: Device to examine (starting at zero)
499 *
500 * Dispatch ATA device presence detection, depending
501 * on whether we are using PIO or MMIO to talk to the
502 * ATA shadow registers.
503 *
504 * LOCKING:
505 * caller.
506 */
507
508static unsigned int ata_devchk(struct ata_port *ap,
509 unsigned int device)
510{
511 if (ap->flags & ATA_FLAG_MMIO)
512 return ata_mmio_devchk(ap, device);
513 return ata_pio_devchk(ap, device);
514}
515
516/**
517 * ata_dev_classify - determine device type based on ATA-spec signature
518 * @tf: ATA taskfile register set for device to be identified
519 *
520 * Determine from taskfile register contents whether a device is
521 * ATA or ATAPI, as per "Signature and persistence" section
522 * of ATA/PI spec (volume 1, sect 5.14).
523 *
524 * LOCKING:
525 * None.
526 *
527 * RETURNS:
528 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
529 * the event of failure.
530 */
531
Jeff Garzik057ace52005-10-22 14:27:05 -0400532unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 /* Apple's open source Darwin code hints that some devices only
535 * put a proper signature into the LBA mid/high registers,
536 * So, we only check those. It's sufficient for uniqueness.
537 */
538
539 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
540 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
541 DPRINTK("found ATA device by sig\n");
542 return ATA_DEV_ATA;
543 }
544
545 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
546 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
547 DPRINTK("found ATAPI device by sig\n");
548 return ATA_DEV_ATAPI;
549 }
550
551 DPRINTK("unknown device\n");
552 return ATA_DEV_UNKNOWN;
553}
554
555/**
556 * ata_dev_try_classify - Parse returned ATA device signature
557 * @ap: ATA channel to examine
558 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900559 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 *
561 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
562 * an ATA/ATAPI-defined set of values is placed in the ATA
563 * shadow registers, indicating the results of device detection
564 * and diagnostics.
565 *
566 * Select the ATA device, and read the values from the ATA shadow
567 * registers. Then parse according to the Error register value,
568 * and the spec-defined values examined by ata_dev_classify().
569 *
570 * LOCKING:
571 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900572 *
573 * RETURNS:
574 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 */
576
Tejun Heob4dc7622006-01-24 17:05:22 +0900577static unsigned int
578ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct ata_taskfile tf;
581 unsigned int class;
582 u8 err;
583
584 ap->ops->dev_select(ap, device);
585
586 memset(&tf, 0, sizeof(tf));
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400589 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900590 if (r_err)
591 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /* see if device passed diags */
594 if (err == 1)
595 /* do nothing */ ;
596 else if ((device == 0) && (err == 0x81))
597 /* do nothing */ ;
598 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900599 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Tejun Heob4dc7622006-01-24 17:05:22 +0900601 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900605 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900607 return ATA_DEV_NONE;
608 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900612 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 * @id: IDENTIFY DEVICE results we will examine
614 * @s: string into which data is output
615 * @ofs: offset into identify device page
616 * @len: length of string to return. must be an even number.
617 *
618 * The strings in the IDENTIFY DEVICE page are broken up into
619 * 16-bit chunks. Run through the string, and output each
620 * 8-bit chunk linearly, regardless of platform.
621 *
622 * LOCKING:
623 * caller.
624 */
625
Tejun Heo6a62a042006-02-13 10:02:46 +0900626void ata_id_string(const u16 *id, unsigned char *s,
627 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 unsigned int c;
630
631 while (len > 0) {
632 c = id[ofs] >> 8;
633 *s = c;
634 s++;
635
636 c = id[ofs] & 0xff;
637 *s = c;
638 s++;
639
640 ofs++;
641 len -= 2;
642 }
643}
644
Tejun Heo0e949ff2006-02-12 22:47:04 +0900645/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900646 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900647 * @id: IDENTIFY DEVICE results we will examine
648 * @s: string into which data is output
649 * @ofs: offset into identify device page
650 * @len: length of string to return. must be an odd number.
651 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900652 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900653 * trims trailing spaces and terminates the resulting string with
654 * null. @len must be actual maximum length (even number) + 1.
655 *
656 * LOCKING:
657 * caller.
658 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900659void ata_id_c_string(const u16 *id, unsigned char *s,
660 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900661{
662 unsigned char *p;
663
664 WARN_ON(!(len & 1));
665
Tejun Heo6a62a042006-02-13 10:02:46 +0900666 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900667
668 p = s + strnlen(s, len - 1);
669 while (p > s && p[-1] == ' ')
670 p--;
671 *p = '\0';
672}
Edward Falk0baab862005-06-02 18:17:13 -0400673
Tejun Heo29407402006-02-12 22:47:04 +0900674static u64 ata_id_n_sectors(const u16 *id)
675{
676 if (ata_id_has_lba(id)) {
677 if (ata_id_has_lba48(id))
678 return ata_id_u64(id, 100);
679 else
680 return ata_id_u32(id, 60);
681 } else {
682 if (ata_id_current_chs_valid(id))
683 return ata_id_u32(id, 57);
684 else
685 return id[1] * id[3] * id[6];
686 }
687}
688
Edward Falk0baab862005-06-02 18:17:13 -0400689/**
690 * ata_noop_dev_select - Select device 0/1 on ATA bus
691 * @ap: ATA channel to manipulate
692 * @device: ATA device (numbered from zero) to select
693 *
694 * This function performs no actual function.
695 *
696 * May be used as the dev_select() entry in ata_port_operations.
697 *
698 * LOCKING:
699 * caller.
700 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
702{
703}
704
Edward Falk0baab862005-06-02 18:17:13 -0400705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706/**
707 * ata_std_dev_select - Select device 0/1 on ATA bus
708 * @ap: ATA channel to manipulate
709 * @device: ATA device (numbered from zero) to select
710 *
711 * Use the method defined in the ATA specification to
712 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400713 * ATA channel. Works with both PIO and MMIO.
714 *
715 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 *
717 * LOCKING:
718 * caller.
719 */
720
721void ata_std_dev_select (struct ata_port *ap, unsigned int device)
722{
723 u8 tmp;
724
725 if (device == 0)
726 tmp = ATA_DEVICE_OBS;
727 else
728 tmp = ATA_DEVICE_OBS | ATA_DEV1;
729
730 if (ap->flags & ATA_FLAG_MMIO) {
731 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
732 } else {
733 outb(tmp, ap->ioaddr.device_addr);
734 }
735 ata_pause(ap); /* needed; also flushes, for mmio */
736}
737
738/**
739 * ata_dev_select - Select device 0/1 on ATA bus
740 * @ap: ATA channel to manipulate
741 * @device: ATA device (numbered from zero) to select
742 * @wait: non-zero to wait for Status register BSY bit to clear
743 * @can_sleep: non-zero if context allows sleeping
744 *
745 * Use the method defined in the ATA specification to
746 * make either device 0, or device 1, active on the
747 * ATA channel.
748 *
749 * This is a high-level version of ata_std_dev_select(),
750 * which additionally provides the services of inserting
751 * the proper pauses and status polling, where needed.
752 *
753 * LOCKING:
754 * caller.
755 */
756
757void ata_dev_select(struct ata_port *ap, unsigned int device,
758 unsigned int wait, unsigned int can_sleep)
759{
760 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
761 ap->id, device, wait);
762
763 if (wait)
764 ata_wait_idle(ap);
765
766 ap->ops->dev_select(ap, device);
767
768 if (wait) {
769 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
770 msleep(150);
771 ata_wait_idle(ap);
772 }
773}
774
775/**
776 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900777 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900779 * Dump selected 16-bit words from the given IDENTIFY DEVICE
780 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 *
782 * LOCKING:
783 * caller.
784 */
785
Tejun Heo0bd33002006-02-12 22:47:05 +0900786static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 DPRINTK("49==0x%04x "
789 "53==0x%04x "
790 "63==0x%04x "
791 "64==0x%04x "
792 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900793 id[49],
794 id[53],
795 id[63],
796 id[64],
797 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 DPRINTK("80==0x%04x "
799 "81==0x%04x "
800 "82==0x%04x "
801 "83==0x%04x "
802 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900803 id[80],
804 id[81],
805 id[82],
806 id[83],
807 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 DPRINTK("88==0x%04x "
809 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900810 id[88],
811 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Tejun Heocb95d562006-03-06 04:31:56 +0900814/**
815 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
816 * @id: IDENTIFY data to compute xfer mask from
817 *
818 * Compute the xfermask for this device. This is not as trivial
819 * as it seems if we must consider early devices correctly.
820 *
821 * FIXME: pre IDE drive timing (do we care ?).
822 *
823 * LOCKING:
824 * None.
825 *
826 * RETURNS:
827 * Computed xfermask
828 */
829static unsigned int ata_id_xfermask(const u16 *id)
830{
831 unsigned int pio_mask, mwdma_mask, udma_mask;
832
833 /* Usual case. Word 53 indicates word 64 is valid */
834 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
835 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
836 pio_mask <<= 3;
837 pio_mask |= 0x7;
838 } else {
839 /* If word 64 isn't valid then Word 51 high byte holds
840 * the PIO timing number for the maximum. Turn it into
841 * a mask.
842 */
843 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
844
845 /* But wait.. there's more. Design your standards by
846 * committee and you too can get a free iordy field to
847 * process. However its the speeds not the modes that
848 * are supported... Note drivers using the timing API
849 * will get this right anyway
850 */
851 }
852
853 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900854
855 udma_mask = 0;
856 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
857 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900858
859 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
860}
861
Tejun Heo86e45b62006-03-05 15:29:09 +0900862/**
863 * ata_port_queue_task - Queue port_task
864 * @ap: The ata_port to queue port_task for
865 *
866 * Schedule @fn(@data) for execution after @delay jiffies using
867 * port_task. There is one port_task per port and it's the
868 * user(low level driver)'s responsibility to make sure that only
869 * one task is active at any given time.
870 *
871 * libata core layer takes care of synchronization between
872 * port_task and EH. ata_port_queue_task() may be ignored for EH
873 * synchronization.
874 *
875 * LOCKING:
876 * Inherited from caller.
877 */
878void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
879 unsigned long delay)
880{
881 int rc;
882
Tejun Heo2e755f62006-03-05 15:29:09 +0900883 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900884 return;
885
886 PREPARE_WORK(&ap->port_task, fn, data);
887
888 if (!delay)
889 rc = queue_work(ata_wq, &ap->port_task);
890 else
891 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
892
893 /* rc == 0 means that another user is using port task */
894 WARN_ON(rc == 0);
895}
896
897/**
898 * ata_port_flush_task - Flush port_task
899 * @ap: The ata_port to flush port_task for
900 *
901 * After this function completes, port_task is guranteed not to
902 * be running or scheduled.
903 *
904 * LOCKING:
905 * Kernel thread context (may sleep)
906 */
907void ata_port_flush_task(struct ata_port *ap)
908{
909 unsigned long flags;
910
911 DPRINTK("ENTER\n");
912
913 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900914 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900915 spin_unlock_irqrestore(&ap->host_set->lock, flags);
916
917 DPRINTK("flush #1\n");
918 flush_workqueue(ata_wq);
919
920 /*
921 * At this point, if a task is running, it's guaranteed to see
922 * the FLUSH flag; thus, it will never queue pio tasks again.
923 * Cancel and flush.
924 */
925 if (!cancel_delayed_work(&ap->port_task)) {
926 DPRINTK("flush #2\n");
927 flush_workqueue(ata_wq);
928 }
929
930 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900931 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900932 spin_unlock_irqrestore(&ap->host_set->lock, flags);
933
934 DPRINTK("EXIT\n");
935}
936
Tejun Heo77853bf2006-01-23 13:09:36 +0900937void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900938{
Tejun Heo77853bf2006-01-23 13:09:36 +0900939 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900940
Tejun Heo77853bf2006-01-23 13:09:36 +0900941 qc->ap->ops->tf_read(qc->ap, &qc->tf);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900942 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900943}
944
945/**
946 * ata_exec_internal - execute libata internal command
947 * @ap: Port to which the command is sent
948 * @dev: Device to which the command is sent
949 * @tf: Taskfile registers for the command and the result
950 * @dma_dir: Data tranfer direction of the command
951 * @buf: Data buffer of the command
952 * @buflen: Length of data buffer
953 *
954 * Executes libata internal command with timeout. @tf contains
955 * command on entry and result on return. Timeout and error
956 * conditions are reported via return value. No recovery action
957 * is taken after a command times out. It's caller's duty to
958 * clean up after timeout.
959 *
960 * LOCKING:
961 * None. Should be called with kernel context, might sleep.
962 */
963
964static unsigned
965ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
966 struct ata_taskfile *tf,
967 int dma_dir, void *buf, unsigned int buflen)
968{
969 u8 command = tf->command;
970 struct ata_queued_cmd *qc;
971 DECLARE_COMPLETION(wait);
972 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900973 unsigned int err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900974
975 spin_lock_irqsave(&ap->host_set->lock, flags);
976
977 qc = ata_qc_new_init(ap, dev);
978 BUG_ON(qc == NULL);
979
980 qc->tf = *tf;
981 qc->dma_dir = dma_dir;
982 if (dma_dir != DMA_NONE) {
983 ata_sg_init_one(qc, buf, buflen);
984 qc->nsect = buflen / ATA_SECT_SIZE;
985 }
986
Tejun Heo77853bf2006-01-23 13:09:36 +0900987 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900988 qc->complete_fn = ata_qc_complete_internal;
989
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900990 qc->err_mask = ata_qc_issue(qc);
991 if (qc->err_mask)
Tejun Heo8e436af2006-01-23 13:09:36 +0900992 ata_qc_complete(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900993
994 spin_unlock_irqrestore(&ap->host_set->lock, flags);
995
996 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
Albert Lee41ade502006-03-14 11:19:04 +0800997 ata_port_flush_task(ap);
998
Tejun Heoa2a7a662005-12-13 14:48:31 +0900999 spin_lock_irqsave(&ap->host_set->lock, flags);
1000
1001 /* We're racing with irq here. If we lose, the
1002 * following test prevents us from completing the qc
1003 * again. If completion irq occurs after here but
1004 * before the caller cleans up, it will result in a
1005 * spurious interrupt. We can live with that.
1006 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001007 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001008 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001009 ata_qc_complete(qc);
1010 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1011 ap->id, command);
1012 }
1013
1014 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1015 }
1016
Tejun Heo77853bf2006-01-23 13:09:36 +09001017 *tf = qc->tf;
1018 err_mask = qc->err_mask;
1019
1020 ata_qc_free(qc);
1021
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001022 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1023 * Until those drivers are fixed, we detect the condition
1024 * here, fail the command with AC_ERR_SYSTEM and reenable the
1025 * port.
1026 *
1027 * Note that this doesn't change any behavior as internal
1028 * command failure results in disabling the device in the
1029 * higher layer for LLDDs without new reset/EH callbacks.
1030 *
1031 * Kill the following code as soon as those drivers are fixed.
1032 */
1033 if (ap->flags & ATA_FLAG_PORT_DISABLED) {
1034 err_mask |= AC_ERR_SYSTEM;
1035 ata_port_probe(ap);
1036 }
1037
Tejun Heo77853bf2006-01-23 13:09:36 +09001038 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001042 * ata_pio_need_iordy - check if iordy needed
1043 * @adev: ATA device
1044 *
1045 * Check if the current speed of the device requires IORDY. Used
1046 * by various controllers for chip configuration.
1047 */
1048
1049unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1050{
1051 int pio;
1052 int speed = adev->pio_mode - XFER_PIO_0;
1053
1054 if (speed < 2)
1055 return 0;
1056 if (speed > 2)
1057 return 1;
1058
1059 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1060
1061 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1062 pio = adev->id[ATA_ID_EIDE_PIO];
1063 /* Is the speed faster than the drive allows non IORDY ? */
1064 if (pio) {
1065 /* This is cycle times not frequency - watch the logic! */
1066 if (pio > 240) /* PIO2 is 240nS per cycle */
1067 return 1;
1068 return 0;
1069 }
1070 }
1071 return 0;
1072}
1073
1074/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001075 * ata_dev_read_id - Read ID data from the specified device
1076 * @ap: port on which target device resides
1077 * @dev: target device
1078 * @p_class: pointer to class of the target device (may be changed)
1079 * @post_reset: is this read ID post-reset?
Tejun Heod9572b12006-03-01 16:09:35 +09001080 * @p_id: read IDENTIFY page (newly allocated)
Tejun Heo49016ac2006-02-21 02:12:11 +09001081 *
1082 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1083 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
1084 * devices. This function also takes care of EDD signature
1085 * misreporting (to be removed once EDD support is gone) and
1086 * issues ATA_CMD_INIT_DEV_PARAMS for pre-ATA4 drives.
1087 *
1088 * LOCKING:
1089 * Kernel thread context (may sleep)
1090 *
1091 * RETURNS:
1092 * 0 on success, -errno otherwise.
1093 */
1094static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev,
Tejun Heod9572b12006-03-01 16:09:35 +09001095 unsigned int *p_class, int post_reset, u16 **p_id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001096{
1097 unsigned int class = *p_class;
1098 unsigned int using_edd;
1099 struct ata_taskfile tf;
1100 unsigned int err_mask = 0;
Tejun Heod9572b12006-03-01 16:09:35 +09001101 u16 *id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001102 const char *reason;
1103 int rc;
1104
1105 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1106
1107 if (ap->ops->probe_reset ||
1108 ap->flags & (ATA_FLAG_SRST | ATA_FLAG_SATA_RESET))
1109 using_edd = 0;
1110 else
1111 using_edd = 1;
1112
1113 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1114
Tejun Heod9572b12006-03-01 16:09:35 +09001115 id = kmalloc(sizeof(id[0]) * ATA_ID_WORDS, GFP_KERNEL);
1116 if (id == NULL) {
1117 rc = -ENOMEM;
1118 reason = "out of memory";
1119 goto err_out;
1120 }
1121
Tejun Heo49016ac2006-02-21 02:12:11 +09001122 retry:
1123 ata_tf_init(ap, &tf, dev->devno);
1124
1125 switch (class) {
1126 case ATA_DEV_ATA:
1127 tf.command = ATA_CMD_ID_ATA;
1128 break;
1129 case ATA_DEV_ATAPI:
1130 tf.command = ATA_CMD_ID_ATAPI;
1131 break;
1132 default:
1133 rc = -ENODEV;
1134 reason = "unsupported class";
1135 goto err_out;
1136 }
1137
1138 tf.protocol = ATA_PROT_PIO;
1139
1140 err_mask = ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
1141 id, sizeof(id[0]) * ATA_ID_WORDS);
1142
1143 if (err_mask) {
1144 rc = -EIO;
1145 reason = "I/O error";
1146
1147 if (err_mask & ~AC_ERR_DEV)
1148 goto err_out;
1149
1150 /*
1151 * arg! EDD works for all test cases, but seems to return
1152 * the ATA signature for some ATAPI devices. Until the
1153 * reason for this is found and fixed, we fix up the mess
1154 * here. If IDENTIFY DEVICE returns command aborted
1155 * (as ATAPI devices do), then we issue an
1156 * IDENTIFY PACKET DEVICE.
1157 *
1158 * ATA software reset (SRST, the default) does not appear
1159 * to have this problem.
1160 */
1161 if ((using_edd) && (class == ATA_DEV_ATA)) {
1162 u8 err = tf.feature;
1163 if (err & ATA_ABORTED) {
1164 class = ATA_DEV_ATAPI;
1165 goto retry;
1166 }
1167 }
1168 goto err_out;
1169 }
1170
1171 swap_buf_le16(id, ATA_ID_WORDS);
1172
Tejun Heo49016ac2006-02-21 02:12:11 +09001173 /* sanity check */
1174 if ((class == ATA_DEV_ATA) != ata_id_is_ata(id)) {
1175 rc = -EINVAL;
1176 reason = "device reports illegal type";
1177 goto err_out;
1178 }
1179
1180 if (post_reset && class == ATA_DEV_ATA) {
1181 /*
1182 * The exact sequence expected by certain pre-ATA4 drives is:
1183 * SRST RESET
1184 * IDENTIFY
1185 * INITIALIZE DEVICE PARAMETERS
1186 * anything else..
1187 * Some drives were very specific about that exact sequence.
1188 */
1189 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
1190 err_mask = ata_dev_init_params(ap, dev);
1191 if (err_mask) {
1192 rc = -EIO;
1193 reason = "INIT_DEV_PARAMS failed";
1194 goto err_out;
1195 }
1196
1197 /* current CHS translation info (id[53-58]) might be
1198 * changed. reread the identify device info.
1199 */
1200 post_reset = 0;
1201 goto retry;
1202 }
1203 }
1204
1205 *p_class = class;
Tejun Heod9572b12006-03-01 16:09:35 +09001206 *p_id = id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001207 return 0;
1208
1209 err_out:
1210 printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1211 ap->id, dev->devno, reason);
Tejun Heod9572b12006-03-01 16:09:35 +09001212 kfree(id);
Tejun Heo49016ac2006-02-21 02:12:11 +09001213 return rc;
1214}
1215
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001216static inline u8 ata_dev_knobble(const struct ata_port *ap,
1217 struct ata_device *dev)
1218{
1219 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
1220}
1221
Tejun Heo49016ac2006-02-21 02:12:11 +09001222/**
Tejun Heoffeae412006-03-01 16:09:35 +09001223 * ata_dev_configure - Configure the specified ATA/ATAPI device
1224 * @ap: Port on which target device resides
1225 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001226 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 *
Tejun Heoffeae412006-03-01 16:09:35 +09001228 * Configure @dev according to @dev->id. Generic and low-level
1229 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 *
1231 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001232 * Kernel thread context (may sleep)
1233 *
1234 * RETURNS:
1235 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001237static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
1238 int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Tejun Heo1148c3a2006-03-13 19:48:04 +09001240 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001241 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001242 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 if (!ata_dev_present(dev)) {
1245 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001246 ap->id, dev->devno);
1247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
1249
Tejun Heoffeae412006-03-01 16:09:35 +09001250 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001252 /* print device capabilities */
1253 if (print_info)
1254 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1255 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1256 ap->id, dev->devno, id[49], id[82], id[83],
1257 id[84], id[85], id[86], id[87], id[88]);
1258
Tejun Heo208a9932006-03-05 17:55:58 +09001259 /* initialize to-be-configured parameters */
1260 dev->flags = 0;
1261 dev->max_sectors = 0;
1262 dev->cdb_len = 0;
1263 dev->n_sectors = 0;
1264 dev->cylinders = 0;
1265 dev->heads = 0;
1266 dev->sectors = 0;
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /*
1269 * common ATA, ATAPI feature tests
1270 */
1271
Tejun Heoff8854b2006-03-06 04:31:56 +09001272 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001273 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Tejun Heo1148c3a2006-03-13 19:48:04 +09001275 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 /* ATA-specific feature tests */
1278 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001279 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001280
Tejun Heo1148c3a2006-03-13 19:48:04 +09001281 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001282 const char *lba_desc;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001283
Tejun Heo4c2d7212006-03-05 17:55:58 +09001284 lba_desc = "LBA";
1285 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001286 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001287 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001288 lba_desc = "LBA48";
1289 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001290
1291 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001292 if (print_info)
1293 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1294 "max %s, %Lu sectors: %s\n",
1295 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001296 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001297 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001298 (unsigned long long)dev->n_sectors,
1299 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001300 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001301 /* CHS */
1302
1303 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001304 dev->cylinders = id[1];
1305 dev->heads = id[3];
1306 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001307
Tejun Heo1148c3a2006-03-13 19:48:04 +09001308 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001309 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001310 dev->cylinders = id[54];
1311 dev->heads = id[55];
1312 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001313 }
1314
1315 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001316 if (print_info)
1317 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1318 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1319 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001320 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001321 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001322 (unsigned long long)dev->n_sectors,
1323 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
1325
Tejun Heo6e7846e2006-02-12 23:32:58 +09001326 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328
1329 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001330 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001331 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1333 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001334 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 goto err_out_nosup;
1336 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001337 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001340 if (print_info)
1341 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
Tejun Heoff8854b2006-03-06 04:31:56 +09001342 ap->id, dev->devno, ata_mode_string(xfer_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344
Tejun Heo6e7846e2006-02-12 23:32:58 +09001345 ap->host->max_cmd_len = 0;
1346 for (i = 0; i < ATA_MAX_DEVICES; i++)
1347 ap->host->max_cmd_len = max_t(unsigned int,
1348 ap->host->max_cmd_len,
1349 ap->device[i].cdb_len);
1350
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001351 /* limit bridge transfers to udma5, 200 sectors */
1352 if (ata_dev_knobble(ap, dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001353 if (print_info)
1354 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1355 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001356 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001357 dev->max_sectors = ATA_MAX_SECTORS;
1358 }
1359
1360 if (ap->ops->dev_config)
1361 ap->ops->dev_config(ap, dev);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001368 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
1370
1371/**
1372 * ata_bus_probe - Reset and probe ATA bus
1373 * @ap: Bus to probe
1374 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001375 * Master ATA bus probing function. Initiates a hardware-dependent
1376 * bus reset, then attempts to identify any devices found on
1377 * the bus.
1378 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001380 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 *
1382 * RETURNS:
1383 * Zero on success, non-zero on error.
1384 */
1385
1386static int ata_bus_probe(struct ata_port *ap)
1387{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001388 unsigned int classes[ATA_MAX_DEVICES];
1389 unsigned int i, rc, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Tejun Heo28ca5c52006-03-01 16:09:36 +09001391 ata_port_probe(ap);
1392
Tejun Heo20444702006-03-13 01:57:01 +09001393 /* reset and determine device classes */
1394 for (i = 0; i < ATA_MAX_DEVICES; i++)
1395 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001396
Tejun Heo20444702006-03-13 01:57:01 +09001397 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001398 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001399 if (rc) {
1400 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1401 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001402 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001403 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001404 ap->ops->phy_reset(ap);
1405
Tejun Heo20444702006-03-13 01:57:01 +09001406 if (!(ap->flags & ATA_FLAG_PORT_DISABLED))
1407 for (i = 0; i < ATA_MAX_DEVICES; i++)
Tejun Heo28ca5c52006-03-01 16:09:36 +09001408 classes[i] = ap->device[i].class;
Tejun Heo20444702006-03-13 01:57:01 +09001409
Tejun Heo28ca5c52006-03-01 16:09:36 +09001410 ata_port_probe(ap);
1411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Tejun Heo20444702006-03-13 01:57:01 +09001413 for (i = 0; i < ATA_MAX_DEVICES; i++)
1414 if (classes[i] == ATA_DEV_UNKNOWN)
1415 classes[i] = ATA_DEV_NONE;
1416
Tejun Heo28ca5c52006-03-01 16:09:36 +09001417 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoffeae412006-03-01 16:09:35 +09001419 struct ata_device *dev = &ap->device[i];
1420
Tejun Heo28ca5c52006-03-01 16:09:36 +09001421 dev->class = classes[i];
1422
Tejun Heoffeae412006-03-01 16:09:35 +09001423 if (!ata_dev_present(dev))
1424 continue;
1425
1426 WARN_ON(dev->id != NULL);
1427 if (ata_dev_read_id(ap, dev, &dev->class, 1, &dev->id)) {
1428 dev->class = ATA_DEV_NONE;
1429 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
Tejun Heoffeae412006-03-01 16:09:35 +09001431
Tejun Heo4c2d7212006-03-05 17:55:58 +09001432 if (ata_dev_configure(ap, dev, 1)) {
Tejun Heofcef9782006-03-24 15:25:31 +09001433 ata_dev_disable(ap, dev);
Tejun Heoffeae412006-03-01 16:09:35 +09001434 continue;
1435 }
1436
Tejun Heoffeae412006-03-01 16:09:35 +09001437 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
1439
Tejun Heo28ca5c52006-03-01 16:09:36 +09001440 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 goto err_out_disable;
1442
1443 ata_set_mode(ap);
1444 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1445 goto err_out_disable;
1446
1447 return 0;
1448
1449err_out_disable:
1450 ap->ops->port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return -1;
1452}
1453
1454/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001455 * ata_port_probe - Mark port as enabled
1456 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001458 * Modify @ap data structure such that the system
1459 * thinks that the entire port is enabled.
1460 *
1461 * LOCKING: host_set lock, or some other form of
1462 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 */
1464
1465void ata_port_probe(struct ata_port *ap)
1466{
1467 ap->flags &= ~ATA_FLAG_PORT_DISABLED;
1468}
1469
1470/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001471 * sata_print_link_status - Print SATA link status
1472 * @ap: SATA port to printk link status about
1473 *
1474 * This function prints link speed and status of a SATA link.
1475 *
1476 * LOCKING:
1477 * None.
1478 */
1479static void sata_print_link_status(struct ata_port *ap)
1480{
1481 u32 sstatus, tmp;
1482 const char *speed;
1483
1484 if (!ap->ops->scr_read)
1485 return;
1486
1487 sstatus = scr_read(ap, SCR_STATUS);
1488
1489 if (sata_dev_present(ap)) {
1490 tmp = (sstatus >> 4) & 0xf;
1491 if (tmp & (1 << 0))
1492 speed = "1.5";
1493 else if (tmp & (1 << 1))
1494 speed = "3.0";
1495 else
1496 speed = "<unknown>";
1497 printk(KERN_INFO "ata%u: SATA link up %s Gbps (SStatus %X)\n",
1498 ap->id, speed, sstatus);
1499 } else {
1500 printk(KERN_INFO "ata%u: SATA link down (SStatus %X)\n",
1501 ap->id, sstatus);
1502 }
1503}
1504
1505/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001506 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1507 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001509 * This function issues commands to standard SATA Sxxx
1510 * PHY registers, to wake up the phy (and device), and
1511 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 *
1513 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001514 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 *
1516 */
1517void __sata_phy_reset(struct ata_port *ap)
1518{
1519 u32 sstatus;
1520 unsigned long timeout = jiffies + (HZ * 5);
1521
1522 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001523 /* issue phy wake/reset */
1524 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001525 /* Couldn't find anything in SATA I/II specs, but
1526 * AHCI-1.1 10.4.2 says at least 1 ms. */
1527 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
Brett Russcdcca892005-03-28 15:10:27 -05001529 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 /* wait for phy to become ready, if necessary */
1532 do {
1533 msleep(200);
1534 sstatus = scr_read(ap, SCR_STATUS);
1535 if ((sstatus & 0xf) != 1)
1536 break;
1537 } while (time_before(jiffies, timeout));
1538
Tejun Heo3be680b2005-12-19 22:35:02 +09001539 /* print link status */
1540 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001541
Tejun Heo3be680b2005-12-19 22:35:02 +09001542 /* TODO: phy layer with polling, timeouts, etc. */
1543 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001545 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1549 return;
1550
1551 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1552 ata_port_disable(ap);
1553 return;
1554 }
1555
1556 ap->cbl = ATA_CBL_SATA;
1557}
1558
1559/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001560 * sata_phy_reset - Reset SATA bus.
1561 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001563 * This function resets the SATA bus, and then probes
1564 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 *
1566 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001567 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 *
1569 */
1570void sata_phy_reset(struct ata_port *ap)
1571{
1572 __sata_phy_reset(ap);
1573 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1574 return;
1575 ata_bus_reset(ap);
1576}
1577
1578/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001579 * ata_port_disable - Disable port.
1580 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001582 * Modify @ap data structure such that the system
1583 * thinks that the entire port is disabled, and should
1584 * never attempt to probe or communicate with devices
1585 * on this port.
1586 *
1587 * LOCKING: host_set lock, or some other form of
1588 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 */
1590
1591void ata_port_disable(struct ata_port *ap)
1592{
1593 ap->device[0].class = ATA_DEV_NONE;
1594 ap->device[1].class = ATA_DEV_NONE;
1595 ap->flags |= ATA_FLAG_PORT_DISABLED;
1596}
1597
Alan Cox452503f2005-10-21 19:01:32 -04001598/*
1599 * This mode timing computation functionality is ported over from
1600 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1601 */
1602/*
1603 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1604 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1605 * for PIO 5, which is a nonstandard extension and UDMA6, which
1606 * is currently supported only by Maxtor drives.
1607 */
1608
1609static const struct ata_timing ata_timing[] = {
1610
1611 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1612 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1613 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1614 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1615
1616 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1617 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1618 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1619
1620/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
1621
1622 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1623 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1624 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
1625
1626 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1627 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1628 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1629
1630/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1631 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1632 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1633
1634 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1635 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1636 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1637
1638/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1639
1640 { 0xFF }
1641};
1642
1643#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1644#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1645
1646static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1647{
1648 q->setup = EZ(t->setup * 1000, T);
1649 q->act8b = EZ(t->act8b * 1000, T);
1650 q->rec8b = EZ(t->rec8b * 1000, T);
1651 q->cyc8b = EZ(t->cyc8b * 1000, T);
1652 q->active = EZ(t->active * 1000, T);
1653 q->recover = EZ(t->recover * 1000, T);
1654 q->cycle = EZ(t->cycle * 1000, T);
1655 q->udma = EZ(t->udma * 1000, UT);
1656}
1657
1658void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1659 struct ata_timing *m, unsigned int what)
1660{
1661 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1662 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1663 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1664 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1665 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1666 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1667 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1668 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1669}
1670
1671static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1672{
1673 const struct ata_timing *t;
1674
1675 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001676 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001677 return NULL;
1678 return t;
1679}
1680
1681int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1682 struct ata_timing *t, int T, int UT)
1683{
1684 const struct ata_timing *s;
1685 struct ata_timing p;
1686
1687 /*
1688 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001689 */
Alan Cox452503f2005-10-21 19:01:32 -04001690
1691 if (!(s = ata_timing_find_mode(speed)))
1692 return -EINVAL;
1693
Albert Lee75b1f2f2005-11-16 17:06:18 +08001694 memcpy(t, s, sizeof(*s));
1695
Alan Cox452503f2005-10-21 19:01:32 -04001696 /*
1697 * If the drive is an EIDE drive, it can tell us it needs extended
1698 * PIO/MW_DMA cycle timing.
1699 */
1700
1701 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1702 memset(&p, 0, sizeof(p));
1703 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1704 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1705 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1706 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1707 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1708 }
1709 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1710 }
1711
1712 /*
1713 * Convert the timing to bus clock counts.
1714 */
1715
Albert Lee75b1f2f2005-11-16 17:06:18 +08001716 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001717
1718 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001719 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1720 * S.M.A.R.T * and some other commands. We have to ensure that the
1721 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001722 */
1723
1724 if (speed > XFER_PIO_4) {
1725 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1726 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1727 }
1728
1729 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001730 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001731 */
1732
1733 if (t->act8b + t->rec8b < t->cyc8b) {
1734 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1735 t->rec8b = t->cyc8b - t->act8b;
1736 }
1737
1738 if (t->active + t->recover < t->cycle) {
1739 t->active += (t->cycle - (t->active + t->recover)) / 2;
1740 t->recover = t->cycle - t->active;
1741 }
1742
1743 return 0;
1744}
1745
Tejun Heo83206a22006-03-24 15:25:31 +09001746static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Tejun Heo83206a22006-03-24 15:25:31 +09001748 unsigned int err_mask;
1749 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 if (dev->xfer_shift == ATA_SHIFT_PIO)
1752 dev->flags |= ATA_DFLAG_PIO;
1753
Tejun Heo83206a22006-03-24 15:25:31 +09001754 err_mask = ata_dev_set_xfermode(ap, dev);
1755 if (err_mask) {
1756 printk(KERN_ERR
1757 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1758 ap->id, err_mask);
1759 return -EIO;
1760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Tejun Heo83206a22006-03-24 15:25:31 +09001762 rc = ata_dev_revalidate(ap, dev, 0);
1763 if (rc) {
1764 printk(KERN_ERR
1765 "ata%u: failed to revalidate after set xfermode\n",
1766 ap->id);
1767 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001768 }
1769
Tejun Heo23e71c32006-03-06 04:31:57 +09001770 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1771 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001774 ap->id, dev->devno,
1775 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001776 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777}
1778
1779static int ata_host_set_pio(struct ata_port *ap)
1780{
Tejun Heoa6d5a512006-03-06 04:31:57 +09001781 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1784 struct ata_device *dev = &ap->device[i];
Tejun Heoa6d5a512006-03-06 04:31:57 +09001785
1786 if (!ata_dev_present(dev))
1787 continue;
1788
1789 if (!dev->pio_mode) {
Alan Cox88f93a32006-03-21 16:04:12 +00001790 printk(KERN_WARNING "ata%u: no PIO support for device %d.\n", ap->id, i);
Tejun Heoa6d5a512006-03-06 04:31:57 +09001791 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09001793
1794 dev->xfer_mode = dev->pio_mode;
1795 dev->xfer_shift = ATA_SHIFT_PIO;
1796 if (ap->ops->set_piomode)
1797 ap->ops->set_piomode(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799
1800 return 0;
1801}
1802
Tejun Heoa6d5a512006-03-06 04:31:57 +09001803static void ata_host_set_dma(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
1805 int i;
1806
1807 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1808 struct ata_device *dev = &ap->device[i];
Tejun Heoa6d5a512006-03-06 04:31:57 +09001809
1810 if (!ata_dev_present(dev) || !dev->dma_mode)
1811 continue;
1812
1813 dev->xfer_mode = dev->dma_mode;
1814 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
1815 if (ap->ops->set_dmamode)
1816 ap->ops->set_dmamode(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818}
1819
1820/**
1821 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1822 * @ap: port on which timings will be programmed
1823 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001824 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.).
1825 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001827 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 */
1829static void ata_set_mode(struct ata_port *ap)
1830{
Tejun Heoa6d5a512006-03-06 04:31:57 +09001831 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Tejun Heoa6d5a512006-03-06 04:31:57 +09001833 /* step 1: calculate xfer_mask */
1834 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1835 struct ata_device *dev = &ap->device[i];
Tejun Heoacf356b2006-03-24 14:07:50 +09001836 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09001837
1838 if (!ata_dev_present(dev))
1839 continue;
1840
Tejun Heoacf356b2006-03-24 14:07:50 +09001841 ata_dev_xfermask(ap, dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09001842
Tejun Heoacf356b2006-03-24 14:07:50 +09001843 /* TODO: let LLDD filter dev->*_mask here */
1844
1845 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
1846 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
1847 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
1848 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09001849 }
1850
1851 /* step 2: always set host PIO timings */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 rc = ata_host_set_pio(ap);
1853 if (rc)
1854 goto err_out;
1855
Tejun Heoa6d5a512006-03-06 04:31:57 +09001856 /* step 3: set host DMA timings */
1857 ata_host_set_dma(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09001860 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1861 struct ata_device *dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Tejun Heo83206a22006-03-24 15:25:31 +09001863 if (!ata_dev_present(dev))
1864 continue;
1865
1866 if (ata_dev_set_mode(ap, dev))
1867 goto err_out;
1868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 if (ap->ops->post_set_mode)
1871 ap->ops->post_set_mode(ap);
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 return;
1874
1875err_out:
1876 ata_port_disable(ap);
1877}
1878
1879/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001880 * ata_tf_to_host - issue ATA taskfile to host controller
1881 * @ap: port to which command is being issued
1882 * @tf: ATA taskfile register set
1883 *
1884 * Issues ATA taskfile register set to ATA host controller,
1885 * with proper synchronization with interrupt handler and
1886 * other threads.
1887 *
1888 * LOCKING:
1889 * spin_lock_irqsave(host_set lock)
1890 */
1891
1892static inline void ata_tf_to_host(struct ata_port *ap,
1893 const struct ata_taskfile *tf)
1894{
1895 ap->ops->tf_load(ap, tf);
1896 ap->ops->exec_command(ap, tf);
1897}
1898
1899/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 * ata_busy_sleep - sleep until BSY clears, or timeout
1901 * @ap: port containing status register to be polled
1902 * @tmout_pat: impatience timeout
1903 * @tmout: overall timeout
1904 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001905 * Sleep until ATA Status register bit BSY clears,
1906 * or a timeout occurs.
1907 *
1908 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 */
1910
Tejun Heo6f8b9952006-01-24 17:05:21 +09001911unsigned int ata_busy_sleep (struct ata_port *ap,
1912 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
1914 unsigned long timer_start, timeout;
1915 u8 status;
1916
1917 status = ata_busy_wait(ap, ATA_BUSY, 300);
1918 timer_start = jiffies;
1919 timeout = timer_start + tmout_pat;
1920 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1921 msleep(50);
1922 status = ata_busy_wait(ap, ATA_BUSY, 3);
1923 }
1924
1925 if (status & ATA_BUSY)
1926 printk(KERN_WARNING "ata%u is slow to respond, "
1927 "please be patient\n", ap->id);
1928
1929 timeout = timer_start + tmout;
1930 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1931 msleep(50);
1932 status = ata_chk_status(ap);
1933 }
1934
1935 if (status & ATA_BUSY) {
1936 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
1937 ap->id, tmout / HZ);
1938 return 1;
1939 }
1940
1941 return 0;
1942}
1943
1944static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
1945{
1946 struct ata_ioports *ioaddr = &ap->ioaddr;
1947 unsigned int dev0 = devmask & (1 << 0);
1948 unsigned int dev1 = devmask & (1 << 1);
1949 unsigned long timeout;
1950
1951 /* if device 0 was found in ata_devchk, wait for its
1952 * BSY bit to clear
1953 */
1954 if (dev0)
1955 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1956
1957 /* if device 1 was found in ata_devchk, wait for
1958 * register access, then wait for BSY to clear
1959 */
1960 timeout = jiffies + ATA_TMOUT_BOOT;
1961 while (dev1) {
1962 u8 nsect, lbal;
1963
1964 ap->ops->dev_select(ap, 1);
1965 if (ap->flags & ATA_FLAG_MMIO) {
1966 nsect = readb((void __iomem *) ioaddr->nsect_addr);
1967 lbal = readb((void __iomem *) ioaddr->lbal_addr);
1968 } else {
1969 nsect = inb(ioaddr->nsect_addr);
1970 lbal = inb(ioaddr->lbal_addr);
1971 }
1972 if ((nsect == 1) && (lbal == 1))
1973 break;
1974 if (time_after(jiffies, timeout)) {
1975 dev1 = 0;
1976 break;
1977 }
1978 msleep(50); /* give drive a breather */
1979 }
1980 if (dev1)
1981 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1982
1983 /* is all this really necessary? */
1984 ap->ops->dev_select(ap, 0);
1985 if (dev1)
1986 ap->ops->dev_select(ap, 1);
1987 if (dev0)
1988 ap->ops->dev_select(ap, 0);
1989}
1990
1991/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001992 * ata_bus_edd - Issue EXECUTE DEVICE DIAGNOSTIC command.
1993 * @ap: Port to reset and probe
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001995 * Use the EXECUTE DEVICE DIAGNOSTIC command to reset and
1996 * probe the bus. Not often used these days.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 *
1998 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001999 * PCI/etc. bus probe sem.
Jeff Garzike5338252005-10-30 21:37:17 -05002000 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 *
2002 */
2003
2004static unsigned int ata_bus_edd(struct ata_port *ap)
2005{
2006 struct ata_taskfile tf;
Jeff Garzike5338252005-10-30 21:37:17 -05002007 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 /* set up execute-device-diag (bus reset) taskfile */
2010 /* also, take interrupts to a known state (disabled) */
2011 DPRINTK("execute-device-diag\n");
2012 ata_tf_init(ap, &tf, 0);
2013 tf.ctl |= ATA_NIEN;
2014 tf.command = ATA_CMD_EDD;
2015 tf.protocol = ATA_PROT_NODATA;
2016
2017 /* do bus reset */
Jeff Garzike5338252005-10-30 21:37:17 -05002018 spin_lock_irqsave(&ap->host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 ata_tf_to_host(ap, &tf);
Jeff Garzike5338252005-10-30 21:37:17 -05002020 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 /* spec says at least 2ms. but who knows with those
2023 * crazy ATAPI devices...
2024 */
2025 msleep(150);
2026
2027 return ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2028}
2029
2030static unsigned int ata_bus_softreset(struct ata_port *ap,
2031 unsigned int devmask)
2032{
2033 struct ata_ioports *ioaddr = &ap->ioaddr;
2034
2035 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2036
2037 /* software reset. causes dev0 to be selected */
2038 if (ap->flags & ATA_FLAG_MMIO) {
2039 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2040 udelay(20); /* FIXME: flush */
2041 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2042 udelay(20); /* FIXME: flush */
2043 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2044 } else {
2045 outb(ap->ctl, ioaddr->ctl_addr);
2046 udelay(10);
2047 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2048 udelay(10);
2049 outb(ap->ctl, ioaddr->ctl_addr);
2050 }
2051
2052 /* spec mandates ">= 2ms" before checking status.
2053 * We wait 150ms, because that was the magic delay used for
2054 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2055 * between when the ATA command register is written, and then
2056 * status is checked. Because waiting for "a while" before
2057 * checking status is fine, post SRST, we perform this magic
2058 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002059 *
2060 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 */
2062 msleep(150);
2063
Alan Cox09c7ad72006-03-22 15:52:40 +00002064
2065 /* Before we perform post reset processing we want to see if
2066 the bus shows 0xFF because the odd clown forgets the D7 pulldown
2067 resistor */
2068
2069 if (ata_check_status(ap) == 0xFF)
2070 return 1; /* Positive is failure for some reason */
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 ata_bus_post_reset(ap, devmask);
2073
2074 return 0;
2075}
2076
2077/**
2078 * ata_bus_reset - reset host port and associated ATA channel
2079 * @ap: port to reset
2080 *
2081 * This is typically the first time we actually start issuing
2082 * commands to the ATA channel. We wait for BSY to clear, then
2083 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2084 * result. Determine what devices, if any, are on the channel
2085 * by looking at the device 0/1 error register. Look at the signature
2086 * stored in each device's taskfile registers, to determine if
2087 * the device is ATA or ATAPI.
2088 *
2089 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002090 * PCI/etc. bus probe sem.
2091 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 *
2093 * SIDE EFFECTS:
2094 * Sets ATA_FLAG_PORT_DISABLED if bus reset fails.
2095 */
2096
2097void ata_bus_reset(struct ata_port *ap)
2098{
2099 struct ata_ioports *ioaddr = &ap->ioaddr;
2100 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2101 u8 err;
2102 unsigned int dev0, dev1 = 0, rc = 0, devmask = 0;
2103
2104 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2105
2106 /* determine if device 0/1 are present */
2107 if (ap->flags & ATA_FLAG_SATA_RESET)
2108 dev0 = 1;
2109 else {
2110 dev0 = ata_devchk(ap, 0);
2111 if (slave_possible)
2112 dev1 = ata_devchk(ap, 1);
2113 }
2114
2115 if (dev0)
2116 devmask |= (1 << 0);
2117 if (dev1)
2118 devmask |= (1 << 1);
2119
2120 /* select device 0 again */
2121 ap->ops->dev_select(ap, 0);
2122
2123 /* issue bus reset */
2124 if (ap->flags & ATA_FLAG_SRST)
2125 rc = ata_bus_softreset(ap, devmask);
2126 else if ((ap->flags & ATA_FLAG_SATA_RESET) == 0) {
2127 /* set up device control */
2128 if (ap->flags & ATA_FLAG_MMIO)
2129 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2130 else
2131 outb(ap->ctl, ioaddr->ctl_addr);
2132 rc = ata_bus_edd(ap);
2133 }
2134
2135 if (rc)
2136 goto err_out;
2137
2138 /*
2139 * determine by signature whether we have ATA or ATAPI devices
2140 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002141 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002143 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /* re-enable interrupts */
2146 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2147 ata_irq_on(ap);
2148
2149 /* is double-select really necessary? */
2150 if (ap->device[1].class != ATA_DEV_NONE)
2151 ap->ops->dev_select(ap, 1);
2152 if (ap->device[0].class != ATA_DEV_NONE)
2153 ap->ops->dev_select(ap, 0);
2154
2155 /* if no devices were detected, disable this port */
2156 if ((ap->device[0].class == ATA_DEV_NONE) &&
2157 (ap->device[1].class == ATA_DEV_NONE))
2158 goto err_out;
2159
2160 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2161 /* set up device control for ATA_FLAG_SATA_RESET */
2162 if (ap->flags & ATA_FLAG_MMIO)
2163 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2164 else
2165 outb(ap->ctl, ioaddr->ctl_addr);
2166 }
2167
2168 DPRINTK("EXIT\n");
2169 return;
2170
2171err_out:
2172 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2173 ap->ops->port_disable(ap);
2174
2175 DPRINTK("EXIT\n");
2176}
2177
Tejun Heo7a7921e2006-02-02 18:20:00 +09002178static int sata_phy_resume(struct ata_port *ap)
2179{
2180 unsigned long timeout = jiffies + (HZ * 5);
2181 u32 sstatus;
2182
2183 scr_write_flush(ap, SCR_CONTROL, 0x300);
2184
2185 /* Wait for phy to become ready, if necessary. */
2186 do {
2187 msleep(200);
2188 sstatus = scr_read(ap, SCR_STATUS);
2189 if ((sstatus & 0xf) != 1)
2190 return 0;
2191 } while (time_before(jiffies, timeout));
2192
2193 return -1;
2194}
2195
Tejun Heoc2bd5802006-01-24 17:05:22 +09002196/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002197 * ata_std_probeinit - initialize probing
2198 * @ap: port to be probed
2199 *
2200 * @ap is about to be probed. Initialize it. This function is
2201 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002202 *
2203 * NOTE!!! Do not use this function as probeinit if a low level
2204 * driver implements only hardreset. Just pass NULL as probeinit
2205 * in that case. Using this function is probably okay but doing
2206 * so makes reset sequence different from the original
2207 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002208 */
2209extern void ata_std_probeinit(struct ata_port *ap)
2210{
Tejun Heo3a397462006-02-10 23:58:48 +09002211 if (ap->flags & ATA_FLAG_SATA && ap->ops->scr_read) {
Tejun Heo8a19ac82006-02-02 18:20:00 +09002212 sata_phy_resume(ap);
Tejun Heo3a397462006-02-10 23:58:48 +09002213 if (sata_dev_present(ap))
2214 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2215 }
Tejun Heo8a19ac82006-02-02 18:20:00 +09002216}
2217
2218/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002219 * ata_std_softreset - reset host port via ATA SRST
2220 * @ap: port to reset
2221 * @verbose: fail verbosely
2222 * @classes: resulting classes of attached devices
2223 *
2224 * Reset host port using ATA SRST. This function is to be used
2225 * as standard callback for ata_drive_*_reset() functions.
2226 *
2227 * LOCKING:
2228 * Kernel thread context (may sleep)
2229 *
2230 * RETURNS:
2231 * 0 on success, -errno otherwise.
2232 */
2233int ata_std_softreset(struct ata_port *ap, int verbose, unsigned int *classes)
2234{
2235 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2236 unsigned int devmask = 0, err_mask;
2237 u8 err;
2238
2239 DPRINTK("ENTER\n");
2240
Tejun Heo3a397462006-02-10 23:58:48 +09002241 if (ap->ops->scr_read && !sata_dev_present(ap)) {
2242 classes[0] = ATA_DEV_NONE;
2243 goto out;
2244 }
2245
Tejun Heoc2bd5802006-01-24 17:05:22 +09002246 /* determine if device 0/1 are present */
2247 if (ata_devchk(ap, 0))
2248 devmask |= (1 << 0);
2249 if (slave_possible && ata_devchk(ap, 1))
2250 devmask |= (1 << 1);
2251
Tejun Heoc2bd5802006-01-24 17:05:22 +09002252 /* select device 0 again */
2253 ap->ops->dev_select(ap, 0);
2254
2255 /* issue bus reset */
2256 DPRINTK("about to softreset, devmask=%x\n", devmask);
2257 err_mask = ata_bus_softreset(ap, devmask);
2258 if (err_mask) {
2259 if (verbose)
2260 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2261 ap->id, err_mask);
2262 else
2263 DPRINTK("EXIT, softreset failed (err_mask=0x%x)\n",
2264 err_mask);
2265 return -EIO;
2266 }
2267
2268 /* determine by signature whether we have ATA or ATAPI devices */
2269 classes[0] = ata_dev_try_classify(ap, 0, &err);
2270 if (slave_possible && err != 0x81)
2271 classes[1] = ata_dev_try_classify(ap, 1, &err);
2272
Tejun Heo3a397462006-02-10 23:58:48 +09002273 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002274 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2275 return 0;
2276}
2277
2278/**
2279 * sata_std_hardreset - reset host port via SATA phy reset
2280 * @ap: port to reset
2281 * @verbose: fail verbosely
2282 * @class: resulting class of attached device
2283 *
2284 * SATA phy-reset host port using DET bits of SControl register.
2285 * This function is to be used as standard callback for
2286 * ata_drive_*_reset().
2287 *
2288 * LOCKING:
2289 * Kernel thread context (may sleep)
2290 *
2291 * RETURNS:
2292 * 0 on success, -errno otherwise.
2293 */
2294int sata_std_hardreset(struct ata_port *ap, int verbose, unsigned int *class)
2295{
Tejun Heoc2bd5802006-01-24 17:05:22 +09002296 DPRINTK("ENTER\n");
2297
2298 /* Issue phy wake/reset */
2299 scr_write_flush(ap, SCR_CONTROL, 0x301);
2300
2301 /*
2302 * Couldn't find anything in SATA I/II specs, but AHCI-1.1
2303 * 10.4.2 says at least 1 ms.
2304 */
2305 msleep(1);
2306
Tejun Heo7a7921e2006-02-02 18:20:00 +09002307 /* Bring phy back */
2308 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002309
Tejun Heoc2bd5802006-01-24 17:05:22 +09002310 /* TODO: phy layer with polling, timeouts, etc. */
2311 if (!sata_dev_present(ap)) {
2312 *class = ATA_DEV_NONE;
2313 DPRINTK("EXIT, link offline\n");
2314 return 0;
2315 }
2316
2317 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2318 if (verbose)
2319 printk(KERN_ERR "ata%u: COMRESET failed "
2320 "(device not ready)\n", ap->id);
2321 else
2322 DPRINTK("EXIT, device not ready\n");
2323 return -EIO;
2324 }
2325
Tejun Heo3a397462006-02-10 23:58:48 +09002326 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2327
Tejun Heoc2bd5802006-01-24 17:05:22 +09002328 *class = ata_dev_try_classify(ap, 0, NULL);
2329
2330 DPRINTK("EXIT, class=%u\n", *class);
2331 return 0;
2332}
2333
2334/**
2335 * ata_std_postreset - standard postreset callback
2336 * @ap: the target ata_port
2337 * @classes: classes of attached devices
2338 *
2339 * This function is invoked after a successful reset. Note that
2340 * the device might have been reset more than once using
2341 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002342 *
2343 * This function is to be used as standard callback for
2344 * ata_drive_*_reset().
2345 *
2346 * LOCKING:
2347 * Kernel thread context (may sleep)
2348 */
2349void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2350{
2351 DPRINTK("ENTER\n");
2352
Tejun Heo56497bd2006-02-15 15:01:42 +09002353 /* set cable type if it isn't already set */
Tejun Heoc2bd5802006-01-24 17:05:22 +09002354 if (ap->cbl == ATA_CBL_NONE && ap->flags & ATA_FLAG_SATA)
2355 ap->cbl = ATA_CBL_SATA;
2356
2357 /* print link status */
2358 if (ap->cbl == ATA_CBL_SATA)
2359 sata_print_link_status(ap);
2360
Tejun Heo3a397462006-02-10 23:58:48 +09002361 /* re-enable interrupts */
2362 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2363 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002364
2365 /* is double-select really necessary? */
2366 if (classes[0] != ATA_DEV_NONE)
2367 ap->ops->dev_select(ap, 1);
2368 if (classes[1] != ATA_DEV_NONE)
2369 ap->ops->dev_select(ap, 0);
2370
Tejun Heo3a397462006-02-10 23:58:48 +09002371 /* bail out if no device is present */
2372 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2373 DPRINTK("EXIT, no device\n");
2374 return;
2375 }
2376
2377 /* set up device control */
2378 if (ap->ioaddr.ctl_addr) {
2379 if (ap->flags & ATA_FLAG_MMIO)
2380 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2381 else
2382 outb(ap->ctl, ap->ioaddr.ctl_addr);
2383 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002384
2385 DPRINTK("EXIT\n");
2386}
2387
2388/**
2389 * ata_std_probe_reset - standard probe reset method
2390 * @ap: prot to perform probe-reset
2391 * @classes: resulting classes of attached devices
2392 *
2393 * The stock off-the-shelf ->probe_reset method.
2394 *
2395 * LOCKING:
2396 * Kernel thread context (may sleep)
2397 *
2398 * RETURNS:
2399 * 0 on success, -errno otherwise.
2400 */
2401int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2402{
2403 ata_reset_fn_t hardreset;
2404
2405 hardreset = NULL;
Tejun Heob911fc32006-02-02 18:20:00 +09002406 if (ap->flags & ATA_FLAG_SATA && ap->ops->scr_read)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002407 hardreset = sata_std_hardreset;
2408
Tejun Heo8a19ac82006-02-02 18:20:00 +09002409 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002410 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002411 ata_std_postreset, classes);
2412}
2413
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002414static int do_probe_reset(struct ata_port *ap, ata_reset_fn_t reset,
2415 ata_postreset_fn_t postreset,
2416 unsigned int *classes)
2417{
2418 int i, rc;
2419
2420 for (i = 0; i < ATA_MAX_DEVICES; i++)
2421 classes[i] = ATA_DEV_UNKNOWN;
2422
2423 rc = reset(ap, 0, classes);
2424 if (rc)
2425 return rc;
2426
2427 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2428 * is complete and convert all ATA_DEV_UNKNOWN to
2429 * ATA_DEV_NONE.
2430 */
2431 for (i = 0; i < ATA_MAX_DEVICES; i++)
2432 if (classes[i] != ATA_DEV_UNKNOWN)
2433 break;
2434
2435 if (i < ATA_MAX_DEVICES)
2436 for (i = 0; i < ATA_MAX_DEVICES; i++)
2437 if (classes[i] == ATA_DEV_UNKNOWN)
2438 classes[i] = ATA_DEV_NONE;
2439
2440 if (postreset)
2441 postreset(ap, classes);
2442
2443 return classes[0] != ATA_DEV_UNKNOWN ? 0 : -ENODEV;
2444}
2445
2446/**
2447 * ata_drive_probe_reset - Perform probe reset with given methods
2448 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002449 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002450 * @softreset: softreset method (can be NULL)
2451 * @hardreset: hardreset method (can be NULL)
2452 * @postreset: postreset method (can be NULL)
2453 * @classes: resulting classes of attached devices
2454 *
2455 * Reset the specified port and classify attached devices using
2456 * given methods. This function prefers softreset but tries all
2457 * possible reset sequences to reset and classify devices. This
2458 * function is intended to be used for constructing ->probe_reset
2459 * callback by low level drivers.
2460 *
2461 * Reset methods should follow the following rules.
2462 *
2463 * - Return 0 on sucess, -errno on failure.
2464 * - If classification is supported, fill classes[] with
2465 * recognized class codes.
2466 * - If classification is not supported, leave classes[] alone.
2467 * - If verbose is non-zero, print error message on failure;
2468 * otherwise, shut up.
2469 *
2470 * LOCKING:
2471 * Kernel thread context (may sleep)
2472 *
2473 * RETURNS:
2474 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2475 * if classification fails, and any error code from reset
2476 * methods.
2477 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002478int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002479 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2480 ata_postreset_fn_t postreset, unsigned int *classes)
2481{
2482 int rc = -EINVAL;
2483
Tejun Heo7944ea92006-02-02 18:20:00 +09002484 if (probeinit)
2485 probeinit(ap);
2486
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002487 if (softreset) {
2488 rc = do_probe_reset(ap, softreset, postreset, classes);
2489 if (rc == 0)
2490 return 0;
2491 }
2492
2493 if (!hardreset)
2494 return rc;
2495
2496 rc = do_probe_reset(ap, hardreset, postreset, classes);
2497 if (rc == 0 || rc != -ENODEV)
2498 return rc;
2499
2500 if (softreset)
2501 rc = do_probe_reset(ap, softreset, postreset, classes);
2502
2503 return rc;
2504}
2505
Tejun Heo623a3122006-03-05 17:55:58 +09002506/**
2507 * ata_dev_same_device - Determine whether new ID matches configured device
2508 * @ap: port on which the device to compare against resides
2509 * @dev: device to compare against
2510 * @new_class: class of the new device
2511 * @new_id: IDENTIFY page of the new device
2512 *
2513 * Compare @new_class and @new_id against @dev and determine
2514 * whether @dev is the device indicated by @new_class and
2515 * @new_id.
2516 *
2517 * LOCKING:
2518 * None.
2519 *
2520 * RETURNS:
2521 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2522 */
2523static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2524 unsigned int new_class, const u16 *new_id)
2525{
2526 const u16 *old_id = dev->id;
2527 unsigned char model[2][41], serial[2][21];
2528 u64 new_n_sectors;
2529
2530 if (dev->class != new_class) {
2531 printk(KERN_INFO
2532 "ata%u: dev %u class mismatch %d != %d\n",
2533 ap->id, dev->devno, dev->class, new_class);
2534 return 0;
2535 }
2536
2537 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2538 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2539 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2540 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2541 new_n_sectors = ata_id_n_sectors(new_id);
2542
2543 if (strcmp(model[0], model[1])) {
2544 printk(KERN_INFO
2545 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2546 ap->id, dev->devno, model[0], model[1]);
2547 return 0;
2548 }
2549
2550 if (strcmp(serial[0], serial[1])) {
2551 printk(KERN_INFO
2552 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2553 ap->id, dev->devno, serial[0], serial[1]);
2554 return 0;
2555 }
2556
2557 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2558 printk(KERN_INFO
2559 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2560 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2561 (unsigned long long)new_n_sectors);
2562 return 0;
2563 }
2564
2565 return 1;
2566}
2567
2568/**
2569 * ata_dev_revalidate - Revalidate ATA device
2570 * @ap: port on which the device to revalidate resides
2571 * @dev: device to revalidate
2572 * @post_reset: is this revalidation after reset?
2573 *
2574 * Re-read IDENTIFY page and make sure @dev is still attached to
2575 * the port.
2576 *
2577 * LOCKING:
2578 * Kernel thread context (may sleep)
2579 *
2580 * RETURNS:
2581 * 0 on success, negative errno otherwise
2582 */
2583int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2584 int post_reset)
2585{
2586 unsigned int class;
2587 u16 *id;
2588 int rc;
2589
2590 if (!ata_dev_present(dev))
2591 return -ENODEV;
2592
2593 class = dev->class;
2594 id = NULL;
2595
2596 /* allocate & read ID data */
2597 rc = ata_dev_read_id(ap, dev, &class, post_reset, &id);
2598 if (rc)
2599 goto fail;
2600
2601 /* is the device still there? */
2602 if (!ata_dev_same_device(ap, dev, class, id)) {
2603 rc = -ENODEV;
2604 goto fail;
2605 }
2606
2607 kfree(dev->id);
2608 dev->id = id;
2609
2610 /* configure device according to the new ID */
2611 return ata_dev_configure(ap, dev, 0);
2612
2613 fail:
2614 printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2615 ap->id, dev->devno, rc);
2616 kfree(id);
2617 return rc;
2618}
2619
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002620static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002621 "WDC AC11000H", NULL,
2622 "WDC AC22100H", NULL,
2623 "WDC AC32500H", NULL,
2624 "WDC AC33100H", NULL,
2625 "WDC AC31600H", NULL,
2626 "WDC AC32100H", "24.09P07",
2627 "WDC AC23200L", "21.10N21",
2628 "Compaq CRD-8241B", NULL,
2629 "CRD-8400B", NULL,
2630 "CRD-8480B", NULL,
2631 "CRD-8482B", NULL,
2632 "CRD-84", NULL,
2633 "SanDisk SDP3B", NULL,
2634 "SanDisk SDP3B-64", NULL,
2635 "SANYO CD-ROM CRD", NULL,
2636 "HITACHI CDR-8", NULL,
2637 "HITACHI CDR-8335", NULL,
2638 "HITACHI CDR-8435", NULL,
2639 "Toshiba CD-ROM XM-6202B", NULL,
2640 "TOSHIBA CD-ROM XM-1702BC", NULL,
2641 "CD-532E-A", NULL,
2642 "E-IDE CD-ROM CR-840", NULL,
2643 "CD-ROM Drive/F5A", NULL,
2644 "WPI CDD-820", NULL,
2645 "SAMSUNG CD-ROM SC-148C", NULL,
2646 "SAMSUNG CD-ROM SC", NULL,
2647 "SanDisk SDP3B-64", NULL,
2648 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2649 "_NEC DV5800A", NULL,
2650 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651};
Alan Coxf4b15fe2006-03-22 15:54:04 +00002652
2653static int ata_strim(char *s, size_t len)
2654{
2655 len = strnlen(s, len);
2656
2657 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2658 while ((len > 0) && (s[len - 1] == ' ')) {
2659 len--;
2660 s[len] = 0;
2661 }
2662 return len;
2663}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Jeff Garzik057ace52005-10-22 14:27:05 -04002665static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002667 unsigned char model_num[40];
2668 unsigned char model_rev[16];
2669 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 int i;
2671
Alan Coxf4b15fe2006-03-22 15:54:04 +00002672 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2673 sizeof(model_num));
2674 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2675 sizeof(model_rev));
2676 nlen = ata_strim(model_num, sizeof(model_num));
2677 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Alan Coxf4b15fe2006-03-22 15:54:04 +00002679 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2680 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2681 if (ata_dma_blacklist[i+1] == NULL)
2682 return 1;
2683 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2684 return 1;
2685 }
2686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 return 0;
2688}
2689
Tejun Heoa6d5a512006-03-06 04:31:57 +09002690/**
2691 * ata_dev_xfermask - Compute supported xfermask of the given device
2692 * @ap: Port on which the device to compute xfermask for resides
2693 * @dev: Device to compute xfermask for
2694 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002695 * Compute supported xfermask of @dev and store it in
2696 * dev->*_mask. This function is responsible for applying all
2697 * known limits including host controller limits, device
2698 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002699 *
2700 * LOCKING:
2701 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002702 */
Tejun Heoacf356b2006-03-24 14:07:50 +09002703static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Tejun Heoa6d5a512006-03-06 04:31:57 +09002705 unsigned long xfer_mask;
2706 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
Tejun Heoa6d5a512006-03-06 04:31:57 +09002708 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
2709 ap->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Tejun Heoa6d5a512006-03-06 04:31:57 +09002711 /* use port-wide xfermask for now */
2712 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2713 struct ata_device *d = &ap->device[i];
2714 if (!ata_dev_present(d))
2715 continue;
Tejun Heoacf356b2006-03-24 14:07:50 +09002716 xfer_mask &= ata_pack_xfermask(d->pio_mask, d->mwdma_mask,
2717 d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002718 xfer_mask &= ata_id_xfermask(d->id);
2719 if (ata_dma_blacklisted(d))
2720 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 }
2722
Tejun Heoa6d5a512006-03-06 04:31:57 +09002723 if (ata_dma_blacklisted(dev))
2724 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2725 "disabling DMA\n", ap->id, dev->devno);
2726
Tejun Heoacf356b2006-03-24 14:07:50 +09002727 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2728 &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729}
2730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2733 * @ap: Port associated with device @dev
2734 * @dev: Device to which command will be sent
2735 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002736 * Issue SET FEATURES - XFER MODE command to device @dev
2737 * on port @ap.
2738 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002740 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002741 *
2742 * RETURNS:
2743 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 */
2745
Tejun Heo83206a22006-03-24 15:25:31 +09002746static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2747 struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
Tejun Heoa0123702005-12-13 14:49:31 +09002749 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002750 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752 /* set up set-features taskfile */
2753 DPRINTK("set features - xfer mode\n");
2754
Tejun Heoa0123702005-12-13 14:49:31 +09002755 ata_tf_init(ap, &tf, dev->devno);
2756 tf.command = ATA_CMD_SET_FEATURES;
2757 tf.feature = SETFEATURES_XFER;
2758 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2759 tf.protocol = ATA_PROT_NODATA;
2760 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Tejun Heo83206a22006-03-24 15:25:31 +09002762 err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Tejun Heo83206a22006-03-24 15:25:31 +09002764 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2765 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766}
2767
2768/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04002769 * ata_dev_init_params - Issue INIT DEV PARAMS command
2770 * @ap: Port associated with device @dev
2771 * @dev: Device to which command will be sent
2772 *
2773 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09002774 * Kernel thread context (may sleep)
2775 *
2776 * RETURNS:
2777 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04002778 */
2779
Tejun Heo6aff8f12006-02-15 18:24:09 +09002780static unsigned int ata_dev_init_params(struct ata_port *ap,
2781 struct ata_device *dev)
Albert Lee8bf62ec2005-05-12 15:29:42 -04002782{
Tejun Heoa0123702005-12-13 14:49:31 +09002783 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09002784 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002785 u16 sectors = dev->id[6];
2786 u16 heads = dev->id[3];
2787
2788 /* Number of sectors per track 1-255. Number of heads 1-16 */
2789 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Tejun Heo6aff8f12006-02-15 18:24:09 +09002790 return 0;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002791
2792 /* set up init dev params taskfile */
2793 DPRINTK("init dev params \n");
2794
Tejun Heoa0123702005-12-13 14:49:31 +09002795 ata_tf_init(ap, &tf, dev->devno);
2796 tf.command = ATA_CMD_INIT_DEV_PARAMS;
2797 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2798 tf.protocol = ATA_PROT_NODATA;
2799 tf.nsect = sectors;
2800 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04002801
Tejun Heo6aff8f12006-02-15 18:24:09 +09002802 err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04002803
Tejun Heo6aff8f12006-02-15 18:24:09 +09002804 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2805 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002806}
2807
2808/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002809 * ata_sg_clean - Unmap DMA memory associated with command
2810 * @qc: Command containing DMA memory to be released
2811 *
2812 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 *
2814 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002815 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 */
2817
2818static void ata_sg_clean(struct ata_queued_cmd *qc)
2819{
2820 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002821 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002823 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Tejun Heoa4631472006-02-11 19:11:13 +09002825 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
2826 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05002829 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002831 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002833 /* if we padded the buffer out to 32-bit bound, and data
2834 * xfer direction is from-device, we must copy from the
2835 * pad buffer back into the supplied buffer
2836 */
2837 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
2838 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2839
2840 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05002841 if (qc->n_elem)
2842 dma_unmap_sg(ap->host_set->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002843 /* restore last sg */
2844 sg[qc->orig_n_elem - 1].length += qc->pad_len;
2845 if (pad_buf) {
2846 struct scatterlist *psg = &qc->pad_sgent;
2847 void *addr = kmap_atomic(psg->page, KM_IRQ0);
2848 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05002849 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002850 }
2851 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09002852 if (qc->n_elem)
Jeff Garzike1410f22005-11-14 14:06:26 -05002853 dma_unmap_single(ap->host_set->dev,
2854 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
2855 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002856 /* restore sg */
2857 sg->length += qc->pad_len;
2858 if (pad_buf)
2859 memcpy(qc->buf_virt + sg->length - qc->pad_len,
2860 pad_buf, qc->pad_len);
2861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
2863 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002864 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865}
2866
2867/**
2868 * ata_fill_sg - Fill PCI IDE PRD table
2869 * @qc: Metadata associated with taskfile to be transferred
2870 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002871 * Fill PCI IDE PRD (scatter-gather) table with segments
2872 * associated with the current disk command.
2873 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04002875 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 *
2877 */
2878static void ata_fill_sg(struct ata_queued_cmd *qc)
2879{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002881 struct scatterlist *sg;
2882 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Tejun Heoa4631472006-02-11 19:11:13 +09002884 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05002885 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
2887 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002888 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 u32 addr, offset;
2890 u32 sg_len, len;
2891
2892 /* determine if physical DMA addr spans 64K boundary.
2893 * Note h/w doesn't support 64-bit, so we unconditionally
2894 * truncate dma_addr_t to u32.
2895 */
2896 addr = (u32) sg_dma_address(sg);
2897 sg_len = sg_dma_len(sg);
2898
2899 while (sg_len) {
2900 offset = addr & 0xffff;
2901 len = sg_len;
2902 if ((offset + sg_len) > 0x10000)
2903 len = 0x10000 - offset;
2904
2905 ap->prd[idx].addr = cpu_to_le32(addr);
2906 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
2907 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
2908
2909 idx++;
2910 sg_len -= len;
2911 addr += len;
2912 }
2913 }
2914
2915 if (idx)
2916 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
2917}
2918/**
2919 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
2920 * @qc: Metadata associated with taskfile to check
2921 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002922 * Allow low-level driver to filter ATA PACKET commands, returning
2923 * a status indicating whether or not it is OK to use DMA for the
2924 * supplied PACKET command.
2925 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002927 * spin_lock_irqsave(host_set lock)
2928 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 * RETURNS: 0 when ATAPI DMA can be used
2930 * nonzero otherwise
2931 */
2932int ata_check_atapi_dma(struct ata_queued_cmd *qc)
2933{
2934 struct ata_port *ap = qc->ap;
2935 int rc = 0; /* Assume ATAPI DMA is OK by default */
2936
2937 if (ap->ops->check_atapi_dma)
2938 rc = ap->ops->check_atapi_dma(qc);
2939
2940 return rc;
2941}
2942/**
2943 * ata_qc_prep - Prepare taskfile for submission
2944 * @qc: Metadata associated with taskfile to be prepared
2945 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002946 * Prepare ATA taskfile for submission.
2947 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 * LOCKING:
2949 * spin_lock_irqsave(host_set lock)
2950 */
2951void ata_qc_prep(struct ata_queued_cmd *qc)
2952{
2953 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
2954 return;
2955
2956 ata_fill_sg(qc);
2957}
2958
Brian Kinge46834c2006-03-17 17:04:03 -06002959void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
2960
Jeff Garzik0cba6322005-05-30 19:49:12 -04002961/**
2962 * ata_sg_init_one - Associate command with memory buffer
2963 * @qc: Command to be associated
2964 * @buf: Memory buffer
2965 * @buflen: Length of memory buffer, in bytes.
2966 *
2967 * Initialize the data-related elements of queued_cmd @qc
2968 * to point to a single memory buffer, @buf of byte length @buflen.
2969 *
2970 * LOCKING:
2971 * spin_lock_irqsave(host_set lock)
2972 */
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
2975{
2976 struct scatterlist *sg;
2977
2978 qc->flags |= ATA_QCFLAG_SINGLE;
2979
2980 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002981 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002983 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 qc->buf_virt = buf;
2985
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002986 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05002987 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988}
2989
Jeff Garzik0cba6322005-05-30 19:49:12 -04002990/**
2991 * ata_sg_init - Associate command with scatter-gather table.
2992 * @qc: Command to be associated
2993 * @sg: Scatter-gather table.
2994 * @n_elem: Number of elements in s/g table.
2995 *
2996 * Initialize the data-related elements of queued_cmd @qc
2997 * to point to a scatter-gather table @sg, containing @n_elem
2998 * elements.
2999 *
3000 * LOCKING:
3001 * spin_lock_irqsave(host_set lock)
3002 */
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3005 unsigned int n_elem)
3006{
3007 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003008 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003010 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011}
3012
3013/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003014 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3015 * @qc: Command with memory buffer to be mapped.
3016 *
3017 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 *
3019 * LOCKING:
3020 * spin_lock_irqsave(host_set lock)
3021 *
3022 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003023 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 */
3025
3026static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3027{
3028 struct ata_port *ap = qc->ap;
3029 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003030 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003032 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003034 /* we must lengthen transfers to end on a 32-bit boundary */
3035 qc->pad_len = sg->length & 3;
3036 if (qc->pad_len) {
3037 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3038 struct scatterlist *psg = &qc->pad_sgent;
3039
Tejun Heoa4631472006-02-11 19:11:13 +09003040 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003041
3042 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3043
3044 if (qc->tf.flags & ATA_TFLAG_WRITE)
3045 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3046 qc->pad_len);
3047
3048 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3049 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3050 /* trim sg */
3051 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003052 if (sg->length == 0)
3053 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003054
3055 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3056 sg->length, qc->pad_len);
3057 }
3058
Tejun Heo2e242fa2006-02-20 23:48:38 +09003059 if (trim_sg) {
3060 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003061 goto skip_map;
3062 }
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 dma_address = dma_map_single(ap->host_set->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003065 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003066 if (dma_mapping_error(dma_address)) {
3067 /* restore sg */
3068 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
3072 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003073 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Tejun Heo2e242fa2006-02-20 23:48:38 +09003075skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3077 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3078
3079 return 0;
3080}
3081
3082/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003083 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3084 * @qc: Command with scatter-gather table to be mapped.
3085 *
3086 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 *
3088 * LOCKING:
3089 * spin_lock_irqsave(host_set lock)
3090 *
3091 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003092 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 *
3094 */
3095
3096static int ata_sg_setup(struct ata_queued_cmd *qc)
3097{
3098 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003099 struct scatterlist *sg = qc->__sg;
3100 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003101 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
3103 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003104 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003106 /* we must lengthen transfers to end on a 32-bit boundary */
3107 qc->pad_len = lsg->length & 3;
3108 if (qc->pad_len) {
3109 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3110 struct scatterlist *psg = &qc->pad_sgent;
3111 unsigned int offset;
3112
Tejun Heoa4631472006-02-11 19:11:13 +09003113 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003114
3115 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3116
3117 /*
3118 * psg->page/offset are used to copy to-be-written
3119 * data in this function or read data in ata_sg_clean.
3120 */
3121 offset = lsg->offset + lsg->length - qc->pad_len;
3122 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3123 psg->offset = offset_in_page(offset);
3124
3125 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3126 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3127 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003128 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003129 }
3130
3131 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3132 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3133 /* trim last sg */
3134 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003135 if (lsg->length == 0)
3136 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003137
3138 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3139 qc->n_elem - 1, lsg->length, qc->pad_len);
3140 }
3141
Jeff Garzike1410f22005-11-14 14:06:26 -05003142 pre_n_elem = qc->n_elem;
3143 if (trim_sg && pre_n_elem)
3144 pre_n_elem--;
3145
3146 if (!pre_n_elem) {
3147 n_elem = 0;
3148 goto skip_map;
3149 }
3150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 dir = qc->dma_dir;
Jeff Garzike1410f22005-11-14 14:06:26 -05003152 n_elem = dma_map_sg(ap->host_set->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003153 if (n_elem < 1) {
3154 /* restore last sg */
3155 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
3159 DPRINTK("%d sg elements mapped\n", n_elem);
3160
Jeff Garzike1410f22005-11-14 14:06:26 -05003161skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 qc->n_elem = n_elem;
3163
3164 return 0;
3165}
3166
3167/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003168 * ata_poll_qc_complete - turn irq back on and finish qc
3169 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003170 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003171 *
3172 * LOCKING:
3173 * None. (grabs host lock)
3174 */
3175
Albert Leea22e2eb2005-12-05 15:38:02 +08003176void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003177{
3178 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003179 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003180
Jeff Garzikb8f61532005-08-25 22:01:20 -04003181 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003182 ap->flags &= ~ATA_FLAG_NOINTR;
3183 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003184 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003185 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003186}
3187
3188/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003189 * ata_pio_poll - poll using PIO, depending on current state
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003190 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 *
3192 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003193 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 *
3195 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003196 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 */
3198
3199static unsigned long ata_pio_poll(struct ata_port *ap)
3200{
Albert Leec14b8332005-12-05 15:36:08 +08003201 struct ata_queued_cmd *qc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08003203 unsigned int poll_state = HSM_ST_UNKNOWN;
3204 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Albert Leec14b8332005-12-05 15:36:08 +08003206 qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heoa4631472006-02-11 19:11:13 +09003207 WARN_ON(qc == NULL);
Albert Leec14b8332005-12-05 15:36:08 +08003208
Albert Lee14be71f2005-09-27 17:36:35 +08003209 switch (ap->hsm_task_state) {
3210 case HSM_ST:
3211 case HSM_ST_POLL:
3212 poll_state = HSM_ST_POLL;
3213 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 break;
Albert Lee14be71f2005-09-27 17:36:35 +08003215 case HSM_ST_LAST:
3216 case HSM_ST_LAST_POLL:
3217 poll_state = HSM_ST_LAST_POLL;
3218 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 break;
3220 default:
3221 BUG();
3222 break;
3223 }
3224
3225 status = ata_chk_status(ap);
3226 if (status & ATA_BUSY) {
3227 if (time_after(jiffies, ap->pio_task_timeout)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003228 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Lee7c398332005-11-09 13:03:30 +08003229 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 return 0;
3231 }
Albert Lee14be71f2005-09-27 17:36:35 +08003232 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 return ATA_SHORT_PAUSE;
3234 }
3235
Albert Lee14be71f2005-09-27 17:36:35 +08003236 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 return 0;
3238}
3239
3240/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003241 * ata_pio_complete - check if drive is busy or idle
3242 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 *
3244 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003245 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003246 *
3247 * RETURNS:
3248 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 */
3250
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003251static int ata_pio_complete (struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252{
3253 struct ata_queued_cmd *qc;
3254 u8 drv_stat;
3255
3256 /*
Alan Cox31433ea2005-08-26 15:56:47 +01003257 * This is purely heuristic. This is a fast path. Sometimes when
3258 * we enter, BSY will be cleared in a chk-status or two. If not,
3259 * the drive is probably seeking or something. Snooze for a couple
3260 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003261 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 */
Albert Leefe79e682005-12-06 11:34:59 +08003263 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3264 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08003266 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3267 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003268 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 }
3272 }
3273
Albert Leec14b8332005-12-05 15:36:08 +08003274 qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heoa4631472006-02-11 19:11:13 +09003275 WARN_ON(qc == NULL);
Albert Leec14b8332005-12-05 15:36:08 +08003276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 drv_stat = ata_wait_idle(ap);
3278 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08003279 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08003280 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 }
3283
Albert Lee14be71f2005-09-27 17:36:35 +08003284 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Tejun Heoa4631472006-02-11 19:11:13 +09003286 WARN_ON(qc->err_mask);
Albert Leea22e2eb2005-12-05 15:38:02 +08003287 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003288
3289 /* another command may start at this point */
3290
3291 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292}
3293
Edward Falk0baab862005-06-02 18:17:13 -04003294
3295/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003296 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003297 * @buf: Buffer to swap
3298 * @buf_words: Number of 16-bit words in buffer.
3299 *
3300 * Swap halves of 16-bit words if needed to convert from
3301 * little-endian byte order to native cpu byte order, or
3302 * vice-versa.
3303 *
3304 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003305 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003306 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307void swap_buf_le16(u16 *buf, unsigned int buf_words)
3308{
3309#ifdef __BIG_ENDIAN
3310 unsigned int i;
3311
3312 for (i = 0; i < buf_words; i++)
3313 buf[i] = le16_to_cpu(buf[i]);
3314#endif /* __BIG_ENDIAN */
3315}
3316
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003317/**
3318 * ata_mmio_data_xfer - Transfer data by MMIO
3319 * @ap: port to read/write
3320 * @buf: data buffer
3321 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003322 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003323 *
3324 * Transfer data from/to the device data register by MMIO.
3325 *
3326 * LOCKING:
3327 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003328 */
3329
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3331 unsigned int buflen, int write_data)
3332{
3333 unsigned int i;
3334 unsigned int words = buflen >> 1;
3335 u16 *buf16 = (u16 *) buf;
3336 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3337
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003338 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 if (write_data) {
3340 for (i = 0; i < words; i++)
3341 writew(le16_to_cpu(buf16[i]), mmio);
3342 } else {
3343 for (i = 0; i < words; i++)
3344 buf16[i] = cpu_to_le16(readw(mmio));
3345 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003346
3347 /* Transfer trailing 1 byte, if any. */
3348 if (unlikely(buflen & 0x01)) {
3349 u16 align_buf[1] = { 0 };
3350 unsigned char *trailing_buf = buf + buflen - 1;
3351
3352 if (write_data) {
3353 memcpy(align_buf, trailing_buf, 1);
3354 writew(le16_to_cpu(align_buf[0]), mmio);
3355 } else {
3356 align_buf[0] = cpu_to_le16(readw(mmio));
3357 memcpy(trailing_buf, align_buf, 1);
3358 }
3359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360}
3361
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003362/**
3363 * ata_pio_data_xfer - Transfer data by PIO
3364 * @ap: port to read/write
3365 * @buf: data buffer
3366 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003367 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003368 *
3369 * Transfer data from/to the device data register by PIO.
3370 *
3371 * LOCKING:
3372 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003373 */
3374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3376 unsigned int buflen, int write_data)
3377{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003378 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003380 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003382 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003384 insw(ap->ioaddr.data_addr, buf, words);
3385
3386 /* Transfer trailing 1 byte, if any. */
3387 if (unlikely(buflen & 0x01)) {
3388 u16 align_buf[1] = { 0 };
3389 unsigned char *trailing_buf = buf + buflen - 1;
3390
3391 if (write_data) {
3392 memcpy(align_buf, trailing_buf, 1);
3393 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3394 } else {
3395 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3396 memcpy(trailing_buf, align_buf, 1);
3397 }
3398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399}
3400
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003401/**
3402 * ata_data_xfer - Transfer data from/to the data register.
3403 * @ap: port to read/write
3404 * @buf: data buffer
3405 * @buflen: buffer length
3406 * @do_write: read/write
3407 *
3408 * Transfer data from/to the device data register.
3409 *
3410 * LOCKING:
3411 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003412 */
3413
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3415 unsigned int buflen, int do_write)
3416{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003417 /* Make the crap hardware pay the costs not the good stuff */
3418 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3419 unsigned long flags;
3420 local_irq_save(flags);
3421 if (ap->flags & ATA_FLAG_MMIO)
3422 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3423 else
3424 ata_pio_data_xfer(ap, buf, buflen, do_write);
3425 local_irq_restore(flags);
3426 } else {
3427 if (ap->flags & ATA_FLAG_MMIO)
3428 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3429 else
3430 ata_pio_data_xfer(ap, buf, buflen, do_write);
3431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432}
3433
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003434/**
3435 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3436 * @qc: Command on going
3437 *
3438 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3439 *
3440 * LOCKING:
3441 * Inherited from caller.
3442 */
3443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444static void ata_pio_sector(struct ata_queued_cmd *qc)
3445{
3446 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003447 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 struct ata_port *ap = qc->ap;
3449 struct page *page;
3450 unsigned int offset;
3451 unsigned char *buf;
3452
3453 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003454 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
3456 page = sg[qc->cursg].page;
3457 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3458
3459 /* get the current page and offset */
3460 page = nth_page(page, (offset >> PAGE_SHIFT));
3461 offset %= PAGE_SIZE;
3462
3463 buf = kmap(page) + offset;
3464
3465 qc->cursect++;
3466 qc->cursg_ofs++;
3467
Albert Lee32529e02005-05-26 03:49:42 -04003468 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 qc->cursg++;
3470 qc->cursg_ofs = 0;
3471 }
3472
3473 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3474
3475 /* do the actual data transfer */
3476 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3477 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3478
3479 kunmap(page);
3480}
3481
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003482/**
3483 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3484 * @qc: Command on going
3485 * @bytes: number of bytes
3486 *
3487 * Transfer Transfer data from/to the ATAPI device.
3488 *
3489 * LOCKING:
3490 * Inherited from caller.
3491 *
3492 */
3493
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3495{
3496 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003497 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 struct ata_port *ap = qc->ap;
3499 struct page *page;
3500 unsigned char *buf;
3501 unsigned int offset, count;
3502
Albert Lee563a6e12005-08-12 14:17:50 +08003503 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003504 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
3506next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003507 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003508 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003509 * The end of qc->sg is reached and the device expects
3510 * more data to transfer. In order not to overrun qc->sg
3511 * and fulfill length specified in the byte count register,
3512 * - for read case, discard trailing data from the device
3513 * - for write case, padding zero data to the device
3514 */
3515 u16 pad_buf[1] = { 0 };
3516 unsigned int words = bytes >> 1;
3517 unsigned int i;
3518
3519 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003520 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003521 ap->id, bytes);
3522
3523 for (i = 0; i < words; i++)
3524 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3525
Albert Lee14be71f2005-09-27 17:36:35 +08003526 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003527 return;
3528 }
3529
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003530 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 page = sg->page;
3533 offset = sg->offset + qc->cursg_ofs;
3534
3535 /* get the current page and offset */
3536 page = nth_page(page, (offset >> PAGE_SHIFT));
3537 offset %= PAGE_SIZE;
3538
Albert Lee6952df02005-06-06 15:56:03 +08003539 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003540 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
3542 /* don't cross page boundaries */
3543 count = min(count, (unsigned int)PAGE_SIZE - offset);
3544
3545 buf = kmap(page) + offset;
3546
3547 bytes -= count;
3548 qc->curbytes += count;
3549 qc->cursg_ofs += count;
3550
Albert Lee32529e02005-05-26 03:49:42 -04003551 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 qc->cursg++;
3553 qc->cursg_ofs = 0;
3554 }
3555
3556 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3557
3558 /* do the actual data transfer */
3559 ata_data_xfer(ap, buf, count, do_write);
3560
3561 kunmap(page);
3562
Albert Lee563a6e12005-08-12 14:17:50 +08003563 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565}
3566
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003567/**
3568 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3569 * @qc: Command on going
3570 *
3571 * Transfer Transfer data from/to the ATAPI device.
3572 *
3573 * LOCKING:
3574 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003575 */
3576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3578{
3579 struct ata_port *ap = qc->ap;
3580 struct ata_device *dev = qc->dev;
3581 unsigned int ireason, bc_lo, bc_hi, bytes;
3582 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3583
3584 ap->ops->tf_read(ap, &qc->tf);
3585 ireason = qc->tf.nsect;
3586 bc_lo = qc->tf.lbam;
3587 bc_hi = qc->tf.lbah;
3588 bytes = (bc_hi << 8) | bc_lo;
3589
3590 /* shall be cleared to zero, indicating xfer of data */
3591 if (ireason & (1 << 0))
3592 goto err_out;
3593
3594 /* make sure transfer direction matches expected */
3595 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3596 if (do_write != i_write)
3597 goto err_out;
3598
3599 __atapi_pio_bytes(qc, bytes);
3600
3601 return;
3602
3603err_out:
3604 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3605 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003606 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003607 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608}
3609
3610/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003611 * ata_pio_block - start PIO on a block
3612 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 *
3614 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003615 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 */
3617
3618static void ata_pio_block(struct ata_port *ap)
3619{
3620 struct ata_queued_cmd *qc;
3621 u8 status;
3622
3623 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003624 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 * Sometimes when we enter, BSY will be cleared in
3626 * a chk-status or two. If not, the drive is probably seeking
3627 * or something. Snooze for a couple msecs, then
3628 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003629 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 */
3631 status = ata_busy_wait(ap, ATA_BUSY, 5);
3632 if (status & ATA_BUSY) {
3633 msleep(2);
3634 status = ata_busy_wait(ap, ATA_BUSY, 10);
3635 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003636 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3638 return;
3639 }
3640 }
3641
3642 qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heoa4631472006-02-11 19:11:13 +09003643 WARN_ON(qc == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
Albert Leefe79e682005-12-06 11:34:59 +08003645 /* check error */
3646 if (status & (ATA_ERR | ATA_DF)) {
3647 qc->err_mask |= AC_ERR_DEV;
3648 ap->hsm_task_state = HSM_ST_ERR;
3649 return;
3650 }
3651
3652 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003654 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003656 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 return;
3658 }
3659
3660 atapi_pio_bytes(qc);
3661 } else {
3662 /* handle BSY=0, DRQ=0 as error */
3663 if ((status & ATA_DRQ) == 0) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003664 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003665 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 return;
3667 }
3668
3669 ata_pio_sector(qc);
3670 }
3671}
3672
3673static void ata_pio_error(struct ata_port *ap)
3674{
3675 struct ata_queued_cmd *qc;
Jeff Garzika7dac442005-10-30 04:44:42 -05003676
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heoa4631472006-02-11 19:11:13 +09003678 WARN_ON(qc == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
Albert Lee0565c262006-02-13 18:55:25 +08003680 if (qc->tf.command != ATA_CMD_PACKET)
3681 printk(KERN_WARNING "ata%u: PIO error\n", ap->id);
3682
Albert Lee1c848982005-12-05 15:40:15 +08003683 /* make sure qc->err_mask is available to
3684 * know what's wrong and recover
3685 */
Tejun Heoa4631472006-02-11 19:11:13 +09003686 WARN_ON(qc->err_mask == 0);
Albert Lee1c848982005-12-05 15:40:15 +08003687
Albert Lee14be71f2005-09-27 17:36:35 +08003688 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
Albert Leea22e2eb2005-12-05 15:38:02 +08003690 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691}
3692
3693static void ata_pio_task(void *_data)
3694{
3695 struct ata_port *ap = _data;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003696 unsigned long timeout;
3697 int qc_completed;
3698
3699fsm_start:
3700 timeout = 0;
3701 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702
Albert Lee14be71f2005-09-27 17:36:35 +08003703 switch (ap->hsm_task_state) {
3704 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 return;
3706
Albert Lee14be71f2005-09-27 17:36:35 +08003707 case HSM_ST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 ata_pio_block(ap);
3709 break;
3710
Albert Lee14be71f2005-09-27 17:36:35 +08003711 case HSM_ST_LAST:
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003712 qc_completed = ata_pio_complete(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 break;
3714
Albert Lee14be71f2005-09-27 17:36:35 +08003715 case HSM_ST_POLL:
3716 case HSM_ST_LAST_POLL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 timeout = ata_pio_poll(ap);
3718 break;
3719
Albert Lee14be71f2005-09-27 17:36:35 +08003720 case HSM_ST_TMOUT:
3721 case HSM_ST_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 ata_pio_error(ap);
3723 return;
3724 }
3725
3726 if (timeout)
Tejun Heo8061f5f2006-03-05 15:29:09 +09003727 ata_port_queue_task(ap, ata_pio_task, ap, timeout);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003728 else if (!qc_completed)
3729 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730}
3731
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732/**
Tejun Heo8061f5f2006-03-05 15:29:09 +09003733 * atapi_packet_task - Write CDB bytes to hardware
3734 * @_data: Port to which ATAPI device is attached.
3735 *
3736 * When device has indicated its readiness to accept
3737 * a CDB, this function is called. Send the CDB.
3738 * If DMA is to be performed, exit immediately.
3739 * Otherwise, we are in polling mode, so poll
3740 * status under operation succeeds or fails.
3741 *
3742 * LOCKING:
3743 * Kernel thread context (may sleep)
3744 */
3745
3746static void atapi_packet_task(void *_data)
3747{
3748 struct ata_port *ap = _data;
3749 struct ata_queued_cmd *qc;
3750 u8 status;
3751
3752 qc = ata_qc_from_tag(ap, ap->active_tag);
3753 WARN_ON(qc == NULL);
3754 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
3755
3756 /* sleep-wait for BSY to clear */
3757 DPRINTK("busy wait\n");
3758 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
3759 qc->err_mask |= AC_ERR_TIMEOUT;
3760 goto err_out;
3761 }
3762
3763 /* make sure DRQ is set */
3764 status = ata_chk_status(ap);
3765 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
3766 qc->err_mask |= AC_ERR_HSM;
3767 goto err_out;
3768 }
3769
3770 /* send SCSI cdb */
3771 DPRINTK("send cdb\n");
3772 WARN_ON(qc->dev->cdb_len < 12);
3773
3774 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3775 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
3776 unsigned long flags;
3777
3778 /* Once we're done issuing command and kicking bmdma,
3779 * irq handler takes over. To not lose irq, we need
3780 * to clear NOINTR flag before sending cdb, but
3781 * interrupt handler shouldn't be invoked before we're
3782 * finished. Hence, the following locking.
3783 */
3784 spin_lock_irqsave(&ap->host_set->lock, flags);
3785 ap->flags &= ~ATA_FLAG_NOINTR;
3786 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3787 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
3788 ap->ops->bmdma_start(qc); /* initiate bmdma */
3789 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3790 } else {
3791 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3792
3793 /* PIO commands are handled by polling */
3794 ap->hsm_task_state = HSM_ST;
3795 ata_port_queue_task(ap, ata_pio_task, ap, 0);
3796 }
3797
3798 return;
3799
3800err_out:
3801 ata_poll_qc_complete(qc);
3802}
3803
3804/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 * ata_qc_timeout - Handle timeout of queued command
3806 * @qc: Command that timed out
3807 *
3808 * Some part of the kernel (currently, only the SCSI layer)
3809 * has noticed that the active command on port @ap has not
3810 * completed after a specified length of time. Handle this
3811 * condition by disabling DMA (if necessary) and completing
3812 * transactions, with error if necessary.
3813 *
3814 * This also handles the case of the "lost interrupt", where
3815 * for some reason (possibly hardware bug, possibly driver bug)
3816 * an interrupt was not delivered to the driver, even though the
3817 * transaction completed successfully.
3818 *
3819 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003820 * Inherited from SCSI layer (none, can sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 */
3822
3823static void ata_qc_timeout(struct ata_queued_cmd *qc)
3824{
3825 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003826 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 u8 host_stat = 0, drv_stat;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003828 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
3830 DPRINTK("ENTER\n");
3831
Tejun Heoc18d06f2006-02-02 00:56:10 +09003832 ap->hsm_task_state = HSM_ST_IDLE;
3833
Jeff Garzikb8f61532005-08-25 22:01:20 -04003834 spin_lock_irqsave(&host_set->lock, flags);
3835
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 switch (qc->tf.protocol) {
3837
3838 case ATA_PROT_DMA:
3839 case ATA_PROT_ATAPI_DMA:
3840 host_stat = ap->ops->bmdma_status(ap);
3841
3842 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003843 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845 /* fall through */
3846
3847 default:
3848 ata_altstatus(ap);
3849 drv_stat = ata_chk_status(ap);
3850
3851 /* ack bmdma irq events */
3852 ap->ops->irq_clear(ap);
3853
3854 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
3855 ap->id, qc->tf.command, drv_stat, host_stat);
3856
3857 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08003858 qc->err_mask |= ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 break;
3860 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04003861
3862 spin_unlock_irqrestore(&host_set->lock, flags);
3863
Tejun Heoa72ec4c2006-01-23 13:09:37 +09003864 ata_eh_qc_complete(qc);
3865
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 DPRINTK("EXIT\n");
3867}
3868
3869/**
3870 * ata_eng_timeout - Handle timeout of queued command
3871 * @ap: Port on which timed-out command is active
3872 *
3873 * Some part of the kernel (currently, only the SCSI layer)
3874 * has noticed that the active command on port @ap has not
3875 * completed after a specified length of time. Handle this
3876 * condition by disabling DMA (if necessary) and completing
3877 * transactions, with error if necessary.
3878 *
3879 * This also handles the case of the "lost interrupt", where
3880 * for some reason (possibly hardware bug, possibly driver bug)
3881 * an interrupt was not delivered to the driver, even though the
3882 * transaction completed successfully.
3883 *
3884 * LOCKING:
3885 * Inherited from SCSI layer (none, can sleep)
3886 */
3887
3888void ata_eng_timeout(struct ata_port *ap)
3889{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 DPRINTK("ENTER\n");
3891
Tejun Heof6379022006-02-10 15:10:48 +09003892 ata_qc_timeout(ata_qc_from_tag(ap, ap->active_tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 DPRINTK("EXIT\n");
3895}
3896
3897/**
3898 * ata_qc_new - Request an available ATA command, for queueing
3899 * @ap: Port associated with device @dev
3900 * @dev: Device from whom we request an available command structure
3901 *
3902 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003903 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 */
3905
3906static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
3907{
3908 struct ata_queued_cmd *qc = NULL;
3909 unsigned int i;
3910
3911 for (i = 0; i < ATA_MAX_QUEUE; i++)
3912 if (!test_and_set_bit(i, &ap->qactive)) {
3913 qc = ata_qc_from_tag(ap, i);
3914 break;
3915 }
3916
3917 if (qc)
3918 qc->tag = i;
3919
3920 return qc;
3921}
3922
3923/**
3924 * ata_qc_new_init - Request an available ATA command, and initialize it
3925 * @ap: Port associated with device @dev
3926 * @dev: Device from whom we request an available command structure
3927 *
3928 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003929 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 */
3931
3932struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
3933 struct ata_device *dev)
3934{
3935 struct ata_queued_cmd *qc;
3936
3937 qc = ata_qc_new(ap);
3938 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 qc->scsicmd = NULL;
3940 qc->ap = ap;
3941 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003943 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 }
3945
3946 return qc;
3947}
3948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949/**
3950 * ata_qc_free - free unused ata_queued_cmd
3951 * @qc: Command to complete
3952 *
3953 * Designed to free unused ata_queued_cmd object
3954 * in case something prevents using it.
3955 *
3956 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003957 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 */
3959void ata_qc_free(struct ata_queued_cmd *qc)
3960{
Tejun Heo4ba946e2006-01-23 13:09:36 +09003961 struct ata_port *ap = qc->ap;
3962 unsigned int tag;
3963
Tejun Heoa4631472006-02-11 19:11:13 +09003964 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Tejun Heo4ba946e2006-01-23 13:09:36 +09003966 qc->flags = 0;
3967 tag = qc->tag;
3968 if (likely(ata_tag_valid(tag))) {
3969 if (tag == ap->active_tag)
3970 ap->active_tag = ATA_TAG_POISON;
3971 qc->tag = ATA_TAG_POISON;
3972 clear_bit(tag, &ap->qactive);
3973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974}
3975
Tejun Heo76014422006-02-11 15:13:49 +09003976void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977{
Tejun Heoa4631472006-02-11 19:11:13 +09003978 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
3979 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
3981 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
3982 ata_sg_clean(qc);
3983
Albert Lee3f3791d2005-08-16 14:25:38 +08003984 /* atapi: mark qc as inactive to prevent the interrupt handler
3985 * from completing the command twice later, before the error handler
3986 * is called. (when rc != 0 and atapi request sense is needed)
3987 */
3988 qc->flags &= ~ATA_QCFLAG_ACTIVE;
3989
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09003991 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992}
3993
3994static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
3995{
3996 struct ata_port *ap = qc->ap;
3997
3998 switch (qc->tf.protocol) {
3999 case ATA_PROT_DMA:
4000 case ATA_PROT_ATAPI_DMA:
4001 return 1;
4002
4003 case ATA_PROT_ATAPI:
4004 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 if (ap->flags & ATA_FLAG_PIO_DMA)
4006 return 1;
4007
4008 /* fall through */
4009
4010 default:
4011 return 0;
4012 }
4013
4014 /* never reached */
4015}
4016
4017/**
4018 * ata_qc_issue - issue taskfile to device
4019 * @qc: command to issue to device
4020 *
4021 * Prepare an ATA command to submission to device.
4022 * This includes mapping the data into a DMA-able
4023 * area, filling in the S/G table, and finally
4024 * writing the taskfile to hardware, starting the command.
4025 *
4026 * LOCKING:
4027 * spin_lock_irqsave(host_set lock)
4028 *
4029 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004030 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 */
4032
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004033unsigned int ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034{
4035 struct ata_port *ap = qc->ap;
4036
4037 if (ata_should_dma_map(qc)) {
4038 if (qc->flags & ATA_QCFLAG_SG) {
4039 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004040 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4042 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004043 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 }
4045 } else {
4046 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4047 }
4048
4049 ap->ops->qc_prep(qc);
4050
4051 qc->ap->active_tag = qc->tag;
4052 qc->flags |= ATA_QCFLAG_ACTIVE;
4053
4054 return ap->ops->qc_issue(qc);
4055
Tejun Heo8e436af2006-01-23 13:09:36 +09004056sg_err:
4057 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004058 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059}
4060
Edward Falk0baab862005-06-02 18:17:13 -04004061
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062/**
4063 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4064 * @qc: command to issue to device
4065 *
4066 * Using various libata functions and hooks, this function
4067 * starts an ATA command. ATA commands are grouped into
4068 * classes called "protocols", and issuing each type of protocol
4069 * is slightly different.
4070 *
Edward Falk0baab862005-06-02 18:17:13 -04004071 * May be used as the qc_issue() entry in ata_port_operations.
4072 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 * LOCKING:
4074 * spin_lock_irqsave(host_set lock)
4075 *
4076 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004077 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 */
4079
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004080unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081{
4082 struct ata_port *ap = qc->ap;
4083
4084 ata_dev_select(ap, qc->dev->devno, 1, 0);
4085
4086 switch (qc->tf.protocol) {
4087 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05004088 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 break;
4090
4091 case ATA_PROT_DMA:
4092 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4093 ap->ops->bmdma_setup(qc); /* set up bmdma */
4094 ap->ops->bmdma_start(qc); /* initiate bmdma */
4095 break;
4096
4097 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4098 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004099 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08004100 ap->hsm_task_state = HSM_ST;
Tejun Heo8061f5f2006-03-05 15:29:09 +09004101 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 break;
4103
4104 case ATA_PROT_ATAPI:
4105 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004106 ata_tf_to_host(ap, &qc->tf);
Tejun Heo8061f5f2006-03-05 15:29:09 +09004107 ata_port_queue_task(ap, atapi_packet_task, ap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 break;
4109
4110 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09004111 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05004112 ata_tf_to_host(ap, &qc->tf);
Tejun Heo8061f5f2006-03-05 15:29:09 +09004113 ata_port_queue_task(ap, atapi_packet_task, ap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 break;
4115
4116 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09004117 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4119 ap->ops->bmdma_setup(qc); /* set up bmdma */
Tejun Heo8061f5f2006-03-05 15:29:09 +09004120 ata_port_queue_task(ap, atapi_packet_task, ap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 break;
4122
4123 default:
4124 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004125 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 }
4127
4128 return 0;
4129}
4130
4131/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 * ata_host_intr - Handle host interrupt for given (port, task)
4133 * @ap: Port on which interrupt arrived (possibly...)
4134 * @qc: Taskfile currently active in engine
4135 *
4136 * Handle host interrupt for given queued command. Currently,
4137 * only DMA interrupts are handled. All other commands are
4138 * handled via polling with interrupts disabled (nIEN bit).
4139 *
4140 * LOCKING:
4141 * spin_lock_irqsave(host_set lock)
4142 *
4143 * RETURNS:
4144 * One if interrupt was handled, zero if not (shared irq).
4145 */
4146
4147inline unsigned int ata_host_intr (struct ata_port *ap,
4148 struct ata_queued_cmd *qc)
4149{
4150 u8 status, host_stat;
4151
4152 switch (qc->tf.protocol) {
4153
4154 case ATA_PROT_DMA:
4155 case ATA_PROT_ATAPI_DMA:
4156 case ATA_PROT_ATAPI:
4157 /* check status of DMA engine */
4158 host_stat = ap->ops->bmdma_status(ap);
4159 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4160
4161 /* if it's not our irq... */
4162 if (!(host_stat & ATA_DMA_INTR))
4163 goto idle_irq;
4164
4165 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004166 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
4168 /* fall through */
4169
4170 case ATA_PROT_ATAPI_NODATA:
4171 case ATA_PROT_NODATA:
4172 /* check altstatus */
4173 status = ata_altstatus(ap);
4174 if (status & ATA_BUSY)
4175 goto idle_irq;
4176
4177 /* check main status, clearing INTRQ */
4178 status = ata_chk_status(ap);
4179 if (unlikely(status & ATA_BUSY))
4180 goto idle_irq;
4181 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4182 ap->id, qc->tf.protocol, status);
4183
4184 /* ack bmdma irq events */
4185 ap->ops->irq_clear(ap);
4186
4187 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004188 qc->err_mask |= ac_err_mask(status);
4189 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 break;
4191
4192 default:
4193 goto idle_irq;
4194 }
4195
4196 return 1; /* irq handled */
4197
4198idle_irq:
4199 ap->stats.idle_irq++;
4200
4201#ifdef ATA_IRQ_TRAP
4202 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 ata_irq_ack(ap, 0); /* debug trap */
4204 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004205 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 }
4207#endif
4208 return 0; /* irq not handled */
4209}
4210
4211/**
4212 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004213 * @irq: irq line (unused)
4214 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 * @regs: unused
4216 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004217 * Default interrupt handler for PCI IDE devices. Calls
4218 * ata_host_intr() for each port that is not disabled.
4219 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004221 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 *
4223 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004224 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 */
4226
4227irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4228{
4229 struct ata_host_set *host_set = dev_instance;
4230 unsigned int i;
4231 unsigned int handled = 0;
4232 unsigned long flags;
4233
4234 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4235 spin_lock_irqsave(&host_set->lock, flags);
4236
4237 for (i = 0; i < host_set->n_ports; i++) {
4238 struct ata_port *ap;
4239
4240 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004241 if (ap &&
4242 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 struct ata_queued_cmd *qc;
4244
4245 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004246 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4247 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 handled |= ata_host_intr(ap, qc);
4249 }
4250 }
4251
4252 spin_unlock_irqrestore(&host_set->lock, flags);
4253
4254 return IRQ_RETVAL(handled);
4255}
4256
Edward Falk0baab862005-06-02 18:17:13 -04004257
Jens Axboe9b847542006-01-06 09:28:07 +01004258/*
4259 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4260 * without filling any other registers
4261 */
4262static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4263 u8 cmd)
4264{
4265 struct ata_taskfile tf;
4266 int err;
4267
4268 ata_tf_init(ap, &tf, dev->devno);
4269
4270 tf.command = cmd;
4271 tf.flags |= ATA_TFLAG_DEVICE;
4272 tf.protocol = ATA_PROT_NODATA;
4273
4274 err = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
4275 if (err)
4276 printk(KERN_ERR "%s: ata command failed: %d\n",
4277 __FUNCTION__, err);
4278
4279 return err;
4280}
4281
4282static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4283{
4284 u8 cmd;
4285
4286 if (!ata_try_flush_cache(dev))
4287 return 0;
4288
4289 if (ata_id_has_flush_ext(dev->id))
4290 cmd = ATA_CMD_FLUSH_EXT;
4291 else
4292 cmd = ATA_CMD_FLUSH;
4293
4294 return ata_do_simple_cmd(ap, dev, cmd);
4295}
4296
4297static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4298{
4299 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4300}
4301
4302static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4303{
4304 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4305}
4306
4307/**
4308 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004309 * @ap: port the device is connected to
4310 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004311 *
4312 * Kick the drive back into action, by sending it an idle immediate
4313 * command and making sure its transfer mode matches between drive
4314 * and host.
4315 *
4316 */
4317int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4318{
4319 if (ap->flags & ATA_FLAG_SUSPENDED) {
4320 ap->flags &= ~ATA_FLAG_SUSPENDED;
4321 ata_set_mode(ap);
4322 }
4323 if (!ata_dev_present(dev))
4324 return 0;
4325 if (dev->class == ATA_DEV_ATA)
4326 ata_start_drive(ap, dev);
4327
4328 return 0;
4329}
4330
4331/**
4332 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004333 * @ap: port the device is connected to
4334 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004335 *
4336 * Flush the cache on the drive, if appropriate, then issue a
4337 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004338 */
4339int ata_device_suspend(struct ata_port *ap, struct ata_device *dev)
4340{
4341 if (!ata_dev_present(dev))
4342 return 0;
4343 if (dev->class == ATA_DEV_ATA)
4344 ata_flush_cache(ap, dev);
4345
4346 ata_standby_drive(ap, dev);
4347 ap->flags |= ATA_FLAG_SUSPENDED;
4348 return 0;
4349}
4350
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004351/**
4352 * ata_port_start - Set port up for dma.
4353 * @ap: Port to initialize
4354 *
4355 * Called just after data structures for each port are
4356 * initialized. Allocates space for PRD table.
4357 *
4358 * May be used as the port_start() entry in ata_port_operations.
4359 *
4360 * LOCKING:
4361 * Inherited from caller.
4362 */
4363
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364int ata_port_start (struct ata_port *ap)
4365{
4366 struct device *dev = ap->host_set->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004367 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
4369 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4370 if (!ap->prd)
4371 return -ENOMEM;
4372
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004373 rc = ata_pad_alloc(ap, dev);
4374 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004375 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004376 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004377 }
4378
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4380
4381 return 0;
4382}
4383
Edward Falk0baab862005-06-02 18:17:13 -04004384
4385/**
4386 * ata_port_stop - Undo ata_port_start()
4387 * @ap: Port to shut down
4388 *
4389 * Frees the PRD table.
4390 *
4391 * May be used as the port_stop() entry in ata_port_operations.
4392 *
4393 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004394 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004395 */
4396
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397void ata_port_stop (struct ata_port *ap)
4398{
4399 struct device *dev = ap->host_set->dev;
4400
4401 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004402 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403}
4404
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004405void ata_host_stop (struct ata_host_set *host_set)
4406{
4407 if (host_set->mmio_base)
4408 iounmap(host_set->mmio_base);
4409}
4410
4411
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412/**
4413 * ata_host_remove - Unregister SCSI host structure with upper layers
4414 * @ap: Port to unregister
4415 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4416 *
4417 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004418 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 */
4420
4421static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4422{
4423 struct Scsi_Host *sh = ap->host;
4424
4425 DPRINTK("ENTER\n");
4426
4427 if (do_unregister)
4428 scsi_remove_host(sh);
4429
4430 ap->ops->port_stop(ap);
4431}
4432
4433/**
4434 * ata_host_init - Initialize an ata_port structure
4435 * @ap: Structure to initialize
4436 * @host: associated SCSI mid-layer structure
4437 * @host_set: Collection of hosts to which @ap belongs
4438 * @ent: Probe information provided by low-level driver
4439 * @port_no: Port number associated with this ata_port
4440 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004441 * Initialize a new ata_port structure, and its associated
4442 * scsi_host.
4443 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004445 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 */
4447
4448static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4449 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004450 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451{
4452 unsigned int i;
4453
4454 host->max_id = 16;
4455 host->max_lun = 1;
4456 host->max_channel = 1;
4457 host->unique_id = ata_unique_id++;
4458 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004459
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 ap->flags = ATA_FLAG_PORT_DISABLED;
4461 ap->id = host->unique_id;
4462 ap->host = host;
4463 ap->ctl = ATA_DEVCTL_OBS;
4464 ap->host_set = host_set;
4465 ap->port_no = port_no;
4466 ap->hard_port_no =
4467 ent->legacy_mode ? ent->hard_port_no : port_no;
4468 ap->pio_mask = ent->pio_mask;
4469 ap->mwdma_mask = ent->mwdma_mask;
4470 ap->udma_mask = ent->udma_mask;
4471 ap->flags |= ent->host_flags;
4472 ap->ops = ent->port_ops;
4473 ap->cbl = ATA_CBL_NONE;
4474 ap->active_tag = ATA_TAG_POISON;
4475 ap->last_ctl = 0xFF;
4476
Tejun Heo86e45b62006-03-05 15:29:09 +09004477 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004478 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Tejun Heoacf356b2006-03-24 14:07:50 +09004480 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4481 struct ata_device *dev = &ap->device[i];
4482 dev->devno = i;
4483 dev->pio_mask = UINT_MAX;
4484 dev->mwdma_mask = UINT_MAX;
4485 dev->udma_mask = UINT_MAX;
4486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
4488#ifdef ATA_IRQ_TRAP
4489 ap->stats.unhandled_irq = 1;
4490 ap->stats.idle_irq = 1;
4491#endif
4492
4493 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4494}
4495
4496/**
4497 * ata_host_add - Attach low-level ATA driver to system
4498 * @ent: Information provided by low-level driver
4499 * @host_set: Collections of ports to which we add
4500 * @port_no: Port number associated with this host
4501 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004502 * Attach low-level ATA driver to system.
4503 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004505 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 *
4507 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004508 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 */
4510
Jeff Garzik057ace52005-10-22 14:27:05 -04004511static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 struct ata_host_set *host_set,
4513 unsigned int port_no)
4514{
4515 struct Scsi_Host *host;
4516 struct ata_port *ap;
4517 int rc;
4518
4519 DPRINTK("ENTER\n");
4520 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4521 if (!host)
4522 return NULL;
4523
Tejun Heo30afc842006-03-18 18:40:14 +09004524 host->transportt = &ata_scsi_transport_template;
4525
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 ap = (struct ata_port *) &host->hostdata[0];
4527
4528 ata_host_init(ap, host, host_set, ent, port_no);
4529
4530 rc = ap->ops->port_start(ap);
4531 if (rc)
4532 goto err_out;
4533
4534 return ap;
4535
4536err_out:
4537 scsi_host_put(host);
4538 return NULL;
4539}
4540
4541/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004542 * ata_device_add - Register hardware device with ATA and SCSI layers
4543 * @ent: Probe information describing hardware device to be registered
4544 *
4545 * This function processes the information provided in the probe
4546 * information struct @ent, allocates the necessary ATA and SCSI
4547 * host information structures, initializes them, and registers
4548 * everything with requisite kernel subsystems.
4549 *
4550 * This function requests irqs, probes the ATA bus, and probes
4551 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 *
4553 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004554 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 *
4556 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004557 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558 */
4559
Jeff Garzik057ace52005-10-22 14:27:05 -04004560int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561{
4562 unsigned int count = 0, i;
4563 struct device *dev = ent->dev;
4564 struct ata_host_set *host_set;
4565
4566 DPRINTK("ENTER\n");
4567 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004568 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4570 if (!host_set)
4571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 spin_lock_init(&host_set->lock);
4573
4574 host_set->dev = dev;
4575 host_set->n_ports = ent->n_ports;
4576 host_set->irq = ent->irq;
4577 host_set->mmio_base = ent->mmio_base;
4578 host_set->private_data = ent->private_data;
4579 host_set->ops = ent->port_ops;
4580
4581 /* register each port bound to this device */
4582 for (i = 0; i < ent->n_ports; i++) {
4583 struct ata_port *ap;
4584 unsigned long xfer_mode_mask;
4585
4586 ap = ata_host_add(ent, host_set, i);
4587 if (!ap)
4588 goto err_out;
4589
4590 host_set->ports[i] = ap;
4591 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4592 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4593 (ap->pio_mask << ATA_SHIFT_PIO);
4594
4595 /* print per-port info to dmesg */
4596 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4597 "bmdma 0x%lX irq %lu\n",
4598 ap->id,
4599 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4600 ata_mode_string(xfer_mode_mask),
4601 ap->ioaddr.cmd_addr,
4602 ap->ioaddr.ctl_addr,
4603 ap->ioaddr.bmdma_addr,
4604 ent->irq);
4605
4606 ata_chk_status(ap);
4607 host_set->ops->irq_clear(ap);
4608 count++;
4609 }
4610
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004611 if (!count)
4612 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613
4614 /* obtain irq, that is shared between channels */
4615 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4616 DRV_NAME, host_set))
4617 goto err_out;
4618
4619 /* perform each probe synchronously */
4620 DPRINTK("probe begin\n");
4621 for (i = 0; i < count; i++) {
4622 struct ata_port *ap;
4623 int rc;
4624
4625 ap = host_set->ports[i];
4626
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004627 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004629 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630
4631 if (rc) {
4632 /* FIXME: do something useful here?
4633 * Current libata behavior will
4634 * tear down everything when
4635 * the module is removed
4636 * or the h/w is unplugged.
4637 */
4638 }
4639
4640 rc = scsi_add_host(ap->host, dev);
4641 if (rc) {
4642 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4643 ap->id);
4644 /* FIXME: do something useful here */
4645 /* FIXME: handle unconditional calls to
4646 * scsi_scan_host and ata_host_remove, below,
4647 * at the very least
4648 */
4649 }
4650 }
4651
4652 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004653 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 for (i = 0; i < count; i++) {
4655 struct ata_port *ap = host_set->ports[i];
4656
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004657 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 }
4659
4660 dev_set_drvdata(dev, host_set);
4661
4662 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4663 return ent->n_ports; /* success */
4664
4665err_out:
4666 for (i = 0; i < count; i++) {
4667 ata_host_remove(host_set->ports[i], 1);
4668 scsi_host_put(host_set->ports[i]->host);
4669 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004670err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 kfree(host_set);
4672 VPRINTK("EXIT, returning 0\n");
4673 return 0;
4674}
4675
4676/**
Alan Cox17b14452005-09-15 15:44:00 +01004677 * ata_host_set_remove - PCI layer callback for device removal
4678 * @host_set: ATA host set that was removed
4679 *
4680 * Unregister all objects associated with this host set. Free those
4681 * objects.
4682 *
4683 * LOCKING:
4684 * Inherited from calling layer (may sleep).
4685 */
4686
Alan Cox17b14452005-09-15 15:44:00 +01004687void ata_host_set_remove(struct ata_host_set *host_set)
4688{
4689 struct ata_port *ap;
4690 unsigned int i;
4691
4692 for (i = 0; i < host_set->n_ports; i++) {
4693 ap = host_set->ports[i];
4694 scsi_remove_host(ap->host);
4695 }
4696
4697 free_irq(host_set->irq, host_set);
4698
4699 for (i = 0; i < host_set->n_ports; i++) {
4700 ap = host_set->ports[i];
4701
4702 ata_scsi_release(ap->host);
4703
4704 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4705 struct ata_ioports *ioaddr = &ap->ioaddr;
4706
4707 if (ioaddr->cmd_addr == 0x1f0)
4708 release_region(0x1f0, 8);
4709 else if (ioaddr->cmd_addr == 0x170)
4710 release_region(0x170, 8);
4711 }
4712
4713 scsi_host_put(ap->host);
4714 }
4715
4716 if (host_set->ops->host_stop)
4717 host_set->ops->host_stop(host_set);
4718
4719 kfree(host_set);
4720}
4721
4722/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 * ata_scsi_release - SCSI layer callback hook for host unload
4724 * @host: libata host to be unloaded
4725 *
4726 * Performs all duties necessary to shut down a libata port...
4727 * Kill port kthread, disable port, and release resources.
4728 *
4729 * LOCKING:
4730 * Inherited from SCSI layer.
4731 *
4732 * RETURNS:
4733 * One.
4734 */
4735
4736int ata_scsi_release(struct Scsi_Host *host)
4737{
4738 struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
Tejun Heod9572b12006-03-01 16:09:35 +09004739 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740
4741 DPRINTK("ENTER\n");
4742
4743 ap->ops->port_disable(ap);
4744 ata_host_remove(ap, 0);
Tejun Heod9572b12006-03-01 16:09:35 +09004745 for (i = 0; i < ATA_MAX_DEVICES; i++)
4746 kfree(ap->device[i].id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
4748 DPRINTK("EXIT\n");
4749 return 1;
4750}
4751
4752/**
4753 * ata_std_ports - initialize ioaddr with standard port offsets.
4754 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004755 *
4756 * Utility function which initializes data_addr, error_addr,
4757 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4758 * device_addr, status_addr, and command_addr to standard offsets
4759 * relative to cmd_addr.
4760 *
4761 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 */
Edward Falk0baab862005-06-02 18:17:13 -04004763
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764void ata_std_ports(struct ata_ioports *ioaddr)
4765{
4766 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4767 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4768 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4769 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4770 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4771 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4772 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4773 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4774 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4775 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4776}
4777
Edward Falk0baab862005-06-02 18:17:13 -04004778
Jeff Garzik374b1872005-08-30 05:42:52 -04004779#ifdef CONFIG_PCI
4780
4781void ata_pci_host_stop (struct ata_host_set *host_set)
4782{
4783 struct pci_dev *pdev = to_pci_dev(host_set->dev);
4784
4785 pci_iounmap(pdev, host_set->mmio_base);
4786}
4787
Edward Falk0baab862005-06-02 18:17:13 -04004788/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 * ata_pci_remove_one - PCI layer callback for device removal
4790 * @pdev: PCI device that was removed
4791 *
4792 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004793 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 * Handle this by unregistering all objects associated
4795 * with this PCI device. Free those objects. Then finally
4796 * release PCI resources and disable device.
4797 *
4798 * LOCKING:
4799 * Inherited from PCI layer (may sleep).
4800 */
4801
4802void ata_pci_remove_one (struct pci_dev *pdev)
4803{
4804 struct device *dev = pci_dev_to_dev(pdev);
4805 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
Alan Cox17b14452005-09-15 15:44:00 +01004807 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 pci_release_regions(pdev);
4809 pci_disable_device(pdev);
4810 dev_set_drvdata(dev, NULL);
4811}
4812
4813/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04004814int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815{
4816 unsigned long tmp = 0;
4817
4818 switch (bits->width) {
4819 case 1: {
4820 u8 tmp8 = 0;
4821 pci_read_config_byte(pdev, bits->reg, &tmp8);
4822 tmp = tmp8;
4823 break;
4824 }
4825 case 2: {
4826 u16 tmp16 = 0;
4827 pci_read_config_word(pdev, bits->reg, &tmp16);
4828 tmp = tmp16;
4829 break;
4830 }
4831 case 4: {
4832 u32 tmp32 = 0;
4833 pci_read_config_dword(pdev, bits->reg, &tmp32);
4834 tmp = tmp32;
4835 break;
4836 }
4837
4838 default:
4839 return -EINVAL;
4840 }
4841
4842 tmp &= bits->mask;
4843
4844 return (tmp == bits->val) ? 1 : 0;
4845}
Jens Axboe9b847542006-01-06 09:28:07 +01004846
4847int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
4848{
4849 pci_save_state(pdev);
4850 pci_disable_device(pdev);
4851 pci_set_power_state(pdev, PCI_D3hot);
4852 return 0;
4853}
4854
4855int ata_pci_device_resume(struct pci_dev *pdev)
4856{
4857 pci_set_power_state(pdev, PCI_D0);
4858 pci_restore_state(pdev);
4859 pci_enable_device(pdev);
4860 pci_set_master(pdev);
4861 return 0;
4862}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863#endif /* CONFIG_PCI */
4864
4865
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866static int __init ata_init(void)
4867{
4868 ata_wq = create_workqueue("ata");
4869 if (!ata_wq)
4870 return -ENOMEM;
4871
4872 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
4873 return 0;
4874}
4875
4876static void __exit ata_exit(void)
4877{
4878 destroy_workqueue(ata_wq);
4879}
4880
4881module_init(ata_init);
4882module_exit(ata_exit);
4883
Jeff Garzik67846b32005-10-05 02:58:32 -04004884static unsigned long ratelimit_time;
4885static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
4886
4887int ata_ratelimit(void)
4888{
4889 int rc;
4890 unsigned long flags;
4891
4892 spin_lock_irqsave(&ata_ratelimit_lock, flags);
4893
4894 if (time_after(jiffies, ratelimit_time)) {
4895 rc = 1;
4896 ratelimit_time = jiffies + (HZ/5);
4897 } else
4898 rc = 0;
4899
4900 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
4901
4902 return rc;
4903}
4904
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905/*
4906 * libata is essentially a library of internal helper functions for
4907 * low-level ATA host controller drivers. As such, the API/ABI is
4908 * likely to change as new drivers are added and updated.
4909 * Do not depend on ABI/API stability.
4910 */
4911
4912EXPORT_SYMBOL_GPL(ata_std_bios_param);
4913EXPORT_SYMBOL_GPL(ata_std_ports);
4914EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01004915EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916EXPORT_SYMBOL_GPL(ata_sg_init);
4917EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09004918EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
4920EXPORT_SYMBOL_GPL(ata_eng_timeout);
4921EXPORT_SYMBOL_GPL(ata_tf_load);
4922EXPORT_SYMBOL_GPL(ata_tf_read);
4923EXPORT_SYMBOL_GPL(ata_noop_dev_select);
4924EXPORT_SYMBOL_GPL(ata_std_dev_select);
4925EXPORT_SYMBOL_GPL(ata_tf_to_fis);
4926EXPORT_SYMBOL_GPL(ata_tf_from_fis);
4927EXPORT_SYMBOL_GPL(ata_check_status);
4928EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929EXPORT_SYMBOL_GPL(ata_exec_command);
4930EXPORT_SYMBOL_GPL(ata_port_start);
4931EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004932EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933EXPORT_SYMBOL_GPL(ata_interrupt);
4934EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06004935EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936EXPORT_SYMBOL_GPL(ata_bmdma_setup);
4937EXPORT_SYMBOL_GPL(ata_bmdma_start);
4938EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
4939EXPORT_SYMBOL_GPL(ata_bmdma_status);
4940EXPORT_SYMBOL_GPL(ata_bmdma_stop);
4941EXPORT_SYMBOL_GPL(ata_port_probe);
4942EXPORT_SYMBOL_GPL(sata_phy_reset);
4943EXPORT_SYMBOL_GPL(__sata_phy_reset);
4944EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09004945EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004946EXPORT_SYMBOL_GPL(ata_std_softreset);
4947EXPORT_SYMBOL_GPL(sata_std_hardreset);
4948EXPORT_SYMBOL_GPL(ata_std_postreset);
4949EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09004950EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09004951EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04004953EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heo6f8b9952006-01-24 17:05:21 +09004954EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09004955EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
4957EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
4958EXPORT_SYMBOL_GPL(ata_scsi_error);
4959EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
4960EXPORT_SYMBOL_GPL(ata_scsi_release);
4961EXPORT_SYMBOL_GPL(ata_host_intr);
4962EXPORT_SYMBOL_GPL(ata_dev_classify);
Tejun Heo6a62a042006-02-13 10:02:46 +09004963EXPORT_SYMBOL_GPL(ata_id_string);
4964EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965EXPORT_SYMBOL_GPL(ata_scsi_simulate);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004966EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
4967EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
Alan Cox1bc4ccf2006-01-09 17:18:14 +00004969EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04004970EXPORT_SYMBOL_GPL(ata_timing_compute);
4971EXPORT_SYMBOL_GPL(ata_timing_merge);
4972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973#ifdef CONFIG_PCI
4974EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04004975EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
4977EXPORT_SYMBOL_GPL(ata_pci_init_one);
4978EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01004979EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
4980EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00004981EXPORT_SYMBOL_GPL(ata_pci_default_filter);
4982EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01004984
4985EXPORT_SYMBOL_GPL(ata_device_suspend);
4986EXPORT_SYMBOL_GPL(ata_device_resume);
4987EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
4988EXPORT_SYMBOL_GPL(ata_scsi_device_resume);