blob: da13deccc0e0e2d2aa08aa3a2a394085dbff1c85 [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 {
Tejun Heobe9a50c82006-03-31 22:48:52 +0900281 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900282 u8 base;
283} ata_xfer_tbl[] = {
284 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
285 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
286 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
287 { -1, },
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 Heo4c360c82006-04-01 01:38:17 +0900400static const char *sata_spd_string(unsigned int spd)
401{
402 static const char * const spd_str[] = {
403 "1.5 Gbps",
404 "3.0 Gbps",
405 };
406
407 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
408 return "<unknown>";
409 return spd_str[spd - 1];
410}
411
Tejun Heo0b8efb02006-03-24 15:25:31 +0900412static void ata_dev_disable(struct ata_port *ap, struct ata_device *dev)
413{
Tejun Heoe1211e32006-04-01 01:38:18 +0900414 if (ata_dev_enabled(dev)) {
Tejun Heo0b8efb02006-03-24 15:25:31 +0900415 printk(KERN_WARNING "ata%u: dev %u disabled\n",
416 ap->id, dev->devno);
417 dev->class++;
418 }
419}
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/**
422 * ata_pio_devchk - PATA device presence detection
423 * @ap: ATA channel to examine
424 * @device: Device to examine (starting at zero)
425 *
426 * This technique was originally described in
427 * Hale Landis's ATADRVR (www.ata-atapi.com), and
428 * later found its way into the ATA/ATAPI spec.
429 *
430 * Write a pattern to the ATA shadow registers,
431 * and if a device is present, it will respond by
432 * correctly storing and echoing back the
433 * ATA shadow register contents.
434 *
435 * LOCKING:
436 * caller.
437 */
438
439static unsigned int ata_pio_devchk(struct ata_port *ap,
440 unsigned int device)
441{
442 struct ata_ioports *ioaddr = &ap->ioaddr;
443 u8 nsect, lbal;
444
445 ap->ops->dev_select(ap, device);
446
447 outb(0x55, ioaddr->nsect_addr);
448 outb(0xaa, ioaddr->lbal_addr);
449
450 outb(0xaa, ioaddr->nsect_addr);
451 outb(0x55, ioaddr->lbal_addr);
452
453 outb(0x55, ioaddr->nsect_addr);
454 outb(0xaa, ioaddr->lbal_addr);
455
456 nsect = inb(ioaddr->nsect_addr);
457 lbal = inb(ioaddr->lbal_addr);
458
459 if ((nsect == 0x55) && (lbal == 0xaa))
460 return 1; /* we found a device */
461
462 return 0; /* nothing found */
463}
464
465/**
466 * ata_mmio_devchk - PATA device presence detection
467 * @ap: ATA channel to examine
468 * @device: Device to examine (starting at zero)
469 *
470 * This technique was originally described in
471 * Hale Landis's ATADRVR (www.ata-atapi.com), and
472 * later found its way into the ATA/ATAPI spec.
473 *
474 * Write a pattern to the ATA shadow registers,
475 * and if a device is present, it will respond by
476 * correctly storing and echoing back the
477 * ATA shadow register contents.
478 *
479 * LOCKING:
480 * caller.
481 */
482
483static unsigned int ata_mmio_devchk(struct ata_port *ap,
484 unsigned int device)
485{
486 struct ata_ioports *ioaddr = &ap->ioaddr;
487 u8 nsect, lbal;
488
489 ap->ops->dev_select(ap, device);
490
491 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
492 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
493
494 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
495 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
496
497 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
498 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
499
500 nsect = readb((void __iomem *) ioaddr->nsect_addr);
501 lbal = readb((void __iomem *) ioaddr->lbal_addr);
502
503 if ((nsect == 0x55) && (lbal == 0xaa))
504 return 1; /* we found a device */
505
506 return 0; /* nothing found */
507}
508
509/**
510 * ata_devchk - PATA device presence detection
511 * @ap: ATA channel to examine
512 * @device: Device to examine (starting at zero)
513 *
514 * Dispatch ATA device presence detection, depending
515 * on whether we are using PIO or MMIO to talk to the
516 * ATA shadow registers.
517 *
518 * LOCKING:
519 * caller.
520 */
521
522static unsigned int ata_devchk(struct ata_port *ap,
523 unsigned int device)
524{
525 if (ap->flags & ATA_FLAG_MMIO)
526 return ata_mmio_devchk(ap, device);
527 return ata_pio_devchk(ap, device);
528}
529
530/**
531 * ata_dev_classify - determine device type based on ATA-spec signature
532 * @tf: ATA taskfile register set for device to be identified
533 *
534 * Determine from taskfile register contents whether a device is
535 * ATA or ATAPI, as per "Signature and persistence" section
536 * of ATA/PI spec (volume 1, sect 5.14).
537 *
538 * LOCKING:
539 * None.
540 *
541 * RETURNS:
542 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
543 * the event of failure.
544 */
545
Jeff Garzik057ace52005-10-22 14:27:05 -0400546unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 /* Apple's open source Darwin code hints that some devices only
549 * put a proper signature into the LBA mid/high registers,
550 * So, we only check those. It's sufficient for uniqueness.
551 */
552
553 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
554 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
555 DPRINTK("found ATA device by sig\n");
556 return ATA_DEV_ATA;
557 }
558
559 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
560 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
561 DPRINTK("found ATAPI device by sig\n");
562 return ATA_DEV_ATAPI;
563 }
564
565 DPRINTK("unknown device\n");
566 return ATA_DEV_UNKNOWN;
567}
568
569/**
570 * ata_dev_try_classify - Parse returned ATA device signature
571 * @ap: ATA channel to examine
572 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900573 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 *
575 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
576 * an ATA/ATAPI-defined set of values is placed in the ATA
577 * shadow registers, indicating the results of device detection
578 * and diagnostics.
579 *
580 * Select the ATA device, and read the values from the ATA shadow
581 * registers. Then parse according to the Error register value,
582 * and the spec-defined values examined by ata_dev_classify().
583 *
584 * LOCKING:
585 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900586 *
587 * RETURNS:
588 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
590
Tejun Heob4dc7622006-01-24 17:05:22 +0900591static unsigned int
592ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 struct ata_taskfile tf;
595 unsigned int class;
596 u8 err;
597
598 ap->ops->dev_select(ap, device);
599
600 memset(&tf, 0, sizeof(tf));
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400603 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900604 if (r_err)
605 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 /* see if device passed diags */
608 if (err == 1)
609 /* do nothing */ ;
610 else if ((device == 0) && (err == 0x81))
611 /* do nothing */ ;
612 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900613 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Tejun Heob4dc7622006-01-24 17:05:22 +0900615 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900619 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900621 return ATA_DEV_NONE;
622 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900626 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 * @id: IDENTIFY DEVICE results we will examine
628 * @s: string into which data is output
629 * @ofs: offset into identify device page
630 * @len: length of string to return. must be an even number.
631 *
632 * The strings in the IDENTIFY DEVICE page are broken up into
633 * 16-bit chunks. Run through the string, and output each
634 * 8-bit chunk linearly, regardless of platform.
635 *
636 * LOCKING:
637 * caller.
638 */
639
Tejun Heo6a62a042006-02-13 10:02:46 +0900640void ata_id_string(const u16 *id, unsigned char *s,
641 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 unsigned int c;
644
645 while (len > 0) {
646 c = id[ofs] >> 8;
647 *s = c;
648 s++;
649
650 c = id[ofs] & 0xff;
651 *s = c;
652 s++;
653
654 ofs++;
655 len -= 2;
656 }
657}
658
Tejun Heo0e949ff2006-02-12 22:47:04 +0900659/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900660 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900661 * @id: IDENTIFY DEVICE results we will examine
662 * @s: string into which data is output
663 * @ofs: offset into identify device page
664 * @len: length of string to return. must be an odd number.
665 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900666 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900667 * trims trailing spaces and terminates the resulting string with
668 * null. @len must be actual maximum length (even number) + 1.
669 *
670 * LOCKING:
671 * caller.
672 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900673void ata_id_c_string(const u16 *id, unsigned char *s,
674 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900675{
676 unsigned char *p;
677
678 WARN_ON(!(len & 1));
679
Tejun Heo6a62a042006-02-13 10:02:46 +0900680 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900681
682 p = s + strnlen(s, len - 1);
683 while (p > s && p[-1] == ' ')
684 p--;
685 *p = '\0';
686}
Edward Falk0baab862005-06-02 18:17:13 -0400687
Tejun Heo29407402006-02-12 22:47:04 +0900688static u64 ata_id_n_sectors(const u16 *id)
689{
690 if (ata_id_has_lba(id)) {
691 if (ata_id_has_lba48(id))
692 return ata_id_u64(id, 100);
693 else
694 return ata_id_u32(id, 60);
695 } else {
696 if (ata_id_current_chs_valid(id))
697 return ata_id_u32(id, 57);
698 else
699 return id[1] * id[3] * id[6];
700 }
701}
Edward Falk0baab862005-06-02 18:17:13 -0400702
703/**
704 * ata_noop_dev_select - Select device 0/1 on ATA bus
705 * @ap: ATA channel to manipulate
706 * @device: ATA device (numbered from zero) to select
707 *
708 * This function performs no actual function.
709 *
710 * May be used as the dev_select() entry in ata_port_operations.
711 *
712 * LOCKING:
713 * caller.
714 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
716{
717}
718
Edward Falk0baab862005-06-02 18:17:13 -0400719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720/**
721 * ata_std_dev_select - Select device 0/1 on ATA bus
722 * @ap: ATA channel to manipulate
723 * @device: ATA device (numbered from zero) to select
724 *
725 * Use the method defined in the ATA specification to
726 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400727 * ATA channel. Works with both PIO and MMIO.
728 *
729 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 *
731 * LOCKING:
732 * caller.
733 */
734
735void ata_std_dev_select (struct ata_port *ap, unsigned int device)
736{
737 u8 tmp;
738
739 if (device == 0)
740 tmp = ATA_DEVICE_OBS;
741 else
742 tmp = ATA_DEVICE_OBS | ATA_DEV1;
743
744 if (ap->flags & ATA_FLAG_MMIO) {
745 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
746 } else {
747 outb(tmp, ap->ioaddr.device_addr);
748 }
749 ata_pause(ap); /* needed; also flushes, for mmio */
750}
751
752/**
753 * ata_dev_select - Select device 0/1 on ATA bus
754 * @ap: ATA channel to manipulate
755 * @device: ATA device (numbered from zero) to select
756 * @wait: non-zero to wait for Status register BSY bit to clear
757 * @can_sleep: non-zero if context allows sleeping
758 *
759 * Use the method defined in the ATA specification to
760 * make either device 0, or device 1, active on the
761 * ATA channel.
762 *
763 * This is a high-level version of ata_std_dev_select(),
764 * which additionally provides the services of inserting
765 * the proper pauses and status polling, where needed.
766 *
767 * LOCKING:
768 * caller.
769 */
770
771void ata_dev_select(struct ata_port *ap, unsigned int device,
772 unsigned int wait, unsigned int can_sleep)
773{
774 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
775 ap->id, device, wait);
776
777 if (wait)
778 ata_wait_idle(ap);
779
780 ap->ops->dev_select(ap, device);
781
782 if (wait) {
783 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
784 msleep(150);
785 ata_wait_idle(ap);
786 }
787}
788
789/**
790 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900791 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900793 * Dump selected 16-bit words from the given IDENTIFY DEVICE
794 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *
796 * LOCKING:
797 * caller.
798 */
799
Tejun Heo0bd33002006-02-12 22:47:05 +0900800static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 DPRINTK("49==0x%04x "
803 "53==0x%04x "
804 "63==0x%04x "
805 "64==0x%04x "
806 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900807 id[49],
808 id[53],
809 id[63],
810 id[64],
811 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 DPRINTK("80==0x%04x "
813 "81==0x%04x "
814 "82==0x%04x "
815 "83==0x%04x "
816 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900817 id[80],
818 id[81],
819 id[82],
820 id[83],
821 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 DPRINTK("88==0x%04x "
823 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900824 id[88],
825 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Tejun Heocb95d562006-03-06 04:31:56 +0900828/**
829 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
830 * @id: IDENTIFY data to compute xfer mask from
Alan Cox11e29e22005-10-21 18:46:32 -0400831 *
Tejun Heocb95d562006-03-06 04:31:56 +0900832 * Compute the xfermask for this device. This is not as trivial
833 * as it seems if we must consider early devices correctly.
834 *
835 * FIXME: pre IDE drive timing (do we care ?).
836 *
837 * LOCKING:
838 * None.
839 *
840 * RETURNS:
841 * Computed xfermask
Alan Cox11e29e22005-10-21 18:46:32 -0400842 */
Tejun Heocb95d562006-03-06 04:31:56 +0900843static unsigned int ata_id_xfermask(const u16 *id)
Alan Cox11e29e22005-10-21 18:46:32 -0400844{
Tejun Heocb95d562006-03-06 04:31:56 +0900845 unsigned int pio_mask, mwdma_mask, udma_mask;
Alan Cox11e29e22005-10-21 18:46:32 -0400846
Alan Coxffa29452006-01-09 17:14:40 +0000847 /* Usual case. Word 53 indicates word 64 is valid */
Tejun Heocb95d562006-03-06 04:31:56 +0900848 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
849 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
850 pio_mask <<= 3;
851 pio_mask |= 0x7;
852 } else {
853 /* If word 64 isn't valid then Word 51 high byte holds
854 * the PIO timing number for the maximum. Turn it into
855 * a mask.
856 */
857 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
858
859 /* But wait.. there's more. Design your standards by
860 * committee and you too can get a free iordy field to
861 * process. However its the speeds not the modes that
862 * are supported... Note drivers using the timing API
863 * will get this right anyway
864 */
Alan Cox11e29e22005-10-21 18:46:32 -0400865 }
866
Tejun Heocb95d562006-03-06 04:31:56 +0900867 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900868
869 udma_mask = 0;
870 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
871 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Alan Cox11e29e22005-10-21 18:46:32 -0400872
Tejun Heocb95d562006-03-06 04:31:56 +0900873 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
Tejun Heoc18d06f2006-02-02 00:56:10 +0900874}
875
876/**
Tejun Heo86e45b62006-03-05 15:29:09 +0900877 * ata_port_queue_task - Queue port_task
878 * @ap: The ata_port to queue port_task for
Tejun Heoc18d06f2006-02-02 00:56:10 +0900879 *
Tejun Heo86e45b62006-03-05 15:29:09 +0900880 * Schedule @fn(@data) for execution after @delay jiffies using
881 * port_task. There is one port_task per port and it's the
882 * user(low level driver)'s responsibility to make sure that only
883 * one task is active at any given time.
884 *
885 * libata core layer takes care of synchronization between
886 * port_task and EH. ata_port_queue_task() may be ignored for EH
887 * synchronization.
888 *
889 * LOCKING:
890 * Inherited from caller.
891 */
892void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
893 unsigned long delay)
894{
895 int rc;
896
Tejun Heo2e755f62006-03-05 15:29:09 +0900897 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900898 return;
899
900 PREPARE_WORK(&ap->port_task, fn, data);
901
902 if (!delay)
903 rc = queue_work(ata_wq, &ap->port_task);
904 else
905 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
906
907 /* rc == 0 means that another user is using port task */
908 WARN_ON(rc == 0);
909}
910
911/**
912 * ata_port_flush_task - Flush port_task
913 * @ap: The ata_port to flush port_task for
914 *
915 * After this function completes, port_task is guranteed not to
916 * be running or scheduled.
Tejun Heoc18d06f2006-02-02 00:56:10 +0900917 *
918 * LOCKING:
919 * Kernel thread context (may sleep)
920 */
Tejun Heo86e45b62006-03-05 15:29:09 +0900921void ata_port_flush_task(struct ata_port *ap)
Tejun Heoc18d06f2006-02-02 00:56:10 +0900922{
Tejun Heoc18d06f2006-02-02 00:56:10 +0900923 unsigned long flags;
924
925 DPRINTK("ENTER\n");
926
927 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900928 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heoc18d06f2006-02-02 00:56:10 +0900929 spin_unlock_irqrestore(&ap->host_set->lock, flags);
930
931 DPRINTK("flush #1\n");
932 flush_workqueue(ata_wq);
933
934 /*
935 * At this point, if a task is running, it's guaranteed to see
936 * the FLUSH flag; thus, it will never queue pio tasks again.
937 * Cancel and flush.
938 */
Tejun Heo86e45b62006-03-05 15:29:09 +0900939 if (!cancel_delayed_work(&ap->port_task)) {
Tejun Heoc18d06f2006-02-02 00:56:10 +0900940 DPRINTK("flush #2\n");
941 flush_workqueue(ata_wq);
942 }
943
944 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900945 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heoc18d06f2006-02-02 00:56:10 +0900946 spin_unlock_irqrestore(&ap->host_set->lock, flags);
947
948 DPRINTK("EXIT\n");
Tejun Heo95064372006-01-23 13:09:37 +0900949}
950
Tejun Heo77853bf2006-01-23 13:09:36 +0900951void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Jeff Garzik64f043d2005-11-17 10:50:01 -0500952{
Tejun Heo77853bf2006-01-23 13:09:36 +0900953 struct completion *waiting = qc->private_data;
Jeff Garzik64f043d2005-11-17 10:50:01 -0500954
Tejun Heo77853bf2006-01-23 13:09:36 +0900955 qc->ap->ops->tf_read(qc->ap, &qc->tf);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900956 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900957}
Jeff Garzik64f043d2005-11-17 10:50:01 -0500958
Tejun Heoa2a7a662005-12-13 14:48:31 +0900959/**
960 * ata_exec_internal - execute libata internal command
961 * @ap: Port to which the command is sent
962 * @dev: Device to which the command is sent
963 * @tf: Taskfile registers for the command and the result
964 * @dma_dir: Data tranfer direction of the command
965 * @buf: Data buffer of the command
966 * @buflen: Length of data buffer
967 *
968 * Executes libata internal command with timeout. @tf contains
969 * command on entry and result on return. Timeout and error
970 * conditions are reported via return value. No recovery action
971 * is taken after a command times out. It's caller's duty to
972 * clean up after timeout.
973 *
974 * LOCKING:
975 * None. Should be called with kernel context, might sleep.
976 */
977
978static unsigned
979ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
980 struct ata_taskfile *tf,
981 int dma_dir, void *buf, unsigned int buflen)
982{
983 u8 command = tf->command;
984 struct ata_queued_cmd *qc;
985 DECLARE_COMPLETION(wait);
986 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900987 unsigned int err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900988
989 spin_lock_irqsave(&ap->host_set->lock, flags);
990
991 qc = ata_qc_new_init(ap, dev);
992 BUG_ON(qc == NULL);
993
994 qc->tf = *tf;
995 qc->dma_dir = dma_dir;
996 if (dma_dir != DMA_NONE) {
997 ata_sg_init_one(qc, buf, buflen);
998 qc->nsect = buflen / ATA_SECT_SIZE;
Jeff Garzik64f043d2005-11-17 10:50:01 -0500999 }
1000
Tejun Heo77853bf2006-01-23 13:09:36 +09001001 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001002 qc->complete_fn = ata_qc_complete_internal;
1003
Tejun Heo8e0e6942006-03-31 20:41:11 +09001004 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001005
1006 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1007
1008 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
Albert Lee41ade502006-03-14 11:19:04 +08001009 ata_port_flush_task(ap);
1010
Tejun Heoa2a7a662005-12-13 14:48:31 +09001011 spin_lock_irqsave(&ap->host_set->lock, flags);
1012
1013 /* We're racing with irq here. If we lose, the
1014 * following test prevents us from completing the qc
1015 * again. If completion irq occurs after here but
1016 * before the caller cleans up, it will result in a
1017 * spurious interrupt. We can live with that.
1018 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001019 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001020 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001021 ata_qc_complete(qc);
1022 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1023 ap->id, command);
1024 }
1025
1026 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1027 }
1028
Tejun Heo77853bf2006-01-23 13:09:36 +09001029 *tf = qc->tf;
1030 err_mask = qc->err_mask;
1031
1032 ata_qc_free(qc);
1033
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001034 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1035 * Until those drivers are fixed, we detect the condition
1036 * here, fail the command with AC_ERR_SYSTEM and reenable the
1037 * port.
1038 *
1039 * Note that this doesn't change any behavior as internal
1040 * command failure results in disabling the device in the
1041 * higher layer for LLDDs without new reset/EH callbacks.
1042 *
1043 * Kill the following code as soon as those drivers are fixed.
1044 */
1045 if (ap->flags & ATA_FLAG_PORT_DISABLED) {
1046 err_mask |= AC_ERR_SYSTEM;
1047 ata_port_probe(ap);
1048 }
1049
Tejun Heo77853bf2006-01-23 13:09:36 +09001050 return err_mask;
Jeff Garzik64f043d2005-11-17 10:50:01 -05001051}
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001054 * ata_pio_need_iordy - check if iordy needed
1055 * @adev: ATA device
1056 *
1057 * Check if the current speed of the device requires IORDY. Used
1058 * by various controllers for chip configuration.
1059 */
1060
1061unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1062{
1063 int pio;
1064 int speed = adev->pio_mode - XFER_PIO_0;
1065
1066 if (speed < 2)
1067 return 0;
1068 if (speed > 2)
1069 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001070
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001071 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1072
1073 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1074 pio = adev->id[ATA_ID_EIDE_PIO];
1075 /* Is the speed faster than the drive allows non IORDY ? */
1076 if (pio) {
1077 /* This is cycle times not frequency - watch the logic! */
1078 if (pio > 240) /* PIO2 is 240nS per cycle */
1079 return 1;
1080 return 0;
1081 }
1082 }
1083 return 0;
1084}
1085
1086/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001087 * ata_dev_read_id - Read ID data from the specified device
1088 * @ap: port on which target device resides
1089 * @dev: target device
1090 * @p_class: pointer to class of the target device (may be changed)
1091 * @post_reset: is this read ID post-reset?
Tejun Heod9572b12006-03-01 16:09:35 +09001092 * @p_id: read IDENTIFY page (newly allocated)
Tejun Heo49016ac2006-02-21 02:12:11 +09001093 *
1094 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1095 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001096 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1097 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001098 *
1099 * LOCKING:
1100 * Kernel thread context (may sleep)
1101 *
1102 * RETURNS:
1103 * 0 on success, -errno otherwise.
1104 */
1105static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev,
Tejun Heod9572b12006-03-01 16:09:35 +09001106 unsigned int *p_class, int post_reset, u16 **p_id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001107{
1108 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001109 struct ata_taskfile tf;
1110 unsigned int err_mask = 0;
Tejun Heod9572b12006-03-01 16:09:35 +09001111 u16 *id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001112 const char *reason;
1113 int rc;
1114
1115 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1116
Tejun Heo49016ac2006-02-21 02:12:11 +09001117 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1118
Tejun Heod9572b12006-03-01 16:09:35 +09001119 id = kmalloc(sizeof(id[0]) * ATA_ID_WORDS, GFP_KERNEL);
1120 if (id == NULL) {
1121 rc = -ENOMEM;
1122 reason = "out of memory";
1123 goto err_out;
1124 }
1125
Tejun Heo49016ac2006-02-21 02:12:11 +09001126 retry:
1127 ata_tf_init(ap, &tf, dev->devno);
1128
1129 switch (class) {
1130 case ATA_DEV_ATA:
1131 tf.command = ATA_CMD_ID_ATA;
1132 break;
1133 case ATA_DEV_ATAPI:
1134 tf.command = ATA_CMD_ID_ATAPI;
1135 break;
1136 default:
1137 rc = -ENODEV;
1138 reason = "unsupported class";
1139 goto err_out;
1140 }
1141
1142 tf.protocol = ATA_PROT_PIO;
1143
1144 err_mask = ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
1145 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001146 if (err_mask) {
1147 rc = -EIO;
1148 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001149 goto err_out;
1150 }
1151
1152 swap_buf_le16(id, ATA_ID_WORDS);
1153
Tejun Heo49016ac2006-02-21 02:12:11 +09001154 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001155 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001156 rc = -EINVAL;
1157 reason = "device reports illegal type";
1158 goto err_out;
1159 }
1160
1161 if (post_reset && class == ATA_DEV_ATA) {
1162 /*
1163 * The exact sequence expected by certain pre-ATA4 drives is:
1164 * SRST RESET
1165 * IDENTIFY
1166 * INITIALIZE DEVICE PARAMETERS
1167 * anything else..
1168 * Some drives were very specific about that exact sequence.
1169 */
1170 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Albert Lee00b6f5e2006-03-27 16:39:18 +08001171 err_mask = ata_dev_init_params(ap, dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001172 if (err_mask) {
1173 rc = -EIO;
1174 reason = "INIT_DEV_PARAMS failed";
1175 goto err_out;
1176 }
1177
1178 /* current CHS translation info (id[53-58]) might be
1179 * changed. reread the identify device info.
1180 */
1181 post_reset = 0;
1182 goto retry;
1183 }
1184 }
1185
1186 *p_class = class;
Tejun Heod9572b12006-03-01 16:09:35 +09001187 *p_id = id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001188 return 0;
1189
1190 err_out:
1191 printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1192 ap->id, dev->devno, reason);
Tejun Heod9572b12006-03-01 16:09:35 +09001193 kfree(id);
Tejun Heo49016ac2006-02-21 02:12:11 +09001194 return rc;
1195}
1196
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001197static inline u8 ata_dev_knobble(const struct ata_port *ap,
1198 struct ata_device *dev)
1199{
1200 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
1201}
1202
Tejun Heo49016ac2006-02-21 02:12:11 +09001203/**
Tejun Heoffeae412006-03-01 16:09:35 +09001204 * ata_dev_configure - Configure the specified ATA/ATAPI device
1205 * @ap: Port on which target device resides
1206 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001207 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 *
Tejun Heoffeae412006-03-01 16:09:35 +09001209 * Configure @dev according to @dev->id. Generic and low-level
1210 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 *
1212 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001213 * Kernel thread context (may sleep)
1214 *
1215 * RETURNS:
1216 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001218static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
1219 int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Tejun Heo1148c3a2006-03-13 19:48:04 +09001221 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001222 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001223 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Tejun Heoe1211e32006-04-01 01:38:18 +09001225 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001227 ap->id, dev->devno);
1228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
Tejun Heoffeae412006-03-01 16:09:35 +09001231 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001233 /* print device capabilities */
1234 if (print_info)
1235 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1236 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1237 ap->id, dev->devno, id[49], id[82], id[83],
1238 id[84], id[85], id[86], id[87], id[88]);
1239
Tejun Heo208a9932006-03-05 17:55:58 +09001240 /* initialize to-be-configured parameters */
1241 dev->flags = 0;
1242 dev->max_sectors = 0;
1243 dev->cdb_len = 0;
1244 dev->n_sectors = 0;
1245 dev->cylinders = 0;
1246 dev->heads = 0;
1247 dev->sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 /*
1250 * common ATA, ATAPI feature tests
1251 */
1252
Tejun Heoff8854b2006-03-06 04:31:56 +09001253 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001254 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Tejun Heo1148c3a2006-03-13 19:48:04 +09001256 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 /* ATA-specific feature tests */
1259 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001260 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001261
Tejun Heo1148c3a2006-03-13 19:48:04 +09001262 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001263 const char *lba_desc;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001264
Tejun Heo4c2d7212006-03-05 17:55:58 +09001265 lba_desc = "LBA";
1266 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001267 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001268 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001269 lba_desc = "LBA48";
1270 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001271
1272 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001273 if (print_info)
1274 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1275 "max %s, %Lu sectors: %s\n",
1276 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001277 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001278 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001279 (unsigned long long)dev->n_sectors,
1280 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001281 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001282 /* CHS */
1283
1284 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001285 dev->cylinders = id[1];
1286 dev->heads = id[3];
1287 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001288
Tejun Heo1148c3a2006-03-13 19:48:04 +09001289 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001290 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001291 dev->cylinders = id[54];
1292 dev->heads = id[55];
1293 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001294 }
1295
1296 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001297 if (print_info)
1298 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1299 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1300 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001301 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001302 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001303 (unsigned long long)dev->n_sectors,
1304 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306
Albert Lee07f6f7d2005-11-01 19:33:20 +08001307 if (dev->id[59] & 0x100) {
1308 dev->multi_count = dev->id[59] & 0xff;
1309 DPRINTK("ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001310 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001311 }
1312
Albert Lee13ee4622006-03-25 17:39:34 +08001313 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315
1316 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001317 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001318 char *cdb_intr_string = "";
1319
Tejun Heo1148c3a2006-03-13 19:48:04 +09001320 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1322 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001323 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 goto err_out_nosup;
1325 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001326 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Albert Lee08a556d2006-03-31 13:29:04 +08001328 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001329 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001330 cdb_intr_string = ", CDB intr";
1331 }
Albert Lee312f7da2005-09-27 17:38:03 +08001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001334 if (print_info)
Albert Lee08a556d2006-03-31 13:29:04 +08001335 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s%s\n",
1336 ap->id, dev->devno, ata_mode_string(xfer_mask),
1337 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
Tejun Heo6e7846e2006-02-12 23:32:58 +09001340 ap->host->max_cmd_len = 0;
1341 for (i = 0; i < ATA_MAX_DEVICES; i++)
1342 ap->host->max_cmd_len = max_t(unsigned int,
1343 ap->host->max_cmd_len,
1344 ap->device[i].cdb_len);
1345
Brad Campbell6f2f3812005-05-12 15:07:47 -04001346 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001347 if (ata_dev_knobble(ap, dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001348 if (print_info)
1349 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1350 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001351 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001352 dev->max_sectors = ATA_MAX_SECTORS;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001353 }
1354
1355 if (ap->ops->dev_config)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001356 ap->ops->dev_config(ap, dev);
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001363 return rc;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001364}
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366/**
1367 * ata_bus_probe - Reset and probe ATA bus
1368 * @ap: Bus to probe
1369 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001370 * Master ATA bus probing function. Initiates a hardware-dependent
1371 * bus reset, then attempts to identify any devices found on
1372 * the bus.
1373 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001375 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 *
1377 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001378 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 */
1380
1381static int ata_bus_probe(struct ata_port *ap)
1382{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001383 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo96072e62006-04-01 01:38:17 +09001384 int i, rc, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Tejun Heo28ca5c52006-03-01 16:09:36 +09001386 ata_port_probe(ap);
1387
Tejun Heo20444702006-03-13 01:57:01 +09001388 /* reset and determine device classes */
1389 for (i = 0; i < ATA_MAX_DEVICES; i++)
1390 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001391
Tejun Heo20444702006-03-13 01:57:01 +09001392 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001393 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001394 if (rc) {
1395 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1396 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001397 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001398 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001399 ap->ops->phy_reset(ap);
1400
Tejun Heo20444702006-03-13 01:57:01 +09001401 if (!(ap->flags & ATA_FLAG_PORT_DISABLED))
1402 for (i = 0; i < ATA_MAX_DEVICES; i++)
Tejun Heo28ca5c52006-03-01 16:09:36 +09001403 classes[i] = ap->device[i].class;
Tejun Heo20444702006-03-13 01:57:01 +09001404
Tejun Heo28ca5c52006-03-01 16:09:36 +09001405 ata_port_probe(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407
Tejun Heo20444702006-03-13 01:57:01 +09001408 for (i = 0; i < ATA_MAX_DEVICES; i++)
1409 if (classes[i] == ATA_DEV_UNKNOWN)
1410 classes[i] = ATA_DEV_NONE;
1411
Tejun Heo28ca5c52006-03-01 16:09:36 +09001412 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoffeae412006-03-01 16:09:35 +09001414 struct ata_device *dev = &ap->device[i];
1415
Tejun Heo28ca5c52006-03-01 16:09:36 +09001416 dev->class = classes[i];
1417
Tejun Heoe1211e32006-04-01 01:38:18 +09001418 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001419 continue;
1420
1421 WARN_ON(dev->id != NULL);
1422 if (ata_dev_read_id(ap, dev, &dev->class, 1, &dev->id)) {
1423 dev->class = ATA_DEV_NONE;
1424 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
Tejun Heoffeae412006-03-01 16:09:35 +09001426
Tejun Heo4c2d7212006-03-05 17:55:58 +09001427 if (ata_dev_configure(ap, dev, 1)) {
Tejun Heofcef9782006-03-24 15:25:31 +09001428 ata_dev_disable(ap, dev);
Tejun Heoffeae412006-03-01 16:09:35 +09001429 continue;
1430 }
1431
Tejun Heoffeae412006-03-01 16:09:35 +09001432 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434
Tejun Heo28ca5c52006-03-01 16:09:36 +09001435 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 goto err_out_disable;
1437
Alan Coxe35a9e02006-03-27 18:46:37 +01001438 if (ap->ops->set_mode)
1439 ap->ops->set_mode(ap);
1440 else
1441 ata_set_mode(ap);
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1444 goto err_out_disable;
1445
1446 return 0;
1447
1448err_out_disable:
1449 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001450 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
1453/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001454 * ata_port_probe - Mark port as enabled
1455 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001457 * Modify @ap data structure such that the system
1458 * thinks that the entire port is enabled.
1459 *
1460 * LOCKING: host_set lock, or some other form of
1461 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 */
1463
1464void ata_port_probe(struct ata_port *ap)
1465{
1466 ap->flags &= ~ATA_FLAG_PORT_DISABLED;
1467}
1468
1469/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001470 * sata_print_link_status - Print SATA link status
1471 * @ap: SATA port to printk link status about
1472 *
1473 * This function prints link speed and status of a SATA link.
1474 *
1475 * LOCKING:
1476 * None.
1477 */
1478static void sata_print_link_status(struct ata_port *ap)
1479{
1480 u32 sstatus, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001481
1482 if (!ap->ops->scr_read)
1483 return;
1484
1485 sstatus = scr_read(ap, SCR_STATUS);
1486
1487 if (sata_dev_present(ap)) {
1488 tmp = (sstatus >> 4) & 0xf;
Tejun Heo4c360c82006-04-01 01:38:17 +09001489 printk(KERN_INFO "ata%u: SATA link up %s (SStatus %X)\n",
1490 ap->id, sata_spd_string(tmp), sstatus);
Tejun Heo3be680b2005-12-19 22:35:02 +09001491 } else {
1492 printk(KERN_INFO "ata%u: SATA link down (SStatus %X)\n",
1493 ap->id, sstatus);
1494 }
1495}
1496
1497/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001498 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1499 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001501 * This function issues commands to standard SATA Sxxx
1502 * PHY registers, to wake up the phy (and device), and
1503 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 *
1505 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001506 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 *
1508 */
1509void __sata_phy_reset(struct ata_port *ap)
1510{
1511 u32 sstatus;
1512 unsigned long timeout = jiffies + (HZ * 5);
1513
1514 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001515 /* issue phy wake/reset */
1516 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001517 /* Couldn't find anything in SATA I/II specs, but
1518 * AHCI-1.1 10.4.2 says at least 1 ms. */
1519 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 }
Brett Russcdcca892005-03-28 15:10:27 -05001521 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 /* wait for phy to become ready, if necessary */
1524 do {
1525 msleep(200);
1526 sstatus = scr_read(ap, SCR_STATUS);
1527 if ((sstatus & 0xf) != 1)
1528 break;
1529 } while (time_before(jiffies, timeout));
1530
Tejun Heo3be680b2005-12-19 22:35:02 +09001531 /* print link status */
1532 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001533
Tejun Heo3be680b2005-12-19 22:35:02 +09001534 /* TODO: phy layer with polling, timeouts, etc. */
1535 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001537 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1541 return;
1542
1543 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1544 ata_port_disable(ap);
1545 return;
1546 }
1547
1548 ap->cbl = ATA_CBL_SATA;
1549}
1550
1551/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001552 * sata_phy_reset - Reset SATA bus.
1553 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001555 * This function resets the SATA bus, and then probes
1556 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 *
1558 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001559 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 *
1561 */
1562void sata_phy_reset(struct ata_port *ap)
1563{
1564 __sata_phy_reset(ap);
1565 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1566 return;
1567 ata_bus_reset(ap);
1568}
1569
1570/**
Alan Coxebdfca62006-03-23 15:38:34 +00001571 * ata_dev_pair - return other device on cable
1572 * @ap: port
1573 * @adev: device
1574 *
1575 * Obtain the other device on the same cable, or if none is
1576 * present NULL is returned
1577 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001578
Alan Coxebdfca62006-03-23 15:38:34 +00001579struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev)
1580{
1581 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001582 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001583 return NULL;
1584 return pair;
1585}
1586
1587/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001588 * ata_port_disable - Disable port.
1589 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001591 * Modify @ap data structure such that the system
1592 * thinks that the entire port is disabled, and should
1593 * never attempt to probe or communicate with devices
1594 * on this port.
1595 *
1596 * LOCKING: host_set lock, or some other form of
1597 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 */
1599
1600void ata_port_disable(struct ata_port *ap)
1601{
1602 ap->device[0].class = ATA_DEV_NONE;
1603 ap->device[1].class = ATA_DEV_NONE;
1604 ap->flags |= ATA_FLAG_PORT_DISABLED;
1605}
1606
Alan Cox452503f2005-10-21 19:01:32 -04001607/*
1608 * This mode timing computation functionality is ported over from
1609 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1610 */
1611/*
1612 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1613 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1614 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001615 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001616 */
1617
1618static const struct ata_timing ata_timing[] = {
1619
1620 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1621 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1622 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1623 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1624
1625 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1626 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1627 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1628
1629/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001630
Alan Cox452503f2005-10-21 19:01:32 -04001631 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1632 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1633 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001634
Alan Cox452503f2005-10-21 19:01:32 -04001635 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1636 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1637 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1638
1639/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1640 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1641 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1642
1643 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1644 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1645 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1646
1647/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1648
1649 { 0xFF }
1650};
1651
1652#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1653#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1654
1655static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1656{
1657 q->setup = EZ(t->setup * 1000, T);
1658 q->act8b = EZ(t->act8b * 1000, T);
1659 q->rec8b = EZ(t->rec8b * 1000, T);
1660 q->cyc8b = EZ(t->cyc8b * 1000, T);
1661 q->active = EZ(t->active * 1000, T);
1662 q->recover = EZ(t->recover * 1000, T);
1663 q->cycle = EZ(t->cycle * 1000, T);
1664 q->udma = EZ(t->udma * 1000, UT);
1665}
1666
1667void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1668 struct ata_timing *m, unsigned int what)
1669{
1670 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1671 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1672 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1673 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1674 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1675 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1676 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1677 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1678}
1679
1680static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1681{
1682 const struct ata_timing *t;
1683
1684 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001685 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001686 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001687 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001688}
1689
1690int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1691 struct ata_timing *t, int T, int UT)
1692{
1693 const struct ata_timing *s;
1694 struct ata_timing p;
1695
1696 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001697 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001698 */
Alan Cox452503f2005-10-21 19:01:32 -04001699
1700 if (!(s = ata_timing_find_mode(speed)))
1701 return -EINVAL;
1702
Albert Lee75b1f2f2005-11-16 17:06:18 +08001703 memcpy(t, s, sizeof(*s));
1704
Alan Cox452503f2005-10-21 19:01:32 -04001705 /*
1706 * If the drive is an EIDE drive, it can tell us it needs extended
1707 * PIO/MW_DMA cycle timing.
1708 */
1709
1710 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1711 memset(&p, 0, sizeof(p));
1712 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1713 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1714 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1715 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1716 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1717 }
1718 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1719 }
1720
1721 /*
1722 * Convert the timing to bus clock counts.
1723 */
1724
Albert Lee75b1f2f2005-11-16 17:06:18 +08001725 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001726
1727 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001728 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1729 * S.M.A.R.T * and some other commands. We have to ensure that the
1730 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001731 */
1732
1733 if (speed > XFER_PIO_4) {
1734 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1735 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1736 }
1737
1738 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001739 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001740 */
1741
1742 if (t->act8b + t->rec8b < t->cyc8b) {
1743 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1744 t->rec8b = t->cyc8b - t->act8b;
1745 }
1746
1747 if (t->active + t->recover < t->cycle) {
1748 t->active += (t->cycle - (t->active + t->recover)) / 2;
1749 t->recover = t->cycle - t->active;
1750 }
1751
1752 return 0;
1753}
1754
Tejun Heo83206a22006-03-24 15:25:31 +09001755static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Tejun Heo83206a22006-03-24 15:25:31 +09001757 unsigned int err_mask;
1758 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 if (dev->xfer_shift == ATA_SHIFT_PIO)
1761 dev->flags |= ATA_DFLAG_PIO;
1762
Tejun Heo83206a22006-03-24 15:25:31 +09001763 err_mask = ata_dev_set_xfermode(ap, dev);
1764 if (err_mask) {
1765 printk(KERN_ERR
1766 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1767 ap->id, err_mask);
1768 return -EIO;
1769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Tejun Heo83206a22006-03-24 15:25:31 +09001771 rc = ata_dev_revalidate(ap, dev, 0);
1772 if (rc) {
1773 printk(KERN_ERR
1774 "ata%u: failed to revalidate after set xfermode\n",
1775 ap->id);
1776 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Tejun Heo23e71c32006-03-06 04:31:57 +09001779 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1780 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001783 ap->id, dev->devno,
1784 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001785 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788/**
1789 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1790 * @ap: port on which timings will be programmed
1791 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001792 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.).
1793 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001795 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
1797static void ata_set_mode(struct ata_port *ap)
1798{
Tejun Heoe8e06192006-04-01 01:38:18 +09001799 struct ata_device *dev;
Tejun Heo4f659772006-04-01 01:38:18 +09001800 int i, rc, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Tejun Heoa6d5a512006-03-06 04:31:57 +09001802 /* step 1: calculate xfer_mask */
1803 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09001804 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09001805
Tejun Heoe8e06192006-04-01 01:38:18 +09001806 dev = &ap->device[i];
1807
Tejun Heoe1211e32006-04-01 01:38:18 +09001808 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09001809 continue;
1810
Tejun Heoacf356b2006-03-24 14:07:50 +09001811 ata_dev_xfermask(ap, dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09001812
Tejun Heoacf356b2006-03-24 14:07:50 +09001813 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
1814 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
1815 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
1816 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01001817
Tejun Heo4f659772006-04-01 01:38:18 +09001818 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01001819 if (dev->dma_mode)
1820 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09001821 }
Tejun Heo4f659772006-04-01 01:38:18 +09001822 if (!found)
1823 return;
Tejun Heoa6d5a512006-03-06 04:31:57 +09001824
1825 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09001826 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1827 dev = &ap->device[i];
1828 if (!ata_dev_enabled(dev))
1829 continue;
1830
1831 if (!dev->pio_mode) {
1832 printk(KERN_WARNING "ata%u: dev %u no PIO support\n",
1833 ap->id, dev->devno);
1834 rc = -EINVAL;
1835 goto err_out;
1836 }
1837
1838 dev->xfer_mode = dev->pio_mode;
1839 dev->xfer_shift = ATA_SHIFT_PIO;
1840 if (ap->ops->set_piomode)
1841 ap->ops->set_piomode(ap, dev);
1842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Tejun Heoa6d5a512006-03-06 04:31:57 +09001844 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09001845 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1846 dev = &ap->device[i];
1847
1848 if (!ata_dev_enabled(dev) || !dev->dma_mode)
1849 continue;
1850
1851 dev->xfer_mode = dev->dma_mode;
1852 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
1853 if (ap->ops->set_dmamode)
1854 ap->ops->set_dmamode(ap, dev);
1855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09001858 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09001859 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Tejun Heoe1211e32006-04-01 01:38:18 +09001861 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09001862 continue;
1863
Tejun Heo5bbc53f2006-04-01 01:38:17 +09001864 rc = ata_dev_set_mode(ap, dev);
1865 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09001866 goto err_out;
1867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Tejun Heoe8e06192006-04-01 01:38:18 +09001869 /* Record simplex status. If we selected DMA then the other
1870 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01001871 */
Alan Cox5444a6f2006-03-27 18:58:20 +01001872 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
1873 ap->host_set->simplex_claimed = 1;
1874
Tejun Heoe8e06192006-04-01 01:38:18 +09001875 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if (ap->ops->post_set_mode)
1877 ap->ops->post_set_mode(ap);
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return;
1880
1881err_out:
1882 ata_port_disable(ap);
1883}
1884
1885/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001886 * ata_tf_to_host - issue ATA taskfile to host controller
1887 * @ap: port to which command is being issued
1888 * @tf: ATA taskfile register set
1889 *
1890 * Issues ATA taskfile register set to ATA host controller,
1891 * with proper synchronization with interrupt handler and
1892 * other threads.
1893 *
1894 * LOCKING:
1895 * spin_lock_irqsave(host_set lock)
1896 */
1897
1898static inline void ata_tf_to_host(struct ata_port *ap,
1899 const struct ata_taskfile *tf)
1900{
1901 ap->ops->tf_load(ap, tf);
1902 ap->ops->exec_command(ap, tf);
1903}
1904
1905/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 * ata_busy_sleep - sleep until BSY clears, or timeout
1907 * @ap: port containing status register to be polled
1908 * @tmout_pat: impatience timeout
1909 * @tmout: overall timeout
1910 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001911 * Sleep until ATA Status register bit BSY clears,
1912 * or a timeout occurs.
1913 *
1914 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 */
1916
Tejun Heo6f8b9952006-01-24 17:05:21 +09001917unsigned int ata_busy_sleep (struct ata_port *ap,
1918 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
1920 unsigned long timer_start, timeout;
1921 u8 status;
1922
1923 status = ata_busy_wait(ap, ATA_BUSY, 300);
1924 timer_start = jiffies;
1925 timeout = timer_start + tmout_pat;
1926 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1927 msleep(50);
1928 status = ata_busy_wait(ap, ATA_BUSY, 3);
1929 }
1930
1931 if (status & ATA_BUSY)
1932 printk(KERN_WARNING "ata%u is slow to respond, "
1933 "please be patient\n", ap->id);
1934
1935 timeout = timer_start + tmout;
1936 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1937 msleep(50);
1938 status = ata_chk_status(ap);
1939 }
1940
1941 if (status & ATA_BUSY) {
1942 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
1943 ap->id, tmout / HZ);
1944 return 1;
1945 }
1946
1947 return 0;
1948}
1949
1950static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
1951{
1952 struct ata_ioports *ioaddr = &ap->ioaddr;
1953 unsigned int dev0 = devmask & (1 << 0);
1954 unsigned int dev1 = devmask & (1 << 1);
1955 unsigned long timeout;
1956
1957 /* if device 0 was found in ata_devchk, wait for its
1958 * BSY bit to clear
1959 */
1960 if (dev0)
1961 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1962
1963 /* if device 1 was found in ata_devchk, wait for
1964 * register access, then wait for BSY to clear
1965 */
1966 timeout = jiffies + ATA_TMOUT_BOOT;
1967 while (dev1) {
1968 u8 nsect, lbal;
1969
1970 ap->ops->dev_select(ap, 1);
1971 if (ap->flags & ATA_FLAG_MMIO) {
1972 nsect = readb((void __iomem *) ioaddr->nsect_addr);
1973 lbal = readb((void __iomem *) ioaddr->lbal_addr);
1974 } else {
1975 nsect = inb(ioaddr->nsect_addr);
1976 lbal = inb(ioaddr->lbal_addr);
1977 }
1978 if ((nsect == 1) && (lbal == 1))
1979 break;
1980 if (time_after(jiffies, timeout)) {
1981 dev1 = 0;
1982 break;
1983 }
1984 msleep(50); /* give drive a breather */
1985 }
1986 if (dev1)
1987 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1988
1989 /* is all this really necessary? */
1990 ap->ops->dev_select(ap, 0);
1991 if (dev1)
1992 ap->ops->dev_select(ap, 1);
1993 if (dev0)
1994 ap->ops->dev_select(ap, 0);
1995}
1996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997static unsigned int ata_bus_softreset(struct ata_port *ap,
1998 unsigned int devmask)
1999{
2000 struct ata_ioports *ioaddr = &ap->ioaddr;
2001
2002 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2003
2004 /* software reset. causes dev0 to be selected */
2005 if (ap->flags & ATA_FLAG_MMIO) {
2006 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2007 udelay(20); /* FIXME: flush */
2008 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2009 udelay(20); /* FIXME: flush */
2010 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2011 } else {
2012 outb(ap->ctl, ioaddr->ctl_addr);
2013 udelay(10);
2014 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2015 udelay(10);
2016 outb(ap->ctl, ioaddr->ctl_addr);
2017 }
2018
2019 /* spec mandates ">= 2ms" before checking status.
2020 * We wait 150ms, because that was the magic delay used for
2021 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2022 * between when the ATA command register is written, and then
2023 * status is checked. Because waiting for "a while" before
2024 * checking status is fine, post SRST, we perform this magic
2025 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002026 *
2027 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 */
2029 msleep(150);
2030
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002031 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002032 * the bus shows 0xFF because the odd clown forgets the D7
2033 * pulldown resistor.
2034 */
Alan Cox09c7ad72006-03-22 15:52:40 +00002035 if (ata_check_status(ap) == 0xFF)
Tejun Heo298a41c2006-03-25 02:58:13 +09002036 return AC_ERR_OTHER;
Alan Cox09c7ad72006-03-22 15:52:40 +00002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 ata_bus_post_reset(ap, devmask);
2039
2040 return 0;
2041}
2042
2043/**
2044 * ata_bus_reset - reset host port and associated ATA channel
2045 * @ap: port to reset
2046 *
2047 * This is typically the first time we actually start issuing
2048 * commands to the ATA channel. We wait for BSY to clear, then
2049 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2050 * result. Determine what devices, if any, are on the channel
2051 * by looking at the device 0/1 error register. Look at the signature
2052 * stored in each device's taskfile registers, to determine if
2053 * the device is ATA or ATAPI.
2054 *
2055 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002056 * PCI/etc. bus probe sem.
2057 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 *
2059 * SIDE EFFECTS:
2060 * Sets ATA_FLAG_PORT_DISABLED if bus reset fails.
2061 */
2062
2063void ata_bus_reset(struct ata_port *ap)
2064{
2065 struct ata_ioports *ioaddr = &ap->ioaddr;
2066 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2067 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002068 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2071
2072 /* determine if device 0/1 are present */
2073 if (ap->flags & ATA_FLAG_SATA_RESET)
2074 dev0 = 1;
2075 else {
2076 dev0 = ata_devchk(ap, 0);
2077 if (slave_possible)
2078 dev1 = ata_devchk(ap, 1);
2079 }
2080
2081 if (dev0)
2082 devmask |= (1 << 0);
2083 if (dev1)
2084 devmask |= (1 << 1);
2085
2086 /* select device 0 again */
2087 ap->ops->dev_select(ap, 0);
2088
2089 /* issue bus reset */
2090 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002091 if (ata_bus_softreset(ap, devmask))
2092 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094 /*
2095 * determine by signature whether we have ATA or ATAPI devices
2096 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002097 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002099 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 /* re-enable interrupts */
2102 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2103 ata_irq_on(ap);
2104
2105 /* is double-select really necessary? */
2106 if (ap->device[1].class != ATA_DEV_NONE)
2107 ap->ops->dev_select(ap, 1);
2108 if (ap->device[0].class != ATA_DEV_NONE)
2109 ap->ops->dev_select(ap, 0);
2110
2111 /* if no devices were detected, disable this port */
2112 if ((ap->device[0].class == ATA_DEV_NONE) &&
2113 (ap->device[1].class == ATA_DEV_NONE))
2114 goto err_out;
2115
2116 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2117 /* set up device control for ATA_FLAG_SATA_RESET */
2118 if (ap->flags & ATA_FLAG_MMIO)
2119 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2120 else
2121 outb(ap->ctl, ioaddr->ctl_addr);
2122 }
2123
2124 DPRINTK("EXIT\n");
2125 return;
2126
2127err_out:
2128 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2129 ap->ops->port_disable(ap);
2130
2131 DPRINTK("EXIT\n");
2132}
2133
Tejun Heo7a7921e2006-02-02 18:20:00 +09002134static int sata_phy_resume(struct ata_port *ap)
2135{
2136 unsigned long timeout = jiffies + (HZ * 5);
2137 u32 sstatus;
2138
2139 scr_write_flush(ap, SCR_CONTROL, 0x300);
2140
2141 /* Wait for phy to become ready, if necessary. */
2142 do {
2143 msleep(200);
2144 sstatus = scr_read(ap, SCR_STATUS);
2145 if ((sstatus & 0xf) != 1)
2146 return 0;
2147 } while (time_before(jiffies, timeout));
2148
2149 return -1;
2150}
2151
Tejun Heoc2bd5802006-01-24 17:05:22 +09002152/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002153 * ata_std_probeinit - initialize probing
2154 * @ap: port to be probed
2155 *
2156 * @ap is about to be probed. Initialize it. This function is
2157 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002158 *
2159 * NOTE!!! Do not use this function as probeinit if a low level
2160 * driver implements only hardreset. Just pass NULL as probeinit
2161 * in that case. Using this function is probably okay but doing
2162 * so makes reset sequence different from the original
2163 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002164 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002165void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002166{
Alan Cox17efc5f2006-03-27 19:01:32 +01002167 if ((ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read) {
Tejun Heo8a19ac82006-02-02 18:20:00 +09002168 sata_phy_resume(ap);
Tejun Heo3a397462006-02-10 23:58:48 +09002169 if (sata_dev_present(ap))
2170 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2171 }
Tejun Heo8a19ac82006-02-02 18:20:00 +09002172}
2173
2174/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002175 * ata_std_softreset - reset host port via ATA SRST
2176 * @ap: port to reset
2177 * @verbose: fail verbosely
2178 * @classes: resulting classes of attached devices
2179 *
2180 * Reset host port using ATA SRST. This function is to be used
2181 * as standard callback for ata_drive_*_reset() functions.
2182 *
2183 * LOCKING:
2184 * Kernel thread context (may sleep)
2185 *
2186 * RETURNS:
2187 * 0 on success, -errno otherwise.
2188 */
2189int ata_std_softreset(struct ata_port *ap, int verbose, unsigned int *classes)
2190{
2191 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2192 unsigned int devmask = 0, err_mask;
2193 u8 err;
2194
2195 DPRINTK("ENTER\n");
2196
Tejun Heo3a397462006-02-10 23:58:48 +09002197 if (ap->ops->scr_read && !sata_dev_present(ap)) {
2198 classes[0] = ATA_DEV_NONE;
2199 goto out;
2200 }
2201
Tejun Heoc2bd5802006-01-24 17:05:22 +09002202 /* determine if device 0/1 are present */
2203 if (ata_devchk(ap, 0))
2204 devmask |= (1 << 0);
2205 if (slave_possible && ata_devchk(ap, 1))
2206 devmask |= (1 << 1);
2207
Tejun Heoc2bd5802006-01-24 17:05:22 +09002208 /* select device 0 again */
2209 ap->ops->dev_select(ap, 0);
2210
2211 /* issue bus reset */
2212 DPRINTK("about to softreset, devmask=%x\n", devmask);
2213 err_mask = ata_bus_softreset(ap, devmask);
2214 if (err_mask) {
2215 if (verbose)
2216 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2217 ap->id, err_mask);
2218 else
2219 DPRINTK("EXIT, softreset failed (err_mask=0x%x)\n",
2220 err_mask);
2221 return -EIO;
2222 }
2223
2224 /* determine by signature whether we have ATA or ATAPI devices */
2225 classes[0] = ata_dev_try_classify(ap, 0, &err);
2226 if (slave_possible && err != 0x81)
2227 classes[1] = ata_dev_try_classify(ap, 1, &err);
2228
Tejun Heo3a397462006-02-10 23:58:48 +09002229 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002230 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2231 return 0;
2232}
2233
2234/**
2235 * sata_std_hardreset - reset host port via SATA phy reset
2236 * @ap: port to reset
2237 * @verbose: fail verbosely
2238 * @class: resulting class of attached device
2239 *
2240 * SATA phy-reset host port using DET bits of SControl register.
2241 * This function is to be used as standard callback for
2242 * ata_drive_*_reset().
2243 *
2244 * LOCKING:
2245 * Kernel thread context (may sleep)
2246 *
2247 * RETURNS:
2248 * 0 on success, -errno otherwise.
2249 */
2250int sata_std_hardreset(struct ata_port *ap, int verbose, unsigned int *class)
2251{
Tejun Heoc2bd5802006-01-24 17:05:22 +09002252 DPRINTK("ENTER\n");
2253
2254 /* Issue phy wake/reset */
2255 scr_write_flush(ap, SCR_CONTROL, 0x301);
2256
2257 /*
2258 * Couldn't find anything in SATA I/II specs, but AHCI-1.1
2259 * 10.4.2 says at least 1 ms.
2260 */
2261 msleep(1);
2262
Tejun Heo7a7921e2006-02-02 18:20:00 +09002263 /* Bring phy back */
2264 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002265
Tejun Heoc2bd5802006-01-24 17:05:22 +09002266 /* TODO: phy layer with polling, timeouts, etc. */
2267 if (!sata_dev_present(ap)) {
2268 *class = ATA_DEV_NONE;
2269 DPRINTK("EXIT, link offline\n");
2270 return 0;
2271 }
2272
2273 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2274 if (verbose)
2275 printk(KERN_ERR "ata%u: COMRESET failed "
2276 "(device not ready)\n", ap->id);
2277 else
2278 DPRINTK("EXIT, device not ready\n");
2279 return -EIO;
2280 }
2281
Tejun Heo3a397462006-02-10 23:58:48 +09002282 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2283
Tejun Heoc2bd5802006-01-24 17:05:22 +09002284 *class = ata_dev_try_classify(ap, 0, NULL);
2285
2286 DPRINTK("EXIT, class=%u\n", *class);
2287 return 0;
2288}
2289
2290/**
2291 * ata_std_postreset - standard postreset callback
2292 * @ap: the target ata_port
2293 * @classes: classes of attached devices
2294 *
2295 * This function is invoked after a successful reset. Note that
2296 * the device might have been reset more than once using
2297 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002298 *
2299 * This function is to be used as standard callback for
2300 * ata_drive_*_reset().
2301 *
2302 * LOCKING:
2303 * Kernel thread context (may sleep)
2304 */
2305void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2306{
2307 DPRINTK("ENTER\n");
2308
Tejun Heo56497bd2006-02-15 15:01:42 +09002309 /* set cable type if it isn't already set */
Tejun Heoc2bd5802006-01-24 17:05:22 +09002310 if (ap->cbl == ATA_CBL_NONE && ap->flags & ATA_FLAG_SATA)
2311 ap->cbl = ATA_CBL_SATA;
2312
2313 /* print link status */
2314 if (ap->cbl == ATA_CBL_SATA)
2315 sata_print_link_status(ap);
2316
Tejun Heo3a397462006-02-10 23:58:48 +09002317 /* re-enable interrupts */
2318 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2319 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002320
2321 /* is double-select really necessary? */
2322 if (classes[0] != ATA_DEV_NONE)
2323 ap->ops->dev_select(ap, 1);
2324 if (classes[1] != ATA_DEV_NONE)
2325 ap->ops->dev_select(ap, 0);
2326
Tejun Heo3a397462006-02-10 23:58:48 +09002327 /* bail out if no device is present */
2328 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2329 DPRINTK("EXIT, no device\n");
2330 return;
2331 }
2332
2333 /* set up device control */
2334 if (ap->ioaddr.ctl_addr) {
2335 if (ap->flags & ATA_FLAG_MMIO)
2336 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2337 else
2338 outb(ap->ctl, ap->ioaddr.ctl_addr);
2339 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002340
2341 DPRINTK("EXIT\n");
2342}
2343
2344/**
2345 * ata_std_probe_reset - standard probe reset method
2346 * @ap: prot to perform probe-reset
2347 * @classes: resulting classes of attached devices
2348 *
2349 * The stock off-the-shelf ->probe_reset method.
2350 *
2351 * LOCKING:
2352 * Kernel thread context (may sleep)
2353 *
2354 * RETURNS:
2355 * 0 on success, -errno otherwise.
2356 */
2357int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2358{
2359 ata_reset_fn_t hardreset;
2360
2361 hardreset = NULL;
Tejun Heob911fc32006-02-02 18:20:00 +09002362 if (ap->flags & ATA_FLAG_SATA && ap->ops->scr_read)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002363 hardreset = sata_std_hardreset;
2364
Tejun Heo8a19ac82006-02-02 18:20:00 +09002365 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002366 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002367 ata_std_postreset, classes);
2368}
2369
Tejun Heo9974e7c2006-04-01 01:38:17 +09002370static int ata_do_reset(struct ata_port *ap,
2371 ata_reset_fn_t reset, ata_postreset_fn_t postreset,
2372 int verbose, unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002373{
2374 int i, rc;
2375
2376 for (i = 0; i < ATA_MAX_DEVICES; i++)
2377 classes[i] = ATA_DEV_UNKNOWN;
2378
Tejun Heo9974e7c2006-04-01 01:38:17 +09002379 rc = reset(ap, verbose, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002380 if (rc)
2381 return rc;
2382
2383 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2384 * is complete and convert all ATA_DEV_UNKNOWN to
2385 * ATA_DEV_NONE.
2386 */
2387 for (i = 0; i < ATA_MAX_DEVICES; i++)
2388 if (classes[i] != ATA_DEV_UNKNOWN)
2389 break;
2390
2391 if (i < ATA_MAX_DEVICES)
2392 for (i = 0; i < ATA_MAX_DEVICES; i++)
2393 if (classes[i] == ATA_DEV_UNKNOWN)
2394 classes[i] = ATA_DEV_NONE;
2395
2396 if (postreset)
2397 postreset(ap, classes);
2398
Tejun Heo9974e7c2006-04-01 01:38:17 +09002399 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002400}
2401
2402/**
2403 * ata_drive_probe_reset - Perform probe reset with given methods
2404 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002405 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002406 * @softreset: softreset method (can be NULL)
2407 * @hardreset: hardreset method (can be NULL)
2408 * @postreset: postreset method (can be NULL)
2409 * @classes: resulting classes of attached devices
2410 *
2411 * Reset the specified port and classify attached devices using
2412 * given methods. This function prefers softreset but tries all
2413 * possible reset sequences to reset and classify devices. This
2414 * function is intended to be used for constructing ->probe_reset
2415 * callback by low level drivers.
2416 *
2417 * Reset methods should follow the following rules.
2418 *
2419 * - Return 0 on sucess, -errno on failure.
2420 * - If classification is supported, fill classes[] with
2421 * recognized class codes.
2422 * - If classification is not supported, leave classes[] alone.
2423 * - If verbose is non-zero, print error message on failure;
2424 * otherwise, shut up.
2425 *
2426 * LOCKING:
2427 * Kernel thread context (may sleep)
2428 *
2429 * RETURNS:
2430 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2431 * if classification fails, and any error code from reset
2432 * methods.
2433 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002434int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002435 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2436 ata_postreset_fn_t postreset, unsigned int *classes)
2437{
2438 int rc = -EINVAL;
2439
Tejun Heo7944ea92006-02-02 18:20:00 +09002440 if (probeinit)
2441 probeinit(ap);
2442
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002443 if (softreset) {
Tejun Heo9974e7c2006-04-01 01:38:17 +09002444 rc = ata_do_reset(ap, softreset, postreset, 0, classes);
2445 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2446 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002447 }
2448
2449 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002450 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002451
Tejun Heo9974e7c2006-04-01 01:38:17 +09002452 rc = ata_do_reset(ap, hardreset, postreset, 0, classes);
2453 if (rc || classes[0] != ATA_DEV_UNKNOWN)
2454 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002455
2456 if (softreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002457 rc = ata_do_reset(ap, softreset, postreset, 0, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002458
Tejun Heo9974e7c2006-04-01 01:38:17 +09002459 done:
2460 if (rc == 0 && classes[0] == ATA_DEV_UNKNOWN)
2461 rc = -ENODEV;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002462 return rc;
2463}
2464
Tejun Heo623a3122006-03-05 17:55:58 +09002465/**
2466 * ata_dev_same_device - Determine whether new ID matches configured device
2467 * @ap: port on which the device to compare against resides
2468 * @dev: device to compare against
2469 * @new_class: class of the new device
2470 * @new_id: IDENTIFY page of the new device
2471 *
2472 * Compare @new_class and @new_id against @dev and determine
2473 * whether @dev is the device indicated by @new_class and
2474 * @new_id.
2475 *
2476 * LOCKING:
2477 * None.
2478 *
2479 * RETURNS:
2480 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2481 */
2482static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2483 unsigned int new_class, const u16 *new_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484{
Tejun Heo623a3122006-03-05 17:55:58 +09002485 const u16 *old_id = dev->id;
2486 unsigned char model[2][41], serial[2][21];
2487 u64 new_n_sectors;
2488
2489 if (dev->class != new_class) {
2490 printk(KERN_INFO
2491 "ata%u: dev %u class mismatch %d != %d\n",
2492 ap->id, dev->devno, dev->class, new_class);
2493 return 0;
2494 }
2495
2496 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2497 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2498 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2499 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2500 new_n_sectors = ata_id_n_sectors(new_id);
2501
2502 if (strcmp(model[0], model[1])) {
2503 printk(KERN_INFO
2504 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2505 ap->id, dev->devno, model[0], model[1]);
2506 return 0;
2507 }
2508
2509 if (strcmp(serial[0], serial[1])) {
2510 printk(KERN_INFO
2511 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2512 ap->id, dev->devno, serial[0], serial[1]);
2513 return 0;
2514 }
2515
2516 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2517 printk(KERN_INFO
2518 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2519 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2520 (unsigned long long)new_n_sectors);
2521 return 0;
2522 }
2523
2524 return 1;
2525}
2526
2527/**
2528 * ata_dev_revalidate - Revalidate ATA device
2529 * @ap: port on which the device to revalidate resides
2530 * @dev: device to revalidate
2531 * @post_reset: is this revalidation after reset?
2532 *
2533 * Re-read IDENTIFY page and make sure @dev is still attached to
2534 * the port.
2535 *
2536 * LOCKING:
2537 * Kernel thread context (may sleep)
2538 *
2539 * RETURNS:
2540 * 0 on success, negative errno otherwise
2541 */
2542int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2543 int post_reset)
2544{
2545 unsigned int class;
2546 u16 *id;
2547 int rc;
2548
Tejun Heoe1211e32006-04-01 01:38:18 +09002549 if (!ata_dev_enabled(dev))
Tejun Heo623a3122006-03-05 17:55:58 +09002550 return -ENODEV;
2551
2552 class = dev->class;
2553 id = NULL;
2554
2555 /* allocate & read ID data */
2556 rc = ata_dev_read_id(ap, dev, &class, post_reset, &id);
2557 if (rc)
2558 goto fail;
2559
2560 /* is the device still there? */
2561 if (!ata_dev_same_device(ap, dev, class, id)) {
2562 rc = -ENODEV;
2563 goto fail;
2564 }
2565
2566 kfree(dev->id);
2567 dev->id = id;
2568
2569 /* configure device according to the new ID */
2570 return ata_dev_configure(ap, dev, 0);
2571
2572 fail:
2573 printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2574 ap->id, dev->devno, rc);
2575 kfree(id);
2576 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002579static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002580 "WDC AC11000H", NULL,
2581 "WDC AC22100H", NULL,
2582 "WDC AC32500H", NULL,
2583 "WDC AC33100H", NULL,
2584 "WDC AC31600H", NULL,
2585 "WDC AC32100H", "24.09P07",
2586 "WDC AC23200L", "21.10N21",
2587 "Compaq CRD-8241B", NULL,
2588 "CRD-8400B", NULL,
2589 "CRD-8480B", NULL,
2590 "CRD-8482B", NULL,
2591 "CRD-84", NULL,
2592 "SanDisk SDP3B", NULL,
2593 "SanDisk SDP3B-64", NULL,
2594 "SANYO CD-ROM CRD", NULL,
2595 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002596 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002597 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002598 "Toshiba CD-ROM XM-6202B", NULL,
2599 "TOSHIBA CD-ROM XM-1702BC", NULL,
2600 "CD-532E-A", NULL,
2601 "E-IDE CD-ROM CR-840", NULL,
2602 "CD-ROM Drive/F5A", NULL,
2603 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002604 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002605 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002606 "SanDisk SDP3B-64", NULL,
2607 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2608 "_NEC DV5800A", NULL,
2609 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002611
Alan Coxf4b15fe2006-03-22 15:54:04 +00002612static int ata_strim(char *s, size_t len)
2613{
2614 len = strnlen(s, len);
2615
2616 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2617 while ((len > 0) && (s[len - 1] == ' ')) {
2618 len--;
2619 s[len] = 0;
2620 }
2621 return len;
2622}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Jeff Garzik057ace52005-10-22 14:27:05 -04002624static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002626 unsigned char model_num[40];
2627 unsigned char model_rev[16];
2628 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 int i;
2630
Alan Coxf4b15fe2006-03-22 15:54:04 +00002631 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2632 sizeof(model_num));
2633 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2634 sizeof(model_rev));
2635 nlen = ata_strim(model_num, sizeof(model_num));
2636 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Alan Coxf4b15fe2006-03-22 15:54:04 +00002638 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2639 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2640 if (ata_dma_blacklist[i+1] == NULL)
2641 return 1;
2642 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2643 return 1;
2644 }
2645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 return 0;
2647}
2648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09002650 * ata_dev_xfermask - Compute supported xfermask of the given device
2651 * @ap: Port on which the device to compute xfermask for resides
2652 * @dev: Device to compute xfermask for
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002654 * Compute supported xfermask of @dev and store it in
2655 * dev->*_mask. This function is responsible for applying all
2656 * known limits including host controller limits, device
2657 * blacklist, etc...
Jeff Garzik0cba6322005-05-30 19:49:12 -04002658 *
Tejun Heo600511e2006-03-25 11:14:07 +09002659 * FIXME: The current implementation limits all transfer modes to
2660 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002661 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002662 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 * LOCKING:
Tejun Heoa6d5a512006-03-06 04:31:57 +09002664 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 */
Tejun Heoacf356b2006-03-24 14:07:50 +09002666static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
Alan Cox5444a6f2006-03-27 18:58:20 +01002668 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002669 unsigned long xfer_mask;
2670 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Tejun Heoa6d5a512006-03-06 04:31:57 +09002672 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
2673 ap->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Alan Cox5444a6f2006-03-27 18:58:20 +01002675 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002676 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2677 struct ata_device *d = &ap->device[i];
Tejun Heoe1211e32006-04-01 01:38:18 +09002678 if (!ata_dev_enabled(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002679 continue;
Tejun Heoacf356b2006-03-24 14:07:50 +09002680 xfer_mask &= ata_pack_xfermask(d->pio_mask, d->mwdma_mask,
2681 d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002682 xfer_mask &= ata_id_xfermask(d->id);
2683 if (ata_dma_blacklisted(d))
2684 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Alan Cox5444a6f2006-03-27 18:58:20 +01002685 /* Apply cable rule here. Don't apply it early because when
2686 we handle hot plug the cable type can itself change */
2687 if (ap->cbl == ATA_CBL_PATA40)
2688 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 }
2690
Tejun Heoa6d5a512006-03-06 04:31:57 +09002691 if (ata_dma_blacklisted(dev))
2692 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2693 "disabling DMA\n", ap->id, dev->devno);
2694
Alan Cox5444a6f2006-03-27 18:58:20 +01002695 if (hs->flags & ATA_HOST_SIMPLEX) {
2696 if (hs->simplex_claimed)
2697 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2698 }
2699 if (ap->ops->mode_filter)
2700 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2701
Tejun Heoacf356b2006-03-24 14:07:50 +09002702 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2703 &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704}
2705
2706/**
2707 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2708 * @ap: Port associated with device @dev
2709 * @dev: Device to which command will be sent
2710 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002711 * Issue SET FEATURES - XFER MODE command to device @dev
2712 * on port @ap.
2713 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002715 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002716 *
2717 * RETURNS:
2718 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 */
2720
Tejun Heo83206a22006-03-24 15:25:31 +09002721static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2722 struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
Tejun Heoa0123702005-12-13 14:49:31 +09002724 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002725 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
2727 /* set up set-features taskfile */
2728 DPRINTK("set features - xfer mode\n");
2729
Tejun Heoa0123702005-12-13 14:49:31 +09002730 ata_tf_init(ap, &tf, dev->devno);
2731 tf.command = ATA_CMD_SET_FEATURES;
2732 tf.feature = SETFEATURES_XFER;
2733 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2734 tf.protocol = ATA_PROT_NODATA;
2735 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Tejun Heo83206a22006-03-24 15:25:31 +09002737 err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Tejun Heo83206a22006-03-24 15:25:31 +09002739 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2740 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741}
2742
2743/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04002744 * ata_dev_init_params - Issue INIT DEV PARAMS command
2745 * @ap: Port associated with device @dev
2746 * @dev: Device to which command will be sent
2747 *
2748 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09002749 * Kernel thread context (may sleep)
2750 *
2751 * RETURNS:
2752 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04002753 */
2754
Tejun Heo6aff8f12006-02-15 18:24:09 +09002755static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +08002756 struct ata_device *dev,
2757 u16 heads,
2758 u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04002759{
Tejun Heoa0123702005-12-13 14:49:31 +09002760 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09002761 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002762
2763 /* Number of sectors per track 1-255. Number of heads 1-16 */
2764 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08002765 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002766
2767 /* set up init dev params taskfile */
2768 DPRINTK("init dev params \n");
2769
Tejun Heoa0123702005-12-13 14:49:31 +09002770 ata_tf_init(ap, &tf, dev->devno);
2771 tf.command = ATA_CMD_INIT_DEV_PARAMS;
2772 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2773 tf.protocol = ATA_PROT_NODATA;
2774 tf.nsect = sectors;
2775 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04002776
Tejun Heo6aff8f12006-02-15 18:24:09 +09002777 err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04002778
Tejun Heo6aff8f12006-02-15 18:24:09 +09002779 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2780 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002781}
2782
2783/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002784 * ata_sg_clean - Unmap DMA memory associated with command
2785 * @qc: Command containing DMA memory to be released
2786 *
2787 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 *
2789 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002790 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 */
2792
2793static void ata_sg_clean(struct ata_queued_cmd *qc)
2794{
2795 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002796 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002798 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Tejun Heoa4631472006-02-11 19:11:13 +09002800 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
2801 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05002804 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002806 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002808 /* if we padded the buffer out to 32-bit bound, and data
2809 * xfer direction is from-device, we must copy from the
2810 * pad buffer back into the supplied buffer
2811 */
2812 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
2813 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2814
2815 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05002816 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06002817 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002818 /* restore last sg */
2819 sg[qc->orig_n_elem - 1].length += qc->pad_len;
2820 if (pad_buf) {
2821 struct scatterlist *psg = &qc->pad_sgent;
2822 void *addr = kmap_atomic(psg->page, KM_IRQ0);
2823 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05002824 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002825 }
2826 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09002827 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06002828 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05002829 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
2830 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002831 /* restore sg */
2832 sg->length += qc->pad_len;
2833 if (pad_buf)
2834 memcpy(qc->buf_virt + sg->length - qc->pad_len,
2835 pad_buf, qc->pad_len);
2836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002839 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840}
2841
2842/**
2843 * ata_fill_sg - Fill PCI IDE PRD table
2844 * @qc: Metadata associated with taskfile to be transferred
2845 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002846 * Fill PCI IDE PRD (scatter-gather) table with segments
2847 * associated with the current disk command.
2848 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04002850 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 *
2852 */
2853static void ata_fill_sg(struct ata_queued_cmd *qc)
2854{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002856 struct scatterlist *sg;
2857 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Tejun Heoa4631472006-02-11 19:11:13 +09002859 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05002860 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
2862 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002863 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 u32 addr, offset;
2865 u32 sg_len, len;
2866
2867 /* determine if physical DMA addr spans 64K boundary.
2868 * Note h/w doesn't support 64-bit, so we unconditionally
2869 * truncate dma_addr_t to u32.
2870 */
2871 addr = (u32) sg_dma_address(sg);
2872 sg_len = sg_dma_len(sg);
2873
2874 while (sg_len) {
2875 offset = addr & 0xffff;
2876 len = sg_len;
2877 if ((offset + sg_len) > 0x10000)
2878 len = 0x10000 - offset;
2879
2880 ap->prd[idx].addr = cpu_to_le32(addr);
2881 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
2882 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
2883
2884 idx++;
2885 sg_len -= len;
2886 addr += len;
2887 }
2888 }
2889
2890 if (idx)
2891 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
2892}
2893/**
2894 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
2895 * @qc: Metadata associated with taskfile to check
2896 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002897 * Allow low-level driver to filter ATA PACKET commands, returning
2898 * a status indicating whether or not it is OK to use DMA for the
2899 * supplied PACKET command.
2900 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002902 * spin_lock_irqsave(host_set lock)
2903 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 * RETURNS: 0 when ATAPI DMA can be used
2905 * nonzero otherwise
2906 */
2907int ata_check_atapi_dma(struct ata_queued_cmd *qc)
2908{
2909 struct ata_port *ap = qc->ap;
2910 int rc = 0; /* Assume ATAPI DMA is OK by default */
2911
2912 if (ap->ops->check_atapi_dma)
2913 rc = ap->ops->check_atapi_dma(qc);
2914
Albert Leec2bbc552006-03-25 17:56:55 +08002915 /* We don't support polling DMA.
2916 * Use PIO if the LLDD handles only interrupts in
2917 * the HSM_ST_LAST state and the ATAPI device
2918 * generates CDB interrupts.
2919 */
2920 if ((ap->flags & ATA_FLAG_PIO_POLLING) &&
2921 (qc->dev->flags & ATA_DFLAG_CDB_INTR))
2922 rc = 1;
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 return rc;
2925}
2926/**
2927 * ata_qc_prep - Prepare taskfile for submission
2928 * @qc: Metadata associated with taskfile to be prepared
2929 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002930 * Prepare ATA taskfile for submission.
2931 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 * LOCKING:
2933 * spin_lock_irqsave(host_set lock)
2934 */
2935void ata_qc_prep(struct ata_queued_cmd *qc)
2936{
2937 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
2938 return;
2939
2940 ata_fill_sg(qc);
2941}
2942
Brian Kinge46834c2006-03-17 17:04:03 -06002943void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
2944
Jeff Garzik0cba6322005-05-30 19:49:12 -04002945/**
2946 * ata_sg_init_one - Associate command with memory buffer
2947 * @qc: Command to be associated
2948 * @buf: Memory buffer
2949 * @buflen: Length of memory buffer, in bytes.
2950 *
2951 * Initialize the data-related elements of queued_cmd @qc
2952 * to point to a single memory buffer, @buf of byte length @buflen.
2953 *
2954 * LOCKING:
2955 * spin_lock_irqsave(host_set lock)
2956 */
2957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
2959{
2960 struct scatterlist *sg;
2961
2962 qc->flags |= ATA_QCFLAG_SINGLE;
2963
2964 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002965 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002967 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 qc->buf_virt = buf;
2969
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002970 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05002971 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972}
2973
Jeff Garzik0cba6322005-05-30 19:49:12 -04002974/**
2975 * ata_sg_init - Associate command with scatter-gather table.
2976 * @qc: Command to be associated
2977 * @sg: Scatter-gather table.
2978 * @n_elem: Number of elements in s/g table.
2979 *
2980 * Initialize the data-related elements of queued_cmd @qc
2981 * to point to a scatter-gather table @sg, containing @n_elem
2982 * elements.
2983 *
2984 * LOCKING:
2985 * spin_lock_irqsave(host_set lock)
2986 */
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
2989 unsigned int n_elem)
2990{
2991 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002992 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002994 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995}
2996
2997/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002998 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
2999 * @qc: Command with memory buffer to be mapped.
3000 *
3001 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 *
3003 * LOCKING:
3004 * spin_lock_irqsave(host_set lock)
3005 *
3006 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003007 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 */
3009
3010static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3011{
3012 struct ata_port *ap = qc->ap;
3013 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003014 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003016 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003018 /* we must lengthen transfers to end on a 32-bit boundary */
3019 qc->pad_len = sg->length & 3;
3020 if (qc->pad_len) {
3021 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3022 struct scatterlist *psg = &qc->pad_sgent;
3023
Tejun Heoa4631472006-02-11 19:11:13 +09003024 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003025
3026 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3027
3028 if (qc->tf.flags & ATA_TFLAG_WRITE)
3029 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3030 qc->pad_len);
3031
3032 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3033 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3034 /* trim sg */
3035 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003036 if (sg->length == 0)
3037 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003038
3039 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3040 sg->length, qc->pad_len);
3041 }
3042
Tejun Heo2e242fa2006-02-20 23:48:38 +09003043 if (trim_sg) {
3044 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003045 goto skip_map;
3046 }
3047
Brian King2f1f6102006-03-23 17:30:15 -06003048 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003049 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003050 if (dma_mapping_error(dma_address)) {
3051 /* restore sg */
3052 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
3056 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003057 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Tejun Heo2e242fa2006-02-20 23:48:38 +09003059skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3061 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3062
3063 return 0;
3064}
3065
3066/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003067 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3068 * @qc: Command with scatter-gather table to be mapped.
3069 *
3070 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 *
3072 * LOCKING:
3073 * spin_lock_irqsave(host_set lock)
3074 *
3075 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003076 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 *
3078 */
3079
3080static int ata_sg_setup(struct ata_queued_cmd *qc)
3081{
3082 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003083 struct scatterlist *sg = qc->__sg;
3084 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003085 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003088 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003090 /* we must lengthen transfers to end on a 32-bit boundary */
3091 qc->pad_len = lsg->length & 3;
3092 if (qc->pad_len) {
3093 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3094 struct scatterlist *psg = &qc->pad_sgent;
3095 unsigned int offset;
3096
Tejun Heoa4631472006-02-11 19:11:13 +09003097 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003098
3099 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3100
3101 /*
3102 * psg->page/offset are used to copy to-be-written
3103 * data in this function or read data in ata_sg_clean.
3104 */
3105 offset = lsg->offset + lsg->length - qc->pad_len;
3106 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3107 psg->offset = offset_in_page(offset);
3108
3109 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3110 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3111 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003112 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003113 }
3114
3115 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3116 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3117 /* trim last sg */
3118 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003119 if (lsg->length == 0)
3120 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003121
3122 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3123 qc->n_elem - 1, lsg->length, qc->pad_len);
3124 }
3125
Jeff Garzike1410f22005-11-14 14:06:26 -05003126 pre_n_elem = qc->n_elem;
3127 if (trim_sg && pre_n_elem)
3128 pre_n_elem--;
3129
3130 if (!pre_n_elem) {
3131 n_elem = 0;
3132 goto skip_map;
3133 }
3134
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003136 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003137 if (n_elem < 1) {
3138 /* restore last sg */
3139 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
3143 DPRINTK("%d sg elements mapped\n", n_elem);
3144
Jeff Garzike1410f22005-11-14 14:06:26 -05003145skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 qc->n_elem = n_elem;
3147
3148 return 0;
3149}
3150
3151/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003152 * ata_poll_qc_complete - turn irq back on and finish qc
3153 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003154 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003155 *
3156 * LOCKING:
3157 * None. (grabs host lock)
3158 */
3159
Albert Leea22e2eb2005-12-05 15:38:02 +08003160void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003161{
3162 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003163 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003164
Jeff Garzikb8f61532005-08-25 22:01:20 -04003165 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003166 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003167 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003168 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003169}
3170
3171/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003172 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003173 * @buf: Buffer to swap
3174 * @buf_words: Number of 16-bit words in buffer.
3175 *
3176 * Swap halves of 16-bit words if needed to convert from
3177 * little-endian byte order to native cpu byte order, or
3178 * vice-versa.
3179 *
3180 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003181 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183void swap_buf_le16(u16 *buf, unsigned int buf_words)
3184{
3185#ifdef __BIG_ENDIAN
3186 unsigned int i;
3187
3188 for (i = 0; i < buf_words; i++)
3189 buf[i] = le16_to_cpu(buf[i]);
3190#endif /* __BIG_ENDIAN */
3191}
3192
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003193/**
3194 * ata_mmio_data_xfer - Transfer data by MMIO
3195 * @ap: port to read/write
3196 * @buf: data buffer
3197 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003198 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003199 *
3200 * Transfer data from/to the device data register by MMIO.
3201 *
3202 * LOCKING:
3203 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003204 */
3205
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3207 unsigned int buflen, int write_data)
3208{
3209 unsigned int i;
3210 unsigned int words = buflen >> 1;
3211 u16 *buf16 = (u16 *) buf;
3212 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3213
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003214 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 if (write_data) {
3216 for (i = 0; i < words; i++)
3217 writew(le16_to_cpu(buf16[i]), mmio);
3218 } else {
3219 for (i = 0; i < words; i++)
3220 buf16[i] = cpu_to_le16(readw(mmio));
3221 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003222
3223 /* Transfer trailing 1 byte, if any. */
3224 if (unlikely(buflen & 0x01)) {
3225 u16 align_buf[1] = { 0 };
3226 unsigned char *trailing_buf = buf + buflen - 1;
3227
3228 if (write_data) {
3229 memcpy(align_buf, trailing_buf, 1);
3230 writew(le16_to_cpu(align_buf[0]), mmio);
3231 } else {
3232 align_buf[0] = cpu_to_le16(readw(mmio));
3233 memcpy(trailing_buf, align_buf, 1);
3234 }
3235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236}
3237
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003238/**
3239 * ata_pio_data_xfer - Transfer data by PIO
3240 * @ap: port to read/write
3241 * @buf: data buffer
3242 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003243 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003244 *
3245 * Transfer data from/to the device data register by PIO.
3246 *
3247 * LOCKING:
3248 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003249 */
3250
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3252 unsigned int buflen, int write_data)
3253{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003254 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003256 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003258 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003260 insw(ap->ioaddr.data_addr, buf, words);
3261
3262 /* Transfer trailing 1 byte, if any. */
3263 if (unlikely(buflen & 0x01)) {
3264 u16 align_buf[1] = { 0 };
3265 unsigned char *trailing_buf = buf + buflen - 1;
3266
3267 if (write_data) {
3268 memcpy(align_buf, trailing_buf, 1);
3269 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3270 } else {
3271 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3272 memcpy(trailing_buf, align_buf, 1);
3273 }
3274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275}
3276
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003277/**
3278 * ata_data_xfer - Transfer data from/to the data register.
3279 * @ap: port to read/write
3280 * @buf: data buffer
3281 * @buflen: buffer length
3282 * @do_write: read/write
3283 *
3284 * Transfer data from/to the device data register.
3285 *
3286 * LOCKING:
3287 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003288 */
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3291 unsigned int buflen, int do_write)
3292{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003293 /* Make the crap hardware pay the costs not the good stuff */
3294 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3295 unsigned long flags;
3296 local_irq_save(flags);
3297 if (ap->flags & ATA_FLAG_MMIO)
3298 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3299 else
3300 ata_pio_data_xfer(ap, buf, buflen, do_write);
3301 local_irq_restore(flags);
3302 } else {
3303 if (ap->flags & ATA_FLAG_MMIO)
3304 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3305 else
3306 ata_pio_data_xfer(ap, buf, buflen, do_write);
3307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308}
3309
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003310/**
3311 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3312 * @qc: Command on going
3313 *
3314 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3315 *
3316 * LOCKING:
3317 * Inherited from caller.
3318 */
3319
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320static void ata_pio_sector(struct ata_queued_cmd *qc)
3321{
3322 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003323 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 struct ata_port *ap = qc->ap;
3325 struct page *page;
3326 unsigned int offset;
3327 unsigned char *buf;
3328
3329 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003330 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332 page = sg[qc->cursg].page;
3333 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3334
3335 /* get the current page and offset */
3336 page = nth_page(page, (offset >> PAGE_SHIFT));
3337 offset %= PAGE_SIZE;
3338
Albert Lee7282aa42005-10-09 09:46:07 -04003339 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3340
Albert Lee91b8b312005-10-09 09:48:44 -04003341 if (PageHighMem(page)) {
3342 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003343
Albert Lee91b8b312005-10-09 09:48:44 -04003344 local_irq_save(flags);
3345 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003346
Albert Lee91b8b312005-10-09 09:48:44 -04003347 /* do the actual data transfer */
3348 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3349
3350 kunmap_atomic(buf, KM_IRQ0);
3351 local_irq_restore(flags);
3352 } else {
3353 buf = page_address(page);
3354 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3355 }
Albert Lee7282aa42005-10-09 09:46:07 -04003356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 qc->cursect++;
3358 qc->cursg_ofs++;
3359
Albert Lee32529e02005-05-26 03:49:42 -04003360 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 qc->cursg++;
3362 qc->cursg_ofs = 0;
3363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364}
3365
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003366/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003367 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3368 * @qc: Command on going
3369 *
3370 * Transfer one or many ATA_SECT_SIZE of data from/to the
3371 * ATA device for the DRQ request.
3372 *
3373 * LOCKING:
3374 * Inherited from caller.
3375 */
3376
3377static void ata_pio_sectors(struct ata_queued_cmd *qc)
3378{
3379 if (is_multi_taskfile(&qc->tf)) {
3380 /* READ/WRITE MULTIPLE */
3381 unsigned int nsect;
3382
Jeff Garzik587005d2006-02-11 18:17:32 -05003383 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003384
3385 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3386 while (nsect--)
3387 ata_pio_sector(qc);
3388 } else
3389 ata_pio_sector(qc);
3390}
3391
3392/**
Albert Leec71c1852005-10-04 06:03:45 -04003393 * atapi_send_cdb - Write CDB bytes to hardware
3394 * @ap: Port to which ATAPI device is attached.
3395 * @qc: Taskfile currently active
3396 *
3397 * When device has indicated its readiness to accept
3398 * a CDB, this function is called. Send the CDB.
3399 *
3400 * LOCKING:
3401 * caller.
3402 */
3403
3404static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3405{
3406 /* send SCSI cdb */
3407 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003408 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003409
Jeff Garzikdb024d52006-02-13 00:23:57 -05003410 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003411 ata_altstatus(ap); /* flush */
3412
3413 switch (qc->tf.protocol) {
3414 case ATA_PROT_ATAPI:
3415 ap->hsm_task_state = HSM_ST;
3416 break;
3417 case ATA_PROT_ATAPI_NODATA:
3418 ap->hsm_task_state = HSM_ST_LAST;
3419 break;
3420 case ATA_PROT_ATAPI_DMA:
3421 ap->hsm_task_state = HSM_ST_LAST;
3422 /* initiate bmdma */
3423 ap->ops->bmdma_start(qc);
3424 break;
3425 }
3426}
3427
3428/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003429 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3430 * @qc: Command on going
3431 * @bytes: number of bytes
3432 *
3433 * Transfer Transfer data from/to the ATAPI device.
3434 *
3435 * LOCKING:
3436 * Inherited from caller.
3437 *
3438 */
3439
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3441{
3442 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003443 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 struct ata_port *ap = qc->ap;
3445 struct page *page;
3446 unsigned char *buf;
3447 unsigned int offset, count;
3448
Albert Lee563a6e12005-08-12 14:17:50 +08003449 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003450 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
3452next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003453 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003454 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003455 * The end of qc->sg is reached and the device expects
3456 * more data to transfer. In order not to overrun qc->sg
3457 * and fulfill length specified in the byte count register,
3458 * - for read case, discard trailing data from the device
3459 * - for write case, padding zero data to the device
3460 */
3461 u16 pad_buf[1] = { 0 };
3462 unsigned int words = bytes >> 1;
3463 unsigned int i;
3464
3465 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003466 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003467 ap->id, bytes);
3468
3469 for (i = 0; i < words; i++)
3470 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3471
Albert Lee14be71f2005-09-27 17:36:35 +08003472 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003473 return;
3474 }
3475
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003476 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 page = sg->page;
3479 offset = sg->offset + qc->cursg_ofs;
3480
3481 /* get the current page and offset */
3482 page = nth_page(page, (offset >> PAGE_SHIFT));
3483 offset %= PAGE_SIZE;
3484
Albert Lee6952df02005-06-06 15:56:03 +08003485 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003486 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
3488 /* don't cross page boundaries */
3489 count = min(count, (unsigned int)PAGE_SIZE - offset);
3490
Albert Lee7282aa42005-10-09 09:46:07 -04003491 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3492
Albert Lee91b8b312005-10-09 09:48:44 -04003493 if (PageHighMem(page)) {
3494 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003495
Albert Lee91b8b312005-10-09 09:48:44 -04003496 local_irq_save(flags);
3497 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003498
Albert Lee91b8b312005-10-09 09:48:44 -04003499 /* do the actual data transfer */
3500 ata_data_xfer(ap, buf + offset, count, do_write);
3501
3502 kunmap_atomic(buf, KM_IRQ0);
3503 local_irq_restore(flags);
3504 } else {
3505 buf = page_address(page);
3506 ata_data_xfer(ap, buf + offset, count, do_write);
3507 }
Albert Lee7282aa42005-10-09 09:46:07 -04003508
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 bytes -= count;
3510 qc->curbytes += count;
3511 qc->cursg_ofs += count;
3512
Albert Lee32529e02005-05-26 03:49:42 -04003513 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 qc->cursg++;
3515 qc->cursg_ofs = 0;
3516 }
3517
Albert Lee563a6e12005-08-12 14:17:50 +08003518 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520}
3521
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003522/**
3523 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3524 * @qc: Command on going
3525 *
3526 * Transfer Transfer data from/to the ATAPI device.
3527 *
3528 * LOCKING:
3529 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003530 */
3531
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3533{
3534 struct ata_port *ap = qc->ap;
3535 struct ata_device *dev = qc->dev;
3536 unsigned int ireason, bc_lo, bc_hi, bytes;
3537 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3538
3539 ap->ops->tf_read(ap, &qc->tf);
3540 ireason = qc->tf.nsect;
3541 bc_lo = qc->tf.lbam;
3542 bc_hi = qc->tf.lbah;
3543 bytes = (bc_hi << 8) | bc_lo;
3544
3545 /* shall be cleared to zero, indicating xfer of data */
3546 if (ireason & (1 << 0))
3547 goto err_out;
3548
3549 /* make sure transfer direction matches expected */
3550 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3551 if (do_write != i_write)
3552 goto err_out;
3553
Albert Lee312f7da2005-09-27 17:38:03 +08003554 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 __atapi_pio_bytes(qc, bytes);
3557
3558 return;
3559
3560err_out:
3561 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3562 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003563 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003564 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565}
3566
3567/**
Albert Leec234fb02006-03-25 17:58:38 +08003568 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3569 * @ap: the target ata_port
3570 * @qc: qc on going
3571 *
3572 * RETURNS:
3573 * 1 if ok in workqueue, 0 otherwise.
3574 */
3575
3576static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
3577{
3578 if (qc->tf.flags & ATA_TFLAG_POLLING)
3579 return 1;
3580
3581 if (ap->hsm_task_state == HSM_ST_FIRST) {
3582 if (qc->tf.protocol == ATA_PROT_PIO &&
3583 (qc->tf.flags & ATA_TFLAG_WRITE))
3584 return 1;
3585
3586 if (is_atapi_taskfile(&qc->tf) &&
3587 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3588 return 1;
3589 }
3590
3591 return 0;
3592}
3593
3594/**
Albert Leebb5cb292006-03-25 17:48:02 +08003595 * ata_hsm_move - move the HSM to the next state.
3596 * @ap: the target ata_port
3597 * @qc: qc on going
3598 * @status: current device status
3599 * @in_wq: 1 if called from workqueue, 0 otherwise
3600 *
3601 * RETURNS:
3602 * 1 when poll next status needed, 0 otherwise.
3603 */
3604
3605static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
3606 u8 status, int in_wq)
Albert Leee2cec772006-03-25 17:43:49 +08003607{
Albert Leebb5cb292006-03-25 17:48:02 +08003608 unsigned long flags = 0;
3609 int poll_next;
3610
Albert Lee6912ccd2006-03-25 17:45:49 +08003611 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
3612
Albert Leebb5cb292006-03-25 17:48:02 +08003613 /* Make sure ata_qc_issue_prot() does not throw things
3614 * like DMA polling into the workqueue. Notice that
3615 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
3616 */
Albert Leec234fb02006-03-25 17:58:38 +08003617 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Leebb5cb292006-03-25 17:48:02 +08003618
Albert Leee2cec772006-03-25 17:43:49 +08003619fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08003620 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
3621 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
3622
Albert Leee2cec772006-03-25 17:43:49 +08003623 switch (ap->hsm_task_state) {
3624 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08003625 /* Send first data block or PACKET CDB */
3626
3627 /* If polling, we will stay in the work queue after
3628 * sending the data. Otherwise, interrupt handler
3629 * takes over after sending the data.
3630 */
3631 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
3632
Albert Leee2cec772006-03-25 17:43:49 +08003633 /* check device status */
3634 if (unlikely((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ)) {
3635 /* Wrong status. Let EH handle this */
3636 qc->err_mask |= AC_ERR_HSM;
3637 ap->hsm_task_state = HSM_ST_ERR;
3638 goto fsm_start;
3639 }
3640
Albert Lee71601952006-03-25 18:11:12 +08003641 /* Device should not ask for data transfer (DRQ=1)
3642 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08003643 * We ignore DRQ here and stop the HSM by
3644 * changing hsm_task_state to HSM_ST_ERR and
3645 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08003646 */
3647 if (unlikely(status & (ATA_ERR | ATA_DF))) {
3648 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
3649 ap->id, status);
3650 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08003651 ap->hsm_task_state = HSM_ST_ERR;
3652 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08003653 }
3654
Albert Leebb5cb292006-03-25 17:48:02 +08003655 /* Send the CDB (atapi) or the first data block (ata pio out).
3656 * During the state transition, interrupt handler shouldn't
3657 * be invoked before the data transfer is complete and
3658 * hsm_task_state is changed. Hence, the following locking.
3659 */
3660 if (in_wq)
3661 spin_lock_irqsave(&ap->host_set->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08003662
Albert Leebb5cb292006-03-25 17:48:02 +08003663 if (qc->tf.protocol == ATA_PROT_PIO) {
3664 /* PIO data out protocol.
3665 * send first data block.
3666 */
3667
3668 /* ata_pio_sectors() might change the state
3669 * to HSM_ST_LAST. so, the state is changed here
3670 * before ata_pio_sectors().
3671 */
3672 ap->hsm_task_state = HSM_ST;
3673 ata_pio_sectors(qc);
3674 ata_altstatus(ap); /* flush */
3675 } else
3676 /* send CDB */
3677 atapi_send_cdb(ap, qc);
3678
3679 if (in_wq)
3680 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3681
3682 /* if polling, ata_pio_task() handles the rest.
3683 * otherwise, interrupt handler takes over from here.
3684 */
Albert Leee2cec772006-03-25 17:43:49 +08003685 break;
3686
3687 case HSM_ST:
3688 /* complete command or read/write the data register */
3689 if (qc->tf.protocol == ATA_PROT_ATAPI) {
3690 /* ATAPI PIO protocol */
3691 if ((status & ATA_DRQ) == 0) {
3692 /* no more data to transfer */
3693 ap->hsm_task_state = HSM_ST_LAST;
3694 goto fsm_start;
3695 }
3696
Albert Lee71601952006-03-25 18:11:12 +08003697 /* Device should not ask for data transfer (DRQ=1)
3698 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08003699 * We ignore DRQ here and stop the HSM by
3700 * changing hsm_task_state to HSM_ST_ERR and
3701 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08003702 */
3703 if (unlikely(status & (ATA_ERR | ATA_DF))) {
3704 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
3705 ap->id, status);
3706 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08003707 ap->hsm_task_state = HSM_ST_ERR;
3708 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08003709 }
3710
Albert Leee2cec772006-03-25 17:43:49 +08003711 atapi_pio_bytes(qc);
3712
3713 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
3714 /* bad ireason reported by device */
3715 goto fsm_start;
3716
3717 } else {
3718 /* ATA PIO protocol */
3719 if (unlikely((status & ATA_DRQ) == 0)) {
3720 /* handle BSY=0, DRQ=0 as error */
3721 qc->err_mask |= AC_ERR_HSM;
3722 ap->hsm_task_state = HSM_ST_ERR;
3723 goto fsm_start;
3724 }
3725
Albert Leeeee6c322006-04-01 17:38:43 +08003726 /* For PIO reads, some devices may ask for
3727 * data transfer (DRQ=1) alone with ERR=1.
3728 * We respect DRQ here and transfer one
3729 * block of junk data before changing the
3730 * hsm_task_state to HSM_ST_ERR.
3731 *
3732 * For PIO writes, ERR=1 DRQ=1 doesn't make
3733 * sense since the data block has been
3734 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08003735 */
3736 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08003737 /* data might be corrputed */
3738 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08003739
3740 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
3741 ata_pio_sectors(qc);
3742 ata_altstatus(ap);
3743 status = ata_wait_idle(ap);
3744 }
3745
3746 /* ata_pio_sectors() might change the
3747 * state to HSM_ST_LAST. so, the state
3748 * is changed after ata_pio_sectors().
3749 */
3750 ap->hsm_task_state = HSM_ST_ERR;
3751 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08003752 }
3753
Albert Leee2cec772006-03-25 17:43:49 +08003754 ata_pio_sectors(qc);
3755
3756 if (ap->hsm_task_state == HSM_ST_LAST &&
3757 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
3758 /* all data read */
3759 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08003760 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08003761 goto fsm_start;
3762 }
3763 }
3764
3765 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08003766 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08003767 break;
3768
3769 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08003770 if (unlikely(!ata_ok(status))) {
3771 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08003772 ap->hsm_task_state = HSM_ST_ERR;
3773 goto fsm_start;
3774 }
3775
3776 /* no more data to transfer */
3777 DPRINTK("ata%u: command complete, drv_stat 0x%x\n",
3778 ap->id, status);
3779
Albert Lee6912ccd2006-03-25 17:45:49 +08003780 WARN_ON(qc->err_mask);
3781
Albert Leee2cec772006-03-25 17:43:49 +08003782 ap->hsm_task_state = HSM_ST_IDLE;
3783
3784 /* complete taskfile transaction */
Albert Leebb5cb292006-03-25 17:48:02 +08003785 if (in_wq)
3786 ata_poll_qc_complete(qc);
3787 else
3788 ata_qc_complete(qc);
3789
3790 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08003791 break;
3792
3793 case HSM_ST_ERR:
3794 if (qc->tf.command != ATA_CMD_PACKET)
Albert Lee6912ccd2006-03-25 17:45:49 +08003795 printk(KERN_ERR "ata%u: command error, drv_stat 0x%x\n",
3796 ap->id, status);
Albert Leee2cec772006-03-25 17:43:49 +08003797
3798 /* make sure qc->err_mask is available to
3799 * know what's wrong and recover
3800 */
3801 WARN_ON(qc->err_mask == 0);
3802
3803 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08003804
Albert Lee999bb6f2006-03-25 18:07:48 +08003805 /* complete taskfile transaction */
Albert Leebb5cb292006-03-25 17:48:02 +08003806 if (in_wq)
3807 ata_poll_qc_complete(qc);
3808 else
3809 ata_qc_complete(qc);
3810
3811 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08003812 break;
3813 default:
Albert Leebb5cb292006-03-25 17:48:02 +08003814 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08003815 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08003816 }
3817
Albert Leebb5cb292006-03-25 17:48:02 +08003818 return poll_next;
Albert Leee2cec772006-03-25 17:43:49 +08003819}
3820
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821static void ata_pio_task(void *_data)
3822{
3823 struct ata_port *ap = _data;
Albert Leea1af3732006-03-25 17:50:15 +08003824 struct ata_queued_cmd *qc;
3825 u8 status;
3826 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003827
3828fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08003829 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Albert Leea1af3732006-03-25 17:50:15 +08003831 qc = ata_qc_from_tag(ap, ap->active_tag);
3832 WARN_ON(qc == NULL);
Albert Leee27486d2005-11-01 19:24:49 +08003833
Albert Leea1af3732006-03-25 17:50:15 +08003834 /*
3835 * This is purely heuristic. This is a fast path.
3836 * Sometimes when we enter, BSY will be cleared in
3837 * a chk-status or two. If not, the drive is probably seeking
3838 * or something. Snooze for a couple msecs, then
3839 * chk-status again. If still busy, queue delayed work.
3840 */
3841 status = ata_busy_wait(ap, ATA_BUSY, 5);
3842 if (status & ATA_BUSY) {
3843 msleep(2);
3844 status = ata_busy_wait(ap, ATA_BUSY, 10);
3845 if (status & ATA_BUSY) {
3846 ata_port_queue_task(ap, ata_pio_task, ap, ATA_SHORT_PAUSE);
3847 return;
3848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 }
3850
Albert Leea1af3732006-03-25 17:50:15 +08003851 /* move the HSM */
3852 poll_next = ata_hsm_move(ap, qc, status, 1);
3853
3854 /* another command or interrupt handler
3855 * may be running at this point.
3856 */
3857 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003858 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859}
3860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861/**
3862 * ata_qc_timeout - Handle timeout of queued command
3863 * @qc: Command that timed out
3864 *
3865 * Some part of the kernel (currently, only the SCSI layer)
3866 * has noticed that the active command on port @ap has not
3867 * completed after a specified length of time. Handle this
3868 * condition by disabling DMA (if necessary) and completing
3869 * transactions, with error if necessary.
3870 *
3871 * This also handles the case of the "lost interrupt", where
3872 * for some reason (possibly hardware bug, possibly driver bug)
3873 * an interrupt was not delivered to the driver, even though the
3874 * transaction completed successfully.
3875 *
3876 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003877 * Inherited from SCSI layer (none, can sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 */
3879
3880static void ata_qc_timeout(struct ata_queued_cmd *qc)
3881{
3882 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003883 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 u8 host_stat = 0, drv_stat;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003885 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
3887 DPRINTK("ENTER\n");
3888
Tejun Heoc18d06f2006-02-02 00:56:10 +09003889 ap->hsm_task_state = HSM_ST_IDLE;
3890
Jeff Garzikb8f61532005-08-25 22:01:20 -04003891 spin_lock_irqsave(&host_set->lock, flags);
3892
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 switch (qc->tf.protocol) {
3894
3895 case ATA_PROT_DMA:
3896 case ATA_PROT_ATAPI_DMA:
3897 host_stat = ap->ops->bmdma_status(ap);
3898
3899 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003900 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
3902 /* fall through */
3903
3904 default:
3905 ata_altstatus(ap);
3906 drv_stat = ata_chk_status(ap);
3907
3908 /* ack bmdma irq events */
3909 ap->ops->irq_clear(ap);
3910
3911 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
3912 ap->id, qc->tf.command, drv_stat, host_stat);
3913
Albert Lee312f7da2005-09-27 17:38:03 +08003914 ap->hsm_task_state = HSM_ST_IDLE;
3915
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 /* complete taskfile transaction */
Albert Lee555a8962006-02-08 16:50:29 +08003917 qc->err_mask |= AC_ERR_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 break;
3919 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04003920
3921 spin_unlock_irqrestore(&host_set->lock, flags);
3922
Tejun Heoa72ec4c2006-01-23 13:09:37 +09003923 ata_eh_qc_complete(qc);
3924
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 DPRINTK("EXIT\n");
3926}
3927
3928/**
3929 * ata_eng_timeout - Handle timeout of queued command
3930 * @ap: Port on which timed-out command is active
3931 *
3932 * Some part of the kernel (currently, only the SCSI layer)
3933 * has noticed that the active command on port @ap has not
3934 * completed after a specified length of time. Handle this
3935 * condition by disabling DMA (if necessary) and completing
3936 * transactions, with error if necessary.
3937 *
3938 * This also handles the case of the "lost interrupt", where
3939 * for some reason (possibly hardware bug, possibly driver bug)
3940 * an interrupt was not delivered to the driver, even though the
3941 * transaction completed successfully.
3942 *
3943 * LOCKING:
3944 * Inherited from SCSI layer (none, can sleep)
3945 */
3946
3947void ata_eng_timeout(struct ata_port *ap)
3948{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 DPRINTK("ENTER\n");
3950
Tejun Heof6379022006-02-10 15:10:48 +09003951 ata_qc_timeout(ata_qc_from_tag(ap, ap->active_tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 DPRINTK("EXIT\n");
3954}
3955
3956/**
3957 * ata_qc_new - Request an available ATA command, for queueing
3958 * @ap: Port associated with device @dev
3959 * @dev: Device from whom we request an available command structure
3960 *
3961 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003962 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 */
3964
3965static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
3966{
3967 struct ata_queued_cmd *qc = NULL;
3968 unsigned int i;
3969
3970 for (i = 0; i < ATA_MAX_QUEUE; i++)
3971 if (!test_and_set_bit(i, &ap->qactive)) {
3972 qc = ata_qc_from_tag(ap, i);
3973 break;
3974 }
3975
3976 if (qc)
3977 qc->tag = i;
3978
3979 return qc;
3980}
3981
3982/**
3983 * ata_qc_new_init - Request an available ATA command, and initialize it
3984 * @ap: Port associated with device @dev
3985 * @dev: Device from whom we request an available command structure
3986 *
3987 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003988 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 */
3990
3991struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
3992 struct ata_device *dev)
3993{
3994 struct ata_queued_cmd *qc;
3995
3996 qc = ata_qc_new(ap);
3997 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 qc->scsicmd = NULL;
3999 qc->ap = ap;
4000 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004002 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 }
4004
4005 return qc;
4006}
4007
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008/**
4009 * ata_qc_free - free unused ata_queued_cmd
4010 * @qc: Command to complete
4011 *
4012 * Designed to free unused ata_queued_cmd object
4013 * in case something prevents using it.
4014 *
4015 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004016 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 */
4018void ata_qc_free(struct ata_queued_cmd *qc)
4019{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004020 struct ata_port *ap = qc->ap;
4021 unsigned int tag;
4022
Tejun Heoa4631472006-02-11 19:11:13 +09004023 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Tejun Heo4ba946e2006-01-23 13:09:36 +09004025 qc->flags = 0;
4026 tag = qc->tag;
4027 if (likely(ata_tag_valid(tag))) {
4028 if (tag == ap->active_tag)
4029 ap->active_tag = ATA_TAG_POISON;
4030 qc->tag = ATA_TAG_POISON;
4031 clear_bit(tag, &ap->qactive);
4032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033}
4034
Tejun Heo76014422006-02-11 15:13:49 +09004035void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036{
Tejun Heoa4631472006-02-11 19:11:13 +09004037 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4038 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
4040 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4041 ata_sg_clean(qc);
4042
Albert Lee3f3791d2005-08-16 14:25:38 +08004043 /* atapi: mark qc as inactive to prevent the interrupt handler
4044 * from completing the command twice later, before the error handler
4045 * is called. (when rc != 0 and atapi request sense is needed)
4046 */
4047 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4048
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004050 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051}
4052
4053static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4054{
4055 struct ata_port *ap = qc->ap;
4056
4057 switch (qc->tf.protocol) {
4058 case ATA_PROT_DMA:
4059 case ATA_PROT_ATAPI_DMA:
4060 return 1;
4061
4062 case ATA_PROT_ATAPI:
4063 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 if (ap->flags & ATA_FLAG_PIO_DMA)
4065 return 1;
4066
4067 /* fall through */
4068
4069 default:
4070 return 0;
4071 }
4072
4073 /* never reached */
4074}
4075
4076/**
4077 * ata_qc_issue - issue taskfile to device
4078 * @qc: command to issue to device
4079 *
4080 * Prepare an ATA command to submission to device.
4081 * This includes mapping the data into a DMA-able
4082 * area, filling in the S/G table, and finally
4083 * writing the taskfile to hardware, starting the command.
4084 *
4085 * LOCKING:
4086 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004088void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089{
4090 struct ata_port *ap = qc->ap;
4091
Tejun Heoe4a70e72006-03-31 20:36:47 +09004092 qc->ap->active_tag = qc->tag;
4093 qc->flags |= ATA_QCFLAG_ACTIVE;
4094
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 if (ata_should_dma_map(qc)) {
4096 if (qc->flags & ATA_QCFLAG_SG) {
4097 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004098 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4100 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004101 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 }
4103 } else {
4104 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4105 }
4106
4107 ap->ops->qc_prep(qc);
4108
Tejun Heo8e0e6942006-03-31 20:41:11 +09004109 qc->err_mask |= ap->ops->qc_issue(qc);
4110 if (unlikely(qc->err_mask))
4111 goto err;
4112 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Tejun Heo8e436af2006-01-23 13:09:36 +09004114sg_err:
4115 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004116 qc->err_mask |= AC_ERR_SYSTEM;
4117err:
4118 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119}
4120
4121/**
4122 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4123 * @qc: command to issue to device
4124 *
4125 * Using various libata functions and hooks, this function
4126 * starts an ATA command. ATA commands are grouped into
4127 * classes called "protocols", and issuing each type of protocol
4128 * is slightly different.
4129 *
Edward Falk0baab862005-06-02 18:17:13 -04004130 * May be used as the qc_issue() entry in ata_port_operations.
4131 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 * LOCKING:
4133 * spin_lock_irqsave(host_set lock)
4134 *
4135 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004136 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 */
4138
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004139unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140{
4141 struct ata_port *ap = qc->ap;
4142
Albert Leee50362e2005-09-27 17:39:50 +08004143 /* Use polling pio if the LLD doesn't handle
4144 * interrupt driven pio and atapi CDB interrupt.
4145 */
4146 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4147 switch (qc->tf.protocol) {
4148 case ATA_PROT_PIO:
4149 case ATA_PROT_ATAPI:
4150 case ATA_PROT_ATAPI_NODATA:
4151 qc->tf.flags |= ATA_TFLAG_POLLING;
4152 break;
4153 case ATA_PROT_ATAPI_DMA:
4154 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Leec2bbc552006-03-25 17:56:55 +08004155 /* see ata_check_atapi_dma() */
Albert Leee50362e2005-09-27 17:39:50 +08004156 BUG();
4157 break;
4158 default:
4159 break;
4160 }
4161 }
4162
Albert Lee312f7da2005-09-27 17:38:03 +08004163 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 ata_dev_select(ap, qc->dev->devno, 1, 0);
4165
Albert Lee312f7da2005-09-27 17:38:03 +08004166 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 switch (qc->tf.protocol) {
4168 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004169 if (qc->tf.flags & ATA_TFLAG_POLLING)
4170 ata_qc_set_polling(qc);
4171
Jeff Garzike5338252005-10-30 21:37:17 -05004172 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004173 ap->hsm_task_state = HSM_ST_LAST;
4174
4175 if (qc->tf.flags & ATA_TFLAG_POLLING)
Jeff Garzik46e202e2006-03-11 19:25:47 -05004176 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004177
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 break;
4179
4180 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004181 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4184 ap->ops->bmdma_setup(qc); /* set up bmdma */
4185 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004186 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 break;
4188
Albert Lee312f7da2005-09-27 17:38:03 +08004189 case ATA_PROT_PIO:
4190 if (qc->tf.flags & ATA_TFLAG_POLLING)
4191 ata_qc_set_polling(qc);
4192
Jeff Garzike5338252005-10-30 21:37:17 -05004193 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004194
Albert Lee54f00382005-09-30 19:14:19 +08004195 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4196 /* PIO data out protocol */
4197 ap->hsm_task_state = HSM_ST_FIRST;
Jeff Garzikce1e7a22006-03-11 19:21:17 -05004198 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004199
4200 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004201 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004202 */
Albert Lee312f7da2005-09-27 17:38:03 +08004203 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004204 /* PIO data in protocol */
4205 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004206
Albert Lee54f00382005-09-30 19:14:19 +08004207 if (qc->tf.flags & ATA_TFLAG_POLLING)
Jeff Garzikce1e7a22006-03-11 19:21:17 -05004208 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004209
Albert Lee54f00382005-09-30 19:14:19 +08004210 /* if polling, ata_pio_task() handles the rest.
4211 * otherwise, interrupt handler takes over from here.
4212 */
Albert Lee312f7da2005-09-27 17:38:03 +08004213 }
4214
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 break;
4216
4217 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004219 if (qc->tf.flags & ATA_TFLAG_POLLING)
4220 ata_qc_set_polling(qc);
4221
Jeff Garzike5338252005-10-30 21:37:17 -05004222 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004223
Albert Lee312f7da2005-09-27 17:38:03 +08004224 ap->hsm_task_state = HSM_ST_FIRST;
4225
4226 /* send cdb by polling if no cdb interrupt */
4227 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4228 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee13ee4622006-03-25 17:39:34 +08004229 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 break;
4231
4232 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004233 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004234
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4236 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004237 ap->hsm_task_state = HSM_ST_FIRST;
4238
4239 /* send cdb by polling if no cdb interrupt */
4240 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee13ee4622006-03-25 17:39:34 +08004241 ata_port_queue_task(ap, ata_pio_task, ap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 break;
4243
4244 default:
4245 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004246 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 }
4248
4249 return 0;
4250}
4251
4252/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 * ata_host_intr - Handle host interrupt for given (port, task)
4254 * @ap: Port on which interrupt arrived (possibly...)
4255 * @qc: Taskfile currently active in engine
4256 *
4257 * Handle host interrupt for given queued command. Currently,
4258 * only DMA interrupts are handled. All other commands are
4259 * handled via polling with interrupts disabled (nIEN bit).
4260 *
4261 * LOCKING:
4262 * spin_lock_irqsave(host_set lock)
4263 *
4264 * RETURNS:
4265 * One if interrupt was handled, zero if not (shared irq).
4266 */
4267
4268inline unsigned int ata_host_intr (struct ata_port *ap,
4269 struct ata_queued_cmd *qc)
4270{
Albert Lee312f7da2005-09-27 17:38:03 +08004271 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
Albert Lee312f7da2005-09-27 17:38:03 +08004273 VPRINTK("ata%u: protocol %d task_state %d\n",
4274 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
Albert Lee312f7da2005-09-27 17:38:03 +08004276 /* Check whether we are expecting interrupt in this state */
4277 switch (ap->hsm_task_state) {
4278 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004279 /* Some pre-ATAPI-4 devices assert INTRQ
4280 * at this state when ready to receive CDB.
4281 */
4282
Albert Lee312f7da2005-09-27 17:38:03 +08004283 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4284 * The flag was turned on only for atapi devices.
4285 * No need to check is_atapi_taskfile(&qc->tf) again.
4286 */
4287 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 goto idle_irq;
Albert Lee312f7da2005-09-27 17:38:03 +08004289 break;
4290 case HSM_ST_LAST:
4291 if (qc->tf.protocol == ATA_PROT_DMA ||
4292 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4293 /* check status of DMA engine */
4294 host_stat = ap->ops->bmdma_status(ap);
4295 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296
Albert Lee312f7da2005-09-27 17:38:03 +08004297 /* if it's not our irq... */
4298 if (!(host_stat & ATA_DMA_INTR))
4299 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300
Albert Lee312f7da2005-09-27 17:38:03 +08004301 /* before we do anything else, clear DMA-Start bit */
4302 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004303
4304 if (unlikely(host_stat & ATA_DMA_ERR)) {
4305 /* error when transfering data to/from memory */
4306 qc->err_mask |= AC_ERR_HOST_BUS;
4307 ap->hsm_task_state = HSM_ST_ERR;
4308 }
Albert Lee312f7da2005-09-27 17:38:03 +08004309 }
4310 break;
4311 case HSM_ST:
4312 break;
4313 default:
4314 goto idle_irq;
4315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
Albert Lee312f7da2005-09-27 17:38:03 +08004317 /* check altstatus */
4318 status = ata_altstatus(ap);
4319 if (status & ATA_BUSY)
4320 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
Albert Lee312f7da2005-09-27 17:38:03 +08004322 /* check main status, clearing INTRQ */
4323 status = ata_chk_status(ap);
4324 if (unlikely(status & ATA_BUSY))
4325 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
Albert Lee312f7da2005-09-27 17:38:03 +08004327 /* ack bmdma irq events */
4328 ap->ops->irq_clear(ap);
4329
Albert Leebb5cb292006-03-25 17:48:02 +08004330 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 return 1; /* irq handled */
4332
4333idle_irq:
4334 ap->stats.idle_irq++;
4335
4336#ifdef ATA_IRQ_TRAP
4337 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 ata_irq_ack(ap, 0); /* debug trap */
4339 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004340 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 }
4342#endif
4343 return 0; /* irq not handled */
4344}
4345
4346/**
4347 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004348 * @irq: irq line (unused)
4349 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 * @regs: unused
4351 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004352 * Default interrupt handler for PCI IDE devices. Calls
4353 * ata_host_intr() for each port that is not disabled.
4354 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004356 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 *
4358 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004359 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 */
4361
4362irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4363{
4364 struct ata_host_set *host_set = dev_instance;
4365 unsigned int i;
4366 unsigned int handled = 0;
4367 unsigned long flags;
4368
4369 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4370 spin_lock_irqsave(&host_set->lock, flags);
4371
4372 for (i = 0; i < host_set->n_ports; i++) {
4373 struct ata_port *ap;
4374
4375 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004376 if (ap &&
Albert Lee312f7da2005-09-27 17:38:03 +08004377 !(ap->flags & ATA_FLAG_PORT_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 struct ata_queued_cmd *qc;
4379
4380 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004381 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004382 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 handled |= ata_host_intr(ap, qc);
4384 }
4385 }
4386
4387 spin_unlock_irqrestore(&host_set->lock, flags);
4388
4389 return IRQ_RETVAL(handled);
4390}
4391
Edward Falk0baab862005-06-02 18:17:13 -04004392
Jens Axboe9b847542006-01-06 09:28:07 +01004393/*
4394 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4395 * without filling any other registers
4396 */
4397static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4398 u8 cmd)
4399{
4400 struct ata_taskfile tf;
4401 int err;
4402
4403 ata_tf_init(ap, &tf, dev->devno);
4404
4405 tf.command = cmd;
4406 tf.flags |= ATA_TFLAG_DEVICE;
4407 tf.protocol = ATA_PROT_NODATA;
4408
4409 err = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
4410 if (err)
4411 printk(KERN_ERR "%s: ata command failed: %d\n",
4412 __FUNCTION__, err);
4413
4414 return err;
4415}
4416
4417static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4418{
4419 u8 cmd;
4420
4421 if (!ata_try_flush_cache(dev))
4422 return 0;
4423
4424 if (ata_id_has_flush_ext(dev->id))
4425 cmd = ATA_CMD_FLUSH_EXT;
4426 else
4427 cmd = ATA_CMD_FLUSH;
4428
4429 return ata_do_simple_cmd(ap, dev, cmd);
4430}
4431
4432static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4433{
4434 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4435}
4436
4437static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4438{
4439 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4440}
4441
4442/**
4443 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004444 * @ap: port the device is connected to
4445 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004446 *
4447 * Kick the drive back into action, by sending it an idle immediate
4448 * command and making sure its transfer mode matches between drive
4449 * and host.
4450 *
4451 */
4452int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4453{
4454 if (ap->flags & ATA_FLAG_SUSPENDED) {
4455 ap->flags &= ~ATA_FLAG_SUSPENDED;
4456 ata_set_mode(ap);
4457 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004458 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004459 return 0;
4460 if (dev->class == ATA_DEV_ATA)
4461 ata_start_drive(ap, dev);
4462
4463 return 0;
4464}
4465
4466/**
4467 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004468 * @ap: port the device is connected to
4469 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004470 *
4471 * Flush the cache on the drive, if appropriate, then issue a
4472 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004473 */
Nigel Cunningham082776e2006-03-23 23:22:16 +10004474int ata_device_suspend(struct ata_port *ap, struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004475{
Tejun Heoe1211e32006-04-01 01:38:18 +09004476 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004477 return 0;
4478 if (dev->class == ATA_DEV_ATA)
4479 ata_flush_cache(ap, dev);
4480
Nigel Cunningham082776e2006-03-23 23:22:16 +10004481 if (state.event != PM_EVENT_FREEZE)
4482 ata_standby_drive(ap, dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004483 ap->flags |= ATA_FLAG_SUSPENDED;
4484 return 0;
4485}
4486
Albert Lee332b5a52006-02-08 16:51:34 +08004487/**
4488 * ata_port_start - Set port up for dma.
4489 * @ap: Port to initialize
4490 *
4491 * Called just after data structures for each port are
4492 * initialized. Allocates space for PRD table.
4493 *
4494 * May be used as the port_start() entry in ata_port_operations.
4495 *
4496 * LOCKING:
4497 * Inherited from caller.
4498 */
4499
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500int ata_port_start (struct ata_port *ap)
4501{
Brian King2f1f6102006-03-23 17:30:15 -06004502 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004503 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
4505 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4506 if (!ap->prd)
4507 return -ENOMEM;
4508
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004509 rc = ata_pad_alloc(ap, dev);
4510 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004511 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004512 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004513 }
4514
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4516
4517 return 0;
4518}
4519
Edward Falk0baab862005-06-02 18:17:13 -04004520
4521/**
4522 * ata_port_stop - Undo ata_port_start()
4523 * @ap: Port to shut down
4524 *
4525 * Frees the PRD table.
4526 *
4527 * May be used as the port_stop() entry in ata_port_operations.
4528 *
4529 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004530 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004531 */
4532
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533void ata_port_stop (struct ata_port *ap)
4534{
Brian King2f1f6102006-03-23 17:30:15 -06004535 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
4537 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004538 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539}
4540
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004541void ata_host_stop (struct ata_host_set *host_set)
4542{
4543 if (host_set->mmio_base)
4544 iounmap(host_set->mmio_base);
4545}
4546
4547
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548/**
4549 * ata_host_remove - Unregister SCSI host structure with upper layers
4550 * @ap: Port to unregister
4551 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4552 *
4553 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004554 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 */
4556
4557static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4558{
4559 struct Scsi_Host *sh = ap->host;
4560
4561 DPRINTK("ENTER\n");
4562
4563 if (do_unregister)
4564 scsi_remove_host(sh);
4565
4566 ap->ops->port_stop(ap);
4567}
4568
4569/**
4570 * ata_host_init - Initialize an ata_port structure
4571 * @ap: Structure to initialize
4572 * @host: associated SCSI mid-layer structure
4573 * @host_set: Collection of hosts to which @ap belongs
4574 * @ent: Probe information provided by low-level driver
4575 * @port_no: Port number associated with this ata_port
4576 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004577 * Initialize a new ata_port structure, and its associated
4578 * scsi_host.
4579 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004581 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 */
4583
4584static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4585 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004586 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587{
4588 unsigned int i;
4589
4590 host->max_id = 16;
4591 host->max_lun = 1;
4592 host->max_channel = 1;
4593 host->unique_id = ata_unique_id++;
4594 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004595
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 ap->flags = ATA_FLAG_PORT_DISABLED;
4597 ap->id = host->unique_id;
4598 ap->host = host;
4599 ap->ctl = ATA_DEVCTL_OBS;
4600 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004601 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 ap->port_no = port_no;
4603 ap->hard_port_no =
4604 ent->legacy_mode ? ent->hard_port_no : port_no;
4605 ap->pio_mask = ent->pio_mask;
4606 ap->mwdma_mask = ent->mwdma_mask;
4607 ap->udma_mask = ent->udma_mask;
4608 ap->flags |= ent->host_flags;
4609 ap->ops = ent->port_ops;
4610 ap->cbl = ATA_CBL_NONE;
4611 ap->active_tag = ATA_TAG_POISON;
4612 ap->last_ctl = 0xFF;
4613
Tejun Heo86e45b62006-03-05 15:29:09 +09004614 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004615 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Tejun Heoacf356b2006-03-24 14:07:50 +09004617 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4618 struct ata_device *dev = &ap->device[i];
4619 dev->devno = i;
4620 dev->pio_mask = UINT_MAX;
4621 dev->mwdma_mask = UINT_MAX;
4622 dev->udma_mask = UINT_MAX;
4623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625#ifdef ATA_IRQ_TRAP
4626 ap->stats.unhandled_irq = 1;
4627 ap->stats.idle_irq = 1;
4628#endif
4629
4630 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4631}
4632
4633/**
4634 * ata_host_add - Attach low-level ATA driver to system
4635 * @ent: Information provided by low-level driver
4636 * @host_set: Collections of ports to which we add
4637 * @port_no: Port number associated with this host
4638 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004639 * Attach low-level ATA driver to system.
4640 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004642 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 *
4644 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004645 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 */
4647
Jeff Garzik057ace52005-10-22 14:27:05 -04004648static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 struct ata_host_set *host_set,
4650 unsigned int port_no)
4651{
4652 struct Scsi_Host *host;
4653 struct ata_port *ap;
4654 int rc;
4655
4656 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004657
4658 if (!ent->port_ops->probe_reset &&
4659 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4660 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4661 port_no);
4662 return NULL;
4663 }
4664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4666 if (!host)
4667 return NULL;
4668
Tejun Heo30afc842006-03-18 18:40:14 +09004669 host->transportt = &ata_scsi_transport_template;
4670
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 ap = (struct ata_port *) &host->hostdata[0];
4672
4673 ata_host_init(ap, host, host_set, ent, port_no);
4674
4675 rc = ap->ops->port_start(ap);
4676 if (rc)
4677 goto err_out;
4678
4679 return ap;
4680
4681err_out:
4682 scsi_host_put(host);
4683 return NULL;
4684}
4685
4686/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004687 * ata_device_add - Register hardware device with ATA and SCSI layers
4688 * @ent: Probe information describing hardware device to be registered
4689 *
4690 * This function processes the information provided in the probe
4691 * information struct @ent, allocates the necessary ATA and SCSI
4692 * host information structures, initializes them, and registers
4693 * everything with requisite kernel subsystems.
4694 *
4695 * This function requests irqs, probes the ATA bus, and probes
4696 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 *
4698 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004699 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 *
4701 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004702 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 */
4704
Jeff Garzik057ace52005-10-22 14:27:05 -04004705int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706{
4707 unsigned int count = 0, i;
4708 struct device *dev = ent->dev;
4709 struct ata_host_set *host_set;
4710
4711 DPRINTK("ENTER\n");
4712 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004713 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4715 if (!host_set)
4716 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 spin_lock_init(&host_set->lock);
4718
4719 host_set->dev = dev;
4720 host_set->n_ports = ent->n_ports;
4721 host_set->irq = ent->irq;
4722 host_set->mmio_base = ent->mmio_base;
4723 host_set->private_data = ent->private_data;
4724 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004725 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
4727 /* register each port bound to this device */
4728 for (i = 0; i < ent->n_ports; i++) {
4729 struct ata_port *ap;
4730 unsigned long xfer_mode_mask;
4731
4732 ap = ata_host_add(ent, host_set, i);
4733 if (!ap)
4734 goto err_out;
4735
4736 host_set->ports[i] = ap;
4737 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4738 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4739 (ap->pio_mask << ATA_SHIFT_PIO);
4740
4741 /* print per-port info to dmesg */
4742 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4743 "bmdma 0x%lX irq %lu\n",
4744 ap->id,
4745 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4746 ata_mode_string(xfer_mode_mask),
4747 ap->ioaddr.cmd_addr,
4748 ap->ioaddr.ctl_addr,
4749 ap->ioaddr.bmdma_addr,
4750 ent->irq);
4751
4752 ata_chk_status(ap);
4753 host_set->ops->irq_clear(ap);
4754 count++;
4755 }
4756
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004757 if (!count)
4758 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
4760 /* obtain irq, that is shared between channels */
4761 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4762 DRV_NAME, host_set))
4763 goto err_out;
4764
4765 /* perform each probe synchronously */
4766 DPRINTK("probe begin\n");
4767 for (i = 0; i < count; i++) {
4768 struct ata_port *ap;
4769 int rc;
4770
4771 ap = host_set->ports[i];
4772
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004773 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004775 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776
4777 if (rc) {
4778 /* FIXME: do something useful here?
4779 * Current libata behavior will
4780 * tear down everything when
4781 * the module is removed
4782 * or the h/w is unplugged.
4783 */
4784 }
4785
4786 rc = scsi_add_host(ap->host, dev);
4787 if (rc) {
4788 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4789 ap->id);
4790 /* FIXME: do something useful here */
4791 /* FIXME: handle unconditional calls to
4792 * scsi_scan_host and ata_host_remove, below,
4793 * at the very least
4794 */
4795 }
4796 }
4797
4798 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004799 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800 for (i = 0; i < count; i++) {
4801 struct ata_port *ap = host_set->ports[i];
4802
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004803 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 }
4805
4806 dev_set_drvdata(dev, host_set);
4807
4808 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4809 return ent->n_ports; /* success */
4810
4811err_out:
4812 for (i = 0; i < count; i++) {
4813 ata_host_remove(host_set->ports[i], 1);
4814 scsi_host_put(host_set->ports[i]->host);
4815 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004816err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 kfree(host_set);
4818 VPRINTK("EXIT, returning 0\n");
4819 return 0;
4820}
4821
4822/**
Alan Cox17b14452005-09-15 15:44:00 +01004823 * ata_host_set_remove - PCI layer callback for device removal
4824 * @host_set: ATA host set that was removed
4825 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004826 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01004827 * objects.
4828 *
4829 * LOCKING:
4830 * Inherited from calling layer (may sleep).
4831 */
4832
Alan Cox17b14452005-09-15 15:44:00 +01004833void ata_host_set_remove(struct ata_host_set *host_set)
4834{
4835 struct ata_port *ap;
4836 unsigned int i;
4837
4838 for (i = 0; i < host_set->n_ports; i++) {
4839 ap = host_set->ports[i];
4840 scsi_remove_host(ap->host);
4841 }
4842
4843 free_irq(host_set->irq, host_set);
4844
4845 for (i = 0; i < host_set->n_ports; i++) {
4846 ap = host_set->ports[i];
4847
4848 ata_scsi_release(ap->host);
4849
4850 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4851 struct ata_ioports *ioaddr = &ap->ioaddr;
4852
4853 if (ioaddr->cmd_addr == 0x1f0)
4854 release_region(0x1f0, 8);
4855 else if (ioaddr->cmd_addr == 0x170)
4856 release_region(0x170, 8);
4857 }
4858
4859 scsi_host_put(ap->host);
4860 }
4861
4862 if (host_set->ops->host_stop)
4863 host_set->ops->host_stop(host_set);
4864
4865 kfree(host_set);
4866}
4867
4868/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 * ata_scsi_release - SCSI layer callback hook for host unload
4870 * @host: libata host to be unloaded
4871 *
4872 * Performs all duties necessary to shut down a libata port...
4873 * Kill port kthread, disable port, and release resources.
4874 *
4875 * LOCKING:
4876 * Inherited from SCSI layer.
4877 *
4878 * RETURNS:
4879 * One.
4880 */
4881
4882int ata_scsi_release(struct Scsi_Host *host)
4883{
4884 struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
Tejun Heod9572b12006-03-01 16:09:35 +09004885 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
4887 DPRINTK("ENTER\n");
4888
4889 ap->ops->port_disable(ap);
4890 ata_host_remove(ap, 0);
Tejun Heod9572b12006-03-01 16:09:35 +09004891 for (i = 0; i < ATA_MAX_DEVICES; i++)
4892 kfree(ap->device[i].id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
4894 DPRINTK("EXIT\n");
4895 return 1;
4896}
4897
4898/**
4899 * ata_std_ports - initialize ioaddr with standard port offsets.
4900 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004901 *
4902 * Utility function which initializes data_addr, error_addr,
4903 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4904 * device_addr, status_addr, and command_addr to standard offsets
4905 * relative to cmd_addr.
4906 *
4907 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 */
Edward Falk0baab862005-06-02 18:17:13 -04004909
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910void ata_std_ports(struct ata_ioports *ioaddr)
4911{
4912 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4913 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4914 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4915 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4916 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4917 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4918 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4919 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4920 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4921 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4922}
4923
Edward Falk0baab862005-06-02 18:17:13 -04004924
Jeff Garzik374b1872005-08-30 05:42:52 -04004925#ifdef CONFIG_PCI
4926
4927void ata_pci_host_stop (struct ata_host_set *host_set)
4928{
4929 struct pci_dev *pdev = to_pci_dev(host_set->dev);
4930
4931 pci_iounmap(pdev, host_set->mmio_base);
4932}
4933
Edward Falk0baab862005-06-02 18:17:13 -04004934/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 * ata_pci_remove_one - PCI layer callback for device removal
4936 * @pdev: PCI device that was removed
4937 *
4938 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004939 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 * Handle this by unregistering all objects associated
4941 * with this PCI device. Free those objects. Then finally
4942 * release PCI resources and disable device.
4943 *
4944 * LOCKING:
4945 * Inherited from PCI layer (may sleep).
4946 */
4947
4948void ata_pci_remove_one (struct pci_dev *pdev)
4949{
4950 struct device *dev = pci_dev_to_dev(pdev);
4951 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952
Alan Cox17b14452005-09-15 15:44:00 +01004953 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 pci_release_regions(pdev);
4955 pci_disable_device(pdev);
4956 dev_set_drvdata(dev, NULL);
4957}
4958
4959/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04004960int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961{
4962 unsigned long tmp = 0;
4963
4964 switch (bits->width) {
4965 case 1: {
4966 u8 tmp8 = 0;
4967 pci_read_config_byte(pdev, bits->reg, &tmp8);
4968 tmp = tmp8;
4969 break;
4970 }
4971 case 2: {
4972 u16 tmp16 = 0;
4973 pci_read_config_word(pdev, bits->reg, &tmp16);
4974 tmp = tmp16;
4975 break;
4976 }
4977 case 4: {
4978 u32 tmp32 = 0;
4979 pci_read_config_dword(pdev, bits->reg, &tmp32);
4980 tmp = tmp32;
4981 break;
4982 }
4983
4984 default:
4985 return -EINVAL;
4986 }
4987
4988 tmp &= bits->mask;
4989
4990 return (tmp == bits->val) ? 1 : 0;
4991}
Jens Axboe9b847542006-01-06 09:28:07 +01004992
4993int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
4994{
4995 pci_save_state(pdev);
4996 pci_disable_device(pdev);
4997 pci_set_power_state(pdev, PCI_D3hot);
4998 return 0;
4999}
5000
5001int ata_pci_device_resume(struct pci_dev *pdev)
5002{
5003 pci_set_power_state(pdev, PCI_D0);
5004 pci_restore_state(pdev);
5005 pci_enable_device(pdev);
5006 pci_set_master(pdev);
5007 return 0;
5008}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009#endif /* CONFIG_PCI */
5010
5011
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012static int __init ata_init(void)
5013{
5014 ata_wq = create_workqueue("ata");
5015 if (!ata_wq)
5016 return -ENOMEM;
5017
5018 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5019 return 0;
5020}
5021
5022static void __exit ata_exit(void)
5023{
5024 destroy_workqueue(ata_wq);
5025}
5026
5027module_init(ata_init);
5028module_exit(ata_exit);
5029
Jeff Garzik67846b32005-10-05 02:58:32 -04005030static unsigned long ratelimit_time;
5031static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5032
5033int ata_ratelimit(void)
5034{
5035 int rc;
5036 unsigned long flags;
5037
5038 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5039
5040 if (time_after(jiffies, ratelimit_time)) {
5041 rc = 1;
5042 ratelimit_time = jiffies + (HZ/5);
5043 } else
5044 rc = 0;
5045
5046 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5047
5048 return rc;
5049}
5050
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051/*
5052 * libata is essentially a library of internal helper functions for
5053 * low-level ATA host controller drivers. As such, the API/ABI is
5054 * likely to change as new drivers are added and updated.
5055 * Do not depend on ABI/API stability.
5056 */
5057
5058EXPORT_SYMBOL_GPL(ata_std_bios_param);
5059EXPORT_SYMBOL_GPL(ata_std_ports);
5060EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005061EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062EXPORT_SYMBOL_GPL(ata_sg_init);
5063EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09005064EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
5066EXPORT_SYMBOL_GPL(ata_eng_timeout);
5067EXPORT_SYMBOL_GPL(ata_tf_load);
5068EXPORT_SYMBOL_GPL(ata_tf_read);
5069EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5070EXPORT_SYMBOL_GPL(ata_std_dev_select);
5071EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5072EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5073EXPORT_SYMBOL_GPL(ata_check_status);
5074EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075EXPORT_SYMBOL_GPL(ata_exec_command);
5076EXPORT_SYMBOL_GPL(ata_port_start);
5077EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005078EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079EXPORT_SYMBOL_GPL(ata_interrupt);
5080EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005081EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5083EXPORT_SYMBOL_GPL(ata_bmdma_start);
5084EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5085EXPORT_SYMBOL_GPL(ata_bmdma_status);
5086EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5087EXPORT_SYMBOL_GPL(ata_port_probe);
5088EXPORT_SYMBOL_GPL(sata_phy_reset);
5089EXPORT_SYMBOL_GPL(__sata_phy_reset);
5090EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005091EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005092EXPORT_SYMBOL_GPL(ata_std_softreset);
5093EXPORT_SYMBOL_GPL(sata_std_hardreset);
5094EXPORT_SYMBOL_GPL(ata_std_postreset);
5095EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005096EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005097EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005098EXPORT_SYMBOL_GPL(ata_dev_classify);
5099EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005101EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005102EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005103EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5105EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
5106EXPORT_SYMBOL_GPL(ata_scsi_error);
5107EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5108EXPORT_SYMBOL_GPL(ata_scsi_release);
5109EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo6a62a042006-02-13 10:02:46 +09005110EXPORT_SYMBOL_GPL(ata_id_string);
5111EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112EXPORT_SYMBOL_GPL(ata_scsi_simulate);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005113EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5114EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005116EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005117EXPORT_SYMBOL_GPL(ata_timing_compute);
5118EXPORT_SYMBOL_GPL(ata_timing_merge);
5119
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120#ifdef CONFIG_PCI
5121EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005122EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5124EXPORT_SYMBOL_GPL(ata_pci_init_one);
5125EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005126EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5127EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005128EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5129EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005131
5132EXPORT_SYMBOL_GPL(ata_device_suspend);
5133EXPORT_SYMBOL_GPL(ata_device_resume);
5134EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5135EXPORT_SYMBOL_GPL(ata_scsi_device_resume);