blob: 60e80e3a885809af2c81d961e4003d5bf85f2abd [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{
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400421 if (ata_dev_enabled(dev) && ata_msg_drv(dev->ap)) {
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{
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400780 if (ata_msg_probe(ap)) {
781 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, ata%u: "
782 "device %u, wait %u\n",
783 ap->id, device, wait);
784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 if (wait)
787 ata_wait_idle(ap);
788
789 ap->ops->dev_select(ap, device);
790
791 if (wait) {
792 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
793 msleep(150);
794 ata_wait_idle(ap);
795 }
796}
797
798/**
799 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900800 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900802 * Dump selected 16-bit words from the given IDENTIFY DEVICE
803 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 *
805 * LOCKING:
806 * caller.
807 */
808
Tejun Heo0bd33002006-02-12 22:47:05 +0900809static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 DPRINTK("49==0x%04x "
812 "53==0x%04x "
813 "63==0x%04x "
814 "64==0x%04x "
815 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900816 id[49],
817 id[53],
818 id[63],
819 id[64],
820 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 DPRINTK("80==0x%04x "
822 "81==0x%04x "
823 "82==0x%04x "
824 "83==0x%04x "
825 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900826 id[80],
827 id[81],
828 id[82],
829 id[83],
830 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 DPRINTK("88==0x%04x "
832 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900833 id[88],
834 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Tejun Heocb95d562006-03-06 04:31:56 +0900837/**
838 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
839 * @id: IDENTIFY data to compute xfer mask from
840 *
841 * Compute the xfermask for this device. This is not as trivial
842 * as it seems if we must consider early devices correctly.
843 *
844 * FIXME: pre IDE drive timing (do we care ?).
845 *
846 * LOCKING:
847 * None.
848 *
849 * RETURNS:
850 * Computed xfermask
851 */
852static unsigned int ata_id_xfermask(const u16 *id)
853{
854 unsigned int pio_mask, mwdma_mask, udma_mask;
855
856 /* Usual case. Word 53 indicates word 64 is valid */
857 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
858 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
859 pio_mask <<= 3;
860 pio_mask |= 0x7;
861 } else {
862 /* If word 64 isn't valid then Word 51 high byte holds
863 * the PIO timing number for the maximum. Turn it into
864 * a mask.
865 */
866 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
867
868 /* But wait.. there's more. Design your standards by
869 * committee and you too can get a free iordy field to
870 * process. However its the speeds not the modes that
871 * are supported... Note drivers using the timing API
872 * will get this right anyway
873 */
874 }
875
876 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900877
878 udma_mask = 0;
879 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
880 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900881
882 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
883}
884
Tejun Heo86e45b62006-03-05 15:29:09 +0900885/**
886 * ata_port_queue_task - Queue port_task
887 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -0700888 * @fn: workqueue function to be scheduled
889 * @data: data value to pass to workqueue function
890 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +0900891 *
892 * Schedule @fn(@data) for execution after @delay jiffies using
893 * port_task. There is one port_task per port and it's the
894 * user(low level driver)'s responsibility to make sure that only
895 * one task is active at any given time.
896 *
897 * libata core layer takes care of synchronization between
898 * port_task and EH. ata_port_queue_task() may be ignored for EH
899 * synchronization.
900 *
901 * LOCKING:
902 * Inherited from caller.
903 */
904void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
905 unsigned long delay)
906{
907 int rc;
908
Tejun Heo2e755f62006-03-05 15:29:09 +0900909 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900910 return;
911
912 PREPARE_WORK(&ap->port_task, fn, data);
913
914 if (!delay)
915 rc = queue_work(ata_wq, &ap->port_task);
916 else
917 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
918
919 /* rc == 0 means that another user is using port task */
920 WARN_ON(rc == 0);
921}
922
923/**
924 * ata_port_flush_task - Flush port_task
925 * @ap: The ata_port to flush port_task for
926 *
927 * After this function completes, port_task is guranteed not to
928 * be running or scheduled.
929 *
930 * LOCKING:
931 * Kernel thread context (may sleep)
932 */
933void ata_port_flush_task(struct ata_port *ap)
934{
935 unsigned long flags;
936
937 DPRINTK("ENTER\n");
938
Jeff Garzikba6a1302006-06-22 23:46:10 -0400939 spin_lock_irqsave(ap->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900940 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -0400941 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +0900942
943 DPRINTK("flush #1\n");
944 flush_workqueue(ata_wq);
945
946 /*
947 * At this point, if a task is running, it's guaranteed to see
948 * the FLUSH flag; thus, it will never queue pio tasks again.
949 * Cancel and flush.
950 */
951 if (!cancel_delayed_work(&ap->port_task)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400952 if (ata_msg_ctl(ap))
953 ata_port_printk(ap, KERN_DEBUG, "%s: flush #2\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +0900954 flush_workqueue(ata_wq);
955 }
956
Jeff Garzikba6a1302006-06-22 23:46:10 -0400957 spin_lock_irqsave(ap->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900958 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -0400959 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +0900960
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400961 if (ata_msg_ctl(ap))
962 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +0900963}
964
Tejun Heo77853bf2006-01-23 13:09:36 +0900965void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900966{
Tejun Heo77853bf2006-01-23 13:09:36 +0900967 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900968
Tejun Heoa2a7a662005-12-13 14:48:31 +0900969 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900970}
971
972/**
973 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900974 * @dev: Device to which the command is sent
975 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900976 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900977 * @dma_dir: Data tranfer direction of the command
978 * @buf: Data buffer of the command
979 * @buflen: Length of data buffer
980 *
981 * Executes libata internal command with timeout. @tf contains
982 * command on entry and result on return. Timeout and error
983 * conditions are reported via return value. No recovery action
984 * is taken after a command times out. It's caller's duty to
985 * clean up after timeout.
986 *
987 * LOCKING:
988 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +0900989 *
990 * RETURNS:
991 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +0900992 */
Tejun Heo3373efd2006-05-15 20:57:53 +0900993unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900994 struct ata_taskfile *tf, const u8 *cdb,
995 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900996{
Tejun Heo3373efd2006-05-15 20:57:53 +0900997 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900998 u8 command = tf->command;
999 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001000 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001001 u32 preempted_sactive, preempted_qc_active;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001002 DECLARE_COMPLETION(wait);
1003 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001004 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001005 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001006
Jeff Garzikba6a1302006-06-22 23:46:10 -04001007 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001008
Tejun Heoe3180492006-05-15 20:58:09 +09001009 /* no internal command while frozen */
1010 if (ap->flags & ATA_FLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001011 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001012 return AC_ERR_SYSTEM;
1013 }
1014
Tejun Heo2ab7db12006-05-15 20:58:02 +09001015 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001016
Tejun Heo2ab7db12006-05-15 20:58:02 +09001017 /* XXX: Tag 0 is used for drivers with legacy EH as some
1018 * drivers choke if any other tag is given. This breaks
1019 * ata_tag_internal() test for those drivers. Don't use new
1020 * EH stuff without converting to it.
1021 */
1022 if (ap->ops->error_handler)
1023 tag = ATA_TAG_INTERNAL;
1024 else
1025 tag = 0;
1026
Tejun Heo6cec4a32006-05-15 21:03:41 +09001027 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001028 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001029 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001030
1031 qc->tag = tag;
1032 qc->scsicmd = NULL;
1033 qc->ap = ap;
1034 qc->dev = dev;
1035 ata_qc_reinit(qc);
1036
1037 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001038 preempted_sactive = ap->sactive;
1039 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001040 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001041 ap->sactive = 0;
1042 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001043
1044 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001045 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001046 if (cdb)
1047 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001048 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001049 qc->dma_dir = dma_dir;
1050 if (dma_dir != DMA_NONE) {
1051 ata_sg_init_one(qc, buf, buflen);
1052 qc->nsect = buflen / ATA_SECT_SIZE;
1053 }
1054
Tejun Heo77853bf2006-01-23 13:09:36 +09001055 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001056 qc->complete_fn = ata_qc_complete_internal;
1057
Tejun Heo8e0e6942006-03-31 20:41:11 +09001058 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001059
Jeff Garzikba6a1302006-06-22 23:46:10 -04001060 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001061
Tejun Heod95a7172006-05-15 20:58:14 +09001062 rc = wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL);
Albert Lee41ade502006-03-14 11:19:04 +08001063
Tejun Heod95a7172006-05-15 20:58:14 +09001064 ata_port_flush_task(ap);
1065
1066 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001067 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001068
1069 /* We're racing with irq here. If we lose, the
1070 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001071 * twice. If we win, the port is frozen and will be
1072 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001073 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001074 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001075 qc->err_mask |= AC_ERR_TIMEOUT;
1076
1077 if (ap->ops->error_handler)
1078 ata_port_freeze(ap);
1079 else
1080 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001081
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001082 if (ata_msg_warn(ap))
1083 ata_dev_printk(dev, KERN_WARNING,
Tejun Heof15a1da2006-05-15 20:57:56 +09001084 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001085 }
1086
Jeff Garzikba6a1302006-06-22 23:46:10 -04001087 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001088 }
1089
Tejun Heod95a7172006-05-15 20:58:14 +09001090 /* do post_internal_cmd */
1091 if (ap->ops->post_internal_cmd)
1092 ap->ops->post_internal_cmd(qc);
1093
1094 if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001095 if (ata_msg_warn(ap))
1096 ata_dev_printk(dev, KERN_WARNING,
1097 "zero err_mask for failed "
Tejun Heod95a7172006-05-15 20:58:14 +09001098 "internal command, assuming AC_ERR_OTHER\n");
1099 qc->err_mask |= AC_ERR_OTHER;
1100 }
1101
Tejun Heo15869302006-05-15 20:57:33 +09001102 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001103 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001104
Tejun Heoe61e0672006-05-15 20:57:40 +09001105 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001106 err_mask = qc->err_mask;
1107
1108 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001109 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001110 ap->sactive = preempted_sactive;
1111 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001112
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001113 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1114 * Until those drivers are fixed, we detect the condition
1115 * here, fail the command with AC_ERR_SYSTEM and reenable the
1116 * port.
1117 *
1118 * Note that this doesn't change any behavior as internal
1119 * command failure results in disabling the device in the
1120 * higher layer for LLDDs without new reset/EH callbacks.
1121 *
1122 * Kill the following code as soon as those drivers are fixed.
1123 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001124 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001125 err_mask |= AC_ERR_SYSTEM;
1126 ata_port_probe(ap);
1127 }
1128
Jeff Garzikba6a1302006-06-22 23:46:10 -04001129 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001130
Tejun Heo77853bf2006-01-23 13:09:36 +09001131 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001132}
1133
Tejun Heo977e6b92006-06-24 20:30:19 +09001134/**
1135 * ata_do_simple_cmd - execute simple internal command
1136 * @dev: Device to which the command is sent
1137 * @cmd: Opcode to execute
1138 *
1139 * Execute a 'simple' command, that only consists of the opcode
1140 * 'cmd' itself, without filling any other registers
1141 *
1142 * LOCKING:
1143 * Kernel thread context (may sleep).
1144 *
1145 * RETURNS:
1146 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001147 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001148unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001149{
1150 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001151
1152 ata_tf_init(dev, &tf);
1153
1154 tf.command = cmd;
1155 tf.flags |= ATA_TFLAG_DEVICE;
1156 tf.protocol = ATA_PROT_NODATA;
1157
Tejun Heo977e6b92006-06-24 20:30:19 +09001158 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001159}
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001162 * ata_pio_need_iordy - check if iordy needed
1163 * @adev: ATA device
1164 *
1165 * Check if the current speed of the device requires IORDY. Used
1166 * by various controllers for chip configuration.
1167 */
1168
1169unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1170{
1171 int pio;
1172 int speed = adev->pio_mode - XFER_PIO_0;
1173
1174 if (speed < 2)
1175 return 0;
1176 if (speed > 2)
1177 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001178
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001179 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1180
1181 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1182 pio = adev->id[ATA_ID_EIDE_PIO];
1183 /* Is the speed faster than the drive allows non IORDY ? */
1184 if (pio) {
1185 /* This is cycle times not frequency - watch the logic! */
1186 if (pio > 240) /* PIO2 is 240nS per cycle */
1187 return 1;
1188 return 0;
1189 }
1190 }
1191 return 0;
1192}
1193
1194/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001195 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001196 * @dev: target device
1197 * @p_class: pointer to class of the target device (may be changed)
1198 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001199 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001200 *
1201 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1202 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001203 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1204 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001205 *
1206 * LOCKING:
1207 * Kernel thread context (may sleep)
1208 *
1209 * RETURNS:
1210 * 0 on success, -errno otherwise.
1211 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001212int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1213 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001214{
Tejun Heo3373efd2006-05-15 20:57:53 +09001215 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001216 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001217 struct ata_taskfile tf;
1218 unsigned int err_mask = 0;
1219 const char *reason;
1220 int rc;
1221
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001222 if (ata_msg_ctl(ap))
1223 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1224 __FUNCTION__, ap->id, dev->devno);
Tejun Heo49016ac2006-02-21 02:12:11 +09001225
Tejun Heo49016ac2006-02-21 02:12:11 +09001226 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1227
1228 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001229 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001230
1231 switch (class) {
1232 case ATA_DEV_ATA:
1233 tf.command = ATA_CMD_ID_ATA;
1234 break;
1235 case ATA_DEV_ATAPI:
1236 tf.command = ATA_CMD_ID_ATAPI;
1237 break;
1238 default:
1239 rc = -ENODEV;
1240 reason = "unsupported class";
1241 goto err_out;
1242 }
1243
1244 tf.protocol = ATA_PROT_PIO;
1245
Tejun Heo3373efd2006-05-15 20:57:53 +09001246 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001247 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001248 if (err_mask) {
1249 rc = -EIO;
1250 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001251 goto err_out;
1252 }
1253
1254 swap_buf_le16(id, ATA_ID_WORDS);
1255
Tejun Heo49016ac2006-02-21 02:12:11 +09001256 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001257 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001258 rc = -EINVAL;
1259 reason = "device reports illegal type";
1260 goto err_out;
1261 }
1262
1263 if (post_reset && class == ATA_DEV_ATA) {
1264 /*
1265 * The exact sequence expected by certain pre-ATA4 drives is:
1266 * SRST RESET
1267 * IDENTIFY
1268 * INITIALIZE DEVICE PARAMETERS
1269 * anything else..
1270 * Some drives were very specific about that exact sequence.
1271 */
1272 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001273 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001274 if (err_mask) {
1275 rc = -EIO;
1276 reason = "INIT_DEV_PARAMS failed";
1277 goto err_out;
1278 }
1279
1280 /* current CHS translation info (id[53-58]) might be
1281 * changed. reread the identify device info.
1282 */
1283 post_reset = 0;
1284 goto retry;
1285 }
1286 }
1287
1288 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001289
Tejun Heo49016ac2006-02-21 02:12:11 +09001290 return 0;
1291
1292 err_out:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001293 if (ata_msg_warn(ap))
1294 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heof15a1da2006-05-15 20:57:56 +09001295 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001296 return rc;
1297}
1298
Tejun Heo3373efd2006-05-15 20:57:53 +09001299static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001300{
Tejun Heo3373efd2006-05-15 20:57:53 +09001301 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001302}
1303
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001304static void ata_dev_config_ncq(struct ata_device *dev,
1305 char *desc, size_t desc_sz)
1306{
1307 struct ata_port *ap = dev->ap;
1308 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1309
1310 if (!ata_id_has_ncq(dev->id)) {
1311 desc[0] = '\0';
1312 return;
1313 }
1314
1315 if (ap->flags & ATA_FLAG_NCQ) {
1316 hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1);
1317 dev->flags |= ATA_DFLAG_NCQ;
1318 }
1319
1320 if (hdepth >= ddepth)
1321 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1322 else
1323 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1324}
1325
Tejun Heo49016ac2006-02-21 02:12:11 +09001326/**
Tejun Heoffeae412006-03-01 16:09:35 +09001327 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001328 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001329 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 *
Tejun Heoffeae412006-03-01 16:09:35 +09001331 * Configure @dev according to @dev->id. Generic and low-level
1332 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 *
1334 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001335 * Kernel thread context (may sleep)
1336 *
1337 * RETURNS:
1338 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001340int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Tejun Heo3373efd2006-05-15 20:57:53 +09001342 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001343 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001344 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001345 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001347 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
1348 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT (host %u, dev %u) -- nodev\n",
1349 __FUNCTION__, ap->id, dev->devno);
Tejun Heoffeae412006-03-01 16:09:35 +09001350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001353 if (ata_msg_probe(ap))
1354 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1355 __FUNCTION__, ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001357 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001358 if (ata_msg_probe(ap))
1359 ata_dev_printk(dev, KERN_DEBUG, "%s: cfg 49:%04x 82:%04x 83:%04x "
Tejun Heof15a1da2006-05-15 20:57:56 +09001360 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001361 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001362 id[49], id[82], id[83], id[84],
1363 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001364
Tejun Heo208a9932006-03-05 17:55:58 +09001365 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001366 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001367 dev->max_sectors = 0;
1368 dev->cdb_len = 0;
1369 dev->n_sectors = 0;
1370 dev->cylinders = 0;
1371 dev->heads = 0;
1372 dev->sectors = 0;
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /*
1375 * common ATA, ATAPI feature tests
1376 */
1377
Tejun Heoff8854b2006-03-06 04:31:56 +09001378 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001379 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001381 if (ata_msg_probe(ap))
1382 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /* ATA-specific feature tests */
1385 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001386 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001387
Tejun Heo1148c3a2006-03-13 19:48:04 +09001388 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001389 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001390 char ncq_desc[20];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001391
Tejun Heo4c2d7212006-03-05 17:55:58 +09001392 lba_desc = "LBA";
1393 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001394 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001395 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001396 lba_desc = "LBA48";
1397 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001398
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001399 /* config NCQ */
1400 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1401
Albert Lee8bf62ec2005-05-12 15:29:42 -04001402 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001403 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001404 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001405 "max %s, %Lu sectors: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001406 ata_id_major_version(id),
1407 ata_mode_string(xfer_mask),
1408 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001409 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001410 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001411 /* CHS */
1412
1413 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001414 dev->cylinders = id[1];
1415 dev->heads = id[3];
1416 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001417
Tejun Heo1148c3a2006-03-13 19:48:04 +09001418 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001419 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001420 dev->cylinders = id[54];
1421 dev->heads = id[55];
1422 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001423 }
1424
1425 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001426 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001427 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1428 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1429 ata_id_major_version(id),
1430 ata_mode_string(xfer_mask),
1431 (unsigned long long)dev->n_sectors,
1432 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434
Albert Lee07f6f7d2005-11-01 19:33:20 +08001435 if (dev->id[59] & 0x100) {
1436 dev->multi_count = dev->id[59] & 0xff;
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001437 if (ata_msg_info(ap))
1438 ata_dev_printk(dev, KERN_INFO, "ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001439 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001440 }
1441
Tejun Heo6e7846e2006-02-12 23:32:58 +09001442 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444
1445 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001446 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001447 char *cdb_intr_string = "";
1448
Tejun Heo1148c3a2006-03-13 19:48:04 +09001449 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001451 if (ata_msg_warn(ap))
1452 ata_dev_printk(dev, KERN_WARNING,
1453 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001454 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 goto err_out_nosup;
1456 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001457 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Albert Lee08a556d2006-03-31 13:29:04 +08001459 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001460 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001461 cdb_intr_string = ", CDB intr";
1462 }
Albert Lee312f7da2005-09-27 17:38:03 +08001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001465 if (ata_msg_info(ap))
Tejun Heo12436c32006-05-15 20:59:15 +09001466 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1467 ata_mode_string(xfer_mask),
1468 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470
Tejun Heo6e7846e2006-02-12 23:32:58 +09001471 ap->host->max_cmd_len = 0;
1472 for (i = 0; i < ATA_MAX_DEVICES; i++)
1473 ap->host->max_cmd_len = max_t(unsigned int,
1474 ap->host->max_cmd_len,
1475 ap->device[i].cdb_len);
1476
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001477 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001478 if (ata_dev_knobble(dev)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001479 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001480 ata_dev_printk(dev, KERN_INFO,
1481 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001482 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001483 dev->max_sectors = ATA_MAX_SECTORS;
1484 }
1485
1486 if (ap->ops->dev_config)
1487 ap->ops->dev_config(ap, dev);
1488
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001489 if (ata_msg_probe(ap))
1490 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
1491 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001492 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001495 if (ata_msg_probe(ap))
1496 ata_dev_printk(dev, KERN_DEBUG,
1497 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001498 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
1501/**
1502 * ata_bus_probe - Reset and probe ATA bus
1503 * @ap: Bus to probe
1504 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001505 * Master ATA bus probing function. Initiates a hardware-dependent
1506 * bus reset, then attempts to identify any devices found on
1507 * the bus.
1508 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001510 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
1512 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001513 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 */
1515
1516static int ata_bus_probe(struct ata_port *ap)
1517{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001518 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001519 int tries[ATA_MAX_DEVICES];
1520 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001521 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Tejun Heo28ca5c52006-03-01 16:09:36 +09001523 ata_port_probe(ap);
1524
Tejun Heo14d2bac2006-04-02 17:54:46 +09001525 for (i = 0; i < ATA_MAX_DEVICES; i++)
1526 tries[i] = ATA_PROBE_MAX_TRIES;
1527
1528 retry:
1529 down_xfermask = 0;
1530
Tejun Heo20444702006-03-13 01:57:01 +09001531 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09001532 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09001533
Tejun Heo52783c52006-05-31 18:28:22 +09001534 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1535 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001536
Tejun Heo52783c52006-05-31 18:28:22 +09001537 if (!(ap->flags & ATA_FLAG_DISABLED) &&
1538 dev->class != ATA_DEV_UNKNOWN)
1539 classes[dev->devno] = dev->class;
1540 else
1541 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09001542
Tejun Heo52783c52006-05-31 18:28:22 +09001543 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09001544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Tejun Heo52783c52006-05-31 18:28:22 +09001546 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09001547
Alan Coxb6079ca2006-05-22 16:52:06 +01001548 /* after the reset the device state is PIO 0 and the controller
1549 state is undefined. Record the mode */
1550
1551 for (i = 0; i < ATA_MAX_DEVICES; i++)
1552 ap->device[i].pio_mode = XFER_PIO_0;
1553
Tejun Heo28ca5c52006-03-01 16:09:36 +09001554 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001556 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001557
Tejun Heoec573752006-04-11 22:26:29 +09001558 if (tries[i])
1559 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001560
Tejun Heoe1211e32006-04-01 01:38:18 +09001561 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001562 continue;
1563
Tejun Heo3373efd2006-05-15 20:57:53 +09001564 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001565 if (rc)
1566 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001567
Tejun Heo3373efd2006-05-15 20:57:53 +09001568 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001569 if (rc)
1570 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
1572
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001573 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001574 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001575 if (rc) {
1576 down_xfermask = 1;
1577 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001580 for (i = 0; i < ATA_MAX_DEVICES; i++)
1581 if (ata_dev_enabled(&ap->device[i]))
1582 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001583
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001584 /* no device present, disable port */
1585 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001587 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001588
1589 fail:
1590 switch (rc) {
1591 case -EINVAL:
1592 case -ENODEV:
1593 tries[dev->devno] = 0;
1594 break;
1595 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001596 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001597 /* fall through */
1598 default:
1599 tries[dev->devno]--;
1600 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001601 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001602 tries[dev->devno] = 0;
1603 }
1604
Tejun Heoec573752006-04-11 22:26:29 +09001605 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001606 ata_down_xfermask_limit(dev, 1);
1607 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001608 }
1609
Tejun Heo14d2bac2006-04-02 17:54:46 +09001610 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
1613/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001614 * ata_port_probe - Mark port as enabled
1615 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001617 * Modify @ap data structure such that the system
1618 * thinks that the entire port is enabled.
1619 *
1620 * LOCKING: host_set lock, or some other form of
1621 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 */
1623
1624void ata_port_probe(struct ata_port *ap)
1625{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001626 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
1629/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001630 * sata_print_link_status - Print SATA link status
1631 * @ap: SATA port to printk link status about
1632 *
1633 * This function prints link speed and status of a SATA link.
1634 *
1635 * LOCKING:
1636 * None.
1637 */
1638static void sata_print_link_status(struct ata_port *ap)
1639{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001640 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001641
Tejun Heo81952c52006-05-15 20:57:47 +09001642 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001643 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001644 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001645
Tejun Heo81952c52006-05-15 20:57:47 +09001646 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001647 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001648 ata_port_printk(ap, KERN_INFO,
1649 "SATA link up %s (SStatus %X SControl %X)\n",
1650 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001651 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001652 ata_port_printk(ap, KERN_INFO,
1653 "SATA link down (SStatus %X SControl %X)\n",
1654 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001655 }
1656}
1657
1658/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001659 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1660 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001662 * This function issues commands to standard SATA Sxxx
1663 * PHY registers, to wake up the phy (and device), and
1664 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 *
1666 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001667 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 *
1669 */
1670void __sata_phy_reset(struct ata_port *ap)
1671{
1672 u32 sstatus;
1673 unsigned long timeout = jiffies + (HZ * 5);
1674
1675 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001676 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001677 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001678 /* Couldn't find anything in SATA I/II specs, but
1679 * AHCI-1.1 10.4.2 says at least 1 ms. */
1680 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
Tejun Heo81952c52006-05-15 20:57:47 +09001682 /* phy wake/clear reset */
1683 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 /* wait for phy to become ready, if necessary */
1686 do {
1687 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001688 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if ((sstatus & 0xf) != 1)
1690 break;
1691 } while (time_before(jiffies, timeout));
1692
Tejun Heo3be680b2005-12-19 22:35:02 +09001693 /* print link status */
1694 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001695
Tejun Heo3be680b2005-12-19 22:35:02 +09001696 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001697 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001699 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Tejun Heo198e0fe2006-04-02 18:51:52 +09001702 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return;
1704
1705 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1706 ata_port_disable(ap);
1707 return;
1708 }
1709
1710 ap->cbl = ATA_CBL_SATA;
1711}
1712
1713/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001714 * sata_phy_reset - Reset SATA bus.
1715 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001717 * This function resets the SATA bus, and then probes
1718 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 *
1720 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001721 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 *
1723 */
1724void sata_phy_reset(struct ata_port *ap)
1725{
1726 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001727 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return;
1729 ata_bus_reset(ap);
1730}
1731
1732/**
Alan Coxebdfca62006-03-23 15:38:34 +00001733 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001734 * @adev: device
1735 *
1736 * Obtain the other device on the same cable, or if none is
1737 * present NULL is returned
1738 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001739
Tejun Heo3373efd2006-05-15 20:57:53 +09001740struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001741{
Tejun Heo3373efd2006-05-15 20:57:53 +09001742 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001743 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001744 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001745 return NULL;
1746 return pair;
1747}
1748
1749/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001750 * ata_port_disable - Disable port.
1751 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001753 * Modify @ap data structure such that the system
1754 * thinks that the entire port is disabled, and should
1755 * never attempt to probe or communicate with devices
1756 * on this port.
1757 *
1758 * LOCKING: host_set lock, or some other form of
1759 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 */
1761
1762void ata_port_disable(struct ata_port *ap)
1763{
1764 ap->device[0].class = ATA_DEV_NONE;
1765 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001766 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
Tejun Heo1c3fae42006-04-02 20:53:28 +09001769/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001770 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001771 * @ap: Port to adjust SATA spd limit for
1772 *
1773 * Adjust SATA spd limit of @ap downward. Note that this
1774 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001775 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001776 *
1777 * LOCKING:
1778 * Inherited from caller.
1779 *
1780 * RETURNS:
1781 * 0 on success, negative errno on failure
1782 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001783int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001784{
Tejun Heo81952c52006-05-15 20:57:47 +09001785 u32 sstatus, spd, mask;
1786 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001787
Tejun Heo81952c52006-05-15 20:57:47 +09001788 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1789 if (rc)
1790 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001791
1792 mask = ap->sata_spd_limit;
1793 if (mask <= 1)
1794 return -EINVAL;
1795 highbit = fls(mask) - 1;
1796 mask &= ~(1 << highbit);
1797
Tejun Heo81952c52006-05-15 20:57:47 +09001798 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001799 if (spd <= 1)
1800 return -EINVAL;
1801 spd--;
1802 mask &= (1 << spd) - 1;
1803 if (!mask)
1804 return -EINVAL;
1805
1806 ap->sata_spd_limit = mask;
1807
Tejun Heof15a1da2006-05-15 20:57:56 +09001808 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1809 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001810
1811 return 0;
1812}
1813
Tejun Heo3c567b72006-05-15 20:57:23 +09001814static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001815{
1816 u32 spd, limit;
1817
1818 if (ap->sata_spd_limit == UINT_MAX)
1819 limit = 0;
1820 else
1821 limit = fls(ap->sata_spd_limit);
1822
1823 spd = (*scontrol >> 4) & 0xf;
1824 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1825
1826 return spd != limit;
1827}
1828
1829/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001830 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001831 * @ap: Port in question
1832 *
1833 * Test whether the spd limit in SControl matches
1834 * @ap->sata_spd_limit. This function is used to determine
1835 * whether hardreset is necessary to apply SATA spd
1836 * configuration.
1837 *
1838 * LOCKING:
1839 * Inherited from caller.
1840 *
1841 * RETURNS:
1842 * 1 if SATA spd configuration is needed, 0 otherwise.
1843 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001844int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001845{
1846 u32 scontrol;
1847
Tejun Heo81952c52006-05-15 20:57:47 +09001848 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001849 return 0;
1850
Tejun Heo3c567b72006-05-15 20:57:23 +09001851 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001852}
1853
1854/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001855 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001856 * @ap: Port to set SATA spd for
1857 *
1858 * Set SATA spd of @ap according to sata_spd_limit.
1859 *
1860 * LOCKING:
1861 * Inherited from caller.
1862 *
1863 * RETURNS:
1864 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001865 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001866 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001867int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001868{
1869 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001870 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001871
Tejun Heo81952c52006-05-15 20:57:47 +09001872 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1873 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001874
Tejun Heo3c567b72006-05-15 20:57:23 +09001875 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001876 return 0;
1877
Tejun Heo81952c52006-05-15 20:57:47 +09001878 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1879 return rc;
1880
Tejun Heo1c3fae42006-04-02 20:53:28 +09001881 return 1;
1882}
1883
Alan Cox452503f2005-10-21 19:01:32 -04001884/*
1885 * This mode timing computation functionality is ported over from
1886 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1887 */
1888/*
1889 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1890 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1891 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001892 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001893 */
1894
1895static const struct ata_timing ata_timing[] = {
1896
1897 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1898 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1899 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1900 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1901
1902 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1903 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1904 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1905
1906/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001907
Alan Cox452503f2005-10-21 19:01:32 -04001908 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1909 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1910 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001911
Alan Cox452503f2005-10-21 19:01:32 -04001912 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1913 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1914 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1915
1916/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1917 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1918 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1919
1920 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1921 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1922 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1923
1924/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1925
1926 { 0xFF }
1927};
1928
1929#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1930#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1931
1932static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1933{
1934 q->setup = EZ(t->setup * 1000, T);
1935 q->act8b = EZ(t->act8b * 1000, T);
1936 q->rec8b = EZ(t->rec8b * 1000, T);
1937 q->cyc8b = EZ(t->cyc8b * 1000, T);
1938 q->active = EZ(t->active * 1000, T);
1939 q->recover = EZ(t->recover * 1000, T);
1940 q->cycle = EZ(t->cycle * 1000, T);
1941 q->udma = EZ(t->udma * 1000, UT);
1942}
1943
1944void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1945 struct ata_timing *m, unsigned int what)
1946{
1947 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1948 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1949 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1950 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1951 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1952 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1953 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1954 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1955}
1956
1957static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1958{
1959 const struct ata_timing *t;
1960
1961 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001962 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001963 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001964 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001965}
1966
1967int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1968 struct ata_timing *t, int T, int UT)
1969{
1970 const struct ata_timing *s;
1971 struct ata_timing p;
1972
1973 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001974 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001975 */
Alan Cox452503f2005-10-21 19:01:32 -04001976
1977 if (!(s = ata_timing_find_mode(speed)))
1978 return -EINVAL;
1979
Albert Lee75b1f2f2005-11-16 17:06:18 +08001980 memcpy(t, s, sizeof(*s));
1981
Alan Cox452503f2005-10-21 19:01:32 -04001982 /*
1983 * If the drive is an EIDE drive, it can tell us it needs extended
1984 * PIO/MW_DMA cycle timing.
1985 */
1986
1987 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1988 memset(&p, 0, sizeof(p));
1989 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1990 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1991 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1992 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1993 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1994 }
1995 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1996 }
1997
1998 /*
1999 * Convert the timing to bus clock counts.
2000 */
2001
Albert Lee75b1f2f2005-11-16 17:06:18 +08002002 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002003
2004 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002005 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2006 * S.M.A.R.T * and some other commands. We have to ensure that the
2007 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002008 */
2009
2010 if (speed > XFER_PIO_4) {
2011 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2012 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2013 }
2014
2015 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002016 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002017 */
2018
2019 if (t->act8b + t->rec8b < t->cyc8b) {
2020 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2021 t->rec8b = t->cyc8b - t->act8b;
2022 }
2023
2024 if (t->active + t->recover < t->cycle) {
2025 t->active += (t->cycle - (t->active + t->recover)) / 2;
2026 t->recover = t->cycle - t->active;
2027 }
2028
2029 return 0;
2030}
2031
Tejun Heocf176e12006-04-02 17:54:46 +09002032/**
2033 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002034 * @dev: Device to adjust xfer masks
2035 * @force_pio0: Force PIO0
2036 *
2037 * Adjust xfer masks of @dev downward. Note that this function
2038 * does not apply the change. Invoking ata_set_mode() afterwards
2039 * will apply the limit.
2040 *
2041 * LOCKING:
2042 * Inherited from caller.
2043 *
2044 * RETURNS:
2045 * 0 on success, negative errno on failure
2046 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002047int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09002048{
2049 unsigned long xfer_mask;
2050 int highbit;
2051
2052 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2053 dev->udma_mask);
2054
2055 if (!xfer_mask)
2056 goto fail;
2057 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2058 if (xfer_mask & ATA_MASK_UDMA)
2059 xfer_mask &= ~ATA_MASK_MWDMA;
2060
2061 highbit = fls(xfer_mask) - 1;
2062 xfer_mask &= ~(1 << highbit);
2063 if (force_pio0)
2064 xfer_mask &= 1 << ATA_SHIFT_PIO;
2065 if (!xfer_mask)
2066 goto fail;
2067
2068 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2069 &dev->udma_mask);
2070
Tejun Heof15a1da2006-05-15 20:57:56 +09002071 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2072 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002073
2074 return 0;
2075
2076 fail:
2077 return -EINVAL;
2078}
2079
Tejun Heo3373efd2006-05-15 20:57:53 +09002080static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
Tejun Heo83206a22006-03-24 15:25:31 +09002082 unsigned int err_mask;
2083 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Tejun Heoe8384602006-04-02 18:51:53 +09002085 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (dev->xfer_shift == ATA_SHIFT_PIO)
2087 dev->flags |= ATA_DFLAG_PIO;
2088
Tejun Heo3373efd2006-05-15 20:57:53 +09002089 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002090 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002091 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2092 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002093 return -EIO;
2094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Tejun Heo3373efd2006-05-15 20:57:53 +09002096 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002097 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002098 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002099
Tejun Heo23e71c32006-03-06 04:31:57 +09002100 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2101 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Tejun Heof15a1da2006-05-15 20:57:56 +09002103 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2104 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002105 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108/**
2109 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2110 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002111 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002113 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2114 * ata_set_mode() fails, pointer to the failing device is
2115 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002116 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002118 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002119 *
2120 * RETURNS:
2121 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002123int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
Tejun Heoe8e06192006-04-01 01:38:18 +09002125 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002126 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Tejun Heo3adcebb2006-05-15 20:57:37 +09002128 /* has private set_mode? */
2129 if (ap->ops->set_mode) {
2130 /* FIXME: make ->set_mode handle no device case and
2131 * return error code and failing device on failure.
2132 */
2133 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2134 if (ata_dev_enabled(&ap->device[i])) {
2135 ap->ops->set_mode(ap);
2136 break;
2137 }
2138 }
2139 return 0;
2140 }
2141
Tejun Heoa6d5a512006-03-06 04:31:57 +09002142 /* step 1: calculate xfer_mask */
2143 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002144 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002145
Tejun Heoe8e06192006-04-01 01:38:18 +09002146 dev = &ap->device[i];
2147
Tejun Heoe1211e32006-04-01 01:38:18 +09002148 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002149 continue;
2150
Tejun Heo3373efd2006-05-15 20:57:53 +09002151 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002152
Tejun Heoacf356b2006-03-24 14:07:50 +09002153 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2154 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2155 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2156 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002157
Tejun Heo4f659772006-04-01 01:38:18 +09002158 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002159 if (dev->dma_mode)
2160 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002161 }
Tejun Heo4f659772006-04-01 01:38:18 +09002162 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002163 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002164
2165 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002166 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2167 dev = &ap->device[i];
2168 if (!ata_dev_enabled(dev))
2169 continue;
2170
2171 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002172 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002173 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002174 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002175 }
2176
2177 dev->xfer_mode = dev->pio_mode;
2178 dev->xfer_shift = ATA_SHIFT_PIO;
2179 if (ap->ops->set_piomode)
2180 ap->ops->set_piomode(ap, dev);
2181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Tejun Heoa6d5a512006-03-06 04:31:57 +09002183 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002184 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2185 dev = &ap->device[i];
2186
2187 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2188 continue;
2189
2190 dev->xfer_mode = dev->dma_mode;
2191 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2192 if (ap->ops->set_dmamode)
2193 ap->ops->set_dmamode(ap, dev);
2194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002197 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002198 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Tejun Heoe1211e32006-04-01 01:38:18 +09002200 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002201 continue;
2202
Tejun Heo3373efd2006-05-15 20:57:53 +09002203 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002204 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002205 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Tejun Heoe8e06192006-04-01 01:38:18 +09002208 /* Record simplex status. If we selected DMA then the other
2209 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002210 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002211 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2212 ap->host_set->simplex_claimed = 1;
2213
Tejun Heoe8e06192006-04-01 01:38:18 +09002214 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (ap->ops->post_set_mode)
2216 ap->ops->post_set_mode(ap);
2217
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002218 out:
2219 if (rc)
2220 *r_failed_dev = dev;
2221 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
2223
2224/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002225 * ata_tf_to_host - issue ATA taskfile to host controller
2226 * @ap: port to which command is being issued
2227 * @tf: ATA taskfile register set
2228 *
2229 * Issues ATA taskfile register set to ATA host controller,
2230 * with proper synchronization with interrupt handler and
2231 * other threads.
2232 *
2233 * LOCKING:
2234 * spin_lock_irqsave(host_set lock)
2235 */
2236
2237static inline void ata_tf_to_host(struct ata_port *ap,
2238 const struct ata_taskfile *tf)
2239{
2240 ap->ops->tf_load(ap, tf);
2241 ap->ops->exec_command(ap, tf);
2242}
2243
2244/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 * ata_busy_sleep - sleep until BSY clears, or timeout
2246 * @ap: port containing status register to be polled
2247 * @tmout_pat: impatience timeout
2248 * @tmout: overall timeout
2249 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002250 * Sleep until ATA Status register bit BSY clears,
2251 * or a timeout occurs.
2252 *
2253 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 */
2255
Tejun Heo6f8b9952006-01-24 17:05:21 +09002256unsigned int ata_busy_sleep (struct ata_port *ap,
2257 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
2259 unsigned long timer_start, timeout;
2260 u8 status;
2261
2262 status = ata_busy_wait(ap, ATA_BUSY, 300);
2263 timer_start = jiffies;
2264 timeout = timer_start + tmout_pat;
2265 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2266 msleep(50);
2267 status = ata_busy_wait(ap, ATA_BUSY, 3);
2268 }
2269
2270 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002271 ata_port_printk(ap, KERN_WARNING,
2272 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
2274 timeout = timer_start + tmout;
2275 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2276 msleep(50);
2277 status = ata_chk_status(ap);
2278 }
2279
2280 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002281 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2282 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return 1;
2284 }
2285
2286 return 0;
2287}
2288
2289static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2290{
2291 struct ata_ioports *ioaddr = &ap->ioaddr;
2292 unsigned int dev0 = devmask & (1 << 0);
2293 unsigned int dev1 = devmask & (1 << 1);
2294 unsigned long timeout;
2295
2296 /* if device 0 was found in ata_devchk, wait for its
2297 * BSY bit to clear
2298 */
2299 if (dev0)
2300 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2301
2302 /* if device 1 was found in ata_devchk, wait for
2303 * register access, then wait for BSY to clear
2304 */
2305 timeout = jiffies + ATA_TMOUT_BOOT;
2306 while (dev1) {
2307 u8 nsect, lbal;
2308
2309 ap->ops->dev_select(ap, 1);
2310 if (ap->flags & ATA_FLAG_MMIO) {
2311 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2312 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2313 } else {
2314 nsect = inb(ioaddr->nsect_addr);
2315 lbal = inb(ioaddr->lbal_addr);
2316 }
2317 if ((nsect == 1) && (lbal == 1))
2318 break;
2319 if (time_after(jiffies, timeout)) {
2320 dev1 = 0;
2321 break;
2322 }
2323 msleep(50); /* give drive a breather */
2324 }
2325 if (dev1)
2326 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2327
2328 /* is all this really necessary? */
2329 ap->ops->dev_select(ap, 0);
2330 if (dev1)
2331 ap->ops->dev_select(ap, 1);
2332 if (dev0)
2333 ap->ops->dev_select(ap, 0);
2334}
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336static unsigned int ata_bus_softreset(struct ata_port *ap,
2337 unsigned int devmask)
2338{
2339 struct ata_ioports *ioaddr = &ap->ioaddr;
2340
2341 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2342
2343 /* software reset. causes dev0 to be selected */
2344 if (ap->flags & ATA_FLAG_MMIO) {
2345 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2346 udelay(20); /* FIXME: flush */
2347 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2348 udelay(20); /* FIXME: flush */
2349 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2350 } else {
2351 outb(ap->ctl, ioaddr->ctl_addr);
2352 udelay(10);
2353 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2354 udelay(10);
2355 outb(ap->ctl, ioaddr->ctl_addr);
2356 }
2357
2358 /* spec mandates ">= 2ms" before checking status.
2359 * We wait 150ms, because that was the magic delay used for
2360 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2361 * between when the ATA command register is written, and then
2362 * status is checked. Because waiting for "a while" before
2363 * checking status is fine, post SRST, we perform this magic
2364 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002365 *
2366 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 */
2368 msleep(150);
2369
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002370 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002371 * the bus shows 0xFF because the odd clown forgets the D7
2372 * pulldown resistor.
2373 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002374 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002375 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002376 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002377 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 ata_bus_post_reset(ap, devmask);
2380
2381 return 0;
2382}
2383
2384/**
2385 * ata_bus_reset - reset host port and associated ATA channel
2386 * @ap: port to reset
2387 *
2388 * This is typically the first time we actually start issuing
2389 * commands to the ATA channel. We wait for BSY to clear, then
2390 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2391 * result. Determine what devices, if any, are on the channel
2392 * by looking at the device 0/1 error register. Look at the signature
2393 * stored in each device's taskfile registers, to determine if
2394 * the device is ATA or ATAPI.
2395 *
2396 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002397 * PCI/etc. bus probe sem.
2398 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 *
2400 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002401 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 */
2403
2404void ata_bus_reset(struct ata_port *ap)
2405{
2406 struct ata_ioports *ioaddr = &ap->ioaddr;
2407 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2408 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002409 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2412
2413 /* determine if device 0/1 are present */
2414 if (ap->flags & ATA_FLAG_SATA_RESET)
2415 dev0 = 1;
2416 else {
2417 dev0 = ata_devchk(ap, 0);
2418 if (slave_possible)
2419 dev1 = ata_devchk(ap, 1);
2420 }
2421
2422 if (dev0)
2423 devmask |= (1 << 0);
2424 if (dev1)
2425 devmask |= (1 << 1);
2426
2427 /* select device 0 again */
2428 ap->ops->dev_select(ap, 0);
2429
2430 /* issue bus reset */
2431 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002432 if (ata_bus_softreset(ap, devmask))
2433 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435 /*
2436 * determine by signature whether we have ATA or ATAPI devices
2437 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002438 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002440 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442 /* re-enable interrupts */
2443 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2444 ata_irq_on(ap);
2445
2446 /* is double-select really necessary? */
2447 if (ap->device[1].class != ATA_DEV_NONE)
2448 ap->ops->dev_select(ap, 1);
2449 if (ap->device[0].class != ATA_DEV_NONE)
2450 ap->ops->dev_select(ap, 0);
2451
2452 /* if no devices were detected, disable this port */
2453 if ((ap->device[0].class == ATA_DEV_NONE) &&
2454 (ap->device[1].class == ATA_DEV_NONE))
2455 goto err_out;
2456
2457 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2458 /* set up device control for ATA_FLAG_SATA_RESET */
2459 if (ap->flags & ATA_FLAG_MMIO)
2460 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2461 else
2462 outb(ap->ctl, ioaddr->ctl_addr);
2463 }
2464
2465 DPRINTK("EXIT\n");
2466 return;
2467
2468err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002469 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 ap->ops->port_disable(ap);
2471
2472 DPRINTK("EXIT\n");
2473}
2474
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002475/**
2476 * sata_phy_debounce - debounce SATA phy status
2477 * @ap: ATA port to debounce SATA phy status for
2478 * @params: timing parameters { interval, duratinon, timeout } in msec
2479 *
2480 * Make sure SStatus of @ap reaches stable state, determined by
2481 * holding the same value where DET is not 1 for @duration polled
2482 * every @interval, before @timeout. Timeout constraints the
2483 * beginning of the stable state. Because, after hot unplugging,
2484 * DET gets stuck at 1 on some controllers, this functions waits
2485 * until timeout then returns 0 if DET is stable at 1.
2486 *
2487 * LOCKING:
2488 * Kernel thread context (may sleep)
2489 *
2490 * RETURNS:
2491 * 0 on success, -errno on failure.
2492 */
2493int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002494{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002495 unsigned long interval_msec = params[0];
2496 unsigned long duration = params[1] * HZ / 1000;
2497 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2498 unsigned long last_jiffies;
2499 u32 last, cur;
2500 int rc;
2501
2502 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2503 return rc;
2504 cur &= 0xf;
2505
2506 last = cur;
2507 last_jiffies = jiffies;
2508
2509 while (1) {
2510 msleep(interval_msec);
2511 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2512 return rc;
2513 cur &= 0xf;
2514
2515 /* DET stable? */
2516 if (cur == last) {
2517 if (cur == 1 && time_before(jiffies, timeout))
2518 continue;
2519 if (time_after(jiffies, last_jiffies + duration))
2520 return 0;
2521 continue;
2522 }
2523
2524 /* unstable, start over */
2525 last = cur;
2526 last_jiffies = jiffies;
2527
2528 /* check timeout */
2529 if (time_after(jiffies, timeout))
2530 return -EBUSY;
2531 }
2532}
2533
2534/**
2535 * sata_phy_resume - resume SATA phy
2536 * @ap: ATA port to resume SATA phy for
2537 * @params: timing parameters { interval, duratinon, timeout } in msec
2538 *
2539 * Resume SATA phy of @ap and debounce it.
2540 *
2541 * LOCKING:
2542 * Kernel thread context (may sleep)
2543 *
2544 * RETURNS:
2545 * 0 on success, -errno on failure.
2546 */
2547int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2548{
2549 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002550 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002551
Tejun Heo81952c52006-05-15 20:57:47 +09002552 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2553 return rc;
2554
Tejun Heo852ee162006-04-01 01:38:18 +09002555 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002556
2557 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2558 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002559
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002560 /* Some PHYs react badly if SStatus is pounded immediately
2561 * after resuming. Delay 200ms before debouncing.
2562 */
2563 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002564
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002565 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002566}
2567
Tejun Heof5914a42006-05-31 18:27:48 +09002568static void ata_wait_spinup(struct ata_port *ap)
2569{
2570 struct ata_eh_context *ehc = &ap->eh_context;
2571 unsigned long end, secs;
2572 int rc;
2573
2574 /* first, debounce phy if SATA */
2575 if (ap->cbl == ATA_CBL_SATA) {
2576 rc = sata_phy_debounce(ap, sata_deb_timing_eh);
2577
2578 /* if debounced successfully and offline, no need to wait */
2579 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
2580 return;
2581 }
2582
2583 /* okay, let's give the drive time to spin up */
2584 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
2585 secs = ((end - jiffies) + HZ - 1) / HZ;
2586
2587 if (time_after(jiffies, end))
2588 return;
2589
2590 if (secs > 5)
2591 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
2592 "(%lu secs)\n", secs);
2593
2594 schedule_timeout_uninterruptible(end - jiffies);
2595}
2596
2597/**
2598 * ata_std_prereset - prepare for reset
2599 * @ap: ATA port to be reset
2600 *
2601 * @ap is about to be reset. Initialize it.
2602 *
2603 * LOCKING:
2604 * Kernel thread context (may sleep)
2605 *
2606 * RETURNS:
2607 * 0 on success, -errno otherwise.
2608 */
2609int ata_std_prereset(struct ata_port *ap)
2610{
2611 struct ata_eh_context *ehc = &ap->eh_context;
2612 const unsigned long *timing;
2613 int rc;
2614
2615 /* hotplug? */
2616 if (ehc->i.flags & ATA_EHI_HOTPLUGGED) {
2617 if (ap->flags & ATA_FLAG_HRST_TO_RESUME)
2618 ehc->i.action |= ATA_EH_HARDRESET;
2619 if (ap->flags & ATA_FLAG_SKIP_D2H_BSY)
2620 ata_wait_spinup(ap);
2621 }
2622
2623 /* if we're about to do hardreset, nothing more to do */
2624 if (ehc->i.action & ATA_EH_HARDRESET)
2625 return 0;
2626
2627 /* if SATA, resume phy */
2628 if (ap->cbl == ATA_CBL_SATA) {
2629 if (ap->flags & ATA_FLAG_LOADING)
2630 timing = sata_deb_timing_boot;
2631 else
2632 timing = sata_deb_timing_eh;
2633
2634 rc = sata_phy_resume(ap, timing);
2635 if (rc && rc != -EOPNOTSUPP) {
2636 /* phy resume failed */
2637 ata_port_printk(ap, KERN_WARNING, "failed to resume "
2638 "link for reset (errno=%d)\n", rc);
2639 return rc;
2640 }
2641 }
2642
2643 /* Wait for !BSY if the controller can wait for the first D2H
2644 * Reg FIS and we don't know that no device is attached.
2645 */
2646 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
2647 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2648
2649 return 0;
2650}
2651
Tejun Heoc2bd5802006-01-24 17:05:22 +09002652/**
2653 * ata_std_softreset - reset host port via ATA SRST
2654 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002655 * @classes: resulting classes of attached devices
2656 *
Tejun Heo52783c52006-05-31 18:28:22 +09002657 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002658 *
2659 * LOCKING:
2660 * Kernel thread context (may sleep)
2661 *
2662 * RETURNS:
2663 * 0 on success, -errno otherwise.
2664 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002665int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002666{
2667 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2668 unsigned int devmask = 0, err_mask;
2669 u8 err;
2670
2671 DPRINTK("ENTER\n");
2672
Tejun Heo81952c52006-05-15 20:57:47 +09002673 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002674 classes[0] = ATA_DEV_NONE;
2675 goto out;
2676 }
2677
Tejun Heoc2bd5802006-01-24 17:05:22 +09002678 /* determine if device 0/1 are present */
2679 if (ata_devchk(ap, 0))
2680 devmask |= (1 << 0);
2681 if (slave_possible && ata_devchk(ap, 1))
2682 devmask |= (1 << 1);
2683
Tejun Heoc2bd5802006-01-24 17:05:22 +09002684 /* select device 0 again */
2685 ap->ops->dev_select(ap, 0);
2686
2687 /* issue bus reset */
2688 DPRINTK("about to softreset, devmask=%x\n", devmask);
2689 err_mask = ata_bus_softreset(ap, devmask);
2690 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002691 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2692 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002693 return -EIO;
2694 }
2695
2696 /* determine by signature whether we have ATA or ATAPI devices */
2697 classes[0] = ata_dev_try_classify(ap, 0, &err);
2698 if (slave_possible && err != 0x81)
2699 classes[1] = ata_dev_try_classify(ap, 1, &err);
2700
Tejun Heo3a397462006-02-10 23:58:48 +09002701 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002702 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2703 return 0;
2704}
2705
2706/**
2707 * sata_std_hardreset - reset host port via SATA phy reset
2708 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002709 * @class: resulting class of attached device
2710 *
2711 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002712 *
2713 * LOCKING:
2714 * Kernel thread context (may sleep)
2715 *
2716 * RETURNS:
2717 * 0 on success, -errno otherwise.
2718 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002719int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002720{
Tejun Heo852ee162006-04-01 01:38:18 +09002721 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002722 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002723
Tejun Heoc2bd5802006-01-24 17:05:22 +09002724 DPRINTK("ENTER\n");
2725
Tejun Heo3c567b72006-05-15 20:57:23 +09002726 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002727 /* SATA spec says nothing about how to reconfigure
2728 * spd. To be on the safe side, turn off phy during
2729 * reconfiguration. This works for at least ICH7 AHCI
2730 * and Sil3124.
2731 */
Tejun Heo81952c52006-05-15 20:57:47 +09002732 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2733 return rc;
2734
Tejun Heo1c3fae42006-04-02 20:53:28 +09002735 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002736
2737 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2738 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002739
Tejun Heo3c567b72006-05-15 20:57:23 +09002740 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002741 }
2742
2743 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002744 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2745 return rc;
2746
Tejun Heo852ee162006-04-01 01:38:18 +09002747 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002748
2749 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2750 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002751
Tejun Heo1c3fae42006-04-02 20:53:28 +09002752 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002753 * 10.4.2 says at least 1 ms.
2754 */
2755 msleep(1);
2756
Tejun Heo1c3fae42006-04-02 20:53:28 +09002757 /* bring phy back */
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002758 sata_phy_resume(ap, sata_deb_timing_eh);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002759
Tejun Heoc2bd5802006-01-24 17:05:22 +09002760 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002761 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002762 *class = ATA_DEV_NONE;
2763 DPRINTK("EXIT, link offline\n");
2764 return 0;
2765 }
2766
2767 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002768 ata_port_printk(ap, KERN_ERR,
2769 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002770 return -EIO;
2771 }
2772
Tejun Heo3a397462006-02-10 23:58:48 +09002773 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2774
Tejun Heoc2bd5802006-01-24 17:05:22 +09002775 *class = ata_dev_try_classify(ap, 0, NULL);
2776
2777 DPRINTK("EXIT, class=%u\n", *class);
2778 return 0;
2779}
2780
2781/**
2782 * ata_std_postreset - standard postreset callback
2783 * @ap: the target ata_port
2784 * @classes: classes of attached devices
2785 *
2786 * This function is invoked after a successful reset. Note that
2787 * the device might have been reset more than once using
2788 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002789 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09002790 * LOCKING:
2791 * Kernel thread context (may sleep)
2792 */
2793void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2794{
Tejun Heodc2b3512006-05-15 20:58:00 +09002795 u32 serror;
2796
Tejun Heoc2bd5802006-01-24 17:05:22 +09002797 DPRINTK("ENTER\n");
2798
Tejun Heoc2bd5802006-01-24 17:05:22 +09002799 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002800 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002801
Tejun Heodc2b3512006-05-15 20:58:00 +09002802 /* clear SError */
2803 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2804 sata_scr_write(ap, SCR_ERROR, serror);
2805
Tejun Heo3a397462006-02-10 23:58:48 +09002806 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002807 if (!ap->ops->error_handler) {
2808 /* FIXME: hack. create a hook instead */
2809 if (ap->ioaddr.ctl_addr)
2810 ata_irq_on(ap);
2811 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002812
2813 /* is double-select really necessary? */
2814 if (classes[0] != ATA_DEV_NONE)
2815 ap->ops->dev_select(ap, 1);
2816 if (classes[1] != ATA_DEV_NONE)
2817 ap->ops->dev_select(ap, 0);
2818
Tejun Heo3a397462006-02-10 23:58:48 +09002819 /* bail out if no device is present */
2820 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2821 DPRINTK("EXIT, no device\n");
2822 return;
2823 }
2824
2825 /* set up device control */
2826 if (ap->ioaddr.ctl_addr) {
2827 if (ap->flags & ATA_FLAG_MMIO)
2828 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2829 else
2830 outb(ap->ctl, ap->ioaddr.ctl_addr);
2831 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002832
2833 DPRINTK("EXIT\n");
2834}
2835
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002836/**
Tejun Heo623a3122006-03-05 17:55:58 +09002837 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002838 * @dev: device to compare against
2839 * @new_class: class of the new device
2840 * @new_id: IDENTIFY page of the new device
2841 *
2842 * Compare @new_class and @new_id against @dev and determine
2843 * whether @dev is the device indicated by @new_class and
2844 * @new_id.
2845 *
2846 * LOCKING:
2847 * None.
2848 *
2849 * RETURNS:
2850 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2851 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002852static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2853 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002854{
2855 const u16 *old_id = dev->id;
2856 unsigned char model[2][41], serial[2][21];
2857 u64 new_n_sectors;
2858
2859 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002860 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2861 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002862 return 0;
2863 }
2864
2865 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2866 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2867 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2868 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2869 new_n_sectors = ata_id_n_sectors(new_id);
2870
2871 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002872 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2873 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002874 return 0;
2875 }
2876
2877 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002878 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2879 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002880 return 0;
2881 }
2882
2883 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002884 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2885 "%llu != %llu\n",
2886 (unsigned long long)dev->n_sectors,
2887 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002888 return 0;
2889 }
2890
2891 return 1;
2892}
2893
2894/**
2895 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002896 * @dev: device to revalidate
2897 * @post_reset: is this revalidation after reset?
2898 *
2899 * Re-read IDENTIFY page and make sure @dev is still attached to
2900 * the port.
2901 *
2902 * LOCKING:
2903 * Kernel thread context (may sleep)
2904 *
2905 * RETURNS:
2906 * 0 on success, negative errno otherwise
2907 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002908int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002909{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002910 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002911 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002912 int rc;
2913
Tejun Heo5eb45c02006-04-02 18:51:52 +09002914 if (!ata_dev_enabled(dev)) {
2915 rc = -ENODEV;
2916 goto fail;
2917 }
Tejun Heo623a3122006-03-05 17:55:58 +09002918
Tejun Heofe635c72006-05-15 20:57:35 +09002919 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002920 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002921 if (rc)
2922 goto fail;
2923
2924 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002925 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002926 rc = -ENODEV;
2927 goto fail;
2928 }
2929
Tejun Heofe635c72006-05-15 20:57:35 +09002930 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002931
2932 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002933 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002934 if (rc == 0)
2935 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002936
2937 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002938 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002939 return rc;
2940}
2941
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002942static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002943 "WDC AC11000H", NULL,
2944 "WDC AC22100H", NULL,
2945 "WDC AC32500H", NULL,
2946 "WDC AC33100H", NULL,
2947 "WDC AC31600H", NULL,
2948 "WDC AC32100H", "24.09P07",
2949 "WDC AC23200L", "21.10N21",
2950 "Compaq CRD-8241B", NULL,
2951 "CRD-8400B", NULL,
2952 "CRD-8480B", NULL,
2953 "CRD-8482B", NULL,
2954 "CRD-84", NULL,
2955 "SanDisk SDP3B", NULL,
2956 "SanDisk SDP3B-64", NULL,
2957 "SANYO CD-ROM CRD", NULL,
2958 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002959 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002960 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002961 "Toshiba CD-ROM XM-6202B", NULL,
2962 "TOSHIBA CD-ROM XM-1702BC", NULL,
2963 "CD-532E-A", NULL,
2964 "E-IDE CD-ROM CR-840", NULL,
2965 "CD-ROM Drive/F5A", NULL,
2966 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002967 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002968 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002969 "SanDisk SDP3B-64", NULL,
2970 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2971 "_NEC DV5800A", NULL,
2972 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002974
Alan Coxf4b15fe2006-03-22 15:54:04 +00002975static int ata_strim(char *s, size_t len)
2976{
2977 len = strnlen(s, len);
2978
2979 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2980 while ((len > 0) && (s[len - 1] == ' ')) {
2981 len--;
2982 s[len] = 0;
2983 }
2984 return len;
2985}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Jeff Garzik057ace52005-10-22 14:27:05 -04002987static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002989 unsigned char model_num[40];
2990 unsigned char model_rev[16];
2991 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 int i;
2993
Albert Lee3a778272006-06-22 13:00:25 +08002994 /* We don't support polling DMA.
2995 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
2996 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
2997 */
2998 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
2999 (dev->flags & ATA_DFLAG_CDB_INTR))
3000 return 1;
3001
Alan Coxf4b15fe2006-03-22 15:54:04 +00003002 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
3003 sizeof(model_num));
3004 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
3005 sizeof(model_rev));
3006 nlen = ata_strim(model_num, sizeof(model_num));
3007 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
Alan Coxf4b15fe2006-03-22 15:54:04 +00003009 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
3010 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
3011 if (ata_dma_blacklist[i+1] == NULL)
3012 return 1;
3013 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
3014 return 1;
3015 }
3016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 return 0;
3018}
3019
Tejun Heoa6d5a512006-03-06 04:31:57 +09003020/**
3021 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003022 * @dev: Device to compute xfermask for
3023 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003024 * Compute supported xfermask of @dev and store it in
3025 * dev->*_mask. This function is responsible for applying all
3026 * known limits including host controller limits, device
3027 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003028 *
Tejun Heo600511e2006-03-25 11:14:07 +09003029 * FIXME: The current implementation limits all transfer modes to
3030 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09003031 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09003032 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09003033 * LOCKING:
3034 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003035 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003036static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037{
Tejun Heo3373efd2006-05-15 20:57:53 +09003038 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003039 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003040 unsigned long xfer_mask;
3041 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Tejun Heo565083e2006-04-02 17:54:47 +09003043 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3044 ap->mwdma_mask, ap->udma_mask);
3045
3046 /* Apply cable rule here. Don't apply it early because when
3047 * we handle hot plug the cable type can itself change.
3048 */
3049 if (ap->cbl == ATA_CBL_PATA40)
3050 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Alan Cox5444a6f2006-03-27 18:58:20 +01003052 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09003053 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3054 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09003055
3056 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003057 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09003058
3059 if (ata_dev_disabled(d)) {
3060 /* to avoid violating device selection timing */
3061 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3062 UINT_MAX, UINT_MAX);
3063 continue;
3064 }
3065
3066 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3067 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003068 xfer_mask &= ata_id_xfermask(d->id);
3069 if (ata_dma_blacklisted(d))
3070 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 }
3072
Tejun Heoa6d5a512006-03-06 04:31:57 +09003073 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003074 ata_dev_printk(dev, KERN_WARNING,
3075 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003076
Alan Cox5444a6f2006-03-27 18:58:20 +01003077 if (hs->flags & ATA_HOST_SIMPLEX) {
3078 if (hs->simplex_claimed)
3079 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3080 }
Tejun Heo565083e2006-04-02 17:54:47 +09003081
Alan Cox5444a6f2006-03-27 18:58:20 +01003082 if (ap->ops->mode_filter)
3083 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3084
Tejun Heo565083e2006-04-02 17:54:47 +09003085 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3086 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087}
3088
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 * @dev: Device to which command will be sent
3092 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003093 * Issue SET FEATURES - XFER MODE command to device @dev
3094 * on port @ap.
3095 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003097 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003098 *
3099 * RETURNS:
3100 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 */
3102
Tejun Heo3373efd2006-05-15 20:57:53 +09003103static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104{
Tejun Heoa0123702005-12-13 14:49:31 +09003105 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003106 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
3108 /* set up set-features taskfile */
3109 DPRINTK("set features - xfer mode\n");
3110
Tejun Heo3373efd2006-05-15 20:57:53 +09003111 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003112 tf.command = ATA_CMD_SET_FEATURES;
3113 tf.feature = SETFEATURES_XFER;
3114 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3115 tf.protocol = ATA_PROT_NODATA;
3116 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Tejun Heo3373efd2006-05-15 20:57:53 +09003118 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Tejun Heo83206a22006-03-24 15:25:31 +09003120 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3121 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122}
3123
3124/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003125 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ec2005-05-12 15:29:42 -04003126 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003127 * @heads: Number of heads (taskfile parameter)
3128 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003129 *
3130 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003131 * Kernel thread context (may sleep)
3132 *
3133 * RETURNS:
3134 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003135 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003136static unsigned int ata_dev_init_params(struct ata_device *dev,
3137 u16 heads, u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003138{
Tejun Heoa0123702005-12-13 14:49:31 +09003139 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003140 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003141
3142 /* Number of sectors per track 1-255. Number of heads 1-16 */
3143 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003144 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003145
3146 /* set up init dev params taskfile */
3147 DPRINTK("init dev params \n");
3148
Tejun Heo3373efd2006-05-15 20:57:53 +09003149 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003150 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3151 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3152 tf.protocol = ATA_PROT_NODATA;
3153 tf.nsect = sectors;
3154 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003155
Tejun Heo3373efd2006-05-15 20:57:53 +09003156 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003157
Tejun Heo6aff8f12006-02-15 18:24:09 +09003158 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3159 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003160}
3161
3162/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003163 * ata_sg_clean - Unmap DMA memory associated with command
3164 * @qc: Command containing DMA memory to be released
3165 *
3166 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 *
3168 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003169 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 */
3171
3172static void ata_sg_clean(struct ata_queued_cmd *qc)
3173{
3174 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003175 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003177 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Tejun Heoa4631472006-02-11 19:11:13 +09003179 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3180 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
3182 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003183 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003185 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003187 /* if we padded the buffer out to 32-bit bound, and data
3188 * xfer direction is from-device, we must copy from the
3189 * pad buffer back into the supplied buffer
3190 */
3191 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3192 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3193
3194 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003195 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003196 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003197 /* restore last sg */
3198 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3199 if (pad_buf) {
3200 struct scatterlist *psg = &qc->pad_sgent;
3201 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3202 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003203 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003204 }
3205 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003206 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003207 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003208 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3209 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003210 /* restore sg */
3211 sg->length += qc->pad_len;
3212 if (pad_buf)
3213 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3214 pad_buf, qc->pad_len);
3215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003218 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219}
3220
3221/**
3222 * ata_fill_sg - Fill PCI IDE PRD table
3223 * @qc: Metadata associated with taskfile to be transferred
3224 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003225 * Fill PCI IDE PRD (scatter-gather) table with segments
3226 * associated with the current disk command.
3227 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003229 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 *
3231 */
3232static void ata_fill_sg(struct ata_queued_cmd *qc)
3233{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003235 struct scatterlist *sg;
3236 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Tejun Heoa4631472006-02-11 19:11:13 +09003238 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003239 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
3241 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003242 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 u32 addr, offset;
3244 u32 sg_len, len;
3245
3246 /* determine if physical DMA addr spans 64K boundary.
3247 * Note h/w doesn't support 64-bit, so we unconditionally
3248 * truncate dma_addr_t to u32.
3249 */
3250 addr = (u32) sg_dma_address(sg);
3251 sg_len = sg_dma_len(sg);
3252
3253 while (sg_len) {
3254 offset = addr & 0xffff;
3255 len = sg_len;
3256 if ((offset + sg_len) > 0x10000)
3257 len = 0x10000 - offset;
3258
3259 ap->prd[idx].addr = cpu_to_le32(addr);
3260 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3261 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3262
3263 idx++;
3264 sg_len -= len;
3265 addr += len;
3266 }
3267 }
3268
3269 if (idx)
3270 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3271}
3272/**
3273 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3274 * @qc: Metadata associated with taskfile to check
3275 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003276 * Allow low-level driver to filter ATA PACKET commands, returning
3277 * a status indicating whether or not it is OK to use DMA for the
3278 * supplied PACKET command.
3279 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003281 * spin_lock_irqsave(host_set lock)
3282 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 * RETURNS: 0 when ATAPI DMA can be used
3284 * nonzero otherwise
3285 */
3286int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3287{
3288 struct ata_port *ap = qc->ap;
3289 int rc = 0; /* Assume ATAPI DMA is OK by default */
3290
3291 if (ap->ops->check_atapi_dma)
3292 rc = ap->ops->check_atapi_dma(qc);
3293
3294 return rc;
3295}
3296/**
3297 * ata_qc_prep - Prepare taskfile for submission
3298 * @qc: Metadata associated with taskfile to be prepared
3299 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003300 * Prepare ATA taskfile for submission.
3301 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 * LOCKING:
3303 * spin_lock_irqsave(host_set lock)
3304 */
3305void ata_qc_prep(struct ata_queued_cmd *qc)
3306{
3307 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3308 return;
3309
3310 ata_fill_sg(qc);
3311}
3312
Brian Kinge46834c2006-03-17 17:04:03 -06003313void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3314
Jeff Garzik0cba6322005-05-30 19:49:12 -04003315/**
3316 * ata_sg_init_one - Associate command with memory buffer
3317 * @qc: Command to be associated
3318 * @buf: Memory buffer
3319 * @buflen: Length of memory buffer, in bytes.
3320 *
3321 * Initialize the data-related elements of queued_cmd @qc
3322 * to point to a single memory buffer, @buf of byte length @buflen.
3323 *
3324 * LOCKING:
3325 * spin_lock_irqsave(host_set lock)
3326 */
3327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3329{
3330 struct scatterlist *sg;
3331
3332 qc->flags |= ATA_QCFLAG_SINGLE;
3333
3334 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003335 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003337 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05003339 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003341 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003342 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343}
3344
Jeff Garzik0cba6322005-05-30 19:49:12 -04003345/**
3346 * ata_sg_init - Associate command with scatter-gather table.
3347 * @qc: Command to be associated
3348 * @sg: Scatter-gather table.
3349 * @n_elem: Number of elements in s/g table.
3350 *
3351 * Initialize the data-related elements of queued_cmd @qc
3352 * to point to a scatter-gather table @sg, containing @n_elem
3353 * elements.
3354 *
3355 * LOCKING:
3356 * spin_lock_irqsave(host_set lock)
3357 */
3358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3360 unsigned int n_elem)
3361{
3362 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003363 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003365 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366}
3367
3368/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003369 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3370 * @qc: Command with memory buffer to be mapped.
3371 *
3372 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 *
3374 * LOCKING:
3375 * spin_lock_irqsave(host_set lock)
3376 *
3377 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003378 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 */
3380
3381static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3382{
3383 struct ata_port *ap = qc->ap;
3384 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003385 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003387 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003389 /* we must lengthen transfers to end on a 32-bit boundary */
3390 qc->pad_len = sg->length & 3;
3391 if (qc->pad_len) {
3392 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3393 struct scatterlist *psg = &qc->pad_sgent;
3394
Tejun Heoa4631472006-02-11 19:11:13 +09003395 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003396
3397 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3398
3399 if (qc->tf.flags & ATA_TFLAG_WRITE)
3400 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3401 qc->pad_len);
3402
3403 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3404 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3405 /* trim sg */
3406 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003407 if (sg->length == 0)
3408 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003409
3410 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3411 sg->length, qc->pad_len);
3412 }
3413
Tejun Heo2e242fa2006-02-20 23:48:38 +09003414 if (trim_sg) {
3415 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003416 goto skip_map;
3417 }
3418
Brian King2f1f6102006-03-23 17:30:15 -06003419 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003420 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003421 if (dma_mapping_error(dma_address)) {
3422 /* restore sg */
3423 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
3427 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003428 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Tejun Heo2e242fa2006-02-20 23:48:38 +09003430skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3432 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3433
3434 return 0;
3435}
3436
3437/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003438 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3439 * @qc: Command with scatter-gather table to be mapped.
3440 *
3441 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 *
3443 * LOCKING:
3444 * spin_lock_irqsave(host_set lock)
3445 *
3446 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003447 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 *
3449 */
3450
3451static int ata_sg_setup(struct ata_queued_cmd *qc)
3452{
3453 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003454 struct scatterlist *sg = qc->__sg;
3455 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003456 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
3458 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003459 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003461 /* we must lengthen transfers to end on a 32-bit boundary */
3462 qc->pad_len = lsg->length & 3;
3463 if (qc->pad_len) {
3464 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3465 struct scatterlist *psg = &qc->pad_sgent;
3466 unsigned int offset;
3467
Tejun Heoa4631472006-02-11 19:11:13 +09003468 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003469
3470 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3471
3472 /*
3473 * psg->page/offset are used to copy to-be-written
3474 * data in this function or read data in ata_sg_clean.
3475 */
3476 offset = lsg->offset + lsg->length - qc->pad_len;
3477 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3478 psg->offset = offset_in_page(offset);
3479
3480 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3481 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3482 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003483 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003484 }
3485
3486 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3487 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3488 /* trim last sg */
3489 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003490 if (lsg->length == 0)
3491 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003492
3493 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3494 qc->n_elem - 1, lsg->length, qc->pad_len);
3495 }
3496
Jeff Garzike1410f22005-11-14 14:06:26 -05003497 pre_n_elem = qc->n_elem;
3498 if (trim_sg && pre_n_elem)
3499 pre_n_elem--;
3500
3501 if (!pre_n_elem) {
3502 n_elem = 0;
3503 goto skip_map;
3504 }
3505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003507 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003508 if (n_elem < 1) {
3509 /* restore last sg */
3510 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
3514 DPRINTK("%d sg elements mapped\n", n_elem);
3515
Jeff Garzike1410f22005-11-14 14:06:26 -05003516skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 qc->n_elem = n_elem;
3518
3519 return 0;
3520}
3521
3522/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003523 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003524 * @buf: Buffer to swap
3525 * @buf_words: Number of 16-bit words in buffer.
3526 *
3527 * Swap halves of 16-bit words if needed to convert from
3528 * little-endian byte order to native cpu byte order, or
3529 * vice-versa.
3530 *
3531 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003532 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003533 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534void swap_buf_le16(u16 *buf, unsigned int buf_words)
3535{
3536#ifdef __BIG_ENDIAN
3537 unsigned int i;
3538
3539 for (i = 0; i < buf_words; i++)
3540 buf[i] = le16_to_cpu(buf[i]);
3541#endif /* __BIG_ENDIAN */
3542}
3543
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003544/**
3545 * ata_mmio_data_xfer - Transfer data by MMIO
Jeff Garzikbf717b112006-06-13 20:27:03 -04003546 * @adev: device for this I/O
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003547 * @buf: data buffer
3548 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003549 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003550 *
3551 * Transfer data from/to the device data register by MMIO.
3552 *
3553 * LOCKING:
3554 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003555 */
3556
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003557void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
3558 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003560 struct ata_port *ap = adev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 unsigned int i;
3562 unsigned int words = buflen >> 1;
3563 u16 *buf16 = (u16 *) buf;
3564 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3565
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003566 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 if (write_data) {
3568 for (i = 0; i < words; i++)
3569 writew(le16_to_cpu(buf16[i]), mmio);
3570 } else {
3571 for (i = 0; i < words; i++)
3572 buf16[i] = cpu_to_le16(readw(mmio));
3573 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003574
3575 /* Transfer trailing 1 byte, if any. */
3576 if (unlikely(buflen & 0x01)) {
3577 u16 align_buf[1] = { 0 };
3578 unsigned char *trailing_buf = buf + buflen - 1;
3579
3580 if (write_data) {
3581 memcpy(align_buf, trailing_buf, 1);
3582 writew(le16_to_cpu(align_buf[0]), mmio);
3583 } else {
3584 align_buf[0] = cpu_to_le16(readw(mmio));
3585 memcpy(trailing_buf, align_buf, 1);
3586 }
3587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588}
3589
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003590/**
3591 * ata_pio_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003592 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003593 * @buf: data buffer
3594 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003595 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003596 *
3597 * Transfer data from/to the device data register by PIO.
3598 *
3599 * LOCKING:
3600 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003601 */
3602
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003603void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf,
3604 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003606 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003607 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003609 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003611 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003613 insw(ap->ioaddr.data_addr, buf, words);
3614
3615 /* Transfer trailing 1 byte, if any. */
3616 if (unlikely(buflen & 0x01)) {
3617 u16 align_buf[1] = { 0 };
3618 unsigned char *trailing_buf = buf + buflen - 1;
3619
3620 if (write_data) {
3621 memcpy(align_buf, trailing_buf, 1);
3622 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3623 } else {
3624 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3625 memcpy(trailing_buf, align_buf, 1);
3626 }
3627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628}
3629
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003630/**
Alan Cox75e99582006-05-24 14:14:41 +01003631 * ata_pio_data_xfer_noirq - Transfer data by PIO
3632 * @adev: device to target
3633 * @buf: data buffer
3634 * @buflen: buffer length
3635 * @write_data: read/write
3636 *
3637 * Transfer data from/to the device data register by PIO. Do the
3638 * transfer with interrupts disabled.
3639 *
3640 * LOCKING:
3641 * Inherited from caller.
3642 */
3643
3644void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3645 unsigned int buflen, int write_data)
3646{
3647 unsigned long flags;
3648 local_irq_save(flags);
3649 ata_pio_data_xfer(adev, buf, buflen, write_data);
3650 local_irq_restore(flags);
3651}
3652
3653
3654/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003655 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3656 * @qc: Command on going
3657 *
3658 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3659 *
3660 * LOCKING:
3661 * Inherited from caller.
3662 */
3663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664static void ata_pio_sector(struct ata_queued_cmd *qc)
3665{
3666 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003667 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 struct ata_port *ap = qc->ap;
3669 struct page *page;
3670 unsigned int offset;
3671 unsigned char *buf;
3672
3673 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003674 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
3676 page = sg[qc->cursg].page;
3677 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3678
3679 /* get the current page and offset */
3680 page = nth_page(page, (offset >> PAGE_SHIFT));
3681 offset %= PAGE_SIZE;
3682
Albert Lee7282aa42005-10-09 09:46:07 -04003683 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3684
Albert Lee91b8b312005-10-09 09:48:44 -04003685 if (PageHighMem(page)) {
3686 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003687
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003688 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003689 local_irq_save(flags);
3690 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003691
Albert Lee91b8b312005-10-09 09:48:44 -04003692 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003693 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003694
3695 kunmap_atomic(buf, KM_IRQ0);
3696 local_irq_restore(flags);
3697 } else {
3698 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003699 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
3702 qc->cursect++;
3703 qc->cursg_ofs++;
3704
Albert Lee32529e02005-05-26 03:49:42 -04003705 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 qc->cursg++;
3707 qc->cursg_ofs = 0;
3708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003711/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003712 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3713 * @qc: Command on going
3714 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003715 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003716 * ATA device for the DRQ request.
3717 *
3718 * LOCKING:
3719 * Inherited from caller.
3720 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Albert Lee07f6f7d2005-11-01 19:33:20 +08003722static void ata_pio_sectors(struct ata_queued_cmd *qc)
3723{
3724 if (is_multi_taskfile(&qc->tf)) {
3725 /* READ/WRITE MULTIPLE */
3726 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Jeff Garzik587005d2006-02-11 18:17:32 -05003728 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003729
3730 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3731 while (nsect--)
3732 ata_pio_sector(qc);
3733 } else
3734 ata_pio_sector(qc);
3735}
3736
3737/**
Albert Leec71c1852005-10-04 06:03:45 -04003738 * atapi_send_cdb - Write CDB bytes to hardware
3739 * @ap: Port to which ATAPI device is attached.
3740 * @qc: Taskfile currently active
3741 *
3742 * When device has indicated its readiness to accept
3743 * a CDB, this function is called. Send the CDB.
3744 *
3745 * LOCKING:
3746 * caller.
3747 */
3748
3749static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3750{
3751 /* send SCSI cdb */
3752 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003753 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003754
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003755 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003756 ata_altstatus(ap); /* flush */
3757
3758 switch (qc->tf.protocol) {
3759 case ATA_PROT_ATAPI:
3760 ap->hsm_task_state = HSM_ST;
3761 break;
3762 case ATA_PROT_ATAPI_NODATA:
3763 ap->hsm_task_state = HSM_ST_LAST;
3764 break;
3765 case ATA_PROT_ATAPI_DMA:
3766 ap->hsm_task_state = HSM_ST_LAST;
3767 /* initiate bmdma */
3768 ap->ops->bmdma_start(qc);
3769 break;
3770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771}
3772
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003773/**
3774 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3775 * @qc: Command on going
3776 * @bytes: number of bytes
3777 *
3778 * Transfer Transfer data from/to the ATAPI device.
3779 *
3780 * LOCKING:
3781 * Inherited from caller.
3782 *
3783 */
3784
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3786{
3787 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003788 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 struct ata_port *ap = qc->ap;
3790 struct page *page;
3791 unsigned char *buf;
3792 unsigned int offset, count;
3793
Albert Lee563a6e12005-08-12 14:17:50 +08003794 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003795 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796
3797next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003798 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003799 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003800 * The end of qc->sg is reached and the device expects
3801 * more data to transfer. In order not to overrun qc->sg
3802 * and fulfill length specified in the byte count register,
3803 * - for read case, discard trailing data from the device
3804 * - for write case, padding zero data to the device
3805 */
3806 u16 pad_buf[1] = { 0 };
3807 unsigned int words = bytes >> 1;
3808 unsigned int i;
3809
3810 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003811 ata_dev_printk(qc->dev, KERN_WARNING,
3812 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003813
3814 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003815 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08003816
Albert Lee14be71f2005-09-27 17:36:35 +08003817 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003818 return;
3819 }
3820
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003821 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 page = sg->page;
3824 offset = sg->offset + qc->cursg_ofs;
3825
3826 /* get the current page and offset */
3827 page = nth_page(page, (offset >> PAGE_SHIFT));
3828 offset %= PAGE_SIZE;
3829
Albert Lee6952df02005-06-06 15:56:03 +08003830 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003831 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832
3833 /* don't cross page boundaries */
3834 count = min(count, (unsigned int)PAGE_SIZE - offset);
3835
Albert Lee7282aa42005-10-09 09:46:07 -04003836 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3837
Albert Lee91b8b312005-10-09 09:48:44 -04003838 if (PageHighMem(page)) {
3839 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003840
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003841 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003842 local_irq_save(flags);
3843 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003844
Albert Lee91b8b312005-10-09 09:48:44 -04003845 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003846 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003847
3848 kunmap_atomic(buf, KM_IRQ0);
3849 local_irq_restore(flags);
3850 } else {
3851 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003852 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
3855 bytes -= count;
3856 qc->curbytes += count;
3857 qc->cursg_ofs += count;
3858
Albert Lee32529e02005-05-26 03:49:42 -04003859 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 qc->cursg++;
3861 qc->cursg_ofs = 0;
3862 }
3863
Albert Lee563a6e12005-08-12 14:17:50 +08003864 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866}
3867
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003868/**
3869 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3870 * @qc: Command on going
3871 *
3872 * Transfer Transfer data from/to the ATAPI device.
3873 *
3874 * LOCKING:
3875 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003876 */
3877
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3879{
3880 struct ata_port *ap = qc->ap;
3881 struct ata_device *dev = qc->dev;
3882 unsigned int ireason, bc_lo, bc_hi, bytes;
3883 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3884
Albert Leeeec4c3f2006-05-18 17:51:10 +08003885 /* Abuse qc->result_tf for temp storage of intermediate TF
3886 * here to save some kernel stack usage.
3887 * For normal completion, qc->result_tf is not relevant. For
3888 * error, qc->result_tf is later overwritten by ata_qc_complete().
3889 * So, the correctness of qc->result_tf is not affected.
3890 */
3891 ap->ops->tf_read(ap, &qc->result_tf);
3892 ireason = qc->result_tf.nsect;
3893 bc_lo = qc->result_tf.lbam;
3894 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 bytes = (bc_hi << 8) | bc_lo;
3896
3897 /* shall be cleared to zero, indicating xfer of data */
3898 if (ireason & (1 << 0))
3899 goto err_out;
3900
3901 /* make sure transfer direction matches expected */
3902 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3903 if (do_write != i_write)
3904 goto err_out;
3905
Albert Lee312f7da2005-09-27 17:38:03 +08003906 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3907
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 __atapi_pio_bytes(qc, bytes);
3909
3910 return;
3911
3912err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003913 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003914 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003915 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916}
3917
3918/**
Albert Leec234fb02006-03-25 17:58:38 +08003919 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3920 * @ap: the target ata_port
3921 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 *
Albert Leec234fb02006-03-25 17:58:38 +08003923 * RETURNS:
3924 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 */
Albert Leec234fb02006-03-25 17:58:38 +08003926
3927static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928{
Albert Leec234fb02006-03-25 17:58:38 +08003929 if (qc->tf.flags & ATA_TFLAG_POLLING)
3930 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
Albert Leec234fb02006-03-25 17:58:38 +08003932 if (ap->hsm_task_state == HSM_ST_FIRST) {
3933 if (qc->tf.protocol == ATA_PROT_PIO &&
3934 (qc->tf.flags & ATA_TFLAG_WRITE))
3935 return 1;
3936
3937 if (is_atapi_taskfile(&qc->tf) &&
3938 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3939 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 }
3941
Albert Leec234fb02006-03-25 17:58:38 +08003942 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943}
3944
Albert Leec234fb02006-03-25 17:58:38 +08003945/**
Tejun Heoc17ea202006-05-15 20:59:29 +09003946 * ata_hsm_qc_complete - finish a qc running on standard HSM
3947 * @qc: Command to complete
3948 * @in_wq: 1 if called from workqueue, 0 otherwise
3949 *
3950 * Finish @qc which is running on standard HSM.
3951 *
3952 * LOCKING:
3953 * If @in_wq is zero, spin_lock_irqsave(host_set lock).
3954 * Otherwise, none on entry and grabs host lock.
3955 */
3956static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
3957{
3958 struct ata_port *ap = qc->ap;
3959 unsigned long flags;
3960
3961 if (ap->ops->error_handler) {
3962 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04003963 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003964
3965 /* EH might have kicked in while host_set lock
3966 * is released.
3967 */
3968 qc = ata_qc_from_tag(ap, qc->tag);
3969 if (qc) {
3970 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
3971 ata_irq_on(ap);
3972 ata_qc_complete(qc);
3973 } else
3974 ata_port_freeze(ap);
3975 }
3976
Jeff Garzikba6a1302006-06-22 23:46:10 -04003977 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003978 } else {
3979 if (likely(!(qc->err_mask & AC_ERR_HSM)))
3980 ata_qc_complete(qc);
3981 else
3982 ata_port_freeze(ap);
3983 }
3984 } else {
3985 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04003986 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003987 ata_irq_on(ap);
3988 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04003989 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003990 } else
3991 ata_qc_complete(qc);
3992 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003993
3994 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09003995}
3996
3997/**
Albert Leebb5cb292006-03-25 17:48:02 +08003998 * ata_hsm_move - move the HSM to the next state.
3999 * @ap: the target ata_port
4000 * @qc: qc on going
4001 * @status: current device status
4002 * @in_wq: 1 if called from workqueue, 0 otherwise
4003 *
4004 * RETURNS:
4005 * 1 when poll next status needed, 0 otherwise.
4006 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004007int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4008 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009{
Albert Leebb5cb292006-03-25 17:48:02 +08004010 unsigned long flags = 0;
4011 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Albert Lee6912ccd2006-03-25 17:45:49 +08004013 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004014
Albert Leebb5cb292006-03-25 17:48:02 +08004015 /* Make sure ata_qc_issue_prot() does not throw things
4016 * like DMA polling into the workqueue. Notice that
4017 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004018 */
Albert Leec234fb02006-03-25 17:58:38 +08004019 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004020
Albert Leee2cec772006-03-25 17:43:49 +08004021fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004022 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4023 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Albert Leee2cec772006-03-25 17:43:49 +08004025 switch (ap->hsm_task_state) {
4026 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004027 /* Send first data block or PACKET CDB */
4028
4029 /* If polling, we will stay in the work queue after
4030 * sending the data. Otherwise, interrupt handler
4031 * takes over after sending the data.
4032 */
4033 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4034
Albert Leee2cec772006-03-25 17:43:49 +08004035 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004036 if (unlikely((status & ATA_DRQ) == 0)) {
4037 /* handle BSY=0, DRQ=0 as error */
4038 if (likely(status & (ATA_ERR | ATA_DF)))
4039 /* device stops HSM for abort/error */
4040 qc->err_mask |= AC_ERR_DEV;
4041 else
4042 /* HSM violation. Let EH handle this */
4043 qc->err_mask |= AC_ERR_HSM;
4044
Albert Leee2cec772006-03-25 17:43:49 +08004045 ap->hsm_task_state = HSM_ST_ERR;
4046 goto fsm_start;
4047 }
4048
Albert Lee71601952006-03-25 18:11:12 +08004049 /* Device should not ask for data transfer (DRQ=1)
4050 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004051 * We ignore DRQ here and stop the HSM by
4052 * changing hsm_task_state to HSM_ST_ERR and
4053 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004054 */
4055 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4056 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4057 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004058 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004059 ap->hsm_task_state = HSM_ST_ERR;
4060 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004061 }
4062
Albert Leebb5cb292006-03-25 17:48:02 +08004063 /* Send the CDB (atapi) or the first data block (ata pio out).
4064 * During the state transition, interrupt handler shouldn't
4065 * be invoked before the data transfer is complete and
4066 * hsm_task_state is changed. Hence, the following locking.
4067 */
4068 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004069 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004070
Albert Leebb5cb292006-03-25 17:48:02 +08004071 if (qc->tf.protocol == ATA_PROT_PIO) {
4072 /* PIO data out protocol.
4073 * send first data block.
4074 */
4075
4076 /* ata_pio_sectors() might change the state
4077 * to HSM_ST_LAST. so, the state is changed here
4078 * before ata_pio_sectors().
4079 */
4080 ap->hsm_task_state = HSM_ST;
4081 ata_pio_sectors(qc);
4082 ata_altstatus(ap); /* flush */
4083 } else
4084 /* send CDB */
4085 atapi_send_cdb(ap, qc);
4086
4087 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004088 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004089
4090 /* if polling, ata_pio_task() handles the rest.
4091 * otherwise, interrupt handler takes over from here.
4092 */
Albert Leee2cec772006-03-25 17:43:49 +08004093 break;
4094
4095 case HSM_ST:
4096 /* complete command or read/write the data register */
4097 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4098 /* ATAPI PIO protocol */
4099 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004100 /* No more data to transfer or device error.
4101 * Device error will be tagged in HSM_ST_LAST.
4102 */
Albert Leee2cec772006-03-25 17:43:49 +08004103 ap->hsm_task_state = HSM_ST_LAST;
4104 goto fsm_start;
4105 }
4106
Albert Lee71601952006-03-25 18:11:12 +08004107 /* Device should not ask for data transfer (DRQ=1)
4108 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004109 * We ignore DRQ here and stop the HSM by
4110 * changing hsm_task_state to HSM_ST_ERR and
4111 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004112 */
4113 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4114 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4115 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004116 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004117 ap->hsm_task_state = HSM_ST_ERR;
4118 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004119 }
4120
Albert Leee2cec772006-03-25 17:43:49 +08004121 atapi_pio_bytes(qc);
4122
4123 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4124 /* bad ireason reported by device */
4125 goto fsm_start;
4126
4127 } else {
4128 /* ATA PIO protocol */
4129 if (unlikely((status & ATA_DRQ) == 0)) {
4130 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004131 if (likely(status & (ATA_ERR | ATA_DF)))
4132 /* device stops HSM for abort/error */
4133 qc->err_mask |= AC_ERR_DEV;
4134 else
4135 /* HSM violation. Let EH handle this */
4136 qc->err_mask |= AC_ERR_HSM;
4137
Albert Leee2cec772006-03-25 17:43:49 +08004138 ap->hsm_task_state = HSM_ST_ERR;
4139 goto fsm_start;
4140 }
4141
Albert Leeeee6c322006-04-01 17:38:43 +08004142 /* For PIO reads, some devices may ask for
4143 * data transfer (DRQ=1) alone with ERR=1.
4144 * We respect DRQ here and transfer one
4145 * block of junk data before changing the
4146 * hsm_task_state to HSM_ST_ERR.
4147 *
4148 * For PIO writes, ERR=1 DRQ=1 doesn't make
4149 * sense since the data block has been
4150 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004151 */
4152 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004153 /* data might be corrputed */
4154 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004155
4156 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4157 ata_pio_sectors(qc);
4158 ata_altstatus(ap);
4159 status = ata_wait_idle(ap);
4160 }
4161
Albert Lee3655d1d2006-05-19 11:43:04 +08004162 if (status & (ATA_BUSY | ATA_DRQ))
4163 qc->err_mask |= AC_ERR_HSM;
4164
Albert Leeeee6c322006-04-01 17:38:43 +08004165 /* ata_pio_sectors() might change the
4166 * state to HSM_ST_LAST. so, the state
4167 * is changed after ata_pio_sectors().
4168 */
4169 ap->hsm_task_state = HSM_ST_ERR;
4170 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004171 }
4172
Albert Leee2cec772006-03-25 17:43:49 +08004173 ata_pio_sectors(qc);
4174
4175 if (ap->hsm_task_state == HSM_ST_LAST &&
4176 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4177 /* all data read */
4178 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004179 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004180 goto fsm_start;
4181 }
4182 }
4183
4184 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004185 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004186 break;
4187
4188 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004189 if (unlikely(!ata_ok(status))) {
4190 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004191 ap->hsm_task_state = HSM_ST_ERR;
4192 goto fsm_start;
4193 }
4194
4195 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004196 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4197 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004198
Albert Lee6912ccd2006-03-25 17:45:49 +08004199 WARN_ON(qc->err_mask);
4200
Albert Leee2cec772006-03-25 17:43:49 +08004201 ap->hsm_task_state = HSM_ST_IDLE;
4202
4203 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004204 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004205
4206 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004207 break;
4208
4209 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004210 /* make sure qc->err_mask is available to
4211 * know what's wrong and recover
4212 */
4213 WARN_ON(qc->err_mask == 0);
4214
4215 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004216
Albert Lee999bb6f2006-03-25 18:07:48 +08004217 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004218 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004219
4220 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004221 break;
4222 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004223 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004224 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004225 }
4226
Albert Leebb5cb292006-03-25 17:48:02 +08004227 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228}
4229
4230static void ata_pio_task(void *_data)
4231{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004232 struct ata_queued_cmd *qc = _data;
4233 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004234 u8 status;
4235 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004236
4237fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004238 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Albert Leea1af3732006-03-25 17:50:15 +08004240 /*
4241 * This is purely heuristic. This is a fast path.
4242 * Sometimes when we enter, BSY will be cleared in
4243 * a chk-status or two. If not, the drive is probably seeking
4244 * or something. Snooze for a couple msecs, then
4245 * chk-status again. If still busy, queue delayed work.
4246 */
4247 status = ata_busy_wait(ap, ATA_BUSY, 5);
4248 if (status & ATA_BUSY) {
4249 msleep(2);
4250 status = ata_busy_wait(ap, ATA_BUSY, 10);
4251 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004252 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004253 return;
4254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 }
4256
Albert Leea1af3732006-03-25 17:50:15 +08004257 /* move the HSM */
4258 poll_next = ata_hsm_move(ap, qc, status, 1);
4259
4260 /* another command or interrupt handler
4261 * may be running at this point.
4262 */
4263 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004264 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265}
4266
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 * ata_qc_new - Request an available ATA command, for queueing
4269 * @ap: Port associated with device @dev
4270 * @dev: Device from whom we request an available command structure
4271 *
4272 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004273 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 */
4275
4276static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4277{
4278 struct ata_queued_cmd *qc = NULL;
4279 unsigned int i;
4280
Tejun Heoe3180492006-05-15 20:58:09 +09004281 /* no command while frozen */
4282 if (unlikely(ap->flags & ATA_FLAG_FROZEN))
4283 return NULL;
4284
Tejun Heo2ab7db12006-05-15 20:58:02 +09004285 /* the last tag is reserved for internal command. */
4286 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004287 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004288 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 break;
4290 }
4291
4292 if (qc)
4293 qc->tag = i;
4294
4295 return qc;
4296}
4297
4298/**
4299 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 * @dev: Device from whom we request an available command structure
4301 *
4302 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004303 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 */
4305
Tejun Heo3373efd2006-05-15 20:57:53 +09004306struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307{
Tejun Heo3373efd2006-05-15 20:57:53 +09004308 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 struct ata_queued_cmd *qc;
4310
4311 qc = ata_qc_new(ap);
4312 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 qc->scsicmd = NULL;
4314 qc->ap = ap;
4315 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004317 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 }
4319
4320 return qc;
4321}
4322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323/**
4324 * ata_qc_free - free unused ata_queued_cmd
4325 * @qc: Command to complete
4326 *
4327 * Designed to free unused ata_queued_cmd object
4328 * in case something prevents using it.
4329 *
4330 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004331 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 */
4333void ata_qc_free(struct ata_queued_cmd *qc)
4334{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004335 struct ata_port *ap = qc->ap;
4336 unsigned int tag;
4337
Tejun Heoa4631472006-02-11 19:11:13 +09004338 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339
Tejun Heo4ba946e2006-01-23 13:09:36 +09004340 qc->flags = 0;
4341 tag = qc->tag;
4342 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004343 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004344 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346}
4347
Tejun Heo76014422006-02-11 15:13:49 +09004348void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004350 struct ata_port *ap = qc->ap;
4351
Tejun Heoa4631472006-02-11 19:11:13 +09004352 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4353 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354
4355 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4356 ata_sg_clean(qc);
4357
Tejun Heo7401abf2006-05-15 20:57:32 +09004358 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004359 if (qc->tf.protocol == ATA_PROT_NCQ)
4360 ap->sactive &= ~(1 << qc->tag);
4361 else
4362 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004363
Albert Lee3f3791d2005-08-16 14:25:38 +08004364 /* atapi: mark qc as inactive to prevent the interrupt handler
4365 * from completing the command twice later, before the error handler
4366 * is called. (when rc != 0 and atapi request sense is needed)
4367 */
4368 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004369 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004370
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004372 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373}
4374
Tejun Heof686bcb2006-05-15 20:58:05 +09004375/**
4376 * ata_qc_complete - Complete an active ATA command
4377 * @qc: Command to complete
4378 * @err_mask: ATA Status register contents
4379 *
4380 * Indicate to the mid and upper layers that an ATA
4381 * command has completed, with either an ok or not-ok status.
4382 *
4383 * LOCKING:
4384 * spin_lock_irqsave(host_set lock)
4385 */
4386void ata_qc_complete(struct ata_queued_cmd *qc)
4387{
4388 struct ata_port *ap = qc->ap;
4389
4390 /* XXX: New EH and old EH use different mechanisms to
4391 * synchronize EH with regular execution path.
4392 *
4393 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4394 * Normal execution path is responsible for not accessing a
4395 * failed qc. libata core enforces the rule by returning NULL
4396 * from ata_qc_from_tag() for failed qcs.
4397 *
4398 * Old EH depends on ata_qc_complete() nullifying completion
4399 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4400 * not synchronize with interrupt handler. Only PIO task is
4401 * taken care of.
4402 */
4403 if (ap->ops->error_handler) {
4404 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4405
4406 if (unlikely(qc->err_mask))
4407 qc->flags |= ATA_QCFLAG_FAILED;
4408
4409 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4410 if (!ata_tag_internal(qc->tag)) {
4411 /* always fill result TF for failed qc */
4412 ap->ops->tf_read(ap, &qc->result_tf);
4413 ata_qc_schedule_eh(qc);
4414 return;
4415 }
4416 }
4417
4418 /* read result TF if requested */
4419 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4420 ap->ops->tf_read(ap, &qc->result_tf);
4421
4422 __ata_qc_complete(qc);
4423 } else {
4424 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4425 return;
4426
4427 /* read result TF if failed or requested */
4428 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4429 ap->ops->tf_read(ap, &qc->result_tf);
4430
4431 __ata_qc_complete(qc);
4432 }
4433}
4434
Tejun Heodedaf2b2006-05-15 21:03:43 +09004435/**
4436 * ata_qc_complete_multiple - Complete multiple qcs successfully
4437 * @ap: port in question
4438 * @qc_active: new qc_active mask
4439 * @finish_qc: LLDD callback invoked before completing a qc
4440 *
4441 * Complete in-flight commands. This functions is meant to be
4442 * called from low-level driver's interrupt routine to complete
4443 * requests normally. ap->qc_active and @qc_active is compared
4444 * and commands are completed accordingly.
4445 *
4446 * LOCKING:
4447 * spin_lock_irqsave(host_set lock)
4448 *
4449 * RETURNS:
4450 * Number of completed commands on success, -errno otherwise.
4451 */
4452int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4453 void (*finish_qc)(struct ata_queued_cmd *))
4454{
4455 int nr_done = 0;
4456 u32 done_mask;
4457 int i;
4458
4459 done_mask = ap->qc_active ^ qc_active;
4460
4461 if (unlikely(done_mask & qc_active)) {
4462 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4463 "(%08x->%08x)\n", ap->qc_active, qc_active);
4464 return -EINVAL;
4465 }
4466
4467 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4468 struct ata_queued_cmd *qc;
4469
4470 if (!(done_mask & (1 << i)))
4471 continue;
4472
4473 if ((qc = ata_qc_from_tag(ap, i))) {
4474 if (finish_qc)
4475 finish_qc(qc);
4476 ata_qc_complete(qc);
4477 nr_done++;
4478 }
4479 }
4480
4481 return nr_done;
4482}
4483
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4485{
4486 struct ata_port *ap = qc->ap;
4487
4488 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004489 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 case ATA_PROT_DMA:
4491 case ATA_PROT_ATAPI_DMA:
4492 return 1;
4493
4494 case ATA_PROT_ATAPI:
4495 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 if (ap->flags & ATA_FLAG_PIO_DMA)
4497 return 1;
4498
4499 /* fall through */
4500
4501 default:
4502 return 0;
4503 }
4504
4505 /* never reached */
4506}
4507
4508/**
4509 * ata_qc_issue - issue taskfile to device
4510 * @qc: command to issue to device
4511 *
4512 * Prepare an ATA command to submission to device.
4513 * This includes mapping the data into a DMA-able
4514 * area, filling in the S/G table, and finally
4515 * writing the taskfile to hardware, starting the command.
4516 *
4517 * LOCKING:
4518 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004520void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521{
4522 struct ata_port *ap = qc->ap;
4523
Tejun Heodedaf2b2006-05-15 21:03:43 +09004524 /* Make sure only one non-NCQ command is outstanding. The
4525 * check is skipped for old EH because it reuses active qc to
4526 * request ATAPI sense.
4527 */
4528 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4529
4530 if (qc->tf.protocol == ATA_PROT_NCQ) {
4531 WARN_ON(ap->sactive & (1 << qc->tag));
4532 ap->sactive |= 1 << qc->tag;
4533 } else {
4534 WARN_ON(ap->sactive);
4535 ap->active_tag = qc->tag;
4536 }
4537
Tejun Heoe4a70e72006-03-31 20:36:47 +09004538 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004539 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 if (ata_should_dma_map(qc)) {
4542 if (qc->flags & ATA_QCFLAG_SG) {
4543 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004544 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4546 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004547 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 }
4549 } else {
4550 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4551 }
4552
4553 ap->ops->qc_prep(qc);
4554
Tejun Heo8e0e6942006-03-31 20:41:11 +09004555 qc->err_mask |= ap->ops->qc_issue(qc);
4556 if (unlikely(qc->err_mask))
4557 goto err;
4558 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Tejun Heo8e436af2006-01-23 13:09:36 +09004560sg_err:
4561 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004562 qc->err_mask |= AC_ERR_SYSTEM;
4563err:
4564 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565}
4566
4567/**
4568 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4569 * @qc: command to issue to device
4570 *
4571 * Using various libata functions and hooks, this function
4572 * starts an ATA command. ATA commands are grouped into
4573 * classes called "protocols", and issuing each type of protocol
4574 * is slightly different.
4575 *
Edward Falk0baab862005-06-02 18:17:13 -04004576 * May be used as the qc_issue() entry in ata_port_operations.
4577 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 * LOCKING:
4579 * spin_lock_irqsave(host_set lock)
4580 *
4581 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004582 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 */
4584
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004585unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586{
4587 struct ata_port *ap = qc->ap;
4588
Albert Leee50362e2005-09-27 17:39:50 +08004589 /* Use polling pio if the LLD doesn't handle
4590 * interrupt driven pio and atapi CDB interrupt.
4591 */
4592 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4593 switch (qc->tf.protocol) {
4594 case ATA_PROT_PIO:
4595 case ATA_PROT_ATAPI:
4596 case ATA_PROT_ATAPI_NODATA:
4597 qc->tf.flags |= ATA_TFLAG_POLLING;
4598 break;
4599 case ATA_PROT_ATAPI_DMA:
4600 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08004601 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08004602 BUG();
4603 break;
4604 default:
4605 break;
4606 }
4607 }
4608
Albert Lee312f7da2005-09-27 17:38:03 +08004609 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 ata_dev_select(ap, qc->dev->devno, 1, 0);
4611
Albert Lee312f7da2005-09-27 17:38:03 +08004612 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 switch (qc->tf.protocol) {
4614 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004615 if (qc->tf.flags & ATA_TFLAG_POLLING)
4616 ata_qc_set_polling(qc);
4617
Jeff Garzike5338252005-10-30 21:37:17 -05004618 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004619 ap->hsm_task_state = HSM_ST_LAST;
4620
4621 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004622 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004623
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 break;
4625
4626 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004627 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004628
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4630 ap->ops->bmdma_setup(qc); /* set up bmdma */
4631 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004632 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 break;
4634
Albert Lee312f7da2005-09-27 17:38:03 +08004635 case ATA_PROT_PIO:
4636 if (qc->tf.flags & ATA_TFLAG_POLLING)
4637 ata_qc_set_polling(qc);
4638
Jeff Garzike5338252005-10-30 21:37:17 -05004639 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004640
Albert Lee54f00382005-09-30 19:14:19 +08004641 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4642 /* PIO data out protocol */
4643 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004644 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004645
4646 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004647 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004648 */
Albert Lee312f7da2005-09-27 17:38:03 +08004649 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004650 /* PIO data in protocol */
4651 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004652
Albert Lee54f00382005-09-30 19:14:19 +08004653 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004654 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004655
Albert Lee54f00382005-09-30 19:14:19 +08004656 /* if polling, ata_pio_task() handles the rest.
4657 * otherwise, interrupt handler takes over from here.
4658 */
Albert Lee312f7da2005-09-27 17:38:03 +08004659 }
4660
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 break;
4662
4663 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004665 if (qc->tf.flags & ATA_TFLAG_POLLING)
4666 ata_qc_set_polling(qc);
4667
Jeff Garzike5338252005-10-30 21:37:17 -05004668 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004669
Albert Lee312f7da2005-09-27 17:38:03 +08004670 ap->hsm_task_state = HSM_ST_FIRST;
4671
4672 /* send cdb by polling if no cdb interrupt */
4673 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4674 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004675 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 break;
4677
4678 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004679 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004680
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4682 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004683 ap->hsm_task_state = HSM_ST_FIRST;
4684
4685 /* send cdb by polling if no cdb interrupt */
4686 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004687 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 break;
4689
4690 default:
4691 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004692 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 }
4694
4695 return 0;
4696}
4697
4698/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 * ata_host_intr - Handle host interrupt for given (port, task)
4700 * @ap: Port on which interrupt arrived (possibly...)
4701 * @qc: Taskfile currently active in engine
4702 *
4703 * Handle host interrupt for given queued command. Currently,
4704 * only DMA interrupts are handled. All other commands are
4705 * handled via polling with interrupts disabled (nIEN bit).
4706 *
4707 * LOCKING:
4708 * spin_lock_irqsave(host_set lock)
4709 *
4710 * RETURNS:
4711 * One if interrupt was handled, zero if not (shared irq).
4712 */
4713
4714inline unsigned int ata_host_intr (struct ata_port *ap,
4715 struct ata_queued_cmd *qc)
4716{
Albert Lee312f7da2005-09-27 17:38:03 +08004717 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
Albert Lee312f7da2005-09-27 17:38:03 +08004719 VPRINTK("ata%u: protocol %d task_state %d\n",
4720 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721
Albert Lee312f7da2005-09-27 17:38:03 +08004722 /* Check whether we are expecting interrupt in this state */
4723 switch (ap->hsm_task_state) {
4724 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004725 /* Some pre-ATAPI-4 devices assert INTRQ
4726 * at this state when ready to receive CDB.
4727 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728
Albert Lee312f7da2005-09-27 17:38:03 +08004729 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4730 * The flag was turned on only for atapi devices.
4731 * No need to check is_atapi_taskfile(&qc->tf) again.
4732 */
4733 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004736 case HSM_ST_LAST:
4737 if (qc->tf.protocol == ATA_PROT_DMA ||
4738 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4739 /* check status of DMA engine */
4740 host_stat = ap->ops->bmdma_status(ap);
4741 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Albert Lee312f7da2005-09-27 17:38:03 +08004743 /* if it's not our irq... */
4744 if (!(host_stat & ATA_DMA_INTR))
4745 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
Albert Lee312f7da2005-09-27 17:38:03 +08004747 /* before we do anything else, clear DMA-Start bit */
4748 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004749
4750 if (unlikely(host_stat & ATA_DMA_ERR)) {
4751 /* error when transfering data to/from memory */
4752 qc->err_mask |= AC_ERR_HOST_BUS;
4753 ap->hsm_task_state = HSM_ST_ERR;
4754 }
Albert Lee312f7da2005-09-27 17:38:03 +08004755 }
4756 break;
4757 case HSM_ST:
4758 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 default:
4760 goto idle_irq;
4761 }
4762
Albert Lee312f7da2005-09-27 17:38:03 +08004763 /* check altstatus */
4764 status = ata_altstatus(ap);
4765 if (status & ATA_BUSY)
4766 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
Albert Lee312f7da2005-09-27 17:38:03 +08004768 /* check main status, clearing INTRQ */
4769 status = ata_chk_status(ap);
4770 if (unlikely(status & ATA_BUSY))
4771 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
Albert Lee312f7da2005-09-27 17:38:03 +08004773 /* ack bmdma irq events */
4774 ap->ops->irq_clear(ap);
4775
Albert Leebb5cb292006-03-25 17:48:02 +08004776 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 return 1; /* irq handled */
4778
4779idle_irq:
4780 ap->stats.idle_irq++;
4781
4782#ifdef ATA_IRQ_TRAP
4783 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004785 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004786 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 }
4788#endif
4789 return 0; /* irq not handled */
4790}
4791
4792/**
4793 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004794 * @irq: irq line (unused)
4795 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 * @regs: unused
4797 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004798 * Default interrupt handler for PCI IDE devices. Calls
4799 * ata_host_intr() for each port that is not disabled.
4800 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004802 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 *
4804 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004805 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 */
4807
4808irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4809{
4810 struct ata_host_set *host_set = dev_instance;
4811 unsigned int i;
4812 unsigned int handled = 0;
4813 unsigned long flags;
4814
4815 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4816 spin_lock_irqsave(&host_set->lock, flags);
4817
4818 for (i = 0; i < host_set->n_ports; i++) {
4819 struct ata_port *ap;
4820
4821 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004822 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004823 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 struct ata_queued_cmd *qc;
4825
4826 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004827 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004828 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 handled |= ata_host_intr(ap, qc);
4830 }
4831 }
4832
4833 spin_unlock_irqrestore(&host_set->lock, flags);
4834
4835 return IRQ_RETVAL(handled);
4836}
4837
Tejun Heo34bf2172006-05-15 20:57:46 +09004838/**
4839 * sata_scr_valid - test whether SCRs are accessible
4840 * @ap: ATA port to test SCR accessibility for
4841 *
4842 * Test whether SCRs are accessible for @ap.
4843 *
4844 * LOCKING:
4845 * None.
4846 *
4847 * RETURNS:
4848 * 1 if SCRs are accessible, 0 otherwise.
4849 */
4850int sata_scr_valid(struct ata_port *ap)
4851{
4852 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4853}
4854
4855/**
4856 * sata_scr_read - read SCR register of the specified port
4857 * @ap: ATA port to read SCR for
4858 * @reg: SCR to read
4859 * @val: Place to store read value
4860 *
4861 * Read SCR register @reg of @ap into *@val. This function is
4862 * guaranteed to succeed if the cable type of the port is SATA
4863 * and the port implements ->scr_read.
4864 *
4865 * LOCKING:
4866 * None.
4867 *
4868 * RETURNS:
4869 * 0 on success, negative errno on failure.
4870 */
4871int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4872{
4873 if (sata_scr_valid(ap)) {
4874 *val = ap->ops->scr_read(ap, reg);
4875 return 0;
4876 }
4877 return -EOPNOTSUPP;
4878}
4879
4880/**
4881 * sata_scr_write - write SCR register of the specified port
4882 * @ap: ATA port to write SCR for
4883 * @reg: SCR to write
4884 * @val: value to write
4885 *
4886 * Write @val to SCR register @reg of @ap. This function is
4887 * guaranteed to succeed if the cable type of the port is SATA
4888 * and the port implements ->scr_read.
4889 *
4890 * LOCKING:
4891 * None.
4892 *
4893 * RETURNS:
4894 * 0 on success, negative errno on failure.
4895 */
4896int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4897{
4898 if (sata_scr_valid(ap)) {
4899 ap->ops->scr_write(ap, reg, val);
4900 return 0;
4901 }
4902 return -EOPNOTSUPP;
4903}
4904
4905/**
4906 * sata_scr_write_flush - write SCR register of the specified port and flush
4907 * @ap: ATA port to write SCR for
4908 * @reg: SCR to write
4909 * @val: value to write
4910 *
4911 * This function is identical to sata_scr_write() except that this
4912 * function performs flush after writing to the register.
4913 *
4914 * LOCKING:
4915 * None.
4916 *
4917 * RETURNS:
4918 * 0 on success, negative errno on failure.
4919 */
4920int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4921{
4922 if (sata_scr_valid(ap)) {
4923 ap->ops->scr_write(ap, reg, val);
4924 ap->ops->scr_read(ap, reg);
4925 return 0;
4926 }
4927 return -EOPNOTSUPP;
4928}
4929
4930/**
4931 * ata_port_online - test whether the given port is online
4932 * @ap: ATA port to test
4933 *
4934 * Test whether @ap is online. Note that this function returns 0
4935 * if online status of @ap cannot be obtained, so
4936 * ata_port_online(ap) != !ata_port_offline(ap).
4937 *
4938 * LOCKING:
4939 * None.
4940 *
4941 * RETURNS:
4942 * 1 if the port online status is available and online.
4943 */
4944int ata_port_online(struct ata_port *ap)
4945{
4946 u32 sstatus;
4947
4948 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4949 return 1;
4950 return 0;
4951}
4952
4953/**
4954 * ata_port_offline - test whether the given port is offline
4955 * @ap: ATA port to test
4956 *
4957 * Test whether @ap is offline. Note that this function returns
4958 * 0 if offline status of @ap cannot be obtained, so
4959 * ata_port_online(ap) != !ata_port_offline(ap).
4960 *
4961 * LOCKING:
4962 * None.
4963 *
4964 * RETURNS:
4965 * 1 if the port offline status is available and offline.
4966 */
4967int ata_port_offline(struct ata_port *ap)
4968{
4969 u32 sstatus;
4970
4971 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4972 return 1;
4973 return 0;
4974}
Edward Falk0baab862005-06-02 18:17:13 -04004975
Tejun Heo77b08fb2006-06-24 20:30:19 +09004976int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004977{
Tejun Heo977e6b92006-06-24 20:30:19 +09004978 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01004979 u8 cmd;
4980
4981 if (!ata_try_flush_cache(dev))
4982 return 0;
4983
4984 if (ata_id_has_flush_ext(dev->id))
4985 cmd = ATA_CMD_FLUSH_EXT;
4986 else
4987 cmd = ATA_CMD_FLUSH;
4988
Tejun Heo977e6b92006-06-24 20:30:19 +09004989 err_mask = ata_do_simple_cmd(dev, cmd);
4990 if (err_mask) {
4991 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
4992 return -EIO;
4993 }
4994
4995 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01004996}
4997
Tejun Heo3373efd2006-05-15 20:57:53 +09004998static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004999{
Tejun Heo977e6b92006-06-24 20:30:19 +09005000 unsigned int err_mask;
5001
5002 err_mask = ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
5003 if (err_mask) {
5004 ata_dev_printk(dev, KERN_ERR, "failed to standby drive "
5005 "(err_mask=0x%x)\n", err_mask);
5006 return -EIO;
5007 }
5008
5009 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005010}
5011
Tejun Heo3373efd2006-05-15 20:57:53 +09005012static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005013{
Tejun Heo977e6b92006-06-24 20:30:19 +09005014 unsigned int err_mask;
5015
5016 err_mask = ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
5017 if (err_mask) {
5018 ata_dev_printk(dev, KERN_ERR, "failed to start drive "
5019 "(err_mask=0x%x)\n", err_mask);
5020 return -EIO;
5021 }
5022
5023 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005024}
5025
5026/**
5027 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005028 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01005029 *
5030 * Kick the drive back into action, by sending it an idle immediate
5031 * command and making sure its transfer mode matches between drive
5032 * and host.
5033 *
5034 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005035int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005036{
Tejun Heo3373efd2006-05-15 20:57:53 +09005037 struct ata_port *ap = dev->ap;
5038
Jens Axboe9b847542006-01-06 09:28:07 +01005039 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005040 struct ata_device *failed_dev;
Jeff Garzike42d7be2006-05-28 16:32:59 -04005041
Linus Torvalds1cca0eb2006-06-19 18:01:27 -07005042 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Mark Lord0737ac82006-05-28 11:28:00 -04005043 ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 200000);
Jeff Garzike42d7be2006-05-28 16:32:59 -04005044
Jens Axboe9b847542006-01-06 09:28:07 +01005045 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005046 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09005047 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005048 }
Tejun Heoe1211e32006-04-01 01:38:18 +09005049 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005050 return 0;
5051 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005052 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005053
5054 return 0;
5055}
5056
5057/**
5058 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005059 * @dev: the device to suspend
Randy Dunlape2a7f772006-05-18 10:50:18 -07005060 * @state: target power management state
Jens Axboe9b847542006-01-06 09:28:07 +01005061 *
5062 * Flush the cache on the drive, if appropriate, then issue a
5063 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01005064 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005065int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01005066{
Tejun Heo3373efd2006-05-15 20:57:53 +09005067 struct ata_port *ap = dev->ap;
5068
Tejun Heoe1211e32006-04-01 01:38:18 +09005069 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005070 return 0;
5071 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005072 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005073
Nigel Cunningham082776e2006-03-23 23:22:16 +10005074 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09005075 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005076 ap->flags |= ATA_FLAG_SUSPENDED;
5077 return 0;
5078}
5079
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005080/**
5081 * ata_port_start - Set port up for dma.
5082 * @ap: Port to initialize
5083 *
5084 * Called just after data structures for each port are
5085 * initialized. Allocates space for PRD table.
5086 *
5087 * May be used as the port_start() entry in ata_port_operations.
5088 *
5089 * LOCKING:
5090 * Inherited from caller.
5091 */
5092
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093int ata_port_start (struct ata_port *ap)
5094{
Brian King2f1f6102006-03-23 17:30:15 -06005095 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005096 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097
5098 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
5099 if (!ap->prd)
5100 return -ENOMEM;
5101
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005102 rc = ata_pad_alloc(ap, dev);
5103 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005104 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005105 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005106 }
5107
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
5109
5110 return 0;
5111}
5112
Edward Falk0baab862005-06-02 18:17:13 -04005113
5114/**
5115 * ata_port_stop - Undo ata_port_start()
5116 * @ap: Port to shut down
5117 *
5118 * Frees the PRD table.
5119 *
5120 * May be used as the port_stop() entry in ata_port_operations.
5121 *
5122 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005123 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005124 */
5125
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126void ata_port_stop (struct ata_port *ap)
5127{
Brian King2f1f6102006-03-23 17:30:15 -06005128 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
5130 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005131 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132}
5133
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005134void ata_host_stop (struct ata_host_set *host_set)
5135{
5136 if (host_set->mmio_base)
5137 iounmap(host_set->mmio_base);
5138}
5139
5140
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141/**
5142 * ata_host_remove - Unregister SCSI host structure with upper layers
5143 * @ap: Port to unregister
5144 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
5145 *
5146 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005147 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 */
5149
5150static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
5151{
5152 struct Scsi_Host *sh = ap->host;
5153
5154 DPRINTK("ENTER\n");
5155
5156 if (do_unregister)
5157 scsi_remove_host(sh);
5158
5159 ap->ops->port_stop(ap);
5160}
5161
5162/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005163 * ata_dev_init - Initialize an ata_device structure
5164 * @dev: Device structure to initialize
5165 *
5166 * Initialize @dev in preparation for probing.
5167 *
5168 * LOCKING:
5169 * Inherited from caller.
5170 */
5171void ata_dev_init(struct ata_device *dev)
5172{
5173 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005174 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005175
Tejun Heo5a04bf42006-05-31 18:27:38 +09005176 /* SATA spd limit is bound to the first device */
5177 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5178
Tejun Heo72fa4b72006-05-31 18:27:32 +09005179 /* High bits of dev->flags are used to record warm plug
5180 * requests which occur asynchronously. Synchronize using
5181 * host_set lock.
5182 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005183 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005184 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005185 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005186
5187 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5188 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005189 dev->pio_mask = UINT_MAX;
5190 dev->mwdma_mask = UINT_MAX;
5191 dev->udma_mask = UINT_MAX;
5192}
5193
5194/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 * ata_host_init - Initialize an ata_port structure
5196 * @ap: Structure to initialize
5197 * @host: associated SCSI mid-layer structure
5198 * @host_set: Collection of hosts to which @ap belongs
5199 * @ent: Probe information provided by low-level driver
5200 * @port_no: Port number associated with this ata_port
5201 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005202 * Initialize a new ata_port structure, and its associated
5203 * scsi_host.
5204 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005206 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5209 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005210 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211{
5212 unsigned int i;
5213
5214 host->max_id = 16;
5215 host->max_lun = 1;
5216 host->max_channel = 1;
5217 host->unique_id = ata_unique_id++;
5218 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005219
Jeff Garzikba6a1302006-06-22 23:46:10 -04005220 ap->lock = &host_set->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005221 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 ap->id = host->unique_id;
5223 ap->host = host;
5224 ap->ctl = ATA_DEVCTL_OBS;
5225 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005226 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 ap->port_no = port_no;
5228 ap->hard_port_no =
5229 ent->legacy_mode ? ent->hard_port_no : port_no;
5230 ap->pio_mask = ent->pio_mask;
5231 ap->mwdma_mask = ent->mwdma_mask;
5232 ap->udma_mask = ent->udma_mask;
5233 ap->flags |= ent->host_flags;
5234 ap->ops = ent->port_ops;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005235 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 ap->active_tag = ATA_TAG_POISON;
5237 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005238
5239#if defined(ATA_VERBOSE_DEBUG)
5240 /* turn on all debugging levels */
5241 ap->msg_enable = 0x00FF;
5242#elif defined(ATA_DEBUG)
5243 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
5244#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005245 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005246#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
Tejun Heo86e45b62006-03-05 15:29:09 +09005248 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heo580b2102006-05-31 18:28:05 +09005249 INIT_WORK(&ap->hotplug_task, ata_scsi_hotplug, ap);
zhao, forrest3057ac32006-06-12 12:01:34 +08005250 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan, ap);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005251 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005252 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253
Tejun Heo838df622006-05-15 20:57:44 +09005254 /* set cable type */
5255 ap->cbl = ATA_CBL_NONE;
5256 if (ap->flags & ATA_FLAG_SATA)
5257 ap->cbl = ATA_CBL_SATA;
5258
Tejun Heoacf356b2006-03-24 14:07:50 +09005259 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5260 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005261 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005262 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005263 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265
5266#ifdef ATA_IRQ_TRAP
5267 ap->stats.unhandled_irq = 1;
5268 ap->stats.idle_irq = 1;
5269#endif
5270
5271 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5272}
5273
5274/**
5275 * ata_host_add - Attach low-level ATA driver to system
5276 * @ent: Information provided by low-level driver
5277 * @host_set: Collections of ports to which we add
5278 * @port_no: Port number associated with this host
5279 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005280 * Attach low-level ATA driver to system.
5281 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005283 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284 *
5285 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005286 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 */
5288
Jeff Garzik057ace52005-10-22 14:27:05 -04005289static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 struct ata_host_set *host_set,
5291 unsigned int port_no)
5292{
5293 struct Scsi_Host *host;
5294 struct ata_port *ap;
5295 int rc;
5296
5297 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005298
Tejun Heo52783c52006-05-31 18:28:22 +09005299 if (!ent->port_ops->error_handler &&
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005300 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5301 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5302 port_no);
5303 return NULL;
5304 }
5305
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5307 if (!host)
5308 return NULL;
5309
Tejun Heo30afc842006-03-18 18:40:14 +09005310 host->transportt = &ata_scsi_transport_template;
5311
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005312 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
5314 ata_host_init(ap, host, host_set, ent, port_no);
5315
5316 rc = ap->ops->port_start(ap);
5317 if (rc)
5318 goto err_out;
5319
5320 return ap;
5321
5322err_out:
5323 scsi_host_put(host);
5324 return NULL;
5325}
5326
5327/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005328 * ata_device_add - Register hardware device with ATA and SCSI layers
5329 * @ent: Probe information describing hardware device to be registered
5330 *
5331 * This function processes the information provided in the probe
5332 * information struct @ent, allocates the necessary ATA and SCSI
5333 * host information structures, initializes them, and registers
5334 * everything with requisite kernel subsystems.
5335 *
5336 * This function requests irqs, probes the ATA bus, and probes
5337 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 *
5339 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005340 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 *
5342 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005343 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 */
Jeff Garzik057ace52005-10-22 14:27:05 -04005345int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346{
5347 unsigned int count = 0, i;
5348 struct device *dev = ent->dev;
5349 struct ata_host_set *host_set;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005350 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
5352 DPRINTK("ENTER\n");
5353 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005354 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5356 if (!host_set)
5357 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 spin_lock_init(&host_set->lock);
5359
5360 host_set->dev = dev;
5361 host_set->n_ports = ent->n_ports;
5362 host_set->irq = ent->irq;
5363 host_set->mmio_base = ent->mmio_base;
5364 host_set->private_data = ent->private_data;
5365 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005366 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367
5368 /* register each port bound to this device */
5369 for (i = 0; i < ent->n_ports; i++) {
5370 struct ata_port *ap;
5371 unsigned long xfer_mode_mask;
5372
5373 ap = ata_host_add(ent, host_set, i);
5374 if (!ap)
5375 goto err_out;
5376
5377 host_set->ports[i] = ap;
5378 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5379 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5380 (ap->pio_mask << ATA_SHIFT_PIO);
5381
5382 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005383 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5384 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5385 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5386 ata_mode_string(xfer_mode_mask),
5387 ap->ioaddr.cmd_addr,
5388 ap->ioaddr.ctl_addr,
5389 ap->ioaddr.bmdma_addr,
5390 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391
5392 ata_chk_status(ap);
5393 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005394 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 count++;
5396 }
5397
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005398 if (!count)
5399 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400
5401 /* obtain irq, that is shared between channels */
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005402 rc = request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5403 DRV_NAME, host_set);
5404 if (rc) {
5405 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5406 ent->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 goto err_out;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409
5410 /* perform each probe synchronously */
5411 DPRINTK("probe begin\n");
5412 for (i = 0; i < count; i++) {
5413 struct ata_port *ap;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005414 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 int rc;
5416
5417 ap = host_set->ports[i];
5418
Tejun Heo5a04bf42006-05-31 18:27:38 +09005419 /* init sata_spd_limit to the current value */
5420 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5421 int spd = (scontrol >> 4) & 0xf;
5422 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5423 }
5424 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5425
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426 rc = scsi_add_host(ap->host, dev);
5427 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005428 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 /* FIXME: do something useful here */
5430 /* FIXME: handle unconditional calls to
5431 * scsi_scan_host and ata_host_remove, below,
5432 * at the very least
5433 */
5434 }
Tejun Heo3e706392006-05-31 18:28:11 +09005435
Tejun Heo52783c52006-05-31 18:28:22 +09005436 if (ap->ops->error_handler) {
Tejun Heo3e706392006-05-31 18:28:11 +09005437 unsigned long flags;
5438
5439 ata_port_probe(ap);
5440
5441 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005442 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005443
5444 ap->eh_info.probe_mask = (1 << ATA_MAX_DEVICES) - 1;
5445 ap->eh_info.action |= ATA_EH_SOFTRESET;
5446
5447 ap->flags |= ATA_FLAG_LOADING;
5448 ata_port_schedule_eh(ap);
5449
Jeff Garzikba6a1302006-06-22 23:46:10 -04005450 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005451
5452 /* wait for EH to finish */
5453 ata_port_wait_eh(ap);
5454 } else {
5455 DPRINTK("ata%u: bus probe begin\n", ap->id);
5456 rc = ata_bus_probe(ap);
5457 DPRINTK("ata%u: bus probe end\n", ap->id);
5458
5459 if (rc) {
5460 /* FIXME: do something useful here?
5461 * Current libata behavior will
5462 * tear down everything when
5463 * the module is removed
5464 * or the h/w is unplugged.
5465 */
5466 }
5467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468 }
5469
5470 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005471 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472 for (i = 0; i < count; i++) {
5473 struct ata_port *ap = host_set->ports[i];
5474
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005475 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 }
5477
5478 dev_set_drvdata(dev, host_set);
5479
5480 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5481 return ent->n_ports; /* success */
5482
5483err_out:
5484 for (i = 0; i < count; i++) {
5485 ata_host_remove(host_set->ports[i], 1);
5486 scsi_host_put(host_set->ports[i]->host);
5487 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005488err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 kfree(host_set);
5490 VPRINTK("EXIT, returning 0\n");
5491 return 0;
5492}
5493
5494/**
Tejun Heo720ba122006-05-31 18:28:13 +09005495 * ata_port_detach - Detach ATA port in prepration of device removal
5496 * @ap: ATA port to be detached
5497 *
5498 * Detach all ATA devices and the associated SCSI devices of @ap;
5499 * then, remove the associated SCSI host. @ap is guaranteed to
5500 * be quiescent on return from this function.
5501 *
5502 * LOCKING:
5503 * Kernel thread context (may sleep).
5504 */
5505void ata_port_detach(struct ata_port *ap)
5506{
5507 unsigned long flags;
5508 int i;
5509
5510 if (!ap->ops->error_handler)
5511 return;
5512
5513 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005514 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005515 ap->flags |= ATA_FLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005516 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005517
5518 ata_port_wait_eh(ap);
5519
5520 /* EH is now guaranteed to see UNLOADING, so no new device
5521 * will be attached. Disable all existing devices.
5522 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005523 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005524
5525 for (i = 0; i < ATA_MAX_DEVICES; i++)
5526 ata_dev_disable(&ap->device[i]);
5527
Jeff Garzikba6a1302006-06-22 23:46:10 -04005528 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005529
5530 /* Final freeze & EH. All in-flight commands are aborted. EH
5531 * will be skipped and retrials will be terminated with bad
5532 * target.
5533 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005534 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005535 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005536 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005537
5538 ata_port_wait_eh(ap);
5539
5540 /* Flush hotplug task. The sequence is similar to
5541 * ata_port_flush_task().
5542 */
5543 flush_workqueue(ata_aux_wq);
5544 cancel_delayed_work(&ap->hotplug_task);
5545 flush_workqueue(ata_aux_wq);
5546
5547 /* remove the associated SCSI host */
5548 scsi_remove_host(ap->host);
5549}
5550
5551/**
Alan Cox17b14452005-09-15 15:44:00 +01005552 * ata_host_set_remove - PCI layer callback for device removal
5553 * @host_set: ATA host set that was removed
5554 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005555 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005556 * objects.
5557 *
5558 * LOCKING:
5559 * Inherited from calling layer (may sleep).
5560 */
5561
Alan Cox17b14452005-09-15 15:44:00 +01005562void ata_host_set_remove(struct ata_host_set *host_set)
5563{
Alan Cox17b14452005-09-15 15:44:00 +01005564 unsigned int i;
5565
Tejun Heo720ba122006-05-31 18:28:13 +09005566 for (i = 0; i < host_set->n_ports; i++)
5567 ata_port_detach(host_set->ports[i]);
Alan Cox17b14452005-09-15 15:44:00 +01005568
5569 free_irq(host_set->irq, host_set);
5570
5571 for (i = 0; i < host_set->n_ports; i++) {
Tejun Heo720ba122006-05-31 18:28:13 +09005572 struct ata_port *ap = host_set->ports[i];
Alan Cox17b14452005-09-15 15:44:00 +01005573
5574 ata_scsi_release(ap->host);
5575
5576 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5577 struct ata_ioports *ioaddr = &ap->ioaddr;
5578
5579 if (ioaddr->cmd_addr == 0x1f0)
5580 release_region(0x1f0, 8);
5581 else if (ioaddr->cmd_addr == 0x170)
5582 release_region(0x170, 8);
5583 }
5584
5585 scsi_host_put(ap->host);
5586 }
5587
5588 if (host_set->ops->host_stop)
5589 host_set->ops->host_stop(host_set);
5590
5591 kfree(host_set);
5592}
5593
5594/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 * ata_scsi_release - SCSI layer callback hook for host unload
5596 * @host: libata host to be unloaded
5597 *
5598 * Performs all duties necessary to shut down a libata port...
5599 * Kill port kthread, disable port, and release resources.
5600 *
5601 * LOCKING:
5602 * Inherited from SCSI layer.
5603 *
5604 * RETURNS:
5605 * One.
5606 */
5607
5608int ata_scsi_release(struct Scsi_Host *host)
5609{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005610 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
5612 DPRINTK("ENTER\n");
5613
5614 ap->ops->port_disable(ap);
5615 ata_host_remove(ap, 0);
5616
5617 DPRINTK("EXIT\n");
5618 return 1;
5619}
5620
5621/**
5622 * ata_std_ports - initialize ioaddr with standard port offsets.
5623 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005624 *
5625 * Utility function which initializes data_addr, error_addr,
5626 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5627 * device_addr, status_addr, and command_addr to standard offsets
5628 * relative to cmd_addr.
5629 *
5630 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 */
Edward Falk0baab862005-06-02 18:17:13 -04005632
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633void ata_std_ports(struct ata_ioports *ioaddr)
5634{
5635 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5636 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5637 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5638 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5639 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5640 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5641 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5642 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5643 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5644 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5645}
5646
Edward Falk0baab862005-06-02 18:17:13 -04005647
Jeff Garzik374b1872005-08-30 05:42:52 -04005648#ifdef CONFIG_PCI
5649
5650void ata_pci_host_stop (struct ata_host_set *host_set)
5651{
5652 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5653
5654 pci_iounmap(pdev, host_set->mmio_base);
5655}
5656
Edward Falk0baab862005-06-02 18:17:13 -04005657/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658 * ata_pci_remove_one - PCI layer callback for device removal
5659 * @pdev: PCI device that was removed
5660 *
5661 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005662 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663 * Handle this by unregistering all objects associated
5664 * with this PCI device. Free those objects. Then finally
5665 * release PCI resources and disable device.
5666 *
5667 * LOCKING:
5668 * Inherited from PCI layer (may sleep).
5669 */
5670
5671void ata_pci_remove_one (struct pci_dev *pdev)
5672{
5673 struct device *dev = pci_dev_to_dev(pdev);
5674 struct ata_host_set *host_set = dev_get_drvdata(dev);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005675 struct ata_host_set *host_set2 = host_set->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
Alan Cox17b14452005-09-15 15:44:00 +01005677 ata_host_set_remove(host_set);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005678 if (host_set2)
5679 ata_host_set_remove(host_set2);
5680
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681 pci_release_regions(pdev);
5682 pci_disable_device(pdev);
5683 dev_set_drvdata(dev, NULL);
5684}
5685
5686/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005687int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688{
5689 unsigned long tmp = 0;
5690
5691 switch (bits->width) {
5692 case 1: {
5693 u8 tmp8 = 0;
5694 pci_read_config_byte(pdev, bits->reg, &tmp8);
5695 tmp = tmp8;
5696 break;
5697 }
5698 case 2: {
5699 u16 tmp16 = 0;
5700 pci_read_config_word(pdev, bits->reg, &tmp16);
5701 tmp = tmp16;
5702 break;
5703 }
5704 case 4: {
5705 u32 tmp32 = 0;
5706 pci_read_config_dword(pdev, bits->reg, &tmp32);
5707 tmp = tmp32;
5708 break;
5709 }
5710
5711 default:
5712 return -EINVAL;
5713 }
5714
5715 tmp &= bits->mask;
5716
5717 return (tmp == bits->val) ? 1 : 0;
5718}
Jens Axboe9b847542006-01-06 09:28:07 +01005719
5720int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5721{
5722 pci_save_state(pdev);
5723 pci_disable_device(pdev);
5724 pci_set_power_state(pdev, PCI_D3hot);
5725 return 0;
5726}
5727
5728int ata_pci_device_resume(struct pci_dev *pdev)
5729{
5730 pci_set_power_state(pdev, PCI_D0);
5731 pci_restore_state(pdev);
5732 pci_enable_device(pdev);
5733 pci_set_master(pdev);
5734 return 0;
5735}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736#endif /* CONFIG_PCI */
5737
5738
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739static int __init ata_init(void)
5740{
5741 ata_wq = create_workqueue("ata");
5742 if (!ata_wq)
5743 return -ENOMEM;
5744
Tejun Heo453b07a2006-05-31 18:27:42 +09005745 ata_aux_wq = create_singlethread_workqueue("ata_aux");
5746 if (!ata_aux_wq) {
5747 destroy_workqueue(ata_wq);
5748 return -ENOMEM;
5749 }
5750
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5752 return 0;
5753}
5754
5755static void __exit ata_exit(void)
5756{
5757 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09005758 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759}
5760
5761module_init(ata_init);
5762module_exit(ata_exit);
5763
Jeff Garzik67846b32005-10-05 02:58:32 -04005764static unsigned long ratelimit_time;
5765static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5766
5767int ata_ratelimit(void)
5768{
5769 int rc;
5770 unsigned long flags;
5771
5772 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5773
5774 if (time_after(jiffies, ratelimit_time)) {
5775 rc = 1;
5776 ratelimit_time = jiffies + (HZ/5);
5777 } else
5778 rc = 0;
5779
5780 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5781
5782 return rc;
5783}
5784
Tejun Heoc22daff2006-04-11 22:22:29 +09005785/**
5786 * ata_wait_register - wait until register value changes
5787 * @reg: IO-mapped register
5788 * @mask: Mask to apply to read register value
5789 * @val: Wait condition
5790 * @interval_msec: polling interval in milliseconds
5791 * @timeout_msec: timeout in milliseconds
5792 *
5793 * Waiting for some bits of register to change is a common
5794 * operation for ATA controllers. This function reads 32bit LE
5795 * IO-mapped register @reg and tests for the following condition.
5796 *
5797 * (*@reg & mask) != val
5798 *
5799 * If the condition is met, it returns; otherwise, the process is
5800 * repeated after @interval_msec until timeout.
5801 *
5802 * LOCKING:
5803 * Kernel thread context (may sleep)
5804 *
5805 * RETURNS:
5806 * The final register value.
5807 */
5808u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5809 unsigned long interval_msec,
5810 unsigned long timeout_msec)
5811{
5812 unsigned long timeout;
5813 u32 tmp;
5814
5815 tmp = ioread32(reg);
5816
5817 /* Calculate timeout _after_ the first read to make sure
5818 * preceding writes reach the controller before starting to
5819 * eat away the timeout.
5820 */
5821 timeout = jiffies + (timeout_msec * HZ) / 1000;
5822
5823 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5824 msleep(interval_msec);
5825 tmp = ioread32(reg);
5826 }
5827
5828 return tmp;
5829}
5830
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831/*
5832 * libata is essentially a library of internal helper functions for
5833 * low-level ATA host controller drivers. As such, the API/ABI is
5834 * likely to change as new drivers are added and updated.
5835 * Do not depend on ABI/API stability.
5836 */
5837
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005838EXPORT_SYMBOL_GPL(sata_deb_timing_boot);
5839EXPORT_SYMBOL_GPL(sata_deb_timing_eh);
5840EXPORT_SYMBOL_GPL(sata_deb_timing_before_fsrst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841EXPORT_SYMBOL_GPL(ata_std_bios_param);
5842EXPORT_SYMBOL_GPL(ata_std_ports);
5843EXPORT_SYMBOL_GPL(ata_device_add);
Tejun Heo720ba122006-05-31 18:28:13 +09005844EXPORT_SYMBOL_GPL(ata_port_detach);
Alan Cox17b14452005-09-15 15:44:00 +01005845EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846EXPORT_SYMBOL_GPL(ata_sg_init);
5847EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09005848EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09005849EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005850EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852EXPORT_SYMBOL_GPL(ata_tf_load);
5853EXPORT_SYMBOL_GPL(ata_tf_read);
5854EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5855EXPORT_SYMBOL_GPL(ata_std_dev_select);
5856EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5857EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5858EXPORT_SYMBOL_GPL(ata_check_status);
5859EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860EXPORT_SYMBOL_GPL(ata_exec_command);
5861EXPORT_SYMBOL_GPL(ata_port_start);
5862EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005863EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864EXPORT_SYMBOL_GPL(ata_interrupt);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005865EXPORT_SYMBOL_GPL(ata_mmio_data_xfer);
5866EXPORT_SYMBOL_GPL(ata_pio_data_xfer);
Alan Cox75e99582006-05-24 14:14:41 +01005867EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005869EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5871EXPORT_SYMBOL_GPL(ata_bmdma_start);
5872EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5873EXPORT_SYMBOL_GPL(ata_bmdma_status);
5874EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005875EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5876EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5877EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5878EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5879EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005881EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005882EXPORT_SYMBOL_GPL(sata_phy_debounce);
5883EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884EXPORT_SYMBOL_GPL(sata_phy_reset);
5885EXPORT_SYMBOL_GPL(__sata_phy_reset);
5886EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09005887EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005888EXPORT_SYMBOL_GPL(ata_std_softreset);
5889EXPORT_SYMBOL_GPL(sata_std_hardreset);
5890EXPORT_SYMBOL_GPL(ata_std_postreset);
Tejun Heo623a3122006-03-05 17:55:58 +09005891EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005892EXPORT_SYMBOL_GPL(ata_dev_classify);
5893EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005895EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005896EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005897EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005898EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5900EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09005902EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09005903EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904EXPORT_SYMBOL_GPL(ata_scsi_release);
5905EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005906EXPORT_SYMBOL_GPL(sata_scr_valid);
5907EXPORT_SYMBOL_GPL(sata_scr_read);
5908EXPORT_SYMBOL_GPL(sata_scr_write);
5909EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5910EXPORT_SYMBOL_GPL(ata_port_online);
5911EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005912EXPORT_SYMBOL_GPL(ata_id_string);
5913EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5915
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005916EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005917EXPORT_SYMBOL_GPL(ata_timing_compute);
5918EXPORT_SYMBOL_GPL(ata_timing_merge);
5919
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920#ifdef CONFIG_PCI
5921EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005922EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5924EXPORT_SYMBOL_GPL(ata_pci_init_one);
5925EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005926EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5927EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005928EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5929EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005931
5932EXPORT_SYMBOL_GPL(ata_device_suspend);
5933EXPORT_SYMBOL_GPL(ata_device_resume);
5934EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5935EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005936
Tejun Heoece1d632006-04-02 18:51:53 +09005937EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005938EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5939EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005940EXPORT_SYMBOL_GPL(ata_port_freeze);
5941EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5942EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005943EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5944EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005945EXPORT_SYMBOL_GPL(ata_do_eh);