blob: c859b96b891a8ed5ca7070dc255dad9e61504a6f [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 Heo3373efd2006-05-15 20:57:53 +090064static unsigned int ata_dev_init_params(struct ata_device *dev,
65 u16 heads, u16 sectors);
66static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
67static void ata_dev_xfermask(struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69static unsigned int ata_unique_id = 1;
70static struct workqueue_struct *ata_wq;
71
Jeff Garzik418dc1f2006-03-11 20:50:08 -050072int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040073module_param(atapi_enabled, int, 0444);
74MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
75
Albert Lee95de7192006-04-04 10:57:18 +080076int atapi_dmadir = 0;
77module_param(atapi_dmadir, int, 0444);
78MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
79
Jeff Garzikc3c013a2006-02-27 22:31:19 -050080int libata_fua = 0;
81module_param_named(fua, libata_fua, int, 0444);
82MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084MODULE_AUTHOR("Jeff Garzik");
85MODULE_DESCRIPTION("Library module for ATA devices");
86MODULE_LICENSE("GPL");
87MODULE_VERSION(DRV_VERSION);
88
Edward Falk0baab862005-06-02 18:17:13 -040089
90/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
92 * @tf: Taskfile to convert
93 * @fis: Buffer into which data will output
94 * @pmp: Port multiplier port
95 *
96 * Converts a standard ATA taskfile to a Serial ATA
97 * FIS structure (Register - Host to Device).
98 *
99 * LOCKING:
100 * Inherited from caller.
101 */
102
Jeff Garzik057ace52005-10-22 14:27:05 -0400103void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 fis[0] = 0x27; /* Register - Host to Device FIS */
106 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
107 bit 7 indicates Command FIS */
108 fis[2] = tf->command;
109 fis[3] = tf->feature;
110
111 fis[4] = tf->lbal;
112 fis[5] = tf->lbam;
113 fis[6] = tf->lbah;
114 fis[7] = tf->device;
115
116 fis[8] = tf->hob_lbal;
117 fis[9] = tf->hob_lbam;
118 fis[10] = tf->hob_lbah;
119 fis[11] = tf->hob_feature;
120
121 fis[12] = tf->nsect;
122 fis[13] = tf->hob_nsect;
123 fis[14] = 0;
124 fis[15] = tf->ctl;
125
126 fis[16] = 0;
127 fis[17] = 0;
128 fis[18] = 0;
129 fis[19] = 0;
130}
131
132/**
133 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
134 * @fis: Buffer from which data will be input
135 * @tf: Taskfile to output
136 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500137 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
139 * LOCKING:
140 * Inherited from caller.
141 */
142
Jeff Garzik057ace52005-10-22 14:27:05 -0400143void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 tf->command = fis[2]; /* status */
146 tf->feature = fis[3]; /* error */
147
148 tf->lbal = fis[4];
149 tf->lbam = fis[5];
150 tf->lbah = fis[6];
151 tf->device = fis[7];
152
153 tf->hob_lbal = fis[8];
154 tf->hob_lbam = fis[9];
155 tf->hob_lbah = fis[10];
156
157 tf->nsect = fis[12];
158 tf->hob_nsect = fis[13];
159}
160
Albert Lee8cbd6df2005-10-12 15:06:27 +0800161static const u8 ata_rw_cmds[] = {
162 /* pio multi */
163 ATA_CMD_READ_MULTI,
164 ATA_CMD_WRITE_MULTI,
165 ATA_CMD_READ_MULTI_EXT,
166 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100167 0,
168 0,
169 0,
170 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800171 /* pio */
172 ATA_CMD_PIO_READ,
173 ATA_CMD_PIO_WRITE,
174 ATA_CMD_PIO_READ_EXT,
175 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100176 0,
177 0,
178 0,
179 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800180 /* dma */
181 ATA_CMD_READ,
182 ATA_CMD_WRITE,
183 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100184 ATA_CMD_WRITE_EXT,
185 0,
186 0,
187 0,
188 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800189};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800192 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
193 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500195 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800196 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 *
198 * LOCKING:
199 * caller.
200 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100201int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800203 struct ata_taskfile *tf = &qc->tf;
204 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100205 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100207 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500208
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100209 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800210 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
211 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Albert Lee8cbd6df2005-10-12 15:06:27 +0800213 if (dev->flags & ATA_DFLAG_PIO) {
214 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100215 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000216 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
217 /* Unable to use DMA due to host limitation */
218 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800219 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800220 } else {
221 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100222 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100225 cmd = ata_rw_cmds[index + fua + lba48 + write];
226 if (cmd) {
227 tf->command = cmd;
228 return 0;
229 }
230 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
Tejun Heocb95d562006-03-06 04:31:56 +0900233/**
234 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
235 * @pio_mask: pio_mask
236 * @mwdma_mask: mwdma_mask
237 * @udma_mask: udma_mask
238 *
239 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
240 * unsigned int xfer_mask.
241 *
242 * LOCKING:
243 * None.
244 *
245 * RETURNS:
246 * Packed xfer_mask.
247 */
248static unsigned int ata_pack_xfermask(unsigned int pio_mask,
249 unsigned int mwdma_mask,
250 unsigned int udma_mask)
251{
252 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
253 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
254 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
255}
256
Tejun Heoc0489e42006-03-24 14:07:49 +0900257/**
258 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
259 * @xfer_mask: xfer_mask to unpack
260 * @pio_mask: resulting pio_mask
261 * @mwdma_mask: resulting mwdma_mask
262 * @udma_mask: resulting udma_mask
263 *
264 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
265 * Any NULL distination masks will be ignored.
266 */
267static void ata_unpack_xfermask(unsigned int xfer_mask,
268 unsigned int *pio_mask,
269 unsigned int *mwdma_mask,
270 unsigned int *udma_mask)
271{
272 if (pio_mask)
273 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
274 if (mwdma_mask)
275 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
276 if (udma_mask)
277 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
278}
279
Tejun Heocb95d562006-03-06 04:31:56 +0900280static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900281 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900282 u8 base;
283} ata_xfer_tbl[] = {
284 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
285 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
286 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
287 { -1, },
288};
289
290/**
291 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
292 * @xfer_mask: xfer_mask of interest
293 *
294 * Return matching XFER_* value for @xfer_mask. Only the highest
295 * bit of @xfer_mask is considered.
296 *
297 * LOCKING:
298 * None.
299 *
300 * RETURNS:
301 * Matching XFER_* value, 0 if no match found.
302 */
303static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
304{
305 int highbit = fls(xfer_mask) - 1;
306 const struct ata_xfer_ent *ent;
307
308 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
309 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
310 return ent->base + highbit - ent->shift;
311 return 0;
312}
313
314/**
315 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
316 * @xfer_mode: XFER_* of interest
317 *
318 * Return matching xfer_mask for @xfer_mode.
319 *
320 * LOCKING:
321 * None.
322 *
323 * RETURNS:
324 * Matching xfer_mask, 0 if no match found.
325 */
326static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
327{
328 const struct ata_xfer_ent *ent;
329
330 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
331 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
332 return 1 << (ent->shift + xfer_mode - ent->base);
333 return 0;
334}
335
336/**
337 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
338 * @xfer_mode: XFER_* of interest
339 *
340 * Return matching xfer_shift for @xfer_mode.
341 *
342 * LOCKING:
343 * None.
344 *
345 * RETURNS:
346 * Matching xfer_shift, -1 if no match found.
347 */
348static int ata_xfer_mode2shift(unsigned int xfer_mode)
349{
350 const struct ata_xfer_ent *ent;
351
352 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
353 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
354 return ent->shift;
355 return -1;
356}
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900359 * ata_mode_string - convert xfer_mask to string
360 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 *
362 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900363 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
365 * LOCKING:
366 * None.
367 *
368 * RETURNS:
369 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900370 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900372static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Tejun Heo75f554b2006-03-06 04:31:57 +0900374 static const char * const xfer_mode_str[] = {
375 "PIO0",
376 "PIO1",
377 "PIO2",
378 "PIO3",
379 "PIO4",
380 "MWDMA0",
381 "MWDMA1",
382 "MWDMA2",
383 "UDMA/16",
384 "UDMA/25",
385 "UDMA/33",
386 "UDMA/44",
387 "UDMA/66",
388 "UDMA/100",
389 "UDMA/133",
390 "UDMA7",
391 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900392 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900394 highbit = fls(xfer_mask) - 1;
395 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
396 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
Tejun Heo4c360c82006-04-01 01:38:17 +0900400static const char *sata_spd_string(unsigned int spd)
401{
402 static const char * const spd_str[] = {
403 "1.5 Gbps",
404 "3.0 Gbps",
405 };
406
407 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
408 return "<unknown>";
409 return spd_str[spd - 1];
410}
411
Tejun Heo3373efd2006-05-15 20:57:53 +0900412void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900413{
Tejun Heoe1211e32006-04-01 01:38:18 +0900414 if (ata_dev_enabled(dev)) {
Tejun Heof15a1da2006-05-15 20:57:56 +0900415 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo0b8efb02006-03-24 15:25:31 +0900416 dev->class++;
417 }
418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/**
421 * ata_pio_devchk - PATA device presence detection
422 * @ap: ATA channel to examine
423 * @device: Device to examine (starting at zero)
424 *
425 * This technique was originally described in
426 * Hale Landis's ATADRVR (www.ata-atapi.com), and
427 * later found its way into the ATA/ATAPI spec.
428 *
429 * Write a pattern to the ATA shadow registers,
430 * and if a device is present, it will respond by
431 * correctly storing and echoing back the
432 * ATA shadow register contents.
433 *
434 * LOCKING:
435 * caller.
436 */
437
438static unsigned int ata_pio_devchk(struct ata_port *ap,
439 unsigned int device)
440{
441 struct ata_ioports *ioaddr = &ap->ioaddr;
442 u8 nsect, lbal;
443
444 ap->ops->dev_select(ap, device);
445
446 outb(0x55, ioaddr->nsect_addr);
447 outb(0xaa, ioaddr->lbal_addr);
448
449 outb(0xaa, ioaddr->nsect_addr);
450 outb(0x55, ioaddr->lbal_addr);
451
452 outb(0x55, ioaddr->nsect_addr);
453 outb(0xaa, ioaddr->lbal_addr);
454
455 nsect = inb(ioaddr->nsect_addr);
456 lbal = inb(ioaddr->lbal_addr);
457
458 if ((nsect == 0x55) && (lbal == 0xaa))
459 return 1; /* we found a device */
460
461 return 0; /* nothing found */
462}
463
464/**
465 * ata_mmio_devchk - PATA device presence detection
466 * @ap: ATA channel to examine
467 * @device: Device to examine (starting at zero)
468 *
469 * This technique was originally described in
470 * Hale Landis's ATADRVR (www.ata-atapi.com), and
471 * later found its way into the ATA/ATAPI spec.
472 *
473 * Write a pattern to the ATA shadow registers,
474 * and if a device is present, it will respond by
475 * correctly storing and echoing back the
476 * ATA shadow register contents.
477 *
478 * LOCKING:
479 * caller.
480 */
481
482static unsigned int ata_mmio_devchk(struct ata_port *ap,
483 unsigned int device)
484{
485 struct ata_ioports *ioaddr = &ap->ioaddr;
486 u8 nsect, lbal;
487
488 ap->ops->dev_select(ap, device);
489
490 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
491 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
492
493 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
494 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
495
496 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
497 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
498
499 nsect = readb((void __iomem *) ioaddr->nsect_addr);
500 lbal = readb((void __iomem *) ioaddr->lbal_addr);
501
502 if ((nsect == 0x55) && (lbal == 0xaa))
503 return 1; /* we found a device */
504
505 return 0; /* nothing found */
506}
507
508/**
509 * ata_devchk - PATA device presence detection
510 * @ap: ATA channel to examine
511 * @device: Device to examine (starting at zero)
512 *
513 * Dispatch ATA device presence detection, depending
514 * on whether we are using PIO or MMIO to talk to the
515 * ATA shadow registers.
516 *
517 * LOCKING:
518 * caller.
519 */
520
521static unsigned int ata_devchk(struct ata_port *ap,
522 unsigned int device)
523{
524 if (ap->flags & ATA_FLAG_MMIO)
525 return ata_mmio_devchk(ap, device);
526 return ata_pio_devchk(ap, device);
527}
528
529/**
530 * ata_dev_classify - determine device type based on ATA-spec signature
531 * @tf: ATA taskfile register set for device to be identified
532 *
533 * Determine from taskfile register contents whether a device is
534 * ATA or ATAPI, as per "Signature and persistence" section
535 * of ATA/PI spec (volume 1, sect 5.14).
536 *
537 * LOCKING:
538 * None.
539 *
540 * RETURNS:
541 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
542 * the event of failure.
543 */
544
Jeff Garzik057ace52005-10-22 14:27:05 -0400545unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 /* Apple's open source Darwin code hints that some devices only
548 * put a proper signature into the LBA mid/high registers,
549 * So, we only check those. It's sufficient for uniqueness.
550 */
551
552 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
553 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
554 DPRINTK("found ATA device by sig\n");
555 return ATA_DEV_ATA;
556 }
557
558 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
559 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
560 DPRINTK("found ATAPI device by sig\n");
561 return ATA_DEV_ATAPI;
562 }
563
564 DPRINTK("unknown device\n");
565 return ATA_DEV_UNKNOWN;
566}
567
568/**
569 * ata_dev_try_classify - Parse returned ATA device signature
570 * @ap: ATA channel to examine
571 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900572 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 *
574 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
575 * an ATA/ATAPI-defined set of values is placed in the ATA
576 * shadow registers, indicating the results of device detection
577 * and diagnostics.
578 *
579 * Select the ATA device, and read the values from the ATA shadow
580 * registers. Then parse according to the Error register value,
581 * and the spec-defined values examined by ata_dev_classify().
582 *
583 * LOCKING:
584 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900585 *
586 * RETURNS:
587 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
589
Tejun Heob4dc7622006-01-24 17:05:22 +0900590static unsigned int
591ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 struct ata_taskfile tf;
594 unsigned int class;
595 u8 err;
596
597 ap->ops->dev_select(ap, device);
598
599 memset(&tf, 0, sizeof(tf));
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400602 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900603 if (r_err)
604 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /* see if device passed diags */
607 if (err == 1)
608 /* do nothing */ ;
609 else if ((device == 0) && (err == 0x81))
610 /* do nothing */ ;
611 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900612 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Tejun Heob4dc7622006-01-24 17:05:22 +0900614 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900618 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900620 return ATA_DEV_NONE;
621 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900625 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 * @id: IDENTIFY DEVICE results we will examine
627 * @s: string into which data is output
628 * @ofs: offset into identify device page
629 * @len: length of string to return. must be an even number.
630 *
631 * The strings in the IDENTIFY DEVICE page are broken up into
632 * 16-bit chunks. Run through the string, and output each
633 * 8-bit chunk linearly, regardless of platform.
634 *
635 * LOCKING:
636 * caller.
637 */
638
Tejun Heo6a62a042006-02-13 10:02:46 +0900639void ata_id_string(const u16 *id, unsigned char *s,
640 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 unsigned int c;
643
644 while (len > 0) {
645 c = id[ofs] >> 8;
646 *s = c;
647 s++;
648
649 c = id[ofs] & 0xff;
650 *s = c;
651 s++;
652
653 ofs++;
654 len -= 2;
655 }
656}
657
Tejun Heo0e949ff2006-02-12 22:47:04 +0900658/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900659 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900660 * @id: IDENTIFY DEVICE results we will examine
661 * @s: string into which data is output
662 * @ofs: offset into identify device page
663 * @len: length of string to return. must be an odd number.
664 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900665 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900666 * trims trailing spaces and terminates the resulting string with
667 * null. @len must be actual maximum length (even number) + 1.
668 *
669 * LOCKING:
670 * caller.
671 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900672void ata_id_c_string(const u16 *id, unsigned char *s,
673 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900674{
675 unsigned char *p;
676
677 WARN_ON(!(len & 1));
678
Tejun Heo6a62a042006-02-13 10:02:46 +0900679 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900680
681 p = s + strnlen(s, len - 1);
682 while (p > s && p[-1] == ' ')
683 p--;
684 *p = '\0';
685}
Edward Falk0baab862005-06-02 18:17:13 -0400686
Tejun Heo29407402006-02-12 22:47:04 +0900687static u64 ata_id_n_sectors(const u16 *id)
688{
689 if (ata_id_has_lba(id)) {
690 if (ata_id_has_lba48(id))
691 return ata_id_u64(id, 100);
692 else
693 return ata_id_u32(id, 60);
694 } else {
695 if (ata_id_current_chs_valid(id))
696 return ata_id_u32(id, 57);
697 else
698 return id[1] * id[3] * id[6];
699 }
700}
701
Edward Falk0baab862005-06-02 18:17:13 -0400702/**
703 * ata_noop_dev_select - Select device 0/1 on ATA bus
704 * @ap: ATA channel to manipulate
705 * @device: ATA device (numbered from zero) to select
706 *
707 * This function performs no actual function.
708 *
709 * May be used as the dev_select() entry in ata_port_operations.
710 *
711 * LOCKING:
712 * caller.
713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
715{
716}
717
Edward Falk0baab862005-06-02 18:17:13 -0400718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719/**
720 * ata_std_dev_select - Select device 0/1 on ATA bus
721 * @ap: ATA channel to manipulate
722 * @device: ATA device (numbered from zero) to select
723 *
724 * Use the method defined in the ATA specification to
725 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400726 * ATA channel. Works with both PIO and MMIO.
727 *
728 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 *
730 * LOCKING:
731 * caller.
732 */
733
734void ata_std_dev_select (struct ata_port *ap, unsigned int device)
735{
736 u8 tmp;
737
738 if (device == 0)
739 tmp = ATA_DEVICE_OBS;
740 else
741 tmp = ATA_DEVICE_OBS | ATA_DEV1;
742
743 if (ap->flags & ATA_FLAG_MMIO) {
744 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
745 } else {
746 outb(tmp, ap->ioaddr.device_addr);
747 }
748 ata_pause(ap); /* needed; also flushes, for mmio */
749}
750
751/**
752 * ata_dev_select - Select device 0/1 on ATA bus
753 * @ap: ATA channel to manipulate
754 * @device: ATA device (numbered from zero) to select
755 * @wait: non-zero to wait for Status register BSY bit to clear
756 * @can_sleep: non-zero if context allows sleeping
757 *
758 * Use the method defined in the ATA specification to
759 * make either device 0, or device 1, active on the
760 * ATA channel.
761 *
762 * This is a high-level version of ata_std_dev_select(),
763 * which additionally provides the services of inserting
764 * the proper pauses and status polling, where needed.
765 *
766 * LOCKING:
767 * caller.
768 */
769
770void ata_dev_select(struct ata_port *ap, unsigned int device,
771 unsigned int wait, unsigned int can_sleep)
772{
773 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
774 ap->id, device, wait);
775
776 if (wait)
777 ata_wait_idle(ap);
778
779 ap->ops->dev_select(ap, device);
780
781 if (wait) {
782 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
783 msleep(150);
784 ata_wait_idle(ap);
785 }
786}
787
788/**
789 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900790 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900792 * Dump selected 16-bit words from the given IDENTIFY DEVICE
793 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 *
795 * LOCKING:
796 * caller.
797 */
798
Tejun Heo0bd33002006-02-12 22:47:05 +0900799static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 DPRINTK("49==0x%04x "
802 "53==0x%04x "
803 "63==0x%04x "
804 "64==0x%04x "
805 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900806 id[49],
807 id[53],
808 id[63],
809 id[64],
810 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 DPRINTK("80==0x%04x "
812 "81==0x%04x "
813 "82==0x%04x "
814 "83==0x%04x "
815 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900816 id[80],
817 id[81],
818 id[82],
819 id[83],
820 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 DPRINTK("88==0x%04x "
822 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900823 id[88],
824 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Tejun Heocb95d562006-03-06 04:31:56 +0900827/**
828 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
829 * @id: IDENTIFY data to compute xfer mask from
830 *
831 * Compute the xfermask for this device. This is not as trivial
832 * as it seems if we must consider early devices correctly.
833 *
834 * FIXME: pre IDE drive timing (do we care ?).
835 *
836 * LOCKING:
837 * None.
838 *
839 * RETURNS:
840 * Computed xfermask
841 */
842static unsigned int ata_id_xfermask(const u16 *id)
843{
844 unsigned int pio_mask, mwdma_mask, udma_mask;
845
846 /* Usual case. Word 53 indicates word 64 is valid */
847 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
848 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
849 pio_mask <<= 3;
850 pio_mask |= 0x7;
851 } else {
852 /* If word 64 isn't valid then Word 51 high byte holds
853 * the PIO timing number for the maximum. Turn it into
854 * a mask.
855 */
856 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
857
858 /* But wait.. there's more. Design your standards by
859 * committee and you too can get a free iordy field to
860 * process. However its the speeds not the modes that
861 * are supported... Note drivers using the timing API
862 * will get this right anyway
863 */
864 }
865
866 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900867
868 udma_mask = 0;
869 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
870 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900871
872 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
873}
874
Tejun Heo86e45b62006-03-05 15:29:09 +0900875/**
876 * ata_port_queue_task - Queue port_task
877 * @ap: The ata_port to queue port_task for
878 *
879 * Schedule @fn(@data) for execution after @delay jiffies using
880 * port_task. There is one port_task per port and it's the
881 * user(low level driver)'s responsibility to make sure that only
882 * one task is active at any given time.
883 *
884 * libata core layer takes care of synchronization between
885 * port_task and EH. ata_port_queue_task() may be ignored for EH
886 * synchronization.
887 *
888 * LOCKING:
889 * Inherited from caller.
890 */
891void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
892 unsigned long delay)
893{
894 int rc;
895
Tejun Heo2e755f62006-03-05 15:29:09 +0900896 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900897 return;
898
899 PREPARE_WORK(&ap->port_task, fn, data);
900
901 if (!delay)
902 rc = queue_work(ata_wq, &ap->port_task);
903 else
904 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
905
906 /* rc == 0 means that another user is using port task */
907 WARN_ON(rc == 0);
908}
909
910/**
911 * ata_port_flush_task - Flush port_task
912 * @ap: The ata_port to flush port_task for
913 *
914 * After this function completes, port_task is guranteed not to
915 * be running or scheduled.
916 *
917 * LOCKING:
918 * Kernel thread context (may sleep)
919 */
920void ata_port_flush_task(struct ata_port *ap)
921{
922 unsigned long flags;
923
924 DPRINTK("ENTER\n");
925
926 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900927 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900928 spin_unlock_irqrestore(&ap->host_set->lock, flags);
929
930 DPRINTK("flush #1\n");
931 flush_workqueue(ata_wq);
932
933 /*
934 * At this point, if a task is running, it's guaranteed to see
935 * the FLUSH flag; thus, it will never queue pio tasks again.
936 * Cancel and flush.
937 */
938 if (!cancel_delayed_work(&ap->port_task)) {
939 DPRINTK("flush #2\n");
940 flush_workqueue(ata_wq);
941 }
942
943 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900944 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900945 spin_unlock_irqrestore(&ap->host_set->lock, flags);
946
947 DPRINTK("EXIT\n");
948}
949
Tejun Heo77853bf2006-01-23 13:09:36 +0900950void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900951{
Tejun Heo77853bf2006-01-23 13:09:36 +0900952 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900953
Tejun Heoa2a7a662005-12-13 14:48:31 +0900954 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900955}
956
957/**
958 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900959 * @dev: Device to which the command is sent
960 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900961 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900962 * @dma_dir: Data tranfer direction of the command
963 * @buf: Data buffer of the command
964 * @buflen: Length of data buffer
965 *
966 * Executes libata internal command with timeout. @tf contains
967 * command on entry and result on return. Timeout and error
968 * conditions are reported via return value. No recovery action
969 * is taken after a command times out. It's caller's duty to
970 * clean up after timeout.
971 *
972 * LOCKING:
973 * None. Should be called with kernel context, might sleep.
974 */
975
Tejun Heo3373efd2006-05-15 20:57:53 +0900976unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900977 struct ata_taskfile *tf, const u8 *cdb,
978 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900979{
Tejun Heo3373efd2006-05-15 20:57:53 +0900980 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900981 u8 command = tf->command;
982 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +0900983 unsigned int tag, preempted_tag;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900984 DECLARE_COMPLETION(wait);
985 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900986 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +0900987 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900988
989 spin_lock_irqsave(&ap->host_set->lock, flags);
990
Tejun Heoe3180492006-05-15 20:58:09 +0900991 /* no internal command while frozen */
992 if (ap->flags & ATA_FLAG_FROZEN) {
993 spin_unlock_irqrestore(&ap->host_set->lock, flags);
994 return AC_ERR_SYSTEM;
995 }
996
Tejun Heo2ab7db12006-05-15 20:58:02 +0900997 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +0900998
Tejun Heo2ab7db12006-05-15 20:58:02 +0900999 /* XXX: Tag 0 is used for drivers with legacy EH as some
1000 * drivers choke if any other tag is given. This breaks
1001 * ata_tag_internal() test for those drivers. Don't use new
1002 * EH stuff without converting to it.
1003 */
1004 if (ap->ops->error_handler)
1005 tag = ATA_TAG_INTERNAL;
1006 else
1007 tag = 0;
1008
1009 if (test_and_set_bit(tag, &ap->qactive))
1010 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001011 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001012
1013 qc->tag = tag;
1014 qc->scsicmd = NULL;
1015 qc->ap = ap;
1016 qc->dev = dev;
1017 ata_qc_reinit(qc);
1018
1019 preempted_tag = ap->active_tag;
1020 ap->active_tag = ATA_TAG_POISON;
1021
1022 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001023 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001024 if (cdb)
1025 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001026 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001027 qc->dma_dir = dma_dir;
1028 if (dma_dir != DMA_NONE) {
1029 ata_sg_init_one(qc, buf, buflen);
1030 qc->nsect = buflen / ATA_SECT_SIZE;
1031 }
1032
Tejun Heo77853bf2006-01-23 13:09:36 +09001033 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001034 qc->complete_fn = ata_qc_complete_internal;
1035
Tejun Heo8e0e6942006-03-31 20:41:11 +09001036 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001037
1038 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1039
Tejun Heod95a7172006-05-15 20:58:14 +09001040 rc = wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL);
Albert Lee41ade502006-03-14 11:19:04 +08001041
Tejun Heod95a7172006-05-15 20:58:14 +09001042 ata_port_flush_task(ap);
1043
1044 if (!rc) {
Tejun Heoa2a7a662005-12-13 14:48:31 +09001045 spin_lock_irqsave(&ap->host_set->lock, flags);
1046
1047 /* We're racing with irq here. If we lose, the
1048 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001049 * twice. If we win, the port is frozen and will be
1050 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001051 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001052 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001053 qc->err_mask |= AC_ERR_TIMEOUT;
1054
1055 if (ap->ops->error_handler)
1056 ata_port_freeze(ap);
1057 else
1058 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001059
1060 ata_dev_printk(dev, KERN_WARNING,
1061 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001062 }
1063
1064 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1065 }
1066
Tejun Heod95a7172006-05-15 20:58:14 +09001067 /* do post_internal_cmd */
1068 if (ap->ops->post_internal_cmd)
1069 ap->ops->post_internal_cmd(qc);
1070
1071 if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) {
1072 ata_dev_printk(dev, KERN_WARNING, "zero err_mask for failed "
1073 "internal command, assuming AC_ERR_OTHER\n");
1074 qc->err_mask |= AC_ERR_OTHER;
1075 }
1076
Tejun Heo15869302006-05-15 20:57:33 +09001077 /* finish up */
1078 spin_lock_irqsave(&ap->host_set->lock, flags);
1079
Tejun Heoe61e0672006-05-15 20:57:40 +09001080 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001081 err_mask = qc->err_mask;
1082
1083 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001084 ap->active_tag = preempted_tag;
Tejun Heo77853bf2006-01-23 13:09:36 +09001085
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001086 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1087 * Until those drivers are fixed, we detect the condition
1088 * here, fail the command with AC_ERR_SYSTEM and reenable the
1089 * port.
1090 *
1091 * Note that this doesn't change any behavior as internal
1092 * command failure results in disabling the device in the
1093 * higher layer for LLDDs without new reset/EH callbacks.
1094 *
1095 * Kill the following code as soon as those drivers are fixed.
1096 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001097 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001098 err_mask |= AC_ERR_SYSTEM;
1099 ata_port_probe(ap);
1100 }
1101
Tejun Heo15869302006-05-15 20:57:33 +09001102 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1103
Tejun Heo77853bf2006-01-23 13:09:36 +09001104 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001105}
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001108 * ata_pio_need_iordy - check if iordy needed
1109 * @adev: ATA device
1110 *
1111 * Check if the current speed of the device requires IORDY. Used
1112 * by various controllers for chip configuration.
1113 */
1114
1115unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1116{
1117 int pio;
1118 int speed = adev->pio_mode - XFER_PIO_0;
1119
1120 if (speed < 2)
1121 return 0;
1122 if (speed > 2)
1123 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001124
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001125 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1126
1127 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1128 pio = adev->id[ATA_ID_EIDE_PIO];
1129 /* Is the speed faster than the drive allows non IORDY ? */
1130 if (pio) {
1131 /* This is cycle times not frequency - watch the logic! */
1132 if (pio > 240) /* PIO2 is 240nS per cycle */
1133 return 1;
1134 return 0;
1135 }
1136 }
1137 return 0;
1138}
1139
1140/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001141 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001142 * @dev: target device
1143 * @p_class: pointer to class of the target device (may be changed)
1144 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001145 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001146 *
1147 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1148 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001149 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1150 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001151 *
1152 * LOCKING:
1153 * Kernel thread context (may sleep)
1154 *
1155 * RETURNS:
1156 * 0 on success, -errno otherwise.
1157 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001158static int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1159 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001160{
Tejun Heo3373efd2006-05-15 20:57:53 +09001161 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001162 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001163 struct ata_taskfile tf;
1164 unsigned int err_mask = 0;
1165 const char *reason;
1166 int rc;
1167
1168 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1169
Tejun Heo49016ac2006-02-21 02:12:11 +09001170 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1171
1172 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001173 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001174
1175 switch (class) {
1176 case ATA_DEV_ATA:
1177 tf.command = ATA_CMD_ID_ATA;
1178 break;
1179 case ATA_DEV_ATAPI:
1180 tf.command = ATA_CMD_ID_ATAPI;
1181 break;
1182 default:
1183 rc = -ENODEV;
1184 reason = "unsupported class";
1185 goto err_out;
1186 }
1187
1188 tf.protocol = ATA_PROT_PIO;
1189
Tejun Heo3373efd2006-05-15 20:57:53 +09001190 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001191 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001192 if (err_mask) {
1193 rc = -EIO;
1194 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001195 goto err_out;
1196 }
1197
1198 swap_buf_le16(id, ATA_ID_WORDS);
1199
Tejun Heo49016ac2006-02-21 02:12:11 +09001200 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001201 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001202 rc = -EINVAL;
1203 reason = "device reports illegal type";
1204 goto err_out;
1205 }
1206
1207 if (post_reset && class == ATA_DEV_ATA) {
1208 /*
1209 * The exact sequence expected by certain pre-ATA4 drives is:
1210 * SRST RESET
1211 * IDENTIFY
1212 * INITIALIZE DEVICE PARAMETERS
1213 * anything else..
1214 * Some drives were very specific about that exact sequence.
1215 */
1216 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001217 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001218 if (err_mask) {
1219 rc = -EIO;
1220 reason = "INIT_DEV_PARAMS failed";
1221 goto err_out;
1222 }
1223
1224 /* current CHS translation info (id[53-58]) might be
1225 * changed. reread the identify device info.
1226 */
1227 post_reset = 0;
1228 goto retry;
1229 }
1230 }
1231
1232 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001233
Tejun Heo49016ac2006-02-21 02:12:11 +09001234 return 0;
1235
1236 err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09001237 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
1238 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001239 return rc;
1240}
1241
Tejun Heo3373efd2006-05-15 20:57:53 +09001242static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001243{
Tejun Heo3373efd2006-05-15 20:57:53 +09001244 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001245}
1246
Tejun Heo49016ac2006-02-21 02:12:11 +09001247/**
Tejun Heoffeae412006-03-01 16:09:35 +09001248 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001249 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001250 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 *
Tejun Heoffeae412006-03-01 16:09:35 +09001252 * Configure @dev according to @dev->id. Generic and low-level
1253 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 *
1255 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001256 * Kernel thread context (may sleep)
1257 *
1258 * RETURNS:
1259 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001261static int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Tejun Heo3373efd2006-05-15 20:57:53 +09001263 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001264 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001265 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001266 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Tejun Heoe1211e32006-04-01 01:38:18 +09001268 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001270 ap->id, dev->devno);
1271 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273
Tejun Heoffeae412006-03-01 16:09:35 +09001274 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001276 /* print device capabilities */
1277 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001278 ata_dev_printk(dev, KERN_DEBUG, "cfg 49:%04x 82:%04x 83:%04x "
1279 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1280 id[49], id[82], id[83], id[84],
1281 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001282
Tejun Heo208a9932006-03-05 17:55:58 +09001283 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001284 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001285 dev->max_sectors = 0;
1286 dev->cdb_len = 0;
1287 dev->n_sectors = 0;
1288 dev->cylinders = 0;
1289 dev->heads = 0;
1290 dev->sectors = 0;
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /*
1293 * common ATA, ATAPI feature tests
1294 */
1295
Tejun Heoff8854b2006-03-06 04:31:56 +09001296 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001297 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Tejun Heo1148c3a2006-03-13 19:48:04 +09001299 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 /* ATA-specific feature tests */
1302 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001303 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001304
Tejun Heo1148c3a2006-03-13 19:48:04 +09001305 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001306 const char *lba_desc;
Albert Lee8bf62ece2005-05-12 15:29:42 -04001307
Tejun Heo4c2d7212006-03-05 17:55:58 +09001308 lba_desc = "LBA";
1309 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001310 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001311 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001312 lba_desc = "LBA48";
1313 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001314
1315 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001316 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001317 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1318 "max %s, %Lu sectors: %s\n",
1319 ata_id_major_version(id),
1320 ata_mode_string(xfer_mask),
1321 (unsigned long long)dev->n_sectors,
1322 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001323 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001324 /* CHS */
1325
1326 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001327 dev->cylinders = id[1];
1328 dev->heads = id[3];
1329 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001330
Tejun Heo1148c3a2006-03-13 19:48:04 +09001331 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001332 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001333 dev->cylinders = id[54];
1334 dev->heads = id[55];
1335 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001336 }
1337
1338 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001339 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001340 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1341 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1342 ata_id_major_version(id),
1343 ata_mode_string(xfer_mask),
1344 (unsigned long long)dev->n_sectors,
1345 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347
Albert Lee07f6f7d2005-11-01 19:33:20 +08001348 if (dev->id[59] & 0x100) {
1349 dev->multi_count = dev->id[59] & 0xff;
1350 DPRINTK("ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001351 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001352 }
1353
Tejun Heo6e7846e2006-02-12 23:32:58 +09001354 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356
1357 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001358 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001359 char *cdb_intr_string = "";
1360
Tejun Heo1148c3a2006-03-13 19:48:04 +09001361 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001363 ata_dev_printk(dev, KERN_WARNING,
1364 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001365 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 goto err_out_nosup;
1367 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001368 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Albert Lee08a556d2006-03-31 13:29:04 +08001370 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001371 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001372 cdb_intr_string = ", CDB intr";
1373 }
Albert Lee312f7da2005-09-27 17:38:03 +08001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001376 if (print_info)
Tejun Heo12436c32006-05-15 20:59:15 +09001377 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1378 ata_mode_string(xfer_mask),
1379 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381
Tejun Heo6e7846e2006-02-12 23:32:58 +09001382 ap->host->max_cmd_len = 0;
1383 for (i = 0; i < ATA_MAX_DEVICES; i++)
1384 ap->host->max_cmd_len = max_t(unsigned int,
1385 ap->host->max_cmd_len,
1386 ap->device[i].cdb_len);
1387
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001388 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001389 if (ata_dev_knobble(dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001390 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001391 ata_dev_printk(dev, KERN_INFO,
1392 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001393 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001394 dev->max_sectors = ATA_MAX_SECTORS;
1395 }
1396
1397 if (ap->ops->dev_config)
1398 ap->ops->dev_config(ap, dev);
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001405 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
1408/**
1409 * ata_bus_probe - Reset and probe ATA bus
1410 * @ap: Bus to probe
1411 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001412 * Master ATA bus probing function. Initiates a hardware-dependent
1413 * bus reset, then attempts to identify any devices found on
1414 * the bus.
1415 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001417 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 *
1419 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001420 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 */
1422
1423static int ata_bus_probe(struct ata_port *ap)
1424{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001425 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001426 int tries[ATA_MAX_DEVICES];
1427 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001428 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Tejun Heo28ca5c52006-03-01 16:09:36 +09001430 ata_port_probe(ap);
1431
Tejun Heo14d2bac2006-04-02 17:54:46 +09001432 for (i = 0; i < ATA_MAX_DEVICES; i++)
1433 tries[i] = ATA_PROBE_MAX_TRIES;
1434
1435 retry:
1436 down_xfermask = 0;
1437
Tejun Heo20444702006-03-13 01:57:01 +09001438 /* reset and determine device classes */
1439 for (i = 0; i < ATA_MAX_DEVICES; i++)
1440 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001441
Tejun Heo20444702006-03-13 01:57:01 +09001442 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001443 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001444 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001445 ata_port_printk(ap, KERN_ERR,
1446 "reset failed (errno=%d)\n", rc);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001447 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001448 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001449 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001450 ap->ops->phy_reset(ap);
1451
Tejun Heof8c2c422006-05-15 20:57:30 +09001452 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1453 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo28ca5c52006-03-01 16:09:36 +09001454 classes[i] = ap->device[i].class;
Tejun Heof8c2c422006-05-15 20:57:30 +09001455 ap->device[i].class = ATA_DEV_UNKNOWN;
1456 }
Tejun Heo20444702006-03-13 01:57:01 +09001457
Tejun Heo28ca5c52006-03-01 16:09:36 +09001458 ata_port_probe(ap);
1459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Tejun Heo20444702006-03-13 01:57:01 +09001461 for (i = 0; i < ATA_MAX_DEVICES; i++)
1462 if (classes[i] == ATA_DEV_UNKNOWN)
1463 classes[i] = ATA_DEV_NONE;
1464
Tejun Heo28ca5c52006-03-01 16:09:36 +09001465 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001467 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001468
Tejun Heoec573752006-04-11 22:26:29 +09001469 if (tries[i])
1470 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001471
Tejun Heoe1211e32006-04-01 01:38:18 +09001472 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001473 continue;
1474
Tejun Heo3373efd2006-05-15 20:57:53 +09001475 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001476 if (rc)
1477 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001478
Tejun Heo3373efd2006-05-15 20:57:53 +09001479 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001480 if (rc)
1481 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001484 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001485 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001486 if (rc) {
1487 down_xfermask = 1;
1488 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001491 for (i = 0; i < ATA_MAX_DEVICES; i++)
1492 if (ata_dev_enabled(&ap->device[i]))
1493 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001494
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001495 /* no device present, disable port */
1496 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001498 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001499
1500 fail:
1501 switch (rc) {
1502 case -EINVAL:
1503 case -ENODEV:
1504 tries[dev->devno] = 0;
1505 break;
1506 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001507 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001508 /* fall through */
1509 default:
1510 tries[dev->devno]--;
1511 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001512 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001513 tries[dev->devno] = 0;
1514 }
1515
Tejun Heoec573752006-04-11 22:26:29 +09001516 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001517 ata_down_xfermask_limit(dev, 1);
1518 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001519 }
1520
Tejun Heo14d2bac2006-04-02 17:54:46 +09001521 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
1523
1524/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001525 * ata_port_probe - Mark port as enabled
1526 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001528 * Modify @ap data structure such that the system
1529 * thinks that the entire port is enabled.
1530 *
1531 * LOCKING: host_set lock, or some other form of
1532 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 */
1534
1535void ata_port_probe(struct ata_port *ap)
1536{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001537 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
1540/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001541 * sata_print_link_status - Print SATA link status
1542 * @ap: SATA port to printk link status about
1543 *
1544 * This function prints link speed and status of a SATA link.
1545 *
1546 * LOCKING:
1547 * None.
1548 */
1549static void sata_print_link_status(struct ata_port *ap)
1550{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001551 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001552
Tejun Heo81952c52006-05-15 20:57:47 +09001553 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001554 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001555 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001556
Tejun Heo81952c52006-05-15 20:57:47 +09001557 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001558 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001559 ata_port_printk(ap, KERN_INFO,
1560 "SATA link up %s (SStatus %X SControl %X)\n",
1561 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001562 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001563 ata_port_printk(ap, KERN_INFO,
1564 "SATA link down (SStatus %X SControl %X)\n",
1565 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001566 }
1567}
1568
1569/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001570 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1571 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001573 * This function issues commands to standard SATA Sxxx
1574 * PHY registers, to wake up the phy (and device), and
1575 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 *
1577 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001578 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 *
1580 */
1581void __sata_phy_reset(struct ata_port *ap)
1582{
1583 u32 sstatus;
1584 unsigned long timeout = jiffies + (HZ * 5);
1585
1586 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001587 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001588 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001589 /* Couldn't find anything in SATA I/II specs, but
1590 * AHCI-1.1 10.4.2 says at least 1 ms. */
1591 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
Tejun Heo81952c52006-05-15 20:57:47 +09001593 /* phy wake/clear reset */
1594 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 /* wait for phy to become ready, if necessary */
1597 do {
1598 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001599 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if ((sstatus & 0xf) != 1)
1601 break;
1602 } while (time_before(jiffies, timeout));
1603
Tejun Heo3be680b2005-12-19 22:35:02 +09001604 /* print link status */
1605 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001606
Tejun Heo3be680b2005-12-19 22:35:02 +09001607 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001608 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001610 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Tejun Heo198e0fe2006-04-02 18:51:52 +09001613 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return;
1615
1616 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1617 ata_port_disable(ap);
1618 return;
1619 }
1620
1621 ap->cbl = ATA_CBL_SATA;
1622}
1623
1624/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001625 * sata_phy_reset - Reset SATA bus.
1626 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001628 * This function resets the SATA bus, and then probes
1629 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 *
1631 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001632 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 *
1634 */
1635void sata_phy_reset(struct ata_port *ap)
1636{
1637 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001638 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return;
1640 ata_bus_reset(ap);
1641}
1642
1643/**
Alan Coxebdfca62006-03-23 15:38:34 +00001644 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001645 * @adev: device
1646 *
1647 * Obtain the other device on the same cable, or if none is
1648 * present NULL is returned
1649 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001650
Tejun Heo3373efd2006-05-15 20:57:53 +09001651struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001652{
Tejun Heo3373efd2006-05-15 20:57:53 +09001653 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001654 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001655 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001656 return NULL;
1657 return pair;
1658}
1659
1660/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001661 * ata_port_disable - Disable port.
1662 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001664 * Modify @ap data structure such that the system
1665 * thinks that the entire port is disabled, and should
1666 * never attempt to probe or communicate with devices
1667 * on this port.
1668 *
1669 * LOCKING: host_set lock, or some other form of
1670 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 */
1672
1673void ata_port_disable(struct ata_port *ap)
1674{
1675 ap->device[0].class = ATA_DEV_NONE;
1676 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001677 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
Tejun Heo1c3fae42006-04-02 20:53:28 +09001680/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001681 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001682 * @ap: Port to adjust SATA spd limit for
1683 *
1684 * Adjust SATA spd limit of @ap downward. Note that this
1685 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001686 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001687 *
1688 * LOCKING:
1689 * Inherited from caller.
1690 *
1691 * RETURNS:
1692 * 0 on success, negative errno on failure
1693 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001694int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001695{
Tejun Heo81952c52006-05-15 20:57:47 +09001696 u32 sstatus, spd, mask;
1697 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001698
Tejun Heo81952c52006-05-15 20:57:47 +09001699 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1700 if (rc)
1701 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001702
1703 mask = ap->sata_spd_limit;
1704 if (mask <= 1)
1705 return -EINVAL;
1706 highbit = fls(mask) - 1;
1707 mask &= ~(1 << highbit);
1708
Tejun Heo81952c52006-05-15 20:57:47 +09001709 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001710 if (spd <= 1)
1711 return -EINVAL;
1712 spd--;
1713 mask &= (1 << spd) - 1;
1714 if (!mask)
1715 return -EINVAL;
1716
1717 ap->sata_spd_limit = mask;
1718
Tejun Heof15a1da2006-05-15 20:57:56 +09001719 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1720 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001721
1722 return 0;
1723}
1724
Tejun Heo3c567b72006-05-15 20:57:23 +09001725static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001726{
1727 u32 spd, limit;
1728
1729 if (ap->sata_spd_limit == UINT_MAX)
1730 limit = 0;
1731 else
1732 limit = fls(ap->sata_spd_limit);
1733
1734 spd = (*scontrol >> 4) & 0xf;
1735 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1736
1737 return spd != limit;
1738}
1739
1740/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001741 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001742 * @ap: Port in question
1743 *
1744 * Test whether the spd limit in SControl matches
1745 * @ap->sata_spd_limit. This function is used to determine
1746 * whether hardreset is necessary to apply SATA spd
1747 * configuration.
1748 *
1749 * LOCKING:
1750 * Inherited from caller.
1751 *
1752 * RETURNS:
1753 * 1 if SATA spd configuration is needed, 0 otherwise.
1754 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001755int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001756{
1757 u32 scontrol;
1758
Tejun Heo81952c52006-05-15 20:57:47 +09001759 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001760 return 0;
1761
Tejun Heo3c567b72006-05-15 20:57:23 +09001762 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001763}
1764
1765/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001766 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001767 * @ap: Port to set SATA spd for
1768 *
1769 * Set SATA spd of @ap according to sata_spd_limit.
1770 *
1771 * LOCKING:
1772 * Inherited from caller.
1773 *
1774 * RETURNS:
1775 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001776 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001777 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001778int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001779{
1780 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001781 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001782
Tejun Heo81952c52006-05-15 20:57:47 +09001783 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1784 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001785
Tejun Heo3c567b72006-05-15 20:57:23 +09001786 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001787 return 0;
1788
Tejun Heo81952c52006-05-15 20:57:47 +09001789 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1790 return rc;
1791
Tejun Heo1c3fae42006-04-02 20:53:28 +09001792 return 1;
1793}
1794
Alan Cox452503f2005-10-21 19:01:32 -04001795/*
1796 * This mode timing computation functionality is ported over from
1797 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1798 */
1799/*
1800 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1801 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1802 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001803 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001804 */
1805
1806static const struct ata_timing ata_timing[] = {
1807
1808 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1809 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1810 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1811 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1812
1813 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1814 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1815 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1816
1817/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001818
Alan Cox452503f2005-10-21 19:01:32 -04001819 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1820 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1821 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001822
Alan Cox452503f2005-10-21 19:01:32 -04001823 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1824 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1825 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1826
1827/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1828 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1829 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1830
1831 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1832 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1833 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1834
1835/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1836
1837 { 0xFF }
1838};
1839
1840#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1841#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1842
1843static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1844{
1845 q->setup = EZ(t->setup * 1000, T);
1846 q->act8b = EZ(t->act8b * 1000, T);
1847 q->rec8b = EZ(t->rec8b * 1000, T);
1848 q->cyc8b = EZ(t->cyc8b * 1000, T);
1849 q->active = EZ(t->active * 1000, T);
1850 q->recover = EZ(t->recover * 1000, T);
1851 q->cycle = EZ(t->cycle * 1000, T);
1852 q->udma = EZ(t->udma * 1000, UT);
1853}
1854
1855void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1856 struct ata_timing *m, unsigned int what)
1857{
1858 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1859 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1860 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1861 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1862 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1863 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1864 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1865 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1866}
1867
1868static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1869{
1870 const struct ata_timing *t;
1871
1872 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001873 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001874 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001875 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001876}
1877
1878int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1879 struct ata_timing *t, int T, int UT)
1880{
1881 const struct ata_timing *s;
1882 struct ata_timing p;
1883
1884 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001885 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001886 */
Alan Cox452503f2005-10-21 19:01:32 -04001887
1888 if (!(s = ata_timing_find_mode(speed)))
1889 return -EINVAL;
1890
Albert Lee75b1f2f2005-11-16 17:06:18 +08001891 memcpy(t, s, sizeof(*s));
1892
Alan Cox452503f2005-10-21 19:01:32 -04001893 /*
1894 * If the drive is an EIDE drive, it can tell us it needs extended
1895 * PIO/MW_DMA cycle timing.
1896 */
1897
1898 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1899 memset(&p, 0, sizeof(p));
1900 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1901 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1902 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1903 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1904 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1905 }
1906 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1907 }
1908
1909 /*
1910 * Convert the timing to bus clock counts.
1911 */
1912
Albert Lee75b1f2f2005-11-16 17:06:18 +08001913 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001914
1915 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001916 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1917 * S.M.A.R.T * and some other commands. We have to ensure that the
1918 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001919 */
1920
1921 if (speed > XFER_PIO_4) {
1922 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1923 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1924 }
1925
1926 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001927 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001928 */
1929
1930 if (t->act8b + t->rec8b < t->cyc8b) {
1931 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1932 t->rec8b = t->cyc8b - t->act8b;
1933 }
1934
1935 if (t->active + t->recover < t->cycle) {
1936 t->active += (t->cycle - (t->active + t->recover)) / 2;
1937 t->recover = t->cycle - t->active;
1938 }
1939
1940 return 0;
1941}
1942
Tejun Heocf176e12006-04-02 17:54:46 +09001943/**
1944 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09001945 * @dev: Device to adjust xfer masks
1946 * @force_pio0: Force PIO0
1947 *
1948 * Adjust xfer masks of @dev downward. Note that this function
1949 * does not apply the change. Invoking ata_set_mode() afterwards
1950 * will apply the limit.
1951 *
1952 * LOCKING:
1953 * Inherited from caller.
1954 *
1955 * RETURNS:
1956 * 0 on success, negative errno on failure
1957 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001958int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001959{
1960 unsigned long xfer_mask;
1961 int highbit;
1962
1963 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
1964 dev->udma_mask);
1965
1966 if (!xfer_mask)
1967 goto fail;
1968 /* don't gear down to MWDMA from UDMA, go directly to PIO */
1969 if (xfer_mask & ATA_MASK_UDMA)
1970 xfer_mask &= ~ATA_MASK_MWDMA;
1971
1972 highbit = fls(xfer_mask) - 1;
1973 xfer_mask &= ~(1 << highbit);
1974 if (force_pio0)
1975 xfer_mask &= 1 << ATA_SHIFT_PIO;
1976 if (!xfer_mask)
1977 goto fail;
1978
1979 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
1980 &dev->udma_mask);
1981
Tejun Heof15a1da2006-05-15 20:57:56 +09001982 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
1983 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09001984
1985 return 0;
1986
1987 fail:
1988 return -EINVAL;
1989}
1990
Tejun Heo3373efd2006-05-15 20:57:53 +09001991static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Tejun Heo83206a22006-03-24 15:25:31 +09001993 unsigned int err_mask;
1994 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Tejun Heoe8384602006-04-02 18:51:53 +09001996 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 if (dev->xfer_shift == ATA_SHIFT_PIO)
1998 dev->flags |= ATA_DFLAG_PIO;
1999
Tejun Heo3373efd2006-05-15 20:57:53 +09002000 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002001 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002002 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2003 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002004 return -EIO;
2005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Tejun Heo3373efd2006-05-15 20:57:53 +09002007 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002008 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002009 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002010
Tejun Heo23e71c32006-03-06 04:31:57 +09002011 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2012 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Tejun Heof15a1da2006-05-15 20:57:56 +09002014 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2015 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017}
2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019/**
2020 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2021 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002022 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002024 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2025 * ata_set_mode() fails, pointer to the failing device is
2026 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002027 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002029 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002030 *
2031 * RETURNS:
2032 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002034int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Tejun Heoe8e06192006-04-01 01:38:18 +09002036 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002037 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Tejun Heo3adcebb2006-05-15 20:57:37 +09002039 /* has private set_mode? */
2040 if (ap->ops->set_mode) {
2041 /* FIXME: make ->set_mode handle no device case and
2042 * return error code and failing device on failure.
2043 */
2044 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2045 if (ata_dev_enabled(&ap->device[i])) {
2046 ap->ops->set_mode(ap);
2047 break;
2048 }
2049 }
2050 return 0;
2051 }
2052
Tejun Heoa6d5a512006-03-06 04:31:57 +09002053 /* step 1: calculate xfer_mask */
2054 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002055 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002056
Tejun Heoe8e06192006-04-01 01:38:18 +09002057 dev = &ap->device[i];
2058
Tejun Heoe1211e32006-04-01 01:38:18 +09002059 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002060 continue;
2061
Tejun Heo3373efd2006-05-15 20:57:53 +09002062 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002063
Tejun Heoacf356b2006-03-24 14:07:50 +09002064 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2065 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2066 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2067 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002068
Tejun Heo4f659772006-04-01 01:38:18 +09002069 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002070 if (dev->dma_mode)
2071 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002072 }
Tejun Heo4f659772006-04-01 01:38:18 +09002073 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002074 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002075
2076 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002077 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2078 dev = &ap->device[i];
2079 if (!ata_dev_enabled(dev))
2080 continue;
2081
2082 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002083 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002084 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002085 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002086 }
2087
2088 dev->xfer_mode = dev->pio_mode;
2089 dev->xfer_shift = ATA_SHIFT_PIO;
2090 if (ap->ops->set_piomode)
2091 ap->ops->set_piomode(ap, dev);
2092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Tejun Heoa6d5a512006-03-06 04:31:57 +09002094 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002095 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2096 dev = &ap->device[i];
2097
2098 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2099 continue;
2100
2101 dev->xfer_mode = dev->dma_mode;
2102 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2103 if (ap->ops->set_dmamode)
2104 ap->ops->set_dmamode(ap, dev);
2105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002108 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002109 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Tejun Heoe1211e32006-04-01 01:38:18 +09002111 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002112 continue;
2113
Tejun Heo3373efd2006-05-15 20:57:53 +09002114 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002115 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002116 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Tejun Heoe8e06192006-04-01 01:38:18 +09002119 /* Record simplex status. If we selected DMA then the other
2120 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002121 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002122 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2123 ap->host_set->simplex_claimed = 1;
2124
Tejun Heoe8e06192006-04-01 01:38:18 +09002125 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 if (ap->ops->post_set_mode)
2127 ap->ops->post_set_mode(ap);
2128
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002129 out:
2130 if (rc)
2131 *r_failed_dev = dev;
2132 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
2135/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002136 * ata_tf_to_host - issue ATA taskfile to host controller
2137 * @ap: port to which command is being issued
2138 * @tf: ATA taskfile register set
2139 *
2140 * Issues ATA taskfile register set to ATA host controller,
2141 * with proper synchronization with interrupt handler and
2142 * other threads.
2143 *
2144 * LOCKING:
2145 * spin_lock_irqsave(host_set lock)
2146 */
2147
2148static inline void ata_tf_to_host(struct ata_port *ap,
2149 const struct ata_taskfile *tf)
2150{
2151 ap->ops->tf_load(ap, tf);
2152 ap->ops->exec_command(ap, tf);
2153}
2154
2155/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 * ata_busy_sleep - sleep until BSY clears, or timeout
2157 * @ap: port containing status register to be polled
2158 * @tmout_pat: impatience timeout
2159 * @tmout: overall timeout
2160 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002161 * Sleep until ATA Status register bit BSY clears,
2162 * or a timeout occurs.
2163 *
2164 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 */
2166
Tejun Heo6f8b9952006-01-24 17:05:21 +09002167unsigned int ata_busy_sleep (struct ata_port *ap,
2168 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
2170 unsigned long timer_start, timeout;
2171 u8 status;
2172
2173 status = ata_busy_wait(ap, ATA_BUSY, 300);
2174 timer_start = jiffies;
2175 timeout = timer_start + tmout_pat;
2176 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2177 msleep(50);
2178 status = ata_busy_wait(ap, ATA_BUSY, 3);
2179 }
2180
2181 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002182 ata_port_printk(ap, KERN_WARNING,
2183 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185 timeout = timer_start + tmout;
2186 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2187 msleep(50);
2188 status = ata_chk_status(ap);
2189 }
2190
2191 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002192 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2193 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 return 1;
2195 }
2196
2197 return 0;
2198}
2199
2200static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2201{
2202 struct ata_ioports *ioaddr = &ap->ioaddr;
2203 unsigned int dev0 = devmask & (1 << 0);
2204 unsigned int dev1 = devmask & (1 << 1);
2205 unsigned long timeout;
2206
2207 /* if device 0 was found in ata_devchk, wait for its
2208 * BSY bit to clear
2209 */
2210 if (dev0)
2211 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2212
2213 /* if device 1 was found in ata_devchk, wait for
2214 * register access, then wait for BSY to clear
2215 */
2216 timeout = jiffies + ATA_TMOUT_BOOT;
2217 while (dev1) {
2218 u8 nsect, lbal;
2219
2220 ap->ops->dev_select(ap, 1);
2221 if (ap->flags & ATA_FLAG_MMIO) {
2222 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2223 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2224 } else {
2225 nsect = inb(ioaddr->nsect_addr);
2226 lbal = inb(ioaddr->lbal_addr);
2227 }
2228 if ((nsect == 1) && (lbal == 1))
2229 break;
2230 if (time_after(jiffies, timeout)) {
2231 dev1 = 0;
2232 break;
2233 }
2234 msleep(50); /* give drive a breather */
2235 }
2236 if (dev1)
2237 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2238
2239 /* is all this really necessary? */
2240 ap->ops->dev_select(ap, 0);
2241 if (dev1)
2242 ap->ops->dev_select(ap, 1);
2243 if (dev0)
2244 ap->ops->dev_select(ap, 0);
2245}
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247static unsigned int ata_bus_softreset(struct ata_port *ap,
2248 unsigned int devmask)
2249{
2250 struct ata_ioports *ioaddr = &ap->ioaddr;
2251
2252 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2253
2254 /* software reset. causes dev0 to be selected */
2255 if (ap->flags & ATA_FLAG_MMIO) {
2256 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2257 udelay(20); /* FIXME: flush */
2258 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2259 udelay(20); /* FIXME: flush */
2260 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2261 } else {
2262 outb(ap->ctl, ioaddr->ctl_addr);
2263 udelay(10);
2264 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2265 udelay(10);
2266 outb(ap->ctl, ioaddr->ctl_addr);
2267 }
2268
2269 /* spec mandates ">= 2ms" before checking status.
2270 * We wait 150ms, because that was the magic delay used for
2271 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2272 * between when the ATA command register is written, and then
2273 * status is checked. Because waiting for "a while" before
2274 * checking status is fine, post SRST, we perform this magic
2275 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002276 *
2277 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 */
2279 msleep(150);
2280
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002281 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002282 * the bus shows 0xFF because the odd clown forgets the D7
2283 * pulldown resistor.
2284 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002285 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002286 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002287 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002288 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 ata_bus_post_reset(ap, devmask);
2291
2292 return 0;
2293}
2294
2295/**
2296 * ata_bus_reset - reset host port and associated ATA channel
2297 * @ap: port to reset
2298 *
2299 * This is typically the first time we actually start issuing
2300 * commands to the ATA channel. We wait for BSY to clear, then
2301 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2302 * result. Determine what devices, if any, are on the channel
2303 * by looking at the device 0/1 error register. Look at the signature
2304 * stored in each device's taskfile registers, to determine if
2305 * the device is ATA or ATAPI.
2306 *
2307 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002308 * PCI/etc. bus probe sem.
2309 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 *
2311 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002312 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 */
2314
2315void ata_bus_reset(struct ata_port *ap)
2316{
2317 struct ata_ioports *ioaddr = &ap->ioaddr;
2318 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2319 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002320 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2323
2324 /* determine if device 0/1 are present */
2325 if (ap->flags & ATA_FLAG_SATA_RESET)
2326 dev0 = 1;
2327 else {
2328 dev0 = ata_devchk(ap, 0);
2329 if (slave_possible)
2330 dev1 = ata_devchk(ap, 1);
2331 }
2332
2333 if (dev0)
2334 devmask |= (1 << 0);
2335 if (dev1)
2336 devmask |= (1 << 1);
2337
2338 /* select device 0 again */
2339 ap->ops->dev_select(ap, 0);
2340
2341 /* issue bus reset */
2342 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002343 if (ata_bus_softreset(ap, devmask))
2344 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 /*
2347 * determine by signature whether we have ATA or ATAPI devices
2348 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002349 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002351 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 /* re-enable interrupts */
2354 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2355 ata_irq_on(ap);
2356
2357 /* is double-select really necessary? */
2358 if (ap->device[1].class != ATA_DEV_NONE)
2359 ap->ops->dev_select(ap, 1);
2360 if (ap->device[0].class != ATA_DEV_NONE)
2361 ap->ops->dev_select(ap, 0);
2362
2363 /* if no devices were detected, disable this port */
2364 if ((ap->device[0].class == ATA_DEV_NONE) &&
2365 (ap->device[1].class == ATA_DEV_NONE))
2366 goto err_out;
2367
2368 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2369 /* set up device control for ATA_FLAG_SATA_RESET */
2370 if (ap->flags & ATA_FLAG_MMIO)
2371 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2372 else
2373 outb(ap->ctl, ioaddr->ctl_addr);
2374 }
2375
2376 DPRINTK("EXIT\n");
2377 return;
2378
2379err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002380 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 ap->ops->port_disable(ap);
2382
2383 DPRINTK("EXIT\n");
2384}
2385
Tejun Heo7a7921e2006-02-02 18:20:00 +09002386static int sata_phy_resume(struct ata_port *ap)
2387{
2388 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee162006-04-01 01:38:18 +09002389 u32 scontrol, sstatus;
Tejun Heo81952c52006-05-15 20:57:47 +09002390 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002391
Tejun Heo81952c52006-05-15 20:57:47 +09002392 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2393 return rc;
2394
Tejun Heo852ee162006-04-01 01:38:18 +09002395 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002396
2397 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2398 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002399
2400 /* Wait for phy to become ready, if necessary. */
2401 do {
2402 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09002403 if ((rc = sata_scr_read(ap, SCR_STATUS, &sstatus)))
2404 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002405 if ((sstatus & 0xf) != 1)
2406 return 0;
2407 } while (time_before(jiffies, timeout));
2408
Tejun Heo81952c52006-05-15 20:57:47 +09002409 return -EBUSY;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002410}
2411
Tejun Heoc2bd5802006-01-24 17:05:22 +09002412/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002413 * ata_std_probeinit - initialize probing
2414 * @ap: port to be probed
2415 *
2416 * @ap is about to be probed. Initialize it. This function is
2417 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002418 *
2419 * NOTE!!! Do not use this function as probeinit if a low level
2420 * driver implements only hardreset. Just pass NULL as probeinit
2421 * in that case. Using this function is probably okay but doing
2422 * so makes reset sequence different from the original
2423 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002424 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002425void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002426{
Tejun Heo81952c52006-05-15 20:57:47 +09002427 u32 scontrol;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002428
Tejun Heo81952c52006-05-15 20:57:47 +09002429 /* resume link */
2430 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002431
Tejun Heo81952c52006-05-15 20:57:47 +09002432 /* init sata_spd_limit to the current value */
2433 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
2434 int spd = (scontrol >> 4) & 0xf;
2435 ap->sata_spd_limit &= (1 << spd) - 1;
Tejun Heo3a397462006-02-10 23:58:48 +09002436 }
Tejun Heo81952c52006-05-15 20:57:47 +09002437
2438 /* wait for device */
2439 if (ata_port_online(ap))
2440 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Tejun Heo8a19ac82006-02-02 18:20:00 +09002441}
2442
2443/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002444 * ata_std_softreset - reset host port via ATA SRST
2445 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002446 * @classes: resulting classes of attached devices
2447 *
2448 * Reset host port using ATA SRST. This function is to be used
2449 * as standard callback for ata_drive_*_reset() functions.
2450 *
2451 * LOCKING:
2452 * Kernel thread context (may sleep)
2453 *
2454 * RETURNS:
2455 * 0 on success, -errno otherwise.
2456 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002457int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002458{
2459 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2460 unsigned int devmask = 0, err_mask;
2461 u8 err;
2462
2463 DPRINTK("ENTER\n");
2464
Tejun Heo81952c52006-05-15 20:57:47 +09002465 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002466 classes[0] = ATA_DEV_NONE;
2467 goto out;
2468 }
2469
Tejun Heoc2bd5802006-01-24 17:05:22 +09002470 /* determine if device 0/1 are present */
2471 if (ata_devchk(ap, 0))
2472 devmask |= (1 << 0);
2473 if (slave_possible && ata_devchk(ap, 1))
2474 devmask |= (1 << 1);
2475
Tejun Heoc2bd5802006-01-24 17:05:22 +09002476 /* select device 0 again */
2477 ap->ops->dev_select(ap, 0);
2478
2479 /* issue bus reset */
2480 DPRINTK("about to softreset, devmask=%x\n", devmask);
2481 err_mask = ata_bus_softreset(ap, devmask);
2482 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002483 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2484 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002485 return -EIO;
2486 }
2487
2488 /* determine by signature whether we have ATA or ATAPI devices */
2489 classes[0] = ata_dev_try_classify(ap, 0, &err);
2490 if (slave_possible && err != 0x81)
2491 classes[1] = ata_dev_try_classify(ap, 1, &err);
2492
Tejun Heo3a397462006-02-10 23:58:48 +09002493 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002494 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2495 return 0;
2496}
2497
2498/**
2499 * sata_std_hardreset - reset host port via SATA phy reset
2500 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002501 * @class: resulting class of attached device
2502 *
2503 * SATA phy-reset host port using DET bits of SControl register.
2504 * This function is to be used as standard callback for
2505 * ata_drive_*_reset().
2506 *
2507 * LOCKING:
2508 * Kernel thread context (may sleep)
2509 *
2510 * RETURNS:
2511 * 0 on success, -errno otherwise.
2512 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002513int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002514{
Tejun Heo852ee162006-04-01 01:38:18 +09002515 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002516 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002517
Tejun Heoc2bd5802006-01-24 17:05:22 +09002518 DPRINTK("ENTER\n");
2519
Tejun Heo3c567b72006-05-15 20:57:23 +09002520 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002521 /* SATA spec says nothing about how to reconfigure
2522 * spd. To be on the safe side, turn off phy during
2523 * reconfiguration. This works for at least ICH7 AHCI
2524 * and Sil3124.
2525 */
Tejun Heo81952c52006-05-15 20:57:47 +09002526 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2527 return rc;
2528
Tejun Heo1c3fae42006-04-02 20:53:28 +09002529 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002530
2531 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2532 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002533
Tejun Heo3c567b72006-05-15 20:57:23 +09002534 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002535 }
2536
2537 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002538 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2539 return rc;
2540
Tejun Heo852ee162006-04-01 01:38:18 +09002541 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002542
2543 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2544 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002545
Tejun Heo1c3fae42006-04-02 20:53:28 +09002546 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002547 * 10.4.2 says at least 1 ms.
2548 */
2549 msleep(1);
2550
Tejun Heo1c3fae42006-04-02 20:53:28 +09002551 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002552 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002553
Tejun Heoc2bd5802006-01-24 17:05:22 +09002554 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002555 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002556 *class = ATA_DEV_NONE;
2557 DPRINTK("EXIT, link offline\n");
2558 return 0;
2559 }
2560
2561 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002562 ata_port_printk(ap, KERN_ERR,
2563 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002564 return -EIO;
2565 }
2566
Tejun Heo3a397462006-02-10 23:58:48 +09002567 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2568
Tejun Heoc2bd5802006-01-24 17:05:22 +09002569 *class = ata_dev_try_classify(ap, 0, NULL);
2570
2571 DPRINTK("EXIT, class=%u\n", *class);
2572 return 0;
2573}
2574
2575/**
2576 * ata_std_postreset - standard postreset callback
2577 * @ap: the target ata_port
2578 * @classes: classes of attached devices
2579 *
2580 * This function is invoked after a successful reset. Note that
2581 * the device might have been reset more than once using
2582 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002583 *
2584 * This function is to be used as standard callback for
2585 * ata_drive_*_reset().
2586 *
2587 * LOCKING:
2588 * Kernel thread context (may sleep)
2589 */
2590void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2591{
Tejun Heodc2b3512006-05-15 20:58:00 +09002592 u32 serror;
2593
Tejun Heoc2bd5802006-01-24 17:05:22 +09002594 DPRINTK("ENTER\n");
2595
Tejun Heoc2bd5802006-01-24 17:05:22 +09002596 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002597 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002598
Tejun Heodc2b3512006-05-15 20:58:00 +09002599 /* clear SError */
2600 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2601 sata_scr_write(ap, SCR_ERROR, serror);
2602
Tejun Heo3a397462006-02-10 23:58:48 +09002603 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002604 if (!ap->ops->error_handler) {
2605 /* FIXME: hack. create a hook instead */
2606 if (ap->ioaddr.ctl_addr)
2607 ata_irq_on(ap);
2608 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002609
2610 /* is double-select really necessary? */
2611 if (classes[0] != ATA_DEV_NONE)
2612 ap->ops->dev_select(ap, 1);
2613 if (classes[1] != ATA_DEV_NONE)
2614 ap->ops->dev_select(ap, 0);
2615
Tejun Heo3a397462006-02-10 23:58:48 +09002616 /* bail out if no device is present */
2617 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2618 DPRINTK("EXIT, no device\n");
2619 return;
2620 }
2621
2622 /* set up device control */
2623 if (ap->ioaddr.ctl_addr) {
2624 if (ap->flags & ATA_FLAG_MMIO)
2625 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2626 else
2627 outb(ap->ctl, ap->ioaddr.ctl_addr);
2628 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002629
2630 DPRINTK("EXIT\n");
2631}
2632
2633/**
2634 * ata_std_probe_reset - standard probe reset method
2635 * @ap: prot to perform probe-reset
2636 * @classes: resulting classes of attached devices
2637 *
2638 * The stock off-the-shelf ->probe_reset method.
2639 *
2640 * LOCKING:
2641 * Kernel thread context (may sleep)
2642 *
2643 * RETURNS:
2644 * 0 on success, -errno otherwise.
2645 */
2646int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2647{
2648 ata_reset_fn_t hardreset;
2649
2650 hardreset = NULL;
Tejun Heo81952c52006-05-15 20:57:47 +09002651 if (sata_scr_valid(ap))
Tejun Heoc2bd5802006-01-24 17:05:22 +09002652 hardreset = sata_std_hardreset;
2653
Tejun Heo8a19ac82006-02-02 18:20:00 +09002654 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002655 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002656 ata_std_postreset, classes);
2657}
2658
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002659int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
Tejun Heo96bd39e2006-05-15 20:57:38 +09002660 unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002661{
2662 int i, rc;
2663
2664 for (i = 0; i < ATA_MAX_DEVICES; i++)
2665 classes[i] = ATA_DEV_UNKNOWN;
2666
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002667 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002668 if (rc)
2669 return rc;
2670
2671 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2672 * is complete and convert all ATA_DEV_UNKNOWN to
2673 * ATA_DEV_NONE.
2674 */
2675 for (i = 0; i < ATA_MAX_DEVICES; i++)
2676 if (classes[i] != ATA_DEV_UNKNOWN)
2677 break;
2678
2679 if (i < ATA_MAX_DEVICES)
2680 for (i = 0; i < ATA_MAX_DEVICES; i++)
2681 if (classes[i] == ATA_DEV_UNKNOWN)
2682 classes[i] = ATA_DEV_NONE;
2683
Tejun Heo9974e7c2006-04-01 01:38:17 +09002684 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002685}
2686
2687/**
2688 * ata_drive_probe_reset - Perform probe reset with given methods
2689 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002690 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002691 * @softreset: softreset method (can be NULL)
2692 * @hardreset: hardreset method (can be NULL)
2693 * @postreset: postreset method (can be NULL)
2694 * @classes: resulting classes of attached devices
2695 *
2696 * Reset the specified port and classify attached devices using
2697 * given methods. This function prefers softreset but tries all
2698 * possible reset sequences to reset and classify devices. This
2699 * function is intended to be used for constructing ->probe_reset
2700 * callback by low level drivers.
2701 *
2702 * Reset methods should follow the following rules.
2703 *
2704 * - Return 0 on sucess, -errno on failure.
2705 * - If classification is supported, fill classes[] with
2706 * recognized class codes.
2707 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002708 *
2709 * LOCKING:
2710 * Kernel thread context (may sleep)
2711 *
2712 * RETURNS:
2713 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2714 * if classification fails, and any error code from reset
2715 * methods.
2716 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002717int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002718 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2719 ata_postreset_fn_t postreset, unsigned int *classes)
2720{
2721 int rc = -EINVAL;
2722
Tejun Heoe3180492006-05-15 20:58:09 +09002723 ata_eh_freeze_port(ap);
2724
Tejun Heo7944ea92006-02-02 18:20:00 +09002725 if (probeinit)
2726 probeinit(ap);
2727
Tejun Heo3c567b72006-05-15 20:57:23 +09002728 if (softreset && !sata_set_spd_needed(ap)) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002729 rc = ata_do_reset(ap, softreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002730 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2731 goto done;
Tejun Heof15a1da2006-05-15 20:57:56 +09002732 ata_port_printk(ap, KERN_INFO, "softreset failed, "
2733 "will try hardreset in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002734 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002735 }
2736
2737 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002738 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002739
Tejun Heo90dac022006-04-02 17:54:46 +09002740 while (1) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002741 rc = ata_do_reset(ap, hardreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002742 if (rc == 0) {
2743 if (classes[0] != ATA_DEV_UNKNOWN)
2744 goto done;
2745 break;
2746 }
2747
Tejun Heo3c567b72006-05-15 20:57:23 +09002748 if (sata_down_spd_limit(ap))
Tejun Heo90dac022006-04-02 17:54:46 +09002749 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002750
Tejun Heof15a1da2006-05-15 20:57:56 +09002751 ata_port_printk(ap, KERN_INFO, "hardreset failed, "
2752 "will retry in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002753 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002754 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002755
Tejun Heoedbabd82006-04-02 20:55:02 +09002756 if (softreset) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002757 ata_port_printk(ap, KERN_INFO,
2758 "hardreset succeeded without classification, "
2759 "will retry softreset in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002760 ssleep(5);
2761
Tejun Heo96bd39e2006-05-15 20:57:38 +09002762 rc = ata_do_reset(ap, softreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002763 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002764
Tejun Heo9974e7c2006-04-01 01:38:17 +09002765 done:
Tejun Heo96bd39e2006-05-15 20:57:38 +09002766 if (rc == 0) {
2767 if (postreset)
2768 postreset(ap, classes);
Tejun Heoe3180492006-05-15 20:58:09 +09002769
2770 ata_eh_thaw_port(ap);
2771
Tejun Heo96bd39e2006-05-15 20:57:38 +09002772 if (classes[0] == ATA_DEV_UNKNOWN)
2773 rc = -ENODEV;
2774 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002775 return rc;
2776}
2777
Tejun Heo623a3122006-03-05 17:55:58 +09002778/**
2779 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002780 * @dev: device to compare against
2781 * @new_class: class of the new device
2782 * @new_id: IDENTIFY page of the new device
2783 *
2784 * Compare @new_class and @new_id against @dev and determine
2785 * whether @dev is the device indicated by @new_class and
2786 * @new_id.
2787 *
2788 * LOCKING:
2789 * None.
2790 *
2791 * RETURNS:
2792 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2793 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002794static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2795 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002796{
2797 const u16 *old_id = dev->id;
2798 unsigned char model[2][41], serial[2][21];
2799 u64 new_n_sectors;
2800
2801 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002802 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2803 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002804 return 0;
2805 }
2806
2807 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2808 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2809 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2810 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2811 new_n_sectors = ata_id_n_sectors(new_id);
2812
2813 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002814 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2815 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002816 return 0;
2817 }
2818
2819 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002820 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2821 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002822 return 0;
2823 }
2824
2825 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002826 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2827 "%llu != %llu\n",
2828 (unsigned long long)dev->n_sectors,
2829 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002830 return 0;
2831 }
2832
2833 return 1;
2834}
2835
2836/**
2837 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002838 * @dev: device to revalidate
2839 * @post_reset: is this revalidation after reset?
2840 *
2841 * Re-read IDENTIFY page and make sure @dev is still attached to
2842 * the port.
2843 *
2844 * LOCKING:
2845 * Kernel thread context (may sleep)
2846 *
2847 * RETURNS:
2848 * 0 on success, negative errno otherwise
2849 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002850int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002851{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002852 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002853 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002854 int rc;
2855
Tejun Heo5eb45c02006-04-02 18:51:52 +09002856 if (!ata_dev_enabled(dev)) {
2857 rc = -ENODEV;
2858 goto fail;
2859 }
Tejun Heo623a3122006-03-05 17:55:58 +09002860
Tejun Heofe635c72006-05-15 20:57:35 +09002861 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002862 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002863 if (rc)
2864 goto fail;
2865
2866 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002867 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002868 rc = -ENODEV;
2869 goto fail;
2870 }
2871
Tejun Heofe635c72006-05-15 20:57:35 +09002872 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002873
2874 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002875 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002876 if (rc == 0)
2877 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002878
2879 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002880 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002881 return rc;
2882}
2883
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002884static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002885 "WDC AC11000H", NULL,
2886 "WDC AC22100H", NULL,
2887 "WDC AC32500H", NULL,
2888 "WDC AC33100H", NULL,
2889 "WDC AC31600H", NULL,
2890 "WDC AC32100H", "24.09P07",
2891 "WDC AC23200L", "21.10N21",
2892 "Compaq CRD-8241B", NULL,
2893 "CRD-8400B", NULL,
2894 "CRD-8480B", NULL,
2895 "CRD-8482B", NULL,
2896 "CRD-84", NULL,
2897 "SanDisk SDP3B", NULL,
2898 "SanDisk SDP3B-64", NULL,
2899 "SANYO CD-ROM CRD", NULL,
2900 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002901 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002902 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002903 "Toshiba CD-ROM XM-6202B", NULL,
2904 "TOSHIBA CD-ROM XM-1702BC", NULL,
2905 "CD-532E-A", NULL,
2906 "E-IDE CD-ROM CR-840", NULL,
2907 "CD-ROM Drive/F5A", NULL,
2908 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002909 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002910 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002911 "SanDisk SDP3B-64", NULL,
2912 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2913 "_NEC DV5800A", NULL,
2914 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002916
Alan Coxf4b15fe2006-03-22 15:54:04 +00002917static int ata_strim(char *s, size_t len)
2918{
2919 len = strnlen(s, len);
2920
2921 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2922 while ((len > 0) && (s[len - 1] == ' ')) {
2923 len--;
2924 s[len] = 0;
2925 }
2926 return len;
2927}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Jeff Garzik057ace52005-10-22 14:27:05 -04002929static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002931 unsigned char model_num[40];
2932 unsigned char model_rev[16];
2933 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 int i;
2935
Alan Coxf4b15fe2006-03-22 15:54:04 +00002936 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2937 sizeof(model_num));
2938 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2939 sizeof(model_rev));
2940 nlen = ata_strim(model_num, sizeof(model_num));
2941 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Alan Coxf4b15fe2006-03-22 15:54:04 +00002943 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2944 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2945 if (ata_dma_blacklist[i+1] == NULL)
2946 return 1;
2947 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2948 return 1;
2949 }
2950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 return 0;
2952}
2953
Tejun Heoa6d5a512006-03-06 04:31:57 +09002954/**
2955 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09002956 * @dev: Device to compute xfermask for
2957 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002958 * Compute supported xfermask of @dev and store it in
2959 * dev->*_mask. This function is responsible for applying all
2960 * known limits including host controller limits, device
2961 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002962 *
Tejun Heo600511e2006-03-25 11:14:07 +09002963 * FIXME: The current implementation limits all transfer modes to
2964 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002965 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002966 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09002967 * LOCKING:
2968 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002969 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002970static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
Tejun Heo3373efd2006-05-15 20:57:53 +09002972 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002973 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002974 unsigned long xfer_mask;
2975 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Tejun Heo565083e2006-04-02 17:54:47 +09002977 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2978 ap->mwdma_mask, ap->udma_mask);
2979
2980 /* Apply cable rule here. Don't apply it early because when
2981 * we handle hot plug the cable type can itself change.
2982 */
2983 if (ap->cbl == ATA_CBL_PATA40)
2984 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Alan Cox5444a6f2006-03-27 18:58:20 +01002986 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002987 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2988 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09002989
2990 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002991 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09002992
2993 if (ata_dev_disabled(d)) {
2994 /* to avoid violating device selection timing */
2995 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2996 UINT_MAX, UINT_MAX);
2997 continue;
2998 }
2999
3000 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3001 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003002 xfer_mask &= ata_id_xfermask(d->id);
3003 if (ata_dma_blacklisted(d))
3004 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 }
3006
Tejun Heoa6d5a512006-03-06 04:31:57 +09003007 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003008 ata_dev_printk(dev, KERN_WARNING,
3009 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003010
Alan Cox5444a6f2006-03-27 18:58:20 +01003011 if (hs->flags & ATA_HOST_SIMPLEX) {
3012 if (hs->simplex_claimed)
3013 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3014 }
Tejun Heo565083e2006-04-02 17:54:47 +09003015
Alan Cox5444a6f2006-03-27 18:58:20 +01003016 if (ap->ops->mode_filter)
3017 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3018
Tejun Heo565083e2006-04-02 17:54:47 +09003019 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3020 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021}
3022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 * @dev: Device to which command will be sent
3026 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003027 * Issue SET FEATURES - XFER MODE command to device @dev
3028 * on port @ap.
3029 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003031 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003032 *
3033 * RETURNS:
3034 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 */
3036
Tejun Heo3373efd2006-05-15 20:57:53 +09003037static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
Tejun Heoa0123702005-12-13 14:49:31 +09003039 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003040 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
3042 /* set up set-features taskfile */
3043 DPRINTK("set features - xfer mode\n");
3044
Tejun Heo3373efd2006-05-15 20:57:53 +09003045 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003046 tf.command = ATA_CMD_SET_FEATURES;
3047 tf.feature = SETFEATURES_XFER;
3048 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3049 tf.protocol = ATA_PROT_NODATA;
3050 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Tejun Heo3373efd2006-05-15 20:57:53 +09003052 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Tejun Heo83206a22006-03-24 15:25:31 +09003054 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3055 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056}
3057
3058/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003059 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003060 * @dev: Device to which command will be sent
Tejun Heo3373efd2006-05-15 20:57:53 +09003061 * @heads: Number of heads
3062 * @sectors: Number of sectors
Albert Lee8bf62ece2005-05-12 15:29:42 -04003063 *
3064 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003065 * Kernel thread context (may sleep)
3066 *
3067 * RETURNS:
3068 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003069 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003070static unsigned int ata_dev_init_params(struct ata_device *dev,
3071 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003072{
Tejun Heoa0123702005-12-13 14:49:31 +09003073 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003074 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003075
3076 /* Number of sectors per track 1-255. Number of heads 1-16 */
3077 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003078 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003079
3080 /* set up init dev params taskfile */
3081 DPRINTK("init dev params \n");
3082
Tejun Heo3373efd2006-05-15 20:57:53 +09003083 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003084 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3085 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3086 tf.protocol = ATA_PROT_NODATA;
3087 tf.nsect = sectors;
3088 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003089
Tejun Heo3373efd2006-05-15 20:57:53 +09003090 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003091
Tejun Heo6aff8f12006-02-15 18:24:09 +09003092 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3093 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003094}
3095
3096/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003097 * ata_sg_clean - Unmap DMA memory associated with command
3098 * @qc: Command containing DMA memory to be released
3099 *
3100 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 *
3102 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003103 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 */
3105
3106static void ata_sg_clean(struct ata_queued_cmd *qc)
3107{
3108 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003109 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003111 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Tejun Heoa46314742006-02-11 19:11:13 +09003113 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3114 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
3116 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003117 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003119 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003121 /* if we padded the buffer out to 32-bit bound, and data
3122 * xfer direction is from-device, we must copy from the
3123 * pad buffer back into the supplied buffer
3124 */
3125 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3126 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3127
3128 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003129 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003130 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003131 /* restore last sg */
3132 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3133 if (pad_buf) {
3134 struct scatterlist *psg = &qc->pad_sgent;
3135 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3136 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003137 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003138 }
3139 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003140 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003141 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003142 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3143 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003144 /* restore sg */
3145 sg->length += qc->pad_len;
3146 if (pad_buf)
3147 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3148 pad_buf, qc->pad_len);
3149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003152 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153}
3154
3155/**
3156 * ata_fill_sg - Fill PCI IDE PRD table
3157 * @qc: Metadata associated with taskfile to be transferred
3158 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003159 * Fill PCI IDE PRD (scatter-gather) table with segments
3160 * associated with the current disk command.
3161 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003163 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 *
3165 */
3166static void ata_fill_sg(struct ata_queued_cmd *qc)
3167{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003169 struct scatterlist *sg;
3170 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Tejun Heoa46314742006-02-11 19:11:13 +09003172 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003173 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003176 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 u32 addr, offset;
3178 u32 sg_len, len;
3179
3180 /* determine if physical DMA addr spans 64K boundary.
3181 * Note h/w doesn't support 64-bit, so we unconditionally
3182 * truncate dma_addr_t to u32.
3183 */
3184 addr = (u32) sg_dma_address(sg);
3185 sg_len = sg_dma_len(sg);
3186
3187 while (sg_len) {
3188 offset = addr & 0xffff;
3189 len = sg_len;
3190 if ((offset + sg_len) > 0x10000)
3191 len = 0x10000 - offset;
3192
3193 ap->prd[idx].addr = cpu_to_le32(addr);
3194 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3195 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3196
3197 idx++;
3198 sg_len -= len;
3199 addr += len;
3200 }
3201 }
3202
3203 if (idx)
3204 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3205}
3206/**
3207 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3208 * @qc: Metadata associated with taskfile to check
3209 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003210 * Allow low-level driver to filter ATA PACKET commands, returning
3211 * a status indicating whether or not it is OK to use DMA for the
3212 * supplied PACKET command.
3213 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003215 * spin_lock_irqsave(host_set lock)
3216 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 * RETURNS: 0 when ATAPI DMA can be used
3218 * nonzero otherwise
3219 */
3220int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3221{
3222 struct ata_port *ap = qc->ap;
3223 int rc = 0; /* Assume ATAPI DMA is OK by default */
3224
3225 if (ap->ops->check_atapi_dma)
3226 rc = ap->ops->check_atapi_dma(qc);
3227
Albert Leec2bbc552006-03-25 17:56:55 +08003228 /* We don't support polling DMA.
3229 * Use PIO if the LLDD handles only interrupts in
3230 * the HSM_ST_LAST state and the ATAPI device
3231 * generates CDB interrupts.
3232 */
3233 if ((ap->flags & ATA_FLAG_PIO_POLLING) &&
3234 (qc->dev->flags & ATA_DFLAG_CDB_INTR))
3235 rc = 1;
3236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 return rc;
3238}
3239/**
3240 * ata_qc_prep - Prepare taskfile for submission
3241 * @qc: Metadata associated with taskfile to be prepared
3242 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003243 * Prepare ATA taskfile for submission.
3244 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 * LOCKING:
3246 * spin_lock_irqsave(host_set lock)
3247 */
3248void ata_qc_prep(struct ata_queued_cmd *qc)
3249{
3250 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3251 return;
3252
3253 ata_fill_sg(qc);
3254}
3255
Brian Kinge46834c2006-03-17 17:04:03 -06003256void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3257
Jeff Garzik0cba6322005-05-30 19:49:12 -04003258/**
3259 * ata_sg_init_one - Associate command with memory buffer
3260 * @qc: Command to be associated
3261 * @buf: Memory buffer
3262 * @buflen: Length of memory buffer, in bytes.
3263 *
3264 * Initialize the data-related elements of queued_cmd @qc
3265 * to point to a single memory buffer, @buf of byte length @buflen.
3266 *
3267 * LOCKING:
3268 * spin_lock_irqsave(host_set lock)
3269 */
3270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3272{
3273 struct scatterlist *sg;
3274
3275 qc->flags |= ATA_QCFLAG_SINGLE;
3276
3277 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003278 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003280 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 qc->buf_virt = buf;
3282
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003283 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003284 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285}
3286
Jeff Garzik0cba6322005-05-30 19:49:12 -04003287/**
3288 * ata_sg_init - Associate command with scatter-gather table.
3289 * @qc: Command to be associated
3290 * @sg: Scatter-gather table.
3291 * @n_elem: Number of elements in s/g table.
3292 *
3293 * Initialize the data-related elements of queued_cmd @qc
3294 * to point to a scatter-gather table @sg, containing @n_elem
3295 * elements.
3296 *
3297 * LOCKING:
3298 * spin_lock_irqsave(host_set lock)
3299 */
3300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3302 unsigned int n_elem)
3303{
3304 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003305 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003307 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308}
3309
3310/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003311 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3312 * @qc: Command with memory buffer to be mapped.
3313 *
3314 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 *
3316 * LOCKING:
3317 * spin_lock_irqsave(host_set lock)
3318 *
3319 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003320 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 */
3322
3323static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3324{
3325 struct ata_port *ap = qc->ap;
3326 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003327 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003329 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003331 /* we must lengthen transfers to end on a 32-bit boundary */
3332 qc->pad_len = sg->length & 3;
3333 if (qc->pad_len) {
3334 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3335 struct scatterlist *psg = &qc->pad_sgent;
3336
Tejun Heoa46314742006-02-11 19:11:13 +09003337 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003338
3339 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3340
3341 if (qc->tf.flags & ATA_TFLAG_WRITE)
3342 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3343 qc->pad_len);
3344
3345 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3346 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3347 /* trim sg */
3348 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003349 if (sg->length == 0)
3350 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003351
3352 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3353 sg->length, qc->pad_len);
3354 }
3355
Tejun Heo2e242fa2006-02-20 23:48:38 +09003356 if (trim_sg) {
3357 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003358 goto skip_map;
3359 }
3360
Brian King2f1f6102006-03-23 17:30:15 -06003361 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003362 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003363 if (dma_mapping_error(dma_address)) {
3364 /* restore sg */
3365 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
3369 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003370 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Tejun Heo2e242fa2006-02-20 23:48:38 +09003372skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3374 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3375
3376 return 0;
3377}
3378
3379/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003380 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3381 * @qc: Command with scatter-gather table to be mapped.
3382 *
3383 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 *
3385 * LOCKING:
3386 * spin_lock_irqsave(host_set lock)
3387 *
3388 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003389 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 *
3391 */
3392
3393static int ata_sg_setup(struct ata_queued_cmd *qc)
3394{
3395 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003396 struct scatterlist *sg = qc->__sg;
3397 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003398 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
3400 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa46314742006-02-11 19:11:13 +09003401 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003403 /* we must lengthen transfers to end on a 32-bit boundary */
3404 qc->pad_len = lsg->length & 3;
3405 if (qc->pad_len) {
3406 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3407 struct scatterlist *psg = &qc->pad_sgent;
3408 unsigned int offset;
3409
Tejun Heoa46314742006-02-11 19:11:13 +09003410 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003411
3412 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3413
3414 /*
3415 * psg->page/offset are used to copy to-be-written
3416 * data in this function or read data in ata_sg_clean.
3417 */
3418 offset = lsg->offset + lsg->length - qc->pad_len;
3419 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3420 psg->offset = offset_in_page(offset);
3421
3422 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3423 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3424 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003425 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003426 }
3427
3428 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3429 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3430 /* trim last sg */
3431 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003432 if (lsg->length == 0)
3433 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003434
3435 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3436 qc->n_elem - 1, lsg->length, qc->pad_len);
3437 }
3438
Jeff Garzike1410f22005-11-14 14:06:26 -05003439 pre_n_elem = qc->n_elem;
3440 if (trim_sg && pre_n_elem)
3441 pre_n_elem--;
3442
3443 if (!pre_n_elem) {
3444 n_elem = 0;
3445 goto skip_map;
3446 }
3447
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003449 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003450 if (n_elem < 1) {
3451 /* restore last sg */
3452 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
3456 DPRINTK("%d sg elements mapped\n", n_elem);
3457
Jeff Garzike1410f22005-11-14 14:06:26 -05003458skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 qc->n_elem = n_elem;
3460
3461 return 0;
3462}
3463
3464/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003465 * ata_poll_qc_complete - turn irq back on and finish qc
3466 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003467 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003468 *
3469 * LOCKING:
3470 * None. (grabs host lock)
3471 */
Albert Leea22e2eb2005-12-05 15:38:02 +08003472void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003473{
3474 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003475 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003476
Jeff Garzikb8f61532005-08-25 22:01:20 -04003477 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heodafadcd2006-05-15 20:58:11 +09003478
3479 if (ap->ops->error_handler) {
3480 /* EH might have kicked in while host_set lock is released */
3481 qc = ata_qc_from_tag(ap, qc->tag);
3482 if (qc) {
3483 if (!(qc->err_mask & AC_ERR_HSM)) {
Tejun Heodafadcd2006-05-15 20:58:11 +09003484 ata_irq_on(ap);
3485 ata_qc_complete(qc);
3486 } else
3487 ata_port_freeze(ap);
3488 }
3489 } else {
3490 /* old EH */
Tejun Heodafadcd2006-05-15 20:58:11 +09003491 ata_irq_on(ap);
3492 ata_qc_complete(qc);
3493 }
3494
Jeff Garzikb8f61532005-08-25 22:01:20 -04003495 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003496}
3497
3498/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003499 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003500 * @buf: Buffer to swap
3501 * @buf_words: Number of 16-bit words in buffer.
3502 *
3503 * Swap halves of 16-bit words if needed to convert from
3504 * little-endian byte order to native cpu byte order, or
3505 * vice-versa.
3506 *
3507 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003508 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003509 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510void swap_buf_le16(u16 *buf, unsigned int buf_words)
3511{
3512#ifdef __BIG_ENDIAN
3513 unsigned int i;
3514
3515 for (i = 0; i < buf_words; i++)
3516 buf[i] = le16_to_cpu(buf[i]);
3517#endif /* __BIG_ENDIAN */
3518}
3519
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003520/**
3521 * ata_mmio_data_xfer - Transfer data by MMIO
3522 * @ap: port to read/write
3523 * @buf: data buffer
3524 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003525 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003526 *
3527 * Transfer data from/to the device data register by MMIO.
3528 *
3529 * LOCKING:
3530 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003531 */
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3534 unsigned int buflen, int write_data)
3535{
3536 unsigned int i;
3537 unsigned int words = buflen >> 1;
3538 u16 *buf16 = (u16 *) buf;
3539 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3540
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003541 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 if (write_data) {
3543 for (i = 0; i < words; i++)
3544 writew(le16_to_cpu(buf16[i]), mmio);
3545 } else {
3546 for (i = 0; i < words; i++)
3547 buf16[i] = cpu_to_le16(readw(mmio));
3548 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003549
3550 /* Transfer trailing 1 byte, if any. */
3551 if (unlikely(buflen & 0x01)) {
3552 u16 align_buf[1] = { 0 };
3553 unsigned char *trailing_buf = buf + buflen - 1;
3554
3555 if (write_data) {
3556 memcpy(align_buf, trailing_buf, 1);
3557 writew(le16_to_cpu(align_buf[0]), mmio);
3558 } else {
3559 align_buf[0] = cpu_to_le16(readw(mmio));
3560 memcpy(trailing_buf, align_buf, 1);
3561 }
3562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563}
3564
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003565/**
3566 * ata_pio_data_xfer - Transfer data by PIO
3567 * @ap: port to read/write
3568 * @buf: data buffer
3569 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003570 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003571 *
3572 * Transfer data from/to the device data register by PIO.
3573 *
3574 * LOCKING:
3575 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003576 */
3577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3579 unsigned int buflen, int write_data)
3580{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003581 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003583 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003585 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003587 insw(ap->ioaddr.data_addr, buf, words);
3588
3589 /* Transfer trailing 1 byte, if any. */
3590 if (unlikely(buflen & 0x01)) {
3591 u16 align_buf[1] = { 0 };
3592 unsigned char *trailing_buf = buf + buflen - 1;
3593
3594 if (write_data) {
3595 memcpy(align_buf, trailing_buf, 1);
3596 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3597 } else {
3598 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3599 memcpy(trailing_buf, align_buf, 1);
3600 }
3601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602}
3603
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003604/**
3605 * ata_data_xfer - Transfer data from/to the data register.
3606 * @ap: port to read/write
3607 * @buf: data buffer
3608 * @buflen: buffer length
3609 * @do_write: read/write
3610 *
3611 * Transfer data from/to the device data register.
3612 *
3613 * LOCKING:
3614 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003615 */
3616
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3618 unsigned int buflen, int do_write)
3619{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003620 /* Make the crap hardware pay the costs not the good stuff */
3621 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3622 unsigned long flags;
3623 local_irq_save(flags);
3624 if (ap->flags & ATA_FLAG_MMIO)
3625 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3626 else
3627 ata_pio_data_xfer(ap, buf, buflen, do_write);
3628 local_irq_restore(flags);
3629 } else {
3630 if (ap->flags & ATA_FLAG_MMIO)
3631 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3632 else
3633 ata_pio_data_xfer(ap, buf, buflen, do_write);
3634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635}
3636
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003637/**
3638 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3639 * @qc: Command on going
3640 *
3641 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3642 *
3643 * LOCKING:
3644 * Inherited from caller.
3645 */
3646
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647static void ata_pio_sector(struct ata_queued_cmd *qc)
3648{
3649 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003650 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 struct ata_port *ap = qc->ap;
3652 struct page *page;
3653 unsigned int offset;
3654 unsigned char *buf;
3655
3656 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003657 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
3659 page = sg[qc->cursg].page;
3660 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3661
3662 /* get the current page and offset */
3663 page = nth_page(page, (offset >> PAGE_SHIFT));
3664 offset %= PAGE_SIZE;
3665
Albert Lee7282aa42005-10-09 09:46:07 -04003666 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3667
Albert Lee91b8b312005-10-09 09:48:44 -04003668 if (PageHighMem(page)) {
3669 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003670
Albert Lee91b8b312005-10-09 09:48:44 -04003671 local_irq_save(flags);
3672 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003673
Albert Lee91b8b312005-10-09 09:48:44 -04003674 /* do the actual data transfer */
3675 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3676
3677 kunmap_atomic(buf, KM_IRQ0);
3678 local_irq_restore(flags);
3679 } else {
3680 buf = page_address(page);
3681 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683
3684 qc->cursect++;
3685 qc->cursg_ofs++;
3686
Albert Lee32529e02005-05-26 03:49:42 -04003687 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 qc->cursg++;
3689 qc->cursg_ofs = 0;
3690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003693/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003694 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3695 * @qc: Command on going
3696 *
3697 * Transfer one or many ATA_SECT_SIZE of data from/to the
3698 * ATA device for the DRQ request.
3699 *
3700 * LOCKING:
3701 * Inherited from caller.
3702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
Albert Lee07f6f7d2005-11-01 19:33:20 +08003704static void ata_pio_sectors(struct ata_queued_cmd *qc)
3705{
3706 if (is_multi_taskfile(&qc->tf)) {
3707 /* READ/WRITE MULTIPLE */
3708 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709
Jeff Garzik587005d2006-02-11 18:17:32 -05003710 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003711
3712 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3713 while (nsect--)
3714 ata_pio_sector(qc);
3715 } else
3716 ata_pio_sector(qc);
3717}
3718
3719/**
Albert Leec71c1852005-10-04 06:03:45 -04003720 * atapi_send_cdb - Write CDB bytes to hardware
3721 * @ap: Port to which ATAPI device is attached.
3722 * @qc: Taskfile currently active
3723 *
3724 * When device has indicated its readiness to accept
3725 * a CDB, this function is called. Send the CDB.
3726 *
3727 * LOCKING:
3728 * caller.
3729 */
3730
3731static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3732{
3733 /* send SCSI cdb */
3734 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003735 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003736
Jeff Garzikdb024d52006-02-13 00:23:57 -05003737 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003738 ata_altstatus(ap); /* flush */
3739
3740 switch (qc->tf.protocol) {
3741 case ATA_PROT_ATAPI:
3742 ap->hsm_task_state = HSM_ST;
3743 break;
3744 case ATA_PROT_ATAPI_NODATA:
3745 ap->hsm_task_state = HSM_ST_LAST;
3746 break;
3747 case ATA_PROT_ATAPI_DMA:
3748 ap->hsm_task_state = HSM_ST_LAST;
3749 /* initiate bmdma */
3750 ap->ops->bmdma_start(qc);
3751 break;
3752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753}
3754
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003755/**
3756 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3757 * @qc: Command on going
3758 * @bytes: number of bytes
3759 *
3760 * Transfer Transfer data from/to the ATAPI device.
3761 *
3762 * LOCKING:
3763 * Inherited from caller.
3764 *
3765 */
3766
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3768{
3769 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003770 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 struct ata_port *ap = qc->ap;
3772 struct page *page;
3773 unsigned char *buf;
3774 unsigned int offset, count;
3775
Albert Lee563a6e12005-08-12 14:17:50 +08003776 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003777 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778
3779next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003780 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003781 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003782 * The end of qc->sg is reached and the device expects
3783 * more data to transfer. In order not to overrun qc->sg
3784 * and fulfill length specified in the byte count register,
3785 * - for read case, discard trailing data from the device
3786 * - for write case, padding zero data to the device
3787 */
3788 u16 pad_buf[1] = { 0 };
3789 unsigned int words = bytes >> 1;
3790 unsigned int i;
3791
3792 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003793 ata_dev_printk(qc->dev, KERN_WARNING,
3794 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003795
3796 for (i = 0; i < words; i++)
3797 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3798
Albert Lee14be71f2005-09-27 17:36:35 +08003799 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003800 return;
3801 }
3802
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003803 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 page = sg->page;
3806 offset = sg->offset + qc->cursg_ofs;
3807
3808 /* get the current page and offset */
3809 page = nth_page(page, (offset >> PAGE_SHIFT));
3810 offset %= PAGE_SIZE;
3811
Albert Lee6952df02005-06-06 15:56:03 +08003812 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003813 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
3815 /* don't cross page boundaries */
3816 count = min(count, (unsigned int)PAGE_SIZE - offset);
3817
Albert Lee7282aa42005-10-09 09:46:07 -04003818 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3819
Albert Lee91b8b312005-10-09 09:48:44 -04003820 if (PageHighMem(page)) {
3821 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003822
Albert Lee91b8b312005-10-09 09:48:44 -04003823 local_irq_save(flags);
3824 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003825
Albert Lee91b8b312005-10-09 09:48:44 -04003826 /* do the actual data transfer */
3827 ata_data_xfer(ap, buf + offset, count, do_write);
3828
3829 kunmap_atomic(buf, KM_IRQ0);
3830 local_irq_restore(flags);
3831 } else {
3832 buf = page_address(page);
3833 ata_data_xfer(ap, buf + offset, count, do_write);
3834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
3836 bytes -= count;
3837 qc->curbytes += count;
3838 qc->cursg_ofs += count;
3839
Albert Lee32529e02005-05-26 03:49:42 -04003840 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 qc->cursg++;
3842 qc->cursg_ofs = 0;
3843 }
3844
Albert Lee563a6e12005-08-12 14:17:50 +08003845 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847}
3848
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003849/**
3850 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3851 * @qc: Command on going
3852 *
3853 * Transfer Transfer data from/to the ATAPI device.
3854 *
3855 * LOCKING:
3856 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003857 */
3858
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3860{
3861 struct ata_port *ap = qc->ap;
3862 struct ata_device *dev = qc->dev;
3863 unsigned int ireason, bc_lo, bc_hi, bytes;
3864 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3865
3866 ap->ops->tf_read(ap, &qc->tf);
3867 ireason = qc->tf.nsect;
3868 bc_lo = qc->tf.lbam;
3869 bc_hi = qc->tf.lbah;
3870 bytes = (bc_hi << 8) | bc_lo;
3871
3872 /* shall be cleared to zero, indicating xfer of data */
3873 if (ireason & (1 << 0))
3874 goto err_out;
3875
3876 /* make sure transfer direction matches expected */
3877 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3878 if (do_write != i_write)
3879 goto err_out;
3880
Albert Lee312f7da2005-09-27 17:38:03 +08003881 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3882
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 __atapi_pio_bytes(qc, bytes);
3884
3885 return;
3886
3887err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003888 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003889 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003890 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891}
3892
3893/**
Albert Leec234fb02006-03-25 17:58:38 +08003894 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3895 * @ap: the target ata_port
3896 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 *
Albert Leec234fb02006-03-25 17:58:38 +08003898 * RETURNS:
3899 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 */
Albert Leec234fb02006-03-25 17:58:38 +08003901
3902static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903{
Albert Leec234fb02006-03-25 17:58:38 +08003904 if (qc->tf.flags & ATA_TFLAG_POLLING)
3905 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Albert Leec234fb02006-03-25 17:58:38 +08003907 if (ap->hsm_task_state == HSM_ST_FIRST) {
3908 if (qc->tf.protocol == ATA_PROT_PIO &&
3909 (qc->tf.flags & ATA_TFLAG_WRITE))
3910 return 1;
3911
3912 if (is_atapi_taskfile(&qc->tf) &&
3913 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3914 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 }
3916
Albert Leec234fb02006-03-25 17:58:38 +08003917 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919
Albert Leec234fb02006-03-25 17:58:38 +08003920/**
Albert Leebb5cb292006-03-25 17:48:02 +08003921 * ata_hsm_move - move the HSM to the next state.
3922 * @ap: the target ata_port
3923 * @qc: qc on going
3924 * @status: current device status
3925 * @in_wq: 1 if called from workqueue, 0 otherwise
3926 *
3927 * RETURNS:
3928 * 1 when poll next status needed, 0 otherwise.
3929 */
3930
3931static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
3932 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933{
Albert Leebb5cb292006-03-25 17:48:02 +08003934 unsigned long flags = 0;
3935 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
Albert Lee6912ccd2006-03-25 17:45:49 +08003937 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08003938
Albert Leebb5cb292006-03-25 17:48:02 +08003939 /* Make sure ata_qc_issue_prot() does not throw things
3940 * like DMA polling into the workqueue. Notice that
3941 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08003942 */
Albert Leec234fb02006-03-25 17:58:38 +08003943 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08003944
Albert Leee2cec772006-03-25 17:43:49 +08003945fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08003946 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
3947 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Albert Leee2cec772006-03-25 17:43:49 +08003949 switch (ap->hsm_task_state) {
3950 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08003951 /* Send first data block or PACKET CDB */
3952
3953 /* If polling, we will stay in the work queue after
3954 * sending the data. Otherwise, interrupt handler
3955 * takes over after sending the data.
3956 */
3957 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
3958
Albert Leee2cec772006-03-25 17:43:49 +08003959 /* check device status */
3960 if (unlikely((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ)) {
3961 /* Wrong status. Let EH handle this */
3962 qc->err_mask |= AC_ERR_HSM;
3963 ap->hsm_task_state = HSM_ST_ERR;
3964 goto fsm_start;
3965 }
3966
Albert Lee71601952006-03-25 18:11:12 +08003967 /* Device should not ask for data transfer (DRQ=1)
3968 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08003969 * We ignore DRQ here and stop the HSM by
3970 * changing hsm_task_state to HSM_ST_ERR and
3971 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08003972 */
3973 if (unlikely(status & (ATA_ERR | ATA_DF))) {
3974 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
3975 ap->id, status);
3976 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08003977 ap->hsm_task_state = HSM_ST_ERR;
3978 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08003979 }
3980
Albert Leebb5cb292006-03-25 17:48:02 +08003981 /* Send the CDB (atapi) or the first data block (ata pio out).
3982 * During the state transition, interrupt handler shouldn't
3983 * be invoked before the data transfer is complete and
3984 * hsm_task_state is changed. Hence, the following locking.
3985 */
3986 if (in_wq)
3987 spin_lock_irqsave(&ap->host_set->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08003988
Albert Leebb5cb292006-03-25 17:48:02 +08003989 if (qc->tf.protocol == ATA_PROT_PIO) {
3990 /* PIO data out protocol.
3991 * send first data block.
3992 */
3993
3994 /* ata_pio_sectors() might change the state
3995 * to HSM_ST_LAST. so, the state is changed here
3996 * before ata_pio_sectors().
3997 */
3998 ap->hsm_task_state = HSM_ST;
3999 ata_pio_sectors(qc);
4000 ata_altstatus(ap); /* flush */
4001 } else
4002 /* send CDB */
4003 atapi_send_cdb(ap, qc);
4004
4005 if (in_wq)
4006 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4007
4008 /* if polling, ata_pio_task() handles the rest.
4009 * otherwise, interrupt handler takes over from here.
4010 */
Albert Leee2cec772006-03-25 17:43:49 +08004011 break;
4012
4013 case HSM_ST:
4014 /* complete command or read/write the data register */
4015 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4016 /* ATAPI PIO protocol */
4017 if ((status & ATA_DRQ) == 0) {
4018 /* no more data to transfer */
4019 ap->hsm_task_state = HSM_ST_LAST;
4020 goto fsm_start;
4021 }
4022
Albert Lee71601952006-03-25 18:11:12 +08004023 /* Device should not ask for data transfer (DRQ=1)
4024 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004025 * We ignore DRQ here and stop the HSM by
4026 * changing hsm_task_state to HSM_ST_ERR and
4027 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004028 */
4029 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4030 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4031 ap->id, status);
4032 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004033 ap->hsm_task_state = HSM_ST_ERR;
4034 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004035 }
4036
Albert Leee2cec772006-03-25 17:43:49 +08004037 atapi_pio_bytes(qc);
4038
4039 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4040 /* bad ireason reported by device */
4041 goto fsm_start;
4042
4043 } else {
4044 /* ATA PIO protocol */
4045 if (unlikely((status & ATA_DRQ) == 0)) {
4046 /* handle BSY=0, DRQ=0 as error */
4047 qc->err_mask |= AC_ERR_HSM;
4048 ap->hsm_task_state = HSM_ST_ERR;
4049 goto fsm_start;
4050 }
4051
Albert Leeeee6c322006-04-01 17:38:43 +08004052 /* For PIO reads, some devices may ask for
4053 * data transfer (DRQ=1) alone with ERR=1.
4054 * We respect DRQ here and transfer one
4055 * block of junk data before changing the
4056 * hsm_task_state to HSM_ST_ERR.
4057 *
4058 * For PIO writes, ERR=1 DRQ=1 doesn't make
4059 * sense since the data block has been
4060 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004061 */
4062 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004063 /* data might be corrputed */
4064 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004065
4066 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4067 ata_pio_sectors(qc);
4068 ata_altstatus(ap);
4069 status = ata_wait_idle(ap);
4070 }
4071
4072 /* ata_pio_sectors() might change the
4073 * state to HSM_ST_LAST. so, the state
4074 * is changed after ata_pio_sectors().
4075 */
4076 ap->hsm_task_state = HSM_ST_ERR;
4077 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004078 }
4079
Albert Leee2cec772006-03-25 17:43:49 +08004080 ata_pio_sectors(qc);
4081
4082 if (ap->hsm_task_state == HSM_ST_LAST &&
4083 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4084 /* all data read */
4085 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004086 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004087 goto fsm_start;
4088 }
4089 }
4090
4091 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004092 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004093 break;
4094
4095 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004096 if (unlikely(!ata_ok(status))) {
4097 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004098 ap->hsm_task_state = HSM_ST_ERR;
4099 goto fsm_start;
4100 }
4101
4102 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004103 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4104 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004105
Albert Lee6912ccd2006-03-25 17:45:49 +08004106 WARN_ON(qc->err_mask);
4107
Albert Leee2cec772006-03-25 17:43:49 +08004108 ap->hsm_task_state = HSM_ST_IDLE;
4109
4110 /* complete taskfile transaction */
Albert Leebb5cb292006-03-25 17:48:02 +08004111 if (in_wq)
4112 ata_poll_qc_complete(qc);
4113 else
4114 ata_qc_complete(qc);
4115
4116 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004117 break;
4118
4119 case HSM_ST_ERR:
4120 if (qc->tf.command != ATA_CMD_PACKET)
Albert Lee4332a772006-04-03 17:43:24 +08004121 printk(KERN_ERR "ata%u: dev %u command error, drv_stat 0x%x\n",
4122 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004123
4124 /* make sure qc->err_mask is available to
4125 * know what's wrong and recover
4126 */
4127 WARN_ON(qc->err_mask == 0);
4128
4129 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004130
Albert Lee999bb6f2006-03-25 18:07:48 +08004131 /* complete taskfile transaction */
Albert Leebb5cb292006-03-25 17:48:02 +08004132 if (in_wq)
4133 ata_poll_qc_complete(qc);
4134 else
4135 ata_qc_complete(qc);
4136
4137 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004138 break;
4139 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004140 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004141 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004142 }
4143
Albert Leebb5cb292006-03-25 17:48:02 +08004144 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145}
4146
4147static void ata_pio_task(void *_data)
4148{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004149 struct ata_queued_cmd *qc = _data;
4150 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004151 u8 status;
4152 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004153
4154fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004155 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
Albert Leea1af3732006-03-25 17:50:15 +08004157 /*
4158 * This is purely heuristic. This is a fast path.
4159 * Sometimes when we enter, BSY will be cleared in
4160 * a chk-status or two. If not, the drive is probably seeking
4161 * or something. Snooze for a couple msecs, then
4162 * chk-status again. If still busy, queue delayed work.
4163 */
4164 status = ata_busy_wait(ap, ATA_BUSY, 5);
4165 if (status & ATA_BUSY) {
4166 msleep(2);
4167 status = ata_busy_wait(ap, ATA_BUSY, 10);
4168 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004169 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004170 return;
4171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 }
4173
Albert Leea1af3732006-03-25 17:50:15 +08004174 /* move the HSM */
4175 poll_next = ata_hsm_move(ap, qc, status, 1);
4176
4177 /* another command or interrupt handler
4178 * may be running at this point.
4179 */
4180 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004181 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182}
4183
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 * ata_qc_new - Request an available ATA command, for queueing
4186 * @ap: Port associated with device @dev
4187 * @dev: Device from whom we request an available command structure
4188 *
4189 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004190 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 */
4192
4193static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4194{
4195 struct ata_queued_cmd *qc = NULL;
4196 unsigned int i;
4197
Tejun Heoe3180492006-05-15 20:58:09 +09004198 /* no command while frozen */
4199 if (unlikely(ap->flags & ATA_FLAG_FROZEN))
4200 return NULL;
4201
Tejun Heo2ab7db12006-05-15 20:58:02 +09004202 /* the last tag is reserved for internal command. */
4203 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 if (!test_and_set_bit(i, &ap->qactive)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004205 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 break;
4207 }
4208
4209 if (qc)
4210 qc->tag = i;
4211
4212 return qc;
4213}
4214
4215/**
4216 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 * @dev: Device from whom we request an available command structure
4218 *
4219 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004220 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 */
4222
Tejun Heo3373efd2006-05-15 20:57:53 +09004223struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224{
Tejun Heo3373efd2006-05-15 20:57:53 +09004225 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 struct ata_queued_cmd *qc;
4227
4228 qc = ata_qc_new(ap);
4229 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 qc->scsicmd = NULL;
4231 qc->ap = ap;
4232 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004234 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 }
4236
4237 return qc;
4238}
4239
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240/**
4241 * ata_qc_free - free unused ata_queued_cmd
4242 * @qc: Command to complete
4243 *
4244 * Designed to free unused ata_queued_cmd object
4245 * in case something prevents using it.
4246 *
4247 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004248 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 */
4250void ata_qc_free(struct ata_queued_cmd *qc)
4251{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004252 struct ata_port *ap = qc->ap;
4253 unsigned int tag;
4254
Tejun Heoa46314742006-02-11 19:11:13 +09004255 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Tejun Heo4ba946e2006-01-23 13:09:36 +09004257 qc->flags = 0;
4258 tag = qc->tag;
4259 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004260 qc->tag = ATA_TAG_POISON;
4261 clear_bit(tag, &ap->qactive);
4262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263}
4264
Tejun Heo76014422006-02-11 15:13:49 +09004265void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266{
Tejun Heoa46314742006-02-11 19:11:13 +09004267 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4268 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269
4270 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4271 ata_sg_clean(qc);
4272
Tejun Heo7401abf2006-05-15 20:57:32 +09004273 /* command should be marked inactive atomically with qc completion */
4274 qc->ap->active_tag = ATA_TAG_POISON;
4275
Albert Lee3f3791d2005-08-16 14:25:38 +08004276 /* atapi: mark qc as inactive to prevent the interrupt handler
4277 * from completing the command twice later, before the error handler
4278 * is called. (when rc != 0 and atapi request sense is needed)
4279 */
4280 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4281
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004283 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284}
4285
Tejun Heof686bcb2006-05-15 20:58:05 +09004286/**
4287 * ata_qc_complete - Complete an active ATA command
4288 * @qc: Command to complete
4289 * @err_mask: ATA Status register contents
4290 *
4291 * Indicate to the mid and upper layers that an ATA
4292 * command has completed, with either an ok or not-ok status.
4293 *
4294 * LOCKING:
4295 * spin_lock_irqsave(host_set lock)
4296 */
4297void ata_qc_complete(struct ata_queued_cmd *qc)
4298{
4299 struct ata_port *ap = qc->ap;
4300
4301 /* XXX: New EH and old EH use different mechanisms to
4302 * synchronize EH with regular execution path.
4303 *
4304 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4305 * Normal execution path is responsible for not accessing a
4306 * failed qc. libata core enforces the rule by returning NULL
4307 * from ata_qc_from_tag() for failed qcs.
4308 *
4309 * Old EH depends on ata_qc_complete() nullifying completion
4310 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4311 * not synchronize with interrupt handler. Only PIO task is
4312 * taken care of.
4313 */
4314 if (ap->ops->error_handler) {
4315 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4316
4317 if (unlikely(qc->err_mask))
4318 qc->flags |= ATA_QCFLAG_FAILED;
4319
4320 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4321 if (!ata_tag_internal(qc->tag)) {
4322 /* always fill result TF for failed qc */
4323 ap->ops->tf_read(ap, &qc->result_tf);
4324 ata_qc_schedule_eh(qc);
4325 return;
4326 }
4327 }
4328
4329 /* read result TF if requested */
4330 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4331 ap->ops->tf_read(ap, &qc->result_tf);
4332
4333 __ata_qc_complete(qc);
4334 } else {
4335 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4336 return;
4337
4338 /* read result TF if failed or requested */
4339 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4340 ap->ops->tf_read(ap, &qc->result_tf);
4341
4342 __ata_qc_complete(qc);
4343 }
4344}
4345
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4347{
4348 struct ata_port *ap = qc->ap;
4349
4350 switch (qc->tf.protocol) {
4351 case ATA_PROT_DMA:
4352 case ATA_PROT_ATAPI_DMA:
4353 return 1;
4354
4355 case ATA_PROT_ATAPI:
4356 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 if (ap->flags & ATA_FLAG_PIO_DMA)
4358 return 1;
4359
4360 /* fall through */
4361
4362 default:
4363 return 0;
4364 }
4365
4366 /* never reached */
4367}
4368
4369/**
4370 * ata_qc_issue - issue taskfile to device
4371 * @qc: command to issue to device
4372 *
4373 * Prepare an ATA command to submission to device.
4374 * This includes mapping the data into a DMA-able
4375 * area, filling in the S/G table, and finally
4376 * writing the taskfile to hardware, starting the command.
4377 *
4378 * LOCKING:
4379 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004381void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382{
4383 struct ata_port *ap = qc->ap;
4384
Tejun Heoe4a70e72006-03-31 20:36:47 +09004385 qc->ap->active_tag = qc->tag;
4386 qc->flags |= ATA_QCFLAG_ACTIVE;
4387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 if (ata_should_dma_map(qc)) {
4389 if (qc->flags & ATA_QCFLAG_SG) {
4390 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004391 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4393 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004394 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 }
4396 } else {
4397 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4398 }
4399
4400 ap->ops->qc_prep(qc);
4401
Tejun Heo8e0e6942006-03-31 20:41:11 +09004402 qc->err_mask |= ap->ops->qc_issue(qc);
4403 if (unlikely(qc->err_mask))
4404 goto err;
4405 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
Tejun Heo8e436af2006-01-23 13:09:36 +09004407sg_err:
4408 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004409 qc->err_mask |= AC_ERR_SYSTEM;
4410err:
4411 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412}
4413
4414/**
4415 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4416 * @qc: command to issue to device
4417 *
4418 * Using various libata functions and hooks, this function
4419 * starts an ATA command. ATA commands are grouped into
4420 * classes called "protocols", and issuing each type of protocol
4421 * is slightly different.
4422 *
Edward Falk0baab862005-06-02 18:17:13 -04004423 * May be used as the qc_issue() entry in ata_port_operations.
4424 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425 * LOCKING:
4426 * spin_lock_irqsave(host_set lock)
4427 *
4428 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004429 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 */
4431
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004432unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433{
4434 struct ata_port *ap = qc->ap;
4435
Albert Leee50362e2005-09-27 17:39:50 +08004436 /* Use polling pio if the LLD doesn't handle
4437 * interrupt driven pio and atapi CDB interrupt.
4438 */
4439 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4440 switch (qc->tf.protocol) {
4441 case ATA_PROT_PIO:
4442 case ATA_PROT_ATAPI:
4443 case ATA_PROT_ATAPI_NODATA:
4444 qc->tf.flags |= ATA_TFLAG_POLLING;
4445 break;
4446 case ATA_PROT_ATAPI_DMA:
4447 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Leec2bbc552006-03-25 17:56:55 +08004448 /* see ata_check_atapi_dma() */
Albert Leee50362e2005-09-27 17:39:50 +08004449 BUG();
4450 break;
4451 default:
4452 break;
4453 }
4454 }
4455
Albert Lee312f7da2005-09-27 17:38:03 +08004456 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 ata_dev_select(ap, qc->dev->devno, 1, 0);
4458
Albert Lee312f7da2005-09-27 17:38:03 +08004459 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 switch (qc->tf.protocol) {
4461 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004462 if (qc->tf.flags & ATA_TFLAG_POLLING)
4463 ata_qc_set_polling(qc);
4464
Jeff Garzike5338252005-10-30 21:37:17 -05004465 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004466 ap->hsm_task_state = HSM_ST_LAST;
4467
4468 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004469 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004470
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 break;
4472
4473 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004474 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004475
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4477 ap->ops->bmdma_setup(qc); /* set up bmdma */
4478 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004479 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 break;
4481
Albert Lee312f7da2005-09-27 17:38:03 +08004482 case ATA_PROT_PIO:
4483 if (qc->tf.flags & ATA_TFLAG_POLLING)
4484 ata_qc_set_polling(qc);
4485
Jeff Garzike5338252005-10-30 21:37:17 -05004486 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004487
Albert Lee54f00382005-09-30 19:14:19 +08004488 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4489 /* PIO data out protocol */
4490 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004491 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004492
4493 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004494 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004495 */
Albert Lee312f7da2005-09-27 17:38:03 +08004496 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004497 /* PIO data in protocol */
4498 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004499
Albert Lee54f00382005-09-30 19:14:19 +08004500 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004501 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004502
Albert Lee54f00382005-09-30 19:14:19 +08004503 /* if polling, ata_pio_task() handles the rest.
4504 * otherwise, interrupt handler takes over from here.
4505 */
Albert Lee312f7da2005-09-27 17:38:03 +08004506 }
4507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 break;
4509
4510 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004512 if (qc->tf.flags & ATA_TFLAG_POLLING)
4513 ata_qc_set_polling(qc);
4514
Jeff Garzike5338252005-10-30 21:37:17 -05004515 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004516
Albert Lee312f7da2005-09-27 17:38:03 +08004517 ap->hsm_task_state = HSM_ST_FIRST;
4518
4519 /* send cdb by polling if no cdb interrupt */
4520 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4521 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004522 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 break;
4524
4525 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004526 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004527
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4529 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004530 ap->hsm_task_state = HSM_ST_FIRST;
4531
4532 /* send cdb by polling if no cdb interrupt */
4533 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004534 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 break;
4536
4537 default:
4538 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004539 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 }
4541
4542 return 0;
4543}
4544
4545/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 * ata_host_intr - Handle host interrupt for given (port, task)
4547 * @ap: Port on which interrupt arrived (possibly...)
4548 * @qc: Taskfile currently active in engine
4549 *
4550 * Handle host interrupt for given queued command. Currently,
4551 * only DMA interrupts are handled. All other commands are
4552 * handled via polling with interrupts disabled (nIEN bit).
4553 *
4554 * LOCKING:
4555 * spin_lock_irqsave(host_set lock)
4556 *
4557 * RETURNS:
4558 * One if interrupt was handled, zero if not (shared irq).
4559 */
4560
4561inline unsigned int ata_host_intr (struct ata_port *ap,
4562 struct ata_queued_cmd *qc)
4563{
Albert Lee312f7da2005-09-27 17:38:03 +08004564 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
Albert Lee312f7da2005-09-27 17:38:03 +08004566 VPRINTK("ata%u: protocol %d task_state %d\n",
4567 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568
Albert Lee312f7da2005-09-27 17:38:03 +08004569 /* Check whether we are expecting interrupt in this state */
4570 switch (ap->hsm_task_state) {
4571 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004572 /* Some pre-ATAPI-4 devices assert INTRQ
4573 * at this state when ready to receive CDB.
4574 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Albert Lee312f7da2005-09-27 17:38:03 +08004576 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4577 * The flag was turned on only for atapi devices.
4578 * No need to check is_atapi_taskfile(&qc->tf) again.
4579 */
4580 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004583 case HSM_ST_LAST:
4584 if (qc->tf.protocol == ATA_PROT_DMA ||
4585 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4586 /* check status of DMA engine */
4587 host_stat = ap->ops->bmdma_status(ap);
4588 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
Albert Lee312f7da2005-09-27 17:38:03 +08004590 /* if it's not our irq... */
4591 if (!(host_stat & ATA_DMA_INTR))
4592 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
Albert Lee312f7da2005-09-27 17:38:03 +08004594 /* before we do anything else, clear DMA-Start bit */
4595 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004596
4597 if (unlikely(host_stat & ATA_DMA_ERR)) {
4598 /* error when transfering data to/from memory */
4599 qc->err_mask |= AC_ERR_HOST_BUS;
4600 ap->hsm_task_state = HSM_ST_ERR;
4601 }
Albert Lee312f7da2005-09-27 17:38:03 +08004602 }
4603 break;
4604 case HSM_ST:
4605 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 default:
4607 goto idle_irq;
4608 }
4609
Albert Lee312f7da2005-09-27 17:38:03 +08004610 /* check altstatus */
4611 status = ata_altstatus(ap);
4612 if (status & ATA_BUSY)
4613 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
Albert Lee312f7da2005-09-27 17:38:03 +08004615 /* check main status, clearing INTRQ */
4616 status = ata_chk_status(ap);
4617 if (unlikely(status & ATA_BUSY))
4618 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
Albert Lee312f7da2005-09-27 17:38:03 +08004620 /* ack bmdma irq events */
4621 ap->ops->irq_clear(ap);
4622
Albert Leebb5cb292006-03-25 17:48:02 +08004623 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 return 1; /* irq handled */
4625
4626idle_irq:
4627 ap->stats.idle_irq++;
4628
4629#ifdef ATA_IRQ_TRAP
4630 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004632 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004633 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 }
4635#endif
4636 return 0; /* irq not handled */
4637}
4638
4639/**
4640 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004641 * @irq: irq line (unused)
4642 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 * @regs: unused
4644 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004645 * Default interrupt handler for PCI IDE devices. Calls
4646 * ata_host_intr() for each port that is not disabled.
4647 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004649 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 *
4651 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004652 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 */
4654
4655irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4656{
4657 struct ata_host_set *host_set = dev_instance;
4658 unsigned int i;
4659 unsigned int handled = 0;
4660 unsigned long flags;
4661
4662 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4663 spin_lock_irqsave(&host_set->lock, flags);
4664
4665 for (i = 0; i < host_set->n_ports; i++) {
4666 struct ata_port *ap;
4667
4668 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004669 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004670 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 struct ata_queued_cmd *qc;
4672
4673 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004674 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004675 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 handled |= ata_host_intr(ap, qc);
4677 }
4678 }
4679
4680 spin_unlock_irqrestore(&host_set->lock, flags);
4681
4682 return IRQ_RETVAL(handled);
4683}
4684
Tejun Heo34bf2172006-05-15 20:57:46 +09004685/**
4686 * sata_scr_valid - test whether SCRs are accessible
4687 * @ap: ATA port to test SCR accessibility for
4688 *
4689 * Test whether SCRs are accessible for @ap.
4690 *
4691 * LOCKING:
4692 * None.
4693 *
4694 * RETURNS:
4695 * 1 if SCRs are accessible, 0 otherwise.
4696 */
4697int sata_scr_valid(struct ata_port *ap)
4698{
4699 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4700}
4701
4702/**
4703 * sata_scr_read - read SCR register of the specified port
4704 * @ap: ATA port to read SCR for
4705 * @reg: SCR to read
4706 * @val: Place to store read value
4707 *
4708 * Read SCR register @reg of @ap into *@val. This function is
4709 * guaranteed to succeed if the cable type of the port is SATA
4710 * and the port implements ->scr_read.
4711 *
4712 * LOCKING:
4713 * None.
4714 *
4715 * RETURNS:
4716 * 0 on success, negative errno on failure.
4717 */
4718int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4719{
4720 if (sata_scr_valid(ap)) {
4721 *val = ap->ops->scr_read(ap, reg);
4722 return 0;
4723 }
4724 return -EOPNOTSUPP;
4725}
4726
4727/**
4728 * sata_scr_write - write SCR register of the specified port
4729 * @ap: ATA port to write SCR for
4730 * @reg: SCR to write
4731 * @val: value to write
4732 *
4733 * Write @val to SCR register @reg of @ap. This function is
4734 * guaranteed to succeed if the cable type of the port is SATA
4735 * and the port implements ->scr_read.
4736 *
4737 * LOCKING:
4738 * None.
4739 *
4740 * RETURNS:
4741 * 0 on success, negative errno on failure.
4742 */
4743int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4744{
4745 if (sata_scr_valid(ap)) {
4746 ap->ops->scr_write(ap, reg, val);
4747 return 0;
4748 }
4749 return -EOPNOTSUPP;
4750}
4751
4752/**
4753 * sata_scr_write_flush - write SCR register of the specified port and flush
4754 * @ap: ATA port to write SCR for
4755 * @reg: SCR to write
4756 * @val: value to write
4757 *
4758 * This function is identical to sata_scr_write() except that this
4759 * function performs flush after writing to the register.
4760 *
4761 * LOCKING:
4762 * None.
4763 *
4764 * RETURNS:
4765 * 0 on success, negative errno on failure.
4766 */
4767int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4768{
4769 if (sata_scr_valid(ap)) {
4770 ap->ops->scr_write(ap, reg, val);
4771 ap->ops->scr_read(ap, reg);
4772 return 0;
4773 }
4774 return -EOPNOTSUPP;
4775}
4776
4777/**
4778 * ata_port_online - test whether the given port is online
4779 * @ap: ATA port to test
4780 *
4781 * Test whether @ap is online. Note that this function returns 0
4782 * if online status of @ap cannot be obtained, so
4783 * ata_port_online(ap) != !ata_port_offline(ap).
4784 *
4785 * LOCKING:
4786 * None.
4787 *
4788 * RETURNS:
4789 * 1 if the port online status is available and online.
4790 */
4791int ata_port_online(struct ata_port *ap)
4792{
4793 u32 sstatus;
4794
4795 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4796 return 1;
4797 return 0;
4798}
4799
4800/**
4801 * ata_port_offline - test whether the given port is offline
4802 * @ap: ATA port to test
4803 *
4804 * Test whether @ap is offline. Note that this function returns
4805 * 0 if offline status of @ap cannot be obtained, so
4806 * ata_port_online(ap) != !ata_port_offline(ap).
4807 *
4808 * LOCKING:
4809 * None.
4810 *
4811 * RETURNS:
4812 * 1 if the port offline status is available and offline.
4813 */
4814int ata_port_offline(struct ata_port *ap)
4815{
4816 u32 sstatus;
4817
4818 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4819 return 1;
4820 return 0;
4821}
Edward Falk0baab862005-06-02 18:17:13 -04004822
Jens Axboe9b847542006-01-06 09:28:07 +01004823/*
4824 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4825 * without filling any other registers
4826 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004827static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Jens Axboe9b847542006-01-06 09:28:07 +01004828{
4829 struct ata_taskfile tf;
4830 int err;
4831
Tejun Heo3373efd2006-05-15 20:57:53 +09004832 ata_tf_init(dev, &tf);
Jens Axboe9b847542006-01-06 09:28:07 +01004833
4834 tf.command = cmd;
4835 tf.flags |= ATA_TFLAG_DEVICE;
4836 tf.protocol = ATA_PROT_NODATA;
4837
Tejun Heo3373efd2006-05-15 20:57:53 +09004838 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004839 if (err)
Tejun Heof15a1da2006-05-15 20:57:56 +09004840 ata_dev_printk(dev, KERN_ERR, "%s: ata command failed: %d\n",
4841 __FUNCTION__, err);
Jens Axboe9b847542006-01-06 09:28:07 +01004842
4843 return err;
4844}
4845
Tejun Heo3373efd2006-05-15 20:57:53 +09004846static int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004847{
4848 u8 cmd;
4849
4850 if (!ata_try_flush_cache(dev))
4851 return 0;
4852
4853 if (ata_id_has_flush_ext(dev->id))
4854 cmd = ATA_CMD_FLUSH_EXT;
4855 else
4856 cmd = ATA_CMD_FLUSH;
4857
Tejun Heo3373efd2006-05-15 20:57:53 +09004858 return ata_do_simple_cmd(dev, cmd);
Jens Axboe9b847542006-01-06 09:28:07 +01004859}
4860
Tejun Heo3373efd2006-05-15 20:57:53 +09004861static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004862{
Tejun Heo3373efd2006-05-15 20:57:53 +09004863 return ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
Jens Axboe9b847542006-01-06 09:28:07 +01004864}
4865
Tejun Heo3373efd2006-05-15 20:57:53 +09004866static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004867{
Tejun Heo3373efd2006-05-15 20:57:53 +09004868 return ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
Jens Axboe9b847542006-01-06 09:28:07 +01004869}
4870
4871/**
4872 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004873 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004874 *
4875 * Kick the drive back into action, by sending it an idle immediate
4876 * command and making sure its transfer mode matches between drive
4877 * and host.
4878 *
4879 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004880int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004881{
Tejun Heo3373efd2006-05-15 20:57:53 +09004882 struct ata_port *ap = dev->ap;
4883
Jens Axboe9b847542006-01-06 09:28:07 +01004884 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004885 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01004886 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004887 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09004888 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004889 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004890 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004891 return 0;
4892 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09004893 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004894
4895 return 0;
4896}
4897
4898/**
4899 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004900 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004901 *
4902 * Flush the cache on the drive, if appropriate, then issue a
4903 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004904 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004905int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004906{
Tejun Heo3373efd2006-05-15 20:57:53 +09004907 struct ata_port *ap = dev->ap;
4908
Tejun Heoe1211e32006-04-01 01:38:18 +09004909 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004910 return 0;
4911 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09004912 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004913
Nigel Cunningham082776e2006-03-23 23:22:16 +10004914 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09004915 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004916 ap->flags |= ATA_FLAG_SUSPENDED;
4917 return 0;
4918}
4919
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004920/**
4921 * ata_port_start - Set port up for dma.
4922 * @ap: Port to initialize
4923 *
4924 * Called just after data structures for each port are
4925 * initialized. Allocates space for PRD table.
4926 *
4927 * May be used as the port_start() entry in ata_port_operations.
4928 *
4929 * LOCKING:
4930 * Inherited from caller.
4931 */
4932
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933int ata_port_start (struct ata_port *ap)
4934{
Brian King2f1f6102006-03-23 17:30:15 -06004935 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004936 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937
4938 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4939 if (!ap->prd)
4940 return -ENOMEM;
4941
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004942 rc = ata_pad_alloc(ap, dev);
4943 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004944 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004945 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004946 }
4947
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4949
4950 return 0;
4951}
4952
Edward Falk0baab862005-06-02 18:17:13 -04004953
4954/**
4955 * ata_port_stop - Undo ata_port_start()
4956 * @ap: Port to shut down
4957 *
4958 * Frees the PRD table.
4959 *
4960 * May be used as the port_stop() entry in ata_port_operations.
4961 *
4962 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004963 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004964 */
4965
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966void ata_port_stop (struct ata_port *ap)
4967{
Brian King2f1f6102006-03-23 17:30:15 -06004968 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969
4970 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004971 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972}
4973
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004974void ata_host_stop (struct ata_host_set *host_set)
4975{
4976 if (host_set->mmio_base)
4977 iounmap(host_set->mmio_base);
4978}
4979
4980
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981/**
4982 * ata_host_remove - Unregister SCSI host structure with upper layers
4983 * @ap: Port to unregister
4984 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4985 *
4986 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004987 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 */
4989
4990static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4991{
4992 struct Scsi_Host *sh = ap->host;
4993
4994 DPRINTK("ENTER\n");
4995
4996 if (do_unregister)
4997 scsi_remove_host(sh);
4998
4999 ap->ops->port_stop(ap);
5000}
5001
5002/**
5003 * ata_host_init - Initialize an ata_port structure
5004 * @ap: Structure to initialize
5005 * @host: associated SCSI mid-layer structure
5006 * @host_set: Collection of hosts to which @ap belongs
5007 * @ent: Probe information provided by low-level driver
5008 * @port_no: Port number associated with this ata_port
5009 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005010 * Initialize a new ata_port structure, and its associated
5011 * scsi_host.
5012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005014 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 */
5016
5017static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5018 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005019 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020{
5021 unsigned int i;
5022
5023 host->max_id = 16;
5024 host->max_lun = 1;
5025 host->max_channel = 1;
5026 host->unique_id = ata_unique_id++;
5027 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005028
Tejun Heo198e0fe2006-04-02 18:51:52 +09005029 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 ap->id = host->unique_id;
5031 ap->host = host;
5032 ap->ctl = ATA_DEVCTL_OBS;
5033 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005034 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 ap->port_no = port_no;
5036 ap->hard_port_no =
5037 ent->legacy_mode ? ent->hard_port_no : port_no;
5038 ap->pio_mask = ent->pio_mask;
5039 ap->mwdma_mask = ent->mwdma_mask;
5040 ap->udma_mask = ent->udma_mask;
5041 ap->flags |= ent->host_flags;
5042 ap->ops = ent->port_ops;
Tejun Heo1c3fae42006-04-02 20:53:28 +09005043 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 ap->active_tag = ATA_TAG_POISON;
5045 ap->last_ctl = 0xFF;
5046
Tejun Heo86e45b62006-03-05 15:29:09 +09005047 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005048 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
Tejun Heo838df622006-05-15 20:57:44 +09005050 /* set cable type */
5051 ap->cbl = ATA_CBL_NONE;
5052 if (ap->flags & ATA_FLAG_SATA)
5053 ap->cbl = ATA_CBL_SATA;
5054
Tejun Heoacf356b2006-03-24 14:07:50 +09005055 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5056 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005057 dev->ap = ap;
Tejun Heoacf356b2006-03-24 14:07:50 +09005058 dev->devno = i;
5059 dev->pio_mask = UINT_MAX;
5060 dev->mwdma_mask = UINT_MAX;
5061 dev->udma_mask = UINT_MAX;
5062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
5064#ifdef ATA_IRQ_TRAP
5065 ap->stats.unhandled_irq = 1;
5066 ap->stats.idle_irq = 1;
5067#endif
5068
5069 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5070}
5071
5072/**
5073 * ata_host_add - Attach low-level ATA driver to system
5074 * @ent: Information provided by low-level driver
5075 * @host_set: Collections of ports to which we add
5076 * @port_no: Port number associated with this host
5077 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005078 * Attach low-level ATA driver to system.
5079 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005081 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 *
5083 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005084 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 */
5086
Jeff Garzik057ace52005-10-22 14:27:05 -04005087static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 struct ata_host_set *host_set,
5089 unsigned int port_no)
5090{
5091 struct Scsi_Host *host;
5092 struct ata_port *ap;
5093 int rc;
5094
5095 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005096
5097 if (!ent->port_ops->probe_reset &&
5098 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5099 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5100 port_no);
5101 return NULL;
5102 }
5103
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5105 if (!host)
5106 return NULL;
5107
Tejun Heo30afc842006-03-18 18:40:14 +09005108 host->transportt = &ata_scsi_transport_template;
5109
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005110 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111
5112 ata_host_init(ap, host, host_set, ent, port_no);
5113
5114 rc = ap->ops->port_start(ap);
5115 if (rc)
5116 goto err_out;
5117
5118 return ap;
5119
5120err_out:
5121 scsi_host_put(host);
5122 return NULL;
5123}
5124
5125/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005126 * ata_device_add - Register hardware device with ATA and SCSI layers
5127 * @ent: Probe information describing hardware device to be registered
5128 *
5129 * This function processes the information provided in the probe
5130 * information struct @ent, allocates the necessary ATA and SCSI
5131 * host information structures, initializes them, and registers
5132 * everything with requisite kernel subsystems.
5133 *
5134 * This function requests irqs, probes the ATA bus, and probes
5135 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 *
5137 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005138 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 *
5140 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005141 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 */
5143
Jeff Garzik057ace52005-10-22 14:27:05 -04005144int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145{
5146 unsigned int count = 0, i;
5147 struct device *dev = ent->dev;
5148 struct ata_host_set *host_set;
5149
5150 DPRINTK("ENTER\n");
5151 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005152 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5154 if (!host_set)
5155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 spin_lock_init(&host_set->lock);
5157
5158 host_set->dev = dev;
5159 host_set->n_ports = ent->n_ports;
5160 host_set->irq = ent->irq;
5161 host_set->mmio_base = ent->mmio_base;
5162 host_set->private_data = ent->private_data;
5163 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005164 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165
5166 /* register each port bound to this device */
5167 for (i = 0; i < ent->n_ports; i++) {
5168 struct ata_port *ap;
5169 unsigned long xfer_mode_mask;
5170
5171 ap = ata_host_add(ent, host_set, i);
5172 if (!ap)
5173 goto err_out;
5174
5175 host_set->ports[i] = ap;
5176 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5177 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5178 (ap->pio_mask << ATA_SHIFT_PIO);
5179
5180 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005181 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5182 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5183 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5184 ata_mode_string(xfer_mode_mask),
5185 ap->ioaddr.cmd_addr,
5186 ap->ioaddr.ctl_addr,
5187 ap->ioaddr.bmdma_addr,
5188 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189
5190 ata_chk_status(ap);
5191 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005192 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 count++;
5194 }
5195
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005196 if (!count)
5197 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198
5199 /* obtain irq, that is shared between channels */
5200 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5201 DRV_NAME, host_set))
5202 goto err_out;
5203
5204 /* perform each probe synchronously */
5205 DPRINTK("probe begin\n");
5206 for (i = 0; i < count; i++) {
5207 struct ata_port *ap;
5208 int rc;
5209
5210 ap = host_set->ports[i];
5211
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005212 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005214 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
5216 if (rc) {
5217 /* FIXME: do something useful here?
5218 * Current libata behavior will
5219 * tear down everything when
5220 * the module is removed
5221 * or the h/w is unplugged.
5222 */
5223 }
5224
5225 rc = scsi_add_host(ap->host, dev);
5226 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005227 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228 /* FIXME: do something useful here */
5229 /* FIXME: handle unconditional calls to
5230 * scsi_scan_host and ata_host_remove, below,
5231 * at the very least
5232 */
5233 }
5234 }
5235
5236 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005237 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238 for (i = 0; i < count; i++) {
5239 struct ata_port *ap = host_set->ports[i];
5240
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005241 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 }
5243
5244 dev_set_drvdata(dev, host_set);
5245
5246 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5247 return ent->n_ports; /* success */
5248
5249err_out:
5250 for (i = 0; i < count; i++) {
5251 ata_host_remove(host_set->ports[i], 1);
5252 scsi_host_put(host_set->ports[i]->host);
5253 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005254err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 kfree(host_set);
5256 VPRINTK("EXIT, returning 0\n");
5257 return 0;
5258}
5259
5260/**
Alan Cox17b14452005-09-15 15:44:00 +01005261 * ata_host_set_remove - PCI layer callback for device removal
5262 * @host_set: ATA host set that was removed
5263 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005264 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005265 * objects.
5266 *
5267 * LOCKING:
5268 * Inherited from calling layer (may sleep).
5269 */
5270
Alan Cox17b14452005-09-15 15:44:00 +01005271void ata_host_set_remove(struct ata_host_set *host_set)
5272{
5273 struct ata_port *ap;
5274 unsigned int i;
5275
5276 for (i = 0; i < host_set->n_ports; i++) {
5277 ap = host_set->ports[i];
5278 scsi_remove_host(ap->host);
5279 }
5280
5281 free_irq(host_set->irq, host_set);
5282
5283 for (i = 0; i < host_set->n_ports; i++) {
5284 ap = host_set->ports[i];
5285
5286 ata_scsi_release(ap->host);
5287
5288 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5289 struct ata_ioports *ioaddr = &ap->ioaddr;
5290
5291 if (ioaddr->cmd_addr == 0x1f0)
5292 release_region(0x1f0, 8);
5293 else if (ioaddr->cmd_addr == 0x170)
5294 release_region(0x170, 8);
5295 }
5296
5297 scsi_host_put(ap->host);
5298 }
5299
5300 if (host_set->ops->host_stop)
5301 host_set->ops->host_stop(host_set);
5302
5303 kfree(host_set);
5304}
5305
5306/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 * ata_scsi_release - SCSI layer callback hook for host unload
5308 * @host: libata host to be unloaded
5309 *
5310 * Performs all duties necessary to shut down a libata port...
5311 * Kill port kthread, disable port, and release resources.
5312 *
5313 * LOCKING:
5314 * Inherited from SCSI layer.
5315 *
5316 * RETURNS:
5317 * One.
5318 */
5319
5320int ata_scsi_release(struct Scsi_Host *host)
5321{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005322 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323
5324 DPRINTK("ENTER\n");
5325
5326 ap->ops->port_disable(ap);
5327 ata_host_remove(ap, 0);
5328
5329 DPRINTK("EXIT\n");
5330 return 1;
5331}
5332
5333/**
5334 * ata_std_ports - initialize ioaddr with standard port offsets.
5335 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005336 *
5337 * Utility function which initializes data_addr, error_addr,
5338 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5339 * device_addr, status_addr, and command_addr to standard offsets
5340 * relative to cmd_addr.
5341 *
5342 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 */
Edward Falk0baab862005-06-02 18:17:13 -04005344
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345void ata_std_ports(struct ata_ioports *ioaddr)
5346{
5347 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5348 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5349 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5350 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5351 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5352 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5353 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5354 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5355 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5356 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5357}
5358
Edward Falk0baab862005-06-02 18:17:13 -04005359
Jeff Garzik374b1872005-08-30 05:42:52 -04005360#ifdef CONFIG_PCI
5361
5362void ata_pci_host_stop (struct ata_host_set *host_set)
5363{
5364 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5365
5366 pci_iounmap(pdev, host_set->mmio_base);
5367}
5368
Edward Falk0baab862005-06-02 18:17:13 -04005369/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 * ata_pci_remove_one - PCI layer callback for device removal
5371 * @pdev: PCI device that was removed
5372 *
5373 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005374 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 * Handle this by unregistering all objects associated
5376 * with this PCI device. Free those objects. Then finally
5377 * release PCI resources and disable device.
5378 *
5379 * LOCKING:
5380 * Inherited from PCI layer (may sleep).
5381 */
5382
5383void ata_pci_remove_one (struct pci_dev *pdev)
5384{
5385 struct device *dev = pci_dev_to_dev(pdev);
5386 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387
Alan Cox17b14452005-09-15 15:44:00 +01005388 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 pci_release_regions(pdev);
5390 pci_disable_device(pdev);
5391 dev_set_drvdata(dev, NULL);
5392}
5393
5394/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005395int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396{
5397 unsigned long tmp = 0;
5398
5399 switch (bits->width) {
5400 case 1: {
5401 u8 tmp8 = 0;
5402 pci_read_config_byte(pdev, bits->reg, &tmp8);
5403 tmp = tmp8;
5404 break;
5405 }
5406 case 2: {
5407 u16 tmp16 = 0;
5408 pci_read_config_word(pdev, bits->reg, &tmp16);
5409 tmp = tmp16;
5410 break;
5411 }
5412 case 4: {
5413 u32 tmp32 = 0;
5414 pci_read_config_dword(pdev, bits->reg, &tmp32);
5415 tmp = tmp32;
5416 break;
5417 }
5418
5419 default:
5420 return -EINVAL;
5421 }
5422
5423 tmp &= bits->mask;
5424
5425 return (tmp == bits->val) ? 1 : 0;
5426}
Jens Axboe9b847542006-01-06 09:28:07 +01005427
5428int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5429{
5430 pci_save_state(pdev);
5431 pci_disable_device(pdev);
5432 pci_set_power_state(pdev, PCI_D3hot);
5433 return 0;
5434}
5435
5436int ata_pci_device_resume(struct pci_dev *pdev)
5437{
5438 pci_set_power_state(pdev, PCI_D0);
5439 pci_restore_state(pdev);
5440 pci_enable_device(pdev);
5441 pci_set_master(pdev);
5442 return 0;
5443}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444#endif /* CONFIG_PCI */
5445
5446
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447static int __init ata_init(void)
5448{
5449 ata_wq = create_workqueue("ata");
5450 if (!ata_wq)
5451 return -ENOMEM;
5452
5453 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5454 return 0;
5455}
5456
5457static void __exit ata_exit(void)
5458{
5459 destroy_workqueue(ata_wq);
5460}
5461
5462module_init(ata_init);
5463module_exit(ata_exit);
5464
Jeff Garzik67846b32005-10-05 02:58:32 -04005465static unsigned long ratelimit_time;
5466static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5467
5468int ata_ratelimit(void)
5469{
5470 int rc;
5471 unsigned long flags;
5472
5473 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5474
5475 if (time_after(jiffies, ratelimit_time)) {
5476 rc = 1;
5477 ratelimit_time = jiffies + (HZ/5);
5478 } else
5479 rc = 0;
5480
5481 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5482
5483 return rc;
5484}
5485
Tejun Heoc22daff2006-04-11 22:22:29 +09005486/**
5487 * ata_wait_register - wait until register value changes
5488 * @reg: IO-mapped register
5489 * @mask: Mask to apply to read register value
5490 * @val: Wait condition
5491 * @interval_msec: polling interval in milliseconds
5492 * @timeout_msec: timeout in milliseconds
5493 *
5494 * Waiting for some bits of register to change is a common
5495 * operation for ATA controllers. This function reads 32bit LE
5496 * IO-mapped register @reg and tests for the following condition.
5497 *
5498 * (*@reg & mask) != val
5499 *
5500 * If the condition is met, it returns; otherwise, the process is
5501 * repeated after @interval_msec until timeout.
5502 *
5503 * LOCKING:
5504 * Kernel thread context (may sleep)
5505 *
5506 * RETURNS:
5507 * The final register value.
5508 */
5509u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5510 unsigned long interval_msec,
5511 unsigned long timeout_msec)
5512{
5513 unsigned long timeout;
5514 u32 tmp;
5515
5516 tmp = ioread32(reg);
5517
5518 /* Calculate timeout _after_ the first read to make sure
5519 * preceding writes reach the controller before starting to
5520 * eat away the timeout.
5521 */
5522 timeout = jiffies + (timeout_msec * HZ) / 1000;
5523
5524 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5525 msleep(interval_msec);
5526 tmp = ioread32(reg);
5527 }
5528
5529 return tmp;
5530}
5531
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532/*
5533 * libata is essentially a library of internal helper functions for
5534 * low-level ATA host controller drivers. As such, the API/ABI is
5535 * likely to change as new drivers are added and updated.
5536 * Do not depend on ABI/API stability.
5537 */
5538
5539EXPORT_SYMBOL_GPL(ata_std_bios_param);
5540EXPORT_SYMBOL_GPL(ata_std_ports);
5541EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005542EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543EXPORT_SYMBOL_GPL(ata_sg_init);
5544EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heof686bcb2006-05-15 20:58:05 +09005545EXPORT_SYMBOL_GPL(ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547EXPORT_SYMBOL_GPL(ata_tf_load);
5548EXPORT_SYMBOL_GPL(ata_tf_read);
5549EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5550EXPORT_SYMBOL_GPL(ata_std_dev_select);
5551EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5552EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5553EXPORT_SYMBOL_GPL(ata_check_status);
5554EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555EXPORT_SYMBOL_GPL(ata_exec_command);
5556EXPORT_SYMBOL_GPL(ata_port_start);
5557EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005558EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559EXPORT_SYMBOL_GPL(ata_interrupt);
5560EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005561EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5563EXPORT_SYMBOL_GPL(ata_bmdma_start);
5564EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5565EXPORT_SYMBOL_GPL(ata_bmdma_status);
5566EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005567EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5568EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5569EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5570EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5571EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005573EXPORT_SYMBOL_GPL(sata_set_spd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574EXPORT_SYMBOL_GPL(sata_phy_reset);
5575EXPORT_SYMBOL_GPL(__sata_phy_reset);
5576EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005577EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005578EXPORT_SYMBOL_GPL(ata_std_softreset);
5579EXPORT_SYMBOL_GPL(sata_std_hardreset);
5580EXPORT_SYMBOL_GPL(ata_std_postreset);
5581EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005582EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005583EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005584EXPORT_SYMBOL_GPL(ata_dev_classify);
5585EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005587EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005588EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005589EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005590EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5592EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5594EXPORT_SYMBOL_GPL(ata_scsi_release);
5595EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005596EXPORT_SYMBOL_GPL(sata_scr_valid);
5597EXPORT_SYMBOL_GPL(sata_scr_read);
5598EXPORT_SYMBOL_GPL(sata_scr_write);
5599EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5600EXPORT_SYMBOL_GPL(ata_port_online);
5601EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005602EXPORT_SYMBOL_GPL(ata_id_string);
5603EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5605
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005606EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005607EXPORT_SYMBOL_GPL(ata_timing_compute);
5608EXPORT_SYMBOL_GPL(ata_timing_merge);
5609
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610#ifdef CONFIG_PCI
5611EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005612EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5614EXPORT_SYMBOL_GPL(ata_pci_init_one);
5615EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005616EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5617EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005618EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5619EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005621
5622EXPORT_SYMBOL_GPL(ata_device_suspend);
5623EXPORT_SYMBOL_GPL(ata_device_resume);
5624EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5625EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005626
Tejun Heoece1d632006-04-02 18:51:53 +09005627EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005628EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5629EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005630EXPORT_SYMBOL_GPL(ata_port_freeze);
5631EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5632EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005633EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5634EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005635EXPORT_SYMBOL_GPL(ata_do_eh);