blob: 425ab1493fd30193ac7753c48dc49f2a048de0de [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.
Tejun Heo551e8882006-06-12 14:09:49 +0900984 *
985 * RETURNS:
986 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +0900987 */
Tejun Heo3373efd2006-05-15 20:57:53 +0900988unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900989 struct ata_taskfile *tf, const u8 *cdb,
990 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900991{
Tejun Heo3373efd2006-05-15 20:57:53 +0900992 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900993 u8 command = tf->command;
994 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +0900995 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +0900996 u32 preempted_sactive, preempted_qc_active;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900997 DECLARE_COMPLETION(wait);
998 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900999 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001000 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001001
1002 spin_lock_irqsave(&ap->host_set->lock, flags);
1003
Tejun Heoe3180492006-05-15 20:58:09 +09001004 /* no internal command while frozen */
1005 if (ap->flags & ATA_FLAG_FROZEN) {
1006 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1007 return AC_ERR_SYSTEM;
1008 }
1009
Tejun Heo2ab7db12006-05-15 20:58:02 +09001010 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001011
Tejun Heo2ab7db12006-05-15 20:58:02 +09001012 /* XXX: Tag 0 is used for drivers with legacy EH as some
1013 * drivers choke if any other tag is given. This breaks
1014 * ata_tag_internal() test for those drivers. Don't use new
1015 * EH stuff without converting to it.
1016 */
1017 if (ap->ops->error_handler)
1018 tag = ATA_TAG_INTERNAL;
1019 else
1020 tag = 0;
1021
Tejun Heo6cec4a32006-05-15 21:03:41 +09001022 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001023 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001024 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001025
1026 qc->tag = tag;
1027 qc->scsicmd = NULL;
1028 qc->ap = ap;
1029 qc->dev = dev;
1030 ata_qc_reinit(qc);
1031
1032 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001033 preempted_sactive = ap->sactive;
1034 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001035 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001036 ap->sactive = 0;
1037 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001038
1039 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001040 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001041 if (cdb)
1042 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001043 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001044 qc->dma_dir = dma_dir;
1045 if (dma_dir != DMA_NONE) {
1046 ata_sg_init_one(qc, buf, buflen);
1047 qc->nsect = buflen / ATA_SECT_SIZE;
1048 }
1049
Tejun Heo77853bf2006-01-23 13:09:36 +09001050 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001051 qc->complete_fn = ata_qc_complete_internal;
1052
Tejun Heo8e0e6942006-03-31 20:41:11 +09001053 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001054
1055 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1056
Tejun Heod95a7172006-05-15 20:58:14 +09001057 rc = wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL);
Albert Lee41ade502006-03-14 11:19:04 +08001058
Tejun Heod95a7172006-05-15 20:58:14 +09001059 ata_port_flush_task(ap);
1060
1061 if (!rc) {
Tejun Heoa2a7a662005-12-13 14:48:31 +09001062 spin_lock_irqsave(&ap->host_set->lock, flags);
1063
1064 /* We're racing with irq here. If we lose, the
1065 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001066 * twice. If we win, the port is frozen and will be
1067 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001068 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001069 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001070 qc->err_mask |= AC_ERR_TIMEOUT;
1071
1072 if (ap->ops->error_handler)
1073 ata_port_freeze(ap);
1074 else
1075 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001076
1077 ata_dev_printk(dev, KERN_WARNING,
1078 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001079 }
1080
1081 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1082 }
1083
Tejun Heod95a7172006-05-15 20:58:14 +09001084 /* do post_internal_cmd */
1085 if (ap->ops->post_internal_cmd)
1086 ap->ops->post_internal_cmd(qc);
1087
1088 if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) {
1089 ata_dev_printk(dev, KERN_WARNING, "zero err_mask for failed "
1090 "internal command, assuming AC_ERR_OTHER\n");
1091 qc->err_mask |= AC_ERR_OTHER;
1092 }
1093
Tejun Heo15869302006-05-15 20:57:33 +09001094 /* finish up */
1095 spin_lock_irqsave(&ap->host_set->lock, flags);
1096
Tejun Heoe61e0672006-05-15 20:57:40 +09001097 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001098 err_mask = qc->err_mask;
1099
1100 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001101 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001102 ap->sactive = preempted_sactive;
1103 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001104
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001105 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1106 * Until those drivers are fixed, we detect the condition
1107 * here, fail the command with AC_ERR_SYSTEM and reenable the
1108 * port.
1109 *
1110 * Note that this doesn't change any behavior as internal
1111 * command failure results in disabling the device in the
1112 * higher layer for LLDDs without new reset/EH callbacks.
1113 *
1114 * Kill the following code as soon as those drivers are fixed.
1115 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001116 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001117 err_mask |= AC_ERR_SYSTEM;
1118 ata_port_probe(ap);
1119 }
1120
Tejun Heo15869302006-05-15 20:57:33 +09001121 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1122
Tejun Heo77853bf2006-01-23 13:09:36 +09001123 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001124}
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001127 * ata_pio_need_iordy - check if iordy needed
1128 * @adev: ATA device
1129 *
1130 * Check if the current speed of the device requires IORDY. Used
1131 * by various controllers for chip configuration.
1132 */
1133
1134unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1135{
1136 int pio;
1137 int speed = adev->pio_mode - XFER_PIO_0;
1138
1139 if (speed < 2)
1140 return 0;
1141 if (speed > 2)
1142 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001143
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001144 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1145
1146 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1147 pio = adev->id[ATA_ID_EIDE_PIO];
1148 /* Is the speed faster than the drive allows non IORDY ? */
1149 if (pio) {
1150 /* This is cycle times not frequency - watch the logic! */
1151 if (pio > 240) /* PIO2 is 240nS per cycle */
1152 return 1;
1153 return 0;
1154 }
1155 }
1156 return 0;
1157}
1158
1159/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001160 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001161 * @dev: target device
1162 * @p_class: pointer to class of the target device (may be changed)
1163 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001164 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001165 *
1166 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1167 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001168 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1169 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001170 *
1171 * LOCKING:
1172 * Kernel thread context (may sleep)
1173 *
1174 * RETURNS:
1175 * 0 on success, -errno otherwise.
1176 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001177int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1178 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001179{
Tejun Heo3373efd2006-05-15 20:57:53 +09001180 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001181 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001182 struct ata_taskfile tf;
1183 unsigned int err_mask = 0;
1184 const char *reason;
1185 int rc;
1186
1187 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1188
Tejun Heo49016ac2006-02-21 02:12:11 +09001189 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1190
1191 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001192 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001193
1194 switch (class) {
1195 case ATA_DEV_ATA:
1196 tf.command = ATA_CMD_ID_ATA;
1197 break;
1198 case ATA_DEV_ATAPI:
1199 tf.command = ATA_CMD_ID_ATAPI;
1200 break;
1201 default:
1202 rc = -ENODEV;
1203 reason = "unsupported class";
1204 goto err_out;
1205 }
1206
1207 tf.protocol = ATA_PROT_PIO;
1208
Tejun Heo3373efd2006-05-15 20:57:53 +09001209 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001210 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001211 if (err_mask) {
1212 rc = -EIO;
1213 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001214 goto err_out;
1215 }
1216
1217 swap_buf_le16(id, ATA_ID_WORDS);
1218
Tejun Heo49016ac2006-02-21 02:12:11 +09001219 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001220 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001221 rc = -EINVAL;
1222 reason = "device reports illegal type";
1223 goto err_out;
1224 }
1225
1226 if (post_reset && class == ATA_DEV_ATA) {
1227 /*
1228 * The exact sequence expected by certain pre-ATA4 drives is:
1229 * SRST RESET
1230 * IDENTIFY
1231 * INITIALIZE DEVICE PARAMETERS
1232 * anything else..
1233 * Some drives were very specific about that exact sequence.
1234 */
1235 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001236 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001237 if (err_mask) {
1238 rc = -EIO;
1239 reason = "INIT_DEV_PARAMS failed";
1240 goto err_out;
1241 }
1242
1243 /* current CHS translation info (id[53-58]) might be
1244 * changed. reread the identify device info.
1245 */
1246 post_reset = 0;
1247 goto retry;
1248 }
1249 }
1250
1251 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001252
Tejun Heo49016ac2006-02-21 02:12:11 +09001253 return 0;
1254
1255 err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09001256 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
1257 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001258 return rc;
1259}
1260
Tejun Heo3373efd2006-05-15 20:57:53 +09001261static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001262{
Tejun Heo3373efd2006-05-15 20:57:53 +09001263 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001264}
1265
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001266static void ata_dev_config_ncq(struct ata_device *dev,
1267 char *desc, size_t desc_sz)
1268{
1269 struct ata_port *ap = dev->ap;
1270 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1271
1272 if (!ata_id_has_ncq(dev->id)) {
1273 desc[0] = '\0';
1274 return;
1275 }
1276
1277 if (ap->flags & ATA_FLAG_NCQ) {
1278 hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1);
1279 dev->flags |= ATA_DFLAG_NCQ;
1280 }
1281
1282 if (hdepth >= ddepth)
1283 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1284 else
1285 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1286}
1287
Tejun Heo49016ac2006-02-21 02:12:11 +09001288/**
Tejun Heoffeae412006-03-01 16:09:35 +09001289 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001290 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001291 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 *
Tejun Heoffeae412006-03-01 16:09:35 +09001293 * Configure @dev according to @dev->id. Generic and low-level
1294 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 *
1296 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001297 * Kernel thread context (may sleep)
1298 *
1299 * RETURNS:
1300 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001302int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Tejun Heo3373efd2006-05-15 20:57:53 +09001304 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001305 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001306 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001307 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Tejun Heoe1211e32006-04-01 01:38:18 +09001309 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001311 ap->id, dev->devno);
1312 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314
Tejun Heoffeae412006-03-01 16:09:35 +09001315 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001317 /* print device capabilities */
1318 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001319 ata_dev_printk(dev, KERN_DEBUG, "cfg 49:%04x 82:%04x 83:%04x "
1320 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1321 id[49], id[82], id[83], id[84],
1322 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001323
Tejun Heo208a9932006-03-05 17:55:58 +09001324 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001325 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001326 dev->max_sectors = 0;
1327 dev->cdb_len = 0;
1328 dev->n_sectors = 0;
1329 dev->cylinders = 0;
1330 dev->heads = 0;
1331 dev->sectors = 0;
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /*
1334 * common ATA, ATAPI feature tests
1335 */
1336
Tejun Heoff8854b2006-03-06 04:31:56 +09001337 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001338 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Tejun Heo1148c3a2006-03-13 19:48:04 +09001340 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 /* ATA-specific feature tests */
1343 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001344 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001345
Tejun Heo1148c3a2006-03-13 19:48:04 +09001346 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001347 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001348 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001349
Tejun Heo4c2d7212006-03-05 17:55:58 +09001350 lba_desc = "LBA";
1351 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001352 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001353 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001354 lba_desc = "LBA48";
1355 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001356
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001357 /* config NCQ */
1358 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1359
Albert Lee8bf62ece2005-05-12 15:29:42 -04001360 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001361 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001362 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001363 "max %s, %Lu sectors: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001364 ata_id_major_version(id),
1365 ata_mode_string(xfer_mask),
1366 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001367 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001368 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001369 /* CHS */
1370
1371 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001372 dev->cylinders = id[1];
1373 dev->heads = id[3];
1374 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001375
Tejun Heo1148c3a2006-03-13 19:48:04 +09001376 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001377 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001378 dev->cylinders = id[54];
1379 dev->heads = id[55];
1380 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001381 }
1382
1383 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001384 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001385 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1386 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1387 ata_id_major_version(id),
1388 ata_mode_string(xfer_mask),
1389 (unsigned long long)dev->n_sectors,
1390 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392
Albert Lee07f6f7d2005-11-01 19:33:20 +08001393 if (dev->id[59] & 0x100) {
1394 dev->multi_count = dev->id[59] & 0xff;
1395 DPRINTK("ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001396 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001397 }
1398
Tejun Heo6e7846e2006-02-12 23:32:58 +09001399 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401
1402 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001403 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001404 char *cdb_intr_string = "";
1405
Tejun Heo1148c3a2006-03-13 19:48:04 +09001406 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001408 ata_dev_printk(dev, KERN_WARNING,
1409 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001410 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 goto err_out_nosup;
1412 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001413 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Albert Lee08a556d2006-03-31 13:29:04 +08001415 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001416 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001417 cdb_intr_string = ", CDB intr";
1418 }
Albert Lee312f7da2005-09-27 17:38:03 +08001419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001421 if (print_info)
Tejun Heo12436c32006-05-15 20:59:15 +09001422 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1423 ata_mode_string(xfer_mask),
1424 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
1426
Tejun Heo6e7846e2006-02-12 23:32:58 +09001427 ap->host->max_cmd_len = 0;
1428 for (i = 0; i < ATA_MAX_DEVICES; i++)
1429 ap->host->max_cmd_len = max_t(unsigned int,
1430 ap->host->max_cmd_len,
1431 ap->device[i].cdb_len);
1432
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001433 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001434 if (ata_dev_knobble(dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001435 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001436 ata_dev_printk(dev, KERN_INFO,
1437 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001438 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001439 dev->max_sectors = ATA_MAX_SECTORS;
1440 }
1441
1442 if (ap->ops->dev_config)
1443 ap->ops->dev_config(ap, dev);
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001446 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001450 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
1453/**
1454 * ata_bus_probe - Reset and probe ATA bus
1455 * @ap: Bus to probe
1456 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001457 * Master ATA bus probing function. Initiates a hardware-dependent
1458 * bus reset, then attempts to identify any devices found on
1459 * the bus.
1460 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001462 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 *
1464 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001465 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 */
1467
1468static int ata_bus_probe(struct ata_port *ap)
1469{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001470 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001471 int tries[ATA_MAX_DEVICES];
1472 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001473 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Tejun Heo28ca5c52006-03-01 16:09:36 +09001475 ata_port_probe(ap);
1476
Tejun Heo14d2bac2006-04-02 17:54:46 +09001477 for (i = 0; i < ATA_MAX_DEVICES; i++)
1478 tries[i] = ATA_PROBE_MAX_TRIES;
1479
1480 retry:
1481 down_xfermask = 0;
1482
Tejun Heo20444702006-03-13 01:57:01 +09001483 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09001484 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09001485
Tejun Heo52783c52006-05-31 18:28:22 +09001486 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1487 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001488
Tejun Heo52783c52006-05-31 18:28:22 +09001489 if (!(ap->flags & ATA_FLAG_DISABLED) &&
1490 dev->class != ATA_DEV_UNKNOWN)
1491 classes[dev->devno] = dev->class;
1492 else
1493 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09001494
Tejun Heo52783c52006-05-31 18:28:22 +09001495 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09001496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Tejun Heo52783c52006-05-31 18:28:22 +09001498 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09001499
Alan Coxb6079ca2006-05-22 16:52:06 +01001500 /* after the reset the device state is PIO 0 and the controller
1501 state is undefined. Record the mode */
1502
1503 for (i = 0; i < ATA_MAX_DEVICES; i++)
1504 ap->device[i].pio_mode = XFER_PIO_0;
1505
Tejun Heo28ca5c52006-03-01 16:09:36 +09001506 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001508 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001509
Tejun Heoec573752006-04-11 22:26:29 +09001510 if (tries[i])
1511 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001512
Tejun Heoe1211e32006-04-01 01:38:18 +09001513 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001514 continue;
1515
Tejun Heo3373efd2006-05-15 20:57:53 +09001516 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001517 if (rc)
1518 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001519
Tejun Heo3373efd2006-05-15 20:57:53 +09001520 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001521 if (rc)
1522 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001525 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001526 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001527 if (rc) {
1528 down_xfermask = 1;
1529 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001532 for (i = 0; i < ATA_MAX_DEVICES; i++)
1533 if (ata_dev_enabled(&ap->device[i]))
1534 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001535
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001536 /* no device present, disable port */
1537 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001539 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001540
1541 fail:
1542 switch (rc) {
1543 case -EINVAL:
1544 case -ENODEV:
1545 tries[dev->devno] = 0;
1546 break;
1547 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001548 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001549 /* fall through */
1550 default:
1551 tries[dev->devno]--;
1552 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001553 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001554 tries[dev->devno] = 0;
1555 }
1556
Tejun Heoec573752006-04-11 22:26:29 +09001557 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001558 ata_down_xfermask_limit(dev, 1);
1559 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001560 }
1561
Tejun Heo14d2bac2006-04-02 17:54:46 +09001562 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
1565/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001566 * ata_port_probe - Mark port as enabled
1567 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001569 * Modify @ap data structure such that the system
1570 * thinks that the entire port is enabled.
1571 *
1572 * LOCKING: host_set lock, or some other form of
1573 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 */
1575
1576void ata_port_probe(struct ata_port *ap)
1577{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001578 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
1581/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001582 * sata_print_link_status - Print SATA link status
1583 * @ap: SATA port to printk link status about
1584 *
1585 * This function prints link speed and status of a SATA link.
1586 *
1587 * LOCKING:
1588 * None.
1589 */
1590static void sata_print_link_status(struct ata_port *ap)
1591{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001592 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001593
Tejun Heo81952c52006-05-15 20:57:47 +09001594 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001595 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001596 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001597
Tejun Heo81952c52006-05-15 20:57:47 +09001598 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001599 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001600 ata_port_printk(ap, KERN_INFO,
1601 "SATA link up %s (SStatus %X SControl %X)\n",
1602 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001603 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001604 ata_port_printk(ap, KERN_INFO,
1605 "SATA link down (SStatus %X SControl %X)\n",
1606 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001607 }
1608}
1609
1610/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001611 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1612 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001614 * This function issues commands to standard SATA Sxxx
1615 * PHY registers, to wake up the phy (and device), and
1616 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 *
1618 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001619 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 *
1621 */
1622void __sata_phy_reset(struct ata_port *ap)
1623{
1624 u32 sstatus;
1625 unsigned long timeout = jiffies + (HZ * 5);
1626
1627 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001628 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001629 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001630 /* Couldn't find anything in SATA I/II specs, but
1631 * AHCI-1.1 10.4.2 says at least 1 ms. */
1632 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
Tejun Heo81952c52006-05-15 20:57:47 +09001634 /* phy wake/clear reset */
1635 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 /* wait for phy to become ready, if necessary */
1638 do {
1639 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001640 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if ((sstatus & 0xf) != 1)
1642 break;
1643 } while (time_before(jiffies, timeout));
1644
Tejun Heo3be680b2005-12-19 22:35:02 +09001645 /* print link status */
1646 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001647
Tejun Heo3be680b2005-12-19 22:35:02 +09001648 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001649 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001651 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Tejun Heo198e0fe2006-04-02 18:51:52 +09001654 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return;
1656
1657 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1658 ata_port_disable(ap);
1659 return;
1660 }
1661
1662 ap->cbl = ATA_CBL_SATA;
1663}
1664
1665/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001666 * sata_phy_reset - Reset SATA bus.
1667 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001669 * This function resets the SATA bus, and then probes
1670 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 *
1672 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001673 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 *
1675 */
1676void sata_phy_reset(struct ata_port *ap)
1677{
1678 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001679 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return;
1681 ata_bus_reset(ap);
1682}
1683
1684/**
Alan Coxebdfca6e2006-03-23 15:38:34 +00001685 * ata_dev_pair - return other device on cable
Alan Coxebdfca6e2006-03-23 15:38:34 +00001686 * @adev: device
1687 *
1688 * Obtain the other device on the same cable, or if none is
1689 * present NULL is returned
1690 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001691
Tejun Heo3373efd2006-05-15 20:57:53 +09001692struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca6e2006-03-23 15:38:34 +00001693{
Tejun Heo3373efd2006-05-15 20:57:53 +09001694 struct ata_port *ap = adev->ap;
Alan Coxebdfca6e2006-03-23 15:38:34 +00001695 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001696 if (!ata_dev_enabled(pair))
Alan Coxebdfca6e2006-03-23 15:38:34 +00001697 return NULL;
1698 return pair;
1699}
1700
1701/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001702 * ata_port_disable - Disable port.
1703 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001705 * Modify @ap data structure such that the system
1706 * thinks that the entire port is disabled, and should
1707 * never attempt to probe or communicate with devices
1708 * on this port.
1709 *
1710 * LOCKING: host_set lock, or some other form of
1711 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 */
1713
1714void ata_port_disable(struct ata_port *ap)
1715{
1716 ap->device[0].class = ATA_DEV_NONE;
1717 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001718 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
Tejun Heo1c3fae42006-04-02 20:53:28 +09001721/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001722 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001723 * @ap: Port to adjust SATA spd limit for
1724 *
1725 * Adjust SATA spd limit of @ap downward. Note that this
1726 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001727 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001728 *
1729 * LOCKING:
1730 * Inherited from caller.
1731 *
1732 * RETURNS:
1733 * 0 on success, negative errno on failure
1734 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001735int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001736{
Tejun Heo81952c52006-05-15 20:57:47 +09001737 u32 sstatus, spd, mask;
1738 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001739
Tejun Heo81952c52006-05-15 20:57:47 +09001740 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1741 if (rc)
1742 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001743
1744 mask = ap->sata_spd_limit;
1745 if (mask <= 1)
1746 return -EINVAL;
1747 highbit = fls(mask) - 1;
1748 mask &= ~(1 << highbit);
1749
Tejun Heo81952c52006-05-15 20:57:47 +09001750 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001751 if (spd <= 1)
1752 return -EINVAL;
1753 spd--;
1754 mask &= (1 << spd) - 1;
1755 if (!mask)
1756 return -EINVAL;
1757
1758 ap->sata_spd_limit = mask;
1759
Tejun Heof15a1da2006-05-15 20:57:56 +09001760 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1761 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001762
1763 return 0;
1764}
1765
Tejun Heo3c567b72006-05-15 20:57:23 +09001766static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001767{
1768 u32 spd, limit;
1769
1770 if (ap->sata_spd_limit == UINT_MAX)
1771 limit = 0;
1772 else
1773 limit = fls(ap->sata_spd_limit);
1774
1775 spd = (*scontrol >> 4) & 0xf;
1776 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1777
1778 return spd != limit;
1779}
1780
1781/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001782 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001783 * @ap: Port in question
1784 *
1785 * Test whether the spd limit in SControl matches
1786 * @ap->sata_spd_limit. This function is used to determine
1787 * whether hardreset is necessary to apply SATA spd
1788 * configuration.
1789 *
1790 * LOCKING:
1791 * Inherited from caller.
1792 *
1793 * RETURNS:
1794 * 1 if SATA spd configuration is needed, 0 otherwise.
1795 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001796int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001797{
1798 u32 scontrol;
1799
Tejun Heo81952c52006-05-15 20:57:47 +09001800 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001801 return 0;
1802
Tejun Heo3c567b72006-05-15 20:57:23 +09001803 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001804}
1805
1806/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001807 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001808 * @ap: Port to set SATA spd for
1809 *
1810 * Set SATA spd of @ap according to sata_spd_limit.
1811 *
1812 * LOCKING:
1813 * Inherited from caller.
1814 *
1815 * RETURNS:
1816 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001817 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001818 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001819int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001820{
1821 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001822 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001823
Tejun Heo81952c52006-05-15 20:57:47 +09001824 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1825 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001826
Tejun Heo3c567b72006-05-15 20:57:23 +09001827 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001828 return 0;
1829
Tejun Heo81952c52006-05-15 20:57:47 +09001830 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1831 return rc;
1832
Tejun Heo1c3fae42006-04-02 20:53:28 +09001833 return 1;
1834}
1835
Alan Cox452503f2005-10-21 19:01:32 -04001836/*
1837 * This mode timing computation functionality is ported over from
1838 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1839 */
1840/*
1841 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1842 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1843 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001844 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001845 */
1846
1847static const struct ata_timing ata_timing[] = {
1848
1849 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1850 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1851 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1852 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1853
1854 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1855 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1856 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1857
1858/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001859
Alan Cox452503f2005-10-21 19:01:32 -04001860 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1861 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1862 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001863
Alan Cox452503f2005-10-21 19:01:32 -04001864 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1865 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1866 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1867
1868/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1869 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1870 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1871
1872 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1873 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1874 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1875
1876/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1877
1878 { 0xFF }
1879};
1880
1881#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1882#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1883
1884static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1885{
1886 q->setup = EZ(t->setup * 1000, T);
1887 q->act8b = EZ(t->act8b * 1000, T);
1888 q->rec8b = EZ(t->rec8b * 1000, T);
1889 q->cyc8b = EZ(t->cyc8b * 1000, T);
1890 q->active = EZ(t->active * 1000, T);
1891 q->recover = EZ(t->recover * 1000, T);
1892 q->cycle = EZ(t->cycle * 1000, T);
1893 q->udma = EZ(t->udma * 1000, UT);
1894}
1895
1896void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1897 struct ata_timing *m, unsigned int what)
1898{
1899 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1900 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1901 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1902 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1903 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1904 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1905 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1906 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1907}
1908
1909static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1910{
1911 const struct ata_timing *t;
1912
1913 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001914 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001915 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001916 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001917}
1918
1919int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1920 struct ata_timing *t, int T, int UT)
1921{
1922 const struct ata_timing *s;
1923 struct ata_timing p;
1924
1925 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001926 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001927 */
Alan Cox452503f2005-10-21 19:01:32 -04001928
1929 if (!(s = ata_timing_find_mode(speed)))
1930 return -EINVAL;
1931
Albert Lee75b1f2f2005-11-16 17:06:18 +08001932 memcpy(t, s, sizeof(*s));
1933
Alan Cox452503f2005-10-21 19:01:32 -04001934 /*
1935 * If the drive is an EIDE drive, it can tell us it needs extended
1936 * PIO/MW_DMA cycle timing.
1937 */
1938
1939 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1940 memset(&p, 0, sizeof(p));
1941 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1942 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1943 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1944 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1945 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1946 }
1947 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1948 }
1949
1950 /*
1951 * Convert the timing to bus clock counts.
1952 */
1953
Albert Lee75b1f2f2005-11-16 17:06:18 +08001954 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001955
1956 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001957 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1958 * S.M.A.R.T * and some other commands. We have to ensure that the
1959 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001960 */
1961
1962 if (speed > XFER_PIO_4) {
1963 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1964 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1965 }
1966
1967 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001968 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001969 */
1970
1971 if (t->act8b + t->rec8b < t->cyc8b) {
1972 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1973 t->rec8b = t->cyc8b - t->act8b;
1974 }
1975
1976 if (t->active + t->recover < t->cycle) {
1977 t->active += (t->cycle - (t->active + t->recover)) / 2;
1978 t->recover = t->cycle - t->active;
1979 }
1980
1981 return 0;
1982}
1983
Tejun Heocf176e12006-04-02 17:54:46 +09001984/**
1985 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09001986 * @dev: Device to adjust xfer masks
1987 * @force_pio0: Force PIO0
1988 *
1989 * Adjust xfer masks of @dev downward. Note that this function
1990 * does not apply the change. Invoking ata_set_mode() afterwards
1991 * will apply the limit.
1992 *
1993 * LOCKING:
1994 * Inherited from caller.
1995 *
1996 * RETURNS:
1997 * 0 on success, negative errno on failure
1998 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001999int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09002000{
2001 unsigned long xfer_mask;
2002 int highbit;
2003
2004 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2005 dev->udma_mask);
2006
2007 if (!xfer_mask)
2008 goto fail;
2009 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2010 if (xfer_mask & ATA_MASK_UDMA)
2011 xfer_mask &= ~ATA_MASK_MWDMA;
2012
2013 highbit = fls(xfer_mask) - 1;
2014 xfer_mask &= ~(1 << highbit);
2015 if (force_pio0)
2016 xfer_mask &= 1 << ATA_SHIFT_PIO;
2017 if (!xfer_mask)
2018 goto fail;
2019
2020 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2021 &dev->udma_mask);
2022
Tejun Heof15a1da2006-05-15 20:57:56 +09002023 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2024 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002025
2026 return 0;
2027
2028 fail:
2029 return -EINVAL;
2030}
2031
Tejun Heo3373efd2006-05-15 20:57:53 +09002032static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
Tejun Heo83206a22006-03-24 15:25:31 +09002034 unsigned int err_mask;
2035 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Tejun Heoe8384602006-04-02 18:51:53 +09002037 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 if (dev->xfer_shift == ATA_SHIFT_PIO)
2039 dev->flags |= ATA_DFLAG_PIO;
2040
Tejun Heo3373efd2006-05-15 20:57:53 +09002041 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002042 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002043 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2044 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002045 return -EIO;
2046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Tejun Heo3373efd2006-05-15 20:57:53 +09002048 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002049 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002050 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002051
Tejun Heo23e71c32006-03-06 04:31:57 +09002052 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2053 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Tejun Heof15a1da2006-05-15 20:57:56 +09002055 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2056 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060/**
2061 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2062 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002063 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002065 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2066 * ata_set_mode() fails, pointer to the failing device is
2067 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002068 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002070 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002071 *
2072 * RETURNS:
2073 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002075int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Tejun Heoe8e06192006-04-01 01:38:18 +09002077 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002078 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Tejun Heo3adcebb2006-05-15 20:57:37 +09002080 /* has private set_mode? */
2081 if (ap->ops->set_mode) {
2082 /* FIXME: make ->set_mode handle no device case and
2083 * return error code and failing device on failure.
2084 */
2085 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2086 if (ata_dev_enabled(&ap->device[i])) {
2087 ap->ops->set_mode(ap);
2088 break;
2089 }
2090 }
2091 return 0;
2092 }
2093
Tejun Heoa6d5a512006-03-06 04:31:57 +09002094 /* step 1: calculate xfer_mask */
2095 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002096 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002097
Tejun Heoe8e06192006-04-01 01:38:18 +09002098 dev = &ap->device[i];
2099
Tejun Heoe1211e32006-04-01 01:38:18 +09002100 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002101 continue;
2102
Tejun Heo3373efd2006-05-15 20:57:53 +09002103 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002104
Tejun Heoacf356b2006-03-24 14:07:50 +09002105 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2106 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2107 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2108 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002109
Tejun Heo4f659772006-04-01 01:38:18 +09002110 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002111 if (dev->dma_mode)
2112 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002113 }
Tejun Heo4f659772006-04-01 01:38:18 +09002114 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002115 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002116
2117 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002118 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2119 dev = &ap->device[i];
2120 if (!ata_dev_enabled(dev))
2121 continue;
2122
2123 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002124 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002125 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002126 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002127 }
2128
2129 dev->xfer_mode = dev->pio_mode;
2130 dev->xfer_shift = ATA_SHIFT_PIO;
2131 if (ap->ops->set_piomode)
2132 ap->ops->set_piomode(ap, dev);
2133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Tejun Heoa6d5a512006-03-06 04:31:57 +09002135 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002136 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2137 dev = &ap->device[i];
2138
2139 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2140 continue;
2141
2142 dev->xfer_mode = dev->dma_mode;
2143 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2144 if (ap->ops->set_dmamode)
2145 ap->ops->set_dmamode(ap, dev);
2146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002149 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002150 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Tejun Heoe1211e32006-04-01 01:38:18 +09002152 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002153 continue;
2154
Tejun Heo3373efd2006-05-15 20:57:53 +09002155 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002156 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002157 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Tejun Heoe8e06192006-04-01 01:38:18 +09002160 /* Record simplex status. If we selected DMA then the other
2161 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002162 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002163 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2164 ap->host_set->simplex_claimed = 1;
2165
Tejun Heoe8e06192006-04-01 01:38:18 +09002166 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (ap->ops->post_set_mode)
2168 ap->ops->post_set_mode(ap);
2169
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002170 out:
2171 if (rc)
2172 *r_failed_dev = dev;
2173 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
2176/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002177 * ata_tf_to_host - issue ATA taskfile to host controller
2178 * @ap: port to which command is being issued
2179 * @tf: ATA taskfile register set
2180 *
2181 * Issues ATA taskfile register set to ATA host controller,
2182 * with proper synchronization with interrupt handler and
2183 * other threads.
2184 *
2185 * LOCKING:
2186 * spin_lock_irqsave(host_set lock)
2187 */
2188
2189static inline void ata_tf_to_host(struct ata_port *ap,
2190 const struct ata_taskfile *tf)
2191{
2192 ap->ops->tf_load(ap, tf);
2193 ap->ops->exec_command(ap, tf);
2194}
2195
2196/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 * ata_busy_sleep - sleep until BSY clears, or timeout
2198 * @ap: port containing status register to be polled
2199 * @tmout_pat: impatience timeout
2200 * @tmout: overall timeout
2201 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002202 * Sleep until ATA Status register bit BSY clears,
2203 * or a timeout occurs.
2204 *
2205 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 */
2207
Tejun Heo6f8b9952006-01-24 17:05:21 +09002208unsigned int ata_busy_sleep (struct ata_port *ap,
2209 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
2211 unsigned long timer_start, timeout;
2212 u8 status;
2213
2214 status = ata_busy_wait(ap, ATA_BUSY, 300);
2215 timer_start = jiffies;
2216 timeout = timer_start + tmout_pat;
2217 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2218 msleep(50);
2219 status = ata_busy_wait(ap, ATA_BUSY, 3);
2220 }
2221
2222 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002223 ata_port_printk(ap, KERN_WARNING,
2224 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226 timeout = timer_start + tmout;
2227 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2228 msleep(50);
2229 status = ata_chk_status(ap);
2230 }
2231
2232 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002233 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2234 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 return 1;
2236 }
2237
2238 return 0;
2239}
2240
2241static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2242{
2243 struct ata_ioports *ioaddr = &ap->ioaddr;
2244 unsigned int dev0 = devmask & (1 << 0);
2245 unsigned int dev1 = devmask & (1 << 1);
2246 unsigned long timeout;
2247
2248 /* if device 0 was found in ata_devchk, wait for its
2249 * BSY bit to clear
2250 */
2251 if (dev0)
2252 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2253
2254 /* if device 1 was found in ata_devchk, wait for
2255 * register access, then wait for BSY to clear
2256 */
2257 timeout = jiffies + ATA_TMOUT_BOOT;
2258 while (dev1) {
2259 u8 nsect, lbal;
2260
2261 ap->ops->dev_select(ap, 1);
2262 if (ap->flags & ATA_FLAG_MMIO) {
2263 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2264 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2265 } else {
2266 nsect = inb(ioaddr->nsect_addr);
2267 lbal = inb(ioaddr->lbal_addr);
2268 }
2269 if ((nsect == 1) && (lbal == 1))
2270 break;
2271 if (time_after(jiffies, timeout)) {
2272 dev1 = 0;
2273 break;
2274 }
2275 msleep(50); /* give drive a breather */
2276 }
2277 if (dev1)
2278 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2279
2280 /* is all this really necessary? */
2281 ap->ops->dev_select(ap, 0);
2282 if (dev1)
2283 ap->ops->dev_select(ap, 1);
2284 if (dev0)
2285 ap->ops->dev_select(ap, 0);
2286}
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288static unsigned int ata_bus_softreset(struct ata_port *ap,
2289 unsigned int devmask)
2290{
2291 struct ata_ioports *ioaddr = &ap->ioaddr;
2292
2293 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2294
2295 /* software reset. causes dev0 to be selected */
2296 if (ap->flags & ATA_FLAG_MMIO) {
2297 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2298 udelay(20); /* FIXME: flush */
2299 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2300 udelay(20); /* FIXME: flush */
2301 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2302 } else {
2303 outb(ap->ctl, ioaddr->ctl_addr);
2304 udelay(10);
2305 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2306 udelay(10);
2307 outb(ap->ctl, ioaddr->ctl_addr);
2308 }
2309
2310 /* spec mandates ">= 2ms" before checking status.
2311 * We wait 150ms, because that was the magic delay used for
2312 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2313 * between when the ATA command register is written, and then
2314 * status is checked. Because waiting for "a while" before
2315 * checking status is fine, post SRST, we perform this magic
2316 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002317 *
2318 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 */
2320 msleep(150);
2321
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002322 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002323 * the bus shows 0xFF because the odd clown forgets the D7
2324 * pulldown resistor.
2325 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002326 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002327 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002328 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002329 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 ata_bus_post_reset(ap, devmask);
2332
2333 return 0;
2334}
2335
2336/**
2337 * ata_bus_reset - reset host port and associated ATA channel
2338 * @ap: port to reset
2339 *
2340 * This is typically the first time we actually start issuing
2341 * commands to the ATA channel. We wait for BSY to clear, then
2342 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2343 * result. Determine what devices, if any, are on the channel
2344 * by looking at the device 0/1 error register. Look at the signature
2345 * stored in each device's taskfile registers, to determine if
2346 * the device is ATA or ATAPI.
2347 *
2348 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002349 * PCI/etc. bus probe sem.
2350 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 *
2352 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002353 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 */
2355
2356void ata_bus_reset(struct ata_port *ap)
2357{
2358 struct ata_ioports *ioaddr = &ap->ioaddr;
2359 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2360 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002361 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2364
2365 /* determine if device 0/1 are present */
2366 if (ap->flags & ATA_FLAG_SATA_RESET)
2367 dev0 = 1;
2368 else {
2369 dev0 = ata_devchk(ap, 0);
2370 if (slave_possible)
2371 dev1 = ata_devchk(ap, 1);
2372 }
2373
2374 if (dev0)
2375 devmask |= (1 << 0);
2376 if (dev1)
2377 devmask |= (1 << 1);
2378
2379 /* select device 0 again */
2380 ap->ops->dev_select(ap, 0);
2381
2382 /* issue bus reset */
2383 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002384 if (ata_bus_softreset(ap, devmask))
2385 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 /*
2388 * determine by signature whether we have ATA or ATAPI devices
2389 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002390 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002392 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 /* re-enable interrupts */
2395 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2396 ata_irq_on(ap);
2397
2398 /* is double-select really necessary? */
2399 if (ap->device[1].class != ATA_DEV_NONE)
2400 ap->ops->dev_select(ap, 1);
2401 if (ap->device[0].class != ATA_DEV_NONE)
2402 ap->ops->dev_select(ap, 0);
2403
2404 /* if no devices were detected, disable this port */
2405 if ((ap->device[0].class == ATA_DEV_NONE) &&
2406 (ap->device[1].class == ATA_DEV_NONE))
2407 goto err_out;
2408
2409 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2410 /* set up device control for ATA_FLAG_SATA_RESET */
2411 if (ap->flags & ATA_FLAG_MMIO)
2412 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2413 else
2414 outb(ap->ctl, ioaddr->ctl_addr);
2415 }
2416
2417 DPRINTK("EXIT\n");
2418 return;
2419
2420err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002421 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 ap->ops->port_disable(ap);
2423
2424 DPRINTK("EXIT\n");
2425}
2426
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002427/**
2428 * sata_phy_debounce - debounce SATA phy status
2429 * @ap: ATA port to debounce SATA phy status for
2430 * @params: timing parameters { interval, duratinon, timeout } in msec
2431 *
2432 * Make sure SStatus of @ap reaches stable state, determined by
2433 * holding the same value where DET is not 1 for @duration polled
2434 * every @interval, before @timeout. Timeout constraints the
2435 * beginning of the stable state. Because, after hot unplugging,
2436 * DET gets stuck at 1 on some controllers, this functions waits
2437 * until timeout then returns 0 if DET is stable at 1.
2438 *
2439 * LOCKING:
2440 * Kernel thread context (may sleep)
2441 *
2442 * RETURNS:
2443 * 0 on success, -errno on failure.
2444 */
2445int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002446{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002447 unsigned long interval_msec = params[0];
2448 unsigned long duration = params[1] * HZ / 1000;
2449 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2450 unsigned long last_jiffies;
2451 u32 last, cur;
2452 int rc;
2453
2454 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2455 return rc;
2456 cur &= 0xf;
2457
2458 last = cur;
2459 last_jiffies = jiffies;
2460
2461 while (1) {
2462 msleep(interval_msec);
2463 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2464 return rc;
2465 cur &= 0xf;
2466
2467 /* DET stable? */
2468 if (cur == last) {
2469 if (cur == 1 && time_before(jiffies, timeout))
2470 continue;
2471 if (time_after(jiffies, last_jiffies + duration))
2472 return 0;
2473 continue;
2474 }
2475
2476 /* unstable, start over */
2477 last = cur;
2478 last_jiffies = jiffies;
2479
2480 /* check timeout */
2481 if (time_after(jiffies, timeout))
2482 return -EBUSY;
2483 }
2484}
2485
2486/**
2487 * sata_phy_resume - resume SATA phy
2488 * @ap: ATA port to resume SATA phy for
2489 * @params: timing parameters { interval, duratinon, timeout } in msec
2490 *
2491 * Resume SATA phy of @ap and debounce it.
2492 *
2493 * LOCKING:
2494 * Kernel thread context (may sleep)
2495 *
2496 * RETURNS:
2497 * 0 on success, -errno on failure.
2498 */
2499int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2500{
2501 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002502 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002503
Tejun Heo81952c52006-05-15 20:57:47 +09002504 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2505 return rc;
2506
Tejun Heo852ee16a2006-04-01 01:38:18 +09002507 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002508
2509 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2510 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002511
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002512 /* Some PHYs react badly if SStatus is pounded immediately
2513 * after resuming. Delay 200ms before debouncing.
2514 */
2515 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002516
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002517 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002518}
2519
Tejun Heof5914a42006-05-31 18:27:48 +09002520static void ata_wait_spinup(struct ata_port *ap)
2521{
2522 struct ata_eh_context *ehc = &ap->eh_context;
2523 unsigned long end, secs;
2524 int rc;
2525
2526 /* first, debounce phy if SATA */
2527 if (ap->cbl == ATA_CBL_SATA) {
2528 rc = sata_phy_debounce(ap, sata_deb_timing_eh);
2529
2530 /* if debounced successfully and offline, no need to wait */
2531 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
2532 return;
2533 }
2534
2535 /* okay, let's give the drive time to spin up */
2536 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
2537 secs = ((end - jiffies) + HZ - 1) / HZ;
2538
2539 if (time_after(jiffies, end))
2540 return;
2541
2542 if (secs > 5)
2543 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
2544 "(%lu secs)\n", secs);
2545
2546 schedule_timeout_uninterruptible(end - jiffies);
2547}
2548
2549/**
2550 * ata_std_prereset - prepare for reset
2551 * @ap: ATA port to be reset
2552 *
2553 * @ap is about to be reset. Initialize it.
2554 *
2555 * LOCKING:
2556 * Kernel thread context (may sleep)
2557 *
2558 * RETURNS:
2559 * 0 on success, -errno otherwise.
2560 */
2561int ata_std_prereset(struct ata_port *ap)
2562{
2563 struct ata_eh_context *ehc = &ap->eh_context;
2564 const unsigned long *timing;
2565 int rc;
2566
2567 /* hotplug? */
2568 if (ehc->i.flags & ATA_EHI_HOTPLUGGED) {
2569 if (ap->flags & ATA_FLAG_HRST_TO_RESUME)
2570 ehc->i.action |= ATA_EH_HARDRESET;
2571 if (ap->flags & ATA_FLAG_SKIP_D2H_BSY)
2572 ata_wait_spinup(ap);
2573 }
2574
2575 /* if we're about to do hardreset, nothing more to do */
2576 if (ehc->i.action & ATA_EH_HARDRESET)
2577 return 0;
2578
2579 /* if SATA, resume phy */
2580 if (ap->cbl == ATA_CBL_SATA) {
2581 if (ap->flags & ATA_FLAG_LOADING)
2582 timing = sata_deb_timing_boot;
2583 else
2584 timing = sata_deb_timing_eh;
2585
2586 rc = sata_phy_resume(ap, timing);
2587 if (rc && rc != -EOPNOTSUPP) {
2588 /* phy resume failed */
2589 ata_port_printk(ap, KERN_WARNING, "failed to resume "
2590 "link for reset (errno=%d)\n", rc);
2591 return rc;
2592 }
2593 }
2594
2595 /* Wait for !BSY if the controller can wait for the first D2H
2596 * Reg FIS and we don't know that no device is attached.
2597 */
2598 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
2599 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2600
2601 return 0;
2602}
2603
Tejun Heoc2bd5802006-01-24 17:05:22 +09002604/**
2605 * ata_std_softreset - reset host port via ATA SRST
2606 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002607 * @classes: resulting classes of attached devices
2608 *
Tejun Heo52783c52006-05-31 18:28:22 +09002609 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002610 *
2611 * LOCKING:
2612 * Kernel thread context (may sleep)
2613 *
2614 * RETURNS:
2615 * 0 on success, -errno otherwise.
2616 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002617int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002618{
2619 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2620 unsigned int devmask = 0, err_mask;
2621 u8 err;
2622
2623 DPRINTK("ENTER\n");
2624
Tejun Heo81952c52006-05-15 20:57:47 +09002625 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002626 classes[0] = ATA_DEV_NONE;
2627 goto out;
2628 }
2629
Tejun Heoc2bd5802006-01-24 17:05:22 +09002630 /* determine if device 0/1 are present */
2631 if (ata_devchk(ap, 0))
2632 devmask |= (1 << 0);
2633 if (slave_possible && ata_devchk(ap, 1))
2634 devmask |= (1 << 1);
2635
Tejun Heoc2bd5802006-01-24 17:05:22 +09002636 /* select device 0 again */
2637 ap->ops->dev_select(ap, 0);
2638
2639 /* issue bus reset */
2640 DPRINTK("about to softreset, devmask=%x\n", devmask);
2641 err_mask = ata_bus_softreset(ap, devmask);
2642 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002643 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2644 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002645 return -EIO;
2646 }
2647
2648 /* determine by signature whether we have ATA or ATAPI devices */
2649 classes[0] = ata_dev_try_classify(ap, 0, &err);
2650 if (slave_possible && err != 0x81)
2651 classes[1] = ata_dev_try_classify(ap, 1, &err);
2652
Tejun Heo3a397462006-02-10 23:58:48 +09002653 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002654 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2655 return 0;
2656}
2657
2658/**
2659 * sata_std_hardreset - reset host port via SATA phy reset
2660 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002661 * @class: resulting class of attached device
2662 *
2663 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002664 *
2665 * LOCKING:
2666 * Kernel thread context (may sleep)
2667 *
2668 * RETURNS:
2669 * 0 on success, -errno otherwise.
2670 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002671int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002672{
Tejun Heo852ee16a2006-04-01 01:38:18 +09002673 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002674 int rc;
Tejun Heo852ee16a2006-04-01 01:38:18 +09002675
Tejun Heoc2bd5802006-01-24 17:05:22 +09002676 DPRINTK("ENTER\n");
2677
Tejun Heo3c567b72006-05-15 20:57:23 +09002678 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002679 /* SATA spec says nothing about how to reconfigure
2680 * spd. To be on the safe side, turn off phy during
2681 * reconfiguration. This works for at least ICH7 AHCI
2682 * and Sil3124.
2683 */
Tejun Heo81952c52006-05-15 20:57:47 +09002684 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2685 return rc;
2686
Tejun Heo1c3fae42006-04-02 20:53:28 +09002687 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002688
2689 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2690 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002691
Tejun Heo3c567b72006-05-15 20:57:23 +09002692 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002693 }
2694
2695 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002696 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2697 return rc;
2698
Tejun Heo852ee16a2006-04-01 01:38:18 +09002699 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002700
2701 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2702 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002703
Tejun Heo1c3fae42006-04-02 20:53:28 +09002704 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002705 * 10.4.2 says at least 1 ms.
2706 */
2707 msleep(1);
2708
Tejun Heo1c3fae42006-04-02 20:53:28 +09002709 /* bring phy back */
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002710 sata_phy_resume(ap, sata_deb_timing_eh);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002711
Tejun Heoc2bd5802006-01-24 17:05:22 +09002712 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002713 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002714 *class = ATA_DEV_NONE;
2715 DPRINTK("EXIT, link offline\n");
2716 return 0;
2717 }
2718
2719 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002720 ata_port_printk(ap, KERN_ERR,
2721 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002722 return -EIO;
2723 }
2724
Tejun Heo3a397462006-02-10 23:58:48 +09002725 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2726
Tejun Heoc2bd5802006-01-24 17:05:22 +09002727 *class = ata_dev_try_classify(ap, 0, NULL);
2728
2729 DPRINTK("EXIT, class=%u\n", *class);
2730 return 0;
2731}
2732
2733/**
2734 * ata_std_postreset - standard postreset callback
2735 * @ap: the target ata_port
2736 * @classes: classes of attached devices
2737 *
2738 * This function is invoked after a successful reset. Note that
2739 * the device might have been reset more than once using
2740 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002741 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09002742 * LOCKING:
2743 * Kernel thread context (may sleep)
2744 */
2745void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2746{
Tejun Heodc2b3512006-05-15 20:58:00 +09002747 u32 serror;
2748
Tejun Heoc2bd5802006-01-24 17:05:22 +09002749 DPRINTK("ENTER\n");
2750
Tejun Heoc2bd5802006-01-24 17:05:22 +09002751 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002752 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002753
Tejun Heodc2b3512006-05-15 20:58:00 +09002754 /* clear SError */
2755 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2756 sata_scr_write(ap, SCR_ERROR, serror);
2757
Tejun Heo3a397462006-02-10 23:58:48 +09002758 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002759 if (!ap->ops->error_handler) {
2760 /* FIXME: hack. create a hook instead */
2761 if (ap->ioaddr.ctl_addr)
2762 ata_irq_on(ap);
2763 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002764
2765 /* is double-select really necessary? */
2766 if (classes[0] != ATA_DEV_NONE)
2767 ap->ops->dev_select(ap, 1);
2768 if (classes[1] != ATA_DEV_NONE)
2769 ap->ops->dev_select(ap, 0);
2770
Tejun Heo3a397462006-02-10 23:58:48 +09002771 /* bail out if no device is present */
2772 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2773 DPRINTK("EXIT, no device\n");
2774 return;
2775 }
2776
2777 /* set up device control */
2778 if (ap->ioaddr.ctl_addr) {
2779 if (ap->flags & ATA_FLAG_MMIO)
2780 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2781 else
2782 outb(ap->ctl, ap->ioaddr.ctl_addr);
2783 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002784
2785 DPRINTK("EXIT\n");
2786}
2787
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002788/**
Tejun Heo623a3122006-03-05 17:55:58 +09002789 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002790 * @dev: device to compare against
2791 * @new_class: class of the new device
2792 * @new_id: IDENTIFY page of the new device
2793 *
2794 * Compare @new_class and @new_id against @dev and determine
2795 * whether @dev is the device indicated by @new_class and
2796 * @new_id.
2797 *
2798 * LOCKING:
2799 * None.
2800 *
2801 * RETURNS:
2802 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2803 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002804static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2805 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002806{
2807 const u16 *old_id = dev->id;
2808 unsigned char model[2][41], serial[2][21];
2809 u64 new_n_sectors;
2810
2811 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002812 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2813 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002814 return 0;
2815 }
2816
2817 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2818 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2819 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2820 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2821 new_n_sectors = ata_id_n_sectors(new_id);
2822
2823 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002824 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2825 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002826 return 0;
2827 }
2828
2829 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002830 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2831 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002832 return 0;
2833 }
2834
2835 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002836 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2837 "%llu != %llu\n",
2838 (unsigned long long)dev->n_sectors,
2839 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002840 return 0;
2841 }
2842
2843 return 1;
2844}
2845
2846/**
2847 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002848 * @dev: device to revalidate
2849 * @post_reset: is this revalidation after reset?
2850 *
2851 * Re-read IDENTIFY page and make sure @dev is still attached to
2852 * the port.
2853 *
2854 * LOCKING:
2855 * Kernel thread context (may sleep)
2856 *
2857 * RETURNS:
2858 * 0 on success, negative errno otherwise
2859 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002860int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002861{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002862 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002863 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002864 int rc;
2865
Tejun Heo5eb45c02006-04-02 18:51:52 +09002866 if (!ata_dev_enabled(dev)) {
2867 rc = -ENODEV;
2868 goto fail;
2869 }
Tejun Heo623a3122006-03-05 17:55:58 +09002870
Tejun Heofe635c72006-05-15 20:57:35 +09002871 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002872 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002873 if (rc)
2874 goto fail;
2875
2876 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002877 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002878 rc = -ENODEV;
2879 goto fail;
2880 }
2881
Tejun Heofe635c72006-05-15 20:57:35 +09002882 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002883
2884 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002885 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002886 if (rc == 0)
2887 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002888
2889 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002890 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002891 return rc;
2892}
2893
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002894static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002895 "WDC AC11000H", NULL,
2896 "WDC AC22100H", NULL,
2897 "WDC AC32500H", NULL,
2898 "WDC AC33100H", NULL,
2899 "WDC AC31600H", NULL,
2900 "WDC AC32100H", "24.09P07",
2901 "WDC AC23200L", "21.10N21",
2902 "Compaq CRD-8241B", NULL,
2903 "CRD-8400B", NULL,
2904 "CRD-8480B", NULL,
2905 "CRD-8482B", NULL,
2906 "CRD-84", NULL,
2907 "SanDisk SDP3B", NULL,
2908 "SanDisk SDP3B-64", NULL,
2909 "SANYO CD-ROM CRD", NULL,
2910 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002911 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002912 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002913 "Toshiba CD-ROM XM-6202B", NULL,
2914 "TOSHIBA CD-ROM XM-1702BC", NULL,
2915 "CD-532E-A", NULL,
2916 "E-IDE CD-ROM CR-840", NULL,
2917 "CD-ROM Drive/F5A", NULL,
2918 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002919 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002920 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002921 "SanDisk SDP3B-64", NULL,
2922 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2923 "_NEC DV5800A", NULL,
2924 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002926
Alan Coxf4b15fe2006-03-22 15:54:04 +00002927static int ata_strim(char *s, size_t len)
2928{
2929 len = strnlen(s, len);
2930
2931 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2932 while ((len > 0) && (s[len - 1] == ' ')) {
2933 len--;
2934 s[len] = 0;
2935 }
2936 return len;
2937}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Jeff Garzik057ace52005-10-22 14:27:05 -04002939static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002941 unsigned char model_num[40];
2942 unsigned char model_rev[16];
2943 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 int i;
2945
Albert Lee3a778272006-06-22 13:00:25 +08002946 /* We don't support polling DMA.
2947 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
2948 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
2949 */
2950 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
2951 (dev->flags & ATA_DFLAG_CDB_INTR))
2952 return 1;
2953
Alan Coxf4b15fe2006-03-22 15:54:04 +00002954 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2955 sizeof(model_num));
2956 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2957 sizeof(model_rev));
2958 nlen = ata_strim(model_num, sizeof(model_num));
2959 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Alan Coxf4b15fe2006-03-22 15:54:04 +00002961 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2962 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2963 if (ata_dma_blacklist[i+1] == NULL)
2964 return 1;
2965 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2966 return 1;
2967 }
2968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 return 0;
2970}
2971
Tejun Heoa6d5a512006-03-06 04:31:57 +09002972/**
2973 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09002974 * @dev: Device to compute xfermask for
2975 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002976 * Compute supported xfermask of @dev and store it in
2977 * dev->*_mask. This function is responsible for applying all
2978 * known limits including host controller limits, device
2979 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002980 *
Tejun Heo600511e2006-03-25 11:14:07 +09002981 * FIXME: The current implementation limits all transfer modes to
2982 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002983 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002984 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09002985 * LOCKING:
2986 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002987 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002988static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Tejun Heo3373efd2006-05-15 20:57:53 +09002990 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002991 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002992 unsigned long xfer_mask;
2993 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Tejun Heo565083e2006-04-02 17:54:47 +09002995 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2996 ap->mwdma_mask, ap->udma_mask);
2997
2998 /* Apply cable rule here. Don't apply it early because when
2999 * we handle hot plug the cable type can itself change.
3000 */
3001 if (ap->cbl == ATA_CBL_PATA40)
3002 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Alan Cox5444a6f2006-03-27 18:58:20 +01003004 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09003005 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3006 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09003007
3008 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003009 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09003010
3011 if (ata_dev_disabled(d)) {
3012 /* to avoid violating device selection timing */
3013 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3014 UINT_MAX, UINT_MAX);
3015 continue;
3016 }
3017
3018 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3019 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003020 xfer_mask &= ata_id_xfermask(d->id);
3021 if (ata_dma_blacklisted(d))
3022 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 }
3024
Tejun Heoa6d5a512006-03-06 04:31:57 +09003025 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003026 ata_dev_printk(dev, KERN_WARNING,
3027 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003028
Alan Cox5444a6f2006-03-27 18:58:20 +01003029 if (hs->flags & ATA_HOST_SIMPLEX) {
3030 if (hs->simplex_claimed)
3031 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3032 }
Tejun Heo565083e2006-04-02 17:54:47 +09003033
Alan Cox5444a6f2006-03-27 18:58:20 +01003034 if (ap->ops->mode_filter)
3035 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3036
Tejun Heo565083e2006-04-02 17:54:47 +09003037 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3038 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039}
3040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 * @dev: Device to which command will be sent
3044 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003045 * Issue SET FEATURES - XFER MODE command to device @dev
3046 * on port @ap.
3047 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003049 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003050 *
3051 * RETURNS:
3052 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 */
3054
Tejun Heo3373efd2006-05-15 20:57:53 +09003055static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056{
Tejun Heoa0123702005-12-13 14:49:31 +09003057 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003058 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060 /* set up set-features taskfile */
3061 DPRINTK("set features - xfer mode\n");
3062
Tejun Heo3373efd2006-05-15 20:57:53 +09003063 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003064 tf.command = ATA_CMD_SET_FEATURES;
3065 tf.feature = SETFEATURES_XFER;
3066 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3067 tf.protocol = ATA_PROT_NODATA;
3068 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Tejun Heo3373efd2006-05-15 20:57:53 +09003070 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Tejun Heo83206a22006-03-24 15:25:31 +09003072 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3073 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074}
3075
3076/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003077 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003078 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003079 * @heads: Number of heads (taskfile parameter)
3080 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003081 *
3082 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003083 * Kernel thread context (may sleep)
3084 *
3085 * RETURNS:
3086 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003087 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003088static unsigned int ata_dev_init_params(struct ata_device *dev,
3089 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003090{
Tejun Heoa0123702005-12-13 14:49:31 +09003091 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003092 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003093
3094 /* Number of sectors per track 1-255. Number of heads 1-16 */
3095 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003096 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003097
3098 /* set up init dev params taskfile */
3099 DPRINTK("init dev params \n");
3100
Tejun Heo3373efd2006-05-15 20:57:53 +09003101 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003102 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3103 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3104 tf.protocol = ATA_PROT_NODATA;
3105 tf.nsect = sectors;
3106 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003107
Tejun Heo3373efd2006-05-15 20:57:53 +09003108 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003109
Tejun Heo6aff8f12006-02-15 18:24:09 +09003110 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3111 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003112}
3113
3114/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003115 * ata_sg_clean - Unmap DMA memory associated with command
3116 * @qc: Command containing DMA memory to be released
3117 *
3118 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 *
3120 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003121 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 */
3123
3124static void ata_sg_clean(struct ata_queued_cmd *qc)
3125{
3126 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003127 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003129 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Tejun Heoa46314742006-02-11 19:11:13 +09003131 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3132 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
3134 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003135 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003137 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003139 /* if we padded the buffer out to 32-bit bound, and data
3140 * xfer direction is from-device, we must copy from the
3141 * pad buffer back into the supplied buffer
3142 */
3143 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3144 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3145
3146 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003147 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003148 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003149 /* restore last sg */
3150 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3151 if (pad_buf) {
3152 struct scatterlist *psg = &qc->pad_sgent;
3153 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3154 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003155 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003156 }
3157 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003158 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003159 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003160 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3161 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003162 /* restore sg */
3163 sg->length += qc->pad_len;
3164 if (pad_buf)
3165 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3166 pad_buf, qc->pad_len);
3167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
3169 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003170 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171}
3172
3173/**
3174 * ata_fill_sg - Fill PCI IDE PRD table
3175 * @qc: Metadata associated with taskfile to be transferred
3176 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003177 * Fill PCI IDE PRD (scatter-gather) table with segments
3178 * associated with the current disk command.
3179 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003181 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 *
3183 */
3184static void ata_fill_sg(struct ata_queued_cmd *qc)
3185{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003187 struct scatterlist *sg;
3188 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Tejun Heoa46314742006-02-11 19:11:13 +09003190 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003191 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
3193 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003194 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 u32 addr, offset;
3196 u32 sg_len, len;
3197
3198 /* determine if physical DMA addr spans 64K boundary.
3199 * Note h/w doesn't support 64-bit, so we unconditionally
3200 * truncate dma_addr_t to u32.
3201 */
3202 addr = (u32) sg_dma_address(sg);
3203 sg_len = sg_dma_len(sg);
3204
3205 while (sg_len) {
3206 offset = addr & 0xffff;
3207 len = sg_len;
3208 if ((offset + sg_len) > 0x10000)
3209 len = 0x10000 - offset;
3210
3211 ap->prd[idx].addr = cpu_to_le32(addr);
3212 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3213 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3214
3215 idx++;
3216 sg_len -= len;
3217 addr += len;
3218 }
3219 }
3220
3221 if (idx)
3222 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3223}
3224/**
3225 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3226 * @qc: Metadata associated with taskfile to check
3227 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003228 * Allow low-level driver to filter ATA PACKET commands, returning
3229 * a status indicating whether or not it is OK to use DMA for the
3230 * supplied PACKET command.
3231 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003233 * spin_lock_irqsave(host_set lock)
3234 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 * RETURNS: 0 when ATAPI DMA can be used
3236 * nonzero otherwise
3237 */
3238int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3239{
3240 struct ata_port *ap = qc->ap;
3241 int rc = 0; /* Assume ATAPI DMA is OK by default */
3242
3243 if (ap->ops->check_atapi_dma)
3244 rc = ap->ops->check_atapi_dma(qc);
3245
3246 return rc;
3247}
3248/**
3249 * ata_qc_prep - Prepare taskfile for submission
3250 * @qc: Metadata associated with taskfile to be prepared
3251 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003252 * Prepare ATA taskfile for submission.
3253 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 * LOCKING:
3255 * spin_lock_irqsave(host_set lock)
3256 */
3257void ata_qc_prep(struct ata_queued_cmd *qc)
3258{
3259 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3260 return;
3261
3262 ata_fill_sg(qc);
3263}
3264
Brian Kinge46834c2006-03-17 17:04:03 -06003265void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3266
Jeff Garzik0cba6322005-05-30 19:49:12 -04003267/**
3268 * ata_sg_init_one - Associate command with memory buffer
3269 * @qc: Command to be associated
3270 * @buf: Memory buffer
3271 * @buflen: Length of memory buffer, in bytes.
3272 *
3273 * Initialize the data-related elements of queued_cmd @qc
3274 * to point to a single memory buffer, @buf of byte length @buflen.
3275 *
3276 * LOCKING:
3277 * spin_lock_irqsave(host_set lock)
3278 */
3279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3281{
3282 struct scatterlist *sg;
3283
3284 qc->flags |= ATA_QCFLAG_SINGLE;
3285
3286 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003287 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003289 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05003291 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003293 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003294 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295}
3296
Jeff Garzik0cba6322005-05-30 19:49:12 -04003297/**
3298 * ata_sg_init - Associate command with scatter-gather table.
3299 * @qc: Command to be associated
3300 * @sg: Scatter-gather table.
3301 * @n_elem: Number of elements in s/g table.
3302 *
3303 * Initialize the data-related elements of queued_cmd @qc
3304 * to point to a scatter-gather table @sg, containing @n_elem
3305 * elements.
3306 *
3307 * LOCKING:
3308 * spin_lock_irqsave(host_set lock)
3309 */
3310
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3312 unsigned int n_elem)
3313{
3314 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003315 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003317 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318}
3319
3320/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003321 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3322 * @qc: Command with memory buffer to be mapped.
3323 *
3324 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 *
3326 * LOCKING:
3327 * spin_lock_irqsave(host_set lock)
3328 *
3329 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003330 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 */
3332
3333static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3334{
3335 struct ata_port *ap = qc->ap;
3336 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003337 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003339 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003341 /* we must lengthen transfers to end on a 32-bit boundary */
3342 qc->pad_len = sg->length & 3;
3343 if (qc->pad_len) {
3344 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3345 struct scatterlist *psg = &qc->pad_sgent;
3346
Tejun Heoa46314742006-02-11 19:11:13 +09003347 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003348
3349 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3350
3351 if (qc->tf.flags & ATA_TFLAG_WRITE)
3352 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3353 qc->pad_len);
3354
3355 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3356 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3357 /* trim sg */
3358 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003359 if (sg->length == 0)
3360 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003361
3362 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3363 sg->length, qc->pad_len);
3364 }
3365
Tejun Heo2e242fa2006-02-20 23:48:38 +09003366 if (trim_sg) {
3367 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003368 goto skip_map;
3369 }
3370
Brian King2f1f6102006-03-23 17:30:15 -06003371 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003372 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003373 if (dma_mapping_error(dma_address)) {
3374 /* restore sg */
3375 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
3379 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003380 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Tejun Heo2e242fa2006-02-20 23:48:38 +09003382skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3384 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3385
3386 return 0;
3387}
3388
3389/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003390 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3391 * @qc: Command with scatter-gather table to be mapped.
3392 *
3393 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 *
3395 * LOCKING:
3396 * spin_lock_irqsave(host_set lock)
3397 *
3398 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003399 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 *
3401 */
3402
3403static int ata_sg_setup(struct ata_queued_cmd *qc)
3404{
3405 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003406 struct scatterlist *sg = qc->__sg;
3407 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003408 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
3410 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa46314742006-02-11 19:11:13 +09003411 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003413 /* we must lengthen transfers to end on a 32-bit boundary */
3414 qc->pad_len = lsg->length & 3;
3415 if (qc->pad_len) {
3416 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3417 struct scatterlist *psg = &qc->pad_sgent;
3418 unsigned int offset;
3419
Tejun Heoa46314742006-02-11 19:11:13 +09003420 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003421
3422 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3423
3424 /*
3425 * psg->page/offset are used to copy to-be-written
3426 * data in this function or read data in ata_sg_clean.
3427 */
3428 offset = lsg->offset + lsg->length - qc->pad_len;
3429 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3430 psg->offset = offset_in_page(offset);
3431
3432 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3433 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3434 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003435 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003436 }
3437
3438 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3439 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3440 /* trim last sg */
3441 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003442 if (lsg->length == 0)
3443 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003444
3445 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3446 qc->n_elem - 1, lsg->length, qc->pad_len);
3447 }
3448
Jeff Garzike1410f22005-11-14 14:06:26 -05003449 pre_n_elem = qc->n_elem;
3450 if (trim_sg && pre_n_elem)
3451 pre_n_elem--;
3452
3453 if (!pre_n_elem) {
3454 n_elem = 0;
3455 goto skip_map;
3456 }
3457
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003459 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003460 if (n_elem < 1) {
3461 /* restore last sg */
3462 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466 DPRINTK("%d sg elements mapped\n", n_elem);
3467
Jeff Garzike1410f22005-11-14 14:06:26 -05003468skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 qc->n_elem = n_elem;
3470
3471 return 0;
3472}
3473
3474/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003475 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003476 * @buf: Buffer to swap
3477 * @buf_words: Number of 16-bit words in buffer.
3478 *
3479 * Swap halves of 16-bit words if needed to convert from
3480 * little-endian byte order to native cpu byte order, or
3481 * vice-versa.
3482 *
3483 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003484 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003485 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486void swap_buf_le16(u16 *buf, unsigned int buf_words)
3487{
3488#ifdef __BIG_ENDIAN
3489 unsigned int i;
3490
3491 for (i = 0; i < buf_words; i++)
3492 buf[i] = le16_to_cpu(buf[i]);
3493#endif /* __BIG_ENDIAN */
3494}
3495
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003496/**
3497 * ata_mmio_data_xfer - Transfer data by MMIO
Jeff Garzikbf717b112006-06-13 20:27:03 -04003498 * @adev: device for this I/O
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003499 * @buf: data buffer
3500 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003501 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003502 *
3503 * Transfer data from/to the device data register by MMIO.
3504 *
3505 * LOCKING:
3506 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003507 */
3508
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003509void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
3510 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003512 struct ata_port *ap = adev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 unsigned int i;
3514 unsigned int words = buflen >> 1;
3515 u16 *buf16 = (u16 *) buf;
3516 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3517
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003518 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 if (write_data) {
3520 for (i = 0; i < words; i++)
3521 writew(le16_to_cpu(buf16[i]), mmio);
3522 } else {
3523 for (i = 0; i < words; i++)
3524 buf16[i] = cpu_to_le16(readw(mmio));
3525 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003526
3527 /* Transfer trailing 1 byte, if any. */
3528 if (unlikely(buflen & 0x01)) {
3529 u16 align_buf[1] = { 0 };
3530 unsigned char *trailing_buf = buf + buflen - 1;
3531
3532 if (write_data) {
3533 memcpy(align_buf, trailing_buf, 1);
3534 writew(le16_to_cpu(align_buf[0]), mmio);
3535 } else {
3536 align_buf[0] = cpu_to_le16(readw(mmio));
3537 memcpy(trailing_buf, align_buf, 1);
3538 }
3539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540}
3541
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003542/**
3543 * ata_pio_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003544 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003545 * @buf: data buffer
3546 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003547 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003548 *
3549 * Transfer data from/to the device data register by PIO.
3550 *
3551 * LOCKING:
3552 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003553 */
3554
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003555void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf,
3556 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003558 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003559 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003561 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003563 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003565 insw(ap->ioaddr.data_addr, buf, words);
3566
3567 /* Transfer trailing 1 byte, if any. */
3568 if (unlikely(buflen & 0x01)) {
3569 u16 align_buf[1] = { 0 };
3570 unsigned char *trailing_buf = buf + buflen - 1;
3571
3572 if (write_data) {
3573 memcpy(align_buf, trailing_buf, 1);
3574 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3575 } else {
3576 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3577 memcpy(trailing_buf, align_buf, 1);
3578 }
3579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580}
3581
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003582/**
Alan Cox75e99582006-05-24 14:14:41 +01003583 * ata_pio_data_xfer_noirq - Transfer data by PIO
3584 * @adev: device to target
3585 * @buf: data buffer
3586 * @buflen: buffer length
3587 * @write_data: read/write
3588 *
3589 * Transfer data from/to the device data register by PIO. Do the
3590 * transfer with interrupts disabled.
3591 *
3592 * LOCKING:
3593 * Inherited from caller.
3594 */
3595
3596void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3597 unsigned int buflen, int write_data)
3598{
3599 unsigned long flags;
3600 local_irq_save(flags);
3601 ata_pio_data_xfer(adev, buf, buflen, write_data);
3602 local_irq_restore(flags);
3603}
3604
3605
3606/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003607 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3608 * @qc: Command on going
3609 *
3610 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3611 *
3612 * LOCKING:
3613 * Inherited from caller.
3614 */
3615
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616static void ata_pio_sector(struct ata_queued_cmd *qc)
3617{
3618 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003619 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 struct ata_port *ap = qc->ap;
3621 struct page *page;
3622 unsigned int offset;
3623 unsigned char *buf;
3624
3625 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003626 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
3628 page = sg[qc->cursg].page;
3629 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3630
3631 /* get the current page and offset */
3632 page = nth_page(page, (offset >> PAGE_SHIFT));
3633 offset %= PAGE_SIZE;
3634
Albert Lee7282aa42005-10-09 09:46:07 -04003635 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3636
Albert Lee91b8b312005-10-09 09:48:44 -04003637 if (PageHighMem(page)) {
3638 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003639
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003640 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003641 local_irq_save(flags);
3642 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003643
Albert Lee91b8b312005-10-09 09:48:44 -04003644 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003645 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003646
3647 kunmap_atomic(buf, KM_IRQ0);
3648 local_irq_restore(flags);
3649 } else {
3650 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003651 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
3654 qc->cursect++;
3655 qc->cursg_ofs++;
3656
Albert Lee32529e02005-05-26 03:49:42 -04003657 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 qc->cursg++;
3659 qc->cursg_ofs = 0;
3660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003663/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003664 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3665 * @qc: Command on going
3666 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003667 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003668 * ATA device for the DRQ request.
3669 *
3670 * LOCKING:
3671 * Inherited from caller.
3672 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Albert Lee07f6f7d2005-11-01 19:33:20 +08003674static void ata_pio_sectors(struct ata_queued_cmd *qc)
3675{
3676 if (is_multi_taskfile(&qc->tf)) {
3677 /* READ/WRITE MULTIPLE */
3678 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
Jeff Garzik587005d2006-02-11 18:17:32 -05003680 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003681
3682 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3683 while (nsect--)
3684 ata_pio_sector(qc);
3685 } else
3686 ata_pio_sector(qc);
3687}
3688
3689/**
Albert Leec71c1852005-10-04 06:03:45 -04003690 * atapi_send_cdb - Write CDB bytes to hardware
3691 * @ap: Port to which ATAPI device is attached.
3692 * @qc: Taskfile currently active
3693 *
3694 * When device has indicated its readiness to accept
3695 * a CDB, this function is called. Send the CDB.
3696 *
3697 * LOCKING:
3698 * caller.
3699 */
3700
3701static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3702{
3703 /* send SCSI cdb */
3704 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003705 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003706
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003707 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003708 ata_altstatus(ap); /* flush */
3709
3710 switch (qc->tf.protocol) {
3711 case ATA_PROT_ATAPI:
3712 ap->hsm_task_state = HSM_ST;
3713 break;
3714 case ATA_PROT_ATAPI_NODATA:
3715 ap->hsm_task_state = HSM_ST_LAST;
3716 break;
3717 case ATA_PROT_ATAPI_DMA:
3718 ap->hsm_task_state = HSM_ST_LAST;
3719 /* initiate bmdma */
3720 ap->ops->bmdma_start(qc);
3721 break;
3722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723}
3724
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003725/**
3726 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3727 * @qc: Command on going
3728 * @bytes: number of bytes
3729 *
3730 * Transfer Transfer data from/to the ATAPI device.
3731 *
3732 * LOCKING:
3733 * Inherited from caller.
3734 *
3735 */
3736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3738{
3739 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003740 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 struct ata_port *ap = qc->ap;
3742 struct page *page;
3743 unsigned char *buf;
3744 unsigned int offset, count;
3745
Albert Lee563a6e12005-08-12 14:17:50 +08003746 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003747 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
3749next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003750 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003751 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003752 * The end of qc->sg is reached and the device expects
3753 * more data to transfer. In order not to overrun qc->sg
3754 * and fulfill length specified in the byte count register,
3755 * - for read case, discard trailing data from the device
3756 * - for write case, padding zero data to the device
3757 */
3758 u16 pad_buf[1] = { 0 };
3759 unsigned int words = bytes >> 1;
3760 unsigned int i;
3761
3762 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003763 ata_dev_printk(qc->dev, KERN_WARNING,
3764 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003765
3766 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003767 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08003768
Albert Lee14be71f2005-09-27 17:36:35 +08003769 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003770 return;
3771 }
3772
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003773 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 page = sg->page;
3776 offset = sg->offset + qc->cursg_ofs;
3777
3778 /* get the current page and offset */
3779 page = nth_page(page, (offset >> PAGE_SHIFT));
3780 offset %= PAGE_SIZE;
3781
Albert Lee6952df02005-06-06 15:56:03 +08003782 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003783 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 /* don't cross page boundaries */
3786 count = min(count, (unsigned int)PAGE_SIZE - offset);
3787
Albert Lee7282aa42005-10-09 09:46:07 -04003788 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3789
Albert Lee91b8b312005-10-09 09:48:44 -04003790 if (PageHighMem(page)) {
3791 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003792
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003793 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003794 local_irq_save(flags);
3795 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003796
Albert Lee91b8b312005-10-09 09:48:44 -04003797 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003798 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003799
3800 kunmap_atomic(buf, KM_IRQ0);
3801 local_irq_restore(flags);
3802 } else {
3803 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003804 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
3807 bytes -= count;
3808 qc->curbytes += count;
3809 qc->cursg_ofs += count;
3810
Albert Lee32529e02005-05-26 03:49:42 -04003811 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 qc->cursg++;
3813 qc->cursg_ofs = 0;
3814 }
3815
Albert Lee563a6e12005-08-12 14:17:50 +08003816 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818}
3819
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003820/**
3821 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3822 * @qc: Command on going
3823 *
3824 * Transfer Transfer data from/to the ATAPI device.
3825 *
3826 * LOCKING:
3827 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003828 */
3829
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3831{
3832 struct ata_port *ap = qc->ap;
3833 struct ata_device *dev = qc->dev;
3834 unsigned int ireason, bc_lo, bc_hi, bytes;
3835 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3836
Albert Leeeec4c3f2006-05-18 17:51:10 +08003837 /* Abuse qc->result_tf for temp storage of intermediate TF
3838 * here to save some kernel stack usage.
3839 * For normal completion, qc->result_tf is not relevant. For
3840 * error, qc->result_tf is later overwritten by ata_qc_complete().
3841 * So, the correctness of qc->result_tf is not affected.
3842 */
3843 ap->ops->tf_read(ap, &qc->result_tf);
3844 ireason = qc->result_tf.nsect;
3845 bc_lo = qc->result_tf.lbam;
3846 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 bytes = (bc_hi << 8) | bc_lo;
3848
3849 /* shall be cleared to zero, indicating xfer of data */
3850 if (ireason & (1 << 0))
3851 goto err_out;
3852
3853 /* make sure transfer direction matches expected */
3854 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3855 if (do_write != i_write)
3856 goto err_out;
3857
Albert Lee312f7da2005-09-27 17:38:03 +08003858 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3859
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 __atapi_pio_bytes(qc, bytes);
3861
3862 return;
3863
3864err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003865 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003866 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003867 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868}
3869
3870/**
Albert Leec234fb02006-03-25 17:58:38 +08003871 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3872 * @ap: the target ata_port
3873 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 *
Albert Leec234fb02006-03-25 17:58:38 +08003875 * RETURNS:
3876 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 */
Albert Leec234fb02006-03-25 17:58:38 +08003878
3879static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880{
Albert Leec234fb02006-03-25 17:58:38 +08003881 if (qc->tf.flags & ATA_TFLAG_POLLING)
3882 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
Albert Leec234fb02006-03-25 17:58:38 +08003884 if (ap->hsm_task_state == HSM_ST_FIRST) {
3885 if (qc->tf.protocol == ATA_PROT_PIO &&
3886 (qc->tf.flags & ATA_TFLAG_WRITE))
3887 return 1;
3888
3889 if (is_atapi_taskfile(&qc->tf) &&
3890 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3891 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 }
3893
Albert Leec234fb02006-03-25 17:58:38 +08003894 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895}
3896
Albert Leec234fb02006-03-25 17:58:38 +08003897/**
Tejun Heoc17ea202006-05-15 20:59:29 +09003898 * ata_hsm_qc_complete - finish a qc running on standard HSM
3899 * @qc: Command to complete
3900 * @in_wq: 1 if called from workqueue, 0 otherwise
3901 *
3902 * Finish @qc which is running on standard HSM.
3903 *
3904 * LOCKING:
3905 * If @in_wq is zero, spin_lock_irqsave(host_set lock).
3906 * Otherwise, none on entry and grabs host lock.
3907 */
3908static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
3909{
3910 struct ata_port *ap = qc->ap;
3911 unsigned long flags;
3912
3913 if (ap->ops->error_handler) {
3914 if (in_wq) {
3915 spin_lock_irqsave(&ap->host_set->lock, flags);
3916
3917 /* EH might have kicked in while host_set lock
3918 * is released.
3919 */
3920 qc = ata_qc_from_tag(ap, qc->tag);
3921 if (qc) {
3922 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
3923 ata_irq_on(ap);
3924 ata_qc_complete(qc);
3925 } else
3926 ata_port_freeze(ap);
3927 }
3928
3929 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3930 } else {
3931 if (likely(!(qc->err_mask & AC_ERR_HSM)))
3932 ata_qc_complete(qc);
3933 else
3934 ata_port_freeze(ap);
3935 }
3936 } else {
3937 if (in_wq) {
3938 spin_lock_irqsave(&ap->host_set->lock, flags);
3939 ata_irq_on(ap);
3940 ata_qc_complete(qc);
3941 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3942 } else
3943 ata_qc_complete(qc);
3944 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003945
3946 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09003947}
3948
3949/**
Albert Leebb5cb292006-03-25 17:48:02 +08003950 * ata_hsm_move - move the HSM to the next state.
3951 * @ap: the target ata_port
3952 * @qc: qc on going
3953 * @status: current device status
3954 * @in_wq: 1 if called from workqueue, 0 otherwise
3955 *
3956 * RETURNS:
3957 * 1 when poll next status needed, 0 otherwise.
3958 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09003959int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
3960 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961{
Albert Leebb5cb292006-03-25 17:48:02 +08003962 unsigned long flags = 0;
3963 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Albert Lee6912ccd2006-03-25 17:45:49 +08003965 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08003966
Albert Leebb5cb292006-03-25 17:48:02 +08003967 /* Make sure ata_qc_issue_prot() does not throw things
3968 * like DMA polling into the workqueue. Notice that
3969 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08003970 */
Albert Leec234fb02006-03-25 17:58:38 +08003971 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08003972
Albert Leee2cec772006-03-25 17:43:49 +08003973fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08003974 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
3975 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
Albert Leee2cec772006-03-25 17:43:49 +08003977 switch (ap->hsm_task_state) {
3978 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08003979 /* Send first data block or PACKET CDB */
3980
3981 /* If polling, we will stay in the work queue after
3982 * sending the data. Otherwise, interrupt handler
3983 * takes over after sending the data.
3984 */
3985 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
3986
Albert Leee2cec772006-03-25 17:43:49 +08003987 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08003988 if (unlikely((status & ATA_DRQ) == 0)) {
3989 /* handle BSY=0, DRQ=0 as error */
3990 if (likely(status & (ATA_ERR | ATA_DF)))
3991 /* device stops HSM for abort/error */
3992 qc->err_mask |= AC_ERR_DEV;
3993 else
3994 /* HSM violation. Let EH handle this */
3995 qc->err_mask |= AC_ERR_HSM;
3996
Albert Leee2cec772006-03-25 17:43:49 +08003997 ap->hsm_task_state = HSM_ST_ERR;
3998 goto fsm_start;
3999 }
4000
Albert Lee71601952006-03-25 18:11:12 +08004001 /* Device should not ask for data transfer (DRQ=1)
4002 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004003 * We ignore DRQ here and stop the HSM by
4004 * changing hsm_task_state to HSM_ST_ERR and
4005 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004006 */
4007 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4008 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4009 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004010 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004011 ap->hsm_task_state = HSM_ST_ERR;
4012 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004013 }
4014
Albert Leebb5cb292006-03-25 17:48:02 +08004015 /* Send the CDB (atapi) or the first data block (ata pio out).
4016 * During the state transition, interrupt handler shouldn't
4017 * be invoked before the data transfer is complete and
4018 * hsm_task_state is changed. Hence, the following locking.
4019 */
4020 if (in_wq)
4021 spin_lock_irqsave(&ap->host_set->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004022
Albert Leebb5cb292006-03-25 17:48:02 +08004023 if (qc->tf.protocol == ATA_PROT_PIO) {
4024 /* PIO data out protocol.
4025 * send first data block.
4026 */
4027
4028 /* ata_pio_sectors() might change the state
4029 * to HSM_ST_LAST. so, the state is changed here
4030 * before ata_pio_sectors().
4031 */
4032 ap->hsm_task_state = HSM_ST;
4033 ata_pio_sectors(qc);
4034 ata_altstatus(ap); /* flush */
4035 } else
4036 /* send CDB */
4037 atapi_send_cdb(ap, qc);
4038
4039 if (in_wq)
4040 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4041
4042 /* if polling, ata_pio_task() handles the rest.
4043 * otherwise, interrupt handler takes over from here.
4044 */
Albert Leee2cec772006-03-25 17:43:49 +08004045 break;
4046
4047 case HSM_ST:
4048 /* complete command or read/write the data register */
4049 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4050 /* ATAPI PIO protocol */
4051 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004052 /* No more data to transfer or device error.
4053 * Device error will be tagged in HSM_ST_LAST.
4054 */
Albert Leee2cec772006-03-25 17:43:49 +08004055 ap->hsm_task_state = HSM_ST_LAST;
4056 goto fsm_start;
4057 }
4058
Albert Lee71601952006-03-25 18:11:12 +08004059 /* Device should not ask for data transfer (DRQ=1)
4060 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004061 * We ignore DRQ here and stop the HSM by
4062 * changing hsm_task_state to HSM_ST_ERR and
4063 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004064 */
4065 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4066 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4067 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004068 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004069 ap->hsm_task_state = HSM_ST_ERR;
4070 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004071 }
4072
Albert Leee2cec772006-03-25 17:43:49 +08004073 atapi_pio_bytes(qc);
4074
4075 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4076 /* bad ireason reported by device */
4077 goto fsm_start;
4078
4079 } else {
4080 /* ATA PIO protocol */
4081 if (unlikely((status & ATA_DRQ) == 0)) {
4082 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004083 if (likely(status & (ATA_ERR | ATA_DF)))
4084 /* device stops HSM for abort/error */
4085 qc->err_mask |= AC_ERR_DEV;
4086 else
4087 /* HSM violation. Let EH handle this */
4088 qc->err_mask |= AC_ERR_HSM;
4089
Albert Leee2cec772006-03-25 17:43:49 +08004090 ap->hsm_task_state = HSM_ST_ERR;
4091 goto fsm_start;
4092 }
4093
Albert Leeeee6c322006-04-01 17:38:43 +08004094 /* For PIO reads, some devices may ask for
4095 * data transfer (DRQ=1) alone with ERR=1.
4096 * We respect DRQ here and transfer one
4097 * block of junk data before changing the
4098 * hsm_task_state to HSM_ST_ERR.
4099 *
4100 * For PIO writes, ERR=1 DRQ=1 doesn't make
4101 * sense since the data block has been
4102 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004103 */
4104 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004105 /* data might be corrputed */
4106 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004107
4108 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4109 ata_pio_sectors(qc);
4110 ata_altstatus(ap);
4111 status = ata_wait_idle(ap);
4112 }
4113
Albert Lee3655d1d2006-05-19 11:43:04 +08004114 if (status & (ATA_BUSY | ATA_DRQ))
4115 qc->err_mask |= AC_ERR_HSM;
4116
Albert Leeeee6c322006-04-01 17:38:43 +08004117 /* ata_pio_sectors() might change the
4118 * state to HSM_ST_LAST. so, the state
4119 * is changed after ata_pio_sectors().
4120 */
4121 ap->hsm_task_state = HSM_ST_ERR;
4122 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004123 }
4124
Albert Leee2cec772006-03-25 17:43:49 +08004125 ata_pio_sectors(qc);
4126
4127 if (ap->hsm_task_state == HSM_ST_LAST &&
4128 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4129 /* all data read */
4130 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004131 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004132 goto fsm_start;
4133 }
4134 }
4135
4136 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004137 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004138 break;
4139
4140 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004141 if (unlikely(!ata_ok(status))) {
4142 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004143 ap->hsm_task_state = HSM_ST_ERR;
4144 goto fsm_start;
4145 }
4146
4147 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004148 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4149 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004150
Albert Lee6912ccd2006-03-25 17:45:49 +08004151 WARN_ON(qc->err_mask);
4152
Albert Leee2cec772006-03-25 17:43:49 +08004153 ap->hsm_task_state = HSM_ST_IDLE;
4154
4155 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004156 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004157
4158 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004159 break;
4160
4161 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004162 /* make sure qc->err_mask is available to
4163 * know what's wrong and recover
4164 */
4165 WARN_ON(qc->err_mask == 0);
4166
4167 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004168
Albert Lee999bb6f2006-03-25 18:07:48 +08004169 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004170 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004171
4172 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004173 break;
4174 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004175 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004176 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004177 }
4178
Albert Leebb5cb292006-03-25 17:48:02 +08004179 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180}
4181
4182static void ata_pio_task(void *_data)
4183{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004184 struct ata_queued_cmd *qc = _data;
4185 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004186 u8 status;
4187 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004188
4189fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004190 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191
Albert Leea1af3732006-03-25 17:50:15 +08004192 /*
4193 * This is purely heuristic. This is a fast path.
4194 * Sometimes when we enter, BSY will be cleared in
4195 * a chk-status or two. If not, the drive is probably seeking
4196 * or something. Snooze for a couple msecs, then
4197 * chk-status again. If still busy, queue delayed work.
4198 */
4199 status = ata_busy_wait(ap, ATA_BUSY, 5);
4200 if (status & ATA_BUSY) {
4201 msleep(2);
4202 status = ata_busy_wait(ap, ATA_BUSY, 10);
4203 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004204 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004205 return;
4206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 }
4208
Albert Leea1af3732006-03-25 17:50:15 +08004209 /* move the HSM */
4210 poll_next = ata_hsm_move(ap, qc, status, 1);
4211
4212 /* another command or interrupt handler
4213 * may be running at this point.
4214 */
4215 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004216 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217}
4218
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 * ata_qc_new - Request an available ATA command, for queueing
4221 * @ap: Port associated with device @dev
4222 * @dev: Device from whom we request an available command structure
4223 *
4224 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004225 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 */
4227
4228static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4229{
4230 struct ata_queued_cmd *qc = NULL;
4231 unsigned int i;
4232
Tejun Heoe3180492006-05-15 20:58:09 +09004233 /* no command while frozen */
4234 if (unlikely(ap->flags & ATA_FLAG_FROZEN))
4235 return NULL;
4236
Tejun Heo2ab7db12006-05-15 20:58:02 +09004237 /* the last tag is reserved for internal command. */
4238 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004239 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004240 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 break;
4242 }
4243
4244 if (qc)
4245 qc->tag = i;
4246
4247 return qc;
4248}
4249
4250/**
4251 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 * @dev: Device from whom we request an available command structure
4253 *
4254 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004255 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 */
4257
Tejun Heo3373efd2006-05-15 20:57:53 +09004258struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259{
Tejun Heo3373efd2006-05-15 20:57:53 +09004260 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 struct ata_queued_cmd *qc;
4262
4263 qc = ata_qc_new(ap);
4264 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 qc->scsicmd = NULL;
4266 qc->ap = ap;
4267 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004269 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 }
4271
4272 return qc;
4273}
4274
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275/**
4276 * ata_qc_free - free unused ata_queued_cmd
4277 * @qc: Command to complete
4278 *
4279 * Designed to free unused ata_queued_cmd object
4280 * in case something prevents using it.
4281 *
4282 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004283 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 */
4285void ata_qc_free(struct ata_queued_cmd *qc)
4286{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004287 struct ata_port *ap = qc->ap;
4288 unsigned int tag;
4289
Tejun Heoa46314742006-02-11 19:11:13 +09004290 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291
Tejun Heo4ba946e2006-01-23 13:09:36 +09004292 qc->flags = 0;
4293 tag = qc->tag;
4294 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004295 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004296 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298}
4299
Tejun Heo76014422006-02-11 15:13:49 +09004300void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004302 struct ata_port *ap = qc->ap;
4303
Tejun Heoa46314742006-02-11 19:11:13 +09004304 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4305 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
4307 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4308 ata_sg_clean(qc);
4309
Tejun Heo7401abf2006-05-15 20:57:32 +09004310 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004311 if (qc->tf.protocol == ATA_PROT_NCQ)
4312 ap->sactive &= ~(1 << qc->tag);
4313 else
4314 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004315
Albert Lee3f3791d2005-08-16 14:25:38 +08004316 /* atapi: mark qc as inactive to prevent the interrupt handler
4317 * from completing the command twice later, before the error handler
4318 * is called. (when rc != 0 and atapi request sense is needed)
4319 */
4320 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004321 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004324 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325}
4326
Tejun Heof686bcb2006-05-15 20:58:05 +09004327/**
4328 * ata_qc_complete - Complete an active ATA command
4329 * @qc: Command to complete
4330 * @err_mask: ATA Status register contents
4331 *
4332 * Indicate to the mid and upper layers that an ATA
4333 * command has completed, with either an ok or not-ok status.
4334 *
4335 * LOCKING:
4336 * spin_lock_irqsave(host_set lock)
4337 */
4338void ata_qc_complete(struct ata_queued_cmd *qc)
4339{
4340 struct ata_port *ap = qc->ap;
4341
4342 /* XXX: New EH and old EH use different mechanisms to
4343 * synchronize EH with regular execution path.
4344 *
4345 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4346 * Normal execution path is responsible for not accessing a
4347 * failed qc. libata core enforces the rule by returning NULL
4348 * from ata_qc_from_tag() for failed qcs.
4349 *
4350 * Old EH depends on ata_qc_complete() nullifying completion
4351 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4352 * not synchronize with interrupt handler. Only PIO task is
4353 * taken care of.
4354 */
4355 if (ap->ops->error_handler) {
4356 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4357
4358 if (unlikely(qc->err_mask))
4359 qc->flags |= ATA_QCFLAG_FAILED;
4360
4361 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4362 if (!ata_tag_internal(qc->tag)) {
4363 /* always fill result TF for failed qc */
4364 ap->ops->tf_read(ap, &qc->result_tf);
4365 ata_qc_schedule_eh(qc);
4366 return;
4367 }
4368 }
4369
4370 /* read result TF if requested */
4371 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4372 ap->ops->tf_read(ap, &qc->result_tf);
4373
4374 __ata_qc_complete(qc);
4375 } else {
4376 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4377 return;
4378
4379 /* read result TF if failed or requested */
4380 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4381 ap->ops->tf_read(ap, &qc->result_tf);
4382
4383 __ata_qc_complete(qc);
4384 }
4385}
4386
Tejun Heodedaf2b2006-05-15 21:03:43 +09004387/**
4388 * ata_qc_complete_multiple - Complete multiple qcs successfully
4389 * @ap: port in question
4390 * @qc_active: new qc_active mask
4391 * @finish_qc: LLDD callback invoked before completing a qc
4392 *
4393 * Complete in-flight commands. This functions is meant to be
4394 * called from low-level driver's interrupt routine to complete
4395 * requests normally. ap->qc_active and @qc_active is compared
4396 * and commands are completed accordingly.
4397 *
4398 * LOCKING:
4399 * spin_lock_irqsave(host_set lock)
4400 *
4401 * RETURNS:
4402 * Number of completed commands on success, -errno otherwise.
4403 */
4404int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4405 void (*finish_qc)(struct ata_queued_cmd *))
4406{
4407 int nr_done = 0;
4408 u32 done_mask;
4409 int i;
4410
4411 done_mask = ap->qc_active ^ qc_active;
4412
4413 if (unlikely(done_mask & qc_active)) {
4414 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4415 "(%08x->%08x)\n", ap->qc_active, qc_active);
4416 return -EINVAL;
4417 }
4418
4419 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4420 struct ata_queued_cmd *qc;
4421
4422 if (!(done_mask & (1 << i)))
4423 continue;
4424
4425 if ((qc = ata_qc_from_tag(ap, i))) {
4426 if (finish_qc)
4427 finish_qc(qc);
4428 ata_qc_complete(qc);
4429 nr_done++;
4430 }
4431 }
4432
4433 return nr_done;
4434}
4435
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4437{
4438 struct ata_port *ap = qc->ap;
4439
4440 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004441 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 case ATA_PROT_DMA:
4443 case ATA_PROT_ATAPI_DMA:
4444 return 1;
4445
4446 case ATA_PROT_ATAPI:
4447 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 if (ap->flags & ATA_FLAG_PIO_DMA)
4449 return 1;
4450
4451 /* fall through */
4452
4453 default:
4454 return 0;
4455 }
4456
4457 /* never reached */
4458}
4459
4460/**
4461 * ata_qc_issue - issue taskfile to device
4462 * @qc: command to issue to device
4463 *
4464 * Prepare an ATA command to submission to device.
4465 * This includes mapping the data into a DMA-able
4466 * area, filling in the S/G table, and finally
4467 * writing the taskfile to hardware, starting the command.
4468 *
4469 * LOCKING:
4470 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004472void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473{
4474 struct ata_port *ap = qc->ap;
4475
Tejun Heodedaf2b2006-05-15 21:03:43 +09004476 /* Make sure only one non-NCQ command is outstanding. The
4477 * check is skipped for old EH because it reuses active qc to
4478 * request ATAPI sense.
4479 */
4480 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4481
4482 if (qc->tf.protocol == ATA_PROT_NCQ) {
4483 WARN_ON(ap->sactive & (1 << qc->tag));
4484 ap->sactive |= 1 << qc->tag;
4485 } else {
4486 WARN_ON(ap->sactive);
4487 ap->active_tag = qc->tag;
4488 }
4489
Tejun Heoe4a70e72006-03-31 20:36:47 +09004490 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004491 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004492
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 if (ata_should_dma_map(qc)) {
4494 if (qc->flags & ATA_QCFLAG_SG) {
4495 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004496 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4498 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004499 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 }
4501 } else {
4502 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4503 }
4504
4505 ap->ops->qc_prep(qc);
4506
Tejun Heo8e0e6942006-03-31 20:41:11 +09004507 qc->err_mask |= ap->ops->qc_issue(qc);
4508 if (unlikely(qc->err_mask))
4509 goto err;
4510 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
Tejun Heo8e436af2006-01-23 13:09:36 +09004512sg_err:
4513 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004514 qc->err_mask |= AC_ERR_SYSTEM;
4515err:
4516 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517}
4518
4519/**
4520 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4521 * @qc: command to issue to device
4522 *
4523 * Using various libata functions and hooks, this function
4524 * starts an ATA command. ATA commands are grouped into
4525 * classes called "protocols", and issuing each type of protocol
4526 * is slightly different.
4527 *
Edward Falk0baab862005-06-02 18:17:13 -04004528 * May be used as the qc_issue() entry in ata_port_operations.
4529 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 * LOCKING:
4531 * spin_lock_irqsave(host_set lock)
4532 *
4533 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004534 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 */
4536
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004537unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538{
4539 struct ata_port *ap = qc->ap;
4540
Albert Leee50362e2005-09-27 17:39:50 +08004541 /* Use polling pio if the LLD doesn't handle
4542 * interrupt driven pio and atapi CDB interrupt.
4543 */
4544 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4545 switch (qc->tf.protocol) {
4546 case ATA_PROT_PIO:
4547 case ATA_PROT_ATAPI:
4548 case ATA_PROT_ATAPI_NODATA:
4549 qc->tf.flags |= ATA_TFLAG_POLLING;
4550 break;
4551 case ATA_PROT_ATAPI_DMA:
4552 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08004553 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08004554 BUG();
4555 break;
4556 default:
4557 break;
4558 }
4559 }
4560
Albert Lee312f7da2005-09-27 17:38:03 +08004561 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 ata_dev_select(ap, qc->dev->devno, 1, 0);
4563
Albert Lee312f7da2005-09-27 17:38:03 +08004564 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 switch (qc->tf.protocol) {
4566 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004567 if (qc->tf.flags & ATA_TFLAG_POLLING)
4568 ata_qc_set_polling(qc);
4569
Jeff Garzike5338252005-10-30 21:37:17 -05004570 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004571 ap->hsm_task_state = HSM_ST_LAST;
4572
4573 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004574 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004575
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 break;
4577
4578 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004579 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004580
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4582 ap->ops->bmdma_setup(qc); /* set up bmdma */
4583 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004584 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 break;
4586
Albert Lee312f7da2005-09-27 17:38:03 +08004587 case ATA_PROT_PIO:
4588 if (qc->tf.flags & ATA_TFLAG_POLLING)
4589 ata_qc_set_polling(qc);
4590
Jeff Garzike5338252005-10-30 21:37:17 -05004591 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004592
Albert Lee54f00382005-09-30 19:14:19 +08004593 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4594 /* PIO data out protocol */
4595 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004596 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004597
4598 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004599 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004600 */
Albert Lee312f7da2005-09-27 17:38:03 +08004601 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004602 /* PIO data in protocol */
4603 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004604
Albert Lee54f00382005-09-30 19:14:19 +08004605 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004606 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004607
Albert Lee54f00382005-09-30 19:14:19 +08004608 /* if polling, ata_pio_task() handles the rest.
4609 * otherwise, interrupt handler takes over from here.
4610 */
Albert Lee312f7da2005-09-27 17:38:03 +08004611 }
4612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 break;
4614
4615 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004617 if (qc->tf.flags & ATA_TFLAG_POLLING)
4618 ata_qc_set_polling(qc);
4619
Jeff Garzike5338252005-10-30 21:37:17 -05004620 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004621
Albert Lee312f7da2005-09-27 17:38:03 +08004622 ap->hsm_task_state = HSM_ST_FIRST;
4623
4624 /* send cdb by polling if no cdb interrupt */
4625 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4626 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004627 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 break;
4629
4630 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004631 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004632
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4634 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004635 ap->hsm_task_state = HSM_ST_FIRST;
4636
4637 /* send cdb by polling if no cdb interrupt */
4638 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004639 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 break;
4641
4642 default:
4643 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004644 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 }
4646
4647 return 0;
4648}
4649
4650/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 * ata_host_intr - Handle host interrupt for given (port, task)
4652 * @ap: Port on which interrupt arrived (possibly...)
4653 * @qc: Taskfile currently active in engine
4654 *
4655 * Handle host interrupt for given queued command. Currently,
4656 * only DMA interrupts are handled. All other commands are
4657 * handled via polling with interrupts disabled (nIEN bit).
4658 *
4659 * LOCKING:
4660 * spin_lock_irqsave(host_set lock)
4661 *
4662 * RETURNS:
4663 * One if interrupt was handled, zero if not (shared irq).
4664 */
4665
4666inline unsigned int ata_host_intr (struct ata_port *ap,
4667 struct ata_queued_cmd *qc)
4668{
Albert Lee312f7da2005-09-27 17:38:03 +08004669 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
Albert Lee312f7da2005-09-27 17:38:03 +08004671 VPRINTK("ata%u: protocol %d task_state %d\n",
4672 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
Albert Lee312f7da2005-09-27 17:38:03 +08004674 /* Check whether we are expecting interrupt in this state */
4675 switch (ap->hsm_task_state) {
4676 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004677 /* Some pre-ATAPI-4 devices assert INTRQ
4678 * at this state when ready to receive CDB.
4679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680
Albert Lee312f7da2005-09-27 17:38:03 +08004681 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4682 * The flag was turned on only for atapi devices.
4683 * No need to check is_atapi_taskfile(&qc->tf) again.
4684 */
4685 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004688 case HSM_ST_LAST:
4689 if (qc->tf.protocol == ATA_PROT_DMA ||
4690 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4691 /* check status of DMA engine */
4692 host_stat = ap->ops->bmdma_status(ap);
4693 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Albert Lee312f7da2005-09-27 17:38:03 +08004695 /* if it's not our irq... */
4696 if (!(host_stat & ATA_DMA_INTR))
4697 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Albert Lee312f7da2005-09-27 17:38:03 +08004699 /* before we do anything else, clear DMA-Start bit */
4700 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004701
4702 if (unlikely(host_stat & ATA_DMA_ERR)) {
4703 /* error when transfering data to/from memory */
4704 qc->err_mask |= AC_ERR_HOST_BUS;
4705 ap->hsm_task_state = HSM_ST_ERR;
4706 }
Albert Lee312f7da2005-09-27 17:38:03 +08004707 }
4708 break;
4709 case HSM_ST:
4710 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 default:
4712 goto idle_irq;
4713 }
4714
Albert Lee312f7da2005-09-27 17:38:03 +08004715 /* check altstatus */
4716 status = ata_altstatus(ap);
4717 if (status & ATA_BUSY)
4718 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
Albert Lee312f7da2005-09-27 17:38:03 +08004720 /* check main status, clearing INTRQ */
4721 status = ata_chk_status(ap);
4722 if (unlikely(status & ATA_BUSY))
4723 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Albert Lee312f7da2005-09-27 17:38:03 +08004725 /* ack bmdma irq events */
4726 ap->ops->irq_clear(ap);
4727
Albert Leebb5cb292006-03-25 17:48:02 +08004728 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 return 1; /* irq handled */
4730
4731idle_irq:
4732 ap->stats.idle_irq++;
4733
4734#ifdef ATA_IRQ_TRAP
4735 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004737 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004738 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 }
4740#endif
4741 return 0; /* irq not handled */
4742}
4743
4744/**
4745 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004746 * @irq: irq line (unused)
4747 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 * @regs: unused
4749 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004750 * Default interrupt handler for PCI IDE devices. Calls
4751 * ata_host_intr() for each port that is not disabled.
4752 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004754 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 *
4756 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004757 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 */
4759
4760irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4761{
4762 struct ata_host_set *host_set = dev_instance;
4763 unsigned int i;
4764 unsigned int handled = 0;
4765 unsigned long flags;
4766
4767 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4768 spin_lock_irqsave(&host_set->lock, flags);
4769
4770 for (i = 0; i < host_set->n_ports; i++) {
4771 struct ata_port *ap;
4772
4773 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004774 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004775 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 struct ata_queued_cmd *qc;
4777
4778 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004779 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004780 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 handled |= ata_host_intr(ap, qc);
4782 }
4783 }
4784
4785 spin_unlock_irqrestore(&host_set->lock, flags);
4786
4787 return IRQ_RETVAL(handled);
4788}
4789
Tejun Heo34bf2172006-05-15 20:57:46 +09004790/**
4791 * sata_scr_valid - test whether SCRs are accessible
4792 * @ap: ATA port to test SCR accessibility for
4793 *
4794 * Test whether SCRs are accessible for @ap.
4795 *
4796 * LOCKING:
4797 * None.
4798 *
4799 * RETURNS:
4800 * 1 if SCRs are accessible, 0 otherwise.
4801 */
4802int sata_scr_valid(struct ata_port *ap)
4803{
4804 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4805}
4806
4807/**
4808 * sata_scr_read - read SCR register of the specified port
4809 * @ap: ATA port to read SCR for
4810 * @reg: SCR to read
4811 * @val: Place to store read value
4812 *
4813 * Read SCR register @reg of @ap into *@val. This function is
4814 * guaranteed to succeed if the cable type of the port is SATA
4815 * and the port implements ->scr_read.
4816 *
4817 * LOCKING:
4818 * None.
4819 *
4820 * RETURNS:
4821 * 0 on success, negative errno on failure.
4822 */
4823int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4824{
4825 if (sata_scr_valid(ap)) {
4826 *val = ap->ops->scr_read(ap, reg);
4827 return 0;
4828 }
4829 return -EOPNOTSUPP;
4830}
4831
4832/**
4833 * sata_scr_write - write SCR register of the specified port
4834 * @ap: ATA port to write SCR for
4835 * @reg: SCR to write
4836 * @val: value to write
4837 *
4838 * Write @val to SCR register @reg of @ap. This function is
4839 * guaranteed to succeed if the cable type of the port is SATA
4840 * and the port implements ->scr_read.
4841 *
4842 * LOCKING:
4843 * None.
4844 *
4845 * RETURNS:
4846 * 0 on success, negative errno on failure.
4847 */
4848int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4849{
4850 if (sata_scr_valid(ap)) {
4851 ap->ops->scr_write(ap, reg, val);
4852 return 0;
4853 }
4854 return -EOPNOTSUPP;
4855}
4856
4857/**
4858 * sata_scr_write_flush - write SCR register of the specified port and flush
4859 * @ap: ATA port to write SCR for
4860 * @reg: SCR to write
4861 * @val: value to write
4862 *
4863 * This function is identical to sata_scr_write() except that this
4864 * function performs flush after writing to the register.
4865 *
4866 * LOCKING:
4867 * None.
4868 *
4869 * RETURNS:
4870 * 0 on success, negative errno on failure.
4871 */
4872int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4873{
4874 if (sata_scr_valid(ap)) {
4875 ap->ops->scr_write(ap, reg, val);
4876 ap->ops->scr_read(ap, reg);
4877 return 0;
4878 }
4879 return -EOPNOTSUPP;
4880}
4881
4882/**
4883 * ata_port_online - test whether the given port is online
4884 * @ap: ATA port to test
4885 *
4886 * Test whether @ap is online. Note that this function returns 0
4887 * if online status of @ap cannot be obtained, so
4888 * ata_port_online(ap) != !ata_port_offline(ap).
4889 *
4890 * LOCKING:
4891 * None.
4892 *
4893 * RETURNS:
4894 * 1 if the port online status is available and online.
4895 */
4896int ata_port_online(struct ata_port *ap)
4897{
4898 u32 sstatus;
4899
4900 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4901 return 1;
4902 return 0;
4903}
4904
4905/**
4906 * ata_port_offline - test whether the given port is offline
4907 * @ap: ATA port to test
4908 *
4909 * Test whether @ap is offline. Note that this function returns
4910 * 0 if offline status of @ap cannot be obtained, so
4911 * ata_port_online(ap) != !ata_port_offline(ap).
4912 *
4913 * LOCKING:
4914 * None.
4915 *
4916 * RETURNS:
4917 * 1 if the port offline status is available and offline.
4918 */
4919int ata_port_offline(struct ata_port *ap)
4920{
4921 u32 sstatus;
4922
4923 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4924 return 1;
4925 return 0;
4926}
Edward Falk0baab862005-06-02 18:17:13 -04004927
Jens Axboe9b847542006-01-06 09:28:07 +01004928/*
4929 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4930 * without filling any other registers
4931 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004932static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Jens Axboe9b847542006-01-06 09:28:07 +01004933{
4934 struct ata_taskfile tf;
4935 int err;
4936
Tejun Heo3373efd2006-05-15 20:57:53 +09004937 ata_tf_init(dev, &tf);
Jens Axboe9b847542006-01-06 09:28:07 +01004938
4939 tf.command = cmd;
4940 tf.flags |= ATA_TFLAG_DEVICE;
4941 tf.protocol = ATA_PROT_NODATA;
4942
Tejun Heo3373efd2006-05-15 20:57:53 +09004943 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004944 if (err)
Tejun Heof15a1da2006-05-15 20:57:56 +09004945 ata_dev_printk(dev, KERN_ERR, "%s: ata command failed: %d\n",
4946 __FUNCTION__, err);
Jens Axboe9b847542006-01-06 09:28:07 +01004947
4948 return err;
4949}
4950
Tejun Heo3373efd2006-05-15 20:57:53 +09004951static int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004952{
4953 u8 cmd;
4954
4955 if (!ata_try_flush_cache(dev))
4956 return 0;
4957
4958 if (ata_id_has_flush_ext(dev->id))
4959 cmd = ATA_CMD_FLUSH_EXT;
4960 else
4961 cmd = ATA_CMD_FLUSH;
4962
Tejun Heo3373efd2006-05-15 20:57:53 +09004963 return ata_do_simple_cmd(dev, cmd);
Jens Axboe9b847542006-01-06 09:28:07 +01004964}
4965
Tejun Heo3373efd2006-05-15 20:57:53 +09004966static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004967{
Tejun Heo3373efd2006-05-15 20:57:53 +09004968 return ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
Jens Axboe9b847542006-01-06 09:28:07 +01004969}
4970
Tejun Heo3373efd2006-05-15 20:57:53 +09004971static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004972{
Tejun Heo3373efd2006-05-15 20:57:53 +09004973 return ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
Jens Axboe9b847542006-01-06 09:28:07 +01004974}
4975
4976/**
4977 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004978 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004979 *
4980 * Kick the drive back into action, by sending it an idle immediate
4981 * command and making sure its transfer mode matches between drive
4982 * and host.
4983 *
4984 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004985int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004986{
Tejun Heo3373efd2006-05-15 20:57:53 +09004987 struct ata_port *ap = dev->ap;
4988
Jens Axboe9b847542006-01-06 09:28:07 +01004989 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004990 struct ata_device *failed_dev;
Jeff Garzike42d7be2006-05-28 16:32:59 -04004991
Linus Torvalds1cca0eb2006-06-19 18:01:27 -07004992 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Mark Lord0737ac82006-05-28 11:28:00 -04004993 ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 200000);
Jeff Garzike42d7be2006-05-28 16:32:59 -04004994
Jens Axboe9b847542006-01-06 09:28:07 +01004995 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004996 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09004997 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004998 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004999 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005000 return 0;
5001 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005002 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005003
5004 return 0;
5005}
5006
5007/**
5008 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005009 * @dev: the device to suspend
Randy Dunlape2a7f772006-05-18 10:50:18 -07005010 * @state: target power management state
Jens Axboe9b847542006-01-06 09:28:07 +01005011 *
5012 * Flush the cache on the drive, if appropriate, then issue a
5013 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01005014 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005015int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01005016{
Tejun Heo3373efd2006-05-15 20:57:53 +09005017 struct ata_port *ap = dev->ap;
5018
Tejun Heoe1211e32006-04-01 01:38:18 +09005019 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005020 return 0;
5021 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005022 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005023
Nigel Cunningham082776e2006-03-23 23:22:16 +10005024 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09005025 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005026 ap->flags |= ATA_FLAG_SUSPENDED;
5027 return 0;
5028}
5029
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005030/**
5031 * ata_port_start - Set port up for dma.
5032 * @ap: Port to initialize
5033 *
5034 * Called just after data structures for each port are
5035 * initialized. Allocates space for PRD table.
5036 *
5037 * May be used as the port_start() entry in ata_port_operations.
5038 *
5039 * LOCKING:
5040 * Inherited from caller.
5041 */
5042
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043int ata_port_start (struct ata_port *ap)
5044{
Brian King2f1f6102006-03-23 17:30:15 -06005045 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005046 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
5048 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
5049 if (!ap->prd)
5050 return -ENOMEM;
5051
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005052 rc = ata_pad_alloc(ap, dev);
5053 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005054 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005055 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005056 }
5057
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
5059
5060 return 0;
5061}
5062
Edward Falk0baab862005-06-02 18:17:13 -04005063
5064/**
5065 * ata_port_stop - Undo ata_port_start()
5066 * @ap: Port to shut down
5067 *
5068 * Frees the PRD table.
5069 *
5070 * May be used as the port_stop() entry in ata_port_operations.
5071 *
5072 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005073 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005074 */
5075
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076void ata_port_stop (struct ata_port *ap)
5077{
Brian King2f1f6102006-03-23 17:30:15 -06005078 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005081 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082}
5083
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005084void ata_host_stop (struct ata_host_set *host_set)
5085{
5086 if (host_set->mmio_base)
5087 iounmap(host_set->mmio_base);
5088}
5089
5090
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091/**
5092 * ata_host_remove - Unregister SCSI host structure with upper layers
5093 * @ap: Port to unregister
5094 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
5095 *
5096 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005097 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098 */
5099
5100static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
5101{
5102 struct Scsi_Host *sh = ap->host;
5103
5104 DPRINTK("ENTER\n");
5105
5106 if (do_unregister)
5107 scsi_remove_host(sh);
5108
5109 ap->ops->port_stop(ap);
5110}
5111
5112/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005113 * ata_dev_init - Initialize an ata_device structure
5114 * @dev: Device structure to initialize
5115 *
5116 * Initialize @dev in preparation for probing.
5117 *
5118 * LOCKING:
5119 * Inherited from caller.
5120 */
5121void ata_dev_init(struct ata_device *dev)
5122{
5123 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005124 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005125
Tejun Heo5a04bf42006-05-31 18:27:38 +09005126 /* SATA spd limit is bound to the first device */
5127 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5128
Tejun Heo72fa4b72006-05-31 18:27:32 +09005129 /* High bits of dev->flags are used to record warm plug
5130 * requests which occur asynchronously. Synchronize using
5131 * host_set lock.
5132 */
5133 spin_lock_irqsave(&ap->host_set->lock, flags);
5134 dev->flags &= ~ATA_DFLAG_INIT_MASK;
5135 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5136
5137 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5138 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005139 dev->pio_mask = UINT_MAX;
5140 dev->mwdma_mask = UINT_MAX;
5141 dev->udma_mask = UINT_MAX;
5142}
5143
5144/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 * ata_host_init - Initialize an ata_port structure
5146 * @ap: Structure to initialize
5147 * @host: associated SCSI mid-layer structure
5148 * @host_set: Collection of hosts to which @ap belongs
5149 * @ent: Probe information provided by low-level driver
5150 * @port_no: Port number associated with this ata_port
5151 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005152 * Initialize a new ata_port structure, and its associated
5153 * scsi_host.
5154 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005156 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5159 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005160 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161{
5162 unsigned int i;
5163
5164 host->max_id = 16;
5165 host->max_lun = 1;
5166 host->max_channel = 1;
5167 host->unique_id = ata_unique_id++;
5168 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005169
Tejun Heo198e0fe2006-04-02 18:51:52 +09005170 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 ap->id = host->unique_id;
5172 ap->host = host;
5173 ap->ctl = ATA_DEVCTL_OBS;
5174 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005175 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 ap->port_no = port_no;
5177 ap->hard_port_no =
5178 ent->legacy_mode ? ent->hard_port_no : port_no;
5179 ap->pio_mask = ent->pio_mask;
5180 ap->mwdma_mask = ent->mwdma_mask;
5181 ap->udma_mask = ent->udma_mask;
5182 ap->flags |= ent->host_flags;
5183 ap->ops = ent->port_ops;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005184 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 ap->active_tag = ATA_TAG_POISON;
5186 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005187
5188#if defined(ATA_VERBOSE_DEBUG)
5189 /* turn on all debugging levels */
5190 ap->msg_enable = 0x00FF;
5191#elif defined(ATA_DEBUG)
5192 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
5193#else
5194 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR;
5195#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196
Tejun Heo86e45b62006-03-05 15:29:09 +09005197 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heo580b21022006-05-31 18:28:05 +09005198 INIT_WORK(&ap->hotplug_task, ata_scsi_hotplug, ap);
zhao, forrest3057ac32006-06-12 12:01:34 +08005199 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan, ap);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005200 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005201 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
Tejun Heo838df622006-05-15 20:57:44 +09005203 /* set cable type */
5204 ap->cbl = ATA_CBL_NONE;
5205 if (ap->flags & ATA_FLAG_SATA)
5206 ap->cbl = ATA_CBL_SATA;
5207
Tejun Heoacf356b2006-03-24 14:07:50 +09005208 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5209 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005210 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005211 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005212 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
5215#ifdef ATA_IRQ_TRAP
5216 ap->stats.unhandled_irq = 1;
5217 ap->stats.idle_irq = 1;
5218#endif
5219
5220 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5221}
5222
5223/**
5224 * ata_host_add - Attach low-level ATA driver to system
5225 * @ent: Information provided by low-level driver
5226 * @host_set: Collections of ports to which we add
5227 * @port_no: Port number associated with this host
5228 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005229 * Attach low-level ATA driver to system.
5230 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005232 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 *
5234 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005235 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 */
5237
Jeff Garzik057ace52005-10-22 14:27:05 -04005238static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 struct ata_host_set *host_set,
5240 unsigned int port_no)
5241{
5242 struct Scsi_Host *host;
5243 struct ata_port *ap;
5244 int rc;
5245
5246 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005247
Tejun Heo52783c52006-05-31 18:28:22 +09005248 if (!ent->port_ops->error_handler &&
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005249 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5250 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5251 port_no);
5252 return NULL;
5253 }
5254
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5256 if (!host)
5257 return NULL;
5258
Tejun Heo30afc842006-03-18 18:40:14 +09005259 host->transportt = &ata_scsi_transport_template;
5260
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005261 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262
5263 ata_host_init(ap, host, host_set, ent, port_no);
5264
5265 rc = ap->ops->port_start(ap);
5266 if (rc)
5267 goto err_out;
5268
5269 return ap;
5270
5271err_out:
5272 scsi_host_put(host);
5273 return NULL;
5274}
5275
5276/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005277 * ata_device_add - Register hardware device with ATA and SCSI layers
5278 * @ent: Probe information describing hardware device to be registered
5279 *
5280 * This function processes the information provided in the probe
5281 * information struct @ent, allocates the necessary ATA and SCSI
5282 * host information structures, initializes them, and registers
5283 * everything with requisite kernel subsystems.
5284 *
5285 * This function requests irqs, probes the ATA bus, and probes
5286 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 *
5288 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005289 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 *
5291 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005292 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293 */
Jeff Garzik057ace52005-10-22 14:27:05 -04005294int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295{
5296 unsigned int count = 0, i;
5297 struct device *dev = ent->dev;
5298 struct ata_host_set *host_set;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005299 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
5301 DPRINTK("ENTER\n");
5302 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005303 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5305 if (!host_set)
5306 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 spin_lock_init(&host_set->lock);
5308
5309 host_set->dev = dev;
5310 host_set->n_ports = ent->n_ports;
5311 host_set->irq = ent->irq;
5312 host_set->mmio_base = ent->mmio_base;
5313 host_set->private_data = ent->private_data;
5314 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005315 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316
5317 /* register each port bound to this device */
5318 for (i = 0; i < ent->n_ports; i++) {
5319 struct ata_port *ap;
5320 unsigned long xfer_mode_mask;
5321
5322 ap = ata_host_add(ent, host_set, i);
5323 if (!ap)
5324 goto err_out;
5325
5326 host_set->ports[i] = ap;
5327 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5328 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5329 (ap->pio_mask << ATA_SHIFT_PIO);
5330
5331 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005332 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5333 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5334 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5335 ata_mode_string(xfer_mode_mask),
5336 ap->ioaddr.cmd_addr,
5337 ap->ioaddr.ctl_addr,
5338 ap->ioaddr.bmdma_addr,
5339 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
5341 ata_chk_status(ap);
5342 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005343 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 count++;
5345 }
5346
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005347 if (!count)
5348 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349
5350 /* obtain irq, that is shared between channels */
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005351 rc = request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5352 DRV_NAME, host_set);
5353 if (rc) {
5354 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5355 ent->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 goto err_out;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
5359 /* perform each probe synchronously */
5360 DPRINTK("probe begin\n");
5361 for (i = 0; i < count; i++) {
5362 struct ata_port *ap;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005363 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 int rc;
5365
5366 ap = host_set->ports[i];
5367
Tejun Heo5a04bf42006-05-31 18:27:38 +09005368 /* init sata_spd_limit to the current value */
5369 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5370 int spd = (scontrol >> 4) & 0xf;
5371 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5372 }
5373 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5374
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 rc = scsi_add_host(ap->host, dev);
5376 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005377 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378 /* FIXME: do something useful here */
5379 /* FIXME: handle unconditional calls to
5380 * scsi_scan_host and ata_host_remove, below,
5381 * at the very least
5382 */
5383 }
Tejun Heo3e7063992006-05-31 18:28:11 +09005384
Tejun Heo52783c52006-05-31 18:28:22 +09005385 if (ap->ops->error_handler) {
Tejun Heo3e7063992006-05-31 18:28:11 +09005386 unsigned long flags;
5387
5388 ata_port_probe(ap);
5389
5390 /* kick EH for boot probing */
5391 spin_lock_irqsave(&ap->host_set->lock, flags);
5392
5393 ap->eh_info.probe_mask = (1 << ATA_MAX_DEVICES) - 1;
5394 ap->eh_info.action |= ATA_EH_SOFTRESET;
5395
5396 ap->flags |= ATA_FLAG_LOADING;
5397 ata_port_schedule_eh(ap);
5398
5399 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5400
5401 /* wait for EH to finish */
5402 ata_port_wait_eh(ap);
5403 } else {
5404 DPRINTK("ata%u: bus probe begin\n", ap->id);
5405 rc = ata_bus_probe(ap);
5406 DPRINTK("ata%u: bus probe end\n", ap->id);
5407
5408 if (rc) {
5409 /* FIXME: do something useful here?
5410 * Current libata behavior will
5411 * tear down everything when
5412 * the module is removed
5413 * or the h/w is unplugged.
5414 */
5415 }
5416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 }
5418
5419 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005420 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 for (i = 0; i < count; i++) {
5422 struct ata_port *ap = host_set->ports[i];
5423
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005424 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 }
5426
5427 dev_set_drvdata(dev, host_set);
5428
5429 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5430 return ent->n_ports; /* success */
5431
5432err_out:
5433 for (i = 0; i < count; i++) {
5434 ata_host_remove(host_set->ports[i], 1);
5435 scsi_host_put(host_set->ports[i]->host);
5436 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005437err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 kfree(host_set);
5439 VPRINTK("EXIT, returning 0\n");
5440 return 0;
5441}
5442
5443/**
Tejun Heo720ba122006-05-31 18:28:13 +09005444 * ata_port_detach - Detach ATA port in prepration of device removal
5445 * @ap: ATA port to be detached
5446 *
5447 * Detach all ATA devices and the associated SCSI devices of @ap;
5448 * then, remove the associated SCSI host. @ap is guaranteed to
5449 * be quiescent on return from this function.
5450 *
5451 * LOCKING:
5452 * Kernel thread context (may sleep).
5453 */
5454void ata_port_detach(struct ata_port *ap)
5455{
5456 unsigned long flags;
5457 int i;
5458
5459 if (!ap->ops->error_handler)
5460 return;
5461
5462 /* tell EH we're leaving & flush EH */
5463 spin_lock_irqsave(&ap->host_set->lock, flags);
5464 ap->flags |= ATA_FLAG_UNLOADING;
5465 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5466
5467 ata_port_wait_eh(ap);
5468
5469 /* EH is now guaranteed to see UNLOADING, so no new device
5470 * will be attached. Disable all existing devices.
5471 */
5472 spin_lock_irqsave(&ap->host_set->lock, flags);
5473
5474 for (i = 0; i < ATA_MAX_DEVICES; i++)
5475 ata_dev_disable(&ap->device[i]);
5476
5477 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5478
5479 /* Final freeze & EH. All in-flight commands are aborted. EH
5480 * will be skipped and retrials will be terminated with bad
5481 * target.
5482 */
5483 spin_lock_irqsave(&ap->host_set->lock, flags);
5484 ata_port_freeze(ap); /* won't be thawed */
5485 spin_unlock_irqrestore(&ap->host_set->lock, flags);
5486
5487 ata_port_wait_eh(ap);
5488
5489 /* Flush hotplug task. The sequence is similar to
5490 * ata_port_flush_task().
5491 */
5492 flush_workqueue(ata_aux_wq);
5493 cancel_delayed_work(&ap->hotplug_task);
5494 flush_workqueue(ata_aux_wq);
5495
5496 /* remove the associated SCSI host */
5497 scsi_remove_host(ap->host);
5498}
5499
5500/**
Alan Cox17b14452005-09-15 15:44:00 +01005501 * ata_host_set_remove - PCI layer callback for device removal
5502 * @host_set: ATA host set that was removed
5503 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005504 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005505 * objects.
5506 *
5507 * LOCKING:
5508 * Inherited from calling layer (may sleep).
5509 */
5510
Alan Cox17b14452005-09-15 15:44:00 +01005511void ata_host_set_remove(struct ata_host_set *host_set)
5512{
Alan Cox17b14452005-09-15 15:44:00 +01005513 unsigned int i;
5514
Tejun Heo720ba122006-05-31 18:28:13 +09005515 for (i = 0; i < host_set->n_ports; i++)
5516 ata_port_detach(host_set->ports[i]);
Alan Cox17b14452005-09-15 15:44:00 +01005517
5518 free_irq(host_set->irq, host_set);
5519
5520 for (i = 0; i < host_set->n_ports; i++) {
Tejun Heo720ba122006-05-31 18:28:13 +09005521 struct ata_port *ap = host_set->ports[i];
Alan Cox17b14452005-09-15 15:44:00 +01005522
5523 ata_scsi_release(ap->host);
5524
5525 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5526 struct ata_ioports *ioaddr = &ap->ioaddr;
5527
5528 if (ioaddr->cmd_addr == 0x1f0)
5529 release_region(0x1f0, 8);
5530 else if (ioaddr->cmd_addr == 0x170)
5531 release_region(0x170, 8);
5532 }
5533
5534 scsi_host_put(ap->host);
5535 }
5536
5537 if (host_set->ops->host_stop)
5538 host_set->ops->host_stop(host_set);
5539
5540 kfree(host_set);
5541}
5542
5543/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 * ata_scsi_release - SCSI layer callback hook for host unload
5545 * @host: libata host to be unloaded
5546 *
5547 * Performs all duties necessary to shut down a libata port...
5548 * Kill port kthread, disable port, and release resources.
5549 *
5550 * LOCKING:
5551 * Inherited from SCSI layer.
5552 *
5553 * RETURNS:
5554 * One.
5555 */
5556
5557int ata_scsi_release(struct Scsi_Host *host)
5558{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005559 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
5561 DPRINTK("ENTER\n");
5562
5563 ap->ops->port_disable(ap);
5564 ata_host_remove(ap, 0);
5565
5566 DPRINTK("EXIT\n");
5567 return 1;
5568}
5569
5570/**
5571 * ata_std_ports - initialize ioaddr with standard port offsets.
5572 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005573 *
5574 * Utility function which initializes data_addr, error_addr,
5575 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5576 * device_addr, status_addr, and command_addr to standard offsets
5577 * relative to cmd_addr.
5578 *
5579 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 */
Edward Falk0baab862005-06-02 18:17:13 -04005581
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582void ata_std_ports(struct ata_ioports *ioaddr)
5583{
5584 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5585 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5586 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5587 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5588 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5589 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5590 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5591 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5592 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5593 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5594}
5595
Edward Falk0baab862005-06-02 18:17:13 -04005596
Jeff Garzik374b1872005-08-30 05:42:52 -04005597#ifdef CONFIG_PCI
5598
5599void ata_pci_host_stop (struct ata_host_set *host_set)
5600{
5601 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5602
5603 pci_iounmap(pdev, host_set->mmio_base);
5604}
5605
Edward Falk0baab862005-06-02 18:17:13 -04005606/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 * ata_pci_remove_one - PCI layer callback for device removal
5608 * @pdev: PCI device that was removed
5609 *
5610 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005611 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612 * Handle this by unregistering all objects associated
5613 * with this PCI device. Free those objects. Then finally
5614 * release PCI resources and disable device.
5615 *
5616 * LOCKING:
5617 * Inherited from PCI layer (may sleep).
5618 */
5619
5620void ata_pci_remove_one (struct pci_dev *pdev)
5621{
5622 struct device *dev = pci_dev_to_dev(pdev);
5623 struct ata_host_set *host_set = dev_get_drvdata(dev);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005624 struct ata_host_set *host_set2 = host_set->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625
Alan Cox17b14452005-09-15 15:44:00 +01005626 ata_host_set_remove(host_set);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005627 if (host_set2)
5628 ata_host_set_remove(host_set2);
5629
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630 pci_release_regions(pdev);
5631 pci_disable_device(pdev);
5632 dev_set_drvdata(dev, NULL);
5633}
5634
5635/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005636int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637{
5638 unsigned long tmp = 0;
5639
5640 switch (bits->width) {
5641 case 1: {
5642 u8 tmp8 = 0;
5643 pci_read_config_byte(pdev, bits->reg, &tmp8);
5644 tmp = tmp8;
5645 break;
5646 }
5647 case 2: {
5648 u16 tmp16 = 0;
5649 pci_read_config_word(pdev, bits->reg, &tmp16);
5650 tmp = tmp16;
5651 break;
5652 }
5653 case 4: {
5654 u32 tmp32 = 0;
5655 pci_read_config_dword(pdev, bits->reg, &tmp32);
5656 tmp = tmp32;
5657 break;
5658 }
5659
5660 default:
5661 return -EINVAL;
5662 }
5663
5664 tmp &= bits->mask;
5665
5666 return (tmp == bits->val) ? 1 : 0;
5667}
Jens Axboe9b847542006-01-06 09:28:07 +01005668
5669int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5670{
5671 pci_save_state(pdev);
5672 pci_disable_device(pdev);
5673 pci_set_power_state(pdev, PCI_D3hot);
5674 return 0;
5675}
5676
5677int ata_pci_device_resume(struct pci_dev *pdev)
5678{
5679 pci_set_power_state(pdev, PCI_D0);
5680 pci_restore_state(pdev);
5681 pci_enable_device(pdev);
5682 pci_set_master(pdev);
5683 return 0;
5684}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685#endif /* CONFIG_PCI */
5686
5687
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688static int __init ata_init(void)
5689{
5690 ata_wq = create_workqueue("ata");
5691 if (!ata_wq)
5692 return -ENOMEM;
5693
Tejun Heo453b07a2006-05-31 18:27:42 +09005694 ata_aux_wq = create_singlethread_workqueue("ata_aux");
5695 if (!ata_aux_wq) {
5696 destroy_workqueue(ata_wq);
5697 return -ENOMEM;
5698 }
5699
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5701 return 0;
5702}
5703
5704static void __exit ata_exit(void)
5705{
5706 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09005707 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708}
5709
5710module_init(ata_init);
5711module_exit(ata_exit);
5712
Jeff Garzik67846b32005-10-05 02:58:32 -04005713static unsigned long ratelimit_time;
5714static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5715
5716int ata_ratelimit(void)
5717{
5718 int rc;
5719 unsigned long flags;
5720
5721 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5722
5723 if (time_after(jiffies, ratelimit_time)) {
5724 rc = 1;
5725 ratelimit_time = jiffies + (HZ/5);
5726 } else
5727 rc = 0;
5728
5729 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5730
5731 return rc;
5732}
5733
Tejun Heoc22daff2006-04-11 22:22:29 +09005734/**
5735 * ata_wait_register - wait until register value changes
5736 * @reg: IO-mapped register
5737 * @mask: Mask to apply to read register value
5738 * @val: Wait condition
5739 * @interval_msec: polling interval in milliseconds
5740 * @timeout_msec: timeout in milliseconds
5741 *
5742 * Waiting for some bits of register to change is a common
5743 * operation for ATA controllers. This function reads 32bit LE
5744 * IO-mapped register @reg and tests for the following condition.
5745 *
5746 * (*@reg & mask) != val
5747 *
5748 * If the condition is met, it returns; otherwise, the process is
5749 * repeated after @interval_msec until timeout.
5750 *
5751 * LOCKING:
5752 * Kernel thread context (may sleep)
5753 *
5754 * RETURNS:
5755 * The final register value.
5756 */
5757u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5758 unsigned long interval_msec,
5759 unsigned long timeout_msec)
5760{
5761 unsigned long timeout;
5762 u32 tmp;
5763
5764 tmp = ioread32(reg);
5765
5766 /* Calculate timeout _after_ the first read to make sure
5767 * preceding writes reach the controller before starting to
5768 * eat away the timeout.
5769 */
5770 timeout = jiffies + (timeout_msec * HZ) / 1000;
5771
5772 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5773 msleep(interval_msec);
5774 tmp = ioread32(reg);
5775 }
5776
5777 return tmp;
5778}
5779
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780/*
5781 * libata is essentially a library of internal helper functions for
5782 * low-level ATA host controller drivers. As such, the API/ABI is
5783 * likely to change as new drivers are added and updated.
5784 * Do not depend on ABI/API stability.
5785 */
5786
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005787EXPORT_SYMBOL_GPL(sata_deb_timing_boot);
5788EXPORT_SYMBOL_GPL(sata_deb_timing_eh);
5789EXPORT_SYMBOL_GPL(sata_deb_timing_before_fsrst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790EXPORT_SYMBOL_GPL(ata_std_bios_param);
5791EXPORT_SYMBOL_GPL(ata_std_ports);
5792EXPORT_SYMBOL_GPL(ata_device_add);
Tejun Heo720ba122006-05-31 18:28:13 +09005793EXPORT_SYMBOL_GPL(ata_port_detach);
Alan Cox17b14452005-09-15 15:44:00 +01005794EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795EXPORT_SYMBOL_GPL(ata_sg_init);
5796EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09005797EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09005798EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005799EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801EXPORT_SYMBOL_GPL(ata_tf_load);
5802EXPORT_SYMBOL_GPL(ata_tf_read);
5803EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5804EXPORT_SYMBOL_GPL(ata_std_dev_select);
5805EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5806EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5807EXPORT_SYMBOL_GPL(ata_check_status);
5808EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809EXPORT_SYMBOL_GPL(ata_exec_command);
5810EXPORT_SYMBOL_GPL(ata_port_start);
5811EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005812EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813EXPORT_SYMBOL_GPL(ata_interrupt);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005814EXPORT_SYMBOL_GPL(ata_mmio_data_xfer);
5815EXPORT_SYMBOL_GPL(ata_pio_data_xfer);
Alan Cox75e99582006-05-24 14:14:41 +01005816EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005818EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5820EXPORT_SYMBOL_GPL(ata_bmdma_start);
5821EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5822EXPORT_SYMBOL_GPL(ata_bmdma_status);
5823EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005824EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5825EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5826EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5827EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5828EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005830EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005831EXPORT_SYMBOL_GPL(sata_phy_debounce);
5832EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833EXPORT_SYMBOL_GPL(sata_phy_reset);
5834EXPORT_SYMBOL_GPL(__sata_phy_reset);
5835EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09005836EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005837EXPORT_SYMBOL_GPL(ata_std_softreset);
5838EXPORT_SYMBOL_GPL(sata_std_hardreset);
5839EXPORT_SYMBOL_GPL(ata_std_postreset);
Tejun Heo623a3122006-03-05 17:55:58 +09005840EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005841EXPORT_SYMBOL_GPL(ata_dev_classify);
5842EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005844EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005845EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005846EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005847EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5849EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09005851EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09005852EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853EXPORT_SYMBOL_GPL(ata_scsi_release);
5854EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005855EXPORT_SYMBOL_GPL(sata_scr_valid);
5856EXPORT_SYMBOL_GPL(sata_scr_read);
5857EXPORT_SYMBOL_GPL(sata_scr_write);
5858EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5859EXPORT_SYMBOL_GPL(ata_port_online);
5860EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005861EXPORT_SYMBOL_GPL(ata_id_string);
5862EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5864
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005865EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005866EXPORT_SYMBOL_GPL(ata_timing_compute);
5867EXPORT_SYMBOL_GPL(ata_timing_merge);
5868
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869#ifdef CONFIG_PCI
5870EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005871EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5873EXPORT_SYMBOL_GPL(ata_pci_init_one);
5874EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005875EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5876EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005877EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5878EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005880
5881EXPORT_SYMBOL_GPL(ata_device_suspend);
5882EXPORT_SYMBOL_GPL(ata_device_resume);
5883EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5884EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005885
Tejun Heoece1d632006-04-02 18:51:53 +09005886EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005887EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5888EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005889EXPORT_SYMBOL_GPL(ata_port_freeze);
5890EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5891EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005892EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5893EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005894EXPORT_SYMBOL_GPL(ata_do_eh);