blob: f18742e8d72dd3d304fbb9afb34e50602cb767a4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/config.h>
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/pci.h>
39#include <linux/init.h>
40#include <linux/list.h>
41#include <linux/mm.h>
42#include <linux/highmem.h>
43#include <linux/spinlock.h>
44#include <linux/blkdev.h>
45#include <linux/delay.h>
46#include <linux/timer.h>
47#include <linux/interrupt.h>
48#include <linux/completion.h>
49#include <linux/suspend.h>
50#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <linux/libata.h>
58#include <asm/io.h>
59#include <asm/semaphore.h>
60#include <asm/byteorder.h>
61
62#include "libata.h"
63
Tejun Heo6aff8f12006-02-15 18:24:09 +090064static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +080065 struct ata_device *dev,
66 u16 heads,
67 u16 sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static void ata_set_mode(struct ata_port *ap);
Tejun Heo83206a22006-03-24 15:25:31 +090069static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
70 struct ata_device *dev);
Tejun Heoacf356b2006-03-24 14:07:50 +090071static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static unsigned int ata_unique_id = 1;
74static struct workqueue_struct *ata_wq;
75
Jeff Garzik418dc1f2006-03-11 20:50:08 -050076int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040077module_param(atapi_enabled, int, 0444);
78MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (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 Leeaef9d532006-02-08 16:37:43 +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 {
281 unsigned int shift, bits;
282 u8 base;
283} ata_xfer_tbl[] = {
284 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
285 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
286 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
287 { -1, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288};
289
290/**
Tejun Heocb95d562006-03-06 04:31:56 +0900291 * 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 Heo0b8efb02006-03-24 15:25:31 +0900400static void ata_dev_disable(struct ata_port *ap, struct ata_device *dev)
401{
402 if (ata_dev_present(dev)) {
403 printk(KERN_WARNING "ata%u: dev %u disabled\n",
404 ap->id, dev->devno);
405 dev->class++;
406 }
407}
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409/**
410 * ata_pio_devchk - PATA device presence detection
411 * @ap: ATA channel to examine
412 * @device: Device to examine (starting at zero)
413 *
414 * This technique was originally described in
415 * Hale Landis's ATADRVR (www.ata-atapi.com), and
416 * later found its way into the ATA/ATAPI spec.
417 *
418 * Write a pattern to the ATA shadow registers,
419 * and if a device is present, it will respond by
420 * correctly storing and echoing back the
421 * ATA shadow register contents.
422 *
423 * LOCKING:
424 * caller.
425 */
426
427static unsigned int ata_pio_devchk(struct ata_port *ap,
428 unsigned int device)
429{
430 struct ata_ioports *ioaddr = &ap->ioaddr;
431 u8 nsect, lbal;
432
433 ap->ops->dev_select(ap, device);
434
435 outb(0x55, ioaddr->nsect_addr);
436 outb(0xaa, ioaddr->lbal_addr);
437
438 outb(0xaa, ioaddr->nsect_addr);
439 outb(0x55, ioaddr->lbal_addr);
440
441 outb(0x55, ioaddr->nsect_addr);
442 outb(0xaa, ioaddr->lbal_addr);
443
444 nsect = inb(ioaddr->nsect_addr);
445 lbal = inb(ioaddr->lbal_addr);
446
447 if ((nsect == 0x55) && (lbal == 0xaa))
448 return 1; /* we found a device */
449
450 return 0; /* nothing found */
451}
452
453/**
454 * ata_mmio_devchk - PATA device presence detection
455 * @ap: ATA channel to examine
456 * @device: Device to examine (starting at zero)
457 *
458 * This technique was originally described in
459 * Hale Landis's ATADRVR (www.ata-atapi.com), and
460 * later found its way into the ATA/ATAPI spec.
461 *
462 * Write a pattern to the ATA shadow registers,
463 * and if a device is present, it will respond by
464 * correctly storing and echoing back the
465 * ATA shadow register contents.
466 *
467 * LOCKING:
468 * caller.
469 */
470
471static unsigned int ata_mmio_devchk(struct ata_port *ap,
472 unsigned int device)
473{
474 struct ata_ioports *ioaddr = &ap->ioaddr;
475 u8 nsect, lbal;
476
477 ap->ops->dev_select(ap, device);
478
479 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
480 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
481
482 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
483 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
484
485 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
486 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
487
488 nsect = readb((void __iomem *) ioaddr->nsect_addr);
489 lbal = readb((void __iomem *) ioaddr->lbal_addr);
490
491 if ((nsect == 0x55) && (lbal == 0xaa))
492 return 1; /* we found a device */
493
494 return 0; /* nothing found */
495}
496
497/**
498 * ata_devchk - PATA device presence detection
499 * @ap: ATA channel to examine
500 * @device: Device to examine (starting at zero)
501 *
502 * Dispatch ATA device presence detection, depending
503 * on whether we are using PIO or MMIO to talk to the
504 * ATA shadow registers.
505 *
506 * LOCKING:
507 * caller.
508 */
509
510static unsigned int ata_devchk(struct ata_port *ap,
511 unsigned int device)
512{
513 if (ap->flags & ATA_FLAG_MMIO)
514 return ata_mmio_devchk(ap, device);
515 return ata_pio_devchk(ap, device);
516}
517
518/**
519 * ata_dev_classify - determine device type based on ATA-spec signature
520 * @tf: ATA taskfile register set for device to be identified
521 *
522 * Determine from taskfile register contents whether a device is
523 * ATA or ATAPI, as per "Signature and persistence" section
524 * of ATA/PI spec (volume 1, sect 5.14).
525 *
526 * LOCKING:
527 * None.
528 *
529 * RETURNS:
530 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
531 * the event of failure.
532 */
533
Jeff Garzik057ace52005-10-22 14:27:05 -0400534unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 /* Apple's open source Darwin code hints that some devices only
537 * put a proper signature into the LBA mid/high registers,
538 * So, we only check those. It's sufficient for uniqueness.
539 */
540
541 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
542 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
543 DPRINTK("found ATA device by sig\n");
544 return ATA_DEV_ATA;
545 }
546
547 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
548 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
549 DPRINTK("found ATAPI device by sig\n");
550 return ATA_DEV_ATAPI;
551 }
552
553 DPRINTK("unknown device\n");
554 return ATA_DEV_UNKNOWN;
555}
556
557/**
558 * ata_dev_try_classify - Parse returned ATA device signature
559 * @ap: ATA channel to examine
560 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900561 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 *
563 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
564 * an ATA/ATAPI-defined set of values is placed in the ATA
565 * shadow registers, indicating the results of device detection
566 * and diagnostics.
567 *
568 * Select the ATA device, and read the values from the ATA shadow
569 * registers. Then parse according to the Error register value,
570 * and the spec-defined values examined by ata_dev_classify().
571 *
572 * LOCKING:
573 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900574 *
575 * RETURNS:
576 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
578
Tejun Heob4dc7622006-01-24 17:05:22 +0900579static unsigned int
580ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct ata_taskfile tf;
583 unsigned int class;
584 u8 err;
585
586 ap->ops->dev_select(ap, device);
587
588 memset(&tf, 0, sizeof(tf));
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400591 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900592 if (r_err)
593 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 /* see if device passed diags */
596 if (err == 1)
597 /* do nothing */ ;
598 else if ((device == 0) && (err == 0x81))
599 /* do nothing */ ;
600 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900601 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Tejun Heob4dc7622006-01-24 17:05:22 +0900603 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900607 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900609 return ATA_DEV_NONE;
610 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
613/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900614 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 * @id: IDENTIFY DEVICE results we will examine
616 * @s: string into which data is output
617 * @ofs: offset into identify device page
618 * @len: length of string to return. must be an even number.
619 *
620 * The strings in the IDENTIFY DEVICE page are broken up into
621 * 16-bit chunks. Run through the string, and output each
622 * 8-bit chunk linearly, regardless of platform.
623 *
624 * LOCKING:
625 * caller.
626 */
627
Tejun Heo6a62a042006-02-13 10:02:46 +0900628void ata_id_string(const u16 *id, unsigned char *s,
629 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 unsigned int c;
632
633 while (len > 0) {
634 c = id[ofs] >> 8;
635 *s = c;
636 s++;
637
638 c = id[ofs] & 0xff;
639 *s = c;
640 s++;
641
642 ofs++;
643 len -= 2;
644 }
645}
646
Tejun Heo0e949ff2006-02-12 22:47:04 +0900647/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900648 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900649 * @id: IDENTIFY DEVICE results we will examine
650 * @s: string into which data is output
651 * @ofs: offset into identify device page
652 * @len: length of string to return. must be an odd number.
653 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900654 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900655 * trims trailing spaces and terminates the resulting string with
656 * null. @len must be actual maximum length (even number) + 1.
657 *
658 * LOCKING:
659 * caller.
660 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900661void ata_id_c_string(const u16 *id, unsigned char *s,
662 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900663{
664 unsigned char *p;
665
666 WARN_ON(!(len & 1));
667
Tejun Heo6a62a042006-02-13 10:02:46 +0900668 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900669
670 p = s + strnlen(s, len - 1);
671 while (p > s && p[-1] == ' ')
672 p--;
673 *p = '\0';
674}
Edward Falk0baab862005-06-02 18:17:13 -0400675
Tejun Heo29407402006-02-12 22:47:04 +0900676static u64 ata_id_n_sectors(const u16 *id)
677{
678 if (ata_id_has_lba(id)) {
679 if (ata_id_has_lba48(id))
680 return ata_id_u64(id, 100);
681 else
682 return ata_id_u32(id, 60);
683 } else {
684 if (ata_id_current_chs_valid(id))
685 return ata_id_u32(id, 57);
686 else
687 return id[1] * id[3] * id[6];
688 }
689}
Edward Falk0baab862005-06-02 18:17:13 -0400690
691/**
692 * ata_noop_dev_select - Select device 0/1 on ATA bus
693 * @ap: ATA channel to manipulate
694 * @device: ATA device (numbered from zero) to select
695 *
696 * This function performs no actual function.
697 *
698 * May be used as the dev_select() entry in ata_port_operations.
699 *
700 * LOCKING:
701 * caller.
702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
704{
705}
706
Edward Falk0baab862005-06-02 18:17:13 -0400707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708/**
709 * ata_std_dev_select - Select device 0/1 on ATA bus
710 * @ap: ATA channel to manipulate
711 * @device: ATA device (numbered from zero) to select
712 *
713 * Use the method defined in the ATA specification to
714 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400715 * ATA channel. Works with both PIO and MMIO.
716 *
717 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 *
719 * LOCKING:
720 * caller.
721 */
722
723void ata_std_dev_select (struct ata_port *ap, unsigned int device)
724{
725 u8 tmp;
726
727 if (device == 0)
728 tmp = ATA_DEVICE_OBS;
729 else
730 tmp = ATA_DEVICE_OBS | ATA_DEV1;
731
732 if (ap->flags & ATA_FLAG_MMIO) {
733 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
734 } else {
735 outb(tmp, ap->ioaddr.device_addr);
736 }
737 ata_pause(ap); /* needed; also flushes, for mmio */
738}
739
740/**
741 * ata_dev_select - Select device 0/1 on ATA bus
742 * @ap: ATA channel to manipulate
743 * @device: ATA device (numbered from zero) to select
744 * @wait: non-zero to wait for Status register BSY bit to clear
745 * @can_sleep: non-zero if context allows sleeping
746 *
747 * Use the method defined in the ATA specification to
748 * make either device 0, or device 1, active on the
749 * ATA channel.
750 *
751 * This is a high-level version of ata_std_dev_select(),
752 * which additionally provides the services of inserting
753 * the proper pauses and status polling, where needed.
754 *
755 * LOCKING:
756 * caller.
757 */
758
759void ata_dev_select(struct ata_port *ap, unsigned int device,
760 unsigned int wait, unsigned int can_sleep)
761{
762 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
763 ap->id, device, wait);
764
765 if (wait)
766 ata_wait_idle(ap);
767
768 ap->ops->dev_select(ap, device);
769
770 if (wait) {
771 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
772 msleep(150);
773 ata_wait_idle(ap);
774 }
775}
776
777/**
778 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900779 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900781 * Dump selected 16-bit words from the given IDENTIFY DEVICE
782 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 *
784 * LOCKING:
785 * caller.
786 */
787
Tejun Heo0bd33002006-02-12 22:47:05 +0900788static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 DPRINTK("49==0x%04x "
791 "53==0x%04x "
792 "63==0x%04x "
793 "64==0x%04x "
794 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900795 id[49],
796 id[53],
797 id[63],
798 id[64],
799 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 DPRINTK("80==0x%04x "
801 "81==0x%04x "
802 "82==0x%04x "
803 "83==0x%04x "
804 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900805 id[80],
806 id[81],
807 id[82],
808 id[83],
809 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 DPRINTK("88==0x%04x "
811 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900812 id[88],
813 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Tejun Heocb95d562006-03-06 04:31:56 +0900816/**
817 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
818 * @id: IDENTIFY data to compute xfer mask from
Alan Cox11e29e22005-10-21 18:46:32 -0400819 *
Tejun Heocb95d562006-03-06 04:31:56 +0900820 * Compute the xfermask for this device. This is not as trivial
821 * as it seems if we must consider early devices correctly.
822 *
823 * FIXME: pre IDE drive timing (do we care ?).
824 *
825 * LOCKING:
826 * None.
827 *
828 * RETURNS:
829 * Computed xfermask
Alan Cox11e29e22005-10-21 18:46:32 -0400830 */
Tejun Heocb95d562006-03-06 04:31:56 +0900831static unsigned int ata_id_xfermask(const u16 *id)
Alan Cox11e29e22005-10-21 18:46:32 -0400832{
Tejun Heocb95d562006-03-06 04:31:56 +0900833 unsigned int pio_mask, mwdma_mask, udma_mask;
Alan Cox11e29e22005-10-21 18:46:32 -0400834
Alan Coxffa29452006-01-09 17:14:40 +0000835 /* Usual case. Word 53 indicates word 64 is valid */
Tejun Heocb95d562006-03-06 04:31:56 +0900836 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
837 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
838 pio_mask <<= 3;
839 pio_mask |= 0x7;
840 } else {
841 /* If word 64 isn't valid then Word 51 high byte holds
842 * the PIO timing number for the maximum. Turn it into
843 * a mask.
844 */
845 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
846
847 /* But wait.. there's more. Design your standards by
848 * committee and you too can get a free iordy field to
849 * process. However its the speeds not the modes that
850 * are supported... Note drivers using the timing API
851 * will get this right anyway
852 */
Alan Cox11e29e22005-10-21 18:46:32 -0400853 }
854
Tejun Heocb95d562006-03-06 04:31:56 +0900855 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900856
857 udma_mask = 0;
858 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
859 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Alan Cox11e29e22005-10-21 18:46:32 -0400860
Tejun Heocb95d562006-03-06 04:31:56 +0900861 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
Tejun Heoc18d06f2006-02-02 00:56:10 +0900862}
863
864/**
Tejun Heo86e45b62006-03-05 15:29:09 +0900865 * ata_port_queue_task - Queue port_task
866 * @ap: The ata_port to queue port_task for
Tejun Heoc18d06f2006-02-02 00:56:10 +0900867 *
Tejun Heo86e45b62006-03-05 15:29:09 +0900868 * Schedule @fn(@data) for execution after @delay jiffies using
869 * port_task. There is one port_task per port and it's the
870 * user(low level driver)'s responsibility to make sure that only
871 * one task is active at any given time.
872 *
873 * libata core layer takes care of synchronization between
874 * port_task and EH. ata_port_queue_task() may be ignored for EH
875 * synchronization.
876 *
877 * LOCKING:
878 * Inherited from caller.
879 */
880void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
881 unsigned long delay)
882{
883 int rc;
884
Tejun Heo2e755f62006-03-05 15:29:09 +0900885 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900886 return;
887
888 PREPARE_WORK(&ap->port_task, fn, data);
889
890 if (!delay)
891 rc = queue_work(ata_wq, &ap->port_task);
892 else
893 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
894
895 /* rc == 0 means that another user is using port task */
896 WARN_ON(rc == 0);
897}
898
899/**
900 * ata_port_flush_task - Flush port_task
901 * @ap: The ata_port to flush port_task for
902 *
903 * After this function completes, port_task is guranteed not to
904 * be running or scheduled.
Tejun Heoc18d06f2006-02-02 00:56:10 +0900905 *
906 * LOCKING:
907 * Kernel thread context (may sleep)
908 */
Tejun Heo86e45b62006-03-05 15:29:09 +0900909void ata_port_flush_task(struct ata_port *ap)
Tejun Heoc18d06f2006-02-02 00:56:10 +0900910{
Tejun Heoc18d06f2006-02-02 00:56:10 +0900911 unsigned long flags;
912
913 DPRINTK("ENTER\n");
914
915 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900916 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heoc18d06f2006-02-02 00:56:10 +0900917 spin_unlock_irqrestore(&ap->host_set->lock, flags);
918
919 DPRINTK("flush #1\n");
920 flush_workqueue(ata_wq);
921
922 /*
923 * At this point, if a task is running, it's guaranteed to see
924 * the FLUSH flag; thus, it will never queue pio tasks again.
925 * Cancel and flush.
926 */
Tejun Heo86e45b62006-03-05 15:29:09 +0900927 if (!cancel_delayed_work(&ap->port_task)) {
Tejun Heoc18d06f2006-02-02 00:56:10 +0900928 DPRINTK("flush #2\n");
929 flush_workqueue(ata_wq);
930 }
931
932 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900933 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heoc18d06f2006-02-02 00:56:10 +0900934 spin_unlock_irqrestore(&ap->host_set->lock, flags);
935
936 DPRINTK("EXIT\n");
Tejun Heo95064372006-01-23 13:09:37 +0900937}
938
Tejun Heo77853bf2006-01-23 13:09:36 +0900939void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Jeff Garzik64f043d2005-11-17 10:50:01 -0500940{
Tejun Heo77853bf2006-01-23 13:09:36 +0900941 struct completion *waiting = qc->private_data;
Jeff Garzik64f043d2005-11-17 10:50:01 -0500942
Tejun Heo77853bf2006-01-23 13:09:36 +0900943 qc->ap->ops->tf_read(qc->ap, &qc->tf);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900944 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900945}
Jeff Garzik64f043d2005-11-17 10:50:01 -0500946
Tejun Heoa2a7a662005-12-13 14:48:31 +0900947/**
948 * ata_exec_internal - execute libata internal command
949 * @ap: Port to which the command is sent
950 * @dev: Device to which the command is sent
951 * @tf: Taskfile registers for the command and the result
952 * @dma_dir: Data tranfer direction of the command
953 * @buf: Data buffer of the command
954 * @buflen: Length of data buffer
955 *
956 * Executes libata internal command with timeout. @tf contains
957 * command on entry and result on return. Timeout and error
958 * conditions are reported via return value. No recovery action
959 * is taken after a command times out. It's caller's duty to
960 * clean up after timeout.
961 *
962 * LOCKING:
963 * None. Should be called with kernel context, might sleep.
964 */
965
966static unsigned
967ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
968 struct ata_taskfile *tf,
969 int dma_dir, void *buf, unsigned int buflen)
970{
971 u8 command = tf->command;
972 struct ata_queued_cmd *qc;
973 DECLARE_COMPLETION(wait);
974 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900975 unsigned int err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900976
977 spin_lock_irqsave(&ap->host_set->lock, flags);
978
979 qc = ata_qc_new_init(ap, dev);
980 BUG_ON(qc == NULL);
981
982 qc->tf = *tf;
983 qc->dma_dir = dma_dir;
984 if (dma_dir != DMA_NONE) {
985 ata_sg_init_one(qc, buf, buflen);
986 qc->nsect = buflen / ATA_SECT_SIZE;
Jeff Garzik64f043d2005-11-17 10:50:01 -0500987 }
988
Tejun Heo77853bf2006-01-23 13:09:36 +0900989 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900990 qc->complete_fn = ata_qc_complete_internal;
991
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900992 qc->err_mask = ata_qc_issue(qc);
993 if (qc->err_mask)
Tejun Heo8e436af2006-01-23 13:09:36 +0900994 ata_qc_complete(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900995
996 spin_unlock_irqrestore(&ap->host_set->lock, flags);
997
998 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
Albert Lee41ade502006-03-14 11:19:04 +0800999 ata_port_flush_task(ap);
1000
Tejun Heoa2a7a662005-12-13 14:48:31 +09001001 spin_lock_irqsave(&ap->host_set->lock, flags);
1002
1003 /* We're racing with irq here. If we lose, the
1004 * following test prevents us from completing the qc
1005 * again. If completion irq occurs after here but
1006 * before the caller cleans up, it will result in a
1007 * spurious interrupt. We can live with that.
1008 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001009 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001010 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001011 ata_qc_complete(qc);
1012 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1013 ap->id, command);
1014 }
1015
1016 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1017 }
1018
Tejun Heo77853bf2006-01-23 13:09:36 +09001019 *tf = qc->tf;
1020 err_mask = qc->err_mask;
1021
1022 ata_qc_free(qc);
1023
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001024 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1025 * Until those drivers are fixed, we detect the condition
1026 * here, fail the command with AC_ERR_SYSTEM and reenable the
1027 * port.
1028 *
1029 * Note that this doesn't change any behavior as internal
1030 * command failure results in disabling the device in the
1031 * higher layer for LLDDs without new reset/EH callbacks.
1032 *
1033 * Kill the following code as soon as those drivers are fixed.
1034 */
1035 if (ap->flags & ATA_FLAG_PORT_DISABLED) {
1036 err_mask |= AC_ERR_SYSTEM;
1037 ata_port_probe(ap);
1038 }
1039
Tejun Heo77853bf2006-01-23 13:09:36 +09001040 return err_mask;
Jeff Garzik64f043d2005-11-17 10:50:01 -05001041}
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001044 * ata_pio_need_iordy - check if iordy needed
1045 * @adev: ATA device
1046 *
1047 * Check if the current speed of the device requires IORDY. Used
1048 * by various controllers for chip configuration.
1049 */
1050
1051unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1052{
1053 int pio;
1054 int speed = adev->pio_mode - XFER_PIO_0;
1055
1056 if (speed < 2)
1057 return 0;
1058 if (speed > 2)
1059 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001060
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001061 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1062
1063 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1064 pio = adev->id[ATA_ID_EIDE_PIO];
1065 /* Is the speed faster than the drive allows non IORDY ? */
1066 if (pio) {
1067 /* This is cycle times not frequency - watch the logic! */
1068 if (pio > 240) /* PIO2 is 240nS per cycle */
1069 return 1;
1070 return 0;
1071 }
1072 }
1073 return 0;
1074}
1075
1076/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001077 * ata_dev_read_id - Read ID data from the specified device
1078 * @ap: port on which target device resides
1079 * @dev: target device
1080 * @p_class: pointer to class of the target device (may be changed)
1081 * @post_reset: is this read ID post-reset?
Tejun Heod9572b12006-03-01 16:09:35 +09001082 * @p_id: read IDENTIFY page (newly allocated)
Tejun Heo49016ac2006-02-21 02:12:11 +09001083 *
1084 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1085 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001086 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1087 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001088 *
1089 * LOCKING:
1090 * Kernel thread context (may sleep)
1091 *
1092 * RETURNS:
1093 * 0 on success, -errno otherwise.
1094 */
1095static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev,
Tejun Heod9572b12006-03-01 16:09:35 +09001096 unsigned int *p_class, int post_reset, u16 **p_id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001097{
1098 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001099 struct ata_taskfile tf;
1100 unsigned int err_mask = 0;
Tejun Heod9572b12006-03-01 16:09:35 +09001101 u16 *id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001102 const char *reason;
1103 int rc;
1104
1105 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1106
Tejun Heo49016ac2006-02-21 02:12:11 +09001107 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1108
Tejun Heod9572b12006-03-01 16:09:35 +09001109 id = kmalloc(sizeof(id[0]) * ATA_ID_WORDS, GFP_KERNEL);
1110 if (id == NULL) {
1111 rc = -ENOMEM;
1112 reason = "out of memory";
1113 goto err_out;
1114 }
1115
Tejun Heo49016ac2006-02-21 02:12:11 +09001116 retry:
1117 ata_tf_init(ap, &tf, dev->devno);
1118
1119 switch (class) {
1120 case ATA_DEV_ATA:
1121 tf.command = ATA_CMD_ID_ATA;
1122 break;
1123 case ATA_DEV_ATAPI:
1124 tf.command = ATA_CMD_ID_ATAPI;
1125 break;
1126 default:
1127 rc = -ENODEV;
1128 reason = "unsupported class";
1129 goto err_out;
1130 }
1131
1132 tf.protocol = ATA_PROT_PIO;
1133
1134 err_mask = ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
1135 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001136 if (err_mask) {
1137 rc = -EIO;
1138 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001139 goto err_out;
1140 }
1141
1142 swap_buf_le16(id, ATA_ID_WORDS);
1143
Tejun Heo49016ac2006-02-21 02:12:11 +09001144 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001145 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001146 rc = -EINVAL;
1147 reason = "device reports illegal type";
1148 goto err_out;
1149 }
1150
1151 if (post_reset && class == ATA_DEV_ATA) {
1152 /*
1153 * The exact sequence expected by certain pre-ATA4 drives is:
1154 * SRST RESET
1155 * IDENTIFY
1156 * INITIALIZE DEVICE PARAMETERS
1157 * anything else..
1158 * Some drives were very specific about that exact sequence.
1159 */
1160 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Albert Lee00b6f5e2006-03-27 16:39:18 +08001161 err_mask = ata_dev_init_params(ap, dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001162 if (err_mask) {
1163 rc = -EIO;
1164 reason = "INIT_DEV_PARAMS failed";
1165 goto err_out;
1166 }
1167
1168 /* current CHS translation info (id[53-58]) might be
1169 * changed. reread the identify device info.
1170 */
1171 post_reset = 0;
1172 goto retry;
1173 }
1174 }
1175
1176 *p_class = class;
Tejun Heod9572b12006-03-01 16:09:35 +09001177 *p_id = id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001178 return 0;
1179
1180 err_out:
1181 printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1182 ap->id, dev->devno, reason);
Tejun Heod9572b12006-03-01 16:09:35 +09001183 kfree(id);
Tejun Heo49016ac2006-02-21 02:12:11 +09001184 return rc;
1185}
1186
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001187static inline u8 ata_dev_knobble(const struct ata_port *ap,
1188 struct ata_device *dev)
1189{
1190 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
1191}
1192
Tejun Heo49016ac2006-02-21 02:12:11 +09001193/**
Tejun Heoffeae412006-03-01 16:09:35 +09001194 * ata_dev_configure - Configure the specified ATA/ATAPI device
1195 * @ap: Port on which target device resides
1196 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001197 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 *
Tejun Heoffeae412006-03-01 16:09:35 +09001199 * Configure @dev according to @dev->id. Generic and low-level
1200 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 *
1202 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001203 * Kernel thread context (may sleep)
1204 *
1205 * RETURNS:
1206 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001208static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
1209 int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Tejun Heo1148c3a2006-03-13 19:48:04 +09001211 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001212 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001213 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 if (!ata_dev_present(dev)) {
1216 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001217 ap->id, dev->devno);
1218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220
Tejun Heoffeae412006-03-01 16:09:35 +09001221 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001223 /* print device capabilities */
1224 if (print_info)
1225 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1226 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1227 ap->id, dev->devno, id[49], id[82], id[83],
1228 id[84], id[85], id[86], id[87], id[88]);
1229
Tejun Heo208a9932006-03-05 17:55:58 +09001230 /* initialize to-be-configured parameters */
1231 dev->flags = 0;
1232 dev->max_sectors = 0;
1233 dev->cdb_len = 0;
1234 dev->n_sectors = 0;
1235 dev->cylinders = 0;
1236 dev->heads = 0;
1237 dev->sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 /*
1240 * common ATA, ATAPI feature tests
1241 */
1242
Tejun Heoff8854b2006-03-06 04:31:56 +09001243 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001244 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Tejun Heo1148c3a2006-03-13 19:48:04 +09001246 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 /* ATA-specific feature tests */
1249 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001250 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001251
Tejun Heo1148c3a2006-03-13 19:48:04 +09001252 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001253 const char *lba_desc;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001254
Tejun Heo4c2d7212006-03-05 17:55:58 +09001255 lba_desc = "LBA";
1256 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001257 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001258 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001259 lba_desc = "LBA48";
1260 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001261
1262 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001263 if (print_info)
1264 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1265 "max %s, %Lu sectors: %s\n",
1266 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001267 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001268 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001269 (unsigned long long)dev->n_sectors,
1270 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001271 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001272 /* CHS */
1273
1274 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001275 dev->cylinders = id[1];
1276 dev->heads = id[3];
1277 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001278
Tejun Heo1148c3a2006-03-13 19:48:04 +09001279 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001280 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001281 dev->cylinders = id[54];
1282 dev->heads = id[55];
1283 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001284 }
1285
1286 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001287 if (print_info)
1288 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1289 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1290 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001291 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001292 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001293 (unsigned long long)dev->n_sectors,
1294 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
1296
Albert Lee07f6f7d2005-11-01 19:33:20 +08001297 if (dev->id[59] & 0x100) {
1298 dev->multi_count = dev->id[59] & 0xff;
1299 DPRINTK("ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001300 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001301 }
1302
Albert Lee13ee4622006-03-25 17:39:34 +08001303 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305
1306 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001307 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001308 char *cdb_intr_string = "";
1309
Tejun Heo1148c3a2006-03-13 19:48:04 +09001310 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1312 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001313 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 goto err_out_nosup;
1315 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001316 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Albert Lee08a556d2006-03-31 13:29:04 +08001318 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001319 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001320 cdb_intr_string = ", CDB intr";
1321 }
Albert Lee312f7da2005-09-27 17:38:03 +08001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001324 if (print_info)
Albert Lee08a556d2006-03-31 13:29:04 +08001325 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s%s\n",
1326 ap->id, dev->devno, ata_mode_string(xfer_mask),
1327 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
1329
Tejun Heo6e7846e2006-02-12 23:32:58 +09001330 ap->host->max_cmd_len = 0;
1331 for (i = 0; i < ATA_MAX_DEVICES; i++)
1332 ap->host->max_cmd_len = max_t(unsigned int,
1333 ap->host->max_cmd_len,
1334 ap->device[i].cdb_len);
1335
Brad Campbell6f2f3812005-05-12 15:07:47 -04001336 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001337 if (ata_dev_knobble(ap, dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001338 if (print_info)
1339 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1340 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001341 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001342 dev->max_sectors = ATA_MAX_SECTORS;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001343 }
1344
1345 if (ap->ops->dev_config)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001346 ap->ops->dev_config(ap, dev);
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001353 return rc;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001354}
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356/**
1357 * ata_bus_probe - Reset and probe ATA bus
1358 * @ap: Bus to probe
1359 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001360 * Master ATA bus probing function. Initiates a hardware-dependent
1361 * bus reset, then attempts to identify any devices found on
1362 * the bus.
1363 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001365 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 *
1367 * RETURNS:
1368 * Zero on success, non-zero on error.
1369 */
1370
1371static int ata_bus_probe(struct ata_port *ap)
1372{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001373 unsigned int classes[ATA_MAX_DEVICES];
1374 unsigned int i, rc, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Tejun Heo28ca5c52006-03-01 16:09:36 +09001376 ata_port_probe(ap);
1377
Tejun Heo20444702006-03-13 01:57:01 +09001378 /* reset and determine device classes */
1379 for (i = 0; i < ATA_MAX_DEVICES; i++)
1380 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001381
Tejun Heo20444702006-03-13 01:57:01 +09001382 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001383 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001384 if (rc) {
1385 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1386 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001387 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001388 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001389 ap->ops->phy_reset(ap);
1390
Tejun Heo20444702006-03-13 01:57:01 +09001391 if (!(ap->flags & ATA_FLAG_PORT_DISABLED))
1392 for (i = 0; i < ATA_MAX_DEVICES; i++)
Tejun Heo28ca5c52006-03-01 16:09:36 +09001393 classes[i] = ap->device[i].class;
Tejun Heo20444702006-03-13 01:57:01 +09001394
Tejun Heo28ca5c52006-03-01 16:09:36 +09001395 ata_port_probe(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397
Tejun Heo20444702006-03-13 01:57:01 +09001398 for (i = 0; i < ATA_MAX_DEVICES; i++)
1399 if (classes[i] == ATA_DEV_UNKNOWN)
1400 classes[i] = ATA_DEV_NONE;
1401
Tejun Heo28ca5c52006-03-01 16:09:36 +09001402 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoffeae412006-03-01 16:09:35 +09001404 struct ata_device *dev = &ap->device[i];
1405
Tejun Heo28ca5c52006-03-01 16:09:36 +09001406 dev->class = classes[i];
1407
Tejun Heoffeae412006-03-01 16:09:35 +09001408 if (!ata_dev_present(dev))
1409 continue;
1410
1411 WARN_ON(dev->id != NULL);
1412 if (ata_dev_read_id(ap, dev, &dev->class, 1, &dev->id)) {
1413 dev->class = ATA_DEV_NONE;
1414 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
Tejun Heoffeae412006-03-01 16:09:35 +09001416
Tejun Heo4c2d7212006-03-05 17:55:58 +09001417 if (ata_dev_configure(ap, dev, 1)) {
Tejun Heofcef9782006-03-24 15:25:31 +09001418 ata_dev_disable(ap, dev);
Tejun Heoffeae412006-03-01 16:09:35 +09001419 continue;
1420 }
1421
Tejun Heoffeae412006-03-01 16:09:35 +09001422 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424
Tejun Heo28ca5c52006-03-01 16:09:36 +09001425 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 goto err_out_disable;
1427
Alan Coxe35a9e02006-03-27 18:46:37 +01001428 if (ap->ops->set_mode)
1429 ap->ops->set_mode(ap);
1430 else
1431 ata_set_mode(ap);
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1434 goto err_out_disable;
1435
1436 return 0;
1437
1438err_out_disable:
1439 ap->ops->port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return -1;
1441}
1442
1443/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001444 * ata_port_probe - Mark port as enabled
1445 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001447 * Modify @ap data structure such that the system
1448 * thinks that the entire port is enabled.
1449 *
1450 * LOCKING: host_set lock, or some other form of
1451 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 */
1453
1454void ata_port_probe(struct ata_port *ap)
1455{
1456 ap->flags &= ~ATA_FLAG_PORT_DISABLED;
1457}
1458
1459/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001460 * sata_print_link_status - Print SATA link status
1461 * @ap: SATA port to printk link status about
1462 *
1463 * This function prints link speed and status of a SATA link.
1464 *
1465 * LOCKING:
1466 * None.
1467 */
1468static void sata_print_link_status(struct ata_port *ap)
1469{
1470 u32 sstatus, tmp;
1471 const char *speed;
1472
1473 if (!ap->ops->scr_read)
1474 return;
1475
1476 sstatus = scr_read(ap, SCR_STATUS);
1477
1478 if (sata_dev_present(ap)) {
1479 tmp = (sstatus >> 4) & 0xf;
1480 if (tmp & (1 << 0))
1481 speed = "1.5";
1482 else if (tmp & (1 << 1))
1483 speed = "3.0";
1484 else
1485 speed = "<unknown>";
1486 printk(KERN_INFO "ata%u: SATA link up %s Gbps (SStatus %X)\n",
1487 ap->id, speed, sstatus);
1488 } else {
1489 printk(KERN_INFO "ata%u: SATA link down (SStatus %X)\n",
1490 ap->id, sstatus);
1491 }
1492}
1493
1494/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001495 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1496 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001498 * This function issues commands to standard SATA Sxxx
1499 * PHY registers, to wake up the phy (and device), and
1500 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 *
1502 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001503 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 *
1505 */
1506void __sata_phy_reset(struct ata_port *ap)
1507{
1508 u32 sstatus;
1509 unsigned long timeout = jiffies + (HZ * 5);
1510
1511 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001512 /* issue phy wake/reset */
1513 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001514 /* Couldn't find anything in SATA I/II specs, but
1515 * AHCI-1.1 10.4.2 says at least 1 ms. */
1516 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 }
Brett Russcdcca892005-03-28 15:10:27 -05001518 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 /* wait for phy to become ready, if necessary */
1521 do {
1522 msleep(200);
1523 sstatus = scr_read(ap, SCR_STATUS);
1524 if ((sstatus & 0xf) != 1)
1525 break;
1526 } while (time_before(jiffies, timeout));
1527
Tejun Heo3be680b2005-12-19 22:35:02 +09001528 /* print link status */
1529 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001530
Tejun Heo3be680b2005-12-19 22:35:02 +09001531 /* TODO: phy layer with polling, timeouts, etc. */
1532 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001534 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1538 return;
1539
1540 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1541 ata_port_disable(ap);
1542 return;
1543 }
1544
1545 ap->cbl = ATA_CBL_SATA;
1546}
1547
1548/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001549 * sata_phy_reset - Reset SATA bus.
1550 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001552 * This function resets the SATA bus, and then probes
1553 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 *
1555 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001556 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 *
1558 */
1559void sata_phy_reset(struct ata_port *ap)
1560{
1561 __sata_phy_reset(ap);
1562 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1563 return;
1564 ata_bus_reset(ap);
1565}
1566
1567/**
Alan Coxebdfca62006-03-23 15:38:34 +00001568 * ata_dev_pair - return other device on cable
1569 * @ap: port
1570 * @adev: device
1571 *
1572 * Obtain the other device on the same cable, or if none is
1573 * present NULL is returned
1574 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001575
Alan Coxebdfca62006-03-23 15:38:34 +00001576struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev)
1577{
1578 struct ata_device *pair = &ap->device[1 - adev->devno];
1579 if (!ata_dev_present(pair))
1580 return NULL;
1581 return pair;
1582}
1583
1584/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001585 * ata_port_disable - Disable port.
1586 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001588 * Modify @ap data structure such that the system
1589 * thinks that the entire port is disabled, and should
1590 * never attempt to probe or communicate with devices
1591 * on this port.
1592 *
1593 * LOCKING: host_set lock, or some other form of
1594 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 */
1596
1597void ata_port_disable(struct ata_port *ap)
1598{
1599 ap->device[0].class = ATA_DEV_NONE;
1600 ap->device[1].class = ATA_DEV_NONE;
1601 ap->flags |= ATA_FLAG_PORT_DISABLED;
1602}
1603
Alan Cox452503f2005-10-21 19:01:32 -04001604/*
1605 * This mode timing computation functionality is ported over from
1606 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1607 */
1608/*
1609 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1610 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1611 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001612 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001613 */
1614
1615static const struct ata_timing ata_timing[] = {
1616
1617 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1618 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1619 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1620 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1621
1622 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1623 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1624 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1625
1626/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001627
Alan Cox452503f2005-10-21 19:01:32 -04001628 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1629 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1630 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001631
Alan Cox452503f2005-10-21 19:01:32 -04001632 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1633 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1634 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1635
1636/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1637 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1638 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1639
1640 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1641 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1642 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1643
1644/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1645
1646 { 0xFF }
1647};
1648
1649#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1650#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1651
1652static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1653{
1654 q->setup = EZ(t->setup * 1000, T);
1655 q->act8b = EZ(t->act8b * 1000, T);
1656 q->rec8b = EZ(t->rec8b * 1000, T);
1657 q->cyc8b = EZ(t->cyc8b * 1000, T);
1658 q->active = EZ(t->active * 1000, T);
1659 q->recover = EZ(t->recover * 1000, T);
1660 q->cycle = EZ(t->cycle * 1000, T);
1661 q->udma = EZ(t->udma * 1000, UT);
1662}
1663
1664void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1665 struct ata_timing *m, unsigned int what)
1666{
1667 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1668 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1669 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1670 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1671 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1672 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1673 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1674 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1675}
1676
1677static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1678{
1679 const struct ata_timing *t;
1680
1681 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001682 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001683 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001684 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001685}
1686
1687int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1688 struct ata_timing *t, int T, int UT)
1689{
1690 const struct ata_timing *s;
1691 struct ata_timing p;
1692
1693 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001694 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001695 */
Alan Cox452503f2005-10-21 19:01:32 -04001696
1697 if (!(s = ata_timing_find_mode(speed)))
1698 return -EINVAL;
1699
Albert Lee75b1f2f2005-11-16 17:06:18 +08001700 memcpy(t, s, sizeof(*s));
1701
Alan Cox452503f2005-10-21 19:01:32 -04001702 /*
1703 * If the drive is an EIDE drive, it can tell us it needs extended
1704 * PIO/MW_DMA cycle timing.
1705 */
1706
1707 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1708 memset(&p, 0, sizeof(p));
1709 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1710 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1711 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1712 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1713 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1714 }
1715 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1716 }
1717
1718 /*
1719 * Convert the timing to bus clock counts.
1720 */
1721
Albert Lee75b1f2f2005-11-16 17:06:18 +08001722 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001723
1724 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001725 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1726 * S.M.A.R.T * and some other commands. We have to ensure that the
1727 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001728 */
1729
1730 if (speed > XFER_PIO_4) {
1731 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1732 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1733 }
1734
1735 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001736 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001737 */
1738
1739 if (t->act8b + t->rec8b < t->cyc8b) {
1740 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1741 t->rec8b = t->cyc8b - t->act8b;
1742 }
1743
1744 if (t->active + t->recover < t->cycle) {
1745 t->active += (t->cycle - (t->active + t->recover)) / 2;
1746 t->recover = t->cycle - t->active;
1747 }
1748
1749 return 0;
1750}
1751
Tejun Heo83206a22006-03-24 15:25:31 +09001752static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Tejun Heo83206a22006-03-24 15:25:31 +09001754 unsigned int err_mask;
1755 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 if (dev->xfer_shift == ATA_SHIFT_PIO)
1758 dev->flags |= ATA_DFLAG_PIO;
1759
Tejun Heo83206a22006-03-24 15:25:31 +09001760 err_mask = ata_dev_set_xfermode(ap, dev);
1761 if (err_mask) {
1762 printk(KERN_ERR
1763 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1764 ap->id, err_mask);
1765 return -EIO;
1766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Tejun Heo83206a22006-03-24 15:25:31 +09001768 rc = ata_dev_revalidate(ap, dev, 0);
1769 if (rc) {
1770 printk(KERN_ERR
1771 "ata%u: failed to revalidate after set xfermode\n",
1772 ap->id);
1773 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Tejun Heo23e71c32006-03-06 04:31:57 +09001776 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1777 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001780 ap->id, dev->devno,
1781 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
1784
1785static int ata_host_set_pio(struct ata_port *ap)
1786{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 int i;
1788
1789 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1790 struct ata_device *dev = &ap->device[i];
Tejun Heoa6d5a512006-03-06 04:31:57 +09001791
1792 if (!ata_dev_present(dev))
1793 continue;
1794
1795 if (!dev->pio_mode) {
Alan Cox88f93a32006-03-21 16:04:12 +00001796 printk(KERN_WARNING "ata%u: no PIO support for device %d.\n", ap->id, i);
Tejun Heoa6d5a512006-03-06 04:31:57 +09001797 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09001799
1800 dev->xfer_mode = dev->pio_mode;
1801 dev->xfer_shift = ATA_SHIFT_PIO;
1802 if (ap->ops->set_piomode)
1803 ap->ops->set_piomode(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
1805
1806 return 0;
1807}
1808
Tejun Heoa6d5a512006-03-06 04:31:57 +09001809static void ata_host_set_dma(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
1811 int i;
1812
1813 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1814 struct ata_device *dev = &ap->device[i];
Tejun Heoa6d5a512006-03-06 04:31:57 +09001815
1816 if (!ata_dev_present(dev) || !dev->dma_mode)
1817 continue;
1818
1819 dev->xfer_mode = dev->dma_mode;
1820 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
1821 if (ap->ops->set_dmamode)
1822 ap->ops->set_dmamode(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824}
1825
1826/**
1827 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1828 * @ap: port on which timings will be programmed
1829 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001830 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.).
1831 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001833 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 */
1835static void ata_set_mode(struct ata_port *ap)
1836{
Alan Cox5444a6f2006-03-27 18:58:20 +01001837 int i, rc, used_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Tejun Heoa6d5a512006-03-06 04:31:57 +09001839 /* step 1: calculate xfer_mask */
1840 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1841 struct ata_device *dev = &ap->device[i];
Tejun Heoacf356b2006-03-24 14:07:50 +09001842 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09001843
1844 if (!ata_dev_present(dev))
1845 continue;
1846
Tejun Heoacf356b2006-03-24 14:07:50 +09001847 ata_dev_xfermask(ap, dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09001848
Tejun Heoacf356b2006-03-24 14:07:50 +09001849 /* TODO: let LLDD filter dev->*_mask here */
1850
1851 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
1852 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
1853 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
1854 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01001855
1856 if (dev->dma_mode)
1857 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09001858 }
1859
1860 /* step 2: always set host PIO timings */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 rc = ata_host_set_pio(ap);
1862 if (rc)
1863 goto err_out;
1864
Tejun Heoa6d5a512006-03-06 04:31:57 +09001865 /* step 3: set host DMA timings */
1866 ata_host_set_dma(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09001869 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1870 struct ata_device *dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Tejun Heo83206a22006-03-24 15:25:31 +09001872 if (!ata_dev_present(dev))
1873 continue;
1874
1875 if (ata_dev_set_mode(ap, dev))
1876 goto err_out;
1877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Alan Cox5444a6f2006-03-27 18:58:20 +01001879 /*
1880 * Record simplex status. If we selected DMA then the other
1881 * host channels are not permitted to do so.
1882 */
1883
1884 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
1885 ap->host_set->simplex_claimed = 1;
1886
1887 /*
1888 * Chip specific finalisation
1889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 if (ap->ops->post_set_mode)
1891 ap->ops->post_set_mode(ap);
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return;
1894
1895err_out:
1896 ata_port_disable(ap);
1897}
1898
1899/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001900 * ata_tf_to_host - issue ATA taskfile to host controller
1901 * @ap: port to which command is being issued
1902 * @tf: ATA taskfile register set
1903 *
1904 * Issues ATA taskfile register set to ATA host controller,
1905 * with proper synchronization with interrupt handler and
1906 * other threads.
1907 *
1908 * LOCKING:
1909 * spin_lock_irqsave(host_set lock)
1910 */
1911
1912static inline void ata_tf_to_host(struct ata_port *ap,
1913 const struct ata_taskfile *tf)
1914{
1915 ap->ops->tf_load(ap, tf);
1916 ap->ops->exec_command(ap, tf);
1917}
1918
1919/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 * ata_busy_sleep - sleep until BSY clears, or timeout
1921 * @ap: port containing status register to be polled
1922 * @tmout_pat: impatience timeout
1923 * @tmout: overall timeout
1924 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001925 * Sleep until ATA Status register bit BSY clears,
1926 * or a timeout occurs.
1927 *
1928 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 */
1930
Tejun Heo6f8b9952006-01-24 17:05:21 +09001931unsigned int ata_busy_sleep (struct ata_port *ap,
1932 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 unsigned long timer_start, timeout;
1935 u8 status;
1936
1937 status = ata_busy_wait(ap, ATA_BUSY, 300);
1938 timer_start = jiffies;
1939 timeout = timer_start + tmout_pat;
1940 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1941 msleep(50);
1942 status = ata_busy_wait(ap, ATA_BUSY, 3);
1943 }
1944
1945 if (status & ATA_BUSY)
1946 printk(KERN_WARNING "ata%u is slow to respond, "
1947 "please be patient\n", ap->id);
1948
1949 timeout = timer_start + tmout;
1950 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1951 msleep(50);
1952 status = ata_chk_status(ap);
1953 }
1954
1955 if (status & ATA_BUSY) {
1956 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
1957 ap->id, tmout / HZ);
1958 return 1;
1959 }
1960
1961 return 0;
1962}
1963
1964static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
1965{
1966 struct ata_ioports *ioaddr = &ap->ioaddr;
1967 unsigned int dev0 = devmask & (1 << 0);
1968 unsigned int dev1 = devmask & (1 << 1);
1969 unsigned long timeout;
1970
1971 /* if device 0 was found in ata_devchk, wait for its
1972 * BSY bit to clear
1973 */
1974 if (dev0)
1975 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1976
1977 /* if device 1 was found in ata_devchk, wait for
1978 * register access, then wait for BSY to clear
1979 */
1980 timeout = jiffies + ATA_TMOUT_BOOT;
1981 while (dev1) {
1982 u8 nsect, lbal;
1983
1984 ap->ops->dev_select(ap, 1);
1985 if (ap->flags & ATA_FLAG_MMIO) {
1986 nsect = readb((void __iomem *) ioaddr->nsect_addr);
1987 lbal = readb((void __iomem *) ioaddr->lbal_addr);
1988 } else {
1989 nsect = inb(ioaddr->nsect_addr);
1990 lbal = inb(ioaddr->lbal_addr);
1991 }
1992 if ((nsect == 1) && (lbal == 1))
1993 break;
1994 if (time_after(jiffies, timeout)) {
1995 dev1 = 0;
1996 break;
1997 }
1998 msleep(50); /* give drive a breather */
1999 }
2000 if (dev1)
2001 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2002
2003 /* is all this really necessary? */
2004 ap->ops->dev_select(ap, 0);
2005 if (dev1)
2006 ap->ops->dev_select(ap, 1);
2007 if (dev0)
2008 ap->ops->dev_select(ap, 0);
2009}
2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011static unsigned int ata_bus_softreset(struct ata_port *ap,
2012 unsigned int devmask)
2013{
2014 struct ata_ioports *ioaddr = &ap->ioaddr;
2015
2016 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2017
2018 /* software reset. causes dev0 to be selected */
2019 if (ap->flags & ATA_FLAG_MMIO) {
2020 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2021 udelay(20); /* FIXME: flush */
2022 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2023 udelay(20); /* FIXME: flush */
2024 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2025 } else {
2026 outb(ap->ctl, ioaddr->ctl_addr);
2027 udelay(10);
2028 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2029 udelay(10);
2030 outb(ap->ctl, ioaddr->ctl_addr);
2031 }
2032
2033 /* spec mandates ">= 2ms" before checking status.
2034 * We wait 150ms, because that was the magic delay used for
2035 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2036 * between when the ATA command register is written, and then
2037 * status is checked. Because waiting for "a while" before
2038 * checking status is fine, post SRST, we perform this magic
2039 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002040 *
2041 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 */
2043 msleep(150);
2044
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002045 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002046 * the bus shows 0xFF because the odd clown forgets the D7
2047 * pulldown resistor.
2048 */
Alan Cox09c7ad72006-03-22 15:52:40 +00002049 if (ata_check_status(ap) == 0xFF)
Tejun Heo298a41c2006-03-25 02:58:13 +09002050 return AC_ERR_OTHER;
Alan Cox09c7ad72006-03-22 15:52:40 +00002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 ata_bus_post_reset(ap, devmask);
2053
2054 return 0;
2055}
2056
2057/**
2058 * ata_bus_reset - reset host port and associated ATA channel
2059 * @ap: port to reset
2060 *
2061 * This is typically the first time we actually start issuing
2062 * commands to the ATA channel. We wait for BSY to clear, then
2063 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2064 * result. Determine what devices, if any, are on the channel
2065 * by looking at the device 0/1 error register. Look at the signature
2066 * stored in each device's taskfile registers, to determine if
2067 * the device is ATA or ATAPI.
2068 *
2069 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002070 * PCI/etc. bus probe sem.
2071 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 *
2073 * SIDE EFFECTS:
2074 * Sets ATA_FLAG_PORT_DISABLED if bus reset fails.
2075 */
2076
2077void ata_bus_reset(struct ata_port *ap)
2078{
2079 struct ata_ioports *ioaddr = &ap->ioaddr;
2080 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2081 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002082 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2085
2086 /* determine if device 0/1 are present */
2087 if (ap->flags & ATA_FLAG_SATA_RESET)
2088 dev0 = 1;
2089 else {
2090 dev0 = ata_devchk(ap, 0);
2091 if (slave_possible)
2092 dev1 = ata_devchk(ap, 1);
2093 }
2094
2095 if (dev0)
2096 devmask |= (1 << 0);
2097 if (dev1)
2098 devmask |= (1 << 1);
2099
2100 /* select device 0 again */
2101 ap->ops->dev_select(ap, 0);
2102
2103 /* issue bus reset */
2104 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002105 if (ata_bus_softreset(ap, devmask))
2106 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 /*
2109 * determine by signature whether we have ATA or ATAPI devices
2110 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002111 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002113 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 /* re-enable interrupts */
2116 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2117 ata_irq_on(ap);
2118
2119 /* is double-select really necessary? */
2120 if (ap->device[1].class != ATA_DEV_NONE)
2121 ap->ops->dev_select(ap, 1);
2122 if (ap->device[0].class != ATA_DEV_NONE)
2123 ap->ops->dev_select(ap, 0);
2124
2125 /* if no devices were detected, disable this port */
2126 if ((ap->device[0].class == ATA_DEV_NONE) &&
2127 (ap->device[1].class == ATA_DEV_NONE))
2128 goto err_out;
2129
2130 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2131 /* set up device control for ATA_FLAG_SATA_RESET */
2132 if (ap->flags & ATA_FLAG_MMIO)
2133 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2134 else
2135 outb(ap->ctl, ioaddr->ctl_addr);
2136 }
2137
2138 DPRINTK("EXIT\n");
2139 return;
2140
2141err_out:
2142 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2143 ap->ops->port_disable(ap);
2144
2145 DPRINTK("EXIT\n");
2146}
2147
Tejun Heo7a7921e2006-02-02 18:20:00 +09002148static int sata_phy_resume(struct ata_port *ap)
2149{
2150 unsigned long timeout = jiffies + (HZ * 5);
2151 u32 sstatus;
2152
2153 scr_write_flush(ap, SCR_CONTROL, 0x300);
2154
2155 /* Wait for phy to become ready, if necessary. */
2156 do {
2157 msleep(200);
2158 sstatus = scr_read(ap, SCR_STATUS);
2159 if ((sstatus & 0xf) != 1)
2160 return 0;
2161 } while (time_before(jiffies, timeout));
2162
2163 return -1;
2164}
2165
Tejun Heoc2bd5802006-01-24 17:05:22 +09002166/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002167 * ata_std_probeinit - initialize probing
2168 * @ap: port to be probed
2169 *
2170 * @ap is about to be probed. Initialize it. This function is
2171 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002172 *
2173 * NOTE!!! Do not use this function as probeinit if a low level
2174 * driver implements only hardreset. Just pass NULL as probeinit
2175 * in that case. Using this function is probably okay but doing
2176 * so makes reset sequence different from the original
2177 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002178 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002179void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002180{
Alan Cox17efc5f2006-03-27 19:01:32 +01002181 if ((ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read) {
Tejun Heo8a19ac82006-02-02 18:20:00 +09002182 sata_phy_resume(ap);
Tejun Heo3a397462006-02-10 23:58:48 +09002183 if (sata_dev_present(ap))
2184 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2185 }
Tejun Heo8a19ac82006-02-02 18:20:00 +09002186}
2187
2188/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002189 * ata_std_softreset - reset host port via ATA SRST
2190 * @ap: port to reset
2191 * @verbose: fail verbosely
2192 * @classes: resulting classes of attached devices
2193 *
2194 * Reset host port using ATA SRST. This function is to be used
2195 * as standard callback for ata_drive_*_reset() functions.
2196 *
2197 * LOCKING:
2198 * Kernel thread context (may sleep)
2199 *
2200 * RETURNS:
2201 * 0 on success, -errno otherwise.
2202 */
2203int ata_std_softreset(struct ata_port *ap, int verbose, unsigned int *classes)
2204{
2205 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2206 unsigned int devmask = 0, err_mask;
2207 u8 err;
2208
2209 DPRINTK("ENTER\n");
2210
Tejun Heo3a397462006-02-10 23:58:48 +09002211 if (ap->ops->scr_read && !sata_dev_present(ap)) {
2212 classes[0] = ATA_DEV_NONE;
2213 goto out;
2214 }
2215
Tejun Heoc2bd5802006-01-24 17:05:22 +09002216 /* determine if device 0/1 are present */
2217 if (ata_devchk(ap, 0))
2218 devmask |= (1 << 0);
2219 if (slave_possible && ata_devchk(ap, 1))
2220 devmask |= (1 << 1);
2221
Tejun Heoc2bd5802006-01-24 17:05:22 +09002222 /* select device 0 again */
2223 ap->ops->dev_select(ap, 0);
2224
2225 /* issue bus reset */
2226 DPRINTK("about to softreset, devmask=%x\n", devmask);
2227 err_mask = ata_bus_softreset(ap, devmask);
2228 if (err_mask) {
2229 if (verbose)
2230 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2231 ap->id, err_mask);
2232 else
2233 DPRINTK("EXIT, softreset failed (err_mask=0x%x)\n",
2234 err_mask);
2235 return -EIO;
2236 }
2237
2238 /* determine by signature whether we have ATA or ATAPI devices */
2239 classes[0] = ata_dev_try_classify(ap, 0, &err);
2240 if (slave_possible && err != 0x81)
2241 classes[1] = ata_dev_try_classify(ap, 1, &err);
2242
Tejun Heo3a397462006-02-10 23:58:48 +09002243 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002244 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2245 return 0;
2246}
2247
2248/**
2249 * sata_std_hardreset - reset host port via SATA phy reset
2250 * @ap: port to reset
2251 * @verbose: fail verbosely
2252 * @class: resulting class of attached device
2253 *
2254 * SATA phy-reset host port using DET bits of SControl register.
2255 * This function is to be used as standard callback for
2256 * ata_drive_*_reset().
2257 *
2258 * LOCKING:
2259 * Kernel thread context (may sleep)
2260 *
2261 * RETURNS:
2262 * 0 on success, -errno otherwise.
2263 */
2264int sata_std_hardreset(struct ata_port *ap, int verbose, unsigned int *class)
2265{
Tejun Heoc2bd5802006-01-24 17:05:22 +09002266 DPRINTK("ENTER\n");
2267
2268 /* Issue phy wake/reset */
2269 scr_write_flush(ap, SCR_CONTROL, 0x301);
2270
2271 /*
2272 * Couldn't find anything in SATA I/II specs, but AHCI-1.1
2273 * 10.4.2 says at least 1 ms.
2274 */
2275 msleep(1);
2276
Tejun Heo7a7921e2006-02-02 18:20:00 +09002277 /* Bring phy back */
2278 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002279
Tejun Heoc2bd5802006-01-24 17:05:22 +09002280 /* TODO: phy layer with polling, timeouts, etc. */
2281 if (!sata_dev_present(ap)) {
2282 *class = ATA_DEV_NONE;
2283 DPRINTK("EXIT, link offline\n");
2284 return 0;
2285 }
2286
2287 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2288 if (verbose)
2289 printk(KERN_ERR "ata%u: COMRESET failed "
2290 "(device not ready)\n", ap->id);
2291 else
2292 DPRINTK("EXIT, device not ready\n");
2293 return -EIO;
2294 }
2295
Tejun Heo3a397462006-02-10 23:58:48 +09002296 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2297
Tejun Heoc2bd5802006-01-24 17:05:22 +09002298 *class = ata_dev_try_classify(ap, 0, NULL);
2299
2300 DPRINTK("EXIT, class=%u\n", *class);
2301 return 0;
2302}
2303
2304/**
2305 * ata_std_postreset - standard postreset callback
2306 * @ap: the target ata_port
2307 * @classes: classes of attached devices
2308 *
2309 * This function is invoked after a successful reset. Note that
2310 * the device might have been reset more than once using
2311 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002312 *
2313 * This function is to be used as standard callback for
2314 * ata_drive_*_reset().
2315 *
2316 * LOCKING:
2317 * Kernel thread context (may sleep)
2318 */
2319void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2320{
2321 DPRINTK("ENTER\n");
2322
Tejun Heo56497bd2006-02-15 15:01:42 +09002323 /* set cable type if it isn't already set */
Tejun Heoc2bd5802006-01-24 17:05:22 +09002324 if (ap->cbl == ATA_CBL_NONE && ap->flags & ATA_FLAG_SATA)
2325 ap->cbl = ATA_CBL_SATA;
2326
2327 /* print link status */
2328 if (ap->cbl == ATA_CBL_SATA)
2329 sata_print_link_status(ap);
2330
Tejun Heo3a397462006-02-10 23:58:48 +09002331 /* re-enable interrupts */
2332 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2333 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002334
2335 /* is double-select really necessary? */
2336 if (classes[0] != ATA_DEV_NONE)
2337 ap->ops->dev_select(ap, 1);
2338 if (classes[1] != ATA_DEV_NONE)
2339 ap->ops->dev_select(ap, 0);
2340
Tejun Heo3a397462006-02-10 23:58:48 +09002341 /* bail out if no device is present */
2342 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2343 DPRINTK("EXIT, no device\n");
2344 return;
2345 }
2346
2347 /* set up device control */
2348 if (ap->ioaddr.ctl_addr) {
2349 if (ap->flags & ATA_FLAG_MMIO)
2350 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2351 else
2352 outb(ap->ctl, ap->ioaddr.ctl_addr);
2353 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002354
2355 DPRINTK("EXIT\n");
2356}
2357
2358/**
2359 * ata_std_probe_reset - standard probe reset method
2360 * @ap: prot to perform probe-reset
2361 * @classes: resulting classes of attached devices
2362 *
2363 * The stock off-the-shelf ->probe_reset method.
2364 *
2365 * LOCKING:
2366 * Kernel thread context (may sleep)
2367 *
2368 * RETURNS:
2369 * 0 on success, -errno otherwise.
2370 */
2371int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2372{
2373 ata_reset_fn_t hardreset;
2374
2375 hardreset = NULL;
Tejun Heob911fc32006-02-02 18:20:00 +09002376 if (ap->flags & ATA_FLAG_SATA && ap->ops->scr_read)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002377 hardreset = sata_std_hardreset;
2378
Tejun Heo8a19ac82006-02-02 18:20:00 +09002379 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002380 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002381 ata_std_postreset, classes);
2382}
2383
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002384static int do_probe_reset(struct ata_port *ap, ata_reset_fn_t reset,
2385 ata_postreset_fn_t postreset,
2386 unsigned int *classes)
2387{
2388 int i, rc;
2389
2390 for (i = 0; i < ATA_MAX_DEVICES; i++)
2391 classes[i] = ATA_DEV_UNKNOWN;
2392
2393 rc = reset(ap, 0, classes);
2394 if (rc)
2395 return rc;
2396
2397 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2398 * is complete and convert all ATA_DEV_UNKNOWN to
2399 * ATA_DEV_NONE.
2400 */
2401 for (i = 0; i < ATA_MAX_DEVICES; i++)
2402 if (classes[i] != ATA_DEV_UNKNOWN)
2403 break;
2404
2405 if (i < ATA_MAX_DEVICES)
2406 for (i = 0; i < ATA_MAX_DEVICES; i++)
2407 if (classes[i] == ATA_DEV_UNKNOWN)
2408 classes[i] = ATA_DEV_NONE;
2409
2410 if (postreset)
2411 postreset(ap, classes);
2412
2413 return classes[0] != ATA_DEV_UNKNOWN ? 0 : -ENODEV;
2414}
2415
2416/**
2417 * ata_drive_probe_reset - Perform probe reset with given methods
2418 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002419 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002420 * @softreset: softreset method (can be NULL)
2421 * @hardreset: hardreset method (can be NULL)
2422 * @postreset: postreset method (can be NULL)
2423 * @classes: resulting classes of attached devices
2424 *
2425 * Reset the specified port and classify attached devices using
2426 * given methods. This function prefers softreset but tries all
2427 * possible reset sequences to reset and classify devices. This
2428 * function is intended to be used for constructing ->probe_reset
2429 * callback by low level drivers.
2430 *
2431 * Reset methods should follow the following rules.
2432 *
2433 * - Return 0 on sucess, -errno on failure.
2434 * - If classification is supported, fill classes[] with
2435 * recognized class codes.
2436 * - If classification is not supported, leave classes[] alone.
2437 * - If verbose is non-zero, print error message on failure;
2438 * otherwise, shut up.
2439 *
2440 * LOCKING:
2441 * Kernel thread context (may sleep)
2442 *
2443 * RETURNS:
2444 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2445 * if classification fails, and any error code from reset
2446 * methods.
2447 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002448int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002449 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2450 ata_postreset_fn_t postreset, unsigned int *classes)
2451{
2452 int rc = -EINVAL;
2453
Tejun Heo7944ea92006-02-02 18:20:00 +09002454 if (probeinit)
2455 probeinit(ap);
2456
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002457 if (softreset) {
2458 rc = do_probe_reset(ap, softreset, postreset, classes);
2459 if (rc == 0)
2460 return 0;
2461 }
2462
2463 if (!hardreset)
2464 return rc;
2465
2466 rc = do_probe_reset(ap, hardreset, postreset, classes);
2467 if (rc == 0 || rc != -ENODEV)
2468 return rc;
2469
2470 if (softreset)
2471 rc = do_probe_reset(ap, softreset, postreset, classes);
2472
2473 return rc;
2474}
2475
Tejun Heo623a3122006-03-05 17:55:58 +09002476/**
2477 * ata_dev_same_device - Determine whether new ID matches configured device
2478 * @ap: port on which the device to compare against resides
2479 * @dev: device to compare against
2480 * @new_class: class of the new device
2481 * @new_id: IDENTIFY page of the new device
2482 *
2483 * Compare @new_class and @new_id against @dev and determine
2484 * whether @dev is the device indicated by @new_class and
2485 * @new_id.
2486 *
2487 * LOCKING:
2488 * None.
2489 *
2490 * RETURNS:
2491 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2492 */
2493static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2494 unsigned int new_class, const u16 *new_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495{
Tejun Heo623a3122006-03-05 17:55:58 +09002496 const u16 *old_id = dev->id;
2497 unsigned char model[2][41], serial[2][21];
2498 u64 new_n_sectors;
2499
2500 if (dev->class != new_class) {
2501 printk(KERN_INFO
2502 "ata%u: dev %u class mismatch %d != %d\n",
2503 ap->id, dev->devno, dev->class, new_class);
2504 return 0;
2505 }
2506
2507 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2508 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2509 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2510 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2511 new_n_sectors = ata_id_n_sectors(new_id);
2512
2513 if (strcmp(model[0], model[1])) {
2514 printk(KERN_INFO
2515 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2516 ap->id, dev->devno, model[0], model[1]);
2517 return 0;
2518 }
2519
2520 if (strcmp(serial[0], serial[1])) {
2521 printk(KERN_INFO
2522 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2523 ap->id, dev->devno, serial[0], serial[1]);
2524 return 0;
2525 }
2526
2527 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2528 printk(KERN_INFO
2529 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2530 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2531 (unsigned long long)new_n_sectors);
2532 return 0;
2533 }
2534
2535 return 1;
2536}
2537
2538/**
2539 * ata_dev_revalidate - Revalidate ATA device
2540 * @ap: port on which the device to revalidate resides
2541 * @dev: device to revalidate
2542 * @post_reset: is this revalidation after reset?
2543 *
2544 * Re-read IDENTIFY page and make sure @dev is still attached to
2545 * the port.
2546 *
2547 * LOCKING:
2548 * Kernel thread context (may sleep)
2549 *
2550 * RETURNS:
2551 * 0 on success, negative errno otherwise
2552 */
2553int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2554 int post_reset)
2555{
2556 unsigned int class;
2557 u16 *id;
2558 int rc;
2559
2560 if (!ata_dev_present(dev))
2561 return -ENODEV;
2562
2563 class = dev->class;
2564 id = NULL;
2565
2566 /* allocate & read ID data */
2567 rc = ata_dev_read_id(ap, dev, &class, post_reset, &id);
2568 if (rc)
2569 goto fail;
2570
2571 /* is the device still there? */
2572 if (!ata_dev_same_device(ap, dev, class, id)) {
2573 rc = -ENODEV;
2574 goto fail;
2575 }
2576
2577 kfree(dev->id);
2578 dev->id = id;
2579
2580 /* configure device according to the new ID */
2581 return ata_dev_configure(ap, dev, 0);
2582
2583 fail:
2584 printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2585 ap->id, dev->devno, rc);
2586 kfree(id);
2587 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588}
2589
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002590static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002591 "WDC AC11000H", NULL,
2592 "WDC AC22100H", NULL,
2593 "WDC AC32500H", NULL,
2594 "WDC AC33100H", NULL,
2595 "WDC AC31600H", NULL,
2596 "WDC AC32100H", "24.09P07",
2597 "WDC AC23200L", "21.10N21",
2598 "Compaq CRD-8241B", NULL,
2599 "CRD-8400B", NULL,
2600 "CRD-8480B", NULL,
2601 "CRD-8482B", NULL,
2602 "CRD-84", NULL,
2603 "SanDisk SDP3B", NULL,
2604 "SanDisk SDP3B-64", NULL,
2605 "SANYO CD-ROM CRD", NULL,
2606 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002607 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002608 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002609 "Toshiba CD-ROM XM-6202B", NULL,
2610 "TOSHIBA CD-ROM XM-1702BC", NULL,
2611 "CD-532E-A", NULL,
2612 "E-IDE CD-ROM CR-840", NULL,
2613 "CD-ROM Drive/F5A", NULL,
2614 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002615 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002616 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002617 "SanDisk SDP3B-64", NULL,
2618 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2619 "_NEC DV5800A", NULL,
2620 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002622
Alan Coxf4b15fe2006-03-22 15:54:04 +00002623static int ata_strim(char *s, size_t len)
2624{
2625 len = strnlen(s, len);
2626
2627 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2628 while ((len > 0) && (s[len - 1] == ' ')) {
2629 len--;
2630 s[len] = 0;
2631 }
2632 return len;
2633}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Jeff Garzik057ace52005-10-22 14:27:05 -04002635static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002637 unsigned char model_num[40];
2638 unsigned char model_rev[16];
2639 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 int i;
2641
Alan Coxf4b15fe2006-03-22 15:54:04 +00002642 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2643 sizeof(model_num));
2644 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2645 sizeof(model_rev));
2646 nlen = ata_strim(model_num, sizeof(model_num));
2647 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Alan Coxf4b15fe2006-03-22 15:54:04 +00002649 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2650 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2651 if (ata_dma_blacklist[i+1] == NULL)
2652 return 1;
2653 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2654 return 1;
2655 }
2656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 return 0;
2658}
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09002661 * ata_dev_xfermask - Compute supported xfermask of the given device
2662 * @ap: Port on which the device to compute xfermask for resides
2663 * @dev: Device to compute xfermask for
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002665 * Compute supported xfermask of @dev and store it in
2666 * dev->*_mask. This function is responsible for applying all
2667 * known limits including host controller limits, device
2668 * blacklist, etc...
Jeff Garzik0cba6322005-05-30 19:49:12 -04002669 *
Tejun Heo600511e2006-03-25 11:14:07 +09002670 * FIXME: The current implementation limits all transfer modes to
2671 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002672 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002673 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 * LOCKING:
Tejun Heoa6d5a512006-03-06 04:31:57 +09002675 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 */
Tejun Heoacf356b2006-03-24 14:07:50 +09002677static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
Alan Cox5444a6f2006-03-27 18:58:20 +01002679 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002680 unsigned long xfer_mask;
2681 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Tejun Heoa6d5a512006-03-06 04:31:57 +09002683 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
2684 ap->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Alan Cox5444a6f2006-03-27 18:58:20 +01002686 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002687 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2688 struct ata_device *d = &ap->device[i];
2689 if (!ata_dev_present(d))
2690 continue;
Tejun Heoacf356b2006-03-24 14:07:50 +09002691 xfer_mask &= ata_pack_xfermask(d->pio_mask, d->mwdma_mask,
2692 d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002693 xfer_mask &= ata_id_xfermask(d->id);
2694 if (ata_dma_blacklisted(d))
2695 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Alan Cox5444a6f2006-03-27 18:58:20 +01002696 /* Apply cable rule here. Don't apply it early because when
2697 we handle hot plug the cable type can itself change */
2698 if (ap->cbl == ATA_CBL_PATA40)
2699 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 }
2701
Tejun Heoa6d5a512006-03-06 04:31:57 +09002702 if (ata_dma_blacklisted(dev))
2703 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2704 "disabling DMA\n", ap->id, dev->devno);
2705
Alan Cox5444a6f2006-03-27 18:58:20 +01002706 if (hs->flags & ATA_HOST_SIMPLEX) {
2707 if (hs->simplex_claimed)
2708 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2709 }
2710 if (ap->ops->mode_filter)
2711 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2712
Tejun Heoacf356b2006-03-24 14:07:50 +09002713 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2714 &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715}
2716
2717/**
2718 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2719 * @ap: Port associated with device @dev
2720 * @dev: Device to which command will be sent
2721 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002722 * Issue SET FEATURES - XFER MODE command to device @dev
2723 * on port @ap.
2724 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002726 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002727 *
2728 * RETURNS:
2729 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 */
2731
Tejun Heo83206a22006-03-24 15:25:31 +09002732static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2733 struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734{
Tejun Heoa0123702005-12-13 14:49:31 +09002735 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002736 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738 /* set up set-features taskfile */
2739 DPRINTK("set features - xfer mode\n");
2740
Tejun Heoa0123702005-12-13 14:49:31 +09002741 ata_tf_init(ap, &tf, dev->devno);
2742 tf.command = ATA_CMD_SET_FEATURES;
2743 tf.feature = SETFEATURES_XFER;
2744 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2745 tf.protocol = ATA_PROT_NODATA;
2746 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Tejun Heo83206a22006-03-24 15:25:31 +09002748 err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
Tejun Heo83206a22006-03-24 15:25:31 +09002750 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2751 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752}
2753
2754/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04002755 * ata_dev_init_params - Issue INIT DEV PARAMS command
2756 * @ap: Port associated with device @dev
2757 * @dev: Device to which command will be sent
2758 *
2759 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09002760 * Kernel thread context (may sleep)
2761 *
2762 * RETURNS:
2763 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04002764 */
2765
Tejun Heo6aff8f12006-02-15 18:24:09 +09002766static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +08002767 struct ata_device *dev,
2768 u16 heads,
2769 u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04002770{
Tejun Heoa0123702005-12-13 14:49:31 +09002771 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09002772 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002773
2774 /* Number of sectors per track 1-255. Number of heads 1-16 */
2775 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08002776 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002777
2778 /* set up init dev params taskfile */
2779 DPRINTK("init dev params \n");
2780
Tejun Heoa0123702005-12-13 14:49:31 +09002781 ata_tf_init(ap, &tf, dev->devno);
2782 tf.command = ATA_CMD_INIT_DEV_PARAMS;
2783 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2784 tf.protocol = ATA_PROT_NODATA;
2785 tf.nsect = sectors;
2786 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04002787
Tejun Heo6aff8f12006-02-15 18:24:09 +09002788 err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04002789
Tejun Heo6aff8f12006-02-15 18:24:09 +09002790 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2791 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002792}
2793
2794/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002795 * ata_sg_clean - Unmap DMA memory associated with command
2796 * @qc: Command containing DMA memory to be released
2797 *
2798 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 *
2800 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002801 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 */
2803
2804static void ata_sg_clean(struct ata_queued_cmd *qc)
2805{
2806 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002807 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002809 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Tejun Heoa4631472006-02-11 19:11:13 +09002811 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
2812 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
2814 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05002815 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002817 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002819 /* if we padded the buffer out to 32-bit bound, and data
2820 * xfer direction is from-device, we must copy from the
2821 * pad buffer back into the supplied buffer
2822 */
2823 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
2824 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2825
2826 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05002827 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06002828 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002829 /* restore last sg */
2830 sg[qc->orig_n_elem - 1].length += qc->pad_len;
2831 if (pad_buf) {
2832 struct scatterlist *psg = &qc->pad_sgent;
2833 void *addr = kmap_atomic(psg->page, KM_IRQ0);
2834 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05002835 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002836 }
2837 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09002838 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06002839 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05002840 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
2841 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002842 /* restore sg */
2843 sg->length += qc->pad_len;
2844 if (pad_buf)
2845 memcpy(qc->buf_virt + sg->length - qc->pad_len,
2846 pad_buf, qc->pad_len);
2847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002850 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851}
2852
2853/**
2854 * ata_fill_sg - Fill PCI IDE PRD table
2855 * @qc: Metadata associated with taskfile to be transferred
2856 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002857 * Fill PCI IDE PRD (scatter-gather) table with segments
2858 * associated with the current disk command.
2859 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04002861 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 *
2863 */
2864static void ata_fill_sg(struct ata_queued_cmd *qc)
2865{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002867 struct scatterlist *sg;
2868 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Tejun Heoa4631472006-02-11 19:11:13 +09002870 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05002871 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002874 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 u32 addr, offset;
2876 u32 sg_len, len;
2877
2878 /* determine if physical DMA addr spans 64K boundary.
2879 * Note h/w doesn't support 64-bit, so we unconditionally
2880 * truncate dma_addr_t to u32.
2881 */
2882 addr = (u32) sg_dma_address(sg);
2883 sg_len = sg_dma_len(sg);
2884
2885 while (sg_len) {
2886 offset = addr & 0xffff;
2887 len = sg_len;
2888 if ((offset + sg_len) > 0x10000)
2889 len = 0x10000 - offset;
2890
2891 ap->prd[idx].addr = cpu_to_le32(addr);
2892 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
2893 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
2894
2895 idx++;
2896 sg_len -= len;
2897 addr += len;
2898 }
2899 }
2900
2901 if (idx)
2902 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
2903}
2904/**
2905 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
2906 * @qc: Metadata associated with taskfile to check
2907 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002908 * Allow low-level driver to filter ATA PACKET commands, returning
2909 * a status indicating whether or not it is OK to use DMA for the
2910 * supplied PACKET command.
2911 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002913 * spin_lock_irqsave(host_set lock)
2914 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 * RETURNS: 0 when ATAPI DMA can be used
2916 * nonzero otherwise
2917 */
2918int ata_check_atapi_dma(struct ata_queued_cmd *qc)
2919{
2920 struct ata_port *ap = qc->ap;
2921 int rc = 0; /* Assume ATAPI DMA is OK by default */
2922
2923 if (ap->ops->check_atapi_dma)
2924 rc = ap->ops->check_atapi_dma(qc);
2925
Albert Leec2bbc552006-03-25 17:56:55 +08002926 /* We don't support polling DMA.
2927 * Use PIO if the LLDD handles only interrupts in
2928 * the HSM_ST_LAST state and the ATAPI device
2929 * generates CDB interrupts.
2930 */
2931 if ((ap->flags & ATA_FLAG_PIO_POLLING) &&
2932 (qc->dev->flags & ATA_DFLAG_CDB_INTR))
2933 rc = 1;
2934
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 return rc;
2936}
2937/**
2938 * ata_qc_prep - Prepare taskfile for submission
2939 * @qc: Metadata associated with taskfile to be prepared
2940 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002941 * Prepare ATA taskfile for submission.
2942 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 * LOCKING:
2944 * spin_lock_irqsave(host_set lock)
2945 */
2946void ata_qc_prep(struct ata_queued_cmd *qc)
2947{
2948 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
2949 return;
2950
2951 ata_fill_sg(qc);
2952}
2953
Brian Kinge46834c2006-03-17 17:04:03 -06002954void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
2955
Jeff Garzik0cba6322005-05-30 19:49:12 -04002956/**
2957 * ata_sg_init_one - Associate command with memory buffer
2958 * @qc: Command to be associated
2959 * @buf: Memory buffer
2960 * @buflen: Length of memory buffer, in bytes.
2961 *
2962 * Initialize the data-related elements of queued_cmd @qc
2963 * to point to a single memory buffer, @buf of byte length @buflen.
2964 *
2965 * LOCKING:
2966 * spin_lock_irqsave(host_set lock)
2967 */
2968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
2970{
2971 struct scatterlist *sg;
2972
2973 qc->flags |= ATA_QCFLAG_SINGLE;
2974
2975 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002976 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002978 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 qc->buf_virt = buf;
2980
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002981 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05002982 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983}
2984
Jeff Garzik0cba6322005-05-30 19:49:12 -04002985/**
2986 * ata_sg_init - Associate command with scatter-gather table.
2987 * @qc: Command to be associated
2988 * @sg: Scatter-gather table.
2989 * @n_elem: Number of elements in s/g table.
2990 *
2991 * Initialize the data-related elements of queued_cmd @qc
2992 * to point to a scatter-gather table @sg, containing @n_elem
2993 * elements.
2994 *
2995 * LOCKING:
2996 * spin_lock_irqsave(host_set lock)
2997 */
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3000 unsigned int n_elem)
3001{
3002 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003003 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003005 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006}
3007
3008/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003009 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3010 * @qc: Command with memory buffer to be mapped.
3011 *
3012 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 *
3014 * LOCKING:
3015 * spin_lock_irqsave(host_set lock)
3016 *
3017 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003018 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 */
3020
3021static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3022{
3023 struct ata_port *ap = qc->ap;
3024 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003025 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003027 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003029 /* we must lengthen transfers to end on a 32-bit boundary */
3030 qc->pad_len = sg->length & 3;
3031 if (qc->pad_len) {
3032 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3033 struct scatterlist *psg = &qc->pad_sgent;
3034
Tejun Heoa4631472006-02-11 19:11:13 +09003035 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003036
3037 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3038
3039 if (qc->tf.flags & ATA_TFLAG_WRITE)
3040 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3041 qc->pad_len);
3042
3043 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3044 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3045 /* trim sg */
3046 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003047 if (sg->length == 0)
3048 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003049
3050 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3051 sg->length, qc->pad_len);
3052 }
3053
Tejun Heo2e242fa2006-02-20 23:48:38 +09003054 if (trim_sg) {
3055 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003056 goto skip_map;
3057 }
3058
Brian King2f1f6102006-03-23 17:30:15 -06003059 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003060 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003061 if (dma_mapping_error(dma_address)) {
3062 /* restore sg */
3063 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
3067 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003068 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Tejun Heo2e242fa2006-02-20 23:48:38 +09003070skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3072 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3073
3074 return 0;
3075}
3076
3077/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003078 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3079 * @qc: Command with scatter-gather table to be mapped.
3080 *
3081 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 *
3083 * LOCKING:
3084 * spin_lock_irqsave(host_set lock)
3085 *
3086 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003087 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 *
3089 */
3090
3091static int ata_sg_setup(struct ata_queued_cmd *qc)
3092{
3093 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003094 struct scatterlist *sg = qc->__sg;
3095 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003096 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
3098 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003099 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003101 /* we must lengthen transfers to end on a 32-bit boundary */
3102 qc->pad_len = lsg->length & 3;
3103 if (qc->pad_len) {
3104 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3105 struct scatterlist *psg = &qc->pad_sgent;
3106 unsigned int offset;
3107
Tejun Heoa4631472006-02-11 19:11:13 +09003108 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003109
3110 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3111
3112 /*
3113 * psg->page/offset are used to copy to-be-written
3114 * data in this function or read data in ata_sg_clean.
3115 */
3116 offset = lsg->offset + lsg->length - qc->pad_len;
3117 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3118 psg->offset = offset_in_page(offset);
3119
3120 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3121 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3122 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003123 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003124 }
3125
3126 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3127 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3128 /* trim last sg */
3129 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003130 if (lsg->length == 0)
3131 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003132
3133 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3134 qc->n_elem - 1, lsg->length, qc->pad_len);
3135 }
3136
Jeff Garzike1410f22005-11-14 14:06:26 -05003137 pre_n_elem = qc->n_elem;
3138 if (trim_sg && pre_n_elem)
3139 pre_n_elem--;
3140
3141 if (!pre_n_elem) {
3142 n_elem = 0;
3143 goto skip_map;
3144 }
3145
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003147 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003148 if (n_elem < 1) {
3149 /* restore last sg */
3150 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154 DPRINTK("%d sg elements mapped\n", n_elem);
3155
Jeff Garzike1410f22005-11-14 14:06:26 -05003156skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 qc->n_elem = n_elem;
3158
3159 return 0;
3160}
3161
3162/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003163 * ata_poll_qc_complete - turn irq back on and finish qc
3164 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003165 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003166 *
3167 * LOCKING:
3168 * None. (grabs host lock)
3169 */
3170
Albert Leea22e2eb2005-12-05 15:38:02 +08003171void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003172{
3173 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003174 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003175
Jeff Garzikb8f61532005-08-25 22:01:20 -04003176 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003177 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003178 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003179 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003180}
3181
3182/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003183 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003184 * @buf: Buffer to swap
3185 * @buf_words: Number of 16-bit words in buffer.
3186 *
3187 * Swap halves of 16-bit words if needed to convert from
3188 * little-endian byte order to native cpu byte order, or
3189 * vice-versa.
3190 *
3191 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003192 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003193 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194void swap_buf_le16(u16 *buf, unsigned int buf_words)
3195{
3196#ifdef __BIG_ENDIAN
3197 unsigned int i;
3198
3199 for (i = 0; i < buf_words; i++)
3200 buf[i] = le16_to_cpu(buf[i]);
3201#endif /* __BIG_ENDIAN */
3202}
3203
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003204/**
3205 * ata_mmio_data_xfer - Transfer data by MMIO
3206 * @ap: port to read/write
3207 * @buf: data buffer
3208 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003209 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003210 *
3211 * Transfer data from/to the device data register by MMIO.
3212 *
3213 * LOCKING:
3214 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003215 */
3216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3218 unsigned int buflen, int write_data)
3219{
3220 unsigned int i;
3221 unsigned int words = buflen >> 1;
3222 u16 *buf16 = (u16 *) buf;
3223 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3224
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003225 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 if (write_data) {
3227 for (i = 0; i < words; i++)
3228 writew(le16_to_cpu(buf16[i]), mmio);
3229 } else {
3230 for (i = 0; i < words; i++)
3231 buf16[i] = cpu_to_le16(readw(mmio));
3232 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003233
3234 /* Transfer trailing 1 byte, if any. */
3235 if (unlikely(buflen & 0x01)) {
3236 u16 align_buf[1] = { 0 };
3237 unsigned char *trailing_buf = buf + buflen - 1;
3238
3239 if (write_data) {
3240 memcpy(align_buf, trailing_buf, 1);
3241 writew(le16_to_cpu(align_buf[0]), mmio);
3242 } else {
3243 align_buf[0] = cpu_to_le16(readw(mmio));
3244 memcpy(trailing_buf, align_buf, 1);
3245 }
3246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247}
3248
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003249/**
3250 * ata_pio_data_xfer - Transfer data by PIO
3251 * @ap: port to read/write
3252 * @buf: data buffer
3253 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003254 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003255 *
3256 * Transfer data from/to the device data register by PIO.
3257 *
3258 * LOCKING:
3259 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003260 */
3261
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3263 unsigned int buflen, int write_data)
3264{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003265 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003267 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003269 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003271 insw(ap->ioaddr.data_addr, buf, words);
3272
3273 /* Transfer trailing 1 byte, if any. */
3274 if (unlikely(buflen & 0x01)) {
3275 u16 align_buf[1] = { 0 };
3276 unsigned char *trailing_buf = buf + buflen - 1;
3277
3278 if (write_data) {
3279 memcpy(align_buf, trailing_buf, 1);
3280 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3281 } else {
3282 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3283 memcpy(trailing_buf, align_buf, 1);
3284 }
3285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286}
3287
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003288/**
3289 * ata_data_xfer - Transfer data from/to the data register.
3290 * @ap: port to read/write
3291 * @buf: data buffer
3292 * @buflen: buffer length
3293 * @do_write: read/write
3294 *
3295 * Transfer data from/to the device data register.
3296 *
3297 * LOCKING:
3298 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003299 */
3300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3302 unsigned int buflen, int do_write)
3303{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003304 /* Make the crap hardware pay the costs not the good stuff */
3305 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3306 unsigned long flags;
3307 local_irq_save(flags);
3308 if (ap->flags & ATA_FLAG_MMIO)
3309 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3310 else
3311 ata_pio_data_xfer(ap, buf, buflen, do_write);
3312 local_irq_restore(flags);
3313 } else {
3314 if (ap->flags & ATA_FLAG_MMIO)
3315 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3316 else
3317 ata_pio_data_xfer(ap, buf, buflen, do_write);
3318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319}
3320
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003321/**
3322 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3323 * @qc: Command on going
3324 *
3325 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3326 *
3327 * LOCKING:
3328 * Inherited from caller.
3329 */
3330
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331static void ata_pio_sector(struct ata_queued_cmd *qc)
3332{
3333 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003334 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 struct ata_port *ap = qc->ap;
3336 struct page *page;
3337 unsigned int offset;
3338 unsigned char *buf;
3339
3340 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003341 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
3343 page = sg[qc->cursg].page;
3344 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3345
3346 /* get the current page and offset */
3347 page = nth_page(page, (offset >> PAGE_SHIFT));
3348 offset %= PAGE_SIZE;
3349
Albert Lee7282aa42005-10-09 09:46:07 -04003350 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3351
Albert Lee91b8b312005-10-09 09:48:44 -04003352 if (PageHighMem(page)) {
3353 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003354
Albert Lee91b8b312005-10-09 09:48:44 -04003355 local_irq_save(flags);
3356 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003357
Albert Lee91b8b312005-10-09 09:48:44 -04003358 /* do the actual data transfer */
3359 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3360
3361 kunmap_atomic(buf, KM_IRQ0);
3362 local_irq_restore(flags);
3363 } else {
3364 buf = page_address(page);
3365 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3366 }
Albert Lee7282aa42005-10-09 09:46:07 -04003367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 qc->cursect++;
3369 qc->cursg_ofs++;
3370
Albert Lee32529e02005-05-26 03:49:42 -04003371 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 qc->cursg++;
3373 qc->cursg_ofs = 0;
3374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375}
3376
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003377/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003378 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3379 * @qc: Command on going
3380 *
3381 * Transfer one or many ATA_SECT_SIZE of data from/to the
3382 * ATA device for the DRQ request.
3383 *
3384 * LOCKING:
3385 * Inherited from caller.
3386 */
3387
3388static void ata_pio_sectors(struct ata_queued_cmd *qc)
3389{
3390 if (is_multi_taskfile(&qc->tf)) {
3391 /* READ/WRITE MULTIPLE */
3392 unsigned int nsect;
3393
Jeff Garzik587005d2006-02-11 18:17:32 -05003394 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003395
3396 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3397 while (nsect--)
3398 ata_pio_sector(qc);
3399 } else
3400 ata_pio_sector(qc);
3401}
3402
3403/**
Albert Leec71c1852005-10-04 06:03:45 -04003404 * atapi_send_cdb - Write CDB bytes to hardware
3405 * @ap: Port to which ATAPI device is attached.
3406 * @qc: Taskfile currently active
3407 *
3408 * When device has indicated its readiness to accept
3409 * a CDB, this function is called. Send the CDB.
3410 *
3411 * LOCKING:
3412 * caller.
3413 */
3414
3415static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3416{
3417 /* send SCSI cdb */
3418 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003419 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003420
Jeff Garzikdb024d52006-02-13 00:23:57 -05003421 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003422 ata_altstatus(ap); /* flush */
3423
3424 switch (qc->tf.protocol) {
3425 case ATA_PROT_ATAPI:
3426 ap->hsm_task_state = HSM_ST;
3427 break;
3428 case ATA_PROT_ATAPI_NODATA:
3429 ap->hsm_task_state = HSM_ST_LAST;
3430 break;
3431 case ATA_PROT_ATAPI_DMA:
3432 ap->hsm_task_state = HSM_ST_LAST;
3433 /* initiate bmdma */
3434 ap->ops->bmdma_start(qc);
3435 break;
3436 }
3437}
3438
3439/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003440 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3441 * @qc: Command on going
3442 * @bytes: number of bytes
3443 *
3444 * Transfer Transfer data from/to the ATAPI device.
3445 *
3446 * LOCKING:
3447 * Inherited from caller.
3448 *
3449 */
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3452{
3453 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003454 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 struct ata_port *ap = qc->ap;
3456 struct page *page;
3457 unsigned char *buf;
3458 unsigned int offset, count;
3459
Albert Lee563a6e12005-08-12 14:17:50 +08003460 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003461 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
3463next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003464 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003465 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003466 * The end of qc->sg is reached and the device expects
3467 * more data to transfer. In order not to overrun qc->sg
3468 * and fulfill length specified in the byte count register,
3469 * - for read case, discard trailing data from the device
3470 * - for write case, padding zero data to the device
3471 */
3472 u16 pad_buf[1] = { 0 };
3473 unsigned int words = bytes >> 1;
3474 unsigned int i;
3475
3476 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003477 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003478 ap->id, bytes);
3479
3480 for (i = 0; i < words; i++)
3481 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3482
Albert Lee14be71f2005-09-27 17:36:35 +08003483 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003484 return;
3485 }
3486
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003487 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 page = sg->page;
3490 offset = sg->offset + qc->cursg_ofs;
3491
3492 /* get the current page and offset */
3493 page = nth_page(page, (offset >> PAGE_SHIFT));
3494 offset %= PAGE_SIZE;
3495
Albert Lee6952df02005-06-06 15:56:03 +08003496 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003497 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
3499 /* don't cross page boundaries */
3500 count = min(count, (unsigned int)PAGE_SIZE - offset);
3501
Albert Lee7282aa42005-10-09 09:46:07 -04003502 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3503
Albert Lee91b8b312005-10-09 09:48:44 -04003504 if (PageHighMem(page)) {
3505 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003506
Albert Lee91b8b312005-10-09 09:48:44 -04003507 local_irq_save(flags);
3508 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003509
Albert Lee91b8b312005-10-09 09:48:44 -04003510 /* do the actual data transfer */
3511 ata_data_xfer(ap, buf + offset, count, do_write);
3512
3513 kunmap_atomic(buf, KM_IRQ0);
3514 local_irq_restore(flags);
3515 } else {
3516 buf = page_address(page);
3517 ata_data_xfer(ap, buf + offset, count, do_write);
3518 }
Albert Lee7282aa42005-10-09 09:46:07 -04003519
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 bytes -= count;
3521 qc->curbytes += count;
3522 qc->cursg_ofs += count;
3523
Albert Lee32529e02005-05-26 03:49:42 -04003524 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 qc->cursg++;
3526 qc->cursg_ofs = 0;
3527 }
3528
Albert Lee563a6e12005-08-12 14:17:50 +08003529 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531}
3532
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003533/**
3534 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3535 * @qc: Command on going
3536 *
3537 * Transfer Transfer data from/to the ATAPI device.
3538 *
3539 * LOCKING:
3540 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003541 */
3542
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3544{
3545 struct ata_port *ap = qc->ap;
3546 struct ata_device *dev = qc->dev;
3547 unsigned int ireason, bc_lo, bc_hi, bytes;
3548 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3549
3550 ap->ops->tf_read(ap, &qc->tf);
3551 ireason = qc->tf.nsect;
3552 bc_lo = qc->tf.lbam;
3553 bc_hi = qc->tf.lbah;
3554 bytes = (bc_hi << 8) | bc_lo;
3555
3556 /* shall be cleared to zero, indicating xfer of data */
3557 if (ireason & (1 << 0))
3558 goto err_out;
3559
3560 /* make sure transfer direction matches expected */
3561 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3562 if (do_write != i_write)
3563 goto err_out;
3564
Albert Lee312f7da2005-09-27 17:38:03 +08003565 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3566
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 __atapi_pio_bytes(qc, bytes);
3568
3569 return;
3570
3571err_out:
3572 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3573 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003574 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003575 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576}
3577
3578/**
Albert Leec234fb02006-03-25 17:58:38 +08003579 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3580 * @ap: the target ata_port
3581 * @qc: qc on going
3582 *
3583 * RETURNS:
3584 * 1 if ok in workqueue, 0 otherwise.
3585 */
3586
3587static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
3588{
3589 if (qc->tf.flags & ATA_TFLAG_POLLING)
3590 return 1;
3591
3592 if (ap->hsm_task_state == HSM_ST_FIRST) {
3593 if (qc->tf.protocol == ATA_PROT_PIO &&
3594 (qc->tf.flags & ATA_TFLAG_WRITE))
3595 return 1;
3596
3597 if (is_atapi_taskfile(&qc->tf) &&
3598 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3599 return 1;
3600 }
3601
3602 return 0;
3603}
3604
3605/**
Albert Leebb5cb292006-03-25 17:48:02 +08003606 * ata_hsm_move - move the HSM to the next state.
3607 * @ap: the target ata_port
3608 * @qc: qc on going
3609 * @status: current device status
3610 * @in_wq: 1 if called from workqueue, 0 otherwise
3611 *
3612 * RETURNS:
3613 * 1 when poll next status needed, 0 otherwise.
3614 */
3615
3616static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
3617 u8 status, int in_wq)
Albert Leee2cec772006-03-25 17:43:49 +08003618{
Albert Leebb5cb292006-03-25 17:48:02 +08003619 unsigned long flags = 0;
3620 int poll_next;
3621
Albert Lee6912ccd2006-03-25 17:45:49 +08003622 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
3623
Albert Leebb5cb292006-03-25 17:48:02 +08003624 /* Make sure ata_qc_issue_prot() does not throw things
3625 * like DMA polling into the workqueue. Notice that
3626 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
3627 */
Albert Leec234fb02006-03-25 17:58:38 +08003628 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Leebb5cb292006-03-25 17:48:02 +08003629
Albert Leee2cec772006-03-25 17:43:49 +08003630fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08003631 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
3632 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
3633
Albert Leee2cec772006-03-25 17:43:49 +08003634 switch (ap->hsm_task_state) {
3635 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08003636 /* Send first data block or PACKET CDB */
3637
3638 /* If polling, we will stay in the work queue after
3639 * sending the data. Otherwise, interrupt handler
3640 * takes over after sending the data.
3641 */
3642 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
3643
Albert Leee2cec772006-03-25 17:43:49 +08003644 /* check device status */
3645 if (unlikely((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ)) {
3646 /* Wrong status. Let EH handle this */
3647 qc->err_mask |= AC_ERR_HSM;
3648 ap->hsm_task_state = HSM_ST_ERR;
3649 goto fsm_start;
3650 }
3651
Albert Lee71601952006-03-25 18:11:12 +08003652 /* Device should not ask for data transfer (DRQ=1)
3653 * when it finds something wrong.
3654 * Anyway, we respect DRQ here and let HSM go on
3655 * without changing hsm_task_state to HSM_ST_ERR.
3656 */
3657 if (unlikely(status & (ATA_ERR | ATA_DF))) {
3658 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
3659 ap->id, status);
3660 qc->err_mask |= AC_ERR_DEV;
3661 }
3662
Albert Leebb5cb292006-03-25 17:48:02 +08003663 /* Send the CDB (atapi) or the first data block (ata pio out).
3664 * During the state transition, interrupt handler shouldn't
3665 * be invoked before the data transfer is complete and
3666 * hsm_task_state is changed. Hence, the following locking.
3667 */
3668 if (in_wq)
3669 spin_lock_irqsave(&ap->host_set->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08003670
Albert Leebb5cb292006-03-25 17:48:02 +08003671 if (qc->tf.protocol == ATA_PROT_PIO) {
3672 /* PIO data out protocol.
3673 * send first data block.
3674 */
3675
3676 /* ata_pio_sectors() might change the state
3677 * to HSM_ST_LAST. so, the state is changed here
3678 * before ata_pio_sectors().
3679 */
3680 ap->hsm_task_state = HSM_ST;
3681 ata_pio_sectors(qc);
3682 ata_altstatus(ap); /* flush */
3683 } else
3684 /* send CDB */
3685 atapi_send_cdb(ap, qc);
3686
3687 if (in_wq)
3688 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3689
3690 /* if polling, ata_pio_task() handles the rest.
3691 * otherwise, interrupt handler takes over from here.
3692 */
Albert Leee2cec772006-03-25 17:43:49 +08003693 break;
3694
3695 case HSM_ST:
3696 /* complete command or read/write the data register */
3697 if (qc->tf.protocol == ATA_PROT_ATAPI) {
3698 /* ATAPI PIO protocol */
3699 if ((status & ATA_DRQ) == 0) {
3700 /* no more data to transfer */
3701 ap->hsm_task_state = HSM_ST_LAST;
3702 goto fsm_start;
3703 }
3704
Albert Lee71601952006-03-25 18:11:12 +08003705 /* Device should not ask for data transfer (DRQ=1)
3706 * when it finds something wrong.
3707 * Anyway, we respect DRQ here and let HSM go on
3708 * without changing hsm_task_state to HSM_ST_ERR.
3709 */
3710 if (unlikely(status & (ATA_ERR | ATA_DF))) {
3711 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
3712 ap->id, status);
3713 qc->err_mask |= AC_ERR_DEV;
3714 }
3715
Albert Leee2cec772006-03-25 17:43:49 +08003716 atapi_pio_bytes(qc);
3717
3718 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
3719 /* bad ireason reported by device */
3720 goto fsm_start;
3721
3722 } else {
3723 /* ATA PIO protocol */
3724 if (unlikely((status & ATA_DRQ) == 0)) {
3725 /* handle BSY=0, DRQ=0 as error */
3726 qc->err_mask |= AC_ERR_HSM;
3727 ap->hsm_task_state = HSM_ST_ERR;
3728 goto fsm_start;
3729 }
3730
Albert Lee71601952006-03-25 18:11:12 +08003731 /* Some devices may ask for data transfer (DRQ=1)
3732 * alone with ERR=1 for PIO reads.
3733 * We respect DRQ here and let HSM go on without
3734 * changing hsm_task_state to HSM_ST_ERR.
3735 */
3736 if (unlikely(status & (ATA_ERR | ATA_DF))) {
3737 /* For writes, ERR=1 DRQ=1 doesn't make
3738 * sense since the data block has been
3739 * transferred to the device.
3740 */
3741 WARN_ON(qc->tf.flags & ATA_TFLAG_WRITE);
3742
3743 /* data might be corrputed */
3744 qc->err_mask |= AC_ERR_DEV;
3745 }
3746
Albert Leee2cec772006-03-25 17:43:49 +08003747 ata_pio_sectors(qc);
3748
3749 if (ap->hsm_task_state == HSM_ST_LAST &&
3750 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
3751 /* all data read */
3752 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08003753 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08003754 goto fsm_start;
3755 }
3756 }
3757
3758 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08003759 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08003760 break;
3761
3762 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08003763 if (unlikely(!ata_ok(status))) {
3764 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08003765 ap->hsm_task_state = HSM_ST_ERR;
3766 goto fsm_start;
3767 }
3768
3769 /* no more data to transfer */
3770 DPRINTK("ata%u: command complete, drv_stat 0x%x\n",
3771 ap->id, status);
3772
Albert Lee6912ccd2006-03-25 17:45:49 +08003773 WARN_ON(qc->err_mask);
3774
Albert Leee2cec772006-03-25 17:43:49 +08003775 ap->hsm_task_state = HSM_ST_IDLE;
3776
3777 /* complete taskfile transaction */
Albert Leebb5cb292006-03-25 17:48:02 +08003778 if (in_wq)
3779 ata_poll_qc_complete(qc);
3780 else
3781 ata_qc_complete(qc);
3782
3783 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08003784 break;
3785
3786 case HSM_ST_ERR:
3787 if (qc->tf.command != ATA_CMD_PACKET)
Albert Lee6912ccd2006-03-25 17:45:49 +08003788 printk(KERN_ERR "ata%u: command error, drv_stat 0x%x\n",
3789 ap->id, status);
Albert Leee2cec772006-03-25 17:43:49 +08003790
3791 /* make sure qc->err_mask is available to
3792 * know what's wrong and recover
3793 */
3794 WARN_ON(qc->err_mask == 0);
3795
3796 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08003797
Albert Lee999bb6f2006-03-25 18:07:48 +08003798 /* complete taskfile transaction */
Albert Leebb5cb292006-03-25 17:48:02 +08003799 if (in_wq)
3800 ata_poll_qc_complete(qc);
3801 else
3802 ata_qc_complete(qc);
3803
3804 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08003805 break;
3806 default:
Albert Leebb5cb292006-03-25 17:48:02 +08003807 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08003808 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08003809 }
3810
Albert Leebb5cb292006-03-25 17:48:02 +08003811 return poll_next;
Albert Leee2cec772006-03-25 17:43:49 +08003812}
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814static void ata_pio_task(void *_data)
3815{
3816 struct ata_port *ap = _data;
Albert Leea1af3732006-03-25 17:50:15 +08003817 struct ata_queued_cmd *qc;
3818 u8 status;
3819 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003820
3821fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08003822 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Albert Leea1af3732006-03-25 17:50:15 +08003824 qc = ata_qc_from_tag(ap, ap->active_tag);
3825 WARN_ON(qc == NULL);
Albert Leee27486d2005-11-01 19:24:49 +08003826
Albert Leea1af3732006-03-25 17:50:15 +08003827 /*
3828 * This is purely heuristic. This is a fast path.
3829 * Sometimes when we enter, BSY will be cleared in
3830 * a chk-status or two. If not, the drive is probably seeking
3831 * or something. Snooze for a couple msecs, then
3832 * chk-status again. If still busy, queue delayed work.
3833 */
3834 status = ata_busy_wait(ap, ATA_BUSY, 5);
3835 if (status & ATA_BUSY) {
3836 msleep(2);
3837 status = ata_busy_wait(ap, ATA_BUSY, 10);
3838 if (status & ATA_BUSY) {
3839 ata_port_queue_task(ap, ata_pio_task, ap, ATA_SHORT_PAUSE);
3840 return;
3841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 }
3843
Albert Leea1af3732006-03-25 17:50:15 +08003844 /* move the HSM */
3845 poll_next = ata_hsm_move(ap, qc, status, 1);
3846
3847 /* another command or interrupt handler
3848 * may be running at this point.
3849 */
3850 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003851 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852}
3853
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854/**
3855 * ata_qc_timeout - Handle timeout of queued command
3856 * @qc: Command that timed out
3857 *
3858 * Some part of the kernel (currently, only the SCSI layer)
3859 * has noticed that the active command on port @ap has not
3860 * completed after a specified length of time. Handle this
3861 * condition by disabling DMA (if necessary) and completing
3862 * transactions, with error if necessary.
3863 *
3864 * This also handles the case of the "lost interrupt", where
3865 * for some reason (possibly hardware bug, possibly driver bug)
3866 * an interrupt was not delivered to the driver, even though the
3867 * transaction completed successfully.
3868 *
3869 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003870 * Inherited from SCSI layer (none, can sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 */
3872
3873static void ata_qc_timeout(struct ata_queued_cmd *qc)
3874{
3875 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003876 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 u8 host_stat = 0, drv_stat;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003878 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
3880 DPRINTK("ENTER\n");
3881
Tejun Heoc18d06f2006-02-02 00:56:10 +09003882 ap->hsm_task_state = HSM_ST_IDLE;
3883
Jeff Garzikb8f61532005-08-25 22:01:20 -04003884 spin_lock_irqsave(&host_set->lock, flags);
3885
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 switch (qc->tf.protocol) {
3887
3888 case ATA_PROT_DMA:
3889 case ATA_PROT_ATAPI_DMA:
3890 host_stat = ap->ops->bmdma_status(ap);
3891
3892 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003893 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
3895 /* fall through */
3896
3897 default:
3898 ata_altstatus(ap);
3899 drv_stat = ata_chk_status(ap);
3900
3901 /* ack bmdma irq events */
3902 ap->ops->irq_clear(ap);
3903
3904 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
3905 ap->id, qc->tf.command, drv_stat, host_stat);
3906
Albert Lee312f7da2005-09-27 17:38:03 +08003907 ap->hsm_task_state = HSM_ST_IDLE;
3908
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 /* complete taskfile transaction */
Albert Lee555a8962006-02-08 16:50:29 +08003910 qc->err_mask |= AC_ERR_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 break;
3912 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04003913
3914 spin_unlock_irqrestore(&host_set->lock, flags);
3915
Tejun Heoa72ec4c2006-01-23 13:09:37 +09003916 ata_eh_qc_complete(qc);
3917
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 DPRINTK("EXIT\n");
3919}
3920
3921/**
3922 * ata_eng_timeout - Handle timeout of queued command
3923 * @ap: Port on which timed-out command is active
3924 *
3925 * Some part of the kernel (currently, only the SCSI layer)
3926 * has noticed that the active command on port @ap has not
3927 * completed after a specified length of time. Handle this
3928 * condition by disabling DMA (if necessary) and completing
3929 * transactions, with error if necessary.
3930 *
3931 * This also handles the case of the "lost interrupt", where
3932 * for some reason (possibly hardware bug, possibly driver bug)
3933 * an interrupt was not delivered to the driver, even though the
3934 * transaction completed successfully.
3935 *
3936 * LOCKING:
3937 * Inherited from SCSI layer (none, can sleep)
3938 */
3939
3940void ata_eng_timeout(struct ata_port *ap)
3941{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 DPRINTK("ENTER\n");
3943
Tejun Heof6379022006-02-10 15:10:48 +09003944 ata_qc_timeout(ata_qc_from_tag(ap, ap->active_tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 DPRINTK("EXIT\n");
3947}
3948
3949/**
3950 * ata_qc_new - Request an available ATA command, for queueing
3951 * @ap: Port associated with device @dev
3952 * @dev: Device from whom we request an available command structure
3953 *
3954 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003955 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 */
3957
3958static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
3959{
3960 struct ata_queued_cmd *qc = NULL;
3961 unsigned int i;
3962
3963 for (i = 0; i < ATA_MAX_QUEUE; i++)
3964 if (!test_and_set_bit(i, &ap->qactive)) {
3965 qc = ata_qc_from_tag(ap, i);
3966 break;
3967 }
3968
3969 if (qc)
3970 qc->tag = i;
3971
3972 return qc;
3973}
3974
3975/**
3976 * ata_qc_new_init - Request an available ATA command, and initialize it
3977 * @ap: Port associated with device @dev
3978 * @dev: Device from whom we request an available command structure
3979 *
3980 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003981 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 */
3983
3984struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
3985 struct ata_device *dev)
3986{
3987 struct ata_queued_cmd *qc;
3988
3989 qc = ata_qc_new(ap);
3990 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 qc->scsicmd = NULL;
3992 qc->ap = ap;
3993 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003995 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 }
3997
3998 return qc;
3999}
4000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001/**
4002 * ata_qc_free - free unused ata_queued_cmd
4003 * @qc: Command to complete
4004 *
4005 * Designed to free unused ata_queued_cmd object
4006 * in case something prevents using it.
4007 *
4008 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004009 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 */
4011void ata_qc_free(struct ata_queued_cmd *qc)
4012{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004013 struct ata_port *ap = qc->ap;
4014 unsigned int tag;
4015
Tejun Heoa4631472006-02-11 19:11:13 +09004016 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Tejun Heo4ba946e2006-01-23 13:09:36 +09004018 qc->flags = 0;
4019 tag = qc->tag;
4020 if (likely(ata_tag_valid(tag))) {
4021 if (tag == ap->active_tag)
4022 ap->active_tag = ATA_TAG_POISON;
4023 qc->tag = ATA_TAG_POISON;
4024 clear_bit(tag, &ap->qactive);
4025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026}
4027
Tejun Heo76014422006-02-11 15:13:49 +09004028void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029{
Tejun Heoa4631472006-02-11 19:11:13 +09004030 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4031 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
4033 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4034 ata_sg_clean(qc);
4035
Albert Lee3f3791d2005-08-16 14:25:38 +08004036 /* atapi: mark qc as inactive to prevent the interrupt handler
4037 * from completing the command twice later, before the error handler
4038 * is called. (when rc != 0 and atapi request sense is needed)
4039 */
4040 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4041
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004043 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044}
4045
4046static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4047{
4048 struct ata_port *ap = qc->ap;
4049
4050 switch (qc->tf.protocol) {
4051 case ATA_PROT_DMA:
4052 case ATA_PROT_ATAPI_DMA:
4053 return 1;
4054
4055 case ATA_PROT_ATAPI:
4056 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 if (ap->flags & ATA_FLAG_PIO_DMA)
4058 return 1;
4059
4060 /* fall through */
4061
4062 default:
4063 return 0;
4064 }
4065
4066 /* never reached */
4067}
4068
4069/**
4070 * ata_qc_issue - issue taskfile to device
4071 * @qc: command to issue to device
4072 *
4073 * Prepare an ATA command to submission to device.
4074 * This includes mapping the data into a DMA-able
4075 * area, filling in the S/G table, and finally
4076 * writing the taskfile to hardware, starting the command.
4077 *
4078 * LOCKING:
4079 * spin_lock_irqsave(host_set lock)
4080 *
4081 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004082 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 */
4084
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004085unsigned int ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086{
4087 struct ata_port *ap = qc->ap;
4088
4089 if (ata_should_dma_map(qc)) {
4090 if (qc->flags & ATA_QCFLAG_SG) {
4091 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004092 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4094 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004095 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 }
4097 } else {
4098 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4099 }
4100
4101 ap->ops->qc_prep(qc);
4102
4103 qc->ap->active_tag = qc->tag;
4104 qc->flags |= ATA_QCFLAG_ACTIVE;
4105
4106 return ap->ops->qc_issue(qc);
4107
Tejun Heo8e436af2006-01-23 13:09:36 +09004108sg_err:
4109 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004110 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111}
4112
Edward Falk0baab862005-06-02 18:17:13 -04004113
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114/**
4115 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4116 * @qc: command to issue to device
4117 *
4118 * Using various libata functions and hooks, this function
4119 * starts an ATA command. ATA commands are grouped into
4120 * classes called "protocols", and issuing each type of protocol
4121 * is slightly different.
4122 *
Edward Falk0baab862005-06-02 18:17:13 -04004123 * May be used as the qc_issue() entry in ata_port_operations.
4124 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 * LOCKING:
4126 * spin_lock_irqsave(host_set lock)
4127 *
4128 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004129 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 */
4131
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004132unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133{
4134 struct ata_port *ap = qc->ap;
4135
Albert Leee50362e2005-09-27 17:39:50 +08004136 /* Use polling pio if the LLD doesn't handle
4137 * interrupt driven pio and atapi CDB interrupt.
4138 */
4139 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4140 switch (qc->tf.protocol) {
4141 case ATA_PROT_PIO:
4142 case ATA_PROT_ATAPI:
4143 case ATA_PROT_ATAPI_NODATA:
4144 qc->tf.flags |= ATA_TFLAG_POLLING;
4145 break;
4146 case ATA_PROT_ATAPI_DMA:
4147 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Leec2bbc552006-03-25 17:56:55 +08004148 /* see ata_check_atapi_dma() */
Albert Leee50362e2005-09-27 17:39:50 +08004149 BUG();
4150 break;
4151 default:
4152 break;
4153 }
4154 }
4155
Albert Lee312f7da2005-09-27 17:38:03 +08004156 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 ata_dev_select(ap, qc->dev->devno, 1, 0);
4158
Albert Lee312f7da2005-09-27 17:38:03 +08004159 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 switch (qc->tf.protocol) {
4161 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004162 if (qc->tf.flags & ATA_TFLAG_POLLING)
4163 ata_qc_set_polling(qc);
4164
Jeff Garzike5338252005-10-30 21:37:17 -05004165 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004166 ap->hsm_task_state = HSM_ST_LAST;
4167
4168 if (qc->tf.flags & ATA_TFLAG_POLLING)
Jeff Garzik46e202e2006-03-11 19:25:47 -05004169 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 break;
4172
4173 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004174 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004175
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4177 ap->ops->bmdma_setup(qc); /* set up bmdma */
4178 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004179 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 break;
4181
Albert Lee312f7da2005-09-27 17:38:03 +08004182 case ATA_PROT_PIO:
4183 if (qc->tf.flags & ATA_TFLAG_POLLING)
4184 ata_qc_set_polling(qc);
4185
Jeff Garzike5338252005-10-30 21:37:17 -05004186 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004187
Albert Lee54f00382005-09-30 19:14:19 +08004188 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4189 /* PIO data out protocol */
4190 ap->hsm_task_state = HSM_ST_FIRST;
Jeff Garzikce1e7a22006-03-11 19:21:17 -05004191 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004192
4193 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004194 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004195 */
Albert Lee312f7da2005-09-27 17:38:03 +08004196 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004197 /* PIO data in protocol */
4198 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004199
Albert Lee54f00382005-09-30 19:14:19 +08004200 if (qc->tf.flags & ATA_TFLAG_POLLING)
Jeff Garzikce1e7a22006-03-11 19:21:17 -05004201 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004202
Albert Lee54f00382005-09-30 19:14:19 +08004203 /* if polling, ata_pio_task() handles the rest.
4204 * otherwise, interrupt handler takes over from here.
4205 */
Albert Lee312f7da2005-09-27 17:38:03 +08004206 }
4207
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 break;
4209
4210 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004212 if (qc->tf.flags & ATA_TFLAG_POLLING)
4213 ata_qc_set_polling(qc);
4214
Jeff Garzike5338252005-10-30 21:37:17 -05004215 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004216
Albert Lee312f7da2005-09-27 17:38:03 +08004217 ap->hsm_task_state = HSM_ST_FIRST;
4218
4219 /* send cdb by polling if no cdb interrupt */
4220 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4221 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee13ee4622006-03-25 17:39:34 +08004222 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 break;
4224
4225 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004226 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004227
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4229 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004230 ap->hsm_task_state = HSM_ST_FIRST;
4231
4232 /* send cdb by polling if no cdb interrupt */
4233 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee13ee4622006-03-25 17:39:34 +08004234 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 break;
4236
4237 default:
4238 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004239 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 }
4241
4242 return 0;
4243}
4244
4245/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 * ata_host_intr - Handle host interrupt for given (port, task)
4247 * @ap: Port on which interrupt arrived (possibly...)
4248 * @qc: Taskfile currently active in engine
4249 *
4250 * Handle host interrupt for given queued command. Currently,
4251 * only DMA interrupts are handled. All other commands are
4252 * handled via polling with interrupts disabled (nIEN bit).
4253 *
4254 * LOCKING:
4255 * spin_lock_irqsave(host_set lock)
4256 *
4257 * RETURNS:
4258 * One if interrupt was handled, zero if not (shared irq).
4259 */
4260
4261inline unsigned int ata_host_intr (struct ata_port *ap,
4262 struct ata_queued_cmd *qc)
4263{
Albert Lee312f7da2005-09-27 17:38:03 +08004264 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
Albert Lee312f7da2005-09-27 17:38:03 +08004266 VPRINTK("ata%u: protocol %d task_state %d\n",
4267 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
Albert Lee312f7da2005-09-27 17:38:03 +08004269 /* Check whether we are expecting interrupt in this state */
4270 switch (ap->hsm_task_state) {
4271 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004272 /* Some pre-ATAPI-4 devices assert INTRQ
4273 * at this state when ready to receive CDB.
4274 */
4275
Albert Lee312f7da2005-09-27 17:38:03 +08004276 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4277 * The flag was turned on only for atapi devices.
4278 * No need to check is_atapi_taskfile(&qc->tf) again.
4279 */
4280 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 goto idle_irq;
Albert Lee312f7da2005-09-27 17:38:03 +08004282 break;
4283 case HSM_ST_LAST:
4284 if (qc->tf.protocol == ATA_PROT_DMA ||
4285 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4286 /* check status of DMA engine */
4287 host_stat = ap->ops->bmdma_status(ap);
4288 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
Albert Lee312f7da2005-09-27 17:38:03 +08004290 /* if it's not our irq... */
4291 if (!(host_stat & ATA_DMA_INTR))
4292 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
Albert Lee312f7da2005-09-27 17:38:03 +08004294 /* before we do anything else, clear DMA-Start bit */
4295 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004296
4297 if (unlikely(host_stat & ATA_DMA_ERR)) {
4298 /* error when transfering data to/from memory */
4299 qc->err_mask |= AC_ERR_HOST_BUS;
4300 ap->hsm_task_state = HSM_ST_ERR;
4301 }
Albert Lee312f7da2005-09-27 17:38:03 +08004302 }
4303 break;
4304 case HSM_ST:
4305 break;
4306 default:
4307 goto idle_irq;
4308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
Albert Lee312f7da2005-09-27 17:38:03 +08004310 /* check altstatus */
4311 status = ata_altstatus(ap);
4312 if (status & ATA_BUSY)
4313 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
Albert Lee312f7da2005-09-27 17:38:03 +08004315 /* check main status, clearing INTRQ */
4316 status = ata_chk_status(ap);
4317 if (unlikely(status & ATA_BUSY))
4318 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Albert Lee312f7da2005-09-27 17:38:03 +08004320 /* ack bmdma irq events */
4321 ap->ops->irq_clear(ap);
4322
Albert Leebb5cb292006-03-25 17:48:02 +08004323 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 return 1; /* irq handled */
4325
4326idle_irq:
4327 ap->stats.idle_irq++;
4328
4329#ifdef ATA_IRQ_TRAP
4330 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 ata_irq_ack(ap, 0); /* debug trap */
4332 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004333 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 }
4335#endif
4336 return 0; /* irq not handled */
4337}
4338
4339/**
4340 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004341 * @irq: irq line (unused)
4342 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 * @regs: unused
4344 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004345 * Default interrupt handler for PCI IDE devices. Calls
4346 * ata_host_intr() for each port that is not disabled.
4347 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004349 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 *
4351 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004352 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 */
4354
4355irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4356{
4357 struct ata_host_set *host_set = dev_instance;
4358 unsigned int i;
4359 unsigned int handled = 0;
4360 unsigned long flags;
4361
4362 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4363 spin_lock_irqsave(&host_set->lock, flags);
4364
4365 for (i = 0; i < host_set->n_ports; i++) {
4366 struct ata_port *ap;
4367
4368 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004369 if (ap &&
Albert Lee312f7da2005-09-27 17:38:03 +08004370 !(ap->flags & ATA_FLAG_PORT_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 struct ata_queued_cmd *qc;
4372
4373 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004374 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004375 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 handled |= ata_host_intr(ap, qc);
4377 }
4378 }
4379
4380 spin_unlock_irqrestore(&host_set->lock, flags);
4381
4382 return IRQ_RETVAL(handled);
4383}
4384
Edward Falk0baab862005-06-02 18:17:13 -04004385
Jens Axboe9b847542006-01-06 09:28:07 +01004386/*
4387 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4388 * without filling any other registers
4389 */
4390static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4391 u8 cmd)
4392{
4393 struct ata_taskfile tf;
4394 int err;
4395
4396 ata_tf_init(ap, &tf, dev->devno);
4397
4398 tf.command = cmd;
4399 tf.flags |= ATA_TFLAG_DEVICE;
4400 tf.protocol = ATA_PROT_NODATA;
4401
4402 err = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
4403 if (err)
4404 printk(KERN_ERR "%s: ata command failed: %d\n",
4405 __FUNCTION__, err);
4406
4407 return err;
4408}
4409
4410static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4411{
4412 u8 cmd;
4413
4414 if (!ata_try_flush_cache(dev))
4415 return 0;
4416
4417 if (ata_id_has_flush_ext(dev->id))
4418 cmd = ATA_CMD_FLUSH_EXT;
4419 else
4420 cmd = ATA_CMD_FLUSH;
4421
4422 return ata_do_simple_cmd(ap, dev, cmd);
4423}
4424
4425static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4426{
4427 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4428}
4429
4430static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4431{
4432 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4433}
4434
4435/**
4436 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004437 * @ap: port the device is connected to
4438 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004439 *
4440 * Kick the drive back into action, by sending it an idle immediate
4441 * command and making sure its transfer mode matches between drive
4442 * and host.
4443 *
4444 */
4445int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4446{
4447 if (ap->flags & ATA_FLAG_SUSPENDED) {
4448 ap->flags &= ~ATA_FLAG_SUSPENDED;
4449 ata_set_mode(ap);
4450 }
4451 if (!ata_dev_present(dev))
4452 return 0;
4453 if (dev->class == ATA_DEV_ATA)
4454 ata_start_drive(ap, dev);
4455
4456 return 0;
4457}
4458
4459/**
4460 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004461 * @ap: port the device is connected to
4462 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004463 *
4464 * Flush the cache on the drive, if appropriate, then issue a
4465 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004466 */
Nigel Cunningham082776e2006-03-23 23:22:16 +10004467int ata_device_suspend(struct ata_port *ap, struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004468{
4469 if (!ata_dev_present(dev))
4470 return 0;
4471 if (dev->class == ATA_DEV_ATA)
4472 ata_flush_cache(ap, dev);
4473
Nigel Cunningham082776e2006-03-23 23:22:16 +10004474 if (state.event != PM_EVENT_FREEZE)
4475 ata_standby_drive(ap, dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004476 ap->flags |= ATA_FLAG_SUSPENDED;
4477 return 0;
4478}
4479
Albert Lee332b5a52006-02-08 16:51:34 +08004480/**
4481 * ata_port_start - Set port up for dma.
4482 * @ap: Port to initialize
4483 *
4484 * Called just after data structures for each port are
4485 * initialized. Allocates space for PRD table.
4486 *
4487 * May be used as the port_start() entry in ata_port_operations.
4488 *
4489 * LOCKING:
4490 * Inherited from caller.
4491 */
4492
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493int ata_port_start (struct ata_port *ap)
4494{
Brian King2f1f6102006-03-23 17:30:15 -06004495 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004496 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
4498 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4499 if (!ap->prd)
4500 return -ENOMEM;
4501
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004502 rc = ata_pad_alloc(ap, dev);
4503 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004504 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004505 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004506 }
4507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4509
4510 return 0;
4511}
4512
Edward Falk0baab862005-06-02 18:17:13 -04004513
4514/**
4515 * ata_port_stop - Undo ata_port_start()
4516 * @ap: Port to shut down
4517 *
4518 * Frees the PRD table.
4519 *
4520 * May be used as the port_stop() entry in ata_port_operations.
4521 *
4522 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004523 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004524 */
4525
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526void ata_port_stop (struct ata_port *ap)
4527{
Brian King2f1f6102006-03-23 17:30:15 -06004528 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529
4530 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004531 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532}
4533
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004534void ata_host_stop (struct ata_host_set *host_set)
4535{
4536 if (host_set->mmio_base)
4537 iounmap(host_set->mmio_base);
4538}
4539
4540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541/**
4542 * ata_host_remove - Unregister SCSI host structure with upper layers
4543 * @ap: Port to unregister
4544 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4545 *
4546 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004547 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 */
4549
4550static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4551{
4552 struct Scsi_Host *sh = ap->host;
4553
4554 DPRINTK("ENTER\n");
4555
4556 if (do_unregister)
4557 scsi_remove_host(sh);
4558
4559 ap->ops->port_stop(ap);
4560}
4561
4562/**
4563 * ata_host_init - Initialize an ata_port structure
4564 * @ap: Structure to initialize
4565 * @host: associated SCSI mid-layer structure
4566 * @host_set: Collection of hosts to which @ap belongs
4567 * @ent: Probe information provided by low-level driver
4568 * @port_no: Port number associated with this ata_port
4569 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004570 * Initialize a new ata_port structure, and its associated
4571 * scsi_host.
4572 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004574 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 */
4576
4577static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4578 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004579 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580{
4581 unsigned int i;
4582
4583 host->max_id = 16;
4584 host->max_lun = 1;
4585 host->max_channel = 1;
4586 host->unique_id = ata_unique_id++;
4587 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004588
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 ap->flags = ATA_FLAG_PORT_DISABLED;
4590 ap->id = host->unique_id;
4591 ap->host = host;
4592 ap->ctl = ATA_DEVCTL_OBS;
4593 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004594 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 ap->port_no = port_no;
4596 ap->hard_port_no =
4597 ent->legacy_mode ? ent->hard_port_no : port_no;
4598 ap->pio_mask = ent->pio_mask;
4599 ap->mwdma_mask = ent->mwdma_mask;
4600 ap->udma_mask = ent->udma_mask;
4601 ap->flags |= ent->host_flags;
4602 ap->ops = ent->port_ops;
4603 ap->cbl = ATA_CBL_NONE;
4604 ap->active_tag = ATA_TAG_POISON;
4605 ap->last_ctl = 0xFF;
4606
Tejun Heo86e45b62006-03-05 15:29:09 +09004607 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004608 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
Tejun Heoacf356b2006-03-24 14:07:50 +09004610 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4611 struct ata_device *dev = &ap->device[i];
4612 dev->devno = i;
4613 dev->pio_mask = UINT_MAX;
4614 dev->mwdma_mask = UINT_MAX;
4615 dev->udma_mask = UINT_MAX;
4616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617
4618#ifdef ATA_IRQ_TRAP
4619 ap->stats.unhandled_irq = 1;
4620 ap->stats.idle_irq = 1;
4621#endif
4622
4623 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4624}
4625
4626/**
4627 * ata_host_add - Attach low-level ATA driver to system
4628 * @ent: Information provided by low-level driver
4629 * @host_set: Collections of ports to which we add
4630 * @port_no: Port number associated with this host
4631 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004632 * Attach low-level ATA driver to system.
4633 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004635 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 *
4637 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004638 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 */
4640
Jeff Garzik057ace52005-10-22 14:27:05 -04004641static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 struct ata_host_set *host_set,
4643 unsigned int port_no)
4644{
4645 struct Scsi_Host *host;
4646 struct ata_port *ap;
4647 int rc;
4648
4649 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004650
4651 if (!ent->port_ops->probe_reset &&
4652 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4653 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4654 port_no);
4655 return NULL;
4656 }
4657
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4659 if (!host)
4660 return NULL;
4661
Tejun Heo30afc842006-03-18 18:40:14 +09004662 host->transportt = &ata_scsi_transport_template;
4663
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 ap = (struct ata_port *) &host->hostdata[0];
4665
4666 ata_host_init(ap, host, host_set, ent, port_no);
4667
4668 rc = ap->ops->port_start(ap);
4669 if (rc)
4670 goto err_out;
4671
4672 return ap;
4673
4674err_out:
4675 scsi_host_put(host);
4676 return NULL;
4677}
4678
4679/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004680 * ata_device_add - Register hardware device with ATA and SCSI layers
4681 * @ent: Probe information describing hardware device to be registered
4682 *
4683 * This function processes the information provided in the probe
4684 * information struct @ent, allocates the necessary ATA and SCSI
4685 * host information structures, initializes them, and registers
4686 * everything with requisite kernel subsystems.
4687 *
4688 * This function requests irqs, probes the ATA bus, and probes
4689 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 *
4691 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004692 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 *
4694 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004695 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 */
4697
Jeff Garzik057ace52005-10-22 14:27:05 -04004698int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699{
4700 unsigned int count = 0, i;
4701 struct device *dev = ent->dev;
4702 struct ata_host_set *host_set;
4703
4704 DPRINTK("ENTER\n");
4705 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004706 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4708 if (!host_set)
4709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 spin_lock_init(&host_set->lock);
4711
4712 host_set->dev = dev;
4713 host_set->n_ports = ent->n_ports;
4714 host_set->irq = ent->irq;
4715 host_set->mmio_base = ent->mmio_base;
4716 host_set->private_data = ent->private_data;
4717 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004718 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
4720 /* register each port bound to this device */
4721 for (i = 0; i < ent->n_ports; i++) {
4722 struct ata_port *ap;
4723 unsigned long xfer_mode_mask;
4724
4725 ap = ata_host_add(ent, host_set, i);
4726 if (!ap)
4727 goto err_out;
4728
4729 host_set->ports[i] = ap;
4730 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4731 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4732 (ap->pio_mask << ATA_SHIFT_PIO);
4733
4734 /* print per-port info to dmesg */
4735 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4736 "bmdma 0x%lX irq %lu\n",
4737 ap->id,
4738 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4739 ata_mode_string(xfer_mode_mask),
4740 ap->ioaddr.cmd_addr,
4741 ap->ioaddr.ctl_addr,
4742 ap->ioaddr.bmdma_addr,
4743 ent->irq);
4744
4745 ata_chk_status(ap);
4746 host_set->ops->irq_clear(ap);
4747 count++;
4748 }
4749
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004750 if (!count)
4751 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752
4753 /* obtain irq, that is shared between channels */
4754 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4755 DRV_NAME, host_set))
4756 goto err_out;
4757
4758 /* perform each probe synchronously */
4759 DPRINTK("probe begin\n");
4760 for (i = 0; i < count; i++) {
4761 struct ata_port *ap;
4762 int rc;
4763
4764 ap = host_set->ports[i];
4765
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004766 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004768 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
4770 if (rc) {
4771 /* FIXME: do something useful here?
4772 * Current libata behavior will
4773 * tear down everything when
4774 * the module is removed
4775 * or the h/w is unplugged.
4776 */
4777 }
4778
4779 rc = scsi_add_host(ap->host, dev);
4780 if (rc) {
4781 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4782 ap->id);
4783 /* FIXME: do something useful here */
4784 /* FIXME: handle unconditional calls to
4785 * scsi_scan_host and ata_host_remove, below,
4786 * at the very least
4787 */
4788 }
4789 }
4790
4791 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004792 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 for (i = 0; i < count; i++) {
4794 struct ata_port *ap = host_set->ports[i];
4795
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004796 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 }
4798
4799 dev_set_drvdata(dev, host_set);
4800
4801 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4802 return ent->n_ports; /* success */
4803
4804err_out:
4805 for (i = 0; i < count; i++) {
4806 ata_host_remove(host_set->ports[i], 1);
4807 scsi_host_put(host_set->ports[i]->host);
4808 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004809err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 kfree(host_set);
4811 VPRINTK("EXIT, returning 0\n");
4812 return 0;
4813}
4814
4815/**
Alan Cox17b14452005-09-15 15:44:00 +01004816 * ata_host_set_remove - PCI layer callback for device removal
4817 * @host_set: ATA host set that was removed
4818 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004819 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01004820 * objects.
4821 *
4822 * LOCKING:
4823 * Inherited from calling layer (may sleep).
4824 */
4825
Alan Cox17b14452005-09-15 15:44:00 +01004826void ata_host_set_remove(struct ata_host_set *host_set)
4827{
4828 struct ata_port *ap;
4829 unsigned int i;
4830
4831 for (i = 0; i < host_set->n_ports; i++) {
4832 ap = host_set->ports[i];
4833 scsi_remove_host(ap->host);
4834 }
4835
4836 free_irq(host_set->irq, host_set);
4837
4838 for (i = 0; i < host_set->n_ports; i++) {
4839 ap = host_set->ports[i];
4840
4841 ata_scsi_release(ap->host);
4842
4843 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4844 struct ata_ioports *ioaddr = &ap->ioaddr;
4845
4846 if (ioaddr->cmd_addr == 0x1f0)
4847 release_region(0x1f0, 8);
4848 else if (ioaddr->cmd_addr == 0x170)
4849 release_region(0x170, 8);
4850 }
4851
4852 scsi_host_put(ap->host);
4853 }
4854
4855 if (host_set->ops->host_stop)
4856 host_set->ops->host_stop(host_set);
4857
4858 kfree(host_set);
4859}
4860
4861/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 * ata_scsi_release - SCSI layer callback hook for host unload
4863 * @host: libata host to be unloaded
4864 *
4865 * Performs all duties necessary to shut down a libata port...
4866 * Kill port kthread, disable port, and release resources.
4867 *
4868 * LOCKING:
4869 * Inherited from SCSI layer.
4870 *
4871 * RETURNS:
4872 * One.
4873 */
4874
4875int ata_scsi_release(struct Scsi_Host *host)
4876{
4877 struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
Tejun Heod9572b12006-03-01 16:09:35 +09004878 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
4880 DPRINTK("ENTER\n");
4881
4882 ap->ops->port_disable(ap);
4883 ata_host_remove(ap, 0);
Tejun Heod9572b12006-03-01 16:09:35 +09004884 for (i = 0; i < ATA_MAX_DEVICES; i++)
4885 kfree(ap->device[i].id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
4887 DPRINTK("EXIT\n");
4888 return 1;
4889}
4890
4891/**
4892 * ata_std_ports - initialize ioaddr with standard port offsets.
4893 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004894 *
4895 * Utility function which initializes data_addr, error_addr,
4896 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4897 * device_addr, status_addr, and command_addr to standard offsets
4898 * relative to cmd_addr.
4899 *
4900 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 */
Edward Falk0baab862005-06-02 18:17:13 -04004902
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903void ata_std_ports(struct ata_ioports *ioaddr)
4904{
4905 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4906 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4907 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4908 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4909 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4910 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4911 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4912 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4913 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4914 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4915}
4916
Edward Falk0baab862005-06-02 18:17:13 -04004917
Jeff Garzik374b1872005-08-30 05:42:52 -04004918#ifdef CONFIG_PCI
4919
4920void ata_pci_host_stop (struct ata_host_set *host_set)
4921{
4922 struct pci_dev *pdev = to_pci_dev(host_set->dev);
4923
4924 pci_iounmap(pdev, host_set->mmio_base);
4925}
4926
Edward Falk0baab862005-06-02 18:17:13 -04004927/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 * ata_pci_remove_one - PCI layer callback for device removal
4929 * @pdev: PCI device that was removed
4930 *
4931 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004932 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 * Handle this by unregistering all objects associated
4934 * with this PCI device. Free those objects. Then finally
4935 * release PCI resources and disable device.
4936 *
4937 * LOCKING:
4938 * Inherited from PCI layer (may sleep).
4939 */
4940
4941void ata_pci_remove_one (struct pci_dev *pdev)
4942{
4943 struct device *dev = pci_dev_to_dev(pdev);
4944 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945
Alan Cox17b14452005-09-15 15:44:00 +01004946 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 pci_release_regions(pdev);
4948 pci_disable_device(pdev);
4949 dev_set_drvdata(dev, NULL);
4950}
4951
4952/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04004953int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954{
4955 unsigned long tmp = 0;
4956
4957 switch (bits->width) {
4958 case 1: {
4959 u8 tmp8 = 0;
4960 pci_read_config_byte(pdev, bits->reg, &tmp8);
4961 tmp = tmp8;
4962 break;
4963 }
4964 case 2: {
4965 u16 tmp16 = 0;
4966 pci_read_config_word(pdev, bits->reg, &tmp16);
4967 tmp = tmp16;
4968 break;
4969 }
4970 case 4: {
4971 u32 tmp32 = 0;
4972 pci_read_config_dword(pdev, bits->reg, &tmp32);
4973 tmp = tmp32;
4974 break;
4975 }
4976
4977 default:
4978 return -EINVAL;
4979 }
4980
4981 tmp &= bits->mask;
4982
4983 return (tmp == bits->val) ? 1 : 0;
4984}
Jens Axboe9b847542006-01-06 09:28:07 +01004985
4986int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
4987{
4988 pci_save_state(pdev);
4989 pci_disable_device(pdev);
4990 pci_set_power_state(pdev, PCI_D3hot);
4991 return 0;
4992}
4993
4994int ata_pci_device_resume(struct pci_dev *pdev)
4995{
4996 pci_set_power_state(pdev, PCI_D0);
4997 pci_restore_state(pdev);
4998 pci_enable_device(pdev);
4999 pci_set_master(pdev);
5000 return 0;
5001}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002#endif /* CONFIG_PCI */
5003
5004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005static int __init ata_init(void)
5006{
5007 ata_wq = create_workqueue("ata");
5008 if (!ata_wq)
5009 return -ENOMEM;
5010
5011 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5012 return 0;
5013}
5014
5015static void __exit ata_exit(void)
5016{
5017 destroy_workqueue(ata_wq);
5018}
5019
5020module_init(ata_init);
5021module_exit(ata_exit);
5022
Jeff Garzik67846b32005-10-05 02:58:32 -04005023static unsigned long ratelimit_time;
5024static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5025
5026int ata_ratelimit(void)
5027{
5028 int rc;
5029 unsigned long flags;
5030
5031 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5032
5033 if (time_after(jiffies, ratelimit_time)) {
5034 rc = 1;
5035 ratelimit_time = jiffies + (HZ/5);
5036 } else
5037 rc = 0;
5038
5039 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5040
5041 return rc;
5042}
5043
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044/*
5045 * libata is essentially a library of internal helper functions for
5046 * low-level ATA host controller drivers. As such, the API/ABI is
5047 * likely to change as new drivers are added and updated.
5048 * Do not depend on ABI/API stability.
5049 */
5050
5051EXPORT_SYMBOL_GPL(ata_std_bios_param);
5052EXPORT_SYMBOL_GPL(ata_std_ports);
5053EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005054EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055EXPORT_SYMBOL_GPL(ata_sg_init);
5056EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09005057EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
5059EXPORT_SYMBOL_GPL(ata_eng_timeout);
5060EXPORT_SYMBOL_GPL(ata_tf_load);
5061EXPORT_SYMBOL_GPL(ata_tf_read);
5062EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5063EXPORT_SYMBOL_GPL(ata_std_dev_select);
5064EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5065EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5066EXPORT_SYMBOL_GPL(ata_check_status);
5067EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068EXPORT_SYMBOL_GPL(ata_exec_command);
5069EXPORT_SYMBOL_GPL(ata_port_start);
5070EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005071EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072EXPORT_SYMBOL_GPL(ata_interrupt);
5073EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005074EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5076EXPORT_SYMBOL_GPL(ata_bmdma_start);
5077EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5078EXPORT_SYMBOL_GPL(ata_bmdma_status);
5079EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5080EXPORT_SYMBOL_GPL(ata_port_probe);
5081EXPORT_SYMBOL_GPL(sata_phy_reset);
5082EXPORT_SYMBOL_GPL(__sata_phy_reset);
5083EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005084EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005085EXPORT_SYMBOL_GPL(ata_std_softreset);
5086EXPORT_SYMBOL_GPL(sata_std_hardreset);
5087EXPORT_SYMBOL_GPL(ata_std_postreset);
5088EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005089EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005090EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005091EXPORT_SYMBOL_GPL(ata_dev_classify);
5092EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005094EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005095EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005096EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5098EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
5099EXPORT_SYMBOL_GPL(ata_scsi_error);
5100EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5101EXPORT_SYMBOL_GPL(ata_scsi_release);
5102EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo6a62a042006-02-13 10:02:46 +09005103EXPORT_SYMBOL_GPL(ata_id_string);
5104EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105EXPORT_SYMBOL_GPL(ata_scsi_simulate);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005106EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5107EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005109EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005110EXPORT_SYMBOL_GPL(ata_timing_compute);
5111EXPORT_SYMBOL_GPL(ata_timing_merge);
5112
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113#ifdef CONFIG_PCI
5114EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005115EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5117EXPORT_SYMBOL_GPL(ata_pci_init_one);
5118EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005119EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5120EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005121EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5122EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005124
5125EXPORT_SYMBOL_GPL(ata_device_suspend);
5126EXPORT_SYMBOL_GPL(ata_device_resume);
5127EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5128EXPORT_SYMBOL_GPL(ata_scsi_device_resume);