blob: 30a6020c51216b47b4ffe36548f102b5825ec04c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/config.h>
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/pci.h>
39#include <linux/init.h>
40#include <linux/list.h>
41#include <linux/mm.h>
42#include <linux/highmem.h>
43#include <linux/spinlock.h>
44#include <linux/blkdev.h>
45#include <linux/delay.h>
46#include <linux/timer.h>
47#include <linux/interrupt.h>
48#include <linux/completion.h>
49#include <linux/suspend.h>
50#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <linux/libata.h>
58#include <asm/io.h>
59#include <asm/semaphore.h>
60#include <asm/byteorder.h>
61
62#include "libata.h"
63
Tejun Heod7bb4cc2006-05-31 18:27:46 +090064/* debounce timing parameters in msecs { interval, duration, timeout } */
65const unsigned long sata_deb_timing_boot[] = { 5, 100, 2000 };
66const unsigned long sata_deb_timing_eh[] = { 25, 500, 2000 };
67const unsigned long sata_deb_timing_before_fsrst[] = { 100, 2000, 5000 };
68
Tejun Heo3373efd2006-05-15 20:57:53 +090069static unsigned int ata_dev_init_params(struct ata_device *dev,
70 u16 heads, u16 sectors);
71static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
72static void ata_dev_xfermask(struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74static unsigned int ata_unique_id = 1;
75static struct workqueue_struct *ata_wq;
76
Tejun Heo453b07a2006-05-31 18:27:42 +090077struct workqueue_struct *ata_aux_wq;
78
Jeff Garzik418dc1f2006-03-11 20:50:08 -050079int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040080module_param(atapi_enabled, int, 0444);
81MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
82
Albert Lee95de7192006-04-04 10:57:18 +080083int atapi_dmadir = 0;
84module_param(atapi_dmadir, int, 0444);
85MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
86
Jeff Garzikc3c013a2006-02-27 22:31:19 -050087int libata_fua = 0;
88module_param_named(fua, libata_fua, int, 0444);
89MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091MODULE_AUTHOR("Jeff Garzik");
92MODULE_DESCRIPTION("Library module for ATA devices");
93MODULE_LICENSE("GPL");
94MODULE_VERSION(DRV_VERSION);
95
Edward Falk0baab862005-06-02 18:17:13 -040096
97/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
99 * @tf: Taskfile to convert
100 * @fis: Buffer into which data will output
101 * @pmp: Port multiplier port
102 *
103 * Converts a standard ATA taskfile to a Serial ATA
104 * FIS structure (Register - Host to Device).
105 *
106 * LOCKING:
107 * Inherited from caller.
108 */
109
Jeff Garzik057ace52005-10-22 14:27:05 -0400110void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 fis[0] = 0x27; /* Register - Host to Device FIS */
113 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
114 bit 7 indicates Command FIS */
115 fis[2] = tf->command;
116 fis[3] = tf->feature;
117
118 fis[4] = tf->lbal;
119 fis[5] = tf->lbam;
120 fis[6] = tf->lbah;
121 fis[7] = tf->device;
122
123 fis[8] = tf->hob_lbal;
124 fis[9] = tf->hob_lbam;
125 fis[10] = tf->hob_lbah;
126 fis[11] = tf->hob_feature;
127
128 fis[12] = tf->nsect;
129 fis[13] = tf->hob_nsect;
130 fis[14] = 0;
131 fis[15] = tf->ctl;
132
133 fis[16] = 0;
134 fis[17] = 0;
135 fis[18] = 0;
136 fis[19] = 0;
137}
138
139/**
140 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
141 * @fis: Buffer from which data will be input
142 * @tf: Taskfile to output
143 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500144 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 *
146 * LOCKING:
147 * Inherited from caller.
148 */
149
Jeff Garzik057ace52005-10-22 14:27:05 -0400150void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 tf->command = fis[2]; /* status */
153 tf->feature = fis[3]; /* error */
154
155 tf->lbal = fis[4];
156 tf->lbam = fis[5];
157 tf->lbah = fis[6];
158 tf->device = fis[7];
159
160 tf->hob_lbal = fis[8];
161 tf->hob_lbam = fis[9];
162 tf->hob_lbah = fis[10];
163
164 tf->nsect = fis[12];
165 tf->hob_nsect = fis[13];
166}
167
Albert Lee8cbd6df2005-10-12 15:06:27 +0800168static const u8 ata_rw_cmds[] = {
169 /* pio multi */
170 ATA_CMD_READ_MULTI,
171 ATA_CMD_WRITE_MULTI,
172 ATA_CMD_READ_MULTI_EXT,
173 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100174 0,
175 0,
176 0,
177 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800178 /* pio */
179 ATA_CMD_PIO_READ,
180 ATA_CMD_PIO_WRITE,
181 ATA_CMD_PIO_READ_EXT,
182 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100183 0,
184 0,
185 0,
186 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800187 /* dma */
188 ATA_CMD_READ,
189 ATA_CMD_WRITE,
190 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100191 ATA_CMD_WRITE_EXT,
192 0,
193 0,
194 0,
195 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800196};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800199 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
200 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500202 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800203 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
205 * LOCKING:
206 * caller.
207 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100208int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800210 struct ata_taskfile *tf = &qc->tf;
211 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100212 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100214 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500215
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100216 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800217 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
218 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Albert Lee8cbd6df2005-10-12 15:06:27 +0800220 if (dev->flags & ATA_DFLAG_PIO) {
221 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100222 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000223 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
224 /* Unable to use DMA due to host limitation */
225 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800226 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800227 } else {
228 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100229 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100232 cmd = ata_rw_cmds[index + fua + lba48 + write];
233 if (cmd) {
234 tf->command = cmd;
235 return 0;
236 }
237 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Tejun Heocb95d562006-03-06 04:31:56 +0900240/**
241 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
242 * @pio_mask: pio_mask
243 * @mwdma_mask: mwdma_mask
244 * @udma_mask: udma_mask
245 *
246 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
247 * unsigned int xfer_mask.
248 *
249 * LOCKING:
250 * None.
251 *
252 * RETURNS:
253 * Packed xfer_mask.
254 */
255static unsigned int ata_pack_xfermask(unsigned int pio_mask,
256 unsigned int mwdma_mask,
257 unsigned int udma_mask)
258{
259 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
260 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
261 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
262}
263
Tejun Heoc0489e42006-03-24 14:07:49 +0900264/**
265 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
266 * @xfer_mask: xfer_mask to unpack
267 * @pio_mask: resulting pio_mask
268 * @mwdma_mask: resulting mwdma_mask
269 * @udma_mask: resulting udma_mask
270 *
271 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
272 * Any NULL distination masks will be ignored.
273 */
274static void ata_unpack_xfermask(unsigned int xfer_mask,
275 unsigned int *pio_mask,
276 unsigned int *mwdma_mask,
277 unsigned int *udma_mask)
278{
279 if (pio_mask)
280 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
281 if (mwdma_mask)
282 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
283 if (udma_mask)
284 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
285}
286
Tejun Heocb95d562006-03-06 04:31:56 +0900287static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900288 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900289 u8 base;
290} ata_xfer_tbl[] = {
291 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
292 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
293 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
294 { -1, },
295};
296
297/**
298 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
299 * @xfer_mask: xfer_mask of interest
300 *
301 * Return matching XFER_* value for @xfer_mask. Only the highest
302 * bit of @xfer_mask is considered.
303 *
304 * LOCKING:
305 * None.
306 *
307 * RETURNS:
308 * Matching XFER_* value, 0 if no match found.
309 */
310static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
311{
312 int highbit = fls(xfer_mask) - 1;
313 const struct ata_xfer_ent *ent;
314
315 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
316 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
317 return ent->base + highbit - ent->shift;
318 return 0;
319}
320
321/**
322 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
323 * @xfer_mode: XFER_* of interest
324 *
325 * Return matching xfer_mask for @xfer_mode.
326 *
327 * LOCKING:
328 * None.
329 *
330 * RETURNS:
331 * Matching xfer_mask, 0 if no match found.
332 */
333static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
334{
335 const struct ata_xfer_ent *ent;
336
337 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
338 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
339 return 1 << (ent->shift + xfer_mode - ent->base);
340 return 0;
341}
342
343/**
344 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
345 * @xfer_mode: XFER_* of interest
346 *
347 * Return matching xfer_shift for @xfer_mode.
348 *
349 * LOCKING:
350 * None.
351 *
352 * RETURNS:
353 * Matching xfer_shift, -1 if no match found.
354 */
355static int ata_xfer_mode2shift(unsigned int xfer_mode)
356{
357 const struct ata_xfer_ent *ent;
358
359 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
360 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
361 return ent->shift;
362 return -1;
363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900366 * ata_mode_string - convert xfer_mask to string
367 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 *
369 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900370 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *
372 * LOCKING:
373 * None.
374 *
375 * RETURNS:
376 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900377 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900379static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Tejun Heo75f554b2006-03-06 04:31:57 +0900381 static const char * const xfer_mode_str[] = {
382 "PIO0",
383 "PIO1",
384 "PIO2",
385 "PIO3",
386 "PIO4",
387 "MWDMA0",
388 "MWDMA1",
389 "MWDMA2",
390 "UDMA/16",
391 "UDMA/25",
392 "UDMA/33",
393 "UDMA/44",
394 "UDMA/66",
395 "UDMA/100",
396 "UDMA/133",
397 "UDMA7",
398 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900399 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900401 highbit = fls(xfer_mask) - 1;
402 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
403 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Tejun Heo4c360c82006-04-01 01:38:17 +0900407static const char *sata_spd_string(unsigned int spd)
408{
409 static const char * const spd_str[] = {
410 "1.5 Gbps",
411 "3.0 Gbps",
412 };
413
414 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
415 return "<unknown>";
416 return spd_str[spd - 1];
417}
418
Tejun Heo3373efd2006-05-15 20:57:53 +0900419void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900420{
Tejun Heoe1211e32006-04-01 01:38:18 +0900421 if (ata_dev_enabled(dev)) {
Tejun Heof15a1da2006-05-15 20:57:56 +0900422 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo0b8efb02006-03-24 15:25:31 +0900423 dev->class++;
424 }
425}
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/**
428 * ata_pio_devchk - PATA device presence detection
429 * @ap: ATA channel to examine
430 * @device: Device to examine (starting at zero)
431 *
432 * This technique was originally described in
433 * Hale Landis's ATADRVR (www.ata-atapi.com), and
434 * later found its way into the ATA/ATAPI spec.
435 *
436 * Write a pattern to the ATA shadow registers,
437 * and if a device is present, it will respond by
438 * correctly storing and echoing back the
439 * ATA shadow register contents.
440 *
441 * LOCKING:
442 * caller.
443 */
444
445static unsigned int ata_pio_devchk(struct ata_port *ap,
446 unsigned int device)
447{
448 struct ata_ioports *ioaddr = &ap->ioaddr;
449 u8 nsect, lbal;
450
451 ap->ops->dev_select(ap, device);
452
453 outb(0x55, ioaddr->nsect_addr);
454 outb(0xaa, ioaddr->lbal_addr);
455
456 outb(0xaa, ioaddr->nsect_addr);
457 outb(0x55, ioaddr->lbal_addr);
458
459 outb(0x55, ioaddr->nsect_addr);
460 outb(0xaa, ioaddr->lbal_addr);
461
462 nsect = inb(ioaddr->nsect_addr);
463 lbal = inb(ioaddr->lbal_addr);
464
465 if ((nsect == 0x55) && (lbal == 0xaa))
466 return 1; /* we found a device */
467
468 return 0; /* nothing found */
469}
470
471/**
472 * ata_mmio_devchk - PATA device presence detection
473 * @ap: ATA channel to examine
474 * @device: Device to examine (starting at zero)
475 *
476 * This technique was originally described in
477 * Hale Landis's ATADRVR (www.ata-atapi.com), and
478 * later found its way into the ATA/ATAPI spec.
479 *
480 * Write a pattern to the ATA shadow registers,
481 * and if a device is present, it will respond by
482 * correctly storing and echoing back the
483 * ATA shadow register contents.
484 *
485 * LOCKING:
486 * caller.
487 */
488
489static unsigned int ata_mmio_devchk(struct ata_port *ap,
490 unsigned int device)
491{
492 struct ata_ioports *ioaddr = &ap->ioaddr;
493 u8 nsect, lbal;
494
495 ap->ops->dev_select(ap, device);
496
497 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
498 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
499
500 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
501 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
502
503 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
504 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
505
506 nsect = readb((void __iomem *) ioaddr->nsect_addr);
507 lbal = readb((void __iomem *) ioaddr->lbal_addr);
508
509 if ((nsect == 0x55) && (lbal == 0xaa))
510 return 1; /* we found a device */
511
512 return 0; /* nothing found */
513}
514
515/**
516 * ata_devchk - PATA device presence detection
517 * @ap: ATA channel to examine
518 * @device: Device to examine (starting at zero)
519 *
520 * Dispatch ATA device presence detection, depending
521 * on whether we are using PIO or MMIO to talk to the
522 * ATA shadow registers.
523 *
524 * LOCKING:
525 * caller.
526 */
527
528static unsigned int ata_devchk(struct ata_port *ap,
529 unsigned int device)
530{
531 if (ap->flags & ATA_FLAG_MMIO)
532 return ata_mmio_devchk(ap, device);
533 return ata_pio_devchk(ap, device);
534}
535
536/**
537 * ata_dev_classify - determine device type based on ATA-spec signature
538 * @tf: ATA taskfile register set for device to be identified
539 *
540 * Determine from taskfile register contents whether a device is
541 * ATA or ATAPI, as per "Signature and persistence" section
542 * of ATA/PI spec (volume 1, sect 5.14).
543 *
544 * LOCKING:
545 * None.
546 *
547 * RETURNS:
548 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
549 * the event of failure.
550 */
551
Jeff Garzik057ace52005-10-22 14:27:05 -0400552unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 /* Apple's open source Darwin code hints that some devices only
555 * put a proper signature into the LBA mid/high registers,
556 * So, we only check those. It's sufficient for uniqueness.
557 */
558
559 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
560 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
561 DPRINTK("found ATA device by sig\n");
562 return ATA_DEV_ATA;
563 }
564
565 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
566 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
567 DPRINTK("found ATAPI device by sig\n");
568 return ATA_DEV_ATAPI;
569 }
570
571 DPRINTK("unknown device\n");
572 return ATA_DEV_UNKNOWN;
573}
574
575/**
576 * ata_dev_try_classify - Parse returned ATA device signature
577 * @ap: ATA channel to examine
578 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900579 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 *
581 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
582 * an ATA/ATAPI-defined set of values is placed in the ATA
583 * shadow registers, indicating the results of device detection
584 * and diagnostics.
585 *
586 * Select the ATA device, and read the values from the ATA shadow
587 * registers. Then parse according to the Error register value,
588 * and the spec-defined values examined by ata_dev_classify().
589 *
590 * LOCKING:
591 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900592 *
593 * RETURNS:
594 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
596
Tejun Heob4dc7622006-01-24 17:05:22 +0900597static unsigned int
598ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 struct ata_taskfile tf;
601 unsigned int class;
602 u8 err;
603
604 ap->ops->dev_select(ap, device);
605
606 memset(&tf, 0, sizeof(tf));
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400609 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900610 if (r_err)
611 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 /* see if device passed diags */
614 if (err == 1)
615 /* do nothing */ ;
616 else if ((device == 0) && (err == 0x81))
617 /* do nothing */ ;
618 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900619 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Tejun Heob4dc7622006-01-24 17:05:22 +0900621 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900625 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900627 return ATA_DEV_NONE;
628 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900632 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * @id: IDENTIFY DEVICE results we will examine
634 * @s: string into which data is output
635 * @ofs: offset into identify device page
636 * @len: length of string to return. must be an even number.
637 *
638 * The strings in the IDENTIFY DEVICE page are broken up into
639 * 16-bit chunks. Run through the string, and output each
640 * 8-bit chunk linearly, regardless of platform.
641 *
642 * LOCKING:
643 * caller.
644 */
645
Tejun Heo6a62a042006-02-13 10:02:46 +0900646void ata_id_string(const u16 *id, unsigned char *s,
647 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 unsigned int c;
650
651 while (len > 0) {
652 c = id[ofs] >> 8;
653 *s = c;
654 s++;
655
656 c = id[ofs] & 0xff;
657 *s = c;
658 s++;
659
660 ofs++;
661 len -= 2;
662 }
663}
664
Tejun Heo0e949ff2006-02-12 22:47:04 +0900665/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900666 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900667 * @id: IDENTIFY DEVICE results we will examine
668 * @s: string into which data is output
669 * @ofs: offset into identify device page
670 * @len: length of string to return. must be an odd number.
671 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900672 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900673 * trims trailing spaces and terminates the resulting string with
674 * null. @len must be actual maximum length (even number) + 1.
675 *
676 * LOCKING:
677 * caller.
678 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900679void ata_id_c_string(const u16 *id, unsigned char *s,
680 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900681{
682 unsigned char *p;
683
684 WARN_ON(!(len & 1));
685
Tejun Heo6a62a042006-02-13 10:02:46 +0900686 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900687
688 p = s + strnlen(s, len - 1);
689 while (p > s && p[-1] == ' ')
690 p--;
691 *p = '\0';
692}
Edward Falk0baab862005-06-02 18:17:13 -0400693
Tejun Heo29407402006-02-12 22:47:04 +0900694static u64 ata_id_n_sectors(const u16 *id)
695{
696 if (ata_id_has_lba(id)) {
697 if (ata_id_has_lba48(id))
698 return ata_id_u64(id, 100);
699 else
700 return ata_id_u32(id, 60);
701 } else {
702 if (ata_id_current_chs_valid(id))
703 return ata_id_u32(id, 57);
704 else
705 return id[1] * id[3] * id[6];
706 }
707}
708
Edward Falk0baab862005-06-02 18:17:13 -0400709/**
710 * ata_noop_dev_select - Select device 0/1 on ATA bus
711 * @ap: ATA channel to manipulate
712 * @device: ATA device (numbered from zero) to select
713 *
714 * This function performs no actual function.
715 *
716 * May be used as the dev_select() entry in ata_port_operations.
717 *
718 * LOCKING:
719 * caller.
720 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
722{
723}
724
Edward Falk0baab862005-06-02 18:17:13 -0400725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/**
727 * ata_std_dev_select - Select device 0/1 on ATA bus
728 * @ap: ATA channel to manipulate
729 * @device: ATA device (numbered from zero) to select
730 *
731 * Use the method defined in the ATA specification to
732 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400733 * ATA channel. Works with both PIO and MMIO.
734 *
735 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 *
737 * LOCKING:
738 * caller.
739 */
740
741void ata_std_dev_select (struct ata_port *ap, unsigned int device)
742{
743 u8 tmp;
744
745 if (device == 0)
746 tmp = ATA_DEVICE_OBS;
747 else
748 tmp = ATA_DEVICE_OBS | ATA_DEV1;
749
750 if (ap->flags & ATA_FLAG_MMIO) {
751 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
752 } else {
753 outb(tmp, ap->ioaddr.device_addr);
754 }
755 ata_pause(ap); /* needed; also flushes, for mmio */
756}
757
758/**
759 * ata_dev_select - Select device 0/1 on ATA bus
760 * @ap: ATA channel to manipulate
761 * @device: ATA device (numbered from zero) to select
762 * @wait: non-zero to wait for Status register BSY bit to clear
763 * @can_sleep: non-zero if context allows sleeping
764 *
765 * Use the method defined in the ATA specification to
766 * make either device 0, or device 1, active on the
767 * ATA channel.
768 *
769 * This is a high-level version of ata_std_dev_select(),
770 * which additionally provides the services of inserting
771 * the proper pauses and status polling, where needed.
772 *
773 * LOCKING:
774 * caller.
775 */
776
777void ata_dev_select(struct ata_port *ap, unsigned int device,
778 unsigned int wait, unsigned int can_sleep)
779{
780 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
781 ap->id, device, wait);
782
783 if (wait)
784 ata_wait_idle(ap);
785
786 ap->ops->dev_select(ap, device);
787
788 if (wait) {
789 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
790 msleep(150);
791 ata_wait_idle(ap);
792 }
793}
794
795/**
796 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900797 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900799 * Dump selected 16-bit words from the given IDENTIFY DEVICE
800 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 *
802 * LOCKING:
803 * caller.
804 */
805
Tejun Heo0bd33002006-02-12 22:47:05 +0900806static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 DPRINTK("49==0x%04x "
809 "53==0x%04x "
810 "63==0x%04x "
811 "64==0x%04x "
812 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900813 id[49],
814 id[53],
815 id[63],
816 id[64],
817 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 DPRINTK("80==0x%04x "
819 "81==0x%04x "
820 "82==0x%04x "
821 "83==0x%04x "
822 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900823 id[80],
824 id[81],
825 id[82],
826 id[83],
827 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 DPRINTK("88==0x%04x "
829 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900830 id[88],
831 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Tejun Heocb95d562006-03-06 04:31:56 +0900834/**
835 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
836 * @id: IDENTIFY data to compute xfer mask from
837 *
838 * Compute the xfermask for this device. This is not as trivial
839 * as it seems if we must consider early devices correctly.
840 *
841 * FIXME: pre IDE drive timing (do we care ?).
842 *
843 * LOCKING:
844 * None.
845 *
846 * RETURNS:
847 * Computed xfermask
848 */
849static unsigned int ata_id_xfermask(const u16 *id)
850{
851 unsigned int pio_mask, mwdma_mask, udma_mask;
852
853 /* Usual case. Word 53 indicates word 64 is valid */
854 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
855 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
856 pio_mask <<= 3;
857 pio_mask |= 0x7;
858 } else {
859 /* If word 64 isn't valid then Word 51 high byte holds
860 * the PIO timing number for the maximum. Turn it into
861 * a mask.
862 */
863 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
864
865 /* But wait.. there's more. Design your standards by
866 * committee and you too can get a free iordy field to
867 * process. However its the speeds not the modes that
868 * are supported... Note drivers using the timing API
869 * will get this right anyway
870 */
871 }
872
873 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900874
875 udma_mask = 0;
876 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
877 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900878
879 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
880}
881
Tejun Heo86e45b62006-03-05 15:29:09 +0900882/**
883 * ata_port_queue_task - Queue port_task
884 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -0700885 * @fn: workqueue function to be scheduled
886 * @data: data value to pass to workqueue function
887 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +0900888 *
889 * Schedule @fn(@data) for execution after @delay jiffies using
890 * port_task. There is one port_task per port and it's the
891 * user(low level driver)'s responsibility to make sure that only
892 * one task is active at any given time.
893 *
894 * libata core layer takes care of synchronization between
895 * port_task and EH. ata_port_queue_task() may be ignored for EH
896 * synchronization.
897 *
898 * LOCKING:
899 * Inherited from caller.
900 */
901void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
902 unsigned long delay)
903{
904 int rc;
905
Tejun Heo2e755f62006-03-05 15:29:09 +0900906 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900907 return;
908
909 PREPARE_WORK(&ap->port_task, fn, data);
910
911 if (!delay)
912 rc = queue_work(ata_wq, &ap->port_task);
913 else
914 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
915
916 /* rc == 0 means that another user is using port task */
917 WARN_ON(rc == 0);
918}
919
920/**
921 * ata_port_flush_task - Flush port_task
922 * @ap: The ata_port to flush port_task for
923 *
924 * After this function completes, port_task is guranteed not to
925 * be running or scheduled.
926 *
927 * LOCKING:
928 * Kernel thread context (may sleep)
929 */
930void ata_port_flush_task(struct ata_port *ap)
931{
932 unsigned long flags;
933
934 DPRINTK("ENTER\n");
935
936 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900937 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900938 spin_unlock_irqrestore(&ap->host_set->lock, flags);
939
940 DPRINTK("flush #1\n");
941 flush_workqueue(ata_wq);
942
943 /*
944 * At this point, if a task is running, it's guaranteed to see
945 * the FLUSH flag; thus, it will never queue pio tasks again.
946 * Cancel and flush.
947 */
948 if (!cancel_delayed_work(&ap->port_task)) {
949 DPRINTK("flush #2\n");
950 flush_workqueue(ata_wq);
951 }
952
953 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900954 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900955 spin_unlock_irqrestore(&ap->host_set->lock, flags);
956
957 DPRINTK("EXIT\n");
958}
959
Tejun Heo77853bf2006-01-23 13:09:36 +0900960void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900961{
Tejun Heo77853bf2006-01-23 13:09:36 +0900962 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900963
Tejun Heoa2a7a662005-12-13 14:48:31 +0900964 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900965}
966
967/**
968 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900969 * @dev: Device to which the command is sent
970 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900971 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900972 * @dma_dir: Data tranfer direction of the command
973 * @buf: Data buffer of the command
974 * @buflen: Length of data buffer
975 *
976 * Executes libata internal command with timeout. @tf contains
977 * command on entry and result on return. Timeout and error
978 * conditions are reported via return value. No recovery action
979 * is taken after a command times out. It's caller's duty to
980 * clean up after timeout.
981 *
982 * LOCKING:
983 * None. Should be called with kernel context, might sleep.
984 */
985
Tejun Heo3373efd2006-05-15 20:57:53 +0900986unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900987 struct ata_taskfile *tf, const u8 *cdb,
988 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900989{
Tejun Heo3373efd2006-05-15 20:57:53 +0900990 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900991 u8 command = tf->command;
992 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +0900993 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +0900994 u32 preempted_sactive, preempted_qc_active;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900995 DECLARE_COMPLETION(wait);
996 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900997 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +0900998 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900999
1000 spin_lock_irqsave(&ap->host_set->lock, flags);
1001
Tejun Heoe3180492006-05-15 20:58:09 +09001002 /* no internal command while frozen */
1003 if (ap->flags & ATA_FLAG_FROZEN) {
1004 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1005 return AC_ERR_SYSTEM;
1006 }
1007
Tejun Heo2ab7db12006-05-15 20:58:02 +09001008 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001009
Tejun Heo2ab7db12006-05-15 20:58:02 +09001010 /* XXX: Tag 0 is used for drivers with legacy EH as some
1011 * drivers choke if any other tag is given. This breaks
1012 * ata_tag_internal() test for those drivers. Don't use new
1013 * EH stuff without converting to it.
1014 */
1015 if (ap->ops->error_handler)
1016 tag = ATA_TAG_INTERNAL;
1017 else
1018 tag = 0;
1019
Tejun Heo6cec4a32006-05-15 21:03:41 +09001020 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001021 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001022 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001023
1024 qc->tag = tag;
1025 qc->scsicmd = NULL;
1026 qc->ap = ap;
1027 qc->dev = dev;
1028 ata_qc_reinit(qc);
1029
1030 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001031 preempted_sactive = ap->sactive;
1032 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001033 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001034 ap->sactive = 0;
1035 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001036
1037 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001038 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001039 if (cdb)
1040 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001041 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001042 qc->dma_dir = dma_dir;
1043 if (dma_dir != DMA_NONE) {
1044 ata_sg_init_one(qc, buf, buflen);
1045 qc->nsect = buflen / ATA_SECT_SIZE;
1046 }
1047
Tejun Heo77853bf2006-01-23 13:09:36 +09001048 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001049 qc->complete_fn = ata_qc_complete_internal;
1050
Tejun Heo8e0e6942006-03-31 20:41:11 +09001051 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001052
1053 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1054
Tejun Heod95a7172006-05-15 20:58:14 +09001055 rc = wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL);
Albert Lee41ade502006-03-14 11:19:04 +08001056
Tejun Heod95a7172006-05-15 20:58:14 +09001057 ata_port_flush_task(ap);
1058
1059 if (!rc) {
Tejun Heoa2a7a662005-12-13 14:48:31 +09001060 spin_lock_irqsave(&ap->host_set->lock, flags);
1061
1062 /* We're racing with irq here. If we lose, the
1063 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001064 * twice. If we win, the port is frozen and will be
1065 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001066 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001067 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001068 qc->err_mask |= AC_ERR_TIMEOUT;
1069
1070 if (ap->ops->error_handler)
1071 ata_port_freeze(ap);
1072 else
1073 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001074
1075 ata_dev_printk(dev, KERN_WARNING,
1076 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001077 }
1078
1079 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1080 }
1081
Tejun Heod95a7172006-05-15 20:58:14 +09001082 /* do post_internal_cmd */
1083 if (ap->ops->post_internal_cmd)
1084 ap->ops->post_internal_cmd(qc);
1085
1086 if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) {
1087 ata_dev_printk(dev, KERN_WARNING, "zero err_mask for failed "
1088 "internal command, assuming AC_ERR_OTHER\n");
1089 qc->err_mask |= AC_ERR_OTHER;
1090 }
1091
Tejun Heo15869302006-05-15 20:57:33 +09001092 /* finish up */
1093 spin_lock_irqsave(&ap->host_set->lock, flags);
1094
Tejun Heoe61e0672006-05-15 20:57:40 +09001095 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001096 err_mask = qc->err_mask;
1097
1098 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001099 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001100 ap->sactive = preempted_sactive;
1101 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001102
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001103 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1104 * Until those drivers are fixed, we detect the condition
1105 * here, fail the command with AC_ERR_SYSTEM and reenable the
1106 * port.
1107 *
1108 * Note that this doesn't change any behavior as internal
1109 * command failure results in disabling the device in the
1110 * higher layer for LLDDs without new reset/EH callbacks.
1111 *
1112 * Kill the following code as soon as those drivers are fixed.
1113 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001114 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001115 err_mask |= AC_ERR_SYSTEM;
1116 ata_port_probe(ap);
1117 }
1118
Tejun Heo15869302006-05-15 20:57:33 +09001119 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1120
Tejun Heo77853bf2006-01-23 13:09:36 +09001121 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001122}
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001125 * ata_pio_need_iordy - check if iordy needed
1126 * @adev: ATA device
1127 *
1128 * Check if the current speed of the device requires IORDY. Used
1129 * by various controllers for chip configuration.
1130 */
1131
1132unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1133{
1134 int pio;
1135 int speed = adev->pio_mode - XFER_PIO_0;
1136
1137 if (speed < 2)
1138 return 0;
1139 if (speed > 2)
1140 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001141
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001142 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1143
1144 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1145 pio = adev->id[ATA_ID_EIDE_PIO];
1146 /* Is the speed faster than the drive allows non IORDY ? */
1147 if (pio) {
1148 /* This is cycle times not frequency - watch the logic! */
1149 if (pio > 240) /* PIO2 is 240nS per cycle */
1150 return 1;
1151 return 0;
1152 }
1153 }
1154 return 0;
1155}
1156
1157/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001158 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001159 * @dev: target device
1160 * @p_class: pointer to class of the target device (may be changed)
1161 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001162 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001163 *
1164 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1165 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001166 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1167 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001168 *
1169 * LOCKING:
1170 * Kernel thread context (may sleep)
1171 *
1172 * RETURNS:
1173 * 0 on success, -errno otherwise.
1174 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001175int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1176 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001177{
Tejun Heo3373efd2006-05-15 20:57:53 +09001178 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001179 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001180 struct ata_taskfile tf;
1181 unsigned int err_mask = 0;
1182 const char *reason;
1183 int rc;
1184
1185 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1186
Tejun Heo49016ac2006-02-21 02:12:11 +09001187 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1188
1189 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001190 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001191
1192 switch (class) {
1193 case ATA_DEV_ATA:
1194 tf.command = ATA_CMD_ID_ATA;
1195 break;
1196 case ATA_DEV_ATAPI:
1197 tf.command = ATA_CMD_ID_ATAPI;
1198 break;
1199 default:
1200 rc = -ENODEV;
1201 reason = "unsupported class";
1202 goto err_out;
1203 }
1204
1205 tf.protocol = ATA_PROT_PIO;
1206
Tejun Heo3373efd2006-05-15 20:57:53 +09001207 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001208 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001209 if (err_mask) {
1210 rc = -EIO;
1211 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001212 goto err_out;
1213 }
1214
1215 swap_buf_le16(id, ATA_ID_WORDS);
1216
Tejun Heo49016ac2006-02-21 02:12:11 +09001217 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001218 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001219 rc = -EINVAL;
1220 reason = "device reports illegal type";
1221 goto err_out;
1222 }
1223
1224 if (post_reset && class == ATA_DEV_ATA) {
1225 /*
1226 * The exact sequence expected by certain pre-ATA4 drives is:
1227 * SRST RESET
1228 * IDENTIFY
1229 * INITIALIZE DEVICE PARAMETERS
1230 * anything else..
1231 * Some drives were very specific about that exact sequence.
1232 */
1233 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001234 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001235 if (err_mask) {
1236 rc = -EIO;
1237 reason = "INIT_DEV_PARAMS failed";
1238 goto err_out;
1239 }
1240
1241 /* current CHS translation info (id[53-58]) might be
1242 * changed. reread the identify device info.
1243 */
1244 post_reset = 0;
1245 goto retry;
1246 }
1247 }
1248
1249 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001250
Tejun Heo49016ac2006-02-21 02:12:11 +09001251 return 0;
1252
1253 err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09001254 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
1255 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001256 return rc;
1257}
1258
Tejun Heo3373efd2006-05-15 20:57:53 +09001259static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001260{
Tejun Heo3373efd2006-05-15 20:57:53 +09001261 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001262}
1263
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001264static void ata_dev_config_ncq(struct ata_device *dev,
1265 char *desc, size_t desc_sz)
1266{
1267 struct ata_port *ap = dev->ap;
1268 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1269
1270 if (!ata_id_has_ncq(dev->id)) {
1271 desc[0] = '\0';
1272 return;
1273 }
1274
1275 if (ap->flags & ATA_FLAG_NCQ) {
1276 hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1);
1277 dev->flags |= ATA_DFLAG_NCQ;
1278 }
1279
1280 if (hdepth >= ddepth)
1281 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1282 else
1283 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1284}
1285
Tejun Heo49016ac2006-02-21 02:12:11 +09001286/**
Tejun Heoffeae412006-03-01 16:09:35 +09001287 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001288 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001289 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 *
Tejun Heoffeae412006-03-01 16:09:35 +09001291 * Configure @dev according to @dev->id. Generic and low-level
1292 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 *
1294 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001295 * Kernel thread context (may sleep)
1296 *
1297 * RETURNS:
1298 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001300int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Tejun Heo3373efd2006-05-15 20:57:53 +09001302 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001303 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001304 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001305 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Tejun Heoe1211e32006-04-01 01:38:18 +09001307 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001309 ap->id, dev->devno);
1310 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312
Tejun Heoffeae412006-03-01 16:09:35 +09001313 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001315 /* print device capabilities */
1316 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001317 ata_dev_printk(dev, KERN_DEBUG, "cfg 49:%04x 82:%04x 83:%04x "
1318 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1319 id[49], id[82], id[83], id[84],
1320 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001321
Tejun Heo208a9932006-03-05 17:55:58 +09001322 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001323 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001324 dev->max_sectors = 0;
1325 dev->cdb_len = 0;
1326 dev->n_sectors = 0;
1327 dev->cylinders = 0;
1328 dev->heads = 0;
1329 dev->sectors = 0;
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 /*
1332 * common ATA, ATAPI feature tests
1333 */
1334
Tejun Heoff8854b2006-03-06 04:31:56 +09001335 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001336 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Tejun Heo1148c3a2006-03-13 19:48:04 +09001338 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 /* ATA-specific feature tests */
1341 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001342 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001343
Tejun Heo1148c3a2006-03-13 19:48:04 +09001344 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001345 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001346 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001347
Tejun Heo4c2d7212006-03-05 17:55:58 +09001348 lba_desc = "LBA";
1349 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001350 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001351 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001352 lba_desc = "LBA48";
1353 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001354
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001355 /* config NCQ */
1356 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1357
Albert Lee8bf62ece2005-05-12 15:29:42 -04001358 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001359 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001360 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001361 "max %s, %Lu sectors: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001362 ata_id_major_version(id),
1363 ata_mode_string(xfer_mask),
1364 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001365 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001366 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001367 /* CHS */
1368
1369 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001370 dev->cylinders = id[1];
1371 dev->heads = id[3];
1372 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001373
Tejun Heo1148c3a2006-03-13 19:48:04 +09001374 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001375 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001376 dev->cylinders = id[54];
1377 dev->heads = id[55];
1378 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001379 }
1380
1381 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001382 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001383 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1384 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1385 ata_id_major_version(id),
1386 ata_mode_string(xfer_mask),
1387 (unsigned long long)dev->n_sectors,
1388 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
1390
Albert Lee07f6f7d2005-11-01 19:33:20 +08001391 if (dev->id[59] & 0x100) {
1392 dev->multi_count = dev->id[59] & 0xff;
1393 DPRINTK("ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001394 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001395 }
1396
Tejun Heo6e7846e2006-02-12 23:32:58 +09001397 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399
1400 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001401 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001402 char *cdb_intr_string = "";
1403
Tejun Heo1148c3a2006-03-13 19:48:04 +09001404 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001406 ata_dev_printk(dev, KERN_WARNING,
1407 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001408 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 goto err_out_nosup;
1410 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001411 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Albert Lee08a556d2006-03-31 13:29:04 +08001413 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001414 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001415 cdb_intr_string = ", CDB intr";
1416 }
Albert Lee312f7da2005-09-27 17:38:03 +08001417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001419 if (print_info)
Tejun Heo12436c32006-05-15 20:59:15 +09001420 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1421 ata_mode_string(xfer_mask),
1422 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424
Tejun Heo6e7846e2006-02-12 23:32:58 +09001425 ap->host->max_cmd_len = 0;
1426 for (i = 0; i < ATA_MAX_DEVICES; i++)
1427 ap->host->max_cmd_len = max_t(unsigned int,
1428 ap->host->max_cmd_len,
1429 ap->device[i].cdb_len);
1430
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001431 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001432 if (ata_dev_knobble(dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001433 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001434 ata_dev_printk(dev, KERN_INFO,
1435 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001436 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001437 dev->max_sectors = ATA_MAX_SECTORS;
1438 }
1439
1440 if (ap->ops->dev_config)
1441 ap->ops->dev_config(ap, dev);
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001448 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
1451/**
1452 * ata_bus_probe - Reset and probe ATA bus
1453 * @ap: Bus to probe
1454 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001455 * Master ATA bus probing function. Initiates a hardware-dependent
1456 * bus reset, then attempts to identify any devices found on
1457 * the bus.
1458 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001460 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 *
1462 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001463 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 */
1465
1466static int ata_bus_probe(struct ata_port *ap)
1467{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001468 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001469 int tries[ATA_MAX_DEVICES];
1470 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001471 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Tejun Heo28ca5c52006-03-01 16:09:36 +09001473 ata_port_probe(ap);
1474
Tejun Heo14d2bac2006-04-02 17:54:46 +09001475 for (i = 0; i < ATA_MAX_DEVICES; i++)
1476 tries[i] = ATA_PROBE_MAX_TRIES;
1477
1478 retry:
1479 down_xfermask = 0;
1480
Tejun Heo20444702006-03-13 01:57:01 +09001481 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09001482 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09001483
Tejun Heo52783c52006-05-31 18:28:22 +09001484 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1485 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001486
Tejun Heo52783c52006-05-31 18:28:22 +09001487 if (!(ap->flags & ATA_FLAG_DISABLED) &&
1488 dev->class != ATA_DEV_UNKNOWN)
1489 classes[dev->devno] = dev->class;
1490 else
1491 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09001492
Tejun Heo52783c52006-05-31 18:28:22 +09001493 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09001494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Tejun Heo52783c52006-05-31 18:28:22 +09001496 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09001497
Alan Coxb6079ca2006-05-22 16:52:06 +01001498 /* after the reset the device state is PIO 0 and the controller
1499 state is undefined. Record the mode */
1500
1501 for (i = 0; i < ATA_MAX_DEVICES; i++)
1502 ap->device[i].pio_mode = XFER_PIO_0;
1503
Tejun Heo28ca5c52006-03-01 16:09:36 +09001504 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001506 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001507
Tejun Heoec573752006-04-11 22:26:29 +09001508 if (tries[i])
1509 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001510
Tejun Heoe1211e32006-04-01 01:38:18 +09001511 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001512 continue;
1513
Tejun Heo3373efd2006-05-15 20:57:53 +09001514 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001515 if (rc)
1516 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001517
Tejun Heo3373efd2006-05-15 20:57:53 +09001518 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001519 if (rc)
1520 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001523 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001524 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001525 if (rc) {
1526 down_xfermask = 1;
1527 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001530 for (i = 0; i < ATA_MAX_DEVICES; i++)
1531 if (ata_dev_enabled(&ap->device[i]))
1532 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001533
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001534 /* no device present, disable port */
1535 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001537 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001538
1539 fail:
1540 switch (rc) {
1541 case -EINVAL:
1542 case -ENODEV:
1543 tries[dev->devno] = 0;
1544 break;
1545 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001546 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001547 /* fall through */
1548 default:
1549 tries[dev->devno]--;
1550 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001551 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001552 tries[dev->devno] = 0;
1553 }
1554
Tejun Heoec573752006-04-11 22:26:29 +09001555 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001556 ata_down_xfermask_limit(dev, 1);
1557 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001558 }
1559
Tejun Heo14d2bac2006-04-02 17:54:46 +09001560 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
1563/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001564 * ata_port_probe - Mark port as enabled
1565 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001567 * Modify @ap data structure such that the system
1568 * thinks that the entire port is enabled.
1569 *
1570 * LOCKING: host_set lock, or some other form of
1571 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 */
1573
1574void ata_port_probe(struct ata_port *ap)
1575{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001576 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
1579/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001580 * sata_print_link_status - Print SATA link status
1581 * @ap: SATA port to printk link status about
1582 *
1583 * This function prints link speed and status of a SATA link.
1584 *
1585 * LOCKING:
1586 * None.
1587 */
1588static void sata_print_link_status(struct ata_port *ap)
1589{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001590 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001591
Tejun Heo81952c52006-05-15 20:57:47 +09001592 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001593 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001594 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001595
Tejun Heo81952c52006-05-15 20:57:47 +09001596 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001597 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001598 ata_port_printk(ap, KERN_INFO,
1599 "SATA link up %s (SStatus %X SControl %X)\n",
1600 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001601 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001602 ata_port_printk(ap, KERN_INFO,
1603 "SATA link down (SStatus %X SControl %X)\n",
1604 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001605 }
1606}
1607
1608/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001609 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1610 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001612 * This function issues commands to standard SATA Sxxx
1613 * PHY registers, to wake up the phy (and device), and
1614 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 *
1616 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001617 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 *
1619 */
1620void __sata_phy_reset(struct ata_port *ap)
1621{
1622 u32 sstatus;
1623 unsigned long timeout = jiffies + (HZ * 5);
1624
1625 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001626 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001627 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001628 /* Couldn't find anything in SATA I/II specs, but
1629 * AHCI-1.1 10.4.2 says at least 1 ms. */
1630 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
Tejun Heo81952c52006-05-15 20:57:47 +09001632 /* phy wake/clear reset */
1633 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 /* wait for phy to become ready, if necessary */
1636 do {
1637 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001638 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if ((sstatus & 0xf) != 1)
1640 break;
1641 } while (time_before(jiffies, timeout));
1642
Tejun Heo3be680b2005-12-19 22:35:02 +09001643 /* print link status */
1644 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001645
Tejun Heo3be680b2005-12-19 22:35:02 +09001646 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001647 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001649 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Tejun Heo198e0fe2006-04-02 18:51:52 +09001652 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return;
1654
1655 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1656 ata_port_disable(ap);
1657 return;
1658 }
1659
1660 ap->cbl = ATA_CBL_SATA;
1661}
1662
1663/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001664 * sata_phy_reset - Reset SATA bus.
1665 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001667 * This function resets the SATA bus, and then probes
1668 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 *
1670 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001671 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 *
1673 */
1674void sata_phy_reset(struct ata_port *ap)
1675{
1676 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001677 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return;
1679 ata_bus_reset(ap);
1680}
1681
1682/**
Alan Coxebdfca62006-03-23 15:38:34 +00001683 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001684 * @adev: device
1685 *
1686 * Obtain the other device on the same cable, or if none is
1687 * present NULL is returned
1688 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001689
Tejun Heo3373efd2006-05-15 20:57:53 +09001690struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001691{
Tejun Heo3373efd2006-05-15 20:57:53 +09001692 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001693 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001694 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001695 return NULL;
1696 return pair;
1697}
1698
1699/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001700 * ata_port_disable - Disable port.
1701 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001703 * Modify @ap data structure such that the system
1704 * thinks that the entire port is disabled, and should
1705 * never attempt to probe or communicate with devices
1706 * on this port.
1707 *
1708 * LOCKING: host_set lock, or some other form of
1709 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 */
1711
1712void ata_port_disable(struct ata_port *ap)
1713{
1714 ap->device[0].class = ATA_DEV_NONE;
1715 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001716 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Tejun Heo1c3fae42006-04-02 20:53:28 +09001719/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001720 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001721 * @ap: Port to adjust SATA spd limit for
1722 *
1723 * Adjust SATA spd limit of @ap downward. Note that this
1724 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001725 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001726 *
1727 * LOCKING:
1728 * Inherited from caller.
1729 *
1730 * RETURNS:
1731 * 0 on success, negative errno on failure
1732 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001733int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001734{
Tejun Heo81952c52006-05-15 20:57:47 +09001735 u32 sstatus, spd, mask;
1736 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001737
Tejun Heo81952c52006-05-15 20:57:47 +09001738 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1739 if (rc)
1740 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001741
1742 mask = ap->sata_spd_limit;
1743 if (mask <= 1)
1744 return -EINVAL;
1745 highbit = fls(mask) - 1;
1746 mask &= ~(1 << highbit);
1747
Tejun Heo81952c52006-05-15 20:57:47 +09001748 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001749 if (spd <= 1)
1750 return -EINVAL;
1751 spd--;
1752 mask &= (1 << spd) - 1;
1753 if (!mask)
1754 return -EINVAL;
1755
1756 ap->sata_spd_limit = mask;
1757
Tejun Heof15a1da2006-05-15 20:57:56 +09001758 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1759 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001760
1761 return 0;
1762}
1763
Tejun Heo3c567b72006-05-15 20:57:23 +09001764static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001765{
1766 u32 spd, limit;
1767
1768 if (ap->sata_spd_limit == UINT_MAX)
1769 limit = 0;
1770 else
1771 limit = fls(ap->sata_spd_limit);
1772
1773 spd = (*scontrol >> 4) & 0xf;
1774 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1775
1776 return spd != limit;
1777}
1778
1779/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001780 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001781 * @ap: Port in question
1782 *
1783 * Test whether the spd limit in SControl matches
1784 * @ap->sata_spd_limit. This function is used to determine
1785 * whether hardreset is necessary to apply SATA spd
1786 * configuration.
1787 *
1788 * LOCKING:
1789 * Inherited from caller.
1790 *
1791 * RETURNS:
1792 * 1 if SATA spd configuration is needed, 0 otherwise.
1793 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001794int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001795{
1796 u32 scontrol;
1797
Tejun Heo81952c52006-05-15 20:57:47 +09001798 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001799 return 0;
1800
Tejun Heo3c567b72006-05-15 20:57:23 +09001801 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001802}
1803
1804/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001805 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001806 * @ap: Port to set SATA spd for
1807 *
1808 * Set SATA spd of @ap according to sata_spd_limit.
1809 *
1810 * LOCKING:
1811 * Inherited from caller.
1812 *
1813 * RETURNS:
1814 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001815 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001816 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001817int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001818{
1819 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001820 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001821
Tejun Heo81952c52006-05-15 20:57:47 +09001822 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1823 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001824
Tejun Heo3c567b72006-05-15 20:57:23 +09001825 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001826 return 0;
1827
Tejun Heo81952c52006-05-15 20:57:47 +09001828 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1829 return rc;
1830
Tejun Heo1c3fae42006-04-02 20:53:28 +09001831 return 1;
1832}
1833
Alan Cox452503f2005-10-21 19:01:32 -04001834/*
1835 * This mode timing computation functionality is ported over from
1836 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1837 */
1838/*
1839 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1840 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1841 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001842 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001843 */
1844
1845static const struct ata_timing ata_timing[] = {
1846
1847 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1848 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1849 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1850 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1851
1852 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1853 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1854 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1855
1856/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001857
Alan Cox452503f2005-10-21 19:01:32 -04001858 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1859 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1860 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001861
Alan Cox452503f2005-10-21 19:01:32 -04001862 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1863 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1864 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1865
1866/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1867 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1868 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1869
1870 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1871 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1872 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1873
1874/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1875
1876 { 0xFF }
1877};
1878
1879#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1880#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1881
1882static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1883{
1884 q->setup = EZ(t->setup * 1000, T);
1885 q->act8b = EZ(t->act8b * 1000, T);
1886 q->rec8b = EZ(t->rec8b * 1000, T);
1887 q->cyc8b = EZ(t->cyc8b * 1000, T);
1888 q->active = EZ(t->active * 1000, T);
1889 q->recover = EZ(t->recover * 1000, T);
1890 q->cycle = EZ(t->cycle * 1000, T);
1891 q->udma = EZ(t->udma * 1000, UT);
1892}
1893
1894void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1895 struct ata_timing *m, unsigned int what)
1896{
1897 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1898 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1899 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1900 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1901 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1902 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1903 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1904 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1905}
1906
1907static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1908{
1909 const struct ata_timing *t;
1910
1911 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001912 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001913 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001914 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001915}
1916
1917int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1918 struct ata_timing *t, int T, int UT)
1919{
1920 const struct ata_timing *s;
1921 struct ata_timing p;
1922
1923 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001924 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001925 */
Alan Cox452503f2005-10-21 19:01:32 -04001926
1927 if (!(s = ata_timing_find_mode(speed)))
1928 return -EINVAL;
1929
Albert Lee75b1f2f2005-11-16 17:06:18 +08001930 memcpy(t, s, sizeof(*s));
1931
Alan Cox452503f2005-10-21 19:01:32 -04001932 /*
1933 * If the drive is an EIDE drive, it can tell us it needs extended
1934 * PIO/MW_DMA cycle timing.
1935 */
1936
1937 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1938 memset(&p, 0, sizeof(p));
1939 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1940 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1941 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1942 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1943 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1944 }
1945 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1946 }
1947
1948 /*
1949 * Convert the timing to bus clock counts.
1950 */
1951
Albert Lee75b1f2f2005-11-16 17:06:18 +08001952 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001953
1954 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001955 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1956 * S.M.A.R.T * and some other commands. We have to ensure that the
1957 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001958 */
1959
1960 if (speed > XFER_PIO_4) {
1961 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1962 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1963 }
1964
1965 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001966 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001967 */
1968
1969 if (t->act8b + t->rec8b < t->cyc8b) {
1970 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1971 t->rec8b = t->cyc8b - t->act8b;
1972 }
1973
1974 if (t->active + t->recover < t->cycle) {
1975 t->active += (t->cycle - (t->active + t->recover)) / 2;
1976 t->recover = t->cycle - t->active;
1977 }
1978
1979 return 0;
1980}
1981
Tejun Heocf176e12006-04-02 17:54:46 +09001982/**
1983 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09001984 * @dev: Device to adjust xfer masks
1985 * @force_pio0: Force PIO0
1986 *
1987 * Adjust xfer masks of @dev downward. Note that this function
1988 * does not apply the change. Invoking ata_set_mode() afterwards
1989 * will apply the limit.
1990 *
1991 * LOCKING:
1992 * Inherited from caller.
1993 *
1994 * RETURNS:
1995 * 0 on success, negative errno on failure
1996 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001997int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001998{
1999 unsigned long xfer_mask;
2000 int highbit;
2001
2002 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2003 dev->udma_mask);
2004
2005 if (!xfer_mask)
2006 goto fail;
2007 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2008 if (xfer_mask & ATA_MASK_UDMA)
2009 xfer_mask &= ~ATA_MASK_MWDMA;
2010
2011 highbit = fls(xfer_mask) - 1;
2012 xfer_mask &= ~(1 << highbit);
2013 if (force_pio0)
2014 xfer_mask &= 1 << ATA_SHIFT_PIO;
2015 if (!xfer_mask)
2016 goto fail;
2017
2018 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2019 &dev->udma_mask);
2020
Tejun Heof15a1da2006-05-15 20:57:56 +09002021 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2022 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002023
2024 return 0;
2025
2026 fail:
2027 return -EINVAL;
2028}
2029
Tejun Heo3373efd2006-05-15 20:57:53 +09002030static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Tejun Heo83206a22006-03-24 15:25:31 +09002032 unsigned int err_mask;
2033 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Tejun Heoe8384602006-04-02 18:51:53 +09002035 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (dev->xfer_shift == ATA_SHIFT_PIO)
2037 dev->flags |= ATA_DFLAG_PIO;
2038
Tejun Heo3373efd2006-05-15 20:57:53 +09002039 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002040 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002041 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2042 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002043 return -EIO;
2044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Tejun Heo3373efd2006-05-15 20:57:53 +09002046 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002047 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002048 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002049
Tejun Heo23e71c32006-03-06 04:31:57 +09002050 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2051 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Tejun Heof15a1da2006-05-15 20:57:56 +09002053 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2054 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002055 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056}
2057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058/**
2059 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2060 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002061 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002063 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2064 * ata_set_mode() fails, pointer to the failing device is
2065 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002066 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002068 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002069 *
2070 * RETURNS:
2071 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002073int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
Tejun Heoe8e06192006-04-01 01:38:18 +09002075 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002076 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Tejun Heo3adcebb2006-05-15 20:57:37 +09002078 /* has private set_mode? */
2079 if (ap->ops->set_mode) {
2080 /* FIXME: make ->set_mode handle no device case and
2081 * return error code and failing device on failure.
2082 */
2083 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2084 if (ata_dev_enabled(&ap->device[i])) {
2085 ap->ops->set_mode(ap);
2086 break;
2087 }
2088 }
2089 return 0;
2090 }
2091
Tejun Heoa6d5a512006-03-06 04:31:57 +09002092 /* step 1: calculate xfer_mask */
2093 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002094 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002095
Tejun Heoe8e06192006-04-01 01:38:18 +09002096 dev = &ap->device[i];
2097
Tejun Heoe1211e32006-04-01 01:38:18 +09002098 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002099 continue;
2100
Tejun Heo3373efd2006-05-15 20:57:53 +09002101 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002102
Tejun Heoacf356b2006-03-24 14:07:50 +09002103 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2104 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2105 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2106 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002107
Tejun Heo4f659772006-04-01 01:38:18 +09002108 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002109 if (dev->dma_mode)
2110 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002111 }
Tejun Heo4f659772006-04-01 01:38:18 +09002112 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002113 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002114
2115 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002116 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2117 dev = &ap->device[i];
2118 if (!ata_dev_enabled(dev))
2119 continue;
2120
2121 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002122 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002123 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002124 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002125 }
2126
2127 dev->xfer_mode = dev->pio_mode;
2128 dev->xfer_shift = ATA_SHIFT_PIO;
2129 if (ap->ops->set_piomode)
2130 ap->ops->set_piomode(ap, dev);
2131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Tejun Heoa6d5a512006-03-06 04:31:57 +09002133 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002134 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2135 dev = &ap->device[i];
2136
2137 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2138 continue;
2139
2140 dev->xfer_mode = dev->dma_mode;
2141 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2142 if (ap->ops->set_dmamode)
2143 ap->ops->set_dmamode(ap, dev);
2144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002147 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002148 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Tejun Heoe1211e32006-04-01 01:38:18 +09002150 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002151 continue;
2152
Tejun Heo3373efd2006-05-15 20:57:53 +09002153 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002154 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002155 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Tejun Heoe8e06192006-04-01 01:38:18 +09002158 /* Record simplex status. If we selected DMA then the other
2159 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002160 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002161 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2162 ap->host_set->simplex_claimed = 1;
2163
Tejun Heoe8e06192006-04-01 01:38:18 +09002164 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 if (ap->ops->post_set_mode)
2166 ap->ops->post_set_mode(ap);
2167
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002168 out:
2169 if (rc)
2170 *r_failed_dev = dev;
2171 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172}
2173
2174/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002175 * ata_tf_to_host - issue ATA taskfile to host controller
2176 * @ap: port to which command is being issued
2177 * @tf: ATA taskfile register set
2178 *
2179 * Issues ATA taskfile register set to ATA host controller,
2180 * with proper synchronization with interrupt handler and
2181 * other threads.
2182 *
2183 * LOCKING:
2184 * spin_lock_irqsave(host_set lock)
2185 */
2186
2187static inline void ata_tf_to_host(struct ata_port *ap,
2188 const struct ata_taskfile *tf)
2189{
2190 ap->ops->tf_load(ap, tf);
2191 ap->ops->exec_command(ap, tf);
2192}
2193
2194/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 * ata_busy_sleep - sleep until BSY clears, or timeout
2196 * @ap: port containing status register to be polled
2197 * @tmout_pat: impatience timeout
2198 * @tmout: overall timeout
2199 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002200 * Sleep until ATA Status register bit BSY clears,
2201 * or a timeout occurs.
2202 *
2203 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 */
2205
Tejun Heo6f8b9952006-01-24 17:05:21 +09002206unsigned int ata_busy_sleep (struct ata_port *ap,
2207 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
2209 unsigned long timer_start, timeout;
2210 u8 status;
2211
2212 status = ata_busy_wait(ap, ATA_BUSY, 300);
2213 timer_start = jiffies;
2214 timeout = timer_start + tmout_pat;
2215 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2216 msleep(50);
2217 status = ata_busy_wait(ap, ATA_BUSY, 3);
2218 }
2219
2220 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002221 ata_port_printk(ap, KERN_WARNING,
2222 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 timeout = timer_start + tmout;
2225 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2226 msleep(50);
2227 status = ata_chk_status(ap);
2228 }
2229
2230 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002231 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2232 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return 1;
2234 }
2235
2236 return 0;
2237}
2238
2239static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2240{
2241 struct ata_ioports *ioaddr = &ap->ioaddr;
2242 unsigned int dev0 = devmask & (1 << 0);
2243 unsigned int dev1 = devmask & (1 << 1);
2244 unsigned long timeout;
2245
2246 /* if device 0 was found in ata_devchk, wait for its
2247 * BSY bit to clear
2248 */
2249 if (dev0)
2250 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2251
2252 /* if device 1 was found in ata_devchk, wait for
2253 * register access, then wait for BSY to clear
2254 */
2255 timeout = jiffies + ATA_TMOUT_BOOT;
2256 while (dev1) {
2257 u8 nsect, lbal;
2258
2259 ap->ops->dev_select(ap, 1);
2260 if (ap->flags & ATA_FLAG_MMIO) {
2261 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2262 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2263 } else {
2264 nsect = inb(ioaddr->nsect_addr);
2265 lbal = inb(ioaddr->lbal_addr);
2266 }
2267 if ((nsect == 1) && (lbal == 1))
2268 break;
2269 if (time_after(jiffies, timeout)) {
2270 dev1 = 0;
2271 break;
2272 }
2273 msleep(50); /* give drive a breather */
2274 }
2275 if (dev1)
2276 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2277
2278 /* is all this really necessary? */
2279 ap->ops->dev_select(ap, 0);
2280 if (dev1)
2281 ap->ops->dev_select(ap, 1);
2282 if (dev0)
2283 ap->ops->dev_select(ap, 0);
2284}
2285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286static unsigned int ata_bus_softreset(struct ata_port *ap,
2287 unsigned int devmask)
2288{
2289 struct ata_ioports *ioaddr = &ap->ioaddr;
2290
2291 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2292
2293 /* software reset. causes dev0 to be selected */
2294 if (ap->flags & ATA_FLAG_MMIO) {
2295 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2296 udelay(20); /* FIXME: flush */
2297 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2298 udelay(20); /* FIXME: flush */
2299 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2300 } else {
2301 outb(ap->ctl, ioaddr->ctl_addr);
2302 udelay(10);
2303 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2304 udelay(10);
2305 outb(ap->ctl, ioaddr->ctl_addr);
2306 }
2307
2308 /* spec mandates ">= 2ms" before checking status.
2309 * We wait 150ms, because that was the magic delay used for
2310 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2311 * between when the ATA command register is written, and then
2312 * status is checked. Because waiting for "a while" before
2313 * checking status is fine, post SRST, we perform this magic
2314 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002315 *
2316 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 */
2318 msleep(150);
2319
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002320 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002321 * the bus shows 0xFF because the odd clown forgets the D7
2322 * pulldown resistor.
2323 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002324 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002325 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002326 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002327 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 ata_bus_post_reset(ap, devmask);
2330
2331 return 0;
2332}
2333
2334/**
2335 * ata_bus_reset - reset host port and associated ATA channel
2336 * @ap: port to reset
2337 *
2338 * This is typically the first time we actually start issuing
2339 * commands to the ATA channel. We wait for BSY to clear, then
2340 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2341 * result. Determine what devices, if any, are on the channel
2342 * by looking at the device 0/1 error register. Look at the signature
2343 * stored in each device's taskfile registers, to determine if
2344 * the device is ATA or ATAPI.
2345 *
2346 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002347 * PCI/etc. bus probe sem.
2348 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 *
2350 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002351 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 */
2353
2354void ata_bus_reset(struct ata_port *ap)
2355{
2356 struct ata_ioports *ioaddr = &ap->ioaddr;
2357 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2358 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002359 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2362
2363 /* determine if device 0/1 are present */
2364 if (ap->flags & ATA_FLAG_SATA_RESET)
2365 dev0 = 1;
2366 else {
2367 dev0 = ata_devchk(ap, 0);
2368 if (slave_possible)
2369 dev1 = ata_devchk(ap, 1);
2370 }
2371
2372 if (dev0)
2373 devmask |= (1 << 0);
2374 if (dev1)
2375 devmask |= (1 << 1);
2376
2377 /* select device 0 again */
2378 ap->ops->dev_select(ap, 0);
2379
2380 /* issue bus reset */
2381 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002382 if (ata_bus_softreset(ap, devmask))
2383 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385 /*
2386 * determine by signature whether we have ATA or ATAPI devices
2387 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002388 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002390 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 /* re-enable interrupts */
2393 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2394 ata_irq_on(ap);
2395
2396 /* is double-select really necessary? */
2397 if (ap->device[1].class != ATA_DEV_NONE)
2398 ap->ops->dev_select(ap, 1);
2399 if (ap->device[0].class != ATA_DEV_NONE)
2400 ap->ops->dev_select(ap, 0);
2401
2402 /* if no devices were detected, disable this port */
2403 if ((ap->device[0].class == ATA_DEV_NONE) &&
2404 (ap->device[1].class == ATA_DEV_NONE))
2405 goto err_out;
2406
2407 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2408 /* set up device control for ATA_FLAG_SATA_RESET */
2409 if (ap->flags & ATA_FLAG_MMIO)
2410 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2411 else
2412 outb(ap->ctl, ioaddr->ctl_addr);
2413 }
2414
2415 DPRINTK("EXIT\n");
2416 return;
2417
2418err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002419 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 ap->ops->port_disable(ap);
2421
2422 DPRINTK("EXIT\n");
2423}
2424
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002425/**
2426 * sata_phy_debounce - debounce SATA phy status
2427 * @ap: ATA port to debounce SATA phy status for
2428 * @params: timing parameters { interval, duratinon, timeout } in msec
2429 *
2430 * Make sure SStatus of @ap reaches stable state, determined by
2431 * holding the same value where DET is not 1 for @duration polled
2432 * every @interval, before @timeout. Timeout constraints the
2433 * beginning of the stable state. Because, after hot unplugging,
2434 * DET gets stuck at 1 on some controllers, this functions waits
2435 * until timeout then returns 0 if DET is stable at 1.
2436 *
2437 * LOCKING:
2438 * Kernel thread context (may sleep)
2439 *
2440 * RETURNS:
2441 * 0 on success, -errno on failure.
2442 */
2443int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002444{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002445 unsigned long interval_msec = params[0];
2446 unsigned long duration = params[1] * HZ / 1000;
2447 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2448 unsigned long last_jiffies;
2449 u32 last, cur;
2450 int rc;
2451
2452 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2453 return rc;
2454 cur &= 0xf;
2455
2456 last = cur;
2457 last_jiffies = jiffies;
2458
2459 while (1) {
2460 msleep(interval_msec);
2461 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2462 return rc;
2463 cur &= 0xf;
2464
2465 /* DET stable? */
2466 if (cur == last) {
2467 if (cur == 1 && time_before(jiffies, timeout))
2468 continue;
2469 if (time_after(jiffies, last_jiffies + duration))
2470 return 0;
2471 continue;
2472 }
2473
2474 /* unstable, start over */
2475 last = cur;
2476 last_jiffies = jiffies;
2477
2478 /* check timeout */
2479 if (time_after(jiffies, timeout))
2480 return -EBUSY;
2481 }
2482}
2483
2484/**
2485 * sata_phy_resume - resume SATA phy
2486 * @ap: ATA port to resume SATA phy for
2487 * @params: timing parameters { interval, duratinon, timeout } in msec
2488 *
2489 * Resume SATA phy of @ap and debounce it.
2490 *
2491 * LOCKING:
2492 * Kernel thread context (may sleep)
2493 *
2494 * RETURNS:
2495 * 0 on success, -errno on failure.
2496 */
2497int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2498{
2499 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002500 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002501
Tejun Heo81952c52006-05-15 20:57:47 +09002502 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2503 return rc;
2504
Tejun Heo852ee162006-04-01 01:38:18 +09002505 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002506
2507 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2508 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002509
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002510 /* Some PHYs react badly if SStatus is pounded immediately
2511 * after resuming. Delay 200ms before debouncing.
2512 */
2513 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002514
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002515 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002516}
2517
Tejun Heof5914a42006-05-31 18:27:48 +09002518static void ata_wait_spinup(struct ata_port *ap)
2519{
2520 struct ata_eh_context *ehc = &ap->eh_context;
2521 unsigned long end, secs;
2522 int rc;
2523
2524 /* first, debounce phy if SATA */
2525 if (ap->cbl == ATA_CBL_SATA) {
2526 rc = sata_phy_debounce(ap, sata_deb_timing_eh);
2527
2528 /* if debounced successfully and offline, no need to wait */
2529 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
2530 return;
2531 }
2532
2533 /* okay, let's give the drive time to spin up */
2534 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
2535 secs = ((end - jiffies) + HZ - 1) / HZ;
2536
2537 if (time_after(jiffies, end))
2538 return;
2539
2540 if (secs > 5)
2541 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
2542 "(%lu secs)\n", secs);
2543
2544 schedule_timeout_uninterruptible(end - jiffies);
2545}
2546
2547/**
2548 * ata_std_prereset - prepare for reset
2549 * @ap: ATA port to be reset
2550 *
2551 * @ap is about to be reset. Initialize it.
2552 *
2553 * LOCKING:
2554 * Kernel thread context (may sleep)
2555 *
2556 * RETURNS:
2557 * 0 on success, -errno otherwise.
2558 */
2559int ata_std_prereset(struct ata_port *ap)
2560{
2561 struct ata_eh_context *ehc = &ap->eh_context;
2562 const unsigned long *timing;
2563 int rc;
2564
2565 /* hotplug? */
2566 if (ehc->i.flags & ATA_EHI_HOTPLUGGED) {
2567 if (ap->flags & ATA_FLAG_HRST_TO_RESUME)
2568 ehc->i.action |= ATA_EH_HARDRESET;
2569 if (ap->flags & ATA_FLAG_SKIP_D2H_BSY)
2570 ata_wait_spinup(ap);
2571 }
2572
2573 /* if we're about to do hardreset, nothing more to do */
2574 if (ehc->i.action & ATA_EH_HARDRESET)
2575 return 0;
2576
2577 /* if SATA, resume phy */
2578 if (ap->cbl == ATA_CBL_SATA) {
2579 if (ap->flags & ATA_FLAG_LOADING)
2580 timing = sata_deb_timing_boot;
2581 else
2582 timing = sata_deb_timing_eh;
2583
2584 rc = sata_phy_resume(ap, timing);
2585 if (rc && rc != -EOPNOTSUPP) {
2586 /* phy resume failed */
2587 ata_port_printk(ap, KERN_WARNING, "failed to resume "
2588 "link for reset (errno=%d)\n", rc);
2589 return rc;
2590 }
2591 }
2592
2593 /* Wait for !BSY if the controller can wait for the first D2H
2594 * Reg FIS and we don't know that no device is attached.
2595 */
2596 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
2597 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2598
2599 return 0;
2600}
2601
Tejun Heoc2bd5802006-01-24 17:05:22 +09002602/**
2603 * ata_std_softreset - reset host port via ATA SRST
2604 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002605 * @classes: resulting classes of attached devices
2606 *
Tejun Heo52783c52006-05-31 18:28:22 +09002607 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002608 *
2609 * LOCKING:
2610 * Kernel thread context (may sleep)
2611 *
2612 * RETURNS:
2613 * 0 on success, -errno otherwise.
2614 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002615int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002616{
2617 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2618 unsigned int devmask = 0, err_mask;
2619 u8 err;
2620
2621 DPRINTK("ENTER\n");
2622
Tejun Heo81952c52006-05-15 20:57:47 +09002623 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002624 classes[0] = ATA_DEV_NONE;
2625 goto out;
2626 }
2627
Tejun Heoc2bd5802006-01-24 17:05:22 +09002628 /* determine if device 0/1 are present */
2629 if (ata_devchk(ap, 0))
2630 devmask |= (1 << 0);
2631 if (slave_possible && ata_devchk(ap, 1))
2632 devmask |= (1 << 1);
2633
Tejun Heoc2bd5802006-01-24 17:05:22 +09002634 /* select device 0 again */
2635 ap->ops->dev_select(ap, 0);
2636
2637 /* issue bus reset */
2638 DPRINTK("about to softreset, devmask=%x\n", devmask);
2639 err_mask = ata_bus_softreset(ap, devmask);
2640 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002641 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2642 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002643 return -EIO;
2644 }
2645
2646 /* determine by signature whether we have ATA or ATAPI devices */
2647 classes[0] = ata_dev_try_classify(ap, 0, &err);
2648 if (slave_possible && err != 0x81)
2649 classes[1] = ata_dev_try_classify(ap, 1, &err);
2650
Tejun Heo3a397462006-02-10 23:58:48 +09002651 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002652 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2653 return 0;
2654}
2655
2656/**
2657 * sata_std_hardreset - reset host port via SATA phy reset
2658 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002659 * @class: resulting class of attached device
2660 *
2661 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002662 *
2663 * LOCKING:
2664 * Kernel thread context (may sleep)
2665 *
2666 * RETURNS:
2667 * 0 on success, -errno otherwise.
2668 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002669int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002670{
Tejun Heo852ee162006-04-01 01:38:18 +09002671 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002672 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002673
Tejun Heoc2bd5802006-01-24 17:05:22 +09002674 DPRINTK("ENTER\n");
2675
Tejun Heo3c567b72006-05-15 20:57:23 +09002676 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002677 /* SATA spec says nothing about how to reconfigure
2678 * spd. To be on the safe side, turn off phy during
2679 * reconfiguration. This works for at least ICH7 AHCI
2680 * and Sil3124.
2681 */
Tejun Heo81952c52006-05-15 20:57:47 +09002682 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2683 return rc;
2684
Tejun Heo1c3fae42006-04-02 20:53:28 +09002685 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002686
2687 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2688 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002689
Tejun Heo3c567b72006-05-15 20:57:23 +09002690 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002691 }
2692
2693 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002694 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2695 return rc;
2696
Tejun Heo852ee162006-04-01 01:38:18 +09002697 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002698
2699 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2700 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002701
Tejun Heo1c3fae42006-04-02 20:53:28 +09002702 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002703 * 10.4.2 says at least 1 ms.
2704 */
2705 msleep(1);
2706
Tejun Heo1c3fae42006-04-02 20:53:28 +09002707 /* bring phy back */
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002708 sata_phy_resume(ap, sata_deb_timing_eh);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002709
Tejun Heoc2bd5802006-01-24 17:05:22 +09002710 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002711 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002712 *class = ATA_DEV_NONE;
2713 DPRINTK("EXIT, link offline\n");
2714 return 0;
2715 }
2716
2717 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002718 ata_port_printk(ap, KERN_ERR,
2719 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002720 return -EIO;
2721 }
2722
Tejun Heo3a397462006-02-10 23:58:48 +09002723 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2724
Tejun Heoc2bd5802006-01-24 17:05:22 +09002725 *class = ata_dev_try_classify(ap, 0, NULL);
2726
2727 DPRINTK("EXIT, class=%u\n", *class);
2728 return 0;
2729}
2730
2731/**
2732 * ata_std_postreset - standard postreset callback
2733 * @ap: the target ata_port
2734 * @classes: classes of attached devices
2735 *
2736 * This function is invoked after a successful reset. Note that
2737 * the device might have been reset more than once using
2738 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002739 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09002740 * LOCKING:
2741 * Kernel thread context (may sleep)
2742 */
2743void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2744{
Tejun Heodc2b3512006-05-15 20:58:00 +09002745 u32 serror;
2746
Tejun Heoc2bd5802006-01-24 17:05:22 +09002747 DPRINTK("ENTER\n");
2748
Tejun Heoc2bd5802006-01-24 17:05:22 +09002749 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002750 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002751
Tejun Heodc2b3512006-05-15 20:58:00 +09002752 /* clear SError */
2753 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2754 sata_scr_write(ap, SCR_ERROR, serror);
2755
Tejun Heo3a397462006-02-10 23:58:48 +09002756 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002757 if (!ap->ops->error_handler) {
2758 /* FIXME: hack. create a hook instead */
2759 if (ap->ioaddr.ctl_addr)
2760 ata_irq_on(ap);
2761 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002762
2763 /* is double-select really necessary? */
2764 if (classes[0] != ATA_DEV_NONE)
2765 ap->ops->dev_select(ap, 1);
2766 if (classes[1] != ATA_DEV_NONE)
2767 ap->ops->dev_select(ap, 0);
2768
Tejun Heo3a397462006-02-10 23:58:48 +09002769 /* bail out if no device is present */
2770 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2771 DPRINTK("EXIT, no device\n");
2772 return;
2773 }
2774
2775 /* set up device control */
2776 if (ap->ioaddr.ctl_addr) {
2777 if (ap->flags & ATA_FLAG_MMIO)
2778 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2779 else
2780 outb(ap->ctl, ap->ioaddr.ctl_addr);
2781 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002782
2783 DPRINTK("EXIT\n");
2784}
2785
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002786int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
Tejun Heo96bd39e2006-05-15 20:57:38 +09002787 unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002788{
2789 int i, rc;
2790
2791 for (i = 0; i < ATA_MAX_DEVICES; i++)
2792 classes[i] = ATA_DEV_UNKNOWN;
2793
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002794 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002795 if (rc)
2796 return rc;
2797
2798 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2799 * is complete and convert all ATA_DEV_UNKNOWN to
2800 * ATA_DEV_NONE.
2801 */
2802 for (i = 0; i < ATA_MAX_DEVICES; i++)
2803 if (classes[i] != ATA_DEV_UNKNOWN)
2804 break;
2805
2806 if (i < ATA_MAX_DEVICES)
2807 for (i = 0; i < ATA_MAX_DEVICES; i++)
2808 if (classes[i] == ATA_DEV_UNKNOWN)
2809 classes[i] = ATA_DEV_NONE;
2810
Tejun Heo9974e7c2006-04-01 01:38:17 +09002811 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002812}
2813
2814/**
Tejun Heo623a3122006-03-05 17:55:58 +09002815 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002816 * @dev: device to compare against
2817 * @new_class: class of the new device
2818 * @new_id: IDENTIFY page of the new device
2819 *
2820 * Compare @new_class and @new_id against @dev and determine
2821 * whether @dev is the device indicated by @new_class and
2822 * @new_id.
2823 *
2824 * LOCKING:
2825 * None.
2826 *
2827 * RETURNS:
2828 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2829 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002830static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2831 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002832{
2833 const u16 *old_id = dev->id;
2834 unsigned char model[2][41], serial[2][21];
2835 u64 new_n_sectors;
2836
2837 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002838 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2839 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002840 return 0;
2841 }
2842
2843 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2844 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2845 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2846 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2847 new_n_sectors = ata_id_n_sectors(new_id);
2848
2849 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002850 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2851 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002852 return 0;
2853 }
2854
2855 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002856 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2857 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002858 return 0;
2859 }
2860
2861 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002862 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2863 "%llu != %llu\n",
2864 (unsigned long long)dev->n_sectors,
2865 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002866 return 0;
2867 }
2868
2869 return 1;
2870}
2871
2872/**
2873 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002874 * @dev: device to revalidate
2875 * @post_reset: is this revalidation after reset?
2876 *
2877 * Re-read IDENTIFY page and make sure @dev is still attached to
2878 * the port.
2879 *
2880 * LOCKING:
2881 * Kernel thread context (may sleep)
2882 *
2883 * RETURNS:
2884 * 0 on success, negative errno otherwise
2885 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002886int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002887{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002888 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002889 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002890 int rc;
2891
Tejun Heo5eb45c02006-04-02 18:51:52 +09002892 if (!ata_dev_enabled(dev)) {
2893 rc = -ENODEV;
2894 goto fail;
2895 }
Tejun Heo623a3122006-03-05 17:55:58 +09002896
Tejun Heofe635c72006-05-15 20:57:35 +09002897 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002898 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002899 if (rc)
2900 goto fail;
2901
2902 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002903 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002904 rc = -ENODEV;
2905 goto fail;
2906 }
2907
Tejun Heofe635c72006-05-15 20:57:35 +09002908 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002909
2910 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002911 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002912 if (rc == 0)
2913 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002914
2915 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002916 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002917 return rc;
2918}
2919
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002920static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002921 "WDC AC11000H", NULL,
2922 "WDC AC22100H", NULL,
2923 "WDC AC32500H", NULL,
2924 "WDC AC33100H", NULL,
2925 "WDC AC31600H", NULL,
2926 "WDC AC32100H", "24.09P07",
2927 "WDC AC23200L", "21.10N21",
2928 "Compaq CRD-8241B", NULL,
2929 "CRD-8400B", NULL,
2930 "CRD-8480B", NULL,
2931 "CRD-8482B", NULL,
2932 "CRD-84", NULL,
2933 "SanDisk SDP3B", NULL,
2934 "SanDisk SDP3B-64", NULL,
2935 "SANYO CD-ROM CRD", NULL,
2936 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002937 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002938 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002939 "Toshiba CD-ROM XM-6202B", NULL,
2940 "TOSHIBA CD-ROM XM-1702BC", NULL,
2941 "CD-532E-A", NULL,
2942 "E-IDE CD-ROM CR-840", NULL,
2943 "CD-ROM Drive/F5A", NULL,
2944 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002945 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002946 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002947 "SanDisk SDP3B-64", NULL,
2948 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2949 "_NEC DV5800A", NULL,
2950 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002952
Alan Coxf4b15fe2006-03-22 15:54:04 +00002953static int ata_strim(char *s, size_t len)
2954{
2955 len = strnlen(s, len);
2956
2957 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2958 while ((len > 0) && (s[len - 1] == ' ')) {
2959 len--;
2960 s[len] = 0;
2961 }
2962 return len;
2963}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Jeff Garzik057ace52005-10-22 14:27:05 -04002965static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002967 unsigned char model_num[40];
2968 unsigned char model_rev[16];
2969 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 int i;
2971
Alan Coxf4b15fe2006-03-22 15:54:04 +00002972 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2973 sizeof(model_num));
2974 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2975 sizeof(model_rev));
2976 nlen = ata_strim(model_num, sizeof(model_num));
2977 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Alan Coxf4b15fe2006-03-22 15:54:04 +00002979 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2980 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2981 if (ata_dma_blacklist[i+1] == NULL)
2982 return 1;
2983 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2984 return 1;
2985 }
2986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 return 0;
2988}
2989
Tejun Heoa6d5a512006-03-06 04:31:57 +09002990/**
2991 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09002992 * @dev: Device to compute xfermask for
2993 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002994 * Compute supported xfermask of @dev and store it in
2995 * dev->*_mask. This function is responsible for applying all
2996 * known limits including host controller limits, device
2997 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002998 *
Tejun Heo600511e2006-03-25 11:14:07 +09002999 * FIXME: The current implementation limits all transfer modes to
3000 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09003001 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09003002 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09003003 * LOCKING:
3004 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003005 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003006static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
Tejun Heo3373efd2006-05-15 20:57:53 +09003008 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003009 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003010 unsigned long xfer_mask;
3011 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Tejun Heo565083e2006-04-02 17:54:47 +09003013 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3014 ap->mwdma_mask, ap->udma_mask);
3015
3016 /* Apply cable rule here. Don't apply it early because when
3017 * we handle hot plug the cable type can itself change.
3018 */
3019 if (ap->cbl == ATA_CBL_PATA40)
3020 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Alan Cox5444a6f2006-03-27 18:58:20 +01003022 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09003023 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3024 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09003025
3026 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003027 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09003028
3029 if (ata_dev_disabled(d)) {
3030 /* to avoid violating device selection timing */
3031 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3032 UINT_MAX, UINT_MAX);
3033 continue;
3034 }
3035
3036 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3037 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003038 xfer_mask &= ata_id_xfermask(d->id);
3039 if (ata_dma_blacklisted(d))
3040 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 }
3042
Tejun Heoa6d5a512006-03-06 04:31:57 +09003043 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003044 ata_dev_printk(dev, KERN_WARNING,
3045 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003046
Alan Cox5444a6f2006-03-27 18:58:20 +01003047 if (hs->flags & ATA_HOST_SIMPLEX) {
3048 if (hs->simplex_claimed)
3049 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3050 }
Tejun Heo565083e2006-04-02 17:54:47 +09003051
Alan Cox5444a6f2006-03-27 18:58:20 +01003052 if (ap->ops->mode_filter)
3053 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3054
Tejun Heo565083e2006-04-02 17:54:47 +09003055 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3056 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057}
3058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 * @dev: Device to which command will be sent
3062 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003063 * Issue SET FEATURES - XFER MODE command to device @dev
3064 * on port @ap.
3065 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003067 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003068 *
3069 * RETURNS:
3070 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 */
3072
Tejun Heo3373efd2006-05-15 20:57:53 +09003073static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074{
Tejun Heoa0123702005-12-13 14:49:31 +09003075 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003076 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
3078 /* set up set-features taskfile */
3079 DPRINTK("set features - xfer mode\n");
3080
Tejun Heo3373efd2006-05-15 20:57:53 +09003081 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003082 tf.command = ATA_CMD_SET_FEATURES;
3083 tf.feature = SETFEATURES_XFER;
3084 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3085 tf.protocol = ATA_PROT_NODATA;
3086 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Tejun Heo3373efd2006-05-15 20:57:53 +09003088 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Tejun Heo83206a22006-03-24 15:25:31 +09003090 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3091 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092}
3093
3094/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003095 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003096 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003097 * @heads: Number of heads (taskfile parameter)
3098 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003099 *
3100 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003101 * Kernel thread context (may sleep)
3102 *
3103 * RETURNS:
3104 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003105 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003106static unsigned int ata_dev_init_params(struct ata_device *dev,
3107 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003108{
Tejun Heoa0123702005-12-13 14:49:31 +09003109 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003110 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003111
3112 /* Number of sectors per track 1-255. Number of heads 1-16 */
3113 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003114 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003115
3116 /* set up init dev params taskfile */
3117 DPRINTK("init dev params \n");
3118
Tejun Heo3373efd2006-05-15 20:57:53 +09003119 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003120 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3121 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3122 tf.protocol = ATA_PROT_NODATA;
3123 tf.nsect = sectors;
3124 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003125
Tejun Heo3373efd2006-05-15 20:57:53 +09003126 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003127
Tejun Heo6aff8f12006-02-15 18:24:09 +09003128 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3129 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003130}
3131
3132/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003133 * ata_sg_clean - Unmap DMA memory associated with command
3134 * @qc: Command containing DMA memory to be released
3135 *
3136 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 *
3138 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003139 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 */
3141
3142static void ata_sg_clean(struct ata_queued_cmd *qc)
3143{
3144 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003145 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003147 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Tejun Heoa46314742006-02-11 19:11:13 +09003149 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3150 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
3152 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003153 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003155 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003157 /* if we padded the buffer out to 32-bit bound, and data
3158 * xfer direction is from-device, we must copy from the
3159 * pad buffer back into the supplied buffer
3160 */
3161 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3162 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3163
3164 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003165 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003166 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003167 /* restore last sg */
3168 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3169 if (pad_buf) {
3170 struct scatterlist *psg = &qc->pad_sgent;
3171 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3172 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003173 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003174 }
3175 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003176 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003177 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003178 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3179 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003180 /* restore sg */
3181 sg->length += qc->pad_len;
3182 if (pad_buf)
3183 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3184 pad_buf, qc->pad_len);
3185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003188 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189}
3190
3191/**
3192 * ata_fill_sg - Fill PCI IDE PRD table
3193 * @qc: Metadata associated with taskfile to be transferred
3194 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003195 * Fill PCI IDE PRD (scatter-gather) table with segments
3196 * associated with the current disk command.
3197 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003199 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 *
3201 */
3202static void ata_fill_sg(struct ata_queued_cmd *qc)
3203{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003205 struct scatterlist *sg;
3206 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Tejun Heoa46314742006-02-11 19:11:13 +09003208 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003209 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
3211 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003212 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 u32 addr, offset;
3214 u32 sg_len, len;
3215
3216 /* determine if physical DMA addr spans 64K boundary.
3217 * Note h/w doesn't support 64-bit, so we unconditionally
3218 * truncate dma_addr_t to u32.
3219 */
3220 addr = (u32) sg_dma_address(sg);
3221 sg_len = sg_dma_len(sg);
3222
3223 while (sg_len) {
3224 offset = addr & 0xffff;
3225 len = sg_len;
3226 if ((offset + sg_len) > 0x10000)
3227 len = 0x10000 - offset;
3228
3229 ap->prd[idx].addr = cpu_to_le32(addr);
3230 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3231 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3232
3233 idx++;
3234 sg_len -= len;
3235 addr += len;
3236 }
3237 }
3238
3239 if (idx)
3240 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3241}
3242/**
3243 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3244 * @qc: Metadata associated with taskfile to check
3245 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003246 * Allow low-level driver to filter ATA PACKET commands, returning
3247 * a status indicating whether or not it is OK to use DMA for the
3248 * supplied PACKET command.
3249 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003251 * spin_lock_irqsave(host_set lock)
3252 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 * RETURNS: 0 when ATAPI DMA can be used
3254 * nonzero otherwise
3255 */
3256int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3257{
3258 struct ata_port *ap = qc->ap;
3259 int rc = 0; /* Assume ATAPI DMA is OK by default */
3260
3261 if (ap->ops->check_atapi_dma)
3262 rc = ap->ops->check_atapi_dma(qc);
3263
Albert Leec2bbc552006-03-25 17:56:55 +08003264 /* We don't support polling DMA.
3265 * Use PIO if the LLDD handles only interrupts in
3266 * the HSM_ST_LAST state and the ATAPI device
3267 * generates CDB interrupts.
3268 */
3269 if ((ap->flags & ATA_FLAG_PIO_POLLING) &&
3270 (qc->dev->flags & ATA_DFLAG_CDB_INTR))
3271 rc = 1;
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 return rc;
3274}
3275/**
3276 * ata_qc_prep - Prepare taskfile for submission
3277 * @qc: Metadata associated with taskfile to be prepared
3278 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003279 * Prepare ATA taskfile for submission.
3280 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 * LOCKING:
3282 * spin_lock_irqsave(host_set lock)
3283 */
3284void ata_qc_prep(struct ata_queued_cmd *qc)
3285{
3286 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3287 return;
3288
3289 ata_fill_sg(qc);
3290}
3291
Brian Kinge46834c2006-03-17 17:04:03 -06003292void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3293
Jeff Garzik0cba6322005-05-30 19:49:12 -04003294/**
3295 * ata_sg_init_one - Associate command with memory buffer
3296 * @qc: Command to be associated
3297 * @buf: Memory buffer
3298 * @buflen: Length of memory buffer, in bytes.
3299 *
3300 * Initialize the data-related elements of queued_cmd @qc
3301 * to point to a single memory buffer, @buf of byte length @buflen.
3302 *
3303 * LOCKING:
3304 * spin_lock_irqsave(host_set lock)
3305 */
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3308{
3309 struct scatterlist *sg;
3310
3311 qc->flags |= ATA_QCFLAG_SINGLE;
3312
3313 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003314 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003316 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 qc->buf_virt = buf;
3318
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003319 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003320 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321}
3322
Jeff Garzik0cba6322005-05-30 19:49:12 -04003323/**
3324 * ata_sg_init - Associate command with scatter-gather table.
3325 * @qc: Command to be associated
3326 * @sg: Scatter-gather table.
3327 * @n_elem: Number of elements in s/g table.
3328 *
3329 * Initialize the data-related elements of queued_cmd @qc
3330 * to point to a scatter-gather table @sg, containing @n_elem
3331 * elements.
3332 *
3333 * LOCKING:
3334 * spin_lock_irqsave(host_set lock)
3335 */
3336
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3338 unsigned int n_elem)
3339{
3340 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003341 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003343 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344}
3345
3346/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003347 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3348 * @qc: Command with memory buffer to be mapped.
3349 *
3350 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 *
3352 * LOCKING:
3353 * spin_lock_irqsave(host_set lock)
3354 *
3355 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003356 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 */
3358
3359static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3360{
3361 struct ata_port *ap = qc->ap;
3362 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003363 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003365 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003367 /* we must lengthen transfers to end on a 32-bit boundary */
3368 qc->pad_len = sg->length & 3;
3369 if (qc->pad_len) {
3370 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3371 struct scatterlist *psg = &qc->pad_sgent;
3372
Tejun Heoa46314742006-02-11 19:11:13 +09003373 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003374
3375 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3376
3377 if (qc->tf.flags & ATA_TFLAG_WRITE)
3378 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3379 qc->pad_len);
3380
3381 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3382 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3383 /* trim sg */
3384 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003385 if (sg->length == 0)
3386 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003387
3388 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3389 sg->length, qc->pad_len);
3390 }
3391
Tejun Heo2e242fa2006-02-20 23:48:38 +09003392 if (trim_sg) {
3393 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003394 goto skip_map;
3395 }
3396
Brian King2f1f6102006-03-23 17:30:15 -06003397 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003398 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003399 if (dma_mapping_error(dma_address)) {
3400 /* restore sg */
3401 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
3405 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003406 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Tejun Heo2e242fa2006-02-20 23:48:38 +09003408skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3410 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3411
3412 return 0;
3413}
3414
3415/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003416 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3417 * @qc: Command with scatter-gather table to be mapped.
3418 *
3419 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 *
3421 * LOCKING:
3422 * spin_lock_irqsave(host_set lock)
3423 *
3424 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003425 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 *
3427 */
3428
3429static int ata_sg_setup(struct ata_queued_cmd *qc)
3430{
3431 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003432 struct scatterlist *sg = qc->__sg;
3433 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003434 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
3436 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa46314742006-02-11 19:11:13 +09003437 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003439 /* we must lengthen transfers to end on a 32-bit boundary */
3440 qc->pad_len = lsg->length & 3;
3441 if (qc->pad_len) {
3442 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3443 struct scatterlist *psg = &qc->pad_sgent;
3444 unsigned int offset;
3445
Tejun Heoa46314742006-02-11 19:11:13 +09003446 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003447
3448 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3449
3450 /*
3451 * psg->page/offset are used to copy to-be-written
3452 * data in this function or read data in ata_sg_clean.
3453 */
3454 offset = lsg->offset + lsg->length - qc->pad_len;
3455 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3456 psg->offset = offset_in_page(offset);
3457
3458 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3459 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3460 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003461 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003462 }
3463
3464 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3465 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3466 /* trim last sg */
3467 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003468 if (lsg->length == 0)
3469 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003470
3471 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3472 qc->n_elem - 1, lsg->length, qc->pad_len);
3473 }
3474
Jeff Garzike1410f22005-11-14 14:06:26 -05003475 pre_n_elem = qc->n_elem;
3476 if (trim_sg && pre_n_elem)
3477 pre_n_elem--;
3478
3479 if (!pre_n_elem) {
3480 n_elem = 0;
3481 goto skip_map;
3482 }
3483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003485 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003486 if (n_elem < 1) {
3487 /* restore last sg */
3488 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
3492 DPRINTK("%d sg elements mapped\n", n_elem);
3493
Jeff Garzike1410f22005-11-14 14:06:26 -05003494skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 qc->n_elem = n_elem;
3496
3497 return 0;
3498}
3499
3500/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003501 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003502 * @buf: Buffer to swap
3503 * @buf_words: Number of 16-bit words in buffer.
3504 *
3505 * Swap halves of 16-bit words if needed to convert from
3506 * little-endian byte order to native cpu byte order, or
3507 * vice-versa.
3508 *
3509 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003510 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003511 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512void swap_buf_le16(u16 *buf, unsigned int buf_words)
3513{
3514#ifdef __BIG_ENDIAN
3515 unsigned int i;
3516
3517 for (i = 0; i < buf_words; i++)
3518 buf[i] = le16_to_cpu(buf[i]);
3519#endif /* __BIG_ENDIAN */
3520}
3521
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003522/**
3523 * ata_mmio_data_xfer - Transfer data by MMIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003524 * @dev: device for this I/O
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003525 * @buf: data buffer
3526 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003527 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003528 *
3529 * Transfer data from/to the device data register by MMIO.
3530 *
3531 * LOCKING:
3532 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003533 */
3534
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003535void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
3536 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003538 struct ata_port *ap = adev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 unsigned int i;
3540 unsigned int words = buflen >> 1;
3541 u16 *buf16 = (u16 *) buf;
3542 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3543
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003544 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 if (write_data) {
3546 for (i = 0; i < words; i++)
3547 writew(le16_to_cpu(buf16[i]), mmio);
3548 } else {
3549 for (i = 0; i < words; i++)
3550 buf16[i] = cpu_to_le16(readw(mmio));
3551 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003552
3553 /* Transfer trailing 1 byte, if any. */
3554 if (unlikely(buflen & 0x01)) {
3555 u16 align_buf[1] = { 0 };
3556 unsigned char *trailing_buf = buf + buflen - 1;
3557
3558 if (write_data) {
3559 memcpy(align_buf, trailing_buf, 1);
3560 writew(le16_to_cpu(align_buf[0]), mmio);
3561 } else {
3562 align_buf[0] = cpu_to_le16(readw(mmio));
3563 memcpy(trailing_buf, align_buf, 1);
3564 }
3565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566}
3567
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003568/**
3569 * ata_pio_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003570 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003571 * @buf: data buffer
3572 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003573 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003574 *
3575 * Transfer data from/to the device data register by PIO.
3576 *
3577 * LOCKING:
3578 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003579 */
3580
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003581void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf,
3582 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003584 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003585 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003587 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003589 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003591 insw(ap->ioaddr.data_addr, buf, words);
3592
3593 /* Transfer trailing 1 byte, if any. */
3594 if (unlikely(buflen & 0x01)) {
3595 u16 align_buf[1] = { 0 };
3596 unsigned char *trailing_buf = buf + buflen - 1;
3597
3598 if (write_data) {
3599 memcpy(align_buf, trailing_buf, 1);
3600 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3601 } else {
3602 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3603 memcpy(trailing_buf, align_buf, 1);
3604 }
3605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606}
3607
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003608/**
Alan Cox75e99582006-05-24 14:14:41 +01003609 * ata_pio_data_xfer_noirq - Transfer data by PIO
3610 * @adev: device to target
3611 * @buf: data buffer
3612 * @buflen: buffer length
3613 * @write_data: read/write
3614 *
3615 * Transfer data from/to the device data register by PIO. Do the
3616 * transfer with interrupts disabled.
3617 *
3618 * LOCKING:
3619 * Inherited from caller.
3620 */
3621
3622void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3623 unsigned int buflen, int write_data)
3624{
3625 unsigned long flags;
3626 local_irq_save(flags);
3627 ata_pio_data_xfer(adev, buf, buflen, write_data);
3628 local_irq_restore(flags);
3629}
3630
3631
3632/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003633 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3634 * @qc: Command on going
3635 *
3636 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3637 *
3638 * LOCKING:
3639 * Inherited from caller.
3640 */
3641
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642static void ata_pio_sector(struct ata_queued_cmd *qc)
3643{
3644 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003645 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 struct ata_port *ap = qc->ap;
3647 struct page *page;
3648 unsigned int offset;
3649 unsigned char *buf;
3650
3651 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003652 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
3654 page = sg[qc->cursg].page;
3655 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3656
3657 /* get the current page and offset */
3658 page = nth_page(page, (offset >> PAGE_SHIFT));
3659 offset %= PAGE_SIZE;
3660
Albert Lee7282aa42005-10-09 09:46:07 -04003661 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3662
Albert Lee91b8b312005-10-09 09:48:44 -04003663 if (PageHighMem(page)) {
3664 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003665
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003666 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003667 local_irq_save(flags);
3668 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003669
Albert Lee91b8b312005-10-09 09:48:44 -04003670 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003671 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003672
3673 kunmap_atomic(buf, KM_IRQ0);
3674 local_irq_restore(flags);
3675 } else {
3676 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003677 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680 qc->cursect++;
3681 qc->cursg_ofs++;
3682
Albert Lee32529e02005-05-26 03:49:42 -04003683 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 qc->cursg++;
3685 qc->cursg_ofs = 0;
3686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003689/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003690 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3691 * @qc: Command on going
3692 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003693 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003694 * ATA device for the DRQ request.
3695 *
3696 * LOCKING:
3697 * Inherited from caller.
3698 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
Albert Lee07f6f7d2005-11-01 19:33:20 +08003700static void ata_pio_sectors(struct ata_queued_cmd *qc)
3701{
3702 if (is_multi_taskfile(&qc->tf)) {
3703 /* READ/WRITE MULTIPLE */
3704 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Jeff Garzik587005d2006-02-11 18:17:32 -05003706 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003707
3708 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3709 while (nsect--)
3710 ata_pio_sector(qc);
3711 } else
3712 ata_pio_sector(qc);
3713}
3714
3715/**
Albert Leec71c1852005-10-04 06:03:45 -04003716 * atapi_send_cdb - Write CDB bytes to hardware
3717 * @ap: Port to which ATAPI device is attached.
3718 * @qc: Taskfile currently active
3719 *
3720 * When device has indicated its readiness to accept
3721 * a CDB, this function is called. Send the CDB.
3722 *
3723 * LOCKING:
3724 * caller.
3725 */
3726
3727static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3728{
3729 /* send SCSI cdb */
3730 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003731 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003732
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003733 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003734 ata_altstatus(ap); /* flush */
3735
3736 switch (qc->tf.protocol) {
3737 case ATA_PROT_ATAPI:
3738 ap->hsm_task_state = HSM_ST;
3739 break;
3740 case ATA_PROT_ATAPI_NODATA:
3741 ap->hsm_task_state = HSM_ST_LAST;
3742 break;
3743 case ATA_PROT_ATAPI_DMA:
3744 ap->hsm_task_state = HSM_ST_LAST;
3745 /* initiate bmdma */
3746 ap->ops->bmdma_start(qc);
3747 break;
3748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749}
3750
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003751/**
3752 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3753 * @qc: Command on going
3754 * @bytes: number of bytes
3755 *
3756 * Transfer Transfer data from/to the ATAPI device.
3757 *
3758 * LOCKING:
3759 * Inherited from caller.
3760 *
3761 */
3762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3764{
3765 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003766 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 struct ata_port *ap = qc->ap;
3768 struct page *page;
3769 unsigned char *buf;
3770 unsigned int offset, count;
3771
Albert Lee563a6e12005-08-12 14:17:50 +08003772 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003773 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
3775next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003776 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003777 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003778 * The end of qc->sg is reached and the device expects
3779 * more data to transfer. In order not to overrun qc->sg
3780 * and fulfill length specified in the byte count register,
3781 * - for read case, discard trailing data from the device
3782 * - for write case, padding zero data to the device
3783 */
3784 u16 pad_buf[1] = { 0 };
3785 unsigned int words = bytes >> 1;
3786 unsigned int i;
3787
3788 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003789 ata_dev_printk(qc->dev, KERN_WARNING,
3790 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003791
3792 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003793 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08003794
Albert Lee14be71f2005-09-27 17:36:35 +08003795 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003796 return;
3797 }
3798
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003799 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 page = sg->page;
3802 offset = sg->offset + qc->cursg_ofs;
3803
3804 /* get the current page and offset */
3805 page = nth_page(page, (offset >> PAGE_SHIFT));
3806 offset %= PAGE_SIZE;
3807
Albert Lee6952df02005-06-06 15:56:03 +08003808 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003809 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
3811 /* don't cross page boundaries */
3812 count = min(count, (unsigned int)PAGE_SIZE - offset);
3813
Albert Lee7282aa42005-10-09 09:46:07 -04003814 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3815
Albert Lee91b8b312005-10-09 09:48:44 -04003816 if (PageHighMem(page)) {
3817 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003818
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003819 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003820 local_irq_save(flags);
3821 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003822
Albert Lee91b8b312005-10-09 09:48:44 -04003823 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003824 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003825
3826 kunmap_atomic(buf, KM_IRQ0);
3827 local_irq_restore(flags);
3828 } else {
3829 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003830 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832
3833 bytes -= count;
3834 qc->curbytes += count;
3835 qc->cursg_ofs += count;
3836
Albert Lee32529e02005-05-26 03:49:42 -04003837 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 qc->cursg++;
3839 qc->cursg_ofs = 0;
3840 }
3841
Albert Lee563a6e12005-08-12 14:17:50 +08003842 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844}
3845
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003846/**
3847 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3848 * @qc: Command on going
3849 *
3850 * Transfer Transfer data from/to the ATAPI device.
3851 *
3852 * LOCKING:
3853 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003854 */
3855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3857{
3858 struct ata_port *ap = qc->ap;
3859 struct ata_device *dev = qc->dev;
3860 unsigned int ireason, bc_lo, bc_hi, bytes;
3861 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3862
Albert Leeeec4c3f2006-05-18 17:51:10 +08003863 /* Abuse qc->result_tf for temp storage of intermediate TF
3864 * here to save some kernel stack usage.
3865 * For normal completion, qc->result_tf is not relevant. For
3866 * error, qc->result_tf is later overwritten by ata_qc_complete().
3867 * So, the correctness of qc->result_tf is not affected.
3868 */
3869 ap->ops->tf_read(ap, &qc->result_tf);
3870 ireason = qc->result_tf.nsect;
3871 bc_lo = qc->result_tf.lbam;
3872 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 bytes = (bc_hi << 8) | bc_lo;
3874
3875 /* shall be cleared to zero, indicating xfer of data */
3876 if (ireason & (1 << 0))
3877 goto err_out;
3878
3879 /* make sure transfer direction matches expected */
3880 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3881 if (do_write != i_write)
3882 goto err_out;
3883
Albert Lee312f7da2005-09-27 17:38:03 +08003884 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3885
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 __atapi_pio_bytes(qc, bytes);
3887
3888 return;
3889
3890err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003891 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003892 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003893 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894}
3895
3896/**
Albert Leec234fb02006-03-25 17:58:38 +08003897 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3898 * @ap: the target ata_port
3899 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 *
Albert Leec234fb02006-03-25 17:58:38 +08003901 * RETURNS:
3902 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 */
Albert Leec234fb02006-03-25 17:58:38 +08003904
3905static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906{
Albert Leec234fb02006-03-25 17:58:38 +08003907 if (qc->tf.flags & ATA_TFLAG_POLLING)
3908 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Albert Leec234fb02006-03-25 17:58:38 +08003910 if (ap->hsm_task_state == HSM_ST_FIRST) {
3911 if (qc->tf.protocol == ATA_PROT_PIO &&
3912 (qc->tf.flags & ATA_TFLAG_WRITE))
3913 return 1;
3914
3915 if (is_atapi_taskfile(&qc->tf) &&
3916 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3917 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 }
3919
Albert Leec234fb02006-03-25 17:58:38 +08003920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921}
3922
Albert Leec234fb02006-03-25 17:58:38 +08003923/**
Tejun Heoc17ea202006-05-15 20:59:29 +09003924 * ata_hsm_qc_complete - finish a qc running on standard HSM
3925 * @qc: Command to complete
3926 * @in_wq: 1 if called from workqueue, 0 otherwise
3927 *
3928 * Finish @qc which is running on standard HSM.
3929 *
3930 * LOCKING:
3931 * If @in_wq is zero, spin_lock_irqsave(host_set lock).
3932 * Otherwise, none on entry and grabs host lock.
3933 */
3934static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
3935{
3936 struct ata_port *ap = qc->ap;
3937 unsigned long flags;
3938
3939 if (ap->ops->error_handler) {
3940 if (in_wq) {
3941 spin_lock_irqsave(&ap->host_set->lock, flags);
3942
3943 /* EH might have kicked in while host_set lock
3944 * is released.
3945 */
3946 qc = ata_qc_from_tag(ap, qc->tag);
3947 if (qc) {
3948 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
3949 ata_irq_on(ap);
3950 ata_qc_complete(qc);
3951 } else
3952 ata_port_freeze(ap);
3953 }
3954
3955 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3956 } else {
3957 if (likely(!(qc->err_mask & AC_ERR_HSM)))
3958 ata_qc_complete(qc);
3959 else
3960 ata_port_freeze(ap);
3961 }
3962 } else {
3963 if (in_wq) {
3964 spin_lock_irqsave(&ap->host_set->lock, flags);
3965 ata_irq_on(ap);
3966 ata_qc_complete(qc);
3967 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3968 } else
3969 ata_qc_complete(qc);
3970 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003971
3972 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09003973}
3974
3975/**
Albert Leebb5cb292006-03-25 17:48:02 +08003976 * ata_hsm_move - move the HSM to the next state.
3977 * @ap: the target ata_port
3978 * @qc: qc on going
3979 * @status: current device status
3980 * @in_wq: 1 if called from workqueue, 0 otherwise
3981 *
3982 * RETURNS:
3983 * 1 when poll next status needed, 0 otherwise.
3984 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09003985int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
3986 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987{
Albert Leebb5cb292006-03-25 17:48:02 +08003988 unsigned long flags = 0;
3989 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Albert Lee6912ccd2006-03-25 17:45:49 +08003991 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08003992
Albert Leebb5cb292006-03-25 17:48:02 +08003993 /* Make sure ata_qc_issue_prot() does not throw things
3994 * like DMA polling into the workqueue. Notice that
3995 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08003996 */
Albert Leec234fb02006-03-25 17:58:38 +08003997 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08003998
Albert Leee2cec772006-03-25 17:43:49 +08003999fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004000 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4001 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Albert Leee2cec772006-03-25 17:43:49 +08004003 switch (ap->hsm_task_state) {
4004 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004005 /* Send first data block or PACKET CDB */
4006
4007 /* If polling, we will stay in the work queue after
4008 * sending the data. Otherwise, interrupt handler
4009 * takes over after sending the data.
4010 */
4011 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4012
Albert Leee2cec772006-03-25 17:43:49 +08004013 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004014 if (unlikely((status & ATA_DRQ) == 0)) {
4015 /* handle BSY=0, DRQ=0 as error */
4016 if (likely(status & (ATA_ERR | ATA_DF)))
4017 /* device stops HSM for abort/error */
4018 qc->err_mask |= AC_ERR_DEV;
4019 else
4020 /* HSM violation. Let EH handle this */
4021 qc->err_mask |= AC_ERR_HSM;
4022
Albert Leee2cec772006-03-25 17:43:49 +08004023 ap->hsm_task_state = HSM_ST_ERR;
4024 goto fsm_start;
4025 }
4026
Albert Lee71601952006-03-25 18:11:12 +08004027 /* Device should not ask for data transfer (DRQ=1)
4028 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004029 * We ignore DRQ here and stop the HSM by
4030 * changing hsm_task_state to HSM_ST_ERR and
4031 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004032 */
4033 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4034 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4035 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004036 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004037 ap->hsm_task_state = HSM_ST_ERR;
4038 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004039 }
4040
Albert Leebb5cb292006-03-25 17:48:02 +08004041 /* Send the CDB (atapi) or the first data block (ata pio out).
4042 * During the state transition, interrupt handler shouldn't
4043 * be invoked before the data transfer is complete and
4044 * hsm_task_state is changed. Hence, the following locking.
4045 */
4046 if (in_wq)
4047 spin_lock_irqsave(&ap->host_set->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004048
Albert Leebb5cb292006-03-25 17:48:02 +08004049 if (qc->tf.protocol == ATA_PROT_PIO) {
4050 /* PIO data out protocol.
4051 * send first data block.
4052 */
4053
4054 /* ata_pio_sectors() might change the state
4055 * to HSM_ST_LAST. so, the state is changed here
4056 * before ata_pio_sectors().
4057 */
4058 ap->hsm_task_state = HSM_ST;
4059 ata_pio_sectors(qc);
4060 ata_altstatus(ap); /* flush */
4061 } else
4062 /* send CDB */
4063 atapi_send_cdb(ap, qc);
4064
4065 if (in_wq)
4066 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4067
4068 /* if polling, ata_pio_task() handles the rest.
4069 * otherwise, interrupt handler takes over from here.
4070 */
Albert Leee2cec772006-03-25 17:43:49 +08004071 break;
4072
4073 case HSM_ST:
4074 /* complete command or read/write the data register */
4075 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4076 /* ATAPI PIO protocol */
4077 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004078 /* No more data to transfer or device error.
4079 * Device error will be tagged in HSM_ST_LAST.
4080 */
Albert Leee2cec772006-03-25 17:43:49 +08004081 ap->hsm_task_state = HSM_ST_LAST;
4082 goto fsm_start;
4083 }
4084
Albert Lee71601952006-03-25 18:11:12 +08004085 /* Device should not ask for data transfer (DRQ=1)
4086 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004087 * We ignore DRQ here and stop the HSM by
4088 * changing hsm_task_state to HSM_ST_ERR and
4089 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004090 */
4091 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4092 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4093 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004094 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004095 ap->hsm_task_state = HSM_ST_ERR;
4096 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004097 }
4098
Albert Leee2cec772006-03-25 17:43:49 +08004099 atapi_pio_bytes(qc);
4100
4101 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4102 /* bad ireason reported by device */
4103 goto fsm_start;
4104
4105 } else {
4106 /* ATA PIO protocol */
4107 if (unlikely((status & ATA_DRQ) == 0)) {
4108 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004109 if (likely(status & (ATA_ERR | ATA_DF)))
4110 /* device stops HSM for abort/error */
4111 qc->err_mask |= AC_ERR_DEV;
4112 else
4113 /* HSM violation. Let EH handle this */
4114 qc->err_mask |= AC_ERR_HSM;
4115
Albert Leee2cec772006-03-25 17:43:49 +08004116 ap->hsm_task_state = HSM_ST_ERR;
4117 goto fsm_start;
4118 }
4119
Albert Leeeee6c322006-04-01 17:38:43 +08004120 /* For PIO reads, some devices may ask for
4121 * data transfer (DRQ=1) alone with ERR=1.
4122 * We respect DRQ here and transfer one
4123 * block of junk data before changing the
4124 * hsm_task_state to HSM_ST_ERR.
4125 *
4126 * For PIO writes, ERR=1 DRQ=1 doesn't make
4127 * sense since the data block has been
4128 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004129 */
4130 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004131 /* data might be corrputed */
4132 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004133
4134 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4135 ata_pio_sectors(qc);
4136 ata_altstatus(ap);
4137 status = ata_wait_idle(ap);
4138 }
4139
Albert Lee3655d1d2006-05-19 11:43:04 +08004140 if (status & (ATA_BUSY | ATA_DRQ))
4141 qc->err_mask |= AC_ERR_HSM;
4142
Albert Leeeee6c322006-04-01 17:38:43 +08004143 /* ata_pio_sectors() might change the
4144 * state to HSM_ST_LAST. so, the state
4145 * is changed after ata_pio_sectors().
4146 */
4147 ap->hsm_task_state = HSM_ST_ERR;
4148 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004149 }
4150
Albert Leee2cec772006-03-25 17:43:49 +08004151 ata_pio_sectors(qc);
4152
4153 if (ap->hsm_task_state == HSM_ST_LAST &&
4154 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4155 /* all data read */
4156 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004157 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004158 goto fsm_start;
4159 }
4160 }
4161
4162 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004163 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004164 break;
4165
4166 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004167 if (unlikely(!ata_ok(status))) {
4168 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004169 ap->hsm_task_state = HSM_ST_ERR;
4170 goto fsm_start;
4171 }
4172
4173 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004174 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4175 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004176
Albert Lee6912ccd2006-03-25 17:45:49 +08004177 WARN_ON(qc->err_mask);
4178
Albert Leee2cec772006-03-25 17:43:49 +08004179 ap->hsm_task_state = HSM_ST_IDLE;
4180
4181 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004182 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004183
4184 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004185 break;
4186
4187 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004188 /* make sure qc->err_mask is available to
4189 * know what's wrong and recover
4190 */
4191 WARN_ON(qc->err_mask == 0);
4192
4193 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004194
Albert Lee999bb6f2006-03-25 18:07:48 +08004195 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004196 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004197
4198 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004199 break;
4200 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004201 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004202 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004203 }
4204
Albert Leebb5cb292006-03-25 17:48:02 +08004205 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206}
4207
4208static void ata_pio_task(void *_data)
4209{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004210 struct ata_queued_cmd *qc = _data;
4211 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004212 u8 status;
4213 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004214
4215fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004216 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217
Albert Leea1af3732006-03-25 17:50:15 +08004218 /*
4219 * This is purely heuristic. This is a fast path.
4220 * Sometimes when we enter, BSY will be cleared in
4221 * a chk-status or two. If not, the drive is probably seeking
4222 * or something. Snooze for a couple msecs, then
4223 * chk-status again. If still busy, queue delayed work.
4224 */
4225 status = ata_busy_wait(ap, ATA_BUSY, 5);
4226 if (status & ATA_BUSY) {
4227 msleep(2);
4228 status = ata_busy_wait(ap, ATA_BUSY, 10);
4229 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004230 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004231 return;
4232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 }
4234
Albert Leea1af3732006-03-25 17:50:15 +08004235 /* move the HSM */
4236 poll_next = ata_hsm_move(ap, qc, status, 1);
4237
4238 /* another command or interrupt handler
4239 * may be running at this point.
4240 */
4241 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004242 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243}
4244
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 * ata_qc_new - Request an available ATA command, for queueing
4247 * @ap: Port associated with device @dev
4248 * @dev: Device from whom we request an available command structure
4249 *
4250 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004251 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 */
4253
4254static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4255{
4256 struct ata_queued_cmd *qc = NULL;
4257 unsigned int i;
4258
Tejun Heoe3180492006-05-15 20:58:09 +09004259 /* no command while frozen */
4260 if (unlikely(ap->flags & ATA_FLAG_FROZEN))
4261 return NULL;
4262
Tejun Heo2ab7db12006-05-15 20:58:02 +09004263 /* the last tag is reserved for internal command. */
4264 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004265 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004266 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 break;
4268 }
4269
4270 if (qc)
4271 qc->tag = i;
4272
4273 return qc;
4274}
4275
4276/**
4277 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 * @dev: Device from whom we request an available command structure
4279 *
4280 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004281 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 */
4283
Tejun Heo3373efd2006-05-15 20:57:53 +09004284struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285{
Tejun Heo3373efd2006-05-15 20:57:53 +09004286 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 struct ata_queued_cmd *qc;
4288
4289 qc = ata_qc_new(ap);
4290 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 qc->scsicmd = NULL;
4292 qc->ap = ap;
4293 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004295 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 }
4297
4298 return qc;
4299}
4300
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301/**
4302 * ata_qc_free - free unused ata_queued_cmd
4303 * @qc: Command to complete
4304 *
4305 * Designed to free unused ata_queued_cmd object
4306 * in case something prevents using it.
4307 *
4308 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004309 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 */
4311void ata_qc_free(struct ata_queued_cmd *qc)
4312{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004313 struct ata_port *ap = qc->ap;
4314 unsigned int tag;
4315
Tejun Heoa46314742006-02-11 19:11:13 +09004316 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
Tejun Heo4ba946e2006-01-23 13:09:36 +09004318 qc->flags = 0;
4319 tag = qc->tag;
4320 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004321 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004322 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324}
4325
Tejun Heo76014422006-02-11 15:13:49 +09004326void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004328 struct ata_port *ap = qc->ap;
4329
Tejun Heoa46314742006-02-11 19:11:13 +09004330 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4331 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
4333 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4334 ata_sg_clean(qc);
4335
Tejun Heo7401abf2006-05-15 20:57:32 +09004336 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004337 if (qc->tf.protocol == ATA_PROT_NCQ)
4338 ap->sactive &= ~(1 << qc->tag);
4339 else
4340 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004341
Albert Lee3f3791d2005-08-16 14:25:38 +08004342 /* atapi: mark qc as inactive to prevent the interrupt handler
4343 * from completing the command twice later, before the error handler
4344 * is called. (when rc != 0 and atapi request sense is needed)
4345 */
4346 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004347 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004348
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004350 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351}
4352
Tejun Heof686bcb2006-05-15 20:58:05 +09004353/**
4354 * ata_qc_complete - Complete an active ATA command
4355 * @qc: Command to complete
4356 * @err_mask: ATA Status register contents
4357 *
4358 * Indicate to the mid and upper layers that an ATA
4359 * command has completed, with either an ok or not-ok status.
4360 *
4361 * LOCKING:
4362 * spin_lock_irqsave(host_set lock)
4363 */
4364void ata_qc_complete(struct ata_queued_cmd *qc)
4365{
4366 struct ata_port *ap = qc->ap;
4367
4368 /* XXX: New EH and old EH use different mechanisms to
4369 * synchronize EH with regular execution path.
4370 *
4371 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4372 * Normal execution path is responsible for not accessing a
4373 * failed qc. libata core enforces the rule by returning NULL
4374 * from ata_qc_from_tag() for failed qcs.
4375 *
4376 * Old EH depends on ata_qc_complete() nullifying completion
4377 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4378 * not synchronize with interrupt handler. Only PIO task is
4379 * taken care of.
4380 */
4381 if (ap->ops->error_handler) {
4382 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4383
4384 if (unlikely(qc->err_mask))
4385 qc->flags |= ATA_QCFLAG_FAILED;
4386
4387 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4388 if (!ata_tag_internal(qc->tag)) {
4389 /* always fill result TF for failed qc */
4390 ap->ops->tf_read(ap, &qc->result_tf);
4391 ata_qc_schedule_eh(qc);
4392 return;
4393 }
4394 }
4395
4396 /* read result TF if requested */
4397 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4398 ap->ops->tf_read(ap, &qc->result_tf);
4399
4400 __ata_qc_complete(qc);
4401 } else {
4402 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4403 return;
4404
4405 /* read result TF if failed or requested */
4406 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4407 ap->ops->tf_read(ap, &qc->result_tf);
4408
4409 __ata_qc_complete(qc);
4410 }
4411}
4412
Tejun Heodedaf2b2006-05-15 21:03:43 +09004413/**
4414 * ata_qc_complete_multiple - Complete multiple qcs successfully
4415 * @ap: port in question
4416 * @qc_active: new qc_active mask
4417 * @finish_qc: LLDD callback invoked before completing a qc
4418 *
4419 * Complete in-flight commands. This functions is meant to be
4420 * called from low-level driver's interrupt routine to complete
4421 * requests normally. ap->qc_active and @qc_active is compared
4422 * and commands are completed accordingly.
4423 *
4424 * LOCKING:
4425 * spin_lock_irqsave(host_set lock)
4426 *
4427 * RETURNS:
4428 * Number of completed commands on success, -errno otherwise.
4429 */
4430int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4431 void (*finish_qc)(struct ata_queued_cmd *))
4432{
4433 int nr_done = 0;
4434 u32 done_mask;
4435 int i;
4436
4437 done_mask = ap->qc_active ^ qc_active;
4438
4439 if (unlikely(done_mask & qc_active)) {
4440 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4441 "(%08x->%08x)\n", ap->qc_active, qc_active);
4442 return -EINVAL;
4443 }
4444
4445 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4446 struct ata_queued_cmd *qc;
4447
4448 if (!(done_mask & (1 << i)))
4449 continue;
4450
4451 if ((qc = ata_qc_from_tag(ap, i))) {
4452 if (finish_qc)
4453 finish_qc(qc);
4454 ata_qc_complete(qc);
4455 nr_done++;
4456 }
4457 }
4458
4459 return nr_done;
4460}
4461
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4463{
4464 struct ata_port *ap = qc->ap;
4465
4466 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004467 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 case ATA_PROT_DMA:
4469 case ATA_PROT_ATAPI_DMA:
4470 return 1;
4471
4472 case ATA_PROT_ATAPI:
4473 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 if (ap->flags & ATA_FLAG_PIO_DMA)
4475 return 1;
4476
4477 /* fall through */
4478
4479 default:
4480 return 0;
4481 }
4482
4483 /* never reached */
4484}
4485
4486/**
4487 * ata_qc_issue - issue taskfile to device
4488 * @qc: command to issue to device
4489 *
4490 * Prepare an ATA command to submission to device.
4491 * This includes mapping the data into a DMA-able
4492 * area, filling in the S/G table, and finally
4493 * writing the taskfile to hardware, starting the command.
4494 *
4495 * LOCKING:
4496 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004498void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499{
4500 struct ata_port *ap = qc->ap;
4501
Tejun Heodedaf2b2006-05-15 21:03:43 +09004502 /* Make sure only one non-NCQ command is outstanding. The
4503 * check is skipped for old EH because it reuses active qc to
4504 * request ATAPI sense.
4505 */
4506 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4507
4508 if (qc->tf.protocol == ATA_PROT_NCQ) {
4509 WARN_ON(ap->sactive & (1 << qc->tag));
4510 ap->sactive |= 1 << qc->tag;
4511 } else {
4512 WARN_ON(ap->sactive);
4513 ap->active_tag = qc->tag;
4514 }
4515
Tejun Heoe4a70e72006-03-31 20:36:47 +09004516 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004517 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004518
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 if (ata_should_dma_map(qc)) {
4520 if (qc->flags & ATA_QCFLAG_SG) {
4521 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004522 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4524 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004525 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 }
4527 } else {
4528 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4529 }
4530
4531 ap->ops->qc_prep(qc);
4532
Tejun Heo8e0e6942006-03-31 20:41:11 +09004533 qc->err_mask |= ap->ops->qc_issue(qc);
4534 if (unlikely(qc->err_mask))
4535 goto err;
4536 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Tejun Heo8e436af2006-01-23 13:09:36 +09004538sg_err:
4539 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004540 qc->err_mask |= AC_ERR_SYSTEM;
4541err:
4542 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543}
4544
4545/**
4546 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4547 * @qc: command to issue to device
4548 *
4549 * Using various libata functions and hooks, this function
4550 * starts an ATA command. ATA commands are grouped into
4551 * classes called "protocols", and issuing each type of protocol
4552 * is slightly different.
4553 *
Edward Falk0baab862005-06-02 18:17:13 -04004554 * May be used as the qc_issue() entry in ata_port_operations.
4555 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 * LOCKING:
4557 * spin_lock_irqsave(host_set lock)
4558 *
4559 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004560 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 */
4562
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004563unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564{
4565 struct ata_port *ap = qc->ap;
4566
Albert Leee50362e2005-09-27 17:39:50 +08004567 /* Use polling pio if the LLD doesn't handle
4568 * interrupt driven pio and atapi CDB interrupt.
4569 */
4570 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4571 switch (qc->tf.protocol) {
4572 case ATA_PROT_PIO:
4573 case ATA_PROT_ATAPI:
4574 case ATA_PROT_ATAPI_NODATA:
4575 qc->tf.flags |= ATA_TFLAG_POLLING;
4576 break;
4577 case ATA_PROT_ATAPI_DMA:
4578 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Leec2bbc552006-03-25 17:56:55 +08004579 /* see ata_check_atapi_dma() */
Albert Leee50362e2005-09-27 17:39:50 +08004580 BUG();
4581 break;
4582 default:
4583 break;
4584 }
4585 }
4586
Albert Lee312f7da2005-09-27 17:38:03 +08004587 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 ata_dev_select(ap, qc->dev->devno, 1, 0);
4589
Albert Lee312f7da2005-09-27 17:38:03 +08004590 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 switch (qc->tf.protocol) {
4592 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004593 if (qc->tf.flags & ATA_TFLAG_POLLING)
4594 ata_qc_set_polling(qc);
4595
Jeff Garzike5338252005-10-30 21:37:17 -05004596 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004597 ap->hsm_task_state = HSM_ST_LAST;
4598
4599 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004600 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004601
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 break;
4603
4604 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004605 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004606
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4608 ap->ops->bmdma_setup(qc); /* set up bmdma */
4609 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004610 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 break;
4612
Albert Lee312f7da2005-09-27 17:38:03 +08004613 case ATA_PROT_PIO:
4614 if (qc->tf.flags & ATA_TFLAG_POLLING)
4615 ata_qc_set_polling(qc);
4616
Jeff Garzike5338252005-10-30 21:37:17 -05004617 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004618
Albert Lee54f00382005-09-30 19:14:19 +08004619 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4620 /* PIO data out protocol */
4621 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004622 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004623
4624 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004625 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004626 */
Albert Lee312f7da2005-09-27 17:38:03 +08004627 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004628 /* PIO data in protocol */
4629 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004630
Albert Lee54f00382005-09-30 19:14:19 +08004631 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004632 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004633
Albert Lee54f00382005-09-30 19:14:19 +08004634 /* if polling, ata_pio_task() handles the rest.
4635 * otherwise, interrupt handler takes over from here.
4636 */
Albert Lee312f7da2005-09-27 17:38:03 +08004637 }
4638
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 break;
4640
4641 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004643 if (qc->tf.flags & ATA_TFLAG_POLLING)
4644 ata_qc_set_polling(qc);
4645
Jeff Garzike5338252005-10-30 21:37:17 -05004646 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004647
Albert Lee312f7da2005-09-27 17:38:03 +08004648 ap->hsm_task_state = HSM_ST_FIRST;
4649
4650 /* send cdb by polling if no cdb interrupt */
4651 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4652 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004653 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 break;
4655
4656 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004657 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004658
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4660 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004661 ap->hsm_task_state = HSM_ST_FIRST;
4662
4663 /* send cdb by polling if no cdb interrupt */
4664 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004665 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 break;
4667
4668 default:
4669 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004670 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 }
4672
4673 return 0;
4674}
4675
4676/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 * ata_host_intr - Handle host interrupt for given (port, task)
4678 * @ap: Port on which interrupt arrived (possibly...)
4679 * @qc: Taskfile currently active in engine
4680 *
4681 * Handle host interrupt for given queued command. Currently,
4682 * only DMA interrupts are handled. All other commands are
4683 * handled via polling with interrupts disabled (nIEN bit).
4684 *
4685 * LOCKING:
4686 * spin_lock_irqsave(host_set lock)
4687 *
4688 * RETURNS:
4689 * One if interrupt was handled, zero if not (shared irq).
4690 */
4691
4692inline unsigned int ata_host_intr (struct ata_port *ap,
4693 struct ata_queued_cmd *qc)
4694{
Albert Lee312f7da2005-09-27 17:38:03 +08004695 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Albert Lee312f7da2005-09-27 17:38:03 +08004697 VPRINTK("ata%u: protocol %d task_state %d\n",
4698 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699
Albert Lee312f7da2005-09-27 17:38:03 +08004700 /* Check whether we are expecting interrupt in this state */
4701 switch (ap->hsm_task_state) {
4702 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004703 /* Some pre-ATAPI-4 devices assert INTRQ
4704 * at this state when ready to receive CDB.
4705 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
Albert Lee312f7da2005-09-27 17:38:03 +08004707 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4708 * The flag was turned on only for atapi devices.
4709 * No need to check is_atapi_taskfile(&qc->tf) again.
4710 */
4711 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004714 case HSM_ST_LAST:
4715 if (qc->tf.protocol == ATA_PROT_DMA ||
4716 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4717 /* check status of DMA engine */
4718 host_stat = ap->ops->bmdma_status(ap);
4719 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720
Albert Lee312f7da2005-09-27 17:38:03 +08004721 /* if it's not our irq... */
4722 if (!(host_stat & ATA_DMA_INTR))
4723 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Albert Lee312f7da2005-09-27 17:38:03 +08004725 /* before we do anything else, clear DMA-Start bit */
4726 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004727
4728 if (unlikely(host_stat & ATA_DMA_ERR)) {
4729 /* error when transfering data to/from memory */
4730 qc->err_mask |= AC_ERR_HOST_BUS;
4731 ap->hsm_task_state = HSM_ST_ERR;
4732 }
Albert Lee312f7da2005-09-27 17:38:03 +08004733 }
4734 break;
4735 case HSM_ST:
4736 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 default:
4738 goto idle_irq;
4739 }
4740
Albert Lee312f7da2005-09-27 17:38:03 +08004741 /* check altstatus */
4742 status = ata_altstatus(ap);
4743 if (status & ATA_BUSY)
4744 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
Albert Lee312f7da2005-09-27 17:38:03 +08004746 /* check main status, clearing INTRQ */
4747 status = ata_chk_status(ap);
4748 if (unlikely(status & ATA_BUSY))
4749 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750
Albert Lee312f7da2005-09-27 17:38:03 +08004751 /* ack bmdma irq events */
4752 ap->ops->irq_clear(ap);
4753
Albert Leebb5cb292006-03-25 17:48:02 +08004754 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 return 1; /* irq handled */
4756
4757idle_irq:
4758 ap->stats.idle_irq++;
4759
4760#ifdef ATA_IRQ_TRAP
4761 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004763 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004764 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 }
4766#endif
4767 return 0; /* irq not handled */
4768}
4769
4770/**
4771 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004772 * @irq: irq line (unused)
4773 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 * @regs: unused
4775 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004776 * Default interrupt handler for PCI IDE devices. Calls
4777 * ata_host_intr() for each port that is not disabled.
4778 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004780 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 *
4782 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004783 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 */
4785
4786irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4787{
4788 struct ata_host_set *host_set = dev_instance;
4789 unsigned int i;
4790 unsigned int handled = 0;
4791 unsigned long flags;
4792
4793 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4794 spin_lock_irqsave(&host_set->lock, flags);
4795
4796 for (i = 0; i < host_set->n_ports; i++) {
4797 struct ata_port *ap;
4798
4799 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004800 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004801 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 struct ata_queued_cmd *qc;
4803
4804 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004805 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004806 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 handled |= ata_host_intr(ap, qc);
4808 }
4809 }
4810
4811 spin_unlock_irqrestore(&host_set->lock, flags);
4812
4813 return IRQ_RETVAL(handled);
4814}
4815
Tejun Heo34bf2172006-05-15 20:57:46 +09004816/**
4817 * sata_scr_valid - test whether SCRs are accessible
4818 * @ap: ATA port to test SCR accessibility for
4819 *
4820 * Test whether SCRs are accessible for @ap.
4821 *
4822 * LOCKING:
4823 * None.
4824 *
4825 * RETURNS:
4826 * 1 if SCRs are accessible, 0 otherwise.
4827 */
4828int sata_scr_valid(struct ata_port *ap)
4829{
4830 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4831}
4832
4833/**
4834 * sata_scr_read - read SCR register of the specified port
4835 * @ap: ATA port to read SCR for
4836 * @reg: SCR to read
4837 * @val: Place to store read value
4838 *
4839 * Read SCR register @reg of @ap into *@val. This function is
4840 * guaranteed to succeed if the cable type of the port is SATA
4841 * and the port implements ->scr_read.
4842 *
4843 * LOCKING:
4844 * None.
4845 *
4846 * RETURNS:
4847 * 0 on success, negative errno on failure.
4848 */
4849int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4850{
4851 if (sata_scr_valid(ap)) {
4852 *val = ap->ops->scr_read(ap, reg);
4853 return 0;
4854 }
4855 return -EOPNOTSUPP;
4856}
4857
4858/**
4859 * sata_scr_write - write SCR register of the specified port
4860 * @ap: ATA port to write SCR for
4861 * @reg: SCR to write
4862 * @val: value to write
4863 *
4864 * Write @val to SCR register @reg of @ap. This function is
4865 * guaranteed to succeed if the cable type of the port is SATA
4866 * and the port implements ->scr_read.
4867 *
4868 * LOCKING:
4869 * None.
4870 *
4871 * RETURNS:
4872 * 0 on success, negative errno on failure.
4873 */
4874int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4875{
4876 if (sata_scr_valid(ap)) {
4877 ap->ops->scr_write(ap, reg, val);
4878 return 0;
4879 }
4880 return -EOPNOTSUPP;
4881}
4882
4883/**
4884 * sata_scr_write_flush - write SCR register of the specified port and flush
4885 * @ap: ATA port to write SCR for
4886 * @reg: SCR to write
4887 * @val: value to write
4888 *
4889 * This function is identical to sata_scr_write() except that this
4890 * function performs flush after writing to the register.
4891 *
4892 * LOCKING:
4893 * None.
4894 *
4895 * RETURNS:
4896 * 0 on success, negative errno on failure.
4897 */
4898int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4899{
4900 if (sata_scr_valid(ap)) {
4901 ap->ops->scr_write(ap, reg, val);
4902 ap->ops->scr_read(ap, reg);
4903 return 0;
4904 }
4905 return -EOPNOTSUPP;
4906}
4907
4908/**
4909 * ata_port_online - test whether the given port is online
4910 * @ap: ATA port to test
4911 *
4912 * Test whether @ap is online. Note that this function returns 0
4913 * if online status of @ap cannot be obtained, so
4914 * ata_port_online(ap) != !ata_port_offline(ap).
4915 *
4916 * LOCKING:
4917 * None.
4918 *
4919 * RETURNS:
4920 * 1 if the port online status is available and online.
4921 */
4922int ata_port_online(struct ata_port *ap)
4923{
4924 u32 sstatus;
4925
4926 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4927 return 1;
4928 return 0;
4929}
4930
4931/**
4932 * ata_port_offline - test whether the given port is offline
4933 * @ap: ATA port to test
4934 *
4935 * Test whether @ap is offline. Note that this function returns
4936 * 0 if offline status of @ap cannot be obtained, so
4937 * ata_port_online(ap) != !ata_port_offline(ap).
4938 *
4939 * LOCKING:
4940 * None.
4941 *
4942 * RETURNS:
4943 * 1 if the port offline status is available and offline.
4944 */
4945int ata_port_offline(struct ata_port *ap)
4946{
4947 u32 sstatus;
4948
4949 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4950 return 1;
4951 return 0;
4952}
Edward Falk0baab862005-06-02 18:17:13 -04004953
Jens Axboe9b847542006-01-06 09:28:07 +01004954/*
4955 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4956 * without filling any other registers
4957 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004958static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Jens Axboe9b847542006-01-06 09:28:07 +01004959{
4960 struct ata_taskfile tf;
4961 int err;
4962
Tejun Heo3373efd2006-05-15 20:57:53 +09004963 ata_tf_init(dev, &tf);
Jens Axboe9b847542006-01-06 09:28:07 +01004964
4965 tf.command = cmd;
4966 tf.flags |= ATA_TFLAG_DEVICE;
4967 tf.protocol = ATA_PROT_NODATA;
4968
Tejun Heo3373efd2006-05-15 20:57:53 +09004969 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004970 if (err)
Tejun Heof15a1da2006-05-15 20:57:56 +09004971 ata_dev_printk(dev, KERN_ERR, "%s: ata command failed: %d\n",
4972 __FUNCTION__, err);
Jens Axboe9b847542006-01-06 09:28:07 +01004973
4974 return err;
4975}
4976
Tejun Heo3373efd2006-05-15 20:57:53 +09004977static int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004978{
4979 u8 cmd;
4980
4981 if (!ata_try_flush_cache(dev))
4982 return 0;
4983
4984 if (ata_id_has_flush_ext(dev->id))
4985 cmd = ATA_CMD_FLUSH_EXT;
4986 else
4987 cmd = ATA_CMD_FLUSH;
4988
Tejun Heo3373efd2006-05-15 20:57:53 +09004989 return ata_do_simple_cmd(dev, cmd);
Jens Axboe9b847542006-01-06 09:28:07 +01004990}
4991
Tejun Heo3373efd2006-05-15 20:57:53 +09004992static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004993{
Tejun Heo3373efd2006-05-15 20:57:53 +09004994 return ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
Jens Axboe9b847542006-01-06 09:28:07 +01004995}
4996
Tejun Heo3373efd2006-05-15 20:57:53 +09004997static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004998{
Tejun Heo3373efd2006-05-15 20:57:53 +09004999 return ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
Jens Axboe9b847542006-01-06 09:28:07 +01005000}
5001
5002/**
5003 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005004 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01005005 *
5006 * Kick the drive back into action, by sending it an idle immediate
5007 * command and making sure its transfer mode matches between drive
5008 * and host.
5009 *
5010 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005011int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005012{
Tejun Heo3373efd2006-05-15 20:57:53 +09005013 struct ata_port *ap = dev->ap;
5014
Jens Axboe9b847542006-01-06 09:28:07 +01005015 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005016 struct ata_device *failed_dev;
Jeff Garzike42d7be2006-05-28 16:32:59 -04005017
Mark Lord0737ac82006-05-28 11:28:00 -04005018 ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 200000);
Jeff Garzike42d7be2006-05-28 16:32:59 -04005019
Jens Axboe9b847542006-01-06 09:28:07 +01005020 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005021 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09005022 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005023 }
Tejun Heoe1211e32006-04-01 01:38:18 +09005024 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005025 return 0;
5026 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005027 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005028
5029 return 0;
5030}
5031
5032/**
5033 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005034 * @dev: the device to suspend
Randy Dunlape2a7f772006-05-18 10:50:18 -07005035 * @state: target power management state
Jens Axboe9b847542006-01-06 09:28:07 +01005036 *
5037 * Flush the cache on the drive, if appropriate, then issue a
5038 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01005039 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005040int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01005041{
Tejun Heo3373efd2006-05-15 20:57:53 +09005042 struct ata_port *ap = dev->ap;
5043
Tejun Heoe1211e32006-04-01 01:38:18 +09005044 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005045 return 0;
5046 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005047 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005048
Nigel Cunningham082776e2006-03-23 23:22:16 +10005049 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09005050 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005051 ap->flags |= ATA_FLAG_SUSPENDED;
5052 return 0;
5053}
5054
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005055/**
5056 * ata_port_start - Set port up for dma.
5057 * @ap: Port to initialize
5058 *
5059 * Called just after data structures for each port are
5060 * initialized. Allocates space for PRD table.
5061 *
5062 * May be used as the port_start() entry in ata_port_operations.
5063 *
5064 * LOCKING:
5065 * Inherited from caller.
5066 */
5067
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068int ata_port_start (struct ata_port *ap)
5069{
Brian King2f1f6102006-03-23 17:30:15 -06005070 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005071 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072
5073 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
5074 if (!ap->prd)
5075 return -ENOMEM;
5076
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005077 rc = ata_pad_alloc(ap, dev);
5078 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005079 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005080 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005081 }
5082
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
5084
5085 return 0;
5086}
5087
Edward Falk0baab862005-06-02 18:17:13 -04005088
5089/**
5090 * ata_port_stop - Undo ata_port_start()
5091 * @ap: Port to shut down
5092 *
5093 * Frees the PRD table.
5094 *
5095 * May be used as the port_stop() entry in ata_port_operations.
5096 *
5097 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005098 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005099 */
5100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101void ata_port_stop (struct ata_port *ap)
5102{
Brian King2f1f6102006-03-23 17:30:15 -06005103 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
5105 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005106 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107}
5108
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005109void ata_host_stop (struct ata_host_set *host_set)
5110{
5111 if (host_set->mmio_base)
5112 iounmap(host_set->mmio_base);
5113}
5114
5115
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116/**
5117 * ata_host_remove - Unregister SCSI host structure with upper layers
5118 * @ap: Port to unregister
5119 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
5120 *
5121 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005122 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 */
5124
5125static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
5126{
5127 struct Scsi_Host *sh = ap->host;
5128
5129 DPRINTK("ENTER\n");
5130
5131 if (do_unregister)
5132 scsi_remove_host(sh);
5133
5134 ap->ops->port_stop(ap);
5135}
5136
5137/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005138 * ata_dev_init - Initialize an ata_device structure
5139 * @dev: Device structure to initialize
5140 *
5141 * Initialize @dev in preparation for probing.
5142 *
5143 * LOCKING:
5144 * Inherited from caller.
5145 */
5146void ata_dev_init(struct ata_device *dev)
5147{
5148 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005149 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005150
Tejun Heo5a04bf42006-05-31 18:27:38 +09005151 /* SATA spd limit is bound to the first device */
5152 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5153
Tejun Heo72fa4b72006-05-31 18:27:32 +09005154 /* High bits of dev->flags are used to record warm plug
5155 * requests which occur asynchronously. Synchronize using
5156 * host_set lock.
5157 */
5158 spin_lock_irqsave(&ap->host_set->lock, flags);
5159 dev->flags &= ~ATA_DFLAG_INIT_MASK;
5160 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5161
5162 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5163 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005164 dev->pio_mask = UINT_MAX;
5165 dev->mwdma_mask = UINT_MAX;
5166 dev->udma_mask = UINT_MAX;
5167}
5168
5169/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 * ata_host_init - Initialize an ata_port structure
5171 * @ap: Structure to initialize
5172 * @host: associated SCSI mid-layer structure
5173 * @host_set: Collection of hosts to which @ap belongs
5174 * @ent: Probe information provided by low-level driver
5175 * @port_no: Port number associated with this ata_port
5176 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005177 * Initialize a new ata_port structure, and its associated
5178 * scsi_host.
5179 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005181 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5184 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005185 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186{
5187 unsigned int i;
5188
5189 host->max_id = 16;
5190 host->max_lun = 1;
5191 host->max_channel = 1;
5192 host->unique_id = ata_unique_id++;
5193 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005194
Tejun Heo198e0fe2006-04-02 18:51:52 +09005195 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 ap->id = host->unique_id;
5197 ap->host = host;
5198 ap->ctl = ATA_DEVCTL_OBS;
5199 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005200 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 ap->port_no = port_no;
5202 ap->hard_port_no =
5203 ent->legacy_mode ? ent->hard_port_no : port_no;
5204 ap->pio_mask = ent->pio_mask;
5205 ap->mwdma_mask = ent->mwdma_mask;
5206 ap->udma_mask = ent->udma_mask;
5207 ap->flags |= ent->host_flags;
5208 ap->ops = ent->port_ops;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005209 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 ap->active_tag = ATA_TAG_POISON;
5211 ap->last_ctl = 0xFF;
Borislav Petkovef282402006-05-29 01:06:23 -04005212 ap->msg_enable = ATA_MSG_DRV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Tejun Heo86e45b62006-03-05 15:29:09 +09005214 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heo580b21022006-05-31 18:28:05 +09005215 INIT_WORK(&ap->hotplug_task, ata_scsi_hotplug, ap);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005216 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005217 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
Tejun Heo838df622006-05-15 20:57:44 +09005219 /* set cable type */
5220 ap->cbl = ATA_CBL_NONE;
5221 if (ap->flags & ATA_FLAG_SATA)
5222 ap->cbl = ATA_CBL_SATA;
5223
Tejun Heoacf356b2006-03-24 14:07:50 +09005224 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5225 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005226 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005227 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005228 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230
5231#ifdef ATA_IRQ_TRAP
5232 ap->stats.unhandled_irq = 1;
5233 ap->stats.idle_irq = 1;
5234#endif
5235
5236 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5237}
5238
5239/**
5240 * ata_host_add - Attach low-level ATA driver to system
5241 * @ent: Information provided by low-level driver
5242 * @host_set: Collections of ports to which we add
5243 * @port_no: Port number associated with this host
5244 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005245 * Attach low-level ATA driver to system.
5246 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005248 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 *
5250 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005251 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 */
5253
Jeff Garzik057ace52005-10-22 14:27:05 -04005254static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 struct ata_host_set *host_set,
5256 unsigned int port_no)
5257{
5258 struct Scsi_Host *host;
5259 struct ata_port *ap;
5260 int rc;
5261
5262 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005263
Tejun Heo52783c52006-05-31 18:28:22 +09005264 if (!ent->port_ops->error_handler &&
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005265 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5266 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5267 port_no);
5268 return NULL;
5269 }
5270
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5272 if (!host)
5273 return NULL;
5274
Tejun Heo30afc842006-03-18 18:40:14 +09005275 host->transportt = &ata_scsi_transport_template;
5276
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005277 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
5279 ata_host_init(ap, host, host_set, ent, port_no);
5280
5281 rc = ap->ops->port_start(ap);
5282 if (rc)
5283 goto err_out;
5284
5285 return ap;
5286
5287err_out:
5288 scsi_host_put(host);
5289 return NULL;
5290}
5291
5292/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005293 * ata_device_add - Register hardware device with ATA and SCSI layers
5294 * @ent: Probe information describing hardware device to be registered
5295 *
5296 * This function processes the information provided in the probe
5297 * information struct @ent, allocates the necessary ATA and SCSI
5298 * host information structures, initializes them, and registers
5299 * everything with requisite kernel subsystems.
5300 *
5301 * This function requests irqs, probes the ATA bus, and probes
5302 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 *
5304 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005305 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 *
5307 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005308 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309 */
Jeff Garzik057ace52005-10-22 14:27:05 -04005310int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311{
5312 unsigned int count = 0, i;
5313 struct device *dev = ent->dev;
5314 struct ata_host_set *host_set;
5315
5316 DPRINTK("ENTER\n");
5317 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005318 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5320 if (!host_set)
5321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 spin_lock_init(&host_set->lock);
5323
5324 host_set->dev = dev;
5325 host_set->n_ports = ent->n_ports;
5326 host_set->irq = ent->irq;
5327 host_set->mmio_base = ent->mmio_base;
5328 host_set->private_data = ent->private_data;
5329 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005330 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331
5332 /* register each port bound to this device */
5333 for (i = 0; i < ent->n_ports; i++) {
5334 struct ata_port *ap;
5335 unsigned long xfer_mode_mask;
5336
5337 ap = ata_host_add(ent, host_set, i);
5338 if (!ap)
5339 goto err_out;
5340
5341 host_set->ports[i] = ap;
5342 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5343 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5344 (ap->pio_mask << ATA_SHIFT_PIO);
5345
5346 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005347 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5348 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5349 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5350 ata_mode_string(xfer_mode_mask),
5351 ap->ioaddr.cmd_addr,
5352 ap->ioaddr.ctl_addr,
5353 ap->ioaddr.bmdma_addr,
5354 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
5356 ata_chk_status(ap);
5357 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005358 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 count++;
5360 }
5361
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005362 if (!count)
5363 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364
5365 /* obtain irq, that is shared between channels */
5366 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5367 DRV_NAME, host_set))
5368 goto err_out;
5369
5370 /* perform each probe synchronously */
5371 DPRINTK("probe begin\n");
5372 for (i = 0; i < count; i++) {
5373 struct ata_port *ap;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005374 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 int rc;
5376
5377 ap = host_set->ports[i];
5378
Tejun Heo5a04bf42006-05-31 18:27:38 +09005379 /* init sata_spd_limit to the current value */
5380 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5381 int spd = (scontrol >> 4) & 0xf;
5382 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5383 }
5384 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5385
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386 rc = scsi_add_host(ap->host, dev);
5387 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005388 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 /* FIXME: do something useful here */
5390 /* FIXME: handle unconditional calls to
5391 * scsi_scan_host and ata_host_remove, below,
5392 * at the very least
5393 */
5394 }
Tejun Heo3e706392006-05-31 18:28:11 +09005395
Tejun Heo52783c52006-05-31 18:28:22 +09005396 if (ap->ops->error_handler) {
Tejun Heo3e706392006-05-31 18:28:11 +09005397 unsigned long flags;
5398
5399 ata_port_probe(ap);
5400
5401 /* kick EH for boot probing */
5402 spin_lock_irqsave(&ap->host_set->lock, flags);
5403
5404 ap->eh_info.probe_mask = (1 << ATA_MAX_DEVICES) - 1;
5405 ap->eh_info.action |= ATA_EH_SOFTRESET;
5406
5407 ap->flags |= ATA_FLAG_LOADING;
5408 ata_port_schedule_eh(ap);
5409
5410 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5411
5412 /* wait for EH to finish */
5413 ata_port_wait_eh(ap);
5414 } else {
5415 DPRINTK("ata%u: bus probe begin\n", ap->id);
5416 rc = ata_bus_probe(ap);
5417 DPRINTK("ata%u: bus probe end\n", ap->id);
5418
5419 if (rc) {
5420 /* FIXME: do something useful here?
5421 * Current libata behavior will
5422 * tear down everything when
5423 * the module is removed
5424 * or the h/w is unplugged.
5425 */
5426 }
5427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428 }
5429
5430 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005431 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432 for (i = 0; i < count; i++) {
5433 struct ata_port *ap = host_set->ports[i];
5434
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005435 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 }
5437
5438 dev_set_drvdata(dev, host_set);
5439
5440 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5441 return ent->n_ports; /* success */
5442
5443err_out:
5444 for (i = 0; i < count; i++) {
5445 ata_host_remove(host_set->ports[i], 1);
5446 scsi_host_put(host_set->ports[i]->host);
5447 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005448err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 kfree(host_set);
5450 VPRINTK("EXIT, returning 0\n");
5451 return 0;
5452}
5453
5454/**
Tejun Heo720ba122006-05-31 18:28:13 +09005455 * ata_port_detach - Detach ATA port in prepration of device removal
5456 * @ap: ATA port to be detached
5457 *
5458 * Detach all ATA devices and the associated SCSI devices of @ap;
5459 * then, remove the associated SCSI host. @ap is guaranteed to
5460 * be quiescent on return from this function.
5461 *
5462 * LOCKING:
5463 * Kernel thread context (may sleep).
5464 */
5465void ata_port_detach(struct ata_port *ap)
5466{
5467 unsigned long flags;
5468 int i;
5469
5470 if (!ap->ops->error_handler)
5471 return;
5472
5473 /* tell EH we're leaving & flush EH */
5474 spin_lock_irqsave(&ap->host_set->lock, flags);
5475 ap->flags |= ATA_FLAG_UNLOADING;
5476 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5477
5478 ata_port_wait_eh(ap);
5479
5480 /* EH is now guaranteed to see UNLOADING, so no new device
5481 * will be attached. Disable all existing devices.
5482 */
5483 spin_lock_irqsave(&ap->host_set->lock, flags);
5484
5485 for (i = 0; i < ATA_MAX_DEVICES; i++)
5486 ata_dev_disable(&ap->device[i]);
5487
5488 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5489
5490 /* Final freeze & EH. All in-flight commands are aborted. EH
5491 * will be skipped and retrials will be terminated with bad
5492 * target.
5493 */
5494 spin_lock_irqsave(&ap->host_set->lock, flags);
5495 ata_port_freeze(ap); /* won't be thawed */
5496 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5497
5498 ata_port_wait_eh(ap);
5499
5500 /* Flush hotplug task. The sequence is similar to
5501 * ata_port_flush_task().
5502 */
5503 flush_workqueue(ata_aux_wq);
5504 cancel_delayed_work(&ap->hotplug_task);
5505 flush_workqueue(ata_aux_wq);
5506
5507 /* remove the associated SCSI host */
5508 scsi_remove_host(ap->host);
5509}
5510
5511/**
Alan Cox17b14452005-09-15 15:44:00 +01005512 * ata_host_set_remove - PCI layer callback for device removal
5513 * @host_set: ATA host set that was removed
5514 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005515 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005516 * objects.
5517 *
5518 * LOCKING:
5519 * Inherited from calling layer (may sleep).
5520 */
5521
Alan Cox17b14452005-09-15 15:44:00 +01005522void ata_host_set_remove(struct ata_host_set *host_set)
5523{
Alan Cox17b14452005-09-15 15:44:00 +01005524 unsigned int i;
5525
Tejun Heo720ba122006-05-31 18:28:13 +09005526 for (i = 0; i < host_set->n_ports; i++)
5527 ata_port_detach(host_set->ports[i]);
Alan Cox17b14452005-09-15 15:44:00 +01005528
5529 free_irq(host_set->irq, host_set);
5530
5531 for (i = 0; i < host_set->n_ports; i++) {
Tejun Heo720ba122006-05-31 18:28:13 +09005532 struct ata_port *ap = host_set->ports[i];
Alan Cox17b14452005-09-15 15:44:00 +01005533
5534 ata_scsi_release(ap->host);
5535
5536 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5537 struct ata_ioports *ioaddr = &ap->ioaddr;
5538
5539 if (ioaddr->cmd_addr == 0x1f0)
5540 release_region(0x1f0, 8);
5541 else if (ioaddr->cmd_addr == 0x170)
5542 release_region(0x170, 8);
5543 }
5544
5545 scsi_host_put(ap->host);
5546 }
5547
5548 if (host_set->ops->host_stop)
5549 host_set->ops->host_stop(host_set);
5550
5551 kfree(host_set);
5552}
5553
5554/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555 * ata_scsi_release - SCSI layer callback hook for host unload
5556 * @host: libata host to be unloaded
5557 *
5558 * Performs all duties necessary to shut down a libata port...
5559 * Kill port kthread, disable port, and release resources.
5560 *
5561 * LOCKING:
5562 * Inherited from SCSI layer.
5563 *
5564 * RETURNS:
5565 * One.
5566 */
5567
5568int ata_scsi_release(struct Scsi_Host *host)
5569{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005570 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571
5572 DPRINTK("ENTER\n");
5573
5574 ap->ops->port_disable(ap);
5575 ata_host_remove(ap, 0);
5576
5577 DPRINTK("EXIT\n");
5578 return 1;
5579}
5580
5581/**
5582 * ata_std_ports - initialize ioaddr with standard port offsets.
5583 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005584 *
5585 * Utility function which initializes data_addr, error_addr,
5586 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5587 * device_addr, status_addr, and command_addr to standard offsets
5588 * relative to cmd_addr.
5589 *
5590 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591 */
Edward Falk0baab862005-06-02 18:17:13 -04005592
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593void ata_std_ports(struct ata_ioports *ioaddr)
5594{
5595 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5596 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5597 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5598 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5599 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5600 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5601 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5602 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5603 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5604 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5605}
5606
Edward Falk0baab862005-06-02 18:17:13 -04005607
Jeff Garzik374b1872005-08-30 05:42:52 -04005608#ifdef CONFIG_PCI
5609
5610void ata_pci_host_stop (struct ata_host_set *host_set)
5611{
5612 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5613
5614 pci_iounmap(pdev, host_set->mmio_base);
5615}
5616
Edward Falk0baab862005-06-02 18:17:13 -04005617/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618 * ata_pci_remove_one - PCI layer callback for device removal
5619 * @pdev: PCI device that was removed
5620 *
5621 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005622 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623 * Handle this by unregistering all objects associated
5624 * with this PCI device. Free those objects. Then finally
5625 * release PCI resources and disable device.
5626 *
5627 * LOCKING:
5628 * Inherited from PCI layer (may sleep).
5629 */
5630
5631void ata_pci_remove_one (struct pci_dev *pdev)
5632{
5633 struct device *dev = pci_dev_to_dev(pdev);
5634 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635
Alan Cox17b14452005-09-15 15:44:00 +01005636 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 pci_release_regions(pdev);
5638 pci_disable_device(pdev);
5639 dev_set_drvdata(dev, NULL);
5640}
5641
5642/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005643int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644{
5645 unsigned long tmp = 0;
5646
5647 switch (bits->width) {
5648 case 1: {
5649 u8 tmp8 = 0;
5650 pci_read_config_byte(pdev, bits->reg, &tmp8);
5651 tmp = tmp8;
5652 break;
5653 }
5654 case 2: {
5655 u16 tmp16 = 0;
5656 pci_read_config_word(pdev, bits->reg, &tmp16);
5657 tmp = tmp16;
5658 break;
5659 }
5660 case 4: {
5661 u32 tmp32 = 0;
5662 pci_read_config_dword(pdev, bits->reg, &tmp32);
5663 tmp = tmp32;
5664 break;
5665 }
5666
5667 default:
5668 return -EINVAL;
5669 }
5670
5671 tmp &= bits->mask;
5672
5673 return (tmp == bits->val) ? 1 : 0;
5674}
Jens Axboe9b847542006-01-06 09:28:07 +01005675
5676int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5677{
5678 pci_save_state(pdev);
5679 pci_disable_device(pdev);
5680 pci_set_power_state(pdev, PCI_D3hot);
5681 return 0;
5682}
5683
5684int ata_pci_device_resume(struct pci_dev *pdev)
5685{
5686 pci_set_power_state(pdev, PCI_D0);
5687 pci_restore_state(pdev);
5688 pci_enable_device(pdev);
5689 pci_set_master(pdev);
5690 return 0;
5691}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692#endif /* CONFIG_PCI */
5693
5694
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695static int __init ata_init(void)
5696{
5697 ata_wq = create_workqueue("ata");
5698 if (!ata_wq)
5699 return -ENOMEM;
5700
Tejun Heo453b07a2006-05-31 18:27:42 +09005701 ata_aux_wq = create_singlethread_workqueue("ata_aux");
5702 if (!ata_aux_wq) {
5703 destroy_workqueue(ata_wq);
5704 return -ENOMEM;
5705 }
5706
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5708 return 0;
5709}
5710
5711static void __exit ata_exit(void)
5712{
5713 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09005714 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715}
5716
5717module_init(ata_init);
5718module_exit(ata_exit);
5719
Jeff Garzik67846b32005-10-05 02:58:32 -04005720static unsigned long ratelimit_time;
5721static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5722
5723int ata_ratelimit(void)
5724{
5725 int rc;
5726 unsigned long flags;
5727
5728 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5729
5730 if (time_after(jiffies, ratelimit_time)) {
5731 rc = 1;
5732 ratelimit_time = jiffies + (HZ/5);
5733 } else
5734 rc = 0;
5735
5736 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5737
5738 return rc;
5739}
5740
Tejun Heoc22daff2006-04-11 22:22:29 +09005741/**
5742 * ata_wait_register - wait until register value changes
5743 * @reg: IO-mapped register
5744 * @mask: Mask to apply to read register value
5745 * @val: Wait condition
5746 * @interval_msec: polling interval in milliseconds
5747 * @timeout_msec: timeout in milliseconds
5748 *
5749 * Waiting for some bits of register to change is a common
5750 * operation for ATA controllers. This function reads 32bit LE
5751 * IO-mapped register @reg and tests for the following condition.
5752 *
5753 * (*@reg & mask) != val
5754 *
5755 * If the condition is met, it returns; otherwise, the process is
5756 * repeated after @interval_msec until timeout.
5757 *
5758 * LOCKING:
5759 * Kernel thread context (may sleep)
5760 *
5761 * RETURNS:
5762 * The final register value.
5763 */
5764u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5765 unsigned long interval_msec,
5766 unsigned long timeout_msec)
5767{
5768 unsigned long timeout;
5769 u32 tmp;
5770
5771 tmp = ioread32(reg);
5772
5773 /* Calculate timeout _after_ the first read to make sure
5774 * preceding writes reach the controller before starting to
5775 * eat away the timeout.
5776 */
5777 timeout = jiffies + (timeout_msec * HZ) / 1000;
5778
5779 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5780 msleep(interval_msec);
5781 tmp = ioread32(reg);
5782 }
5783
5784 return tmp;
5785}
5786
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787/*
5788 * libata is essentially a library of internal helper functions for
5789 * low-level ATA host controller drivers. As such, the API/ABI is
5790 * likely to change as new drivers are added and updated.
5791 * Do not depend on ABI/API stability.
5792 */
5793
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005794EXPORT_SYMBOL_GPL(sata_deb_timing_boot);
5795EXPORT_SYMBOL_GPL(sata_deb_timing_eh);
5796EXPORT_SYMBOL_GPL(sata_deb_timing_before_fsrst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797EXPORT_SYMBOL_GPL(ata_std_bios_param);
5798EXPORT_SYMBOL_GPL(ata_std_ports);
5799EXPORT_SYMBOL_GPL(ata_device_add);
Tejun Heo720ba122006-05-31 18:28:13 +09005800EXPORT_SYMBOL_GPL(ata_port_detach);
Alan Cox17b14452005-09-15 15:44:00 +01005801EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802EXPORT_SYMBOL_GPL(ata_sg_init);
5803EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09005804EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09005805EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005806EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808EXPORT_SYMBOL_GPL(ata_tf_load);
5809EXPORT_SYMBOL_GPL(ata_tf_read);
5810EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5811EXPORT_SYMBOL_GPL(ata_std_dev_select);
5812EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5813EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5814EXPORT_SYMBOL_GPL(ata_check_status);
5815EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816EXPORT_SYMBOL_GPL(ata_exec_command);
5817EXPORT_SYMBOL_GPL(ata_port_start);
5818EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005819EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820EXPORT_SYMBOL_GPL(ata_interrupt);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005821EXPORT_SYMBOL_GPL(ata_mmio_data_xfer);
5822EXPORT_SYMBOL_GPL(ata_pio_data_xfer);
Alan Cox75e99582006-05-24 14:14:41 +01005823EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005825EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5827EXPORT_SYMBOL_GPL(ata_bmdma_start);
5828EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5829EXPORT_SYMBOL_GPL(ata_bmdma_status);
5830EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005831EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5832EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5833EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5834EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5835EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005837EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005838EXPORT_SYMBOL_GPL(sata_phy_debounce);
5839EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840EXPORT_SYMBOL_GPL(sata_phy_reset);
5841EXPORT_SYMBOL_GPL(__sata_phy_reset);
5842EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09005843EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005844EXPORT_SYMBOL_GPL(ata_std_softreset);
5845EXPORT_SYMBOL_GPL(sata_std_hardreset);
5846EXPORT_SYMBOL_GPL(ata_std_postreset);
Tejun Heo623a3122006-03-05 17:55:58 +09005847EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005848EXPORT_SYMBOL_GPL(ata_dev_classify);
5849EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005851EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005852EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005853EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005854EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5856EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09005858EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09005859EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860EXPORT_SYMBOL_GPL(ata_scsi_release);
5861EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005862EXPORT_SYMBOL_GPL(sata_scr_valid);
5863EXPORT_SYMBOL_GPL(sata_scr_read);
5864EXPORT_SYMBOL_GPL(sata_scr_write);
5865EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5866EXPORT_SYMBOL_GPL(ata_port_online);
5867EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005868EXPORT_SYMBOL_GPL(ata_id_string);
5869EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5871
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005872EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005873EXPORT_SYMBOL_GPL(ata_timing_compute);
5874EXPORT_SYMBOL_GPL(ata_timing_merge);
5875
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876#ifdef CONFIG_PCI
5877EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005878EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5880EXPORT_SYMBOL_GPL(ata_pci_init_one);
5881EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005882EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5883EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005884EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5885EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005887
5888EXPORT_SYMBOL_GPL(ata_device_suspend);
5889EXPORT_SYMBOL_GPL(ata_device_resume);
5890EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5891EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005892
Tejun Heoece1d632006-04-02 18:51:53 +09005893EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005894EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5895EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005896EXPORT_SYMBOL_GPL(ata_port_freeze);
5897EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5898EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005899EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5900EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005901EXPORT_SYMBOL_GPL(ata_do_eh);