blob: 4823ecefb8a15b91c12c931c8a98b2e952c3a4bb [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 Heod7bb4cc2006-05-31 18:27:46 +090064/* debounce timing parameters in msecs { interval, duration, timeout } */
65const unsigned long sata_deb_timing_boot[] = { 5, 100, 2000 };
66const unsigned long sata_deb_timing_eh[] = { 25, 500, 2000 };
67const unsigned long sata_deb_timing_before_fsrst[] = { 100, 2000, 5000 };
68
Tejun Heo3373efd2006-05-15 20:57:53 +090069static unsigned int ata_dev_init_params(struct ata_device *dev,
70 u16 heads, u16 sectors);
71static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
72static void ata_dev_xfermask(struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74static unsigned int ata_unique_id = 1;
75static struct workqueue_struct *ata_wq;
76
Tejun Heo453b07a2006-05-31 18:27:42 +090077struct workqueue_struct *ata_aux_wq;
78
Jeff Garzik418dc1f2006-03-11 20:50:08 -050079int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040080module_param(atapi_enabled, int, 0444);
81MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
82
Albert Lee95de7192006-04-04 10:57:18 +080083int atapi_dmadir = 0;
84module_param(atapi_dmadir, int, 0444);
85MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
86
Jeff Garzikc3c013a2006-02-27 22:31:19 -050087int libata_fua = 0;
88module_param_named(fua, libata_fua, int, 0444);
89MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091MODULE_AUTHOR("Jeff Garzik");
92MODULE_DESCRIPTION("Library module for ATA devices");
93MODULE_LICENSE("GPL");
94MODULE_VERSION(DRV_VERSION);
95
Edward Falk0baab862005-06-02 18:17:13 -040096
97/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
99 * @tf: Taskfile to convert
100 * @fis: Buffer into which data will output
101 * @pmp: Port multiplier port
102 *
103 * Converts a standard ATA taskfile to a Serial ATA
104 * FIS structure (Register - Host to Device).
105 *
106 * LOCKING:
107 * Inherited from caller.
108 */
109
Jeff Garzik057ace52005-10-22 14:27:05 -0400110void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 fis[0] = 0x27; /* Register - Host to Device FIS */
113 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
114 bit 7 indicates Command FIS */
115 fis[2] = tf->command;
116 fis[3] = tf->feature;
117
118 fis[4] = tf->lbal;
119 fis[5] = tf->lbam;
120 fis[6] = tf->lbah;
121 fis[7] = tf->device;
122
123 fis[8] = tf->hob_lbal;
124 fis[9] = tf->hob_lbam;
125 fis[10] = tf->hob_lbah;
126 fis[11] = tf->hob_feature;
127
128 fis[12] = tf->nsect;
129 fis[13] = tf->hob_nsect;
130 fis[14] = 0;
131 fis[15] = tf->ctl;
132
133 fis[16] = 0;
134 fis[17] = 0;
135 fis[18] = 0;
136 fis[19] = 0;
137}
138
139/**
140 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
141 * @fis: Buffer from which data will be input
142 * @tf: Taskfile to output
143 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500144 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 *
146 * LOCKING:
147 * Inherited from caller.
148 */
149
Jeff Garzik057ace52005-10-22 14:27:05 -0400150void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 tf->command = fis[2]; /* status */
153 tf->feature = fis[3]; /* error */
154
155 tf->lbal = fis[4];
156 tf->lbam = fis[5];
157 tf->lbah = fis[6];
158 tf->device = fis[7];
159
160 tf->hob_lbal = fis[8];
161 tf->hob_lbam = fis[9];
162 tf->hob_lbah = fis[10];
163
164 tf->nsect = fis[12];
165 tf->hob_nsect = fis[13];
166}
167
Albert Lee8cbd6df2005-10-12 15:06:27 +0800168static const u8 ata_rw_cmds[] = {
169 /* pio multi */
170 ATA_CMD_READ_MULTI,
171 ATA_CMD_WRITE_MULTI,
172 ATA_CMD_READ_MULTI_EXT,
173 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100174 0,
175 0,
176 0,
177 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800178 /* pio */
179 ATA_CMD_PIO_READ,
180 ATA_CMD_PIO_WRITE,
181 ATA_CMD_PIO_READ_EXT,
182 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100183 0,
184 0,
185 0,
186 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800187 /* dma */
188 ATA_CMD_READ,
189 ATA_CMD_WRITE,
190 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100191 ATA_CMD_WRITE_EXT,
192 0,
193 0,
194 0,
195 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800196};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800199 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
200 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500202 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800203 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
205 * LOCKING:
206 * caller.
207 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100208int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800210 struct ata_taskfile *tf = &qc->tf;
211 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100212 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100214 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500215
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100216 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800217 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
218 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Albert Lee8cbd6df2005-10-12 15:06:27 +0800220 if (dev->flags & ATA_DFLAG_PIO) {
221 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100222 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000223 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
224 /* Unable to use DMA due to host limitation */
225 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800226 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800227 } else {
228 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100229 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100232 cmd = ata_rw_cmds[index + fua + lba48 + write];
233 if (cmd) {
234 tf->command = cmd;
235 return 0;
236 }
237 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Tejun Heocb95d562006-03-06 04:31:56 +0900240/**
241 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
242 * @pio_mask: pio_mask
243 * @mwdma_mask: mwdma_mask
244 * @udma_mask: udma_mask
245 *
246 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
247 * unsigned int xfer_mask.
248 *
249 * LOCKING:
250 * None.
251 *
252 * RETURNS:
253 * Packed xfer_mask.
254 */
255static unsigned int ata_pack_xfermask(unsigned int pio_mask,
256 unsigned int mwdma_mask,
257 unsigned int udma_mask)
258{
259 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
260 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
261 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
262}
263
Tejun Heoc0489e42006-03-24 14:07:49 +0900264/**
265 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
266 * @xfer_mask: xfer_mask to unpack
267 * @pio_mask: resulting pio_mask
268 * @mwdma_mask: resulting mwdma_mask
269 * @udma_mask: resulting udma_mask
270 *
271 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
272 * Any NULL distination masks will be ignored.
273 */
274static void ata_unpack_xfermask(unsigned int xfer_mask,
275 unsigned int *pio_mask,
276 unsigned int *mwdma_mask,
277 unsigned int *udma_mask)
278{
279 if (pio_mask)
280 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
281 if (mwdma_mask)
282 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
283 if (udma_mask)
284 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
285}
286
Tejun Heocb95d562006-03-06 04:31:56 +0900287static const struct ata_xfer_ent {
Tejun Heobe9a50c82006-03-31 22:48:52 +0900288 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900289 u8 base;
290} ata_xfer_tbl[] = {
291 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
292 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
293 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
294 { -1, },
295};
296
297/**
298 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
299 * @xfer_mask: xfer_mask of interest
300 *
301 * Return matching XFER_* value for @xfer_mask. Only the highest
302 * bit of @xfer_mask is considered.
303 *
304 * LOCKING:
305 * None.
306 *
307 * RETURNS:
308 * Matching XFER_* value, 0 if no match found.
309 */
310static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
311{
312 int highbit = fls(xfer_mask) - 1;
313 const struct ata_xfer_ent *ent;
314
315 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
316 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
317 return ent->base + highbit - ent->shift;
318 return 0;
319}
320
321/**
322 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
323 * @xfer_mode: XFER_* of interest
324 *
325 * Return matching xfer_mask for @xfer_mode.
326 *
327 * LOCKING:
328 * None.
329 *
330 * RETURNS:
331 * Matching xfer_mask, 0 if no match found.
332 */
333static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
334{
335 const struct ata_xfer_ent *ent;
336
337 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
338 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
339 return 1 << (ent->shift + xfer_mode - ent->base);
340 return 0;
341}
342
343/**
344 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
345 * @xfer_mode: XFER_* of interest
346 *
347 * Return matching xfer_shift for @xfer_mode.
348 *
349 * LOCKING:
350 * None.
351 *
352 * RETURNS:
353 * Matching xfer_shift, -1 if no match found.
354 */
355static int ata_xfer_mode2shift(unsigned int xfer_mode)
356{
357 const struct ata_xfer_ent *ent;
358
359 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
360 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
361 return ent->shift;
362 return -1;
363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900366 * ata_mode_string - convert xfer_mask to string
367 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 *
369 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900370 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *
372 * LOCKING:
373 * None.
374 *
375 * RETURNS:
376 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900377 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900379static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Tejun Heo75f554b2006-03-06 04:31:57 +0900381 static const char * const xfer_mode_str[] = {
382 "PIO0",
383 "PIO1",
384 "PIO2",
385 "PIO3",
386 "PIO4",
387 "MWDMA0",
388 "MWDMA1",
389 "MWDMA2",
390 "UDMA/16",
391 "UDMA/25",
392 "UDMA/33",
393 "UDMA/44",
394 "UDMA/66",
395 "UDMA/100",
396 "UDMA/133",
397 "UDMA7",
398 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900399 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900401 highbit = fls(xfer_mask) - 1;
402 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
403 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Tejun Heo4c360c82006-04-01 01:38:17 +0900407static const char *sata_spd_string(unsigned int spd)
408{
409 static const char * const spd_str[] = {
410 "1.5 Gbps",
411 "3.0 Gbps",
412 };
413
414 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
415 return "<unknown>";
416 return spd_str[spd - 1];
417}
418
Tejun Heo3373efd2006-05-15 20:57:53 +0900419void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900420{
Tejun Heoe1211e32006-04-01 01:38:18 +0900421 if (ata_dev_enabled(dev)) {
Tejun Heof15a1da2006-05-15 20:57:56 +0900422 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo0b8efb02006-03-24 15:25:31 +0900423 dev->class++;
424 }
425}
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/**
428 * ata_pio_devchk - PATA device presence detection
429 * @ap: ATA channel to examine
430 * @device: Device to examine (starting at zero)
431 *
432 * This technique was originally described in
433 * Hale Landis's ATADRVR (www.ata-atapi.com), and
434 * later found its way into the ATA/ATAPI spec.
435 *
436 * Write a pattern to the ATA shadow registers,
437 * and if a device is present, it will respond by
438 * correctly storing and echoing back the
439 * ATA shadow register contents.
440 *
441 * LOCKING:
442 * caller.
443 */
444
445static unsigned int ata_pio_devchk(struct ata_port *ap,
446 unsigned int device)
447{
448 struct ata_ioports *ioaddr = &ap->ioaddr;
449 u8 nsect, lbal;
450
451 ap->ops->dev_select(ap, device);
452
453 outb(0x55, ioaddr->nsect_addr);
454 outb(0xaa, ioaddr->lbal_addr);
455
456 outb(0xaa, ioaddr->nsect_addr);
457 outb(0x55, ioaddr->lbal_addr);
458
459 outb(0x55, ioaddr->nsect_addr);
460 outb(0xaa, ioaddr->lbal_addr);
461
462 nsect = inb(ioaddr->nsect_addr);
463 lbal = inb(ioaddr->lbal_addr);
464
465 if ((nsect == 0x55) && (lbal == 0xaa))
466 return 1; /* we found a device */
467
468 return 0; /* nothing found */
469}
470
471/**
472 * ata_mmio_devchk - PATA device presence detection
473 * @ap: ATA channel to examine
474 * @device: Device to examine (starting at zero)
475 *
476 * This technique was originally described in
477 * Hale Landis's ATADRVR (www.ata-atapi.com), and
478 * later found its way into the ATA/ATAPI spec.
479 *
480 * Write a pattern to the ATA shadow registers,
481 * and if a device is present, it will respond by
482 * correctly storing and echoing back the
483 * ATA shadow register contents.
484 *
485 * LOCKING:
486 * caller.
487 */
488
489static unsigned int ata_mmio_devchk(struct ata_port *ap,
490 unsigned int device)
491{
492 struct ata_ioports *ioaddr = &ap->ioaddr;
493 u8 nsect, lbal;
494
495 ap->ops->dev_select(ap, device);
496
497 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
498 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
499
500 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
501 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
502
503 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
504 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
505
506 nsect = readb((void __iomem *) ioaddr->nsect_addr);
507 lbal = readb((void __iomem *) ioaddr->lbal_addr);
508
509 if ((nsect == 0x55) && (lbal == 0xaa))
510 return 1; /* we found a device */
511
512 return 0; /* nothing found */
513}
514
515/**
516 * ata_devchk - PATA device presence detection
517 * @ap: ATA channel to examine
518 * @device: Device to examine (starting at zero)
519 *
520 * Dispatch ATA device presence detection, depending
521 * on whether we are using PIO or MMIO to talk to the
522 * ATA shadow registers.
523 *
524 * LOCKING:
525 * caller.
526 */
527
528static unsigned int ata_devchk(struct ata_port *ap,
529 unsigned int device)
530{
531 if (ap->flags & ATA_FLAG_MMIO)
532 return ata_mmio_devchk(ap, device);
533 return ata_pio_devchk(ap, device);
534}
535
536/**
537 * ata_dev_classify - determine device type based on ATA-spec signature
538 * @tf: ATA taskfile register set for device to be identified
539 *
540 * Determine from taskfile register contents whether a device is
541 * ATA or ATAPI, as per "Signature and persistence" section
542 * of ATA/PI spec (volume 1, sect 5.14).
543 *
544 * LOCKING:
545 * None.
546 *
547 * RETURNS:
548 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
549 * the event of failure.
550 */
551
Jeff Garzik057ace52005-10-22 14:27:05 -0400552unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 /* Apple's open source Darwin code hints that some devices only
555 * put a proper signature into the LBA mid/high registers,
556 * So, we only check those. It's sufficient for uniqueness.
557 */
558
559 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
560 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
561 DPRINTK("found ATA device by sig\n");
562 return ATA_DEV_ATA;
563 }
564
565 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
566 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
567 DPRINTK("found ATAPI device by sig\n");
568 return ATA_DEV_ATAPI;
569 }
570
571 DPRINTK("unknown device\n");
572 return ATA_DEV_UNKNOWN;
573}
574
575/**
576 * ata_dev_try_classify - Parse returned ATA device signature
577 * @ap: ATA channel to examine
578 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900579 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 *
581 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
582 * an ATA/ATAPI-defined set of values is placed in the ATA
583 * shadow registers, indicating the results of device detection
584 * and diagnostics.
585 *
586 * Select the ATA device, and read the values from the ATA shadow
587 * registers. Then parse according to the Error register value,
588 * and the spec-defined values examined by ata_dev_classify().
589 *
590 * LOCKING:
591 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900592 *
593 * RETURNS:
594 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
596
Tejun Heob4dc7622006-01-24 17:05:22 +0900597static unsigned int
598ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 struct ata_taskfile tf;
601 unsigned int class;
602 u8 err;
603
604 ap->ops->dev_select(ap, device);
605
606 memset(&tf, 0, sizeof(tf));
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400609 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900610 if (r_err)
611 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 /* see if device passed diags */
614 if (err == 1)
615 /* do nothing */ ;
616 else if ((device == 0) && (err == 0x81))
617 /* do nothing */ ;
618 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900619 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Tejun Heob4dc7622006-01-24 17:05:22 +0900621 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900625 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900627 return ATA_DEV_NONE;
628 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900632 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * @id: IDENTIFY DEVICE results we will examine
634 * @s: string into which data is output
635 * @ofs: offset into identify device page
636 * @len: length of string to return. must be an even number.
637 *
638 * The strings in the IDENTIFY DEVICE page are broken up into
639 * 16-bit chunks. Run through the string, and output each
640 * 8-bit chunk linearly, regardless of platform.
641 *
642 * LOCKING:
643 * caller.
644 */
645
Tejun Heo6a62a042006-02-13 10:02:46 +0900646void ata_id_string(const u16 *id, unsigned char *s,
647 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 unsigned int c;
650
651 while (len > 0) {
652 c = id[ofs] >> 8;
653 *s = c;
654 s++;
655
656 c = id[ofs] & 0xff;
657 *s = c;
658 s++;
659
660 ofs++;
661 len -= 2;
662 }
663}
664
Tejun Heo0e949ff2006-02-12 22:47:04 +0900665/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900666 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900667 * @id: IDENTIFY DEVICE results we will examine
668 * @s: string into which data is output
669 * @ofs: offset into identify device page
670 * @len: length of string to return. must be an odd number.
671 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900672 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900673 * trims trailing spaces and terminates the resulting string with
674 * null. @len must be actual maximum length (even number) + 1.
675 *
676 * LOCKING:
677 * caller.
678 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900679void ata_id_c_string(const u16 *id, unsigned char *s,
680 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900681{
682 unsigned char *p;
683
684 WARN_ON(!(len & 1));
685
Tejun Heo6a62a042006-02-13 10:02:46 +0900686 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900687
688 p = s + strnlen(s, len - 1);
689 while (p > s && p[-1] == ' ')
690 p--;
691 *p = '\0';
692}
Edward Falk0baab862005-06-02 18:17:13 -0400693
Tejun Heo29407402006-02-12 22:47:04 +0900694static u64 ata_id_n_sectors(const u16 *id)
695{
696 if (ata_id_has_lba(id)) {
697 if (ata_id_has_lba48(id))
698 return ata_id_u64(id, 100);
699 else
700 return ata_id_u32(id, 60);
701 } else {
702 if (ata_id_current_chs_valid(id))
703 return ata_id_u32(id, 57);
704 else
705 return id[1] * id[3] * id[6];
706 }
707}
708
Edward Falk0baab862005-06-02 18:17:13 -0400709/**
710 * ata_noop_dev_select - Select device 0/1 on ATA bus
711 * @ap: ATA channel to manipulate
712 * @device: ATA device (numbered from zero) to select
713 *
714 * This function performs no actual function.
715 *
716 * May be used as the dev_select() entry in ata_port_operations.
717 *
718 * LOCKING:
719 * caller.
720 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
722{
723}
724
Edward Falk0baab862005-06-02 18:17:13 -0400725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/**
727 * ata_std_dev_select - Select device 0/1 on ATA bus
728 * @ap: ATA channel to manipulate
729 * @device: ATA device (numbered from zero) to select
730 *
731 * Use the method defined in the ATA specification to
732 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400733 * ATA channel. Works with both PIO and MMIO.
734 *
735 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 *
737 * LOCKING:
738 * caller.
739 */
740
741void ata_std_dev_select (struct ata_port *ap, unsigned int device)
742{
743 u8 tmp;
744
745 if (device == 0)
746 tmp = ATA_DEVICE_OBS;
747 else
748 tmp = ATA_DEVICE_OBS | ATA_DEV1;
749
750 if (ap->flags & ATA_FLAG_MMIO) {
751 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
752 } else {
753 outb(tmp, ap->ioaddr.device_addr);
754 }
755 ata_pause(ap); /* needed; also flushes, for mmio */
756}
757
758/**
759 * ata_dev_select - Select device 0/1 on ATA bus
760 * @ap: ATA channel to manipulate
761 * @device: ATA device (numbered from zero) to select
762 * @wait: non-zero to wait for Status register BSY bit to clear
763 * @can_sleep: non-zero if context allows sleeping
764 *
765 * Use the method defined in the ATA specification to
766 * make either device 0, or device 1, active on the
767 * ATA channel.
768 *
769 * This is a high-level version of ata_std_dev_select(),
770 * which additionally provides the services of inserting
771 * the proper pauses and status polling, where needed.
772 *
773 * LOCKING:
774 * caller.
775 */
776
777void ata_dev_select(struct ata_port *ap, unsigned int device,
778 unsigned int wait, unsigned int can_sleep)
779{
780 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
781 ap->id, device, wait);
782
783 if (wait)
784 ata_wait_idle(ap);
785
786 ap->ops->dev_select(ap, device);
787
788 if (wait) {
789 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
790 msleep(150);
791 ata_wait_idle(ap);
792 }
793}
794
795/**
796 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900797 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900799 * Dump selected 16-bit words from the given IDENTIFY DEVICE
800 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 *
802 * LOCKING:
803 * caller.
804 */
805
Tejun Heo0bd33002006-02-12 22:47:05 +0900806static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 DPRINTK("49==0x%04x "
809 "53==0x%04x "
810 "63==0x%04x "
811 "64==0x%04x "
812 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900813 id[49],
814 id[53],
815 id[63],
816 id[64],
817 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 DPRINTK("80==0x%04x "
819 "81==0x%04x "
820 "82==0x%04x "
821 "83==0x%04x "
822 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900823 id[80],
824 id[81],
825 id[82],
826 id[83],
827 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 DPRINTK("88==0x%04x "
829 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900830 id[88],
831 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Tejun Heocb95d562006-03-06 04:31:56 +0900834/**
835 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
836 * @id: IDENTIFY data to compute xfer mask from
837 *
838 * Compute the xfermask for this device. This is not as trivial
839 * as it seems if we must consider early devices correctly.
840 *
841 * FIXME: pre IDE drive timing (do we care ?).
842 *
843 * LOCKING:
844 * None.
845 *
846 * RETURNS:
847 * Computed xfermask
848 */
849static unsigned int ata_id_xfermask(const u16 *id)
850{
851 unsigned int pio_mask, mwdma_mask, udma_mask;
852
853 /* Usual case. Word 53 indicates word 64 is valid */
854 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
855 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
856 pio_mask <<= 3;
857 pio_mask |= 0x7;
858 } else {
859 /* If word 64 isn't valid then Word 51 high byte holds
860 * the PIO timing number for the maximum. Turn it into
861 * a mask.
862 */
863 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
864
865 /* But wait.. there's more. Design your standards by
866 * committee and you too can get a free iordy field to
867 * process. However its the speeds not the modes that
868 * are supported... Note drivers using the timing API
869 * will get this right anyway
870 */
871 }
872
873 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900874
875 udma_mask = 0;
876 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
877 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900878
879 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
880}
881
Tejun Heo86e45b62006-03-05 15:29:09 +0900882/**
883 * ata_port_queue_task - Queue port_task
884 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -0700885 * @fn: workqueue function to be scheduled
886 * @data: data value to pass to workqueue function
887 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +0900888 *
889 * Schedule @fn(@data) for execution after @delay jiffies using
890 * port_task. There is one port_task per port and it's the
891 * user(low level driver)'s responsibility to make sure that only
892 * one task is active at any given time.
893 *
894 * libata core layer takes care of synchronization between
895 * port_task and EH. ata_port_queue_task() may be ignored for EH
896 * synchronization.
897 *
898 * LOCKING:
899 * Inherited from caller.
900 */
901void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
902 unsigned long delay)
903{
904 int rc;
905
Tejun Heo2e755f62006-03-05 15:29:09 +0900906 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900907 return;
908
909 PREPARE_WORK(&ap->port_task, fn, data);
910
911 if (!delay)
912 rc = queue_work(ata_wq, &ap->port_task);
913 else
914 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
915
916 /* rc == 0 means that another user is using port task */
917 WARN_ON(rc == 0);
918}
919
920/**
921 * ata_port_flush_task - Flush port_task
922 * @ap: The ata_port to flush port_task for
923 *
924 * After this function completes, port_task is guranteed not to
925 * be running or scheduled.
926 *
927 * LOCKING:
928 * Kernel thread context (may sleep)
929 */
930void ata_port_flush_task(struct ata_port *ap)
931{
932 unsigned long flags;
933
934 DPRINTK("ENTER\n");
935
936 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900937 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900938 spin_unlock_irqrestore(&ap->host_set->lock, flags);
939
940 DPRINTK("flush #1\n");
941 flush_workqueue(ata_wq);
942
943 /*
944 * At this point, if a task is running, it's guaranteed to see
945 * the FLUSH flag; thus, it will never queue pio tasks again.
946 * Cancel and flush.
947 */
948 if (!cancel_delayed_work(&ap->port_task)) {
949 DPRINTK("flush #2\n");
950 flush_workqueue(ata_wq);
951 }
952
953 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900954 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900955 spin_unlock_irqrestore(&ap->host_set->lock, flags);
956
957 DPRINTK("EXIT\n");
958}
959
Tejun Heo77853bf2006-01-23 13:09:36 +0900960void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900961{
Tejun Heo77853bf2006-01-23 13:09:36 +0900962 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900963
Tejun Heoa2a7a662005-12-13 14:48:31 +0900964 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900965}
966
967/**
968 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900969 * @dev: Device to which the command is sent
970 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900971 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900972 * @dma_dir: Data tranfer direction of the command
973 * @buf: Data buffer of the command
974 * @buflen: Length of data buffer
975 *
976 * Executes libata internal command with timeout. @tf contains
977 * command on entry and result on return. Timeout and error
978 * conditions are reported via return value. No recovery action
979 * is taken after a command times out. It's caller's duty to
980 * clean up after timeout.
981 *
982 * LOCKING:
983 * None. Should be called with kernel context, might sleep.
984 */
985
Tejun Heo3373efd2006-05-15 20:57:53 +0900986unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900987 struct ata_taskfile *tf, const u8 *cdb,
988 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900989{
Tejun Heo3373efd2006-05-15 20:57:53 +0900990 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900991 u8 command = tf->command;
992 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +0900993 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +0900994 u32 preempted_sactive, preempted_qc_active;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900995 DECLARE_COMPLETION(wait);
996 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900997 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +0900998 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900999
1000 spin_lock_irqsave(&ap->host_set->lock, flags);
1001
Tejun Heoe3180492006-05-15 20:58:09 +09001002 /* no internal command while frozen */
1003 if (ap->flags & ATA_FLAG_FROZEN) {
1004 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1005 return AC_ERR_SYSTEM;
1006 }
1007
Tejun Heo2ab7db12006-05-15 20:58:02 +09001008 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001009
Tejun Heo2ab7db12006-05-15 20:58:02 +09001010 /* XXX: Tag 0 is used for drivers with legacy EH as some
1011 * drivers choke if any other tag is given. This breaks
1012 * ata_tag_internal() test for those drivers. Don't use new
1013 * EH stuff without converting to it.
1014 */
1015 if (ap->ops->error_handler)
1016 tag = ATA_TAG_INTERNAL;
1017 else
1018 tag = 0;
1019
Tejun Heo6cec4a32006-05-15 21:03:41 +09001020 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001021 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001022 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001023
1024 qc->tag = tag;
1025 qc->scsicmd = NULL;
1026 qc->ap = ap;
1027 qc->dev = dev;
1028 ata_qc_reinit(qc);
1029
1030 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001031 preempted_sactive = ap->sactive;
1032 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001033 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001034 ap->sactive = 0;
1035 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001036
1037 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001038 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001039 if (cdb)
1040 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001041 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001042 qc->dma_dir = dma_dir;
1043 if (dma_dir != DMA_NONE) {
1044 ata_sg_init_one(qc, buf, buflen);
1045 qc->nsect = buflen / ATA_SECT_SIZE;
1046 }
1047
Tejun Heo77853bf2006-01-23 13:09:36 +09001048 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001049 qc->complete_fn = ata_qc_complete_internal;
1050
Tejun Heo8e0e6942006-03-31 20:41:11 +09001051 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001052
1053 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1054
Tejun Heod95a7172006-05-15 20:58:14 +09001055 rc = wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL);
Albert Lee41ade502006-03-14 11:19:04 +08001056
Tejun Heod95a7172006-05-15 20:58:14 +09001057 ata_port_flush_task(ap);
1058
1059 if (!rc) {
Tejun Heoa2a7a662005-12-13 14:48:31 +09001060 spin_lock_irqsave(&ap->host_set->lock, flags);
1061
1062 /* We're racing with irq here. If we lose, the
1063 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001064 * twice. If we win, the port is frozen and will be
1065 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001066 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001067 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001068 qc->err_mask |= AC_ERR_TIMEOUT;
1069
1070 if (ap->ops->error_handler)
1071 ata_port_freeze(ap);
1072 else
1073 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001074
1075 ata_dev_printk(dev, KERN_WARNING,
1076 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001077 }
1078
1079 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1080 }
1081
Tejun Heod95a7172006-05-15 20:58:14 +09001082 /* do post_internal_cmd */
1083 if (ap->ops->post_internal_cmd)
1084 ap->ops->post_internal_cmd(qc);
1085
1086 if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) {
1087 ata_dev_printk(dev, KERN_WARNING, "zero err_mask for failed "
1088 "internal command, assuming AC_ERR_OTHER\n");
1089 qc->err_mask |= AC_ERR_OTHER;
1090 }
1091
Tejun Heo15869302006-05-15 20:57:33 +09001092 /* finish up */
1093 spin_lock_irqsave(&ap->host_set->lock, flags);
1094
Tejun Heoe61e0672006-05-15 20:57:40 +09001095 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001096 err_mask = qc->err_mask;
1097
1098 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001099 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001100 ap->sactive = preempted_sactive;
1101 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001102
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001103 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1104 * Until those drivers are fixed, we detect the condition
1105 * here, fail the command with AC_ERR_SYSTEM and reenable the
1106 * port.
1107 *
1108 * Note that this doesn't change any behavior as internal
1109 * command failure results in disabling the device in the
1110 * higher layer for LLDDs without new reset/EH callbacks.
1111 *
1112 * Kill the following code as soon as those drivers are fixed.
1113 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001114 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001115 err_mask |= AC_ERR_SYSTEM;
1116 ata_port_probe(ap);
1117 }
1118
Tejun Heo15869302006-05-15 20:57:33 +09001119 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1120
Tejun Heo77853bf2006-01-23 13:09:36 +09001121 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001122}
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001125 * ata_pio_need_iordy - check if iordy needed
1126 * @adev: ATA device
1127 *
1128 * Check if the current speed of the device requires IORDY. Used
1129 * by various controllers for chip configuration.
1130 */
1131
1132unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1133{
1134 int pio;
1135 int speed = adev->pio_mode - XFER_PIO_0;
1136
1137 if (speed < 2)
1138 return 0;
1139 if (speed > 2)
1140 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001141
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001142 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1143
1144 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1145 pio = adev->id[ATA_ID_EIDE_PIO];
1146 /* Is the speed faster than the drive allows non IORDY ? */
1147 if (pio) {
1148 /* This is cycle times not frequency - watch the logic! */
1149 if (pio > 240) /* PIO2 is 240nS per cycle */
1150 return 1;
1151 return 0;
1152 }
1153 }
1154 return 0;
1155}
1156
1157/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001158 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001159 * @dev: target device
1160 * @p_class: pointer to class of the target device (may be changed)
1161 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001162 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001163 *
1164 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1165 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001166 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1167 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001168 *
1169 * LOCKING:
1170 * Kernel thread context (may sleep)
1171 *
1172 * RETURNS:
1173 * 0 on success, -errno otherwise.
1174 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001175int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1176 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001177{
Tejun Heo3373efd2006-05-15 20:57:53 +09001178 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001179 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001180 struct ata_taskfile tf;
1181 unsigned int err_mask = 0;
1182 const char *reason;
1183 int rc;
1184
1185 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1186
Tejun Heo49016ac2006-02-21 02:12:11 +09001187 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1188
1189 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001190 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001191
1192 switch (class) {
1193 case ATA_DEV_ATA:
1194 tf.command = ATA_CMD_ID_ATA;
1195 break;
1196 case ATA_DEV_ATAPI:
1197 tf.command = ATA_CMD_ID_ATAPI;
1198 break;
1199 default:
1200 rc = -ENODEV;
1201 reason = "unsupported class";
1202 goto err_out;
1203 }
1204
1205 tf.protocol = ATA_PROT_PIO;
1206
Tejun Heo3373efd2006-05-15 20:57:53 +09001207 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001208 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001209 if (err_mask) {
1210 rc = -EIO;
1211 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001212 goto err_out;
1213 }
1214
1215 swap_buf_le16(id, ATA_ID_WORDS);
1216
Tejun Heo49016ac2006-02-21 02:12:11 +09001217 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001218 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001219 rc = -EINVAL;
1220 reason = "device reports illegal type";
1221 goto err_out;
1222 }
1223
1224 if (post_reset && class == ATA_DEV_ATA) {
1225 /*
1226 * The exact sequence expected by certain pre-ATA4 drives is:
1227 * SRST RESET
1228 * IDENTIFY
1229 * INITIALIZE DEVICE PARAMETERS
1230 * anything else..
1231 * Some drives were very specific about that exact sequence.
1232 */
1233 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001234 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001235 if (err_mask) {
1236 rc = -EIO;
1237 reason = "INIT_DEV_PARAMS failed";
1238 goto err_out;
1239 }
1240
1241 /* current CHS translation info (id[53-58]) might be
1242 * changed. reread the identify device info.
1243 */
1244 post_reset = 0;
1245 goto retry;
1246 }
1247 }
1248
1249 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001250
Tejun Heo49016ac2006-02-21 02:12:11 +09001251 return 0;
1252
1253 err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09001254 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
1255 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001256 return rc;
1257}
1258
Tejun Heo3373efd2006-05-15 20:57:53 +09001259static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001260{
Tejun Heo3373efd2006-05-15 20:57:53 +09001261 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001262}
1263
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001264static void ata_dev_config_ncq(struct ata_device *dev,
1265 char *desc, size_t desc_sz)
1266{
1267 struct ata_port *ap = dev->ap;
1268 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1269
1270 if (!ata_id_has_ncq(dev->id)) {
1271 desc[0] = '\0';
1272 return;
1273 }
1274
1275 if (ap->flags & ATA_FLAG_NCQ) {
1276 hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1);
1277 dev->flags |= ATA_DFLAG_NCQ;
1278 }
1279
1280 if (hdepth >= ddepth)
1281 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1282 else
1283 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1284}
1285
Tejun Heo49016ac2006-02-21 02:12:11 +09001286/**
Tejun Heoffeae412006-03-01 16:09:35 +09001287 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001288 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001289 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 *
Tejun Heoffeae412006-03-01 16:09:35 +09001291 * Configure @dev according to @dev->id. Generic and low-level
1292 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 *
1294 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001295 * Kernel thread context (may sleep)
1296 *
1297 * RETURNS:
1298 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001300int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Tejun Heo3373efd2006-05-15 20:57:53 +09001302 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001303 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001304 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001305 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Tejun Heoe1211e32006-04-01 01:38:18 +09001307 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001309 ap->id, dev->devno);
1310 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312
Tejun Heoffeae412006-03-01 16:09:35 +09001313 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001315 /* print device capabilities */
1316 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001317 ata_dev_printk(dev, KERN_DEBUG, "cfg 49:%04x 82:%04x 83:%04x "
1318 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1319 id[49], id[82], id[83], id[84],
1320 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001321
Tejun Heo208a9932006-03-05 17:55:58 +09001322 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001323 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001324 dev->max_sectors = 0;
1325 dev->cdb_len = 0;
1326 dev->n_sectors = 0;
1327 dev->cylinders = 0;
1328 dev->heads = 0;
1329 dev->sectors = 0;
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 /*
1332 * common ATA, ATAPI feature tests
1333 */
1334
Tejun Heoff8854b2006-03-06 04:31:56 +09001335 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001336 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Tejun Heo1148c3a2006-03-13 19:48:04 +09001338 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 /* ATA-specific feature tests */
1341 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001342 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001343
Tejun Heo1148c3a2006-03-13 19:48:04 +09001344 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001345 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001346 char ncq_desc[20];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001347
Tejun Heo4c2d7212006-03-05 17:55:58 +09001348 lba_desc = "LBA";
1349 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001350 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001351 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001352 lba_desc = "LBA48";
1353 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001354
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001355 /* config NCQ */
1356 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1357
Albert Lee8bf62ec2005-05-12 15:29:42 -04001358 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001359 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001360 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001361 "max %s, %Lu sectors: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001362 ata_id_major_version(id),
1363 ata_mode_string(xfer_mask),
1364 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001365 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001366 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001367 /* CHS */
1368
1369 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001370 dev->cylinders = id[1];
1371 dev->heads = id[3];
1372 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001373
Tejun Heo1148c3a2006-03-13 19:48:04 +09001374 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001375 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001376 dev->cylinders = id[54];
1377 dev->heads = id[55];
1378 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001379 }
1380
1381 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001382 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001383 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1384 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1385 ata_id_major_version(id),
1386 ata_mode_string(xfer_mask),
1387 (unsigned long long)dev->n_sectors,
1388 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
1390
Albert Lee07f6f7d2005-11-01 19:33:20 +08001391 if (dev->id[59] & 0x100) {
1392 dev->multi_count = dev->id[59] & 0xff;
1393 DPRINTK("ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001394 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001395 }
1396
Tejun Heo6e7846e2006-02-12 23:32:58 +09001397 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399
1400 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001401 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001402 char *cdb_intr_string = "";
1403
Tejun Heo1148c3a2006-03-13 19:48:04 +09001404 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001406 ata_dev_printk(dev, KERN_WARNING,
1407 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001408 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 goto err_out_nosup;
1410 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001411 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Albert Lee08a556d2006-03-31 13:29:04 +08001413 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001414 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001415 cdb_intr_string = ", CDB intr";
1416 }
Albert Lee312f7da2005-09-27 17:38:03 +08001417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001419 if (print_info)
Tejun Heo12436c32006-05-15 20:59:15 +09001420 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1421 ata_mode_string(xfer_mask),
1422 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424
Tejun Heo6e7846e2006-02-12 23:32:58 +09001425 ap->host->max_cmd_len = 0;
1426 for (i = 0; i < ATA_MAX_DEVICES; i++)
1427 ap->host->max_cmd_len = max_t(unsigned int,
1428 ap->host->max_cmd_len,
1429 ap->device[i].cdb_len);
1430
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001431 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001432 if (ata_dev_knobble(dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001433 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001434 ata_dev_printk(dev, KERN_INFO,
1435 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001436 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001437 dev->max_sectors = ATA_MAX_SECTORS;
1438 }
1439
1440 if (ap->ops->dev_config)
1441 ap->ops->dev_config(ap, dev);
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001448 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
1451/**
1452 * ata_bus_probe - Reset and probe ATA bus
1453 * @ap: Bus to probe
1454 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001455 * Master ATA bus probing function. Initiates a hardware-dependent
1456 * bus reset, then attempts to identify any devices found on
1457 * the bus.
1458 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001460 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 *
1462 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001463 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 */
1465
1466static int ata_bus_probe(struct ata_port *ap)
1467{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001468 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001469 int tries[ATA_MAX_DEVICES];
1470 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001471 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Tejun Heo28ca5c52006-03-01 16:09:36 +09001473 ata_port_probe(ap);
1474
Tejun Heo14d2bac2006-04-02 17:54:46 +09001475 for (i = 0; i < ATA_MAX_DEVICES; i++)
1476 tries[i] = ATA_PROBE_MAX_TRIES;
1477
1478 retry:
1479 down_xfermask = 0;
1480
Tejun Heo20444702006-03-13 01:57:01 +09001481 /* reset and determine device classes */
1482 for (i = 0; i < ATA_MAX_DEVICES; i++)
1483 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001484
Tejun Heo20444702006-03-13 01:57:01 +09001485 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001486 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001487 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001488 ata_port_printk(ap, KERN_ERR,
1489 "reset failed (errno=%d)\n", rc);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001490 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001491 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001492 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001493 ap->ops->phy_reset(ap);
1494
Tejun Heof8c2c422006-05-15 20:57:30 +09001495 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1496 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo28ca5c52006-03-01 16:09:36 +09001497 classes[i] = ap->device[i].class;
Tejun Heof8c2c422006-05-15 20:57:30 +09001498 ap->device[i].class = ATA_DEV_UNKNOWN;
1499 }
Tejun Heo20444702006-03-13 01:57:01 +09001500
Tejun Heo28ca5c52006-03-01 16:09:36 +09001501 ata_port_probe(ap);
1502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Tejun Heo20444702006-03-13 01:57:01 +09001504 for (i = 0; i < ATA_MAX_DEVICES; i++)
1505 if (classes[i] == ATA_DEV_UNKNOWN)
1506 classes[i] = ATA_DEV_NONE;
1507
Alan Coxb6079ca2006-05-22 16:52:06 +01001508 /* after the reset the device state is PIO 0 and the controller
1509 state is undefined. Record the mode */
1510
1511 for (i = 0; i < ATA_MAX_DEVICES; i++)
1512 ap->device[i].pio_mode = XFER_PIO_0;
1513
Tejun Heo28ca5c52006-03-01 16:09:36 +09001514 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001516 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001517
Tejun Heoec573752006-04-11 22:26:29 +09001518 if (tries[i])
1519 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001520
Tejun Heoe1211e32006-04-01 01:38:18 +09001521 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001522 continue;
1523
Tejun Heo3373efd2006-05-15 20:57:53 +09001524 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001525 if (rc)
1526 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001527
Tejun Heo3373efd2006-05-15 20:57:53 +09001528 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001529 if (rc)
1530 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
1532
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001533 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001534 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001535 if (rc) {
1536 down_xfermask = 1;
1537 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001540 for (i = 0; i < ATA_MAX_DEVICES; i++)
1541 if (ata_dev_enabled(&ap->device[i]))
1542 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001543
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001544 /* no device present, disable port */
1545 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001547 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001548
1549 fail:
1550 switch (rc) {
1551 case -EINVAL:
1552 case -ENODEV:
1553 tries[dev->devno] = 0;
1554 break;
1555 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001556 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001557 /* fall through */
1558 default:
1559 tries[dev->devno]--;
1560 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001561 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001562 tries[dev->devno] = 0;
1563 }
1564
Tejun Heoec573752006-04-11 22:26:29 +09001565 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001566 ata_down_xfermask_limit(dev, 1);
1567 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001568 }
1569
Tejun Heo14d2bac2006-04-02 17:54:46 +09001570 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
1572
1573/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001574 * ata_port_probe - Mark port as enabled
1575 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001577 * Modify @ap data structure such that the system
1578 * thinks that the entire port is enabled.
1579 *
1580 * LOCKING: host_set lock, or some other form of
1581 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 */
1583
1584void ata_port_probe(struct ata_port *ap)
1585{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001586 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
1589/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001590 * sata_print_link_status - Print SATA link status
1591 * @ap: SATA port to printk link status about
1592 *
1593 * This function prints link speed and status of a SATA link.
1594 *
1595 * LOCKING:
1596 * None.
1597 */
1598static void sata_print_link_status(struct ata_port *ap)
1599{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001600 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001601
Tejun Heo81952c52006-05-15 20:57:47 +09001602 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001603 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001604 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001605
Tejun Heo81952c52006-05-15 20:57:47 +09001606 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001607 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001608 ata_port_printk(ap, KERN_INFO,
1609 "SATA link up %s (SStatus %X SControl %X)\n",
1610 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001611 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001612 ata_port_printk(ap, KERN_INFO,
1613 "SATA link down (SStatus %X SControl %X)\n",
1614 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001615 }
1616}
1617
1618/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001619 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1620 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001622 * This function issues commands to standard SATA Sxxx
1623 * PHY registers, to wake up the phy (and device), and
1624 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 *
1626 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001627 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 *
1629 */
1630void __sata_phy_reset(struct ata_port *ap)
1631{
1632 u32 sstatus;
1633 unsigned long timeout = jiffies + (HZ * 5);
1634
1635 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001636 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001637 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001638 /* Couldn't find anything in SATA I/II specs, but
1639 * AHCI-1.1 10.4.2 says at least 1 ms. */
1640 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
Tejun Heo81952c52006-05-15 20:57:47 +09001642 /* phy wake/clear reset */
1643 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645 /* wait for phy to become ready, if necessary */
1646 do {
1647 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001648 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if ((sstatus & 0xf) != 1)
1650 break;
1651 } while (time_before(jiffies, timeout));
1652
Tejun Heo3be680b2005-12-19 22:35:02 +09001653 /* print link status */
1654 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001655
Tejun Heo3be680b2005-12-19 22:35:02 +09001656 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001657 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001659 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Tejun Heo198e0fe2006-04-02 18:51:52 +09001662 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return;
1664
1665 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1666 ata_port_disable(ap);
1667 return;
1668 }
1669
1670 ap->cbl = ATA_CBL_SATA;
1671}
1672
1673/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001674 * sata_phy_reset - Reset SATA bus.
1675 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001677 * This function resets the SATA bus, and then probes
1678 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 *
1680 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001681 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 *
1683 */
1684void sata_phy_reset(struct ata_port *ap)
1685{
1686 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001687 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 return;
1689 ata_bus_reset(ap);
1690}
1691
1692/**
Alan Coxebdfca62006-03-23 15:38:34 +00001693 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001694 * @adev: device
1695 *
1696 * Obtain the other device on the same cable, or if none is
1697 * present NULL is returned
1698 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001699
Tejun Heo3373efd2006-05-15 20:57:53 +09001700struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001701{
Tejun Heo3373efd2006-05-15 20:57:53 +09001702 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001703 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001704 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001705 return NULL;
1706 return pair;
1707}
1708
1709/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001710 * ata_port_disable - Disable port.
1711 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001713 * Modify @ap data structure such that the system
1714 * thinks that the entire port is disabled, and should
1715 * never attempt to probe or communicate with devices
1716 * on this port.
1717 *
1718 * LOCKING: host_set lock, or some other form of
1719 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 */
1721
1722void ata_port_disable(struct ata_port *ap)
1723{
1724 ap->device[0].class = ATA_DEV_NONE;
1725 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001726 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727}
1728
Tejun Heo1c3fae42006-04-02 20:53:28 +09001729/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001730 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001731 * @ap: Port to adjust SATA spd limit for
1732 *
1733 * Adjust SATA spd limit of @ap downward. Note that this
1734 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001735 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001736 *
1737 * LOCKING:
1738 * Inherited from caller.
1739 *
1740 * RETURNS:
1741 * 0 on success, negative errno on failure
1742 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001743int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001744{
Tejun Heo81952c52006-05-15 20:57:47 +09001745 u32 sstatus, spd, mask;
1746 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001747
Tejun Heo81952c52006-05-15 20:57:47 +09001748 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1749 if (rc)
1750 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001751
1752 mask = ap->sata_spd_limit;
1753 if (mask <= 1)
1754 return -EINVAL;
1755 highbit = fls(mask) - 1;
1756 mask &= ~(1 << highbit);
1757
Tejun Heo81952c52006-05-15 20:57:47 +09001758 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001759 if (spd <= 1)
1760 return -EINVAL;
1761 spd--;
1762 mask &= (1 << spd) - 1;
1763 if (!mask)
1764 return -EINVAL;
1765
1766 ap->sata_spd_limit = mask;
1767
Tejun Heof15a1da2006-05-15 20:57:56 +09001768 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1769 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001770
1771 return 0;
1772}
1773
Tejun Heo3c567b72006-05-15 20:57:23 +09001774static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001775{
1776 u32 spd, limit;
1777
1778 if (ap->sata_spd_limit == UINT_MAX)
1779 limit = 0;
1780 else
1781 limit = fls(ap->sata_spd_limit);
1782
1783 spd = (*scontrol >> 4) & 0xf;
1784 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1785
1786 return spd != limit;
1787}
1788
1789/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001790 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001791 * @ap: Port in question
1792 *
1793 * Test whether the spd limit in SControl matches
1794 * @ap->sata_spd_limit. This function is used to determine
1795 * whether hardreset is necessary to apply SATA spd
1796 * configuration.
1797 *
1798 * LOCKING:
1799 * Inherited from caller.
1800 *
1801 * RETURNS:
1802 * 1 if SATA spd configuration is needed, 0 otherwise.
1803 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001804int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001805{
1806 u32 scontrol;
1807
Tejun Heo81952c52006-05-15 20:57:47 +09001808 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001809 return 0;
1810
Tejun Heo3c567b72006-05-15 20:57:23 +09001811 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001812}
1813
1814/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001815 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001816 * @ap: Port to set SATA spd for
1817 *
1818 * Set SATA spd of @ap according to sata_spd_limit.
1819 *
1820 * LOCKING:
1821 * Inherited from caller.
1822 *
1823 * RETURNS:
1824 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001825 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001826 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001827int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001828{
1829 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001830 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001831
Tejun Heo81952c52006-05-15 20:57:47 +09001832 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1833 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001834
Tejun Heo3c567b72006-05-15 20:57:23 +09001835 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001836 return 0;
1837
Tejun Heo81952c52006-05-15 20:57:47 +09001838 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1839 return rc;
1840
Tejun Heo1c3fae42006-04-02 20:53:28 +09001841 return 1;
1842}
1843
Alan Cox452503f2005-10-21 19:01:32 -04001844/*
1845 * This mode timing computation functionality is ported over from
1846 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1847 */
1848/*
1849 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1850 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1851 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001852 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001853 */
1854
1855static const struct ata_timing ata_timing[] = {
1856
1857 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1858 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1859 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1860 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1861
1862 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1863 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1864 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1865
1866/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001867
Alan Cox452503f2005-10-21 19:01:32 -04001868 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1869 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1870 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001871
Alan Cox452503f2005-10-21 19:01:32 -04001872 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1873 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1874 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1875
1876/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1877 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1878 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1879
1880 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1881 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1882 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1883
1884/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1885
1886 { 0xFF }
1887};
1888
1889#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1890#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1891
1892static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1893{
1894 q->setup = EZ(t->setup * 1000, T);
1895 q->act8b = EZ(t->act8b * 1000, T);
1896 q->rec8b = EZ(t->rec8b * 1000, T);
1897 q->cyc8b = EZ(t->cyc8b * 1000, T);
1898 q->active = EZ(t->active * 1000, T);
1899 q->recover = EZ(t->recover * 1000, T);
1900 q->cycle = EZ(t->cycle * 1000, T);
1901 q->udma = EZ(t->udma * 1000, UT);
1902}
1903
1904void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1905 struct ata_timing *m, unsigned int what)
1906{
1907 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1908 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1909 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1910 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1911 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1912 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1913 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1914 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1915}
1916
1917static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1918{
1919 const struct ata_timing *t;
1920
1921 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001922 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001923 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001924 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001925}
1926
1927int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1928 struct ata_timing *t, int T, int UT)
1929{
1930 const struct ata_timing *s;
1931 struct ata_timing p;
1932
1933 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001934 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001935 */
Alan Cox452503f2005-10-21 19:01:32 -04001936
1937 if (!(s = ata_timing_find_mode(speed)))
1938 return -EINVAL;
1939
Albert Lee75b1f2f2005-11-16 17:06:18 +08001940 memcpy(t, s, sizeof(*s));
1941
Alan Cox452503f2005-10-21 19:01:32 -04001942 /*
1943 * If the drive is an EIDE drive, it can tell us it needs extended
1944 * PIO/MW_DMA cycle timing.
1945 */
1946
1947 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1948 memset(&p, 0, sizeof(p));
1949 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1950 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1951 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1952 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1953 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1954 }
1955 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1956 }
1957
1958 /*
1959 * Convert the timing to bus clock counts.
1960 */
1961
Albert Lee75b1f2f2005-11-16 17:06:18 +08001962 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001963
1964 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001965 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1966 * S.M.A.R.T * and some other commands. We have to ensure that the
1967 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001968 */
1969
1970 if (speed > XFER_PIO_4) {
1971 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1972 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1973 }
1974
1975 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001976 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001977 */
1978
1979 if (t->act8b + t->rec8b < t->cyc8b) {
1980 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1981 t->rec8b = t->cyc8b - t->act8b;
1982 }
1983
1984 if (t->active + t->recover < t->cycle) {
1985 t->active += (t->cycle - (t->active + t->recover)) / 2;
1986 t->recover = t->cycle - t->active;
1987 }
1988
1989 return 0;
1990}
1991
Tejun Heocf176e12006-04-02 17:54:46 +09001992/**
1993 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09001994 * @dev: Device to adjust xfer masks
1995 * @force_pio0: Force PIO0
1996 *
1997 * Adjust xfer masks of @dev downward. Note that this function
1998 * does not apply the change. Invoking ata_set_mode() afterwards
1999 * will apply the limit.
2000 *
2001 * LOCKING:
2002 * Inherited from caller.
2003 *
2004 * RETURNS:
2005 * 0 on success, negative errno on failure
2006 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002007int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09002008{
2009 unsigned long xfer_mask;
2010 int highbit;
2011
2012 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2013 dev->udma_mask);
2014
2015 if (!xfer_mask)
2016 goto fail;
2017 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2018 if (xfer_mask & ATA_MASK_UDMA)
2019 xfer_mask &= ~ATA_MASK_MWDMA;
2020
2021 highbit = fls(xfer_mask) - 1;
2022 xfer_mask &= ~(1 << highbit);
2023 if (force_pio0)
2024 xfer_mask &= 1 << ATA_SHIFT_PIO;
2025 if (!xfer_mask)
2026 goto fail;
2027
2028 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2029 &dev->udma_mask);
2030
Tejun Heof15a1da2006-05-15 20:57:56 +09002031 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2032 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002033
2034 return 0;
2035
2036 fail:
2037 return -EINVAL;
2038}
2039
Tejun Heo3373efd2006-05-15 20:57:53 +09002040static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
Tejun Heo83206a22006-03-24 15:25:31 +09002042 unsigned int err_mask;
2043 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Tejun Heoe8384602006-04-02 18:51:53 +09002045 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if (dev->xfer_shift == ATA_SHIFT_PIO)
2047 dev->flags |= ATA_DFLAG_PIO;
2048
Tejun Heo3373efd2006-05-15 20:57:53 +09002049 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002050 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002051 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2052 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002053 return -EIO;
2054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Tejun Heo3373efd2006-05-15 20:57:53 +09002056 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002057 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002058 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002059
Tejun Heo23e71c32006-03-06 04:31:57 +09002060 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2061 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Tejun Heof15a1da2006-05-15 20:57:56 +09002063 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2064 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002065 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066}
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/**
2069 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2070 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002071 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002073 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2074 * ata_set_mode() fails, pointer to the failing device is
2075 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002076 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002078 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002079 *
2080 * RETURNS:
2081 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002083int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Tejun Heoe8e06192006-04-01 01:38:18 +09002085 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002086 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Tejun Heo3adcebb2006-05-15 20:57:37 +09002088 /* has private set_mode? */
2089 if (ap->ops->set_mode) {
2090 /* FIXME: make ->set_mode handle no device case and
2091 * return error code and failing device on failure.
2092 */
2093 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2094 if (ata_dev_enabled(&ap->device[i])) {
2095 ap->ops->set_mode(ap);
2096 break;
2097 }
2098 }
2099 return 0;
2100 }
2101
Tejun Heoa6d5a512006-03-06 04:31:57 +09002102 /* step 1: calculate xfer_mask */
2103 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002104 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002105
Tejun Heoe8e06192006-04-01 01:38:18 +09002106 dev = &ap->device[i];
2107
Tejun Heoe1211e32006-04-01 01:38:18 +09002108 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002109 continue;
2110
Tejun Heo3373efd2006-05-15 20:57:53 +09002111 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002112
Tejun Heoacf356b2006-03-24 14:07:50 +09002113 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2114 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2115 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2116 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002117
Tejun Heo4f659772006-04-01 01:38:18 +09002118 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002119 if (dev->dma_mode)
2120 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002121 }
Tejun Heo4f659772006-04-01 01:38:18 +09002122 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002123 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002124
2125 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002126 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2127 dev = &ap->device[i];
2128 if (!ata_dev_enabled(dev))
2129 continue;
2130
2131 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002132 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002133 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002134 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002135 }
2136
2137 dev->xfer_mode = dev->pio_mode;
2138 dev->xfer_shift = ATA_SHIFT_PIO;
2139 if (ap->ops->set_piomode)
2140 ap->ops->set_piomode(ap, dev);
2141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Tejun Heoa6d5a512006-03-06 04:31:57 +09002143 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002144 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2145 dev = &ap->device[i];
2146
2147 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2148 continue;
2149
2150 dev->xfer_mode = dev->dma_mode;
2151 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2152 if (ap->ops->set_dmamode)
2153 ap->ops->set_dmamode(ap, dev);
2154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002157 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002158 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Tejun Heoe1211e32006-04-01 01:38:18 +09002160 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002161 continue;
2162
Tejun Heo3373efd2006-05-15 20:57:53 +09002163 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002164 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002165 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Tejun Heoe8e06192006-04-01 01:38:18 +09002168 /* Record simplex status. If we selected DMA then the other
2169 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002170 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002171 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2172 ap->host_set->simplex_claimed = 1;
2173
Tejun Heoe8e06192006-04-01 01:38:18 +09002174 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 if (ap->ops->post_set_mode)
2176 ap->ops->post_set_mode(ap);
2177
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002178 out:
2179 if (rc)
2180 *r_failed_dev = dev;
2181 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
2184/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002185 * ata_tf_to_host - issue ATA taskfile to host controller
2186 * @ap: port to which command is being issued
2187 * @tf: ATA taskfile register set
2188 *
2189 * Issues ATA taskfile register set to ATA host controller,
2190 * with proper synchronization with interrupt handler and
2191 * other threads.
2192 *
2193 * LOCKING:
2194 * spin_lock_irqsave(host_set lock)
2195 */
2196
2197static inline void ata_tf_to_host(struct ata_port *ap,
2198 const struct ata_taskfile *tf)
2199{
2200 ap->ops->tf_load(ap, tf);
2201 ap->ops->exec_command(ap, tf);
2202}
2203
2204/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 * ata_busy_sleep - sleep until BSY clears, or timeout
2206 * @ap: port containing status register to be polled
2207 * @tmout_pat: impatience timeout
2208 * @tmout: overall timeout
2209 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002210 * Sleep until ATA Status register bit BSY clears,
2211 * or a timeout occurs.
2212 *
2213 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 */
2215
Tejun Heo6f8b9952006-01-24 17:05:21 +09002216unsigned int ata_busy_sleep (struct ata_port *ap,
2217 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
2219 unsigned long timer_start, timeout;
2220 u8 status;
2221
2222 status = ata_busy_wait(ap, ATA_BUSY, 300);
2223 timer_start = jiffies;
2224 timeout = timer_start + tmout_pat;
2225 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2226 msleep(50);
2227 status = ata_busy_wait(ap, ATA_BUSY, 3);
2228 }
2229
2230 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002231 ata_port_printk(ap, KERN_WARNING,
2232 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 timeout = timer_start + tmout;
2235 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2236 msleep(50);
2237 status = ata_chk_status(ap);
2238 }
2239
2240 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002241 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2242 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return 1;
2244 }
2245
2246 return 0;
2247}
2248
2249static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2250{
2251 struct ata_ioports *ioaddr = &ap->ioaddr;
2252 unsigned int dev0 = devmask & (1 << 0);
2253 unsigned int dev1 = devmask & (1 << 1);
2254 unsigned long timeout;
2255
2256 /* if device 0 was found in ata_devchk, wait for its
2257 * BSY bit to clear
2258 */
2259 if (dev0)
2260 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2261
2262 /* if device 1 was found in ata_devchk, wait for
2263 * register access, then wait for BSY to clear
2264 */
2265 timeout = jiffies + ATA_TMOUT_BOOT;
2266 while (dev1) {
2267 u8 nsect, lbal;
2268
2269 ap->ops->dev_select(ap, 1);
2270 if (ap->flags & ATA_FLAG_MMIO) {
2271 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2272 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2273 } else {
2274 nsect = inb(ioaddr->nsect_addr);
2275 lbal = inb(ioaddr->lbal_addr);
2276 }
2277 if ((nsect == 1) && (lbal == 1))
2278 break;
2279 if (time_after(jiffies, timeout)) {
2280 dev1 = 0;
2281 break;
2282 }
2283 msleep(50); /* give drive a breather */
2284 }
2285 if (dev1)
2286 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2287
2288 /* is all this really necessary? */
2289 ap->ops->dev_select(ap, 0);
2290 if (dev1)
2291 ap->ops->dev_select(ap, 1);
2292 if (dev0)
2293 ap->ops->dev_select(ap, 0);
2294}
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296static unsigned int ata_bus_softreset(struct ata_port *ap,
2297 unsigned int devmask)
2298{
2299 struct ata_ioports *ioaddr = &ap->ioaddr;
2300
2301 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2302
2303 /* software reset. causes dev0 to be selected */
2304 if (ap->flags & ATA_FLAG_MMIO) {
2305 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2306 udelay(20); /* FIXME: flush */
2307 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2308 udelay(20); /* FIXME: flush */
2309 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2310 } else {
2311 outb(ap->ctl, ioaddr->ctl_addr);
2312 udelay(10);
2313 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2314 udelay(10);
2315 outb(ap->ctl, ioaddr->ctl_addr);
2316 }
2317
2318 /* spec mandates ">= 2ms" before checking status.
2319 * We wait 150ms, because that was the magic delay used for
2320 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2321 * between when the ATA command register is written, and then
2322 * status is checked. Because waiting for "a while" before
2323 * checking status is fine, post SRST, we perform this magic
2324 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002325 *
2326 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 */
2328 msleep(150);
2329
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002330 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002331 * the bus shows 0xFF because the odd clown forgets the D7
2332 * pulldown resistor.
2333 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002334 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002335 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002336 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002337 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 ata_bus_post_reset(ap, devmask);
2340
2341 return 0;
2342}
2343
2344/**
2345 * ata_bus_reset - reset host port and associated ATA channel
2346 * @ap: port to reset
2347 *
2348 * This is typically the first time we actually start issuing
2349 * commands to the ATA channel. We wait for BSY to clear, then
2350 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2351 * result. Determine what devices, if any, are on the channel
2352 * by looking at the device 0/1 error register. Look at the signature
2353 * stored in each device's taskfile registers, to determine if
2354 * the device is ATA or ATAPI.
2355 *
2356 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002357 * PCI/etc. bus probe sem.
2358 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 *
2360 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002361 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 */
2363
2364void ata_bus_reset(struct ata_port *ap)
2365{
2366 struct ata_ioports *ioaddr = &ap->ioaddr;
2367 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2368 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002369 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
2371 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2372
2373 /* determine if device 0/1 are present */
2374 if (ap->flags & ATA_FLAG_SATA_RESET)
2375 dev0 = 1;
2376 else {
2377 dev0 = ata_devchk(ap, 0);
2378 if (slave_possible)
2379 dev1 = ata_devchk(ap, 1);
2380 }
2381
2382 if (dev0)
2383 devmask |= (1 << 0);
2384 if (dev1)
2385 devmask |= (1 << 1);
2386
2387 /* select device 0 again */
2388 ap->ops->dev_select(ap, 0);
2389
2390 /* issue bus reset */
2391 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002392 if (ata_bus_softreset(ap, devmask))
2393 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 /*
2396 * determine by signature whether we have ATA or ATAPI devices
2397 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002398 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002400 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 /* re-enable interrupts */
2403 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2404 ata_irq_on(ap);
2405
2406 /* is double-select really necessary? */
2407 if (ap->device[1].class != ATA_DEV_NONE)
2408 ap->ops->dev_select(ap, 1);
2409 if (ap->device[0].class != ATA_DEV_NONE)
2410 ap->ops->dev_select(ap, 0);
2411
2412 /* if no devices were detected, disable this port */
2413 if ((ap->device[0].class == ATA_DEV_NONE) &&
2414 (ap->device[1].class == ATA_DEV_NONE))
2415 goto err_out;
2416
2417 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2418 /* set up device control for ATA_FLAG_SATA_RESET */
2419 if (ap->flags & ATA_FLAG_MMIO)
2420 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2421 else
2422 outb(ap->ctl, ioaddr->ctl_addr);
2423 }
2424
2425 DPRINTK("EXIT\n");
2426 return;
2427
2428err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002429 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 ap->ops->port_disable(ap);
2431
2432 DPRINTK("EXIT\n");
2433}
2434
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002435/**
2436 * sata_phy_debounce - debounce SATA phy status
2437 * @ap: ATA port to debounce SATA phy status for
2438 * @params: timing parameters { interval, duratinon, timeout } in msec
2439 *
2440 * Make sure SStatus of @ap reaches stable state, determined by
2441 * holding the same value where DET is not 1 for @duration polled
2442 * every @interval, before @timeout. Timeout constraints the
2443 * beginning of the stable state. Because, after hot unplugging,
2444 * DET gets stuck at 1 on some controllers, this functions waits
2445 * until timeout then returns 0 if DET is stable at 1.
2446 *
2447 * LOCKING:
2448 * Kernel thread context (may sleep)
2449 *
2450 * RETURNS:
2451 * 0 on success, -errno on failure.
2452 */
2453int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002454{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002455 unsigned long interval_msec = params[0];
2456 unsigned long duration = params[1] * HZ / 1000;
2457 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2458 unsigned long last_jiffies;
2459 u32 last, cur;
2460 int rc;
2461
2462 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2463 return rc;
2464 cur &= 0xf;
2465
2466 last = cur;
2467 last_jiffies = jiffies;
2468
2469 while (1) {
2470 msleep(interval_msec);
2471 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2472 return rc;
2473 cur &= 0xf;
2474
2475 /* DET stable? */
2476 if (cur == last) {
2477 if (cur == 1 && time_before(jiffies, timeout))
2478 continue;
2479 if (time_after(jiffies, last_jiffies + duration))
2480 return 0;
2481 continue;
2482 }
2483
2484 /* unstable, start over */
2485 last = cur;
2486 last_jiffies = jiffies;
2487
2488 /* check timeout */
2489 if (time_after(jiffies, timeout))
2490 return -EBUSY;
2491 }
2492}
2493
2494/**
2495 * sata_phy_resume - resume SATA phy
2496 * @ap: ATA port to resume SATA phy for
2497 * @params: timing parameters { interval, duratinon, timeout } in msec
2498 *
2499 * Resume SATA phy of @ap and debounce it.
2500 *
2501 * LOCKING:
2502 * Kernel thread context (may sleep)
2503 *
2504 * RETURNS:
2505 * 0 on success, -errno on failure.
2506 */
2507int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2508{
2509 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002510 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002511
Tejun Heo81952c52006-05-15 20:57:47 +09002512 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2513 return rc;
2514
Tejun Heo852ee162006-04-01 01:38:18 +09002515 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002516
2517 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2518 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002519
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002520 /* Some PHYs react badly if SStatus is pounded immediately
2521 * after resuming. Delay 200ms before debouncing.
2522 */
2523 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002524
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002525 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002526}
2527
Tejun Heoc2bd5802006-01-24 17:05:22 +09002528/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002529 * ata_std_probeinit - initialize probing
2530 * @ap: port to be probed
2531 *
2532 * @ap is about to be probed. Initialize it. This function is
2533 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002534 *
2535 * NOTE!!! Do not use this function as probeinit if a low level
2536 * driver implements only hardreset. Just pass NULL as probeinit
2537 * in that case. Using this function is probably okay but doing
2538 * so makes reset sequence different from the original
2539 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002540 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002541void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002542{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002543 static const unsigned long deb_timing[] = { 5, 100, 5000 };
2544
Tejun Heo81952c52006-05-15 20:57:47 +09002545 /* resume link */
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002546 sata_phy_resume(ap, deb_timing);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002547
Tejun Heo81952c52006-05-15 20:57:47 +09002548 /* wait for device */
2549 if (ata_port_online(ap))
2550 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Tejun Heo8a19ac82006-02-02 18:20:00 +09002551}
2552
2553/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002554 * ata_std_softreset - reset host port via ATA SRST
2555 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002556 * @classes: resulting classes of attached devices
2557 *
2558 * Reset host port using ATA SRST. This function is to be used
2559 * as standard callback for ata_drive_*_reset() functions.
2560 *
2561 * LOCKING:
2562 * Kernel thread context (may sleep)
2563 *
2564 * RETURNS:
2565 * 0 on success, -errno otherwise.
2566 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002567int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002568{
2569 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2570 unsigned int devmask = 0, err_mask;
2571 u8 err;
2572
2573 DPRINTK("ENTER\n");
2574
Tejun Heo81952c52006-05-15 20:57:47 +09002575 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002576 classes[0] = ATA_DEV_NONE;
2577 goto out;
2578 }
2579
Tejun Heoc2bd5802006-01-24 17:05:22 +09002580 /* determine if device 0/1 are present */
2581 if (ata_devchk(ap, 0))
2582 devmask |= (1 << 0);
2583 if (slave_possible && ata_devchk(ap, 1))
2584 devmask |= (1 << 1);
2585
Tejun Heoc2bd5802006-01-24 17:05:22 +09002586 /* select device 0 again */
2587 ap->ops->dev_select(ap, 0);
2588
2589 /* issue bus reset */
2590 DPRINTK("about to softreset, devmask=%x\n", devmask);
2591 err_mask = ata_bus_softreset(ap, devmask);
2592 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002593 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2594 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002595 return -EIO;
2596 }
2597
2598 /* determine by signature whether we have ATA or ATAPI devices */
2599 classes[0] = ata_dev_try_classify(ap, 0, &err);
2600 if (slave_possible && err != 0x81)
2601 classes[1] = ata_dev_try_classify(ap, 1, &err);
2602
Tejun Heo3a397462006-02-10 23:58:48 +09002603 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002604 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2605 return 0;
2606}
2607
2608/**
2609 * sata_std_hardreset - reset host port via SATA phy reset
2610 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002611 * @class: resulting class of attached device
2612 *
2613 * SATA phy-reset host port using DET bits of SControl register.
2614 * This function is to be used as standard callback for
2615 * ata_drive_*_reset().
2616 *
2617 * LOCKING:
2618 * Kernel thread context (may sleep)
2619 *
2620 * RETURNS:
2621 * 0 on success, -errno otherwise.
2622 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002623int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002624{
Tejun Heo852ee162006-04-01 01:38:18 +09002625 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002626 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002627
Tejun Heoc2bd5802006-01-24 17:05:22 +09002628 DPRINTK("ENTER\n");
2629
Tejun Heo3c567b72006-05-15 20:57:23 +09002630 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002631 /* SATA spec says nothing about how to reconfigure
2632 * spd. To be on the safe side, turn off phy during
2633 * reconfiguration. This works for at least ICH7 AHCI
2634 * and Sil3124.
2635 */
Tejun Heo81952c52006-05-15 20:57:47 +09002636 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2637 return rc;
2638
Tejun Heo1c3fae42006-04-02 20:53:28 +09002639 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002640
2641 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2642 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002643
Tejun Heo3c567b72006-05-15 20:57:23 +09002644 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002645 }
2646
2647 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002648 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2649 return rc;
2650
Tejun Heo852ee162006-04-01 01:38:18 +09002651 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002652
2653 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2654 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002655
Tejun Heo1c3fae42006-04-02 20:53:28 +09002656 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002657 * 10.4.2 says at least 1 ms.
2658 */
2659 msleep(1);
2660
Tejun Heo1c3fae42006-04-02 20:53:28 +09002661 /* bring phy back */
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002662 sata_phy_resume(ap, sata_deb_timing_eh);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002663
Tejun Heoc2bd5802006-01-24 17:05:22 +09002664 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002665 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002666 *class = ATA_DEV_NONE;
2667 DPRINTK("EXIT, link offline\n");
2668 return 0;
2669 }
2670
2671 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002672 ata_port_printk(ap, KERN_ERR,
2673 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002674 return -EIO;
2675 }
2676
Tejun Heo3a397462006-02-10 23:58:48 +09002677 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2678
Tejun Heoc2bd5802006-01-24 17:05:22 +09002679 *class = ata_dev_try_classify(ap, 0, NULL);
2680
2681 DPRINTK("EXIT, class=%u\n", *class);
2682 return 0;
2683}
2684
2685/**
2686 * ata_std_postreset - standard postreset callback
2687 * @ap: the target ata_port
2688 * @classes: classes of attached devices
2689 *
2690 * This function is invoked after a successful reset. Note that
2691 * the device might have been reset more than once using
2692 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002693 *
2694 * This function is to be used as standard callback for
2695 * ata_drive_*_reset().
2696 *
2697 * LOCKING:
2698 * Kernel thread context (may sleep)
2699 */
2700void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2701{
Tejun Heodc2b3512006-05-15 20:58:00 +09002702 u32 serror;
2703
Tejun Heoc2bd5802006-01-24 17:05:22 +09002704 DPRINTK("ENTER\n");
2705
Tejun Heoc2bd5802006-01-24 17:05:22 +09002706 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002707 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002708
Tejun Heodc2b3512006-05-15 20:58:00 +09002709 /* clear SError */
2710 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2711 sata_scr_write(ap, SCR_ERROR, serror);
2712
Tejun Heo3a397462006-02-10 23:58:48 +09002713 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002714 if (!ap->ops->error_handler) {
2715 /* FIXME: hack. create a hook instead */
2716 if (ap->ioaddr.ctl_addr)
2717 ata_irq_on(ap);
2718 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002719
2720 /* is double-select really necessary? */
2721 if (classes[0] != ATA_DEV_NONE)
2722 ap->ops->dev_select(ap, 1);
2723 if (classes[1] != ATA_DEV_NONE)
2724 ap->ops->dev_select(ap, 0);
2725
Tejun Heo3a397462006-02-10 23:58:48 +09002726 /* bail out if no device is present */
2727 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2728 DPRINTK("EXIT, no device\n");
2729 return;
2730 }
2731
2732 /* set up device control */
2733 if (ap->ioaddr.ctl_addr) {
2734 if (ap->flags & ATA_FLAG_MMIO)
2735 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2736 else
2737 outb(ap->ctl, ap->ioaddr.ctl_addr);
2738 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002739
2740 DPRINTK("EXIT\n");
2741}
2742
2743/**
2744 * ata_std_probe_reset - standard probe reset method
2745 * @ap: prot to perform probe-reset
2746 * @classes: resulting classes of attached devices
2747 *
2748 * The stock off-the-shelf ->probe_reset method.
2749 *
2750 * LOCKING:
2751 * Kernel thread context (may sleep)
2752 *
2753 * RETURNS:
2754 * 0 on success, -errno otherwise.
2755 */
2756int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2757{
2758 ata_reset_fn_t hardreset;
2759
2760 hardreset = NULL;
Tejun Heo81952c52006-05-15 20:57:47 +09002761 if (sata_scr_valid(ap))
Tejun Heoc2bd5802006-01-24 17:05:22 +09002762 hardreset = sata_std_hardreset;
2763
Tejun Heo8a19ac82006-02-02 18:20:00 +09002764 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002765 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002766 ata_std_postreset, classes);
2767}
2768
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002769int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
Tejun Heo96bd39e2006-05-15 20:57:38 +09002770 unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002771{
2772 int i, rc;
2773
2774 for (i = 0; i < ATA_MAX_DEVICES; i++)
2775 classes[i] = ATA_DEV_UNKNOWN;
2776
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002777 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002778 if (rc)
2779 return rc;
2780
2781 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2782 * is complete and convert all ATA_DEV_UNKNOWN to
2783 * ATA_DEV_NONE.
2784 */
2785 for (i = 0; i < ATA_MAX_DEVICES; i++)
2786 if (classes[i] != ATA_DEV_UNKNOWN)
2787 break;
2788
2789 if (i < ATA_MAX_DEVICES)
2790 for (i = 0; i < ATA_MAX_DEVICES; i++)
2791 if (classes[i] == ATA_DEV_UNKNOWN)
2792 classes[i] = ATA_DEV_NONE;
2793
Tejun Heo9974e7c2006-04-01 01:38:17 +09002794 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002795}
2796
2797/**
2798 * ata_drive_probe_reset - Perform probe reset with given methods
2799 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002800 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002801 * @softreset: softreset method (can be NULL)
2802 * @hardreset: hardreset method (can be NULL)
2803 * @postreset: postreset method (can be NULL)
2804 * @classes: resulting classes of attached devices
2805 *
2806 * Reset the specified port and classify attached devices using
2807 * given methods. This function prefers softreset but tries all
2808 * possible reset sequences to reset and classify devices. This
2809 * function is intended to be used for constructing ->probe_reset
2810 * callback by low level drivers.
2811 *
2812 * Reset methods should follow the following rules.
2813 *
2814 * - Return 0 on sucess, -errno on failure.
2815 * - If classification is supported, fill classes[] with
2816 * recognized class codes.
2817 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002818 *
2819 * LOCKING:
2820 * Kernel thread context (may sleep)
2821 *
2822 * RETURNS:
2823 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2824 * if classification fails, and any error code from reset
2825 * methods.
2826 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002827int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002828 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2829 ata_postreset_fn_t postreset, unsigned int *classes)
2830{
2831 int rc = -EINVAL;
2832
Tejun Heoe3180492006-05-15 20:58:09 +09002833 ata_eh_freeze_port(ap);
2834
Tejun Heo7944ea92006-02-02 18:20:00 +09002835 if (probeinit)
2836 probeinit(ap);
2837
Tejun Heo3c567b72006-05-15 20:57:23 +09002838 if (softreset && !sata_set_spd_needed(ap)) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002839 rc = ata_do_reset(ap, softreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002840 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2841 goto done;
Tejun Heof15a1da2006-05-15 20:57:56 +09002842 ata_port_printk(ap, KERN_INFO, "softreset failed, "
2843 "will try hardreset in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002844 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002845 }
2846
2847 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002848 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002849
Tejun Heo90dac022006-04-02 17:54:46 +09002850 while (1) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002851 rc = ata_do_reset(ap, hardreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002852 if (rc == 0) {
2853 if (classes[0] != ATA_DEV_UNKNOWN)
2854 goto done;
2855 break;
2856 }
2857
Tejun Heo3c567b72006-05-15 20:57:23 +09002858 if (sata_down_spd_limit(ap))
Tejun Heo90dac022006-04-02 17:54:46 +09002859 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002860
Tejun Heof15a1da2006-05-15 20:57:56 +09002861 ata_port_printk(ap, KERN_INFO, "hardreset failed, "
2862 "will retry in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002863 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002864 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002865
Tejun Heoedbabd82006-04-02 20:55:02 +09002866 if (softreset) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002867 ata_port_printk(ap, KERN_INFO,
2868 "hardreset succeeded without classification, "
2869 "will retry softreset in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002870 ssleep(5);
2871
Tejun Heo96bd39e2006-05-15 20:57:38 +09002872 rc = ata_do_reset(ap, softreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002873 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002874
Tejun Heo9974e7c2006-04-01 01:38:17 +09002875 done:
Tejun Heo96bd39e2006-05-15 20:57:38 +09002876 if (rc == 0) {
2877 if (postreset)
2878 postreset(ap, classes);
Tejun Heoe3180492006-05-15 20:58:09 +09002879
2880 ata_eh_thaw_port(ap);
2881
Tejun Heo96bd39e2006-05-15 20:57:38 +09002882 if (classes[0] == ATA_DEV_UNKNOWN)
2883 rc = -ENODEV;
2884 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002885 return rc;
2886}
2887
Tejun Heo623a3122006-03-05 17:55:58 +09002888/**
2889 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002890 * @dev: device to compare against
2891 * @new_class: class of the new device
2892 * @new_id: IDENTIFY page of the new device
2893 *
2894 * Compare @new_class and @new_id against @dev and determine
2895 * whether @dev is the device indicated by @new_class and
2896 * @new_id.
2897 *
2898 * LOCKING:
2899 * None.
2900 *
2901 * RETURNS:
2902 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2903 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002904static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2905 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002906{
2907 const u16 *old_id = dev->id;
2908 unsigned char model[2][41], serial[2][21];
2909 u64 new_n_sectors;
2910
2911 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002912 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2913 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002914 return 0;
2915 }
2916
2917 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2918 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2919 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2920 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2921 new_n_sectors = ata_id_n_sectors(new_id);
2922
2923 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002924 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2925 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002926 return 0;
2927 }
2928
2929 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002930 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2931 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002932 return 0;
2933 }
2934
2935 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002936 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2937 "%llu != %llu\n",
2938 (unsigned long long)dev->n_sectors,
2939 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002940 return 0;
2941 }
2942
2943 return 1;
2944}
2945
2946/**
2947 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002948 * @dev: device to revalidate
2949 * @post_reset: is this revalidation after reset?
2950 *
2951 * Re-read IDENTIFY page and make sure @dev is still attached to
2952 * the port.
2953 *
2954 * LOCKING:
2955 * Kernel thread context (may sleep)
2956 *
2957 * RETURNS:
2958 * 0 on success, negative errno otherwise
2959 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002960int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002961{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002962 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002963 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002964 int rc;
2965
Tejun Heo5eb45c02006-04-02 18:51:52 +09002966 if (!ata_dev_enabled(dev)) {
2967 rc = -ENODEV;
2968 goto fail;
2969 }
Tejun Heo623a3122006-03-05 17:55:58 +09002970
Tejun Heofe635c72006-05-15 20:57:35 +09002971 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002972 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002973 if (rc)
2974 goto fail;
2975
2976 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002977 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002978 rc = -ENODEV;
2979 goto fail;
2980 }
2981
Tejun Heofe635c72006-05-15 20:57:35 +09002982 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002983
2984 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002985 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002986 if (rc == 0)
2987 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002988
2989 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002990 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002991 return rc;
2992}
2993
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002994static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002995 "WDC AC11000H", NULL,
2996 "WDC AC22100H", NULL,
2997 "WDC AC32500H", NULL,
2998 "WDC AC33100H", NULL,
2999 "WDC AC31600H", NULL,
3000 "WDC AC32100H", "24.09P07",
3001 "WDC AC23200L", "21.10N21",
3002 "Compaq CRD-8241B", NULL,
3003 "CRD-8400B", NULL,
3004 "CRD-8480B", NULL,
3005 "CRD-8482B", NULL,
3006 "CRD-84", NULL,
3007 "SanDisk SDP3B", NULL,
3008 "SanDisk SDP3B-64", NULL,
3009 "SANYO CD-ROM CRD", NULL,
3010 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003011 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00003012 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003013 "Toshiba CD-ROM XM-6202B", NULL,
3014 "TOSHIBA CD-ROM XM-1702BC", NULL,
3015 "CD-532E-A", NULL,
3016 "E-IDE CD-ROM CR-840", NULL,
3017 "CD-ROM Drive/F5A", NULL,
3018 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00003019 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003020 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00003021 "SanDisk SDP3B-64", NULL,
3022 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
3023 "_NEC DV5800A", NULL,
3024 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003026
Alan Coxf4b15fe2006-03-22 15:54:04 +00003027static int ata_strim(char *s, size_t len)
3028{
3029 len = strnlen(s, len);
3030
3031 /* ATAPI specifies that empty space is blank-filled; remove blanks */
3032 while ((len > 0) && (s[len - 1] == ' ')) {
3033 len--;
3034 s[len] = 0;
3035 }
3036 return len;
3037}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Jeff Garzik057ace52005-10-22 14:27:05 -04003039static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040{
Alan Coxf4b15fe2006-03-22 15:54:04 +00003041 unsigned char model_num[40];
3042 unsigned char model_rev[16];
3043 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 int i;
3045
Alan Coxf4b15fe2006-03-22 15:54:04 +00003046 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
3047 sizeof(model_num));
3048 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
3049 sizeof(model_rev));
3050 nlen = ata_strim(model_num, sizeof(model_num));
3051 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Alan Coxf4b15fe2006-03-22 15:54:04 +00003053 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
3054 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
3055 if (ata_dma_blacklist[i+1] == NULL)
3056 return 1;
3057 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
3058 return 1;
3059 }
3060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 return 0;
3062}
3063
Tejun Heoa6d5a512006-03-06 04:31:57 +09003064/**
3065 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003066 * @dev: Device to compute xfermask for
3067 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003068 * Compute supported xfermask of @dev and store it in
3069 * dev->*_mask. This function is responsible for applying all
3070 * known limits including host controller limits, device
3071 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003072 *
Tejun Heo600511e2006-03-25 11:14:07 +09003073 * FIXME: The current implementation limits all transfer modes to
3074 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09003075 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09003076 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09003077 * LOCKING:
3078 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003079 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003080static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
Tejun Heo3373efd2006-05-15 20:57:53 +09003082 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003083 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003084 unsigned long xfer_mask;
3085 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
Tejun Heo565083e2006-04-02 17:54:47 +09003087 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3088 ap->mwdma_mask, ap->udma_mask);
3089
3090 /* Apply cable rule here. Don't apply it early because when
3091 * we handle hot plug the cable type can itself change.
3092 */
3093 if (ap->cbl == ATA_CBL_PATA40)
3094 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Alan Cox5444a6f2006-03-27 18:58:20 +01003096 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09003097 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3098 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09003099
3100 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003101 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09003102
3103 if (ata_dev_disabled(d)) {
3104 /* to avoid violating device selection timing */
3105 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3106 UINT_MAX, UINT_MAX);
3107 continue;
3108 }
3109
3110 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3111 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003112 xfer_mask &= ata_id_xfermask(d->id);
3113 if (ata_dma_blacklisted(d))
3114 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 }
3116
Tejun Heoa6d5a512006-03-06 04:31:57 +09003117 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003118 ata_dev_printk(dev, KERN_WARNING,
3119 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003120
Alan Cox5444a6f2006-03-27 18:58:20 +01003121 if (hs->flags & ATA_HOST_SIMPLEX) {
3122 if (hs->simplex_claimed)
3123 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3124 }
Tejun Heo565083e2006-04-02 17:54:47 +09003125
Alan Cox5444a6f2006-03-27 18:58:20 +01003126 if (ap->ops->mode_filter)
3127 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3128
Tejun Heo565083e2006-04-02 17:54:47 +09003129 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3130 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131}
3132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 * @dev: Device to which command will be sent
3136 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003137 * Issue SET FEATURES - XFER MODE command to device @dev
3138 * on port @ap.
3139 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003141 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003142 *
3143 * RETURNS:
3144 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 */
3146
Tejun Heo3373efd2006-05-15 20:57:53 +09003147static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148{
Tejun Heoa0123702005-12-13 14:49:31 +09003149 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003150 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
3152 /* set up set-features taskfile */
3153 DPRINTK("set features - xfer mode\n");
3154
Tejun Heo3373efd2006-05-15 20:57:53 +09003155 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003156 tf.command = ATA_CMD_SET_FEATURES;
3157 tf.feature = SETFEATURES_XFER;
3158 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3159 tf.protocol = ATA_PROT_NODATA;
3160 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Tejun Heo3373efd2006-05-15 20:57:53 +09003162 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Tejun Heo83206a22006-03-24 15:25:31 +09003164 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3165 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166}
3167
3168/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003169 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ec2005-05-12 15:29:42 -04003170 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003171 * @heads: Number of heads (taskfile parameter)
3172 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003173 *
3174 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003175 * Kernel thread context (may sleep)
3176 *
3177 * RETURNS:
3178 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003179 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003180static unsigned int ata_dev_init_params(struct ata_device *dev,
3181 u16 heads, u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003182{
Tejun Heoa0123702005-12-13 14:49:31 +09003183 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003184 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003185
3186 /* Number of sectors per track 1-255. Number of heads 1-16 */
3187 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003188 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003189
3190 /* set up init dev params taskfile */
3191 DPRINTK("init dev params \n");
3192
Tejun Heo3373efd2006-05-15 20:57:53 +09003193 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003194 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3195 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3196 tf.protocol = ATA_PROT_NODATA;
3197 tf.nsect = sectors;
3198 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003199
Tejun Heo3373efd2006-05-15 20:57:53 +09003200 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003201
Tejun Heo6aff8f12006-02-15 18:24:09 +09003202 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3203 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003204}
3205
3206/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003207 * ata_sg_clean - Unmap DMA memory associated with command
3208 * @qc: Command containing DMA memory to be released
3209 *
3210 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 *
3212 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003213 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 */
3215
3216static void ata_sg_clean(struct ata_queued_cmd *qc)
3217{
3218 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003219 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003221 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Tejun Heoa4631472006-02-11 19:11:13 +09003223 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3224 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
3226 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003227 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003229 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003231 /* if we padded the buffer out to 32-bit bound, and data
3232 * xfer direction is from-device, we must copy from the
3233 * pad buffer back into the supplied buffer
3234 */
3235 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3236 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3237
3238 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003239 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003240 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003241 /* restore last sg */
3242 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3243 if (pad_buf) {
3244 struct scatterlist *psg = &qc->pad_sgent;
3245 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3246 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003247 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003248 }
3249 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003250 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003251 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003252 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3253 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003254 /* restore sg */
3255 sg->length += qc->pad_len;
3256 if (pad_buf)
3257 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3258 pad_buf, qc->pad_len);
3259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
3261 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003262 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263}
3264
3265/**
3266 * ata_fill_sg - Fill PCI IDE PRD table
3267 * @qc: Metadata associated with taskfile to be transferred
3268 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003269 * Fill PCI IDE PRD (scatter-gather) table with segments
3270 * associated with the current disk command.
3271 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003273 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 *
3275 */
3276static void ata_fill_sg(struct ata_queued_cmd *qc)
3277{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003279 struct scatterlist *sg;
3280 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Tejun Heoa4631472006-02-11 19:11:13 +09003282 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003283 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
3285 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003286 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 u32 addr, offset;
3288 u32 sg_len, len;
3289
3290 /* determine if physical DMA addr spans 64K boundary.
3291 * Note h/w doesn't support 64-bit, so we unconditionally
3292 * truncate dma_addr_t to u32.
3293 */
3294 addr = (u32) sg_dma_address(sg);
3295 sg_len = sg_dma_len(sg);
3296
3297 while (sg_len) {
3298 offset = addr & 0xffff;
3299 len = sg_len;
3300 if ((offset + sg_len) > 0x10000)
3301 len = 0x10000 - offset;
3302
3303 ap->prd[idx].addr = cpu_to_le32(addr);
3304 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3305 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3306
3307 idx++;
3308 sg_len -= len;
3309 addr += len;
3310 }
3311 }
3312
3313 if (idx)
3314 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3315}
3316/**
3317 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3318 * @qc: Metadata associated with taskfile to check
3319 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003320 * Allow low-level driver to filter ATA PACKET commands, returning
3321 * a status indicating whether or not it is OK to use DMA for the
3322 * supplied PACKET command.
3323 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003325 * spin_lock_irqsave(host_set lock)
3326 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 * RETURNS: 0 when ATAPI DMA can be used
3328 * nonzero otherwise
3329 */
3330int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3331{
3332 struct ata_port *ap = qc->ap;
3333 int rc = 0; /* Assume ATAPI DMA is OK by default */
3334
3335 if (ap->ops->check_atapi_dma)
3336 rc = ap->ops->check_atapi_dma(qc);
3337
Albert Leec2bbc552006-03-25 17:56:55 +08003338 /* We don't support polling DMA.
3339 * Use PIO if the LLDD handles only interrupts in
3340 * the HSM_ST_LAST state and the ATAPI device
3341 * generates CDB interrupts.
3342 */
3343 if ((ap->flags & ATA_FLAG_PIO_POLLING) &&
3344 (qc->dev->flags & ATA_DFLAG_CDB_INTR))
3345 rc = 1;
3346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 return rc;
3348}
3349/**
3350 * ata_qc_prep - Prepare taskfile for submission
3351 * @qc: Metadata associated with taskfile to be prepared
3352 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003353 * Prepare ATA taskfile for submission.
3354 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 * LOCKING:
3356 * spin_lock_irqsave(host_set lock)
3357 */
3358void ata_qc_prep(struct ata_queued_cmd *qc)
3359{
3360 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3361 return;
3362
3363 ata_fill_sg(qc);
3364}
3365
Brian Kinge46834c2006-03-17 17:04:03 -06003366void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3367
Jeff Garzik0cba6322005-05-30 19:49:12 -04003368/**
3369 * ata_sg_init_one - Associate command with memory buffer
3370 * @qc: Command to be associated
3371 * @buf: Memory buffer
3372 * @buflen: Length of memory buffer, in bytes.
3373 *
3374 * Initialize the data-related elements of queued_cmd @qc
3375 * to point to a single memory buffer, @buf of byte length @buflen.
3376 *
3377 * LOCKING:
3378 * spin_lock_irqsave(host_set lock)
3379 */
3380
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3382{
3383 struct scatterlist *sg;
3384
3385 qc->flags |= ATA_QCFLAG_SINGLE;
3386
3387 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003388 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003390 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 qc->buf_virt = buf;
3392
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003393 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003394 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395}
3396
Jeff Garzik0cba6322005-05-30 19:49:12 -04003397/**
3398 * ata_sg_init - Associate command with scatter-gather table.
3399 * @qc: Command to be associated
3400 * @sg: Scatter-gather table.
3401 * @n_elem: Number of elements in s/g table.
3402 *
3403 * Initialize the data-related elements of queued_cmd @qc
3404 * to point to a scatter-gather table @sg, containing @n_elem
3405 * elements.
3406 *
3407 * LOCKING:
3408 * spin_lock_irqsave(host_set lock)
3409 */
3410
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3412 unsigned int n_elem)
3413{
3414 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003415 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003417 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418}
3419
3420/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003421 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3422 * @qc: Command with memory buffer to be mapped.
3423 *
3424 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 *
3426 * LOCKING:
3427 * spin_lock_irqsave(host_set lock)
3428 *
3429 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003430 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 */
3432
3433static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3434{
3435 struct ata_port *ap = qc->ap;
3436 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003437 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003439 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003441 /* we must lengthen transfers to end on a 32-bit boundary */
3442 qc->pad_len = sg->length & 3;
3443 if (qc->pad_len) {
3444 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3445 struct scatterlist *psg = &qc->pad_sgent;
3446
Tejun Heoa4631472006-02-11 19:11:13 +09003447 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003448
3449 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3450
3451 if (qc->tf.flags & ATA_TFLAG_WRITE)
3452 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3453 qc->pad_len);
3454
3455 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3456 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3457 /* trim sg */
3458 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003459 if (sg->length == 0)
3460 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003461
3462 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3463 sg->length, qc->pad_len);
3464 }
3465
Tejun Heo2e242fa2006-02-20 23:48:38 +09003466 if (trim_sg) {
3467 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003468 goto skip_map;
3469 }
3470
Brian King2f1f6102006-03-23 17:30:15 -06003471 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003472 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003473 if (dma_mapping_error(dma_address)) {
3474 /* restore sg */
3475 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
3479 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003480 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Tejun Heo2e242fa2006-02-20 23:48:38 +09003482skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3484 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3485
3486 return 0;
3487}
3488
3489/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003490 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3491 * @qc: Command with scatter-gather table to be mapped.
3492 *
3493 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 *
3495 * LOCKING:
3496 * spin_lock_irqsave(host_set lock)
3497 *
3498 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003499 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 *
3501 */
3502
3503static int ata_sg_setup(struct ata_queued_cmd *qc)
3504{
3505 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003506 struct scatterlist *sg = qc->__sg;
3507 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003508 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
3510 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003511 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003513 /* we must lengthen transfers to end on a 32-bit boundary */
3514 qc->pad_len = lsg->length & 3;
3515 if (qc->pad_len) {
3516 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3517 struct scatterlist *psg = &qc->pad_sgent;
3518 unsigned int offset;
3519
Tejun Heoa4631472006-02-11 19:11:13 +09003520 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003521
3522 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3523
3524 /*
3525 * psg->page/offset are used to copy to-be-written
3526 * data in this function or read data in ata_sg_clean.
3527 */
3528 offset = lsg->offset + lsg->length - qc->pad_len;
3529 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3530 psg->offset = offset_in_page(offset);
3531
3532 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3533 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3534 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003535 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003536 }
3537
3538 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3539 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3540 /* trim last sg */
3541 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003542 if (lsg->length == 0)
3543 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003544
3545 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3546 qc->n_elem - 1, lsg->length, qc->pad_len);
3547 }
3548
Jeff Garzike1410f22005-11-14 14:06:26 -05003549 pre_n_elem = qc->n_elem;
3550 if (trim_sg && pre_n_elem)
3551 pre_n_elem--;
3552
3553 if (!pre_n_elem) {
3554 n_elem = 0;
3555 goto skip_map;
3556 }
3557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003559 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003560 if (n_elem < 1) {
3561 /* restore last sg */
3562 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
3566 DPRINTK("%d sg elements mapped\n", n_elem);
3567
Jeff Garzike1410f22005-11-14 14:06:26 -05003568skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 qc->n_elem = n_elem;
3570
3571 return 0;
3572}
3573
3574/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003575 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003576 * @buf: Buffer to swap
3577 * @buf_words: Number of 16-bit words in buffer.
3578 *
3579 * Swap halves of 16-bit words if needed to convert from
3580 * little-endian byte order to native cpu byte order, or
3581 * vice-versa.
3582 *
3583 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003584 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003585 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586void swap_buf_le16(u16 *buf, unsigned int buf_words)
3587{
3588#ifdef __BIG_ENDIAN
3589 unsigned int i;
3590
3591 for (i = 0; i < buf_words; i++)
3592 buf[i] = le16_to_cpu(buf[i]);
3593#endif /* __BIG_ENDIAN */
3594}
3595
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003596/**
3597 * ata_mmio_data_xfer - Transfer data by MMIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003598 * @dev: device for this I/O
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003599 * @buf: data buffer
3600 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003601 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003602 *
3603 * Transfer data from/to the device data register by MMIO.
3604 *
3605 * LOCKING:
3606 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003607 */
3608
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003609void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
3610 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003612 struct ata_port *ap = adev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 unsigned int i;
3614 unsigned int words = buflen >> 1;
3615 u16 *buf16 = (u16 *) buf;
3616 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3617
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003618 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 if (write_data) {
3620 for (i = 0; i < words; i++)
3621 writew(le16_to_cpu(buf16[i]), mmio);
3622 } else {
3623 for (i = 0; i < words; i++)
3624 buf16[i] = cpu_to_le16(readw(mmio));
3625 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003626
3627 /* Transfer trailing 1 byte, if any. */
3628 if (unlikely(buflen & 0x01)) {
3629 u16 align_buf[1] = { 0 };
3630 unsigned char *trailing_buf = buf + buflen - 1;
3631
3632 if (write_data) {
3633 memcpy(align_buf, trailing_buf, 1);
3634 writew(le16_to_cpu(align_buf[0]), mmio);
3635 } else {
3636 align_buf[0] = cpu_to_le16(readw(mmio));
3637 memcpy(trailing_buf, align_buf, 1);
3638 }
3639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640}
3641
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003642/**
3643 * ata_pio_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003644 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003645 * @buf: data buffer
3646 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003647 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003648 *
3649 * Transfer data from/to the device data register by PIO.
3650 *
3651 * LOCKING:
3652 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003653 */
3654
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003655void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf,
3656 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003658 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003659 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003661 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003663 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003665 insw(ap->ioaddr.data_addr, buf, words);
3666
3667 /* Transfer trailing 1 byte, if any. */
3668 if (unlikely(buflen & 0x01)) {
3669 u16 align_buf[1] = { 0 };
3670 unsigned char *trailing_buf = buf + buflen - 1;
3671
3672 if (write_data) {
3673 memcpy(align_buf, trailing_buf, 1);
3674 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3675 } else {
3676 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3677 memcpy(trailing_buf, align_buf, 1);
3678 }
3679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680}
3681
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003682/**
Alan Cox75e99582006-05-24 14:14:41 +01003683 * ata_pio_data_xfer_noirq - Transfer data by PIO
3684 * @adev: device to target
3685 * @buf: data buffer
3686 * @buflen: buffer length
3687 * @write_data: read/write
3688 *
3689 * Transfer data from/to the device data register by PIO. Do the
3690 * transfer with interrupts disabled.
3691 *
3692 * LOCKING:
3693 * Inherited from caller.
3694 */
3695
3696void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3697 unsigned int buflen, int write_data)
3698{
3699 unsigned long flags;
3700 local_irq_save(flags);
3701 ata_pio_data_xfer(adev, buf, buflen, write_data);
3702 local_irq_restore(flags);
3703}
3704
3705
3706/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003707 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3708 * @qc: Command on going
3709 *
3710 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3711 *
3712 * LOCKING:
3713 * Inherited from caller.
3714 */
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716static void ata_pio_sector(struct ata_queued_cmd *qc)
3717{
3718 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003719 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 struct ata_port *ap = qc->ap;
3721 struct page *page;
3722 unsigned int offset;
3723 unsigned char *buf;
3724
3725 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003726 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
3728 page = sg[qc->cursg].page;
3729 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3730
3731 /* get the current page and offset */
3732 page = nth_page(page, (offset >> PAGE_SHIFT));
3733 offset %= PAGE_SIZE;
3734
Albert Lee7282aa42005-10-09 09:46:07 -04003735 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3736
Albert Lee91b8b312005-10-09 09:48:44 -04003737 if (PageHighMem(page)) {
3738 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003739
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003740 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003741 local_irq_save(flags);
3742 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003743
Albert Lee91b8b312005-10-09 09:48:44 -04003744 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003745 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003746
3747 kunmap_atomic(buf, KM_IRQ0);
3748 local_irq_restore(flags);
3749 } else {
3750 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003751 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
3754 qc->cursect++;
3755 qc->cursg_ofs++;
3756
Albert Lee32529e02005-05-26 03:49:42 -04003757 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 qc->cursg++;
3759 qc->cursg_ofs = 0;
3760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003763/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003764 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3765 * @qc: Command on going
3766 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003767 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003768 * ATA device for the DRQ request.
3769 *
3770 * LOCKING:
3771 * Inherited from caller.
3772 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Albert Lee07f6f7d2005-11-01 19:33:20 +08003774static void ata_pio_sectors(struct ata_queued_cmd *qc)
3775{
3776 if (is_multi_taskfile(&qc->tf)) {
3777 /* READ/WRITE MULTIPLE */
3778 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Jeff Garzik587005d2006-02-11 18:17:32 -05003780 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003781
3782 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3783 while (nsect--)
3784 ata_pio_sector(qc);
3785 } else
3786 ata_pio_sector(qc);
3787}
3788
3789/**
Albert Leec71c1852005-10-04 06:03:45 -04003790 * atapi_send_cdb - Write CDB bytes to hardware
3791 * @ap: Port to which ATAPI device is attached.
3792 * @qc: Taskfile currently active
3793 *
3794 * When device has indicated its readiness to accept
3795 * a CDB, this function is called. Send the CDB.
3796 *
3797 * LOCKING:
3798 * caller.
3799 */
3800
3801static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3802{
3803 /* send SCSI cdb */
3804 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003805 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003806
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003807 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003808 ata_altstatus(ap); /* flush */
3809
3810 switch (qc->tf.protocol) {
3811 case ATA_PROT_ATAPI:
3812 ap->hsm_task_state = HSM_ST;
3813 break;
3814 case ATA_PROT_ATAPI_NODATA:
3815 ap->hsm_task_state = HSM_ST_LAST;
3816 break;
3817 case ATA_PROT_ATAPI_DMA:
3818 ap->hsm_task_state = HSM_ST_LAST;
3819 /* initiate bmdma */
3820 ap->ops->bmdma_start(qc);
3821 break;
3822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823}
3824
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003825/**
3826 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3827 * @qc: Command on going
3828 * @bytes: number of bytes
3829 *
3830 * Transfer Transfer data from/to the ATAPI device.
3831 *
3832 * LOCKING:
3833 * Inherited from caller.
3834 *
3835 */
3836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3838{
3839 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003840 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 struct ata_port *ap = qc->ap;
3842 struct page *page;
3843 unsigned char *buf;
3844 unsigned int offset, count;
3845
Albert Lee563a6e12005-08-12 14:17:50 +08003846 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003847 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003850 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003851 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003852 * The end of qc->sg is reached and the device expects
3853 * more data to transfer. In order not to overrun qc->sg
3854 * and fulfill length specified in the byte count register,
3855 * - for read case, discard trailing data from the device
3856 * - for write case, padding zero data to the device
3857 */
3858 u16 pad_buf[1] = { 0 };
3859 unsigned int words = bytes >> 1;
3860 unsigned int i;
3861
3862 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003863 ata_dev_printk(qc->dev, KERN_WARNING,
3864 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003865
3866 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003867 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08003868
Albert Lee14be71f2005-09-27 17:36:35 +08003869 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003870 return;
3871 }
3872
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003873 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 page = sg->page;
3876 offset = sg->offset + qc->cursg_ofs;
3877
3878 /* get the current page and offset */
3879 page = nth_page(page, (offset >> PAGE_SHIFT));
3880 offset %= PAGE_SIZE;
3881
Albert Lee6952df02005-06-06 15:56:03 +08003882 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003883 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
3885 /* don't cross page boundaries */
3886 count = min(count, (unsigned int)PAGE_SIZE - offset);
3887
Albert Lee7282aa42005-10-09 09:46:07 -04003888 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3889
Albert Lee91b8b312005-10-09 09:48:44 -04003890 if (PageHighMem(page)) {
3891 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003892
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003893 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003894 local_irq_save(flags);
3895 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003896
Albert Lee91b8b312005-10-09 09:48:44 -04003897 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003898 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003899
3900 kunmap_atomic(buf, KM_IRQ0);
3901 local_irq_restore(flags);
3902 } else {
3903 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003904 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
3907 bytes -= count;
3908 qc->curbytes += count;
3909 qc->cursg_ofs += count;
3910
Albert Lee32529e02005-05-26 03:49:42 -04003911 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 qc->cursg++;
3913 qc->cursg_ofs = 0;
3914 }
3915
Albert Lee563a6e12005-08-12 14:17:50 +08003916 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003920/**
3921 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3922 * @qc: Command on going
3923 *
3924 * Transfer Transfer data from/to the ATAPI device.
3925 *
3926 * LOCKING:
3927 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003928 */
3929
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3931{
3932 struct ata_port *ap = qc->ap;
3933 struct ata_device *dev = qc->dev;
3934 unsigned int ireason, bc_lo, bc_hi, bytes;
3935 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3936
Albert Leeeec4c3f2006-05-18 17:51:10 +08003937 /* Abuse qc->result_tf for temp storage of intermediate TF
3938 * here to save some kernel stack usage.
3939 * For normal completion, qc->result_tf is not relevant. For
3940 * error, qc->result_tf is later overwritten by ata_qc_complete().
3941 * So, the correctness of qc->result_tf is not affected.
3942 */
3943 ap->ops->tf_read(ap, &qc->result_tf);
3944 ireason = qc->result_tf.nsect;
3945 bc_lo = qc->result_tf.lbam;
3946 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 bytes = (bc_hi << 8) | bc_lo;
3948
3949 /* shall be cleared to zero, indicating xfer of data */
3950 if (ireason & (1 << 0))
3951 goto err_out;
3952
3953 /* make sure transfer direction matches expected */
3954 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3955 if (do_write != i_write)
3956 goto err_out;
3957
Albert Lee312f7da2005-09-27 17:38:03 +08003958 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3959
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 __atapi_pio_bytes(qc, bytes);
3961
3962 return;
3963
3964err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003965 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003966 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003967 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968}
3969
3970/**
Albert Leec234fb02006-03-25 17:58:38 +08003971 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3972 * @ap: the target ata_port
3973 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 *
Albert Leec234fb02006-03-25 17:58:38 +08003975 * RETURNS:
3976 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 */
Albert Leec234fb02006-03-25 17:58:38 +08003978
3979static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980{
Albert Leec234fb02006-03-25 17:58:38 +08003981 if (qc->tf.flags & ATA_TFLAG_POLLING)
3982 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
Albert Leec234fb02006-03-25 17:58:38 +08003984 if (ap->hsm_task_state == HSM_ST_FIRST) {
3985 if (qc->tf.protocol == ATA_PROT_PIO &&
3986 (qc->tf.flags & ATA_TFLAG_WRITE))
3987 return 1;
3988
3989 if (is_atapi_taskfile(&qc->tf) &&
3990 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3991 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 }
3993
Albert Leec234fb02006-03-25 17:58:38 +08003994 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995}
3996
Albert Leec234fb02006-03-25 17:58:38 +08003997/**
Tejun Heoc17ea202006-05-15 20:59:29 +09003998 * ata_hsm_qc_complete - finish a qc running on standard HSM
3999 * @qc: Command to complete
4000 * @in_wq: 1 if called from workqueue, 0 otherwise
4001 *
4002 * Finish @qc which is running on standard HSM.
4003 *
4004 * LOCKING:
4005 * If @in_wq is zero, spin_lock_irqsave(host_set lock).
4006 * Otherwise, none on entry and grabs host lock.
4007 */
4008static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4009{
4010 struct ata_port *ap = qc->ap;
4011 unsigned long flags;
4012
4013 if (ap->ops->error_handler) {
4014 if (in_wq) {
4015 spin_lock_irqsave(&ap->host_set->lock, flags);
4016
4017 /* EH might have kicked in while host_set lock
4018 * is released.
4019 */
4020 qc = ata_qc_from_tag(ap, qc->tag);
4021 if (qc) {
4022 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
4023 ata_irq_on(ap);
4024 ata_qc_complete(qc);
4025 } else
4026 ata_port_freeze(ap);
4027 }
4028
4029 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4030 } else {
4031 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4032 ata_qc_complete(qc);
4033 else
4034 ata_port_freeze(ap);
4035 }
4036 } else {
4037 if (in_wq) {
4038 spin_lock_irqsave(&ap->host_set->lock, flags);
4039 ata_irq_on(ap);
4040 ata_qc_complete(qc);
4041 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4042 } else
4043 ata_qc_complete(qc);
4044 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04004045
4046 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09004047}
4048
4049/**
Albert Leebb5cb292006-03-25 17:48:02 +08004050 * ata_hsm_move - move the HSM to the next state.
4051 * @ap: the target ata_port
4052 * @qc: qc on going
4053 * @status: current device status
4054 * @in_wq: 1 if called from workqueue, 0 otherwise
4055 *
4056 * RETURNS:
4057 * 1 when poll next status needed, 0 otherwise.
4058 */
4059
4060static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4061 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062{
Albert Leebb5cb292006-03-25 17:48:02 +08004063 unsigned long flags = 0;
4064 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
Albert Lee6912ccd2006-03-25 17:45:49 +08004066 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004067
Albert Leebb5cb292006-03-25 17:48:02 +08004068 /* Make sure ata_qc_issue_prot() does not throw things
4069 * like DMA polling into the workqueue. Notice that
4070 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004071 */
Albert Leec234fb02006-03-25 17:58:38 +08004072 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004073
Albert Leee2cec772006-03-25 17:43:49 +08004074fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004075 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4076 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Albert Leee2cec772006-03-25 17:43:49 +08004078 switch (ap->hsm_task_state) {
4079 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004080 /* Send first data block or PACKET CDB */
4081
4082 /* If polling, we will stay in the work queue after
4083 * sending the data. Otherwise, interrupt handler
4084 * takes over after sending the data.
4085 */
4086 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4087
Albert Leee2cec772006-03-25 17:43:49 +08004088 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004089 if (unlikely((status & ATA_DRQ) == 0)) {
4090 /* handle BSY=0, DRQ=0 as error */
4091 if (likely(status & (ATA_ERR | ATA_DF)))
4092 /* device stops HSM for abort/error */
4093 qc->err_mask |= AC_ERR_DEV;
4094 else
4095 /* HSM violation. Let EH handle this */
4096 qc->err_mask |= AC_ERR_HSM;
4097
Albert Leee2cec772006-03-25 17:43:49 +08004098 ap->hsm_task_state = HSM_ST_ERR;
4099 goto fsm_start;
4100 }
4101
Albert Lee71601952006-03-25 18:11:12 +08004102 /* Device should not ask for data transfer (DRQ=1)
4103 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004104 * We ignore DRQ here and stop the HSM by
4105 * changing hsm_task_state to HSM_ST_ERR and
4106 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004107 */
4108 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4109 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4110 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004111 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004112 ap->hsm_task_state = HSM_ST_ERR;
4113 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004114 }
4115
Albert Leebb5cb292006-03-25 17:48:02 +08004116 /* Send the CDB (atapi) or the first data block (ata pio out).
4117 * During the state transition, interrupt handler shouldn't
4118 * be invoked before the data transfer is complete and
4119 * hsm_task_state is changed. Hence, the following locking.
4120 */
4121 if (in_wq)
4122 spin_lock_irqsave(&ap->host_set->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004123
Albert Leebb5cb292006-03-25 17:48:02 +08004124 if (qc->tf.protocol == ATA_PROT_PIO) {
4125 /* PIO data out protocol.
4126 * send first data block.
4127 */
4128
4129 /* ata_pio_sectors() might change the state
4130 * to HSM_ST_LAST. so, the state is changed here
4131 * before ata_pio_sectors().
4132 */
4133 ap->hsm_task_state = HSM_ST;
4134 ata_pio_sectors(qc);
4135 ata_altstatus(ap); /* flush */
4136 } else
4137 /* send CDB */
4138 atapi_send_cdb(ap, qc);
4139
4140 if (in_wq)
4141 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4142
4143 /* if polling, ata_pio_task() handles the rest.
4144 * otherwise, interrupt handler takes over from here.
4145 */
Albert Leee2cec772006-03-25 17:43:49 +08004146 break;
4147
4148 case HSM_ST:
4149 /* complete command or read/write the data register */
4150 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4151 /* ATAPI PIO protocol */
4152 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004153 /* No more data to transfer or device error.
4154 * Device error will be tagged in HSM_ST_LAST.
4155 */
Albert Leee2cec772006-03-25 17:43:49 +08004156 ap->hsm_task_state = HSM_ST_LAST;
4157 goto fsm_start;
4158 }
4159
Albert Lee71601952006-03-25 18:11:12 +08004160 /* Device should not ask for data transfer (DRQ=1)
4161 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004162 * We ignore DRQ here and stop the HSM by
4163 * changing hsm_task_state to HSM_ST_ERR and
4164 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004165 */
4166 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4167 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4168 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004169 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004170 ap->hsm_task_state = HSM_ST_ERR;
4171 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004172 }
4173
Albert Leee2cec772006-03-25 17:43:49 +08004174 atapi_pio_bytes(qc);
4175
4176 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4177 /* bad ireason reported by device */
4178 goto fsm_start;
4179
4180 } else {
4181 /* ATA PIO protocol */
4182 if (unlikely((status & ATA_DRQ) == 0)) {
4183 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004184 if (likely(status & (ATA_ERR | ATA_DF)))
4185 /* device stops HSM for abort/error */
4186 qc->err_mask |= AC_ERR_DEV;
4187 else
4188 /* HSM violation. Let EH handle this */
4189 qc->err_mask |= AC_ERR_HSM;
4190
Albert Leee2cec772006-03-25 17:43:49 +08004191 ap->hsm_task_state = HSM_ST_ERR;
4192 goto fsm_start;
4193 }
4194
Albert Leeeee6c322006-04-01 17:38:43 +08004195 /* For PIO reads, some devices may ask for
4196 * data transfer (DRQ=1) alone with ERR=1.
4197 * We respect DRQ here and transfer one
4198 * block of junk data before changing the
4199 * hsm_task_state to HSM_ST_ERR.
4200 *
4201 * For PIO writes, ERR=1 DRQ=1 doesn't make
4202 * sense since the data block has been
4203 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004204 */
4205 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004206 /* data might be corrputed */
4207 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004208
4209 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4210 ata_pio_sectors(qc);
4211 ata_altstatus(ap);
4212 status = ata_wait_idle(ap);
4213 }
4214
Albert Lee3655d1d2006-05-19 11:43:04 +08004215 if (status & (ATA_BUSY | ATA_DRQ))
4216 qc->err_mask |= AC_ERR_HSM;
4217
Albert Leeeee6c322006-04-01 17:38:43 +08004218 /* ata_pio_sectors() might change the
4219 * state to HSM_ST_LAST. so, the state
4220 * is changed after ata_pio_sectors().
4221 */
4222 ap->hsm_task_state = HSM_ST_ERR;
4223 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004224 }
4225
Albert Leee2cec772006-03-25 17:43:49 +08004226 ata_pio_sectors(qc);
4227
4228 if (ap->hsm_task_state == HSM_ST_LAST &&
4229 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4230 /* all data read */
4231 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004232 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004233 goto fsm_start;
4234 }
4235 }
4236
4237 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004238 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004239 break;
4240
4241 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004242 if (unlikely(!ata_ok(status))) {
4243 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004244 ap->hsm_task_state = HSM_ST_ERR;
4245 goto fsm_start;
4246 }
4247
4248 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004249 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4250 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004251
Albert Lee6912ccd2006-03-25 17:45:49 +08004252 WARN_ON(qc->err_mask);
4253
Albert Leee2cec772006-03-25 17:43:49 +08004254 ap->hsm_task_state = HSM_ST_IDLE;
4255
4256 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004257 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004258
4259 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004260 break;
4261
4262 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004263 /* make sure qc->err_mask is available to
4264 * know what's wrong and recover
4265 */
4266 WARN_ON(qc->err_mask == 0);
4267
4268 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004269
Albert Lee999bb6f2006-03-25 18:07:48 +08004270 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004271 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004272
4273 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004274 break;
4275 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004276 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004277 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004278 }
4279
Albert Leebb5cb292006-03-25 17:48:02 +08004280 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281}
4282
4283static void ata_pio_task(void *_data)
4284{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004285 struct ata_queued_cmd *qc = _data;
4286 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004287 u8 status;
4288 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004289
4290fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004291 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
Albert Leea1af3732006-03-25 17:50:15 +08004293 /*
4294 * This is purely heuristic. This is a fast path.
4295 * Sometimes when we enter, BSY will be cleared in
4296 * a chk-status or two. If not, the drive is probably seeking
4297 * or something. Snooze for a couple msecs, then
4298 * chk-status again. If still busy, queue delayed work.
4299 */
4300 status = ata_busy_wait(ap, ATA_BUSY, 5);
4301 if (status & ATA_BUSY) {
4302 msleep(2);
4303 status = ata_busy_wait(ap, ATA_BUSY, 10);
4304 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004305 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004306 return;
4307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 }
4309
Albert Leea1af3732006-03-25 17:50:15 +08004310 /* move the HSM */
4311 poll_next = ata_hsm_move(ap, qc, status, 1);
4312
4313 /* another command or interrupt handler
4314 * may be running at this point.
4315 */
4316 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004317 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318}
4319
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 * ata_qc_new - Request an available ATA command, for queueing
4322 * @ap: Port associated with device @dev
4323 * @dev: Device from whom we request an available command structure
4324 *
4325 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004326 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 */
4328
4329static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4330{
4331 struct ata_queued_cmd *qc = NULL;
4332 unsigned int i;
4333
Tejun Heoe3180492006-05-15 20:58:09 +09004334 /* no command while frozen */
4335 if (unlikely(ap->flags & ATA_FLAG_FROZEN))
4336 return NULL;
4337
Tejun Heo2ab7db12006-05-15 20:58:02 +09004338 /* the last tag is reserved for internal command. */
4339 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004340 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004341 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 break;
4343 }
4344
4345 if (qc)
4346 qc->tag = i;
4347
4348 return qc;
4349}
4350
4351/**
4352 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 * @dev: Device from whom we request an available command structure
4354 *
4355 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004356 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 */
4358
Tejun Heo3373efd2006-05-15 20:57:53 +09004359struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360{
Tejun Heo3373efd2006-05-15 20:57:53 +09004361 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 struct ata_queued_cmd *qc;
4363
4364 qc = ata_qc_new(ap);
4365 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 qc->scsicmd = NULL;
4367 qc->ap = ap;
4368 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004370 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 }
4372
4373 return qc;
4374}
4375
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376/**
4377 * ata_qc_free - free unused ata_queued_cmd
4378 * @qc: Command to complete
4379 *
4380 * Designed to free unused ata_queued_cmd object
4381 * in case something prevents using it.
4382 *
4383 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004384 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 */
4386void ata_qc_free(struct ata_queued_cmd *qc)
4387{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004388 struct ata_port *ap = qc->ap;
4389 unsigned int tag;
4390
Tejun Heoa4631472006-02-11 19:11:13 +09004391 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
Tejun Heo4ba946e2006-01-23 13:09:36 +09004393 qc->flags = 0;
4394 tag = qc->tag;
4395 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004396 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004397 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399}
4400
Tejun Heo76014422006-02-11 15:13:49 +09004401void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004403 struct ata_port *ap = qc->ap;
4404
Tejun Heoa4631472006-02-11 19:11:13 +09004405 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4406 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
4408 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4409 ata_sg_clean(qc);
4410
Tejun Heo7401abf2006-05-15 20:57:32 +09004411 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004412 if (qc->tf.protocol == ATA_PROT_NCQ)
4413 ap->sactive &= ~(1 << qc->tag);
4414 else
4415 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004416
Albert Lee3f3791d2005-08-16 14:25:38 +08004417 /* atapi: mark qc as inactive to prevent the interrupt handler
4418 * from completing the command twice later, before the error handler
4419 * is called. (when rc != 0 and atapi request sense is needed)
4420 */
4421 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004422 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004423
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004425 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426}
4427
Tejun Heof686bcb2006-05-15 20:58:05 +09004428/**
4429 * ata_qc_complete - Complete an active ATA command
4430 * @qc: Command to complete
4431 * @err_mask: ATA Status register contents
4432 *
4433 * Indicate to the mid and upper layers that an ATA
4434 * command has completed, with either an ok or not-ok status.
4435 *
4436 * LOCKING:
4437 * spin_lock_irqsave(host_set lock)
4438 */
4439void ata_qc_complete(struct ata_queued_cmd *qc)
4440{
4441 struct ata_port *ap = qc->ap;
4442
4443 /* XXX: New EH and old EH use different mechanisms to
4444 * synchronize EH with regular execution path.
4445 *
4446 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4447 * Normal execution path is responsible for not accessing a
4448 * failed qc. libata core enforces the rule by returning NULL
4449 * from ata_qc_from_tag() for failed qcs.
4450 *
4451 * Old EH depends on ata_qc_complete() nullifying completion
4452 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4453 * not synchronize with interrupt handler. Only PIO task is
4454 * taken care of.
4455 */
4456 if (ap->ops->error_handler) {
4457 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4458
4459 if (unlikely(qc->err_mask))
4460 qc->flags |= ATA_QCFLAG_FAILED;
4461
4462 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4463 if (!ata_tag_internal(qc->tag)) {
4464 /* always fill result TF for failed qc */
4465 ap->ops->tf_read(ap, &qc->result_tf);
4466 ata_qc_schedule_eh(qc);
4467 return;
4468 }
4469 }
4470
4471 /* read result TF if requested */
4472 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4473 ap->ops->tf_read(ap, &qc->result_tf);
4474
4475 __ata_qc_complete(qc);
4476 } else {
4477 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4478 return;
4479
4480 /* read result TF if failed or requested */
4481 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4482 ap->ops->tf_read(ap, &qc->result_tf);
4483
4484 __ata_qc_complete(qc);
4485 }
4486}
4487
Tejun Heodedaf2b2006-05-15 21:03:43 +09004488/**
4489 * ata_qc_complete_multiple - Complete multiple qcs successfully
4490 * @ap: port in question
4491 * @qc_active: new qc_active mask
4492 * @finish_qc: LLDD callback invoked before completing a qc
4493 *
4494 * Complete in-flight commands. This functions is meant to be
4495 * called from low-level driver's interrupt routine to complete
4496 * requests normally. ap->qc_active and @qc_active is compared
4497 * and commands are completed accordingly.
4498 *
4499 * LOCKING:
4500 * spin_lock_irqsave(host_set lock)
4501 *
4502 * RETURNS:
4503 * Number of completed commands on success, -errno otherwise.
4504 */
4505int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4506 void (*finish_qc)(struct ata_queued_cmd *))
4507{
4508 int nr_done = 0;
4509 u32 done_mask;
4510 int i;
4511
4512 done_mask = ap->qc_active ^ qc_active;
4513
4514 if (unlikely(done_mask & qc_active)) {
4515 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4516 "(%08x->%08x)\n", ap->qc_active, qc_active);
4517 return -EINVAL;
4518 }
4519
4520 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4521 struct ata_queued_cmd *qc;
4522
4523 if (!(done_mask & (1 << i)))
4524 continue;
4525
4526 if ((qc = ata_qc_from_tag(ap, i))) {
4527 if (finish_qc)
4528 finish_qc(qc);
4529 ata_qc_complete(qc);
4530 nr_done++;
4531 }
4532 }
4533
4534 return nr_done;
4535}
4536
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4538{
4539 struct ata_port *ap = qc->ap;
4540
4541 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004542 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 case ATA_PROT_DMA:
4544 case ATA_PROT_ATAPI_DMA:
4545 return 1;
4546
4547 case ATA_PROT_ATAPI:
4548 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549 if (ap->flags & ATA_FLAG_PIO_DMA)
4550 return 1;
4551
4552 /* fall through */
4553
4554 default:
4555 return 0;
4556 }
4557
4558 /* never reached */
4559}
4560
4561/**
4562 * ata_qc_issue - issue taskfile to device
4563 * @qc: command to issue to device
4564 *
4565 * Prepare an ATA command to submission to device.
4566 * This includes mapping the data into a DMA-able
4567 * area, filling in the S/G table, and finally
4568 * writing the taskfile to hardware, starting the command.
4569 *
4570 * LOCKING:
4571 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004573void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574{
4575 struct ata_port *ap = qc->ap;
4576
Tejun Heodedaf2b2006-05-15 21:03:43 +09004577 /* Make sure only one non-NCQ command is outstanding. The
4578 * check is skipped for old EH because it reuses active qc to
4579 * request ATAPI sense.
4580 */
4581 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4582
4583 if (qc->tf.protocol == ATA_PROT_NCQ) {
4584 WARN_ON(ap->sactive & (1 << qc->tag));
4585 ap->sactive |= 1 << qc->tag;
4586 } else {
4587 WARN_ON(ap->sactive);
4588 ap->active_tag = qc->tag;
4589 }
4590
Tejun Heoe4a70e72006-03-31 20:36:47 +09004591 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004592 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004593
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 if (ata_should_dma_map(qc)) {
4595 if (qc->flags & ATA_QCFLAG_SG) {
4596 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004597 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4599 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004600 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 }
4602 } else {
4603 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4604 }
4605
4606 ap->ops->qc_prep(qc);
4607
Tejun Heo8e0e6942006-03-31 20:41:11 +09004608 qc->err_mask |= ap->ops->qc_issue(qc);
4609 if (unlikely(qc->err_mask))
4610 goto err;
4611 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Tejun Heo8e436af2006-01-23 13:09:36 +09004613sg_err:
4614 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004615 qc->err_mask |= AC_ERR_SYSTEM;
4616err:
4617 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618}
4619
4620/**
4621 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4622 * @qc: command to issue to device
4623 *
4624 * Using various libata functions and hooks, this function
4625 * starts an ATA command. ATA commands are grouped into
4626 * classes called "protocols", and issuing each type of protocol
4627 * is slightly different.
4628 *
Edward Falk0baab862005-06-02 18:17:13 -04004629 * May be used as the qc_issue() entry in ata_port_operations.
4630 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 * LOCKING:
4632 * spin_lock_irqsave(host_set lock)
4633 *
4634 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004635 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 */
4637
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004638unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639{
4640 struct ata_port *ap = qc->ap;
4641
Albert Leee50362e2005-09-27 17:39:50 +08004642 /* Use polling pio if the LLD doesn't handle
4643 * interrupt driven pio and atapi CDB interrupt.
4644 */
4645 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4646 switch (qc->tf.protocol) {
4647 case ATA_PROT_PIO:
4648 case ATA_PROT_ATAPI:
4649 case ATA_PROT_ATAPI_NODATA:
4650 qc->tf.flags |= ATA_TFLAG_POLLING;
4651 break;
4652 case ATA_PROT_ATAPI_DMA:
4653 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Leec2bbc552006-03-25 17:56:55 +08004654 /* see ata_check_atapi_dma() */
Albert Leee50362e2005-09-27 17:39:50 +08004655 BUG();
4656 break;
4657 default:
4658 break;
4659 }
4660 }
4661
Albert Lee312f7da2005-09-27 17:38:03 +08004662 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 ata_dev_select(ap, qc->dev->devno, 1, 0);
4664
Albert Lee312f7da2005-09-27 17:38:03 +08004665 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 switch (qc->tf.protocol) {
4667 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004668 if (qc->tf.flags & ATA_TFLAG_POLLING)
4669 ata_qc_set_polling(qc);
4670
Jeff Garzike5338252005-10-30 21:37:17 -05004671 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004672 ap->hsm_task_state = HSM_ST_LAST;
4673
4674 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004675 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004676
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 break;
4678
4679 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004680 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004681
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4683 ap->ops->bmdma_setup(qc); /* set up bmdma */
4684 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004685 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 break;
4687
Albert Lee312f7da2005-09-27 17:38:03 +08004688 case ATA_PROT_PIO:
4689 if (qc->tf.flags & ATA_TFLAG_POLLING)
4690 ata_qc_set_polling(qc);
4691
Jeff Garzike5338252005-10-30 21:37:17 -05004692 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004693
Albert Lee54f00382005-09-30 19:14:19 +08004694 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4695 /* PIO data out protocol */
4696 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004697 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004698
4699 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004700 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004701 */
Albert Lee312f7da2005-09-27 17:38:03 +08004702 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004703 /* PIO data in protocol */
4704 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004705
Albert Lee54f00382005-09-30 19:14:19 +08004706 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004707 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004708
Albert Lee54f00382005-09-30 19:14:19 +08004709 /* if polling, ata_pio_task() handles the rest.
4710 * otherwise, interrupt handler takes over from here.
4711 */
Albert Lee312f7da2005-09-27 17:38:03 +08004712 }
4713
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 break;
4715
4716 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004718 if (qc->tf.flags & ATA_TFLAG_POLLING)
4719 ata_qc_set_polling(qc);
4720
Jeff Garzike5338252005-10-30 21:37:17 -05004721 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004722
Albert Lee312f7da2005-09-27 17:38:03 +08004723 ap->hsm_task_state = HSM_ST_FIRST;
4724
4725 /* send cdb by polling if no cdb interrupt */
4726 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4727 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004728 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 break;
4730
4731 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004732 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004733
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4735 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004736 ap->hsm_task_state = HSM_ST_FIRST;
4737
4738 /* send cdb by polling if no cdb interrupt */
4739 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004740 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 break;
4742
4743 default:
4744 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004745 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 }
4747
4748 return 0;
4749}
4750
4751/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 * ata_host_intr - Handle host interrupt for given (port, task)
4753 * @ap: Port on which interrupt arrived (possibly...)
4754 * @qc: Taskfile currently active in engine
4755 *
4756 * Handle host interrupt for given queued command. Currently,
4757 * only DMA interrupts are handled. All other commands are
4758 * handled via polling with interrupts disabled (nIEN bit).
4759 *
4760 * LOCKING:
4761 * spin_lock_irqsave(host_set lock)
4762 *
4763 * RETURNS:
4764 * One if interrupt was handled, zero if not (shared irq).
4765 */
4766
4767inline unsigned int ata_host_intr (struct ata_port *ap,
4768 struct ata_queued_cmd *qc)
4769{
Albert Lee312f7da2005-09-27 17:38:03 +08004770 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771
Albert Lee312f7da2005-09-27 17:38:03 +08004772 VPRINTK("ata%u: protocol %d task_state %d\n",
4773 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774
Albert Lee312f7da2005-09-27 17:38:03 +08004775 /* Check whether we are expecting interrupt in this state */
4776 switch (ap->hsm_task_state) {
4777 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004778 /* Some pre-ATAPI-4 devices assert INTRQ
4779 * at this state when ready to receive CDB.
4780 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781
Albert Lee312f7da2005-09-27 17:38:03 +08004782 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4783 * The flag was turned on only for atapi devices.
4784 * No need to check is_atapi_taskfile(&qc->tf) again.
4785 */
4786 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004789 case HSM_ST_LAST:
4790 if (qc->tf.protocol == ATA_PROT_DMA ||
4791 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4792 /* check status of DMA engine */
4793 host_stat = ap->ops->bmdma_status(ap);
4794 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
Albert Lee312f7da2005-09-27 17:38:03 +08004796 /* if it's not our irq... */
4797 if (!(host_stat & ATA_DMA_INTR))
4798 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799
Albert Lee312f7da2005-09-27 17:38:03 +08004800 /* before we do anything else, clear DMA-Start bit */
4801 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004802
4803 if (unlikely(host_stat & ATA_DMA_ERR)) {
4804 /* error when transfering data to/from memory */
4805 qc->err_mask |= AC_ERR_HOST_BUS;
4806 ap->hsm_task_state = HSM_ST_ERR;
4807 }
Albert Lee312f7da2005-09-27 17:38:03 +08004808 }
4809 break;
4810 case HSM_ST:
4811 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 default:
4813 goto idle_irq;
4814 }
4815
Albert Lee312f7da2005-09-27 17:38:03 +08004816 /* check altstatus */
4817 status = ata_altstatus(ap);
4818 if (status & ATA_BUSY)
4819 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820
Albert Lee312f7da2005-09-27 17:38:03 +08004821 /* check main status, clearing INTRQ */
4822 status = ata_chk_status(ap);
4823 if (unlikely(status & ATA_BUSY))
4824 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825
Albert Lee312f7da2005-09-27 17:38:03 +08004826 /* ack bmdma irq events */
4827 ap->ops->irq_clear(ap);
4828
Albert Leebb5cb292006-03-25 17:48:02 +08004829 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 return 1; /* irq handled */
4831
4832idle_irq:
4833 ap->stats.idle_irq++;
4834
4835#ifdef ATA_IRQ_TRAP
4836 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004838 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004839 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 }
4841#endif
4842 return 0; /* irq not handled */
4843}
4844
4845/**
4846 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004847 * @irq: irq line (unused)
4848 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 * @regs: unused
4850 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004851 * Default interrupt handler for PCI IDE devices. Calls
4852 * ata_host_intr() for each port that is not disabled.
4853 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004855 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 *
4857 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004858 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 */
4860
4861irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4862{
4863 struct ata_host_set *host_set = dev_instance;
4864 unsigned int i;
4865 unsigned int handled = 0;
4866 unsigned long flags;
4867
4868 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4869 spin_lock_irqsave(&host_set->lock, flags);
4870
4871 for (i = 0; i < host_set->n_ports; i++) {
4872 struct ata_port *ap;
4873
4874 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004875 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004876 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877 struct ata_queued_cmd *qc;
4878
4879 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004880 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004881 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 handled |= ata_host_intr(ap, qc);
4883 }
4884 }
4885
4886 spin_unlock_irqrestore(&host_set->lock, flags);
4887
4888 return IRQ_RETVAL(handled);
4889}
4890
Tejun Heo34bf2172006-05-15 20:57:46 +09004891/**
4892 * sata_scr_valid - test whether SCRs are accessible
4893 * @ap: ATA port to test SCR accessibility for
4894 *
4895 * Test whether SCRs are accessible for @ap.
4896 *
4897 * LOCKING:
4898 * None.
4899 *
4900 * RETURNS:
4901 * 1 if SCRs are accessible, 0 otherwise.
4902 */
4903int sata_scr_valid(struct ata_port *ap)
4904{
4905 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4906}
4907
4908/**
4909 * sata_scr_read - read SCR register of the specified port
4910 * @ap: ATA port to read SCR for
4911 * @reg: SCR to read
4912 * @val: Place to store read value
4913 *
4914 * Read SCR register @reg of @ap into *@val. This function is
4915 * guaranteed to succeed if the cable type of the port is SATA
4916 * and the port implements ->scr_read.
4917 *
4918 * LOCKING:
4919 * None.
4920 *
4921 * RETURNS:
4922 * 0 on success, negative errno on failure.
4923 */
4924int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4925{
4926 if (sata_scr_valid(ap)) {
4927 *val = ap->ops->scr_read(ap, reg);
4928 return 0;
4929 }
4930 return -EOPNOTSUPP;
4931}
4932
4933/**
4934 * sata_scr_write - write SCR register of the specified port
4935 * @ap: ATA port to write SCR for
4936 * @reg: SCR to write
4937 * @val: value to write
4938 *
4939 * Write @val to SCR register @reg of @ap. This function is
4940 * guaranteed to succeed if the cable type of the port is SATA
4941 * and the port implements ->scr_read.
4942 *
4943 * LOCKING:
4944 * None.
4945 *
4946 * RETURNS:
4947 * 0 on success, negative errno on failure.
4948 */
4949int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4950{
4951 if (sata_scr_valid(ap)) {
4952 ap->ops->scr_write(ap, reg, val);
4953 return 0;
4954 }
4955 return -EOPNOTSUPP;
4956}
4957
4958/**
4959 * sata_scr_write_flush - write SCR register of the specified port and flush
4960 * @ap: ATA port to write SCR for
4961 * @reg: SCR to write
4962 * @val: value to write
4963 *
4964 * This function is identical to sata_scr_write() except that this
4965 * function performs flush after writing to the register.
4966 *
4967 * LOCKING:
4968 * None.
4969 *
4970 * RETURNS:
4971 * 0 on success, negative errno on failure.
4972 */
4973int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4974{
4975 if (sata_scr_valid(ap)) {
4976 ap->ops->scr_write(ap, reg, val);
4977 ap->ops->scr_read(ap, reg);
4978 return 0;
4979 }
4980 return -EOPNOTSUPP;
4981}
4982
4983/**
4984 * ata_port_online - test whether the given port is online
4985 * @ap: ATA port to test
4986 *
4987 * Test whether @ap is online. Note that this function returns 0
4988 * if online status of @ap cannot be obtained, so
4989 * ata_port_online(ap) != !ata_port_offline(ap).
4990 *
4991 * LOCKING:
4992 * None.
4993 *
4994 * RETURNS:
4995 * 1 if the port online status is available and online.
4996 */
4997int ata_port_online(struct ata_port *ap)
4998{
4999 u32 sstatus;
5000
5001 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
5002 return 1;
5003 return 0;
5004}
5005
5006/**
5007 * ata_port_offline - test whether the given port is offline
5008 * @ap: ATA port to test
5009 *
5010 * Test whether @ap is offline. Note that this function returns
5011 * 0 if offline status of @ap cannot be obtained, so
5012 * ata_port_online(ap) != !ata_port_offline(ap).
5013 *
5014 * LOCKING:
5015 * None.
5016 *
5017 * RETURNS:
5018 * 1 if the port offline status is available and offline.
5019 */
5020int ata_port_offline(struct ata_port *ap)
5021{
5022 u32 sstatus;
5023
5024 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
5025 return 1;
5026 return 0;
5027}
Edward Falk0baab862005-06-02 18:17:13 -04005028
Jens Axboe9b847542006-01-06 09:28:07 +01005029/*
5030 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
5031 * without filling any other registers
5032 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005033static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Jens Axboe9b847542006-01-06 09:28:07 +01005034{
5035 struct ata_taskfile tf;
5036 int err;
5037
Tejun Heo3373efd2006-05-15 20:57:53 +09005038 ata_tf_init(dev, &tf);
Jens Axboe9b847542006-01-06 09:28:07 +01005039
5040 tf.command = cmd;
5041 tf.flags |= ATA_TFLAG_DEVICE;
5042 tf.protocol = ATA_PROT_NODATA;
5043
Tejun Heo3373efd2006-05-15 20:57:53 +09005044 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01005045 if (err)
Tejun Heof15a1da2006-05-15 20:57:56 +09005046 ata_dev_printk(dev, KERN_ERR, "%s: ata command failed: %d\n",
5047 __FUNCTION__, err);
Jens Axboe9b847542006-01-06 09:28:07 +01005048
5049 return err;
5050}
5051
Tejun Heo3373efd2006-05-15 20:57:53 +09005052static int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005053{
5054 u8 cmd;
5055
5056 if (!ata_try_flush_cache(dev))
5057 return 0;
5058
5059 if (ata_id_has_flush_ext(dev->id))
5060 cmd = ATA_CMD_FLUSH_EXT;
5061 else
5062 cmd = ATA_CMD_FLUSH;
5063
Tejun Heo3373efd2006-05-15 20:57:53 +09005064 return ata_do_simple_cmd(dev, cmd);
Jens Axboe9b847542006-01-06 09:28:07 +01005065}
5066
Tejun Heo3373efd2006-05-15 20:57:53 +09005067static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005068{
Tejun Heo3373efd2006-05-15 20:57:53 +09005069 return ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
Jens Axboe9b847542006-01-06 09:28:07 +01005070}
5071
Tejun Heo3373efd2006-05-15 20:57:53 +09005072static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005073{
Tejun Heo3373efd2006-05-15 20:57:53 +09005074 return ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
Jens Axboe9b847542006-01-06 09:28:07 +01005075}
5076
5077/**
5078 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005079 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01005080 *
5081 * Kick the drive back into action, by sending it an idle immediate
5082 * command and making sure its transfer mode matches between drive
5083 * and host.
5084 *
5085 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005086int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005087{
Tejun Heo3373efd2006-05-15 20:57:53 +09005088 struct ata_port *ap = dev->ap;
5089
Jens Axboe9b847542006-01-06 09:28:07 +01005090 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005091 struct ata_device *failed_dev;
Jeff Garzike42d7be2006-05-28 16:32:59 -04005092
Mark Lord0737ac82006-05-28 11:28:00 -04005093 ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 200000);
Jeff Garzike42d7be2006-05-28 16:32:59 -04005094
Jens Axboe9b847542006-01-06 09:28:07 +01005095 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005096 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09005097 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005098 }
Tejun Heoe1211e32006-04-01 01:38:18 +09005099 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005100 return 0;
5101 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005102 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005103
5104 return 0;
5105}
5106
5107/**
5108 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005109 * @dev: the device to suspend
Randy Dunlape2a7f772006-05-18 10:50:18 -07005110 * @state: target power management state
Jens Axboe9b847542006-01-06 09:28:07 +01005111 *
5112 * Flush the cache on the drive, if appropriate, then issue a
5113 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01005114 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005115int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01005116{
Tejun Heo3373efd2006-05-15 20:57:53 +09005117 struct ata_port *ap = dev->ap;
5118
Tejun Heoe1211e32006-04-01 01:38:18 +09005119 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005120 return 0;
5121 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005122 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005123
Nigel Cunningham082776e2006-03-23 23:22:16 +10005124 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09005125 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005126 ap->flags |= ATA_FLAG_SUSPENDED;
5127 return 0;
5128}
5129
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005130/**
5131 * ata_port_start - Set port up for dma.
5132 * @ap: Port to initialize
5133 *
5134 * Called just after data structures for each port are
5135 * initialized. Allocates space for PRD table.
5136 *
5137 * May be used as the port_start() entry in ata_port_operations.
5138 *
5139 * LOCKING:
5140 * Inherited from caller.
5141 */
5142
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143int ata_port_start (struct ata_port *ap)
5144{
Brian King2f1f6102006-03-23 17:30:15 -06005145 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005146 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
5148 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
5149 if (!ap->prd)
5150 return -ENOMEM;
5151
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005152 rc = ata_pad_alloc(ap, dev);
5153 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005154 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005155 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005156 }
5157
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
5159
5160 return 0;
5161}
5162
Edward Falk0baab862005-06-02 18:17:13 -04005163
5164/**
5165 * ata_port_stop - Undo ata_port_start()
5166 * @ap: Port to shut down
5167 *
5168 * Frees the PRD table.
5169 *
5170 * May be used as the port_stop() entry in ata_port_operations.
5171 *
5172 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005173 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005174 */
5175
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176void ata_port_stop (struct ata_port *ap)
5177{
Brian King2f1f6102006-03-23 17:30:15 -06005178 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
5180 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005181 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182}
5183
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005184void ata_host_stop (struct ata_host_set *host_set)
5185{
5186 if (host_set->mmio_base)
5187 iounmap(host_set->mmio_base);
5188}
5189
5190
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191/**
5192 * ata_host_remove - Unregister SCSI host structure with upper layers
5193 * @ap: Port to unregister
5194 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
5195 *
5196 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005197 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 */
5199
5200static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
5201{
5202 struct Scsi_Host *sh = ap->host;
5203
5204 DPRINTK("ENTER\n");
5205
5206 if (do_unregister)
5207 scsi_remove_host(sh);
5208
5209 ap->ops->port_stop(ap);
5210}
5211
5212/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005213 * ata_dev_init - Initialize an ata_device structure
5214 * @dev: Device structure to initialize
5215 *
5216 * Initialize @dev in preparation for probing.
5217 *
5218 * LOCKING:
5219 * Inherited from caller.
5220 */
5221void ata_dev_init(struct ata_device *dev)
5222{
5223 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005224 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005225
Tejun Heo5a04bf42006-05-31 18:27:38 +09005226 /* SATA spd limit is bound to the first device */
5227 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5228
Tejun Heo72fa4b72006-05-31 18:27:32 +09005229 /* High bits of dev->flags are used to record warm plug
5230 * requests which occur asynchronously. Synchronize using
5231 * host_set lock.
5232 */
5233 spin_lock_irqsave(&ap->host_set->lock, flags);
5234 dev->flags &= ~ATA_DFLAG_INIT_MASK;
5235 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5236
5237 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5238 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005239 dev->pio_mask = UINT_MAX;
5240 dev->mwdma_mask = UINT_MAX;
5241 dev->udma_mask = UINT_MAX;
5242}
5243
5244/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 * ata_host_init - Initialize an ata_port structure
5246 * @ap: Structure to initialize
5247 * @host: associated SCSI mid-layer structure
5248 * @host_set: Collection of hosts to which @ap belongs
5249 * @ent: Probe information provided by low-level driver
5250 * @port_no: Port number associated with this ata_port
5251 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005252 * Initialize a new ata_port structure, and its associated
5253 * scsi_host.
5254 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005256 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5259 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005260 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261{
5262 unsigned int i;
5263
5264 host->max_id = 16;
5265 host->max_lun = 1;
5266 host->max_channel = 1;
5267 host->unique_id = ata_unique_id++;
5268 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005269
Tejun Heo198e0fe2006-04-02 18:51:52 +09005270 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 ap->id = host->unique_id;
5272 ap->host = host;
5273 ap->ctl = ATA_DEVCTL_OBS;
5274 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005275 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 ap->port_no = port_no;
5277 ap->hard_port_no =
5278 ent->legacy_mode ? ent->hard_port_no : port_no;
5279 ap->pio_mask = ent->pio_mask;
5280 ap->mwdma_mask = ent->mwdma_mask;
5281 ap->udma_mask = ent->udma_mask;
5282 ap->flags |= ent->host_flags;
5283 ap->ops = ent->port_ops;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005284 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 ap->active_tag = ATA_TAG_POISON;
5286 ap->last_ctl = 0xFF;
Borislav Petkovef282402006-05-29 01:06:23 -04005287 ap->msg_enable = ATA_MSG_DRV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288
Tejun Heo86e45b62006-03-05 15:29:09 +09005289 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005290 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005291 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292
Tejun Heo838df622006-05-15 20:57:44 +09005293 /* set cable type */
5294 ap->cbl = ATA_CBL_NONE;
5295 if (ap->flags & ATA_FLAG_SATA)
5296 ap->cbl = ATA_CBL_SATA;
5297
Tejun Heoacf356b2006-03-24 14:07:50 +09005298 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5299 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005300 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005301 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005302 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
5305#ifdef ATA_IRQ_TRAP
5306 ap->stats.unhandled_irq = 1;
5307 ap->stats.idle_irq = 1;
5308#endif
5309
5310 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5311}
5312
5313/**
5314 * ata_host_add - Attach low-level ATA driver to system
5315 * @ent: Information provided by low-level driver
5316 * @host_set: Collections of ports to which we add
5317 * @port_no: Port number associated with this host
5318 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005319 * Attach low-level ATA driver to system.
5320 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005322 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 *
5324 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005325 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326 */
5327
Jeff Garzik057ace52005-10-22 14:27:05 -04005328static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 struct ata_host_set *host_set,
5330 unsigned int port_no)
5331{
5332 struct Scsi_Host *host;
5333 struct ata_port *ap;
5334 int rc;
5335
5336 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005337
5338 if (!ent->port_ops->probe_reset &&
5339 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5340 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5341 port_no);
5342 return NULL;
5343 }
5344
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5346 if (!host)
5347 return NULL;
5348
Tejun Heo30afc842006-03-18 18:40:14 +09005349 host->transportt = &ata_scsi_transport_template;
5350
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005351 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
5353 ata_host_init(ap, host, host_set, ent, port_no);
5354
5355 rc = ap->ops->port_start(ap);
5356 if (rc)
5357 goto err_out;
5358
5359 return ap;
5360
5361err_out:
5362 scsi_host_put(host);
5363 return NULL;
5364}
5365
5366/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005367 * ata_device_add - Register hardware device with ATA and SCSI layers
5368 * @ent: Probe information describing hardware device to be registered
5369 *
5370 * This function processes the information provided in the probe
5371 * information struct @ent, allocates the necessary ATA and SCSI
5372 * host information structures, initializes them, and registers
5373 * everything with requisite kernel subsystems.
5374 *
5375 * This function requests irqs, probes the ATA bus, and probes
5376 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 *
5378 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005379 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380 *
5381 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005382 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 */
5384
Jeff Garzik057ace52005-10-22 14:27:05 -04005385int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386{
5387 unsigned int count = 0, i;
5388 struct device *dev = ent->dev;
5389 struct ata_host_set *host_set;
5390
5391 DPRINTK("ENTER\n");
5392 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005393 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5395 if (!host_set)
5396 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397 spin_lock_init(&host_set->lock);
5398
5399 host_set->dev = dev;
5400 host_set->n_ports = ent->n_ports;
5401 host_set->irq = ent->irq;
5402 host_set->mmio_base = ent->mmio_base;
5403 host_set->private_data = ent->private_data;
5404 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005405 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406
5407 /* register each port bound to this device */
5408 for (i = 0; i < ent->n_ports; i++) {
5409 struct ata_port *ap;
5410 unsigned long xfer_mode_mask;
5411
5412 ap = ata_host_add(ent, host_set, i);
5413 if (!ap)
5414 goto err_out;
5415
5416 host_set->ports[i] = ap;
5417 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5418 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5419 (ap->pio_mask << ATA_SHIFT_PIO);
5420
5421 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005422 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5423 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5424 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5425 ata_mode_string(xfer_mode_mask),
5426 ap->ioaddr.cmd_addr,
5427 ap->ioaddr.ctl_addr,
5428 ap->ioaddr.bmdma_addr,
5429 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430
5431 ata_chk_status(ap);
5432 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005433 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 count++;
5435 }
5436
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005437 if (!count)
5438 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439
5440 /* obtain irq, that is shared between channels */
5441 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5442 DRV_NAME, host_set))
5443 goto err_out;
5444
5445 /* perform each probe synchronously */
5446 DPRINTK("probe begin\n");
5447 for (i = 0; i < count; i++) {
5448 struct ata_port *ap;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005449 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 int rc;
5451
5452 ap = host_set->ports[i];
5453
Tejun Heo5a04bf42006-05-31 18:27:38 +09005454 /* init sata_spd_limit to the current value */
5455 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5456 int spd = (scontrol >> 4) & 0xf;
5457 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5458 }
5459 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5460
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005461 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005463 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464
5465 if (rc) {
5466 /* FIXME: do something useful here?
5467 * Current libata behavior will
5468 * tear down everything when
5469 * the module is removed
5470 * or the h/w is unplugged.
5471 */
5472 }
5473
5474 rc = scsi_add_host(ap->host, dev);
5475 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005476 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477 /* FIXME: do something useful here */
5478 /* FIXME: handle unconditional calls to
5479 * scsi_scan_host and ata_host_remove, below,
5480 * at the very least
5481 */
5482 }
5483 }
5484
5485 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005486 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 for (i = 0; i < count; i++) {
5488 struct ata_port *ap = host_set->ports[i];
5489
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005490 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 }
5492
5493 dev_set_drvdata(dev, host_set);
5494
5495 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5496 return ent->n_ports; /* success */
5497
5498err_out:
5499 for (i = 0; i < count; i++) {
5500 ata_host_remove(host_set->ports[i], 1);
5501 scsi_host_put(host_set->ports[i]->host);
5502 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005503err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504 kfree(host_set);
5505 VPRINTK("EXIT, returning 0\n");
5506 return 0;
5507}
5508
5509/**
Alan Cox17b14452005-09-15 15:44:00 +01005510 * ata_host_set_remove - PCI layer callback for device removal
5511 * @host_set: ATA host set that was removed
5512 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005513 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005514 * objects.
5515 *
5516 * LOCKING:
5517 * Inherited from calling layer (may sleep).
5518 */
5519
Alan Cox17b14452005-09-15 15:44:00 +01005520void ata_host_set_remove(struct ata_host_set *host_set)
5521{
5522 struct ata_port *ap;
5523 unsigned int i;
5524
5525 for (i = 0; i < host_set->n_ports; i++) {
5526 ap = host_set->ports[i];
5527 scsi_remove_host(ap->host);
5528 }
5529
5530 free_irq(host_set->irq, host_set);
5531
5532 for (i = 0; i < host_set->n_ports; i++) {
5533 ap = host_set->ports[i];
5534
5535 ata_scsi_release(ap->host);
5536
5537 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5538 struct ata_ioports *ioaddr = &ap->ioaddr;
5539
5540 if (ioaddr->cmd_addr == 0x1f0)
5541 release_region(0x1f0, 8);
5542 else if (ioaddr->cmd_addr == 0x170)
5543 release_region(0x170, 8);
5544 }
5545
5546 scsi_host_put(ap->host);
5547 }
5548
5549 if (host_set->ops->host_stop)
5550 host_set->ops->host_stop(host_set);
5551
5552 kfree(host_set);
5553}
5554
5555/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556 * ata_scsi_release - SCSI layer callback hook for host unload
5557 * @host: libata host to be unloaded
5558 *
5559 * Performs all duties necessary to shut down a libata port...
5560 * Kill port kthread, disable port, and release resources.
5561 *
5562 * LOCKING:
5563 * Inherited from SCSI layer.
5564 *
5565 * RETURNS:
5566 * One.
5567 */
5568
5569int ata_scsi_release(struct Scsi_Host *host)
5570{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005571 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572
5573 DPRINTK("ENTER\n");
5574
5575 ap->ops->port_disable(ap);
5576 ata_host_remove(ap, 0);
5577
5578 DPRINTK("EXIT\n");
5579 return 1;
5580}
5581
5582/**
5583 * ata_std_ports - initialize ioaddr with standard port offsets.
5584 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005585 *
5586 * Utility function which initializes data_addr, error_addr,
5587 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5588 * device_addr, status_addr, and command_addr to standard offsets
5589 * relative to cmd_addr.
5590 *
5591 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592 */
Edward Falk0baab862005-06-02 18:17:13 -04005593
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594void ata_std_ports(struct ata_ioports *ioaddr)
5595{
5596 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5597 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5598 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5599 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5600 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5601 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5602 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5603 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5604 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5605 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5606}
5607
Edward Falk0baab862005-06-02 18:17:13 -04005608
Jeff Garzik374b1872005-08-30 05:42:52 -04005609#ifdef CONFIG_PCI
5610
5611void ata_pci_host_stop (struct ata_host_set *host_set)
5612{
5613 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5614
5615 pci_iounmap(pdev, host_set->mmio_base);
5616}
5617
Edward Falk0baab862005-06-02 18:17:13 -04005618/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619 * ata_pci_remove_one - PCI layer callback for device removal
5620 * @pdev: PCI device that was removed
5621 *
5622 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005623 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624 * Handle this by unregistering all objects associated
5625 * with this PCI device. Free those objects. Then finally
5626 * release PCI resources and disable device.
5627 *
5628 * LOCKING:
5629 * Inherited from PCI layer (may sleep).
5630 */
5631
5632void ata_pci_remove_one (struct pci_dev *pdev)
5633{
5634 struct device *dev = pci_dev_to_dev(pdev);
5635 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636
Alan Cox17b14452005-09-15 15:44:00 +01005637 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638 pci_release_regions(pdev);
5639 pci_disable_device(pdev);
5640 dev_set_drvdata(dev, NULL);
5641}
5642
5643/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005644int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645{
5646 unsigned long tmp = 0;
5647
5648 switch (bits->width) {
5649 case 1: {
5650 u8 tmp8 = 0;
5651 pci_read_config_byte(pdev, bits->reg, &tmp8);
5652 tmp = tmp8;
5653 break;
5654 }
5655 case 2: {
5656 u16 tmp16 = 0;
5657 pci_read_config_word(pdev, bits->reg, &tmp16);
5658 tmp = tmp16;
5659 break;
5660 }
5661 case 4: {
5662 u32 tmp32 = 0;
5663 pci_read_config_dword(pdev, bits->reg, &tmp32);
5664 tmp = tmp32;
5665 break;
5666 }
5667
5668 default:
5669 return -EINVAL;
5670 }
5671
5672 tmp &= bits->mask;
5673
5674 return (tmp == bits->val) ? 1 : 0;
5675}
Jens Axboe9b847542006-01-06 09:28:07 +01005676
5677int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5678{
5679 pci_save_state(pdev);
5680 pci_disable_device(pdev);
5681 pci_set_power_state(pdev, PCI_D3hot);
5682 return 0;
5683}
5684
5685int ata_pci_device_resume(struct pci_dev *pdev)
5686{
5687 pci_set_power_state(pdev, PCI_D0);
5688 pci_restore_state(pdev);
5689 pci_enable_device(pdev);
5690 pci_set_master(pdev);
5691 return 0;
5692}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693#endif /* CONFIG_PCI */
5694
5695
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696static int __init ata_init(void)
5697{
5698 ata_wq = create_workqueue("ata");
5699 if (!ata_wq)
5700 return -ENOMEM;
5701
Tejun Heo453b07a2006-05-31 18:27:42 +09005702 ata_aux_wq = create_singlethread_workqueue("ata_aux");
5703 if (!ata_aux_wq) {
5704 destroy_workqueue(ata_wq);
5705 return -ENOMEM;
5706 }
5707
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5709 return 0;
5710}
5711
5712static void __exit ata_exit(void)
5713{
5714 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09005715 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716}
5717
5718module_init(ata_init);
5719module_exit(ata_exit);
5720
Jeff Garzik67846b32005-10-05 02:58:32 -04005721static unsigned long ratelimit_time;
5722static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5723
5724int ata_ratelimit(void)
5725{
5726 int rc;
5727 unsigned long flags;
5728
5729 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5730
5731 if (time_after(jiffies, ratelimit_time)) {
5732 rc = 1;
5733 ratelimit_time = jiffies + (HZ/5);
5734 } else
5735 rc = 0;
5736
5737 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5738
5739 return rc;
5740}
5741
Tejun Heoc22daff2006-04-11 22:22:29 +09005742/**
5743 * ata_wait_register - wait until register value changes
5744 * @reg: IO-mapped register
5745 * @mask: Mask to apply to read register value
5746 * @val: Wait condition
5747 * @interval_msec: polling interval in milliseconds
5748 * @timeout_msec: timeout in milliseconds
5749 *
5750 * Waiting for some bits of register to change is a common
5751 * operation for ATA controllers. This function reads 32bit LE
5752 * IO-mapped register @reg and tests for the following condition.
5753 *
5754 * (*@reg & mask) != val
5755 *
5756 * If the condition is met, it returns; otherwise, the process is
5757 * repeated after @interval_msec until timeout.
5758 *
5759 * LOCKING:
5760 * Kernel thread context (may sleep)
5761 *
5762 * RETURNS:
5763 * The final register value.
5764 */
5765u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5766 unsigned long interval_msec,
5767 unsigned long timeout_msec)
5768{
5769 unsigned long timeout;
5770 u32 tmp;
5771
5772 tmp = ioread32(reg);
5773
5774 /* Calculate timeout _after_ the first read to make sure
5775 * preceding writes reach the controller before starting to
5776 * eat away the timeout.
5777 */
5778 timeout = jiffies + (timeout_msec * HZ) / 1000;
5779
5780 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5781 msleep(interval_msec);
5782 tmp = ioread32(reg);
5783 }
5784
5785 return tmp;
5786}
5787
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788/*
5789 * libata is essentially a library of internal helper functions for
5790 * low-level ATA host controller drivers. As such, the API/ABI is
5791 * likely to change as new drivers are added and updated.
5792 * Do not depend on ABI/API stability.
5793 */
5794
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005795EXPORT_SYMBOL_GPL(sata_deb_timing_boot);
5796EXPORT_SYMBOL_GPL(sata_deb_timing_eh);
5797EXPORT_SYMBOL_GPL(sata_deb_timing_before_fsrst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798EXPORT_SYMBOL_GPL(ata_std_bios_param);
5799EXPORT_SYMBOL_GPL(ata_std_ports);
5800EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005801EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802EXPORT_SYMBOL_GPL(ata_sg_init);
5803EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heof686bcb2006-05-15 20:58:05 +09005804EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005805EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807EXPORT_SYMBOL_GPL(ata_tf_load);
5808EXPORT_SYMBOL_GPL(ata_tf_read);
5809EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5810EXPORT_SYMBOL_GPL(ata_std_dev_select);
5811EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5812EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5813EXPORT_SYMBOL_GPL(ata_check_status);
5814EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815EXPORT_SYMBOL_GPL(ata_exec_command);
5816EXPORT_SYMBOL_GPL(ata_port_start);
5817EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005818EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819EXPORT_SYMBOL_GPL(ata_interrupt);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005820EXPORT_SYMBOL_GPL(ata_mmio_data_xfer);
5821EXPORT_SYMBOL_GPL(ata_pio_data_xfer);
Alan Cox75e99582006-05-24 14:14:41 +01005822EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005824EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5826EXPORT_SYMBOL_GPL(ata_bmdma_start);
5827EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5828EXPORT_SYMBOL_GPL(ata_bmdma_status);
5829EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005830EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5831EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5832EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5833EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5834EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005836EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005837EXPORT_SYMBOL_GPL(sata_phy_debounce);
5838EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839EXPORT_SYMBOL_GPL(sata_phy_reset);
5840EXPORT_SYMBOL_GPL(__sata_phy_reset);
5841EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005842EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005843EXPORT_SYMBOL_GPL(ata_std_softreset);
5844EXPORT_SYMBOL_GPL(sata_std_hardreset);
5845EXPORT_SYMBOL_GPL(ata_std_postreset);
5846EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005847EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005848EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005849EXPORT_SYMBOL_GPL(ata_dev_classify);
5850EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005852EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005853EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005854EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005855EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5857EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09005859EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860EXPORT_SYMBOL_GPL(ata_scsi_release);
5861EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005862EXPORT_SYMBOL_GPL(sata_scr_valid);
5863EXPORT_SYMBOL_GPL(sata_scr_read);
5864EXPORT_SYMBOL_GPL(sata_scr_write);
5865EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5866EXPORT_SYMBOL_GPL(ata_port_online);
5867EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005868EXPORT_SYMBOL_GPL(ata_id_string);
5869EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5871
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005872EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005873EXPORT_SYMBOL_GPL(ata_timing_compute);
5874EXPORT_SYMBOL_GPL(ata_timing_merge);
5875
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876#ifdef CONFIG_PCI
5877EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005878EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5880EXPORT_SYMBOL_GPL(ata_pci_init_one);
5881EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005882EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5883EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005884EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5885EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005887
5888EXPORT_SYMBOL_GPL(ata_device_suspend);
5889EXPORT_SYMBOL_GPL(ata_device_resume);
5890EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5891EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005892
Tejun Heoece1d632006-04-02 18:51:53 +09005893EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005894EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5895EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005896EXPORT_SYMBOL_GPL(ata_port_freeze);
5897EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5898EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005899EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5900EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005901EXPORT_SYMBOL_GPL(ata_do_eh);